Code

Fix the mkNEWS script, and make it use w3m, which is nowadays
authortweenk <tweenk@users.sourceforge.net>
Mon, 28 Sep 2009 21:34:02 +0000 (21:34 +0000)
committertweenk <tweenk@users.sourceforge.net>
Mon, 28 Sep 2009 21:34:02 +0000 (21:34 +0000)
more common than lynx.

packaging/mkNEWS

index 96485dbfc8641b7c9a01444fbe221a9150ff083f..7e17e90136beb9453eaa867050073369dfea19a0 100644 (file)
@@ -11,9 +11,7 @@ if (@ARGV < 1) {
 
 my $rel = shift @ARGV;
 
-$rel =~ s/\.//;
-
-my @page = `lynx -dump $wiki/ReleaseNotes$rel`;
+my @page = `w3m -dump $wiki/Release_notes/$rel`;
 
 print "$#page lines\n";
 
@@ -22,9 +20,9 @@ foreach my $line (@page) {
 
     $line =~ s/\[\[\d+\]edit\]//g;
 
-    last if $line =~ /^ Previous releases/;
+    last if $line =~ /^\s*Previous releases/;
 
-    if ($line =~ /^\s+Inkscape 0\.46/) {
+    if ($line =~ /^\s*Inkscape $rel/) {
         $seen_overview = 1;
     }
     next unless $seen_overview;