commit-womb
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[commit-womb] gnumaint gm gnupackages.txt


From: Karl Berry
Subject: [commit-womb] gnumaint gm gnupackages.txt
Date: Mon, 09 Nov 2009 18:41:36 +0000

CVSROOT:        /sources/womb
Module name:    gnumaint
Changes by:     Karl Berry <karl>       09/11/09 18:41:36

Modified files:
        .              : gm gnupackages.txt 

Log message:
        report gplv3-status and regularize data

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnumaint/gm?cvsroot=womb&r1=1.16&r2=1.17
http://cvs.savannah.gnu.org/viewcvs/gnumaint/gnupackages.txt?cvsroot=womb&r1=1.29&r2=1.30

Patches:
Index: gm
===================================================================
RCS file: /sources/womb/gnumaint/gm,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -b -r1.16 -r1.17
--- gm  14 Mar 2009 16:32:30 -0000      1.16
+++ gm  9 Nov 2009 18:41:36 -0000       1.17
@@ -1,5 +1,5 @@
 #!/usr/bin/env perl
-# $Id: gm,v 1.16 2009/03/14 16:32:30 karl Exp $
+# $Id: gm,v 1.17 2009/11/09 18:41:36 karl Exp $
 # More gnumaint-related stuff, since I think better in Perl than TCL.
 # 
 # Copyright 2007, 2008, 2009 Free Software Foundation Inc.
@@ -38,23 +38,28 @@
 Usage: $0 CMD ARG...
 
 Here are the possibilities:
+list maintainers bypackage   (generate the maintainers.bypkg file)
 list maintainers nophysical  (maintainers without phone/address info)
 list packages activity       (packages sorted by activity-status)
-list packages bymaintainer   (generate the maintainers.bypkg file)
+list packages gplv3          (packages with GPLv3 license update pending)
 list packages unanswered     (packages which we've had no contact about)
 check activityfile           (verify activity-report.txt)
 check gnupackages            (verify consistency with maintainers file)
 
 See also the gnumaint script.
+
+list maintainers bypackage is run from address@hidden cron.
 END_USAGE
     return 0;
   }
 
+  # construct the function name from the arguments, and eval it.
   my $fn = "${cmd}_${arg1}_${arg2}";
   my @lines = eval "&$fn ()";
   die "$0 failed: address@hidden" if $@;
   # ugly message on error, but this program is not for public consumption.
 
+  # print the resulting lines.
   print map { "$_\n" } @lines if @lines;
 
   return 0;
@@ -62,44 +67,11 @@
 
 
 
-# Return all packages sorted by activity status, one package per line.
-# 
-sub list_packages_activity
-{
-  my @ret = ();
-
-  # sort activity statuses in this order.  If other strings are used,
-  # they'll show up first so they can be easily fixed.
-  my %activity_order = ("stale" => 1, "moribund" => 2,
-                        "ok" => 3, "stable" => 4);
-  
-  my %pkgs = &read_gnupackages ();
-  for my $pkgname (sort by_activity keys %pkgs) {
-    my %p = %{$pkgs{$pkgname}};
-    my $activity = $p{"activity-status"};
-    push (@ret, sprintf ("$GNUPACKAGES_FILE:%4d:%-13s $activity",
-                         $p{"lineno"}, $pkgname));
-  }
-  
-  return @ret;
-  
-  sub by_activity
-  {
-    (my $a_status = $pkgs{$a}->{"activity-status"}) =~ s/ .*//;;
-    (my $b_status = $pkgs{$b}->{"activity-status"}) =~ s/ .*//;;
-    $activity_order{$a_status} <=> $activity_order{$b_status}
-    || $pkgs{$a}->{"activity-status"} cmp $pkgs{$b}->{"activity-status"}
-    || $a cmp $b;
-  }
-}
-
-
-
-# Return all packages with all their maintainers, one maintainer per
+# Return all packages with all their maintainers, one package per
 # line, like the original format of the maintainers file.  We run this
 # from cron.
 # 
-sub list_packages_bymaintainer
+sub list_maintainers_bypackage
 {
   my @ret = ();
   
@@ -142,6 +114,88 @@
 
 
 
+# Return list of maintainers for whom we have no phone or address.
+# 
+sub list_maintainers_nophysical
+{
+  my @maints = ();
+  my %maints = &read_maintainers ("by-maintainer");
+
+  for my $m (sort keys %maints) {
+    my $m_ref = $maints{$m};
+    my %m = %$m_ref;
+    next if $m{"is_generic"};  # no contact info needed
+    next if $m{"address"} || $m{"phone"};  # have contact info
+    (my $packages = $m{"package"}) =~ tr/|/ /;
+    push (@maints, "$m{best_email} ($m{name} - $packages)");
+  }
+  
+  return @maints;
+}
+
+
+
+# Return all packages sorted by activity status, one package per line.
+# 
+sub list_packages_activity
+{
+  my @ret = ();
+
+  # sort activity statuses in this order.  If other strings are used,
+  # they'll show up first so they can be easily fixed.
+  my %activity_order = ("stale" => 1, "moribund" => 2,
+                        "ok" => 3, "stable" => 4);
+  
+  my %pkgs = &read_gnupackages ();
+  for my $pkgname (sort by_activity keys %pkgs) {
+    my %p = %{$pkgs{$pkgname}};
+    my $activity = $p{"activity-status"};
+    push (@ret, sprintf ("$GNUPACKAGES_FILE:%4d:%-14s $activity",
+                         $p{"lineno"}, $pkgname));
+  }
+  
+  return @ret;
+  
+  sub by_activity
+  {
+    (my $a_status = $pkgs{$a}->{"activity-status"}) =~ s/ .*//;;
+    (my $b_status = $pkgs{$b}->{"activity-status"}) =~ s/ .*//;;
+    $activity_order{$a_status} <=> $activity_order{$b_status}
+    || $pkgs{$a}->{"activity-status"} cmp $pkgs{$b}->{"activity-status"}
+    || $a cmp $b;
+  }
+}
+
+
+
+# Return all packages whose GPLv3 status is not final.
+# 
+sub list_packages_gplv3
+{
+  my @ret = ();
+
+  my %pkgs = &read_gnupackages ();
+  for my $pkgname (sort by_gplv3 keys %pkgs) {
+    my %p = %{$pkgs{$pkgname}};
+    my $gplv3 = $p{"gplv3-status"};
+    next if $gplv3 =~ /^(done|doc|not-applicable|notgpl)/;
+    push (@ret, sprintf ("$GNUPACKAGES_FILE:%4d:%-14s $gplv3",
+                         $p{"lineno"}, $pkgname));
+  }
+  
+  return @ret;
+  
+  sub by_gplv3
+  {
+    (my $a_status = $pkgs{$a}->{"gplv3-status"});# =~ s/ .*//;;
+    (my $b_status = $pkgs{$b}->{"gplv3-status"});# =~ s/ .*//;;
+    $pkgs{$a}->{"gplv3-status"} cmp $pkgs{$b}->{"gplv3-status"}
+    || $a cmp $b;
+  }
+}
+
+
+
 # Return list of packages for whom no maintainer has answered.
 # 
 sub list_packages_unanswered
@@ -182,27 +236,6 @@
 
 
 
-# Return list of maintainers for whom we have no phone or address.
-# 
-sub list_maintainers_nophysical
-{
-  my @maints = ();
-  my %maints = &read_maintainers ("by-maintainer");
-
-  for my $m (sort keys %maints) {
-    my $m_ref = $maints{$m};
-    my %m = %$m_ref;
-    next if $m{"is_generic"};  # no contact info needed
-    next if $m{"address"} || $m{"phone"};  # have contact info
-    (my $packages = $m{"package"}) =~ tr/|/ /;
-    push (@maints, "$m{best_email} ($m{name} - $packages)");
-  }
-  
-  return @maints;
-}
-
-
-
 # Return list of packages in the activity report that is not in the
 # maintainers file.
 # 
@@ -385,9 +418,9 @@
       # record best email to use for the maintainer.
       $maint{"best_email"} = $maint{"privateemail"} || $maint{"email"};
       
-      # record where we found it.  We are at the blank line, and we can
+      # record where we found it.  We are past the blank line, and we can
       # assume every entry has at least two lines.
-      $maint{"lineno"} = $. - 2;
+      $maint{"lineno"} = $. - 4;
       
       if ($how eq "by-package") {
         # split apart the package value we've accumulated..

Index: gnupackages.txt
===================================================================
RCS file: /sources/womb/gnumaint/gnupackages.txt,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -b -r1.29 -r1.30
--- gnupackages.txt     4 Nov 2009 00:05:20 -0000       1.29
+++ gnupackages.txt     9 Nov 2009 18:41:36 -0000       1.30
@@ -1,4 +1,4 @@
-# $Id: gnupackages.txt,v 1.29 2009/11/04 00:05:20 karl Exp $
+# $Id: gnupackages.txt,v 1.30 2009/11/09 18:41:36 karl Exp $
 # This file records information on a per-package basis,
 # *not* including maintainers (that's in /gd/gnuorg/maintainers).
 #
@@ -37,11 +37,11 @@
 activity-status: stale 20011213 (5.0) # 10aug08,16aug08 wrote address@hidden
 
 package: adns
-gplv3-status: gplv2+-since-library-(28aug07,gnumaint-reply 21 Aug 2007 
11:55:17 +0100))
+gplv3-status: stays-gplv2+-since-library? (28aug07,gnumaint-reply 21 Aug 2007 
11:55:17 +0100))
 activity-status: stable 20060606 (1.3) # ok since no gplv3 desired?
 
 package: aeneas
-gplv3-status: done-as-of-1.2 (14jul08)
+gplv3-status: done-in-1.2 (14jul08)
 activity-status: ok 20080714
 
 package: aetherspace
@@ -56,7 +56,7 @@
 activity-status: ok 20081220
 
 package: archimedes
-gplv3-status: done-as-of-0.8.0 (14jul08)
+gplv3-status: done-in-0.8.0 (14jul08)
 activity-status: ok 20080714 (0.8.0)
 
 package: aroundme
@@ -66,13 +66,13 @@
 activity-status: ok 2008 # 200808 wrote author, working
 
 package: aspell
-gplv3-status: library-needs-discussion (gnumaint-reply 20 Aug 2007 20:31:07)
+gplv3-status: under-discussion-library (gnumaint-reply 20 Aug 2007 20:31:07)
 activity-status: ok 20080415 (0.60.6)
 
 package: auctex
 copyright-holder: fsf
 mundane-name: AUCTeX
-gplv3-status: ok-in-11.85
+gplv3-status: done-in-11.85
 activity-status: ok 20080210 (11.85)
 
 package: autoconf
@@ -83,7 +83,7 @@
 package: autogen
 copyright-holder: notfsf
 logo: /software/autogen/pix/autogen_back.png
-gplv3-status: done-as-of-5.9.5
+gplv3-status: done-in-5.9.5
 activity-status: ok 20090516 (5.9.8)
 
 package: automake
@@ -100,17 +100,17 @@
 activity-status: ok 20090715 (0.8.1)
 
 package: barcode
-gplv3-status: 3nov09 unsure
+gplv3-status: under-discussion-with-maintainer (3nov09)
 activity-status: stale 20020303 (0.98) # 26jul09 replied
 
 package: bash
 copyright-holder: fsf
-gplv3-status: will-be-in-4.0 # chet mail 23aug08
+gplv3-status: done-in-4.0
 activity-status: ok 20091024 (4.0.35)
 
 package: bayonne
 copyright-holder: notfsf
-gplv3-status: next-release-early-2009 (licensing #373278)
+gplv3-status: in-next-release-early-2009 (licensing #373278)
 activity-status: ok 20070118 (bayonne2-2.3.2, maintainer is very active)
 
 package: bazaar
@@ -132,7 +132,7 @@
 package: bfd
 copyright-holder: fsf
 mundane-name: BFD
-gplv3-status: done-as-of-binutils-2.18
+gplv3-status: done-in-binutils-2.18
 activity-status: ok 20091016 (2.20)
 
 package: binutils
@@ -141,7 +141,7 @@
 
 package: bison
 copyright-holder: fsf
-gplv3-status: done-as-of-2.4
+gplv3-status: needs-exception-#502111 (but-gplv3-in-2.4)
 activity-status: ok 20081211 (2.4.1)
 
 package: bool
@@ -181,7 +181,7 @@
 
 package: ccscript
 mundane-name: ccScript
-gplv3-status: done-as-of-4.0.0
+gplv3-status: done-in-4.0.0
 activity-status: ok 20090719 (4.1.1, ccscript3-1.1.7/20090214)
 
 package: cfengine
@@ -219,14 +219,14 @@
 activity-status: moribund # mostly merged into classpath
 
 package: clisp
-gplv3-status: still-v2only-as-of-2.4.5-bruno-24oct07
+gplv3-status: not-done-v2only-in-2.4.5-bruno:24oct07-asked-rms:oct09
 mundane-name: CLISP
 logo: /software/clisp/clisp.png
 activity-status: ok 20090728 (2.48)
 
 package: cobol
 copyright-holder: fsf
-gplv3-status: next-release (gnumaint-reply 20 Apr 2007 06:20:41 +1000)
+gplv3-status: in-next-release (gnumaint-reply 20 Apr 2007 06:20:41 +1000)
 download-url: http://sourceforge.net/project/showfiles.php?group_id=5709
 activity-status: moribund 20000812 (0.1.2) # 13oct08 wrote, 26oct08 reply
 note: dedicated maintainer, but will not be able to resume full-time work
@@ -246,7 +246,7 @@
 
 package: config
 copyright-holder: fsf
-gplv3-status: needs-licensing-exception-#341945 (gnumaint-reply 21 Aug 2007 
18:39:06)
+gplv3-status: needs-exception-#341945 (gnumaint-reply 21 Aug 2007 18:39:06)
 activity-status: ok released-through-vc
 
 package: cons
@@ -259,7 +259,7 @@
 
 package: coreutils
 copyright-holder: fsf
-gplv3-status: done-as-of-7.1
+gplv3-status: done-in-7.1
 activity-status: ok 20090911 (7.6)
 
 package: cpio
@@ -281,8 +281,7 @@
 
 package: dap
 copyright-holder: fsf
-gplv3-status: needs-volunteer (4 Sep 2007 22:37:48, 28 Jan 2008 20:23:40)
-mundane-name: Dap
+gplv3-status: not-done-maintainer-wants-volunteer (4 Sep 2007 22:37:48, 28 Jan 
2008 20:23:40)
 homepage: /software/dap/dap.html
 activity-status: ok 20080220 (3.7)
 
@@ -310,7 +309,7 @@
 package: denemo
 logo: http://denemo.sourceforge.net/images/logo1.png
 download-url: http://download.savannah.gnu.org/releases/denemo/
-activity-status: ok 20080803 (0.7.9)
+activity-status: ok 20091104 (0.8.10)
 
 package: dia
 homepage: http://live.gnome.org/Dia
@@ -404,7 +403,7 @@
 package: emacs
 copyright-holder: fsf
 logo: 
http://cvs.savannah.gnu.org/viewvc/*checkout*/emacs/etc/images/icons/emacs_48.png?root=emacs&amp;revision=1.3
-gplv3-status: done-as-of-22.3
+gplv3-status: done-in-22.3
 activity-status: ok 20090729 (23.1)
 
 package: emms
@@ -434,7 +433,7 @@
 package: ferret
 logo: /software/ferret/ferret.png
 download-url: http://www.gnuferret.org/Downloads
-gplv3-status: done-as-of-0.7
+gplv3-status: done-in-0.7
 activity-status: ok 20081116 (0.7)
 
 package: findutils
@@ -470,7 +469,7 @@
 activity-status: ok 20080827 (3.1)
 
 package: fribidi
-gplv3-status: discussing-with-brett (gnumaint-reply 3 Oct 2007 11:06:24)
+gplv3-status: under-discussion-with-brett (gnumaint-reply 3 Oct 2007 11:06:24)
 mundane-name: FriBiDi
 homepage: http://fribidi.org/wiki/
 download-url: http://fribidi.org/download/
@@ -509,12 +508,11 @@
 activity-status: stale 20050811 (2.6.7) # 18nov08,29jan09 wrote
 
 package: gcompris
-gplv3-status: released in 8.4beta2 (gnumaint-reply 22 Aug 2007 02:04:12)
+gplv3-status: done-in-8.4beta2 (gnumaint-reply 22 Aug 2007 02:04:12)
 mundane-name: GCompris
-homepage: http://gcompris.net/
 logo: http://www.ofset.org/uploadfiles/61/image/logoplane.jpg
 download-url: http://sourceforge.net/project/showfiles.php?group_id=6865
-activity-status: ok 20080807 (8.4.6)
+activity-status: ok 20091018 (8.4.13)
 
 package: gdb
 copyright-holder: fsf
@@ -530,12 +528,12 @@
 note: patch needs rewriting, ticket #345011.
 
 package: gengen
-gplv3-status: done-as-of-1.3
+gplv3-status: done-in-1.3
 activity-status: ok 20091001 (1.4.1)
 
 package: gengetopt
 copyright-holder: fsf
-gplv3-status: done-as-of-2.22.1
+gplv3-status: done-in-2.22.1
 activity-status: ok 20091001 (2.22.3)
 
 package: gettext
@@ -554,7 +552,7 @@
 
 package: ghostscript
 copyright-holder: notfsf
-gplv3-status: aladdin-is-waiting
+gplv3-status: should-be-done-now-that-aladdin-did
 mundane-name: GNU Ghostscript
 logo: /software/ghostscript/images/gnugs-head.png
 activity-status: ok 20080504 (8.62.0)
@@ -596,7 +594,7 @@
 package: glpk
 mundane-name: GLPK
 gplv3-status: done-in-directory
-activity-status: ok 20090726 (4.39)
+activity-status: ok 20091103 (4.40)
 
 package: glue
 mundane-name: GLUE
@@ -610,7 +608,7 @@
 
 package: gmp
 copyright-holder: fsf
-gplv3-status: in-discussion (gnumaint-reply 21 Aug 2007 02:55:08)
+gplv3-status: under-discussion (gnumaint-reply 21 Aug 2007 02:55:08)
 mundane-name: GMP
 homepage: http://gmplib.org/
 logo: http://gmplib.org/gmplogo2.png
@@ -618,7 +616,7 @@
 
 package: gnash
 copyright-holder: fsf
-gplv3-status: done-as-of-0.8.2
+gplv3-status: done-in-0.8.2
 logo: /software/gnash/images/small-GnashGnu.png
 activity-status: ok 20090915 (0.8.6)
 
@@ -635,7 +633,7 @@
 activity-status: stale 20050306 (4.1.0) # 27nov08 wrote
 
 package: gnatsweb
-gplv3-status: not-done-as-of-4.0.0
+gplv3-status: not-done-in-4.0.0
 activity-status: stale no-maint 20030729 (4.00) # 13nov08,27nov08 wrote about 
gnu status
 
 package: gnome
@@ -686,7 +684,7 @@
 mundane-name: GNUcap
 download-url: http://www.geda.seul.org/dist/
 activity-status: stale 20060920 (0.35) # 15aug08 wrote about gplv3
-gplv3-status: needs-licensing-plugin-question-#342232 done-in-aug20-snapshot 
(gnumaint-reply 28 Aug 2007 15:45:43)
+gplv3-status: needs-exception-#342232 done-in-aug20-snapshot (gnumaint-reply 
28 Aug 2007 15:45:43)
 
 package: gnucash
 mundane-name: GnuCash
@@ -721,7 +719,7 @@
 package: gnu-queue
 mundane-name: Queue
 copyright-holder: address@hidden and other authors
-gplv3-status: still partly at GPLv1, but should be updatable
+gplv3-status: under-discussion partly at GPLv1, but should be updatable
 homepage: /software/queue/
 activity-status: stale 20001101 (1.30.1) # 3dec08 wrote
 
@@ -744,7 +742,7 @@
 
 package: gnubik
 mundane-name: GNUbik
-gplv3-status: done-as-of-2.3
+gplv3-status: done-in-2.3
 activity-status: ok 20090105 (2.3)
 
 package: gnufi
@@ -863,7 +861,7 @@
 mundane-name: GNUstep
 other-homepage: http://www.gnustep.org/
 logo: http://wiki.gnustep.org/skins/common/images/GNUstep-MediaWiki.png
-gplv3-status: remaining-at-v2+-brett 03 Jun 2008 14:47:17
+gplv3-status: not-applicable-stays-v2+-brett 03 Jun 2008 14:47:17
 download-url: ftp://ftp.gnustep.org/pub/gnustep
 activity-status: ok # many packages, gnustep-base is ok
 
@@ -882,7 +880,7 @@
 copyright-holder: notfsf
 logo: /software/gnuzilla/icecat-128.png
 gplv3-status: not-applicable-since-not-our-program
-activity-status: ok 20090910 (icecat-3.5.3)
+activity-status: ok 20091108 (icecat-3.5.5)
 
 package: goldwater
 homepage: none
@@ -896,7 +894,7 @@
 activity-status: ok 20081226 (1.2.8)
 
 package: gpaint
-gplv3-status: in-0.3.2-alpha (was gnumaint-reply 20 Aug 2007 23:52:53)
+gplv3-status: in-0.3.2-alpha-but-unreleased (was gnumaint-reply 20 Aug 2007 
23:52:53)
 #download-url: ftp://alpha.gnu.org/gnu/gpaint/
 activity-status: stale 20070910 (0.3.3) # 12dec08 replied
 
@@ -904,7 +902,6 @@
 copyright-holder: fsf
 gplv3-status: done-in-3.0.4
 activity-status: ok 20090203 (3.0.4)
-contact: 13dec08-replied
 
 package: gprolog
 activity-status: ok 20090210 (1.3.1)
@@ -938,7 +935,7 @@
 activity-status: ok 20080203 (1.96)
 
 package: gsasl
-gplv3-status: stays-at-lgplv2.1+
+gplv3-status: stays-lgplv2.1+
 activity-status: ok 20091008 (1.3, libgsasl-1.3/20091008)
 
 package: gsdv
@@ -970,7 +967,7 @@
 
 #package: gts
 #long-name: GNU Triangulated Surface Library
-#gplv3-status: not-done-as-of-4.0.0
+#gplv3-status: not-done-in-4.0.0
 #homepage: http://gts.sourceforge.net/
 #activity-status: ? # 13nov08 wrote about gnu status
 
@@ -982,7 +979,7 @@
 activity-status: ok # many packages
 
 package: gtypist
-gplv3-status: done-as-of-2.8
+gplv3-status: done-in-2.8
 activity-status: ok 20090218 (2.8.3)
 
 package: guile
@@ -997,7 +994,7 @@
 activity-status: ok 20081124 (2.1.2)
 
 package: guile-rpc
-gplv3-status: in-alpha-release (gnumaint-reply 21 Aug 2007 09:35:53 +0200)
+gplv3-status: done-in-0.3-alpha (gnumaint-reply 21 Aug 2007 09:35:53 +0200)
 activity-status: stale no-release # 17dec08 replied, official eta unknown
 
 package: guile-gnome
@@ -1016,7 +1013,7 @@
 
 package: gv
 copyright-holder: notfsf
-gplv3-status: done-as-of-3.6.5
+gplv3-status: done-in-3.6.5
 activity-status: ok 20090322 (3.6.7)
 
 package: gvpe
@@ -1058,7 +1055,7 @@
 activity-status: ok released-through-debian # 19970712 (0.2)
 
 package: hyperbole
-gplv3-status: done-as-of-5.0.3
+gplv3-status: done-in-5.0.3
 activity-status: ok 20080807 (5.0.3)
 
 package: idutils
@@ -1072,7 +1069,7 @@
 
 package: indent
 copyright-holder: notfsf
-gplv3-status: not-gpl-is-bsd
+gplv3-status: notgpl-is-bsd
 activity-status: ok 20090215 (2.2.10)
 
 package: inetutils
@@ -1081,7 +1078,7 @@
 activity-status: ok 20081227 (1.6)
 
 package: intlfonts
-gplv3-status: fonts (licensing 341653, 21 Aug 2007 10:41:44)
+gplv3-status: needs-exception-#341653-fonts (21 Aug 2007 10:41:44)
 homepage: none
 activity-status: stale 20030703 (1.2.1) # 27jan09 wrote
 
@@ -1097,7 +1094,7 @@
 package: java-getopt
 homepage: http://www.urbanophile.com/arenn/hacking/download.html
 download-url: ftp://ftp.urbanophile.com/pub/arenn/software/sources/
-gplv3-status: not-needed-since-libc-fns-per-rms (karl mail 08 May 2008 
04:44:55)
+gplv3-status: not-applicable-since-libc-fns-per-rms (karl mail 08 May 2008 
04:44:55)
 activity-status: stable 20060829 (1.0.13)
 note: classpath has its own smaller/simpler option parsing library,
 note: per Mark Wielaard, 24apr07.  This is an independent port of libc getopt.
@@ -1108,7 +1105,7 @@
 
 package: jel
 homepage: none
-gplv3-status: done-as-of-2.0.1
+gplv3-status: done-in-2.0.1
 activity-status: stable 20071012 (2.0.1) # 24jun09 replied
 
 package: jwhois
@@ -1140,10 +1137,10 @@
 copyright-holder: fsf
 gplv3-status: under-discussion
 download-url: http://ftp.gnu.org/gnu/glibc/
-activity-status: ok 20090517 (2.10.1)
+activity-status: ok 20091104 (2.11)
 
 package: libcdio
-gplv3-status: done-as-of-0.81
+gplv3-status: done-in-0.81
 activity-status: ok 20091027 (0.82, pycdio-0.16/20091026, 
rbcdio-0.15/200901518)
 
 package: libcvs-perl
@@ -1155,7 +1152,7 @@
 
 package: libextractor
 logo: /software/libextractor/extractor_logo.png
-gplv3-status: dependends-on-gnunet (gnumaint-reply 20 Aug 2007 20:40:48)
+gplv3-status: depends-on-gnunet (gnumaint-reply 20 Aug 2007 20:40:48)
 activity-status: ok 20090220 (0.5.22)
 
 package: libffcall
@@ -1174,12 +1171,12 @@
 
 package: libiconv
 copyright-holder: fsf
-gplv3-status: partially-done-in-1.12
+gplv3-status: not-done-partially-in-1.12
 activity-status: ok 20090630 (1.13.1)
 
 package: libidn
 copyright-holder: notfsf
-gplv3-status: partially-done-in-1.6-except-java?-20mar08
+gplv3-status: not-done-partially-in-1.6-except-java?-20mar08
 activity-status: ok 20090608 (1.15)
 
 package: libmatheval
@@ -1188,14 +1185,14 @@
 
 package: libmicrohttpd
 copyright-holder: not-fsf
-gplv3-status: waiting-on-gnunet-lgplv2.1+
+gplv3-status: depends-on-gnunet-lgplv2.1+
 activity-status: ok 20091028 (0.4.4)
 
 package: libopts
 activity-status: ok released-through-autogen
 
 package: libredwg
-activity-status: new-23oct09
+activity-status: new 23oct09
 
 package: libsigsegv
 copyright-holder: fsf
@@ -1232,11 +1229,12 @@
 
 package: liquidwar6
 mundane-name: Liquid War 6
-gplv3-status: 
done-http://download.savannah.gnu.org/releases/liquidwar6/liquidwar6-0.0.2beta.tar.gz
+gplv3-status: done-in-0.0.2beta
 download-url: http://download.savannah.gnu.org/releases/liquidwar6/
 activity-status: ok 20080130 (0.0.3)
 
 package: lispintro
+gplv3-status: doc
 activity-status: ok released-through-emacs
 
 package: lrzsz
@@ -1264,7 +1262,7 @@
 package: mailman
 copyright-holder: fsf
 logo: /graphics/dragonlogo.jpg
-gplv3-status: planned-for-2.2-and-3.0
+gplv3-status: in-next-release-2.2-and-3.0
 activity-status: ok 20090223 (2.1.12)
 
 package: mailutils
@@ -1284,18 +1282,18 @@
 activity-status: ok 20071116 (2.6)
 
 package: maverik
-gplv3-status: done-as-of-6.4
+gplv3-status: done-in-6.4
 activity-status: ok 20090111 (6.4)
 
 package: mc
 long-name: Midnight Commander
 copyright-holder: notfsf
 activity-status: stale 20070913 (4.6.2-pre1) # 12nov08,20jan09 wrote
-gplv3-status: not done in 4.6.2-pre1
+gplv3-status: not-done-in-4.6.2-pre1
 
 package: mcron
 logo: /software/mcron/mcron-logo.png
-gplv3-status: done-as-of-1.0.4
+gplv3-status: done-in-1.0.4
 activity-status: stable 20080221 (1.0.4)
 
 package: mcsim
@@ -1364,7 +1362,7 @@
 activity-status: ok 20090225 (2.4.1)
 
 package: mtools
-activity-status: ok 20090829 (4.0.11)
+activity-status: ok 20091103 (4.0.12)
 
 package: muse
 gplv3-status: done-in-3.10
@@ -1383,7 +1381,7 @@
 note: gcc assert stuff
 
 package: nano
-gplv3-status: done-as-of-2.1.4
+gplv3-status: done-in-2.1.4
 logo: http://www.gnu.org.ua/software/nano/nano.jpg
 activity-status: ok 20090727 (2.1.10)
 
@@ -1396,14 +1394,15 @@
 note: revised BSD license.
 
 package: nettle
-gplv3-status: will-stay-at-lgplv2+
+gplv3-status: stays-lgplv2+?
+download-url: http://www.lysator.liu.se/~nisse/archive/
 
 package: ocrad
-gplv3-status: done-as-of-0.17
+gplv3-status: done-in-0.17
 activity-status: ok 20090508 (0.18)
 
 package: octave
-gplv3-status: done-as-of-3.0.1 (licensing #345079)
+gplv3-status: done-in-3.0.1 (licensing #345079)
 activity-status: ok 20090926 (3.2.3)
 
 package: oleo
@@ -1584,7 +1583,7 @@
 package: readline
 copyright-holder: fsf
 homepage: http://cnswww.cns.cwru.edu/php/chet/readline/rltop.html
-gplv3-status: recheck, ramey mail 25 Aug 2008 09:15:08 lists v2-only pkgs 
using it
+gplv3-status: done-in-4.0 ramey 25 Aug 2008 09:15:08 has v2-only pkgs using it
 activity-status: ok 20090727 (6.0.004)
 
 package: reftex
@@ -1599,18 +1598,18 @@
 activity-status: moribund # no new release yet, but maintainer is active
 
 package: rush
-gplv3-status: done-as-of-1.5
+gplv3-status: done-in-1.5
 activity-status: ok 20090210 (1.6)
 
 package: sather
 activity-status: stale 20070707 (1.2.3) # 23jun09 contact
 
 package: sauce
-gplv3-status: next-release (gnumaint-reply 21 Aug 2007 11:55:17 +0100)
+gplv3-status: in-next-release (gnumaint-reply 21 Aug 2007 11:55:17 +0100)
 activity-status: stale 20010323 (0.7.7) # 4feb09 wrote
 
 package: scm
-gplv3-status: done-in-scm-5e5 (info-gnu 4 Feb 2008 00:27:30)
+gplv3-status: needs-exception-#502112-but-done-in-scm-5e5 (info-gnu 4 Feb 2008 
00:27:30)
 mundane-name: SCM
 homepage: none
 logo: http://swiss.csail.mit.edu/~jaffer/Logo/SCM_64.png
@@ -1776,7 +1775,7 @@
 
 package: tar
 copyright-holder: fsf
-gplv3-status: done-as-of-1.21
+gplv3-status: done-in-1.21
 activity-status: ok 20081226 (1.21)
 
 package: termcap
@@ -1800,11 +1799,11 @@
 
 package: texinfo
 copyright-holder: fsf
-gplv3-status: done
+gplv3-status: needs-exception-#502113-low-priority
 activity-status: ok 20080919 (4.13)
 
 package: texmacs
-gplv3-status: not-done-as-of-1.0.7
+gplv3-status: not-done-in-1.0.7
 download-url: http://www.texmacs.org/tmweb/download/sources.en.html
 activity-status: ok 20081015 (1.07)
 
@@ -1818,8 +1817,8 @@
 package: tramp
 copyright-holder: fsf
 mundane-name: TRAMP
-gplv3-status: done-as-of-2.1.14
-activity-status: ok 20090622 (2.1.16)
+gplv3-status: done-in-2.1.14
+activity-status: ok 20091107 (2.1.17)
 
 package: trueprint
 activity-status: stale 20010709 (5.3) # 17apr09 wrote
@@ -1836,7 +1835,7 @@
 activity-status: ok 20090120 (0.21.0)
 
 package: userv
-gplv3-status: system component, discussing (gnumaint-reply 21 Aug 2007 
11:55:17 +0100)
+gplv3-status: under-discussion-system-component (gnumaint-reply 21 Aug 2007 
11:55:17 +0100)
 activity-status: stale 20060605 (1.0.5) # ian.jackson
 
 package: utftpd
@@ -1850,7 +1849,7 @@
 
 package: vcdimager
 mundane-name: VCDImager
-gplv3-status: maintainer-asked-rocky-4nov07
+gplv3-status: under-discussion-with-maintainer (4nov07)
 activity-status: moribund 20050711 (0.7.23) # 26feb09 replied
 
 package: vc-dwim
@@ -1875,7 +1874,7 @@
 activity-status: stale no-release
 
 package: wb
-gplv3-status: done-in-wb2a2 (info-gnu 4 Feb 2008 00:29:22)
+gplv3-status: needs-exception-#502112-but-done-in-wb2a2 (info-gnu 4 Feb 2008 
00:29:22)
 mundane-name: WB
 homepage: http://people.csail.mit.edu/jaffer/WB
 logo: http://swiss.csail.mit.edu/~jaffer/TreeRoot96.jpg
@@ -1922,7 +1921,7 @@
 activity-status: ok 20091031 (4.4.1)
 
 package: xhippo
-gplv3-status: done-as-of-3.5
+gplv3-status: done-in-3.5
 activity-status: ok 20070827 (3.5)
 
 package: xlogmaster




reply via email to

[Prev in Thread] Current Thread [Next in Thread]