r168 - trunk/vim-scripts/vim.org

Stefano Zacchiroli zack@costa.debian.org
Sat, 16 Apr 2005 11:02:21 +0000


Author: zack
Date: 2005-04-16 11:02:20 +0000 (Sat, 16 Apr 2005)
New Revision: 168

Removed:
   trunk/vim-scripts/vim.org/vim-scripts.pl
Log:
moved to the debian package


Deleted: trunk/vim-scripts/vim.org/vim-scripts.pl
===================================================================
--- trunk/vim-scripts/vim.org/vim-scripts.pl	2005-04-16 11:01:54 UTC (rev 167)
+++ trunk/vim-scripts/vim.org/vim-scripts.pl	2005-04-16 11:02:20 UTC (rev 168)
@@ -1,92 +0,0 @@
-#!/usr/bin/perl -w
-use strict;
-
-# Copyright (C) 2005, Stefano Zacchiroli <zack@debian.org>
-#
-# Created:        Sat, 16 Apr 2005 12:43:04 +0200 zack
-# Last-Modified:  Sat, 16 Apr 2005 12:43:04 +0200 zack
-#
-# This is free software, you can redistribute it and/or modify it under the
-# terms of the GNU General Public License version 2 as published by the Free
-# Software Foundation.
-#
-# This program is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
-# FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
-# details.
-#
-# You should have received a copy of the GNU General Public License along with
-# this program; if not, write to the Free Software Foundation, Inc., 59 Temple
-# Place, Suite 330, Boston, MA  02111-1307  USA
-
-my $usage =
-  "Usage: debian/vim-scripts.pl { doc | update | test } [ name ...  ]\n";
-my $action = shift or die $usage;
-my $status = "debian/copyright";
-my @scripts = ();
-push @scripts, @ARGV;
-
-sub parse_script_page($) {
-  my ($url) = @_;
-  my ($in_table, $script_name, $script_version, $script_date, $download_url);
-  open HTML, "wget -nv -O - '$url' |" or die "Can't exec wget for pipe-reading";
-  while (my $line = <HTML>) {
-    next if $script_version and $script_date;
-    chomp $line;
-    if (not $in_table and $line =~ /<td class="[^"]*" valign="top" nowrap><a href="(download_script\.php\?src_id=\d+)">([^<]+)<\/a><\/td>/) {
-      $in_table = 1;
-      $download_url = "http://www.vim.org/scripts/$1";
-      $script_name = $2;
-    } elsif ($in_table and $line =~ /<td class="[^"]*" valign="top" nowrap><b>\s*([^<]+)\s*<\/b><\/td>/) {
-      $script_version = $1;
-    } elsif ($in_table and $line =~ /<td class="[^"]*" valign="top" nowrap><i>\s*([^<]+)\s*<\/i><\/td>/) {
-      $script_date = $1;
-    }
-  }
-  close HTML;
-#   print "$script_name\t$script_version\t$script_date\n";
-  return [$script_version, $script_date, $download_url];
-}
-
-open STATUS, "< $status" or die "Can't open debian/copyright";
-my ($script_name, $script_url, $author, $author_url, $email, $license,
-  $version);
-my $skip = 1;
-while (my $line = <STATUS>) {
-  chomp $line;
-  $skip = not $skip if ($line =~ /^--\s*$/);
-  next if $skip;
-  if ($line =~ /^script_name:\s*(.*)/) { $script_name = $1; }
-  elsif ($line =~ /^script_url:\s*(.*)/) { $script_url = $1; }
-  elsif ($line =~ /^author:\s*(.*)/) { $author = $1; }
-  elsif ($line =~ /^author_url:\s*(.*)/) { $author_url = $1; }
-  elsif ($line =~ /^email:\s*(.*)/) { $email = $1; }
-  elsif ($line =~ /^license:\s*(.*)/) { $license = $1; }
-  elsif ($line =~ /^version:\s*(.*)/) {
-    $version = $1;
-    if (not @scripts or grep /^\Q$script_name\E$/, @scripts) {
-      if ($action eq "test") {
-        print $script_name, "\n";
-      } elsif ($action eq "doc") {
-        my $fname = $script_name;
-        $fname =~ s/\//_/g;
-        system "wget -nv -O $fname.html '$script_url'";
-      } elsif ($action eq "update") {
-        my ($upstream_version, $upstream_date, $download_url) =
-          @{parse_script_page($script_url)};
-        if (not ($upstream_version eq $version)) {
-          print <<EOMSG;
-$script_name may be out of date:
-  debian version: $version
-  upstream version: $upstream_version
-    release date: $upstream_date
-  script url: $script_url
-  download url: $download_url
-EOMSG
-        }
-      }
-    }
-  }
-}
-close STATUS;
-