commit-womb
[Top][All Lists]
Advanced

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

[commit-womb] gnumaint .cvsignore Makefile rec/gnupackages2tx...


From: Mike Gerwitz
Subject: [commit-womb] gnumaint .cvsignore Makefile rec/gnupackages2tx...
Date: Tue, 19 Jun 2018 22:36:24 -0400 (EDT)

CVSROOT:        /sources/womb
Module name:    gnumaint
Changes by:     Mike Gerwitz <mikegerwitz>      18/06/19 22:36:24

Modified files:
        .              : .cvsignore Makefile 
        rec            : gnupackages2txt.awk pkgblurbs2txt.awk 
Removed files:
        .              : gnupackages.txt 

Log message:
        gnupackages.txt: Remove and generate instead
        
        gnupackages.txt is now generated from rec/gnupackages.rec using the new
        rec/gnupackages2txt.awk.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnumaint/.cvsignore?cvsroot=womb&r1=1.14&r2=1.15
http://cvs.savannah.gnu.org/viewcvs/gnumaint/Makefile?cvsroot=womb&r1=1.62&r2=1.63
http://cvs.savannah.gnu.org/viewcvs/gnumaint/gnupackages.txt?cvsroot=womb&r1=1.474&r2=0
http://cvs.savannah.gnu.org/viewcvs/gnumaint/rec/gnupackages2txt.awk?cvsroot=womb&r1=1.2&r2=1.3
http://cvs.savannah.gnu.org/viewcvs/gnumaint/rec/pkgblurbs2txt.awk?cvsroot=womb&r1=1.1&r2=1.2

Patches:
Index: .cvsignore
===================================================================
RCS file: /sources/womb/gnumaint/.cvsignore,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -b -r1.14 -r1.15
--- .cvsignore  15 Jun 2018 03:14:10 -0000      1.14
+++ .cvsignore  20 Jun 2018 02:36:23 -0000      1.15
@@ -2,6 +2,7 @@
 activity-report.txt
 copyright-papers.txt
 pkgblurbs.txt
+gnupackages.txt
 m.test
 msg.*
 *.mbox*

Index: Makefile
===================================================================
RCS file: /sources/womb/gnumaint/Makefile,v
retrieving revision 1.62
retrieving revision 1.63
diff -u -b -r1.62 -r1.63
--- Makefile    15 Jun 2018 03:14:10 -0000      1.62
+++ Makefile    20 Jun 2018 02:36:23 -0000      1.63
@@ -1,4 +1,4 @@
-# $Id: Makefile,v 1.62 2018/06/15 03:14:10 mikegerwitz Exp $
+# $Id: Makefile,v 1.63 2018/06/20 02:36:23 mikegerwitz Exp $
 # Copyright 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015
 # Free Software Foundation, Inc.
 #
@@ -77,10 +77,10 @@
 test-checkactivity cact:
        gm check activityfile
        
-test-checkfsf cfsf:
+test-checkfsf cfsf: gnupackages.txt
        gm check fsfcopyright
 
-test-checkmaint cmaint:
+test-checkmaint cmaint: gnupackages.txt
        gm check maintainers
 
 test-checkftp-upload cfu:
@@ -93,7 +93,7 @@
        gm check savannah
 
 # 
-creport:
+creport: gnupackages.txt
        @printf "total "; gm generate maintainers bypackage \
                          | grep ' - ' | grep -v ' (generic)' | wc -l
        @printf "fsf   "; gm list copyrightfsf 2>/dev/null | wc -l
@@ -158,7 +158,9 @@
 # 
 # Old txt files, now maintained as recfiles
 pkgblurbs.txt: rec/pkgblurbs.rec
-       awk -f rec/pkgblurbs2txt.awk < $< > $@
+       gawk -f rec/pkgblurbs2txt.awk < $< > $@
+gnupackages.txt: rec/gnupackages.rec
+       gawk -f rec/gnupackages2txt.awk < $< > $@
 
 # 
 # From the good old days when the Directory was in CVS.

Index: rec/gnupackages2txt.awk
===================================================================
RCS file: /sources/womb/gnumaint/rec/gnupackages2txt.awk,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -b -r1.2 -r1.3
--- rec/gnupackages2txt.awk     17 Jun 2018 05:24:07 -0000      1.2
+++ rec/gnupackages2txt.awk     20 Jun 2018 02:36:24 -0000      1.3
@@ -1,4 +1,4 @@
-# $Id: gnupackages2txt.awk,v 1.2 2018/06/17 05:24:07 mikegerwitz Exp $
+# $Id: gnupackages2txt.awk,v 1.3 2018/06/20 02:36:24 mikegerwitz Exp $
 # gnupackages.rec to old gnupackages.txt
 #
 #  Copyright (C) 2018 Mike Gerwitz
@@ -17,9 +17,9 @@
 #  along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 # This script converts the gnupackages.rec recfile into the old txt format
-# that used to be committed directly to the repository.
-#
-# THIS SCRIPT IS A WORK-IN-PROGRESS; DO NOT USE IT!
+# that used to be committed directly to the repository.  The txt format
+# will eventually be entirely removed; this is intended to allow that
+# transition to proceed incrementally.
 
 BEGIN {
     FS = OFS = ": "
@@ -41,6 +41,7 @@
     add_key( key, value )
 }
 
+# A number of keys are handled differently in the recfile
 key == "package"         { package = value }
 key == "blurb_id"        { next }
 key == "activity_status" { next }
@@ -51,7 +52,7 @@
 key == "note"            { next }  # output at end (reorder)
 key ~ /^last_release/    { next }
 
-# end of package block
+# End of package block
 eob() {
     print "activity-status", mkactivity()
     printkey( "last_contact" )
@@ -70,13 +71,17 @@
 }
 
 
-# key abstractions and predicates
+# Key abstractions and predicates
 function is_key()        { return $1 ~ /^[a-z_]+$/ }
 function is_key_assign() { return is_key() && value }
 function eob()           { return $0 ~ /^$/ && package }
 function is_symnote()    { return get_key( "note" ) ~ /^[a-z-]+$/ }
 
 
+# Print a "key: value" line for each value of key K
+#
+# K may have multiple values if `add_key' was called multiple times for
+# the same K.
 function printkey( k,   n, i )
 {
     n = keylen( k )
@@ -86,6 +91,12 @@
     }
 }
 
+# Print note unless it is a symbolic note
+#
+# Symbolic notes have special meaning and are concatenated with the
+# activity status in the output.  Note that `is_symnote` only checks
+# the first key value, and so this may not work correctly given multiple
+# notes; it just hasn't been a problem yet, as of this time of writing.
 function printnotes()
 {
     if ( is_symnote() ) {
@@ -96,13 +107,16 @@
 }
 
 
-# TODO: handle multiple versions (will need to track multiple 
last_release{,_date})
+# Generate activity status line
 function mkactivity()
 {
     return mkstatus() mkrelease()
 }
 
 
+# Generate status portion of activity status
+#
+# The status may be suffixed by a date and a symbolic note.
 function mkstatus(    status, last_act )
 {
     status   = get_key( "activity_status" )
@@ -132,6 +146,10 @@
 }
 
 
+# Generate release portion of activity status
+#
+# If there are multiple release versions, then all but the first will
+# have a date suffixed with the form "%s/%d".
 function mkrelease(    last_date, last_ver, release, i )
 {
     i = keylen( "last_release" ) - 1
@@ -157,17 +175,23 @@
 }
 
 
+# Append a value V for key K.
+#
+# If K already has a value, another will be added; values are
+# never replaced by this function.
 function add_key( k, v,   i )
 {
     i = pkginfon[k]++;
     pkginfo[k][i] = v
 }
 
+# Get value of key K at index I (default 0)
 function get_key( k, i )
 {
     return pkginfo[k][ or( i, 0 ) ]
 }
 
+# Get number of values for key K
 function keylen( k )
 {
     return pkginfon[k]

Index: rec/pkgblurbs2txt.awk
===================================================================
RCS file: /sources/womb/gnumaint/rec/pkgblurbs2txt.awk,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -b -r1.1 -r1.2
--- rec/pkgblurbs2txt.awk       15 Jun 2018 03:14:10 -0000      1.1
+++ rec/pkgblurbs2txt.awk       20 Jun 2018 02:36:24 -0000      1.2
@@ -1,5 +1,5 @@
+# $Id: pkgblurbs2txt.awk,v 1.2 2018/06/20 02:36:24 mikegerwitz Exp $
 # pkgblurbs.rec to old pkgblurbs.txt
-# $Id: pkgblurbs2txt.awk,v 1.1 2018/06/15 03:14:10 mikegerwitz Exp $
 #
 #  Copyright (C) 2018 Mike Gerwitz
 #

Index: gnupackages.txt
===================================================================
RCS file: gnupackages.txt
diff -N gnupackages.txt
--- gnupackages.txt     22 Feb 2018 03:06:29 -0000      1.474
+++ /dev/null   1 Jan 1970 00:00:00 -0000
@@ -1,3486 +0,0 @@
-# $Id: gnupackages.txt,v 1.474 2018/02/22 03:06:29 mikegerwitz Exp $
-# Public domain.
-#
-# This file is maintained in the CVS repository of GNU womb,
-# http://cvs.savannah.gnu.org/viewvc/gnumaint/?root=womb
-#
-# This file records information about GNU packages on a per-package
-# basis, *not* including the maintainers (that's in
-# /gd/gnuorg/maintainers).  There is nothing private in this file.
-#
-# Since some things are unique to the package and other things are
-# unique to the maintainer(s), it seems cleanest to have two files.
-#
-# Canonical order (idea is more frequently updated items toward the end):
-# package - alias- mundane-name - copyright-holder
-# - savannah - fsd - language - logo
-# - doc-category - doc-summary - doc-url - download-url
-# - gplv3-status - activity-status - last-contact
-# - next-contact - note
-#
-# Info about the fields:
-# - The package name should always be all-lowercase.
-#
-# - When mundane-name is not specified, default is to capitalize the first
-#   letter of the package identifier.
-#
-# - Default for download-url is http://ftp.gnu.org/gnu/PKGNAME.
-#
-# - A doc-url value of "none" means no specific documentation page (home
-#     page is used).
-#   "htmlxref" means to extract a list of additional manuals from the
-#     Texinfo htmlxref.cnf file.
-#   Otherwise, it can be a url, which can be used together with htmlxref,
-#   but multiple explicit urls or other combinations are not supported.
-#
-# - doc-category values are in doc-categories.txt (following FSD).
-# (doc stuff is used to generate gnu.org/manual.)
-#
-# - activity-status values: ok; newmaint,newcomaint (newly-appointed);
-#   newpkg (newly-dubbed); nomaint (no maintainer);
-#   container (doesn't get released);
-#   subpkg (released as part of another package);
-#   stable (no current release, but none needed);
-#   stale (needs release);
-#   moribund (needs release, but not likely to ever get one).
-# 
-# The home page is not a field because that *always* is (should be)
-# /software/PACKAGE, even if that does nothing but redirect.  Any other
-# method leads to redundant (hence inevitably inconsistent) information.
-#
-# Finally, this file as a whole is more or less sorted by package
-# identifier, for human convenience.  However, software reading this
-# file should accept any order of packages or fields.
-
-package: 3dldf
-mundane-name: 3DLDF
-copyright-holder: notfsf
-doc-category: Graphics
-doc-summary: 3D drawing with MetaPost output
-doc-url: /software/3dldf/manual/
-logo: /software/3dldf/graphics/dhnlogo.png
-gplv3-status: in-dev-sources (gnumaint-reply 29 Aug 2007 19:26:27)
-activity-status: stale 20131213 (2.0.3)
-
-package: 8sync
-copyright-holder: notfsf
-doc-category: Libraries
-doc-summary: An asynchronous programming library for Guile
-doc-url: /software/8sync/manual/
-gplv3-status: done
-activity-status: ok 20170108 (0.4.1)
-
-package: a2ps
-mundane-name: a2ps
-copyright-holder: notfsf
-doc-category: Printing
-doc-summary: Any file to PostScript, including pretty-printing
-doc-url: none
-gplv3-status: done-in-4.14
-activity-status: newcomaint/20170421 20071228 (4.14)
-
-package: acct
-copyright-holder: fsf-ok-#786467
-doc-category: Sysadmin
-doc-summary: Standard login and process accounting utilities
-doc-url: /software/acct/manual/accounting.html
-gplv3-status: done-as-of-6.5
-activity-status: ok 20141107 (6.6.2)
-
-package: acm
-doc-category: Games
-doc-summary: Multiplayer aerial combat simulation
-doc-url: none
-download-url: http://www.websimulations.com/download.htm
-gplv3-status: done-in-5.1
-activity-status: stale 20101205 (5.1)
-last-contact: 16nov10 replied, soon
-
-package: adns
-doc-category: Libraries
-doc-summary: Asynchronous DNS client library and utilities
-doc-url: none
-download-url: http://www.chiark.greenend.org.uk/~ian/adns/ftp/
-gplv3-status: done-in-1.5.0
-activity-status: ok 20160812 (1.5.1)
-
-package: alive
-doc-category: Internet
-doc-summary: Autologin and keep-alive daemon
-doc-url: /software/alive/manual/
-download-url: http://download.savannah.gnu.org/releases/alive/
-gplv3-status: not-done-in-1.4.0-nomaint
-activity-status: stale 20120908 (2.0.2)
-
-package: anubis
-doc-category: Email
-doc-summary: SMTP message submission daemon
-doc-url: /software/anubis/manual/
-gplv3-status: done-in-4.1.1
-activity-status: ok 20140523 (4.2)
-
-package: apl
-mundane-name: APL
-doc-category: Software
-doc-summary: APL interpreter
-doc-url: none
-gplv3-status: done-in-1.0
-activity-status: ok 20160828 (1.6)
-
-package: archimedes
-doc-category: Science
-doc-summary: Semiconductor device simulator
-doc-url: /software/archimedes/manual/
-gplv3-status: done-in-0.8.0 (14jul08)
-activity-status: stale 20130429 (2.0.1)
-
-package: aris
-doc-category: Mathematics
-doc-summary: Natural deduction first-order logic interface
-doc-url: none
-gplv3-status: ok
-activity-status: ok 20140306 (2.2)
-
-package: artanis
-language: guile
-doc-category: Internet
-doc-summary: Web application framework written in Guile
-doc-url: htmlxref
-gplv3-status: ok
-activity-status: newpkg/20150118
-
-package: aspell
-doc-category: Text
-doc-summary: Spell checker
-doc-url: htmlxref
-gplv3-status: under-discussion-library (gnumaint-reply 20 Aug 2007 20:31:07)
-activity-status: stale 20110604 (0.60.6.1)
-
-package: auctex
-copyright-holder: fsf-maybe-ok-remaining-few-in-process-#786529
-logo: /software/auctex/img/auctex-logo.png
-mundane-name: AUCTeX
-doc-category: Text
-doc-summary: Emacs environment for editing (all flavors of) TeX files
-doc-url: /software/auctex/manual/
-gplv3-status: done-in-11.85
-activity-status: ok 20170110 (11.90)
-
-package: autoconf
-copyright-holder: fsf-ok-#786485
-doc-category: Software
-doc-summary: Create source code configuration scripts
-doc-url: /software/autoconf/manual/
-gplv3-status: done-in-2.65-with-exception-#349136
-activity-status: stale 20120424 (2.69)
-
-package: autoconf-archive
-language: autoconf
-doc-category: Software
-doc-summary: Collection of freely reusable Autoconf macros
-doc-url: none
-gplv3-status: not-applicable
-activity-status: ok 20160916 (2016.09.16)
-
-package: autogen
-copyright-holder: notfsf
-logo: /software/autogen/pix/autogen_back.png
-doc-category: Software
-doc-summary: Automated program generator
-doc-url: /software/autogen/manual/
-gplv3-status: done-in-5.9.5
-activity-status: ok 20160524 (5.18.10)
-
-package: automake
-copyright-holder: fsf-no-reply
-language: perl
-doc-category: Software
-doc-summary: Making GNU standards-compliant Makefiles
-doc-url: /software/automake/manual/
-gplv3-status: done-with-exception-#349136
-activity-status: ok 20150105 (1.15)
-
-package: avl
-copyright-holder: fsf-ok-#786498
-doc-category: Libraries
-doc-summary: Binary and balanced search trees
-doc-url: htmlxref
-gplv3-status: done-in-2.0.3
-activity-status: stable 20070825 (2.0.3)
-
-package: ballandpaddle
-mundane-name: Ball and Paddle
-doc-category: Games
-doc-summary: Ball and paddle game extensible with Guile
-doc-url: none
-gplv3-status: done-in-0.7.1
-activity-status: stale 20090715 (0.8.1)
-last-contact: 11feb13 replied soon
-
-package: barcode
-doc-category: Business
-doc-summary: Convert text strings to printed bars in various standards
-doc-url: none
-gplv3-status: under-discussion (3nov09)
-activity-status: stale 20130329 (0.99)
-
-package: bash
-copyright-holder: fsf-ok-with-examples-#790945
-doc-category: Software
-doc-summary: The GNU Bourne-Again SHell
-doc-url: /software/bash/manual/
-gplv3-status: done-in-4.0
-activity-status: ok 20160917 (4.4)
-
-package: bayonne
-copyright-holder: notfsf
-doc-category: Telephony
-doc-summary: Telephony server
-doc-url: http://www.gnutelephony.org/doxy/bayonne2/
-gplv3-status: next-release-early-2009 (licensing #373278)
-activity-status: stale 20111218 (bayonne-2.99+3.0apionly2)
-
-package: bazaar
-savannah: none
-copyright-holder: notfsf
-logo: http://planet.bazaar-vcs.org/images/logo.png
-language: c,xpython
-doc-category: Version
-doc-summary: Version control system supporting both distributed and 
centralized workflows
-doc-url: http://doc.bazaar.canonical.com/en/
-download-url: http://bazaar-vcs.org/Download
-gplv3-status: not-done-in-2.02/14dec09-asked-rms, doc-license-is-gpl-too 
https://bugs.edge.launchpad.net/bzr/+bug/433734
-activity-status: ok 20160131 (2.7.0)
-note: the bazaar project on savannah is not this; not on savannah at all
-
-package: bc
-copyright-holder: fsf-no-reply
-doc-category: Mathematics
-doc-summary: Arbitrary precision numeric processing language
-doc-url: /software/bc/manual/bc.html
-gplv3-status: next-release
-activity-status: stale 20001115 (1.06)
-last-contact: 7may12 ken replied, 6may12 phil replied, 22may08 pizzini replied
-
-package: bfd
-mundane-name: BFD
-copyright-holder: fsf-ok-#787030
-doc-category: Libraries
-doc-summary: Binary File Descriptor library
-doc-url: htmlxref
-gplv3-status: unknown
-activity-status: container is-binutils
-
-package: binutils
-copyright-holder: fsf-ok-#787031
-doc-category: Software
-doc-summary: Binary utilities: bfd gas gprof ld
-doc-url: /software/binutils/manual/
-doc-url: htmlxref
-gplv3-status: done-in-binutils-2.18
-activity-status: ok 20160825 (2.27)
-
-package: bison
-copyright-holder: fsf-ok-#786486,#786486
-doc-category: Software
-doc-summary: Parser generator
-doc-url: /software/bison/manual/
-doc-shop: The Bison Manual
-doc-shop: http://shop.fsf.org/product/bison-manual/
-gplv3-status: done-in-2.4-without-exception-#502111
-activity-status: ok 20150123 (3.0.4)
-
-package: bool
-copyright-holder: fsf-no-reply
-doc-category: Text
-doc-summary: Finding text and HTML files that match boolean expressions
-doc-url: none
-gplv3-status: done-in-bool-0.2.2
-activity-status: ok 20150511 (0.2.2)
-last-contact: 5sep08,17dec09 asked
-
-package: bpel2owfn
-mundane-name: BPEL2oWFN
-logo: /software/bpel2owfn/ressource/bpel2owfn.png
-doc-category: Business
-doc-summary: Translating web service in BPEL to Open Workflow Nets
-doc-url: htmlxref
-download-url: http://download.gna.org/service-tech/bpel2owfn/
-gplv3-status: done-in-2.0.4
-activity-status: stable 20100124 (2.4)
-last-contact: 9apr10 replied
-
-package: c-graph
-logo: /software/c-graph/images/c-graph.png
-doc-category: Mathematics
-doc-summary: Visualizing and demonstrating convolution
-doc-url: /software/c-graph/manual/
-gplv3-status: done
-activity-status: stale 20120426 (2.0)
-
-package: ccaudio
-mundane-name: ccAudio
-doc-category: Telephony
-doc-summary: Standalone C++ class framework for manipulating audio data
-doc-url: none
-#doc-url: http://data.gnutelephony.org/docs/framework/index.html
-gplv3-status: done-in-1.0.0
-activity-status: ok 20151213 (ccaudio2-2.2.0)
-
-package: ccd2cue
-doc-category: Audio
-doc-summary: CCD to CUE sheet conversion
-doc-url: /software/ccd2cue/manual/
-gplv3-status: done
-activity-status: ok 20150313 (0.5)
-
-package: ccide
-doc-category: Software
-doc-summary: Decision table code generator
-doc-url: none
-gplv3-status: done
-download-url: http://sourceforge.net/projects/ccide/files/
-activity-status: stale 20120905 (0.6.6)
-
-package: ccrtp
-mundane-name: ccRTP
-copyright-holder: notfsf
-doc-category: Telephony
-doc-summary: Implementation of RTP (real-time transport protocol)
-doc-url: none
-gplv3-status: not-done-in-1.6.2, gplv3 done in libzrtpcpp-1.1.0
-activity-status: ok 20150329 (2.1.2, libzrtpcpp-2.3.4/20130701)
-
-package: ccscript
-mundane-name: ccScript
-doc-category: Telephony
-doc-summary: C++ class framework for virtual machine execution
-doc-url: none
-#doc-url: http://data.gnutelephony.org/docs/framework/index.html
-gplv3-status: done-in-4.0.0
-activity-status: ok 20151213 (5.1.0, ccscript3-1.1.7/20090214)
-
-package: cfengine
-copyright-holder: fsf-no-reply
-logo: http://www.cfengine.org/img/CfBlue.jpg
-doc-category: Sysadmin
-doc-summary: Configuration engine for system and network administration
-doc-url: /software/cfengine/docs/cfdocs.html
-download-url: http://www.cfengine.org/pages/download
-gplv3-status: done-in-v3-but-no-longer-gnu
-activity-status: stale 20080805 (2.2.8)
-last-contact: feb10 gscrivano prepared patches for rms
-
-package: cflow
-doc-category: Software
-doc-summary: Create a graph of control flow within a program
-doc-url: /software/cflow/manual/
-gplv3-status: done-in-1.3
-activity-status: ok 20160517 (1.5)
-
-package: cgicc
-copyright-holder: notfsf
-doc-category: Libraries
-doc-summary: C++ class library for writing CGI applications
-doc-url: none
-gplv3-status: done-in-3.2.5
-logo: /software/cgicc/images/cgicc.png
-activity-status: ok 20141207 (3.2.16)
-
-package: chess
-copyright-holder: fsf-ok-#786709-also-#786476,794064,795361
-doc-category: Games
-doc-summary: Full chess implementation
-doc-url: /software/chess/manual/
-gplv3-status: done-in-6.0.0
-activity-status: ok 20161029 (6.2.4)
-
-package: cim
-doc-category: Software
-doc-summary: Simula compiler
-doc-url: none
-gplv3-status: not-done-in-3.30
-activity-status: ok 20140518 (5.1)
-
-package: classpath
-copyright-holder: fsf-no-reply
-#logowithtoomuchquoting: 
http://developer.classpath.org/mediation/ClasspathBanners?action=AttachFile&amp;do=get&amp;target=GNU_Classpath_badge-180x180.png
-doc-category: Libraries
-doc-summary: Core class libraries for Java
-doc-url: /software/classpath/docs/
-gplv3-status: needs-exception-not-done-in-0.98-#530926
-activity-status: stale 20120316 (0.99, inetlib-1.1.2/2010325)
-
-package: classpathx
-copyright-holder: fsf-ok-#786644
-logo: /software/classpathx/classpathx-logo.jpg
-language: java
-doc-category: Libraries
-doc-summary: Classpath extensions: javax.* libraries
-doc-url: none
-gplv3-status: not-done-worry-about-classpath-first
-activity-status: stale 20131112 (activation-1.1.2) # mostly merged into 
classpath
-note: jaxp module is not copyright fsf?
-
-package: clisp
-mundane-name: CLISP
-logo: /software/clisp/clisp.png
-doc-category: Software
-doc-summary: A Common Lisp implementation
-doc-url: /software/clisp/impnotes/clisp.html
-gplv3-status: not-done-gplv2-only-in-2.4.5-bruno:24oct07-asked-rms:oct09
-activity-status: stale 20100707 (2.49)
-last-contact: #773646 4oct12 asked bruno, 3jan11-rms-talking,
-
-package: combine
-doc-category: Text
-doc-summary: Extensible file matching and filtering
-doc-url: /software/combine/manual/
-gplv3-status: in-dev-sources (gnumaint-reply 20 Aug 2007 20:11:22)
-activity-status: stale 20130729 (0.4.0)
-
-package: commoncpp
-mundane-name: (u)Common C++
-doc-category: Libraries
-doc-summary: (u)Common C++ framework for threaded applications
-doc-url: none
-gplv3-status: not-done-commoncpp2-1.6.3.tar.gz, done-ucommon-1.9.1
-activity-status: ok commoncpp2-1.8.0/20100224 (ucommon-7.0.0/20151213)
-
-package: complexity
-doc-category: Software
-doc-summary: Analyze complexity of C functions
-doc-url: /software/complexity/manual/
-gplv3-status: done
-activity-status: ok 20160309 (1.10)
-
-package: config
-copyright-holder: fsf-ok-#786463
-doc-category: Software
-doc-summary: Ubiquitious config.guess and config.sub scripts
-doc-url: none
-gplv3-status: done-with-exception-#341945 (gnumaint-reply 21 Aug 2007 18:39:06)
-activity-status: ok released-through-vc
-
-package: consensus
-doc-category: Internet
-doc-summary: Coordinate free software social networking projects
-doc-url: none
-gplv3-status: not-done-since-no-release
-activity-status: newpkg/20121227
-
-package: coreutils
-copyright-holder: fsf-no-reply
-doc-category: Software
-doc-summary: Core GNU utilities (file, text, shell)
-doc-url: /software/coreutils/manual/
-gplv3-status: done-in-7.1
-activity-status: ok 20161130 (8.26)
-
-package: cpio
-copyright-holder: fsf-ok-#793767
-doc-category: Archiving
-doc-summary: Manage cpio and tar file archives
-doc-url: /software/cpio/manual/
-gplv3-status: done-in-2.9
-activity-status: ok 20150912 (2.12)
-
-package: cppi
-copyright-holder: fsf-no-reply
-gplv3-status: done-in-1.14
-doc-category: Software
-doc-summary: Indent C preprocessor directives to reflect nesting and more
-doc-url: /software/cppi/manual/
-activity-status: stale 20130316 (1.17)
-
-package: cssc
-mundane-name: CSSC
-copyright-holder: fsf-ok-with-sccs-bsd-#786553
-doc-category: Version
-doc-summary: File-based version control like SCCS
-doc-url: htmlxref
-gplv3-status: done-in-1.1.0-plus-bsd
-activity-status: ok 20140711 (CSSC-1.4.0)
-
-package: cursynth
-doc-category: Music
-doc-summary: Polyphonic and MIDI subtractive music synthesizer using curses
-doc-url: none
-gplv3-status: done-initially
-activity-status: ok 20140413 (1.5)
-
-package: dap
-copyright-holder: fsf-no-reply
-language: c
-doc-category: Mathematics
-doc-summary: Statistics and graphics package
-doc-url: none
-gplv3-status: not-done-maintainer-wants-volunteer (4 Sep 2007 22:37:48, 28 Jan 
2008 20:23:40)
-activity-status: ok 20140416 (3.10)
-
-package: datamash
-copyright-holder: notfsf
-doc-category: Mathematics
-doc-summary: Scriptable statistics and data calculation
-doc-url: none
-activity-status: ok 20170120 (1.1.1)
-
-package: dc
-copyright-holder: see-bc
-doc-category: Mathematics
-doc-summary: Arbitrary precision numeric processing with reverse-polish 
notation
-doc-url: /software/bc/manual/dc-1.05/
-gplv3-status: see-bc
-activity-status: ok # merged into the bc package (dc.README)
-last-contact: see bc
-
-package: ddd
-copyright-holder: fsf-no-reply
-mundane-name: DDD
-copyright-holder: notfsf
-doc-category: Software
-doc-summary: Graphical front-end for GDB and other debuggers
-doc-url: htmlxref
-logo: /graphics/dddlogo.jpg
-gplv3-status: done-as-of-3.3.12
-activity-status: newmaint/20130118 20090211 (3.3.12)
-
-package: ddrescue
-mundane-name: ddrescue
-doc-category: Sysadmin
-doc-summary: Data recovery utility
-doc-url: htmlxref
-gplv3-status: done-in-1.5
-activity-status: ok 20160321 (1.21)
-
-package: dejagnu
-mundane-name: DejaGnu
-copyright-holder: fsf-ok-#786474,#786759
-logo: /software/dejagnu/images/logo.png
-doc-category: Software
-doc-summary: GNU software testing framework
-doc-url: /software/dejagnu/manual/
-doc-source-format: docbook
-gplv3-status: done?-in-1.5
-activity-status: ok 20160416 (1.6)
-
-package: denemo
-doc-category: Music
-doc-summary: Graphical music notation, front-end to GNU Lilypond
-doc-url: none
-logo: http://denemo.sourceforge.net/images/logo1.png
-gplv3-status: not-done-as-of-0.8.16-old-authors?
-activity-status: ok 20161130 (2.0.14)
-
-package: dia
-logo: https://static.gnome.org/img/dialogo.jpg
-doc-category: Graphics
-doc-summary: Diagram creation for GNOME
-doc-url: http://wiki.gnome.org/Apps/Dia/Documentation
-download-url: http://ftp.gnome.org/pub/gnome/sources/dia/
-gplv3-status: not-done-in-0.97-awaiting-gnome-in-general-i-suppose
-activity-status: stale 20111218 (0.97.2)
-note: not clear if this is really a GNU package
-
-package: dico
-doc-category: Dictionaries
-doc-summary: Implementation of DICT server (RFC 2229)
-doc-url: http://dico.man.gnu.org.ua/
-gplv3-status: done-as-of-2.0
-activity-status: ok 20161121 (2.4)
-
-package: diction
-doc-category: Text
-doc-summary: Identifies wordy and commonly misused phrases
-doc-url: none
-gplv3-status: done-in-1.11
-activity-status: stable 20070917 (1.11)
-
-package: diffutils
-copyright-holder: fsf-ok-#786489
-doc-category: Text
-doc-summary: Comparing and merging files
-doc-url: htmlxref
-gplv3-status: done-in-2.9
-activity-status: ok 20160821 (3.5)
-
-package: dionysus
-doc-category: Science
-doc-summary: Local search for universal constants and scientific values
-doc-url: none
-gplv3-status: done-as-of-1.1.0
-activity-status: stale 20100829 (1.3.0)
-
-package: direvent
-doc-category: Sysadmin
-doc-summary: Daemon to monitor directories for events such as file removal
-doc-url: none
-gplv3-status: done
-activity-status: ok 20160706 (5.1)
-
-package: djgpp
-mundane-name: DJGPP
-copyright-holder: notfsf (DJ Delorie and others)
-doc-category: Software
-doc-summary: Development system and GNU utilities for DOS on x86 hardware
-doc-url: none
-gplv3-status: needs-exception-#342079 (gnumaint-reply 20 Aug 2007 21:43:02)
-download-url: http://www.delorie.com/pub/djgpp/current/v2gnu/?M=A
-activity-status: stable 20130205 (2.03)
-note: not clear how to download "djgpp" as a whole.
-last-contact: eliz, in bug-gnulib 26 Jan 2011 20:56:24, says no more releases
-
-package: dominion
-doc-category: Games
-doc-summary: Multi-player world simulation and role-playing game
-doc-url: none
-gplv3-status: not-done-since-stale
-activity-status: stale 20050217 (2.8.2)
-last-contact: 8jan10 asked
-
-package: dr-geo
-mundane-name: Dr. Geo
-doc-category: Education
-doc-summary: Interactive geometry software
-doc-url: https://www.gnu.org/software/dr-geo/doc/
-download-url: 
http://sourceforge.net/project/showfiles.php?group_id=13320&package_id=91900
-gplv3-status: not-done-since-nomaint
-activity-status: ok 20160911 (16.10a)
-
-package: easejs
-copyright-holder: fsf-ok
-doc-category: Web
-doc-summary: Classical object-oriented framework for JavaScript
-doc-url: http://www.gnu.org/software/easejs/manual.html
-gplv3-status: done-in-0.1.0
-activity-status: ok 20160715 (0.2.8)
-
-package: ed
-copyright-holder: notfsf-#786696
-doc-category: Text
-doc-summary: Line-oriented text editor
-doc-url: htmlxref
-gplv3-status: done-in-1.0
-activity-status: ok 20170112 (1.14.1)
-
-package: edma
-mundane-name: EDMA
-doc-category: Software
-doc-summary: Object-oriented component-based development environment
-doc-url: none
-gplv3-status: in-dev-sources
-activity-status: stale 20130314 (0.18.6, gecb-0.8.4, gidfwizard-0.6.4)
-
-package: electric
-copyright-holder: fsf-ok-with-dependencies-#786479
-logo: /software/electric/electric.jpg
-doc-category: Science
-doc-url: http://www.staticfreesoft.com/jmanual/
-doc-summary: Electrical CAD system
-gplv3-status: in-dev-sources (gnumaint-reply 20 Aug 2007 18:50:41 -0700)
-activity-status: ok 20161123 (9.07)
-
-package: emacs
-copyright-holder: fsf-maybe-ok-with-external-#786663
-#logowithtoomuchquoting: 
http://cvs.savannah.gnu.org/viewvc/*checkout*/emacs/etc/images/icons/emacs_48.png?root=emacs&amp;revision=1.3
-doc-category: Editors
-doc-summary: The extensible, customizable, self-documenting text editor
-doc-url: /software/emacs/#Manuals
-doc-url: htmlxref
-doc-shop: Emacs Reference Cards
-doc-shop: http://shop.fsf.org/product/emacs-reference-cards-21/
-doc-shop: GNU Emacs Manual
-doc-shop: http://shop.fsf.org/product/Emacs_Manual_24/
-gplv3-status: done-in-22.3
-activity-status: ok 20160917 (25.1)
-
-package: emacs-muse
-copyright-holder: fsf-ok-#786499
-doc-category: Web
-doc-summary: Authoring and publishing environment for Emacs
-doc-url: /software/emacs-muse/manual/
-download-url: http://download.gna.org/muse-el
-gplv3-status: done-in-3.10
-activity-status: stale 20080128 (3.12)
-
-package: emms
-copyright-holder: fsf-no-reply
-mundane-name: EMMS
-doc-category: Audio
-doc-summary: Emacs Multimedia System
-doc-url: htmlxref
-logo: /software/emms/emms-logo-small-2.png
-gplv3-status: done-as-of-3.0
-activity-status: ok 20161108 (4.2)
-
-package: enscript
-copyright-holder: fsf-no-reply
-doc-category: Printing
-doc-summary: Generating PostScript, including pretty-printing
-doc-url: none
-gplv3-status: done-in-1.6.5
-activity-status: newmaint/20140305 20120925 (1.6.6)
-
-package: eprints
-logo: http://www.eprints.org/style/eprintslogo.gif
-doc-category: Education
-doc-summary: Web-based repository software, with a default setup for research 
papers
-doc-url: http://wiki.eprints.org/w/EPrints_Manual
-download-url: http://files.eprints.org/view/type/release.html
-gplv3-status: not-done-in-3.1.3
-activity-status: stale 20130724 (3.3.12)
-last-contact: 23nov09 replied, no gplv3 decision
-note: explicit ok from rms that this is hosted remotely.
-note: explicitly don't want to release via ftp.gnu.org (11mar10->karl)
-
-package: epsilon
-copyright-holder: notfsf-#786552,#374046
-doc-category: Software
-doc-summary: A purely functional programming language.
-doc-url: /software/epsilon/manual/
-gplv3-status: done-per-agreement-#374046
-activity-status: stale no-release
-last-contact: 12dec12 replied "alpha soon"
-
-package: fdisk
-copyright-holder: fsf-no-reply
-doc-category: Sysadmin
-doc-summary: Low-level disk partitioning and formatting
-doc-url: none
-gplv3-status: done-in-1.0
-activity-status: stale 20111204 (2.0.0a1)
-
-package: ferret
-logo: /software/ferret/ferret.png
-doc-category: Database
-doc-summary: Entity/relationship based data modeler
-doc-url: none
-gplv3-status: done-in-0.7
-activity-status: newmaint/20130414 20081116 (0.7)
-
-package: findutils
-copyright-holder: fsf-ok-#786556
-doc-category: Software
-doc-summary: Operating on files matching given criteria
-doc-url: /software/findutils/manual/
-gplv3-status: in-dev-sources (gnumaint-reply 23 Aug 2007 10:14:01 +0100)
-activity-status: ok 20151228 (4.6.0)
-last-contact: 1may12-replied-four-blocking-bugs
-
-package: fisicalab
-mundane-name: FisicaLab
-copyright-holder: notfsf
-doc-category: Education
-doc-summary: Educational application for solving physics problems
-doc-url: none
-gplv3-status: done-in-0.3.3
-activity-status: ok 20150530 (0.3.5)
-
-package: flex manual
-doc-summary: null
-gplv3-status: doc
-activity-status: stale no-release
-
-package: foliot
-copyright-holder: notfsf
-doc-category: Business
-doc-summary: An application for tracking time spent on projects
-doc-url: none
-gplv3-status: done-in-0.9.5
-activity-status: ok 20160308 (0.9.6)
-
-package: fontopia
-copyright-holder: notfsf
-doc-category: Fonts
-doc-summary: A console font editor
-doc-url: none
-gplv3-status: done-in-1.0
-activity-status: newpkg 20160426
-
-package: fontutils
-copyright-holder: fsf-ok-#788255
-doc-category: Fonts
-doc-summary: Scanned image, bitmap, outline font manipulation
-doc-url: http://www.delorie.com/gnu/docs/fontutils/fontu_toc.html
-gplv3-status: not-done-since-stale
-activity-status: stale 20000401 (0.7)
-last-contact: 12feb13 not soon
-
-package: freedink
-mundane-name: FreeDink
-doc-category: Games
-doc-summary: Twisted adventures of young pig farmer Dink Smallwood
-doc-url: http://www.freedink.org/doc/
-copyright-holder: notfsf
-gplv3-status: done-in-1.08 (gnumaint-reply 24 Aug 2007 19:47:56 +0200)
-activity-status: ok 20141022 (108.4, dfarc-3.10/20120427)
-
-package: freefont
-mundane-name: Free UCS Outline Fonts
-doc-category: Fonts
-doc-summary: Unicode-encoded outline fonts
-doc-url: none
-gplv3-status: done-in-20090104
-activity-status: stale 20120503 (freefont-src)
-
-package: freeipmi
-mundane-name: FreeIPMI
-doc-category: Libraries
-doc-summary: Platform management, including sensor and power monitoring
-doc-url: /software/freeipmi/documentation.html
-logo: /software/freeipmi/images/freeipmi-logo-small.jpg
-gplv3-status: in-dev-sources
-last-contact: 14jan10 replied, next major release
-activity-status: ok 20160930 (1.5.4)
-
-package: freetalk
-doc-category: Internet
-doc-summary: Extensible console-based Jabber client
-doc-url: /software/freetalk/freetalk.html
-download-url: http://download.savannah.gnu.org/releases/freetalk/
-gplv3-status: done-as-of-3.2
-activity-status: nomaint 20161114 (4.1)
-
-package: fribidi
-mundane-name: FriBiDi
-doc-category: Localization
-doc-summary: Implementation of the Unicode bidirectional algorithm
-doc-url: none
-download-url: http://fribidi.org/download/
-gplv3-status: under-discussion-with-brett (gnumaint-reply 3 Oct 2007 11:06:24)
-activity-status: stale 20090326 (0.19.2)
-
-package: g-golf
-mundane-name: G-Golf
-doc-category: Interface
-doc-summary: Guile bindings for GObject Introspection
-doc-url: none
-gplv3-status: not-done
-activity-status: newpkg 20160725
-
-package: gama
-doc-category: Science
-doc-summary: Adjustment of geodetic networks
-doc-url: /software/gama/manual/
-gplv3-status: done-in-1.9.04
-activity-status: ok 20160816 (1.18)
-
-package: garpd
-mundane-name: Gratuitous ARP Daemon
-doc-category: Internet
-doc-summary: Broadcast gratuitous ARP requests for IPMI and more
-doc-url: none
-gplv3-status: done-in-0.2.0
-activity-status: stale 20101206 (0.2.0)
-last-contact: 21nov10 reply, "soon"
-
-package: gawk
-copyright-holder: fsf-maybe-ok-just-doc/macros-#787150
-doc-category: Text
-doc-summary: Text scanning and processing language
-doc-url: /software/gawk/manual/
-doc-url: htmlxref
-gplv3-status: done-in-3.1.6
-activity-status: ok 20160825 (4.1.4)
-
-package: gbehistun
-copyright-holder: notfsf
-doc-category: Science
-doc-summary: Planetary Science tools
-doc-url: none
-gplv3-status: unknown
-activity-status: newpkg/20170129
-
-package: gcal
-copyright-holder: notfsf
-doc-category: Business
-doc-summary: Calculating and printing a wide variety of calendars
-doc-url: /software/gcal/manual/
-gplv3-status: done-in-3.5
-activity-status: ok 20170122 (4.1)
-
-package: gcc
-mundane-name: GCC
-copyright-holder: fsf-ok-with-external-#786963
-doc-category: Software
-doc-summary: GNU Compiler Collection
-doc-url: /software/gcc/
-doc-url: htmlxref
-doc-shop: Using GCC: The GNU Compiler Collection Reference Manual
-doc-shop: 
http://shop.fsf.org/product/using-gcc-gnu-compiler-collection-reference-manual/
-logo: /software/gcc/img/gccegg-65.png
-gplv3-status: done
-activity-status: ok 20161221 (6.3, 20151204/5.3, 20160803/4.9.4)
-
-package: gcide
-doc-category: Dictionaries
-doc-summary: GNU Collaborative International Dictionary of English
-doc-url: none
-gplv3-status: unknown
-activity-status: stale 20120304 (0.51)
-
-package: gcl
-mundane-name: GNU Common Lisp
-doc-category: Software
-doc-summary: A Common Lisp implementation
-doc-url: none
-gplv3-status: not-done-is-lgplv2+-has-gplv2-only-users-9nov10-asked-rms
-activity-status: ok 20141028 (2.6.12)
-
-package: gcompris
-mundane-name: GCompris
-doc-category: Education
-doc-summary: Educational games for small children
-doc-url: http://gcompris.net/wiki/Manual
-gplv3-status: done-in-8.4beta2 (gnumaint-reply 22 Aug 2007 02:04:12)
-download-url: http://sourceforge.net/project/showfiles.php?group_id=6865
-activity-status: ok 20150224 (15.02)
-
-package: gdb
-mundane-name: GDB
-copyright-holder: fsf-not-completely-#786588
-doc-category: Software
-doc-summary: The GNU debugger
-doc-url: /software/gdb/documentation/
-doc-url: htmlxref
-doc-shop: Debugging with GDB: The GNU Source-Level Debugger
-doc-shop: 
http://shop.fsf.org/product/debugging-gdb-gnu-source-level-debugger-10/
-gplv3-status: done-in-6.7
-logo: /software/gdb/images/archer.jpg
-activity-status: ok 20170121 (7.12.1)
-
-package: gdbm
-copyright-holder: fsf-ok-#793768
-doc-category: Database
-doc-summary: Hash library of database functions compatible with traditional dbm
-doc-url: http://www.gnu.org.ua/software/gdbm/manual/
-gplv3-status: not-done
-activity-status: ok 20160516 (1.12)
-
-package: gengen
-doc-category: Software
-doc-summary: A parameterized-text-generator generator based on a template
-doc-url: /software/gengen/gengen.html
-gplv3-status: done-in-1.3
-activity-status: stale 20100906 (1.4.2)
-
-package: gengetopt
-copyright-holder: fsf-ok-#796330
-doc-category: Software
-doc-summary: Create parsers for command line options
-doc-url: /software/gengetopt/gengetopt.html
-gplv3-status: done-in-2.22.1
-activity-status: stale 20121107 (2.22.6)
-
-package: gettext
-copyright-holder: fsf-ok-with-external-#786766
-doc-category: Localization
-doc-summary: Tools and documentation for translation
-doc-url: /software/gettext/manual/
-gplv3-status: done-except-for-dependencies-in-0.17
-activity-status: ok 20160611 (0.19.8.1)
-
-package: gforth
-copyright-holder: fsf-ok-#786710
-logo: /software/gforth/gnu-forth.png
-doc-category: Software
-doc-summary: Forth interpreter
-doc-url: htmlxref
-gplv3-status: done-in-0.7.0
-activity-status: ok 20140709 (0.7.3)
-
-package: gg-network
-copyright-holder: not-applicable
-doc-summary: null
-gplv3-status: not-applicable
-activity-status: container for-gnu-group
-note: first gnu group
-
-package: ggradebook
-doc-category: Education
-doc-summary: GNOME application to track students' grades for teachers
-doc-url: none
-gplv3-status: not-done-since-stale
-activity-status: newmaint/20160503 20000410 (0.91)
-last-contact: 22feb13 replied, 18feb13 asked
-next-contact: 15apr13
-
-package: ghostscript
-mundane-name: GNU Ghostscript
-copyright-holder: notfsf
-doc-category: Printing
-doc-summary: PostScript and PDF interpreter
-doc-url: none
-logo: /software/ghostscript/images/gnugs-head.png
-gplv3-status: done-in-8.71.0
-activity-status: ok 20141204 (9.14.0)
-
-package: gift
-mundane-name: GIFT
-logo: /software/gift/gnu.image.finder.png
-doc-category: Graphics
-doc-summary: GNU Image Finding Tool, with query by example
-doc-url: none
-gplv3-status: not-done
-activity-status: newmaint/20110826 20050324 (0.1.14)
-last-contact: 18feb13 replied, asked
-
-package: gimp
-mundane-name: GIMP
-logo: http://www.gimp.org/images/wilber_the_gimp.png
-doc-category: Graphics
-doc-summary: GNU Image Manipulation Program
-doc-url: http://www.gimp.org/docs/
-download-url: ftp://ftp.gimp.org/pub/gimp/
-gplv3-status: not-done-in-2.6.8-probably-depends-on-gnome
-activity-status: ok 20140826 (2.8.14)
-
-package: gimp www pages
-doc-summary: null
-gplv3-status: doc
-activity-status: container is-gimp
-note: there is no particularly good reason why this is listed
-note: separately from gimp itself; just historical accident.
-
-package: glean
-language: guile
-doc-category: Education
-doc-summary: extensible quizzing and tutorial for self-study
-doc-url: http://glean.eu/dir/
-gplv3-status: ok-agplv3+
-activity-status: newpkg/20141221
-
-package: gleem
-language: java,c++
-doc-category: Libraries
-doc-summary: OpenGL Extremely Easy-to-use Manipulators
-doc-url: /software/gleem/doc/
-gplv3-status: not-done-since-nomaint
-activity-status: newmaint/20160921 20020205 (1.2.1)
-
-package: glib
-mundane-name: GLib
-doc-category: Libraries
-doc-summary: Thread-safe general utility library; basis of GTK+ and GNOME
-doc-url: http://library.gnome.org/devel/glib/unstable/
-download-url: http://ftp.gnome.org/pub/gnome/sources/glib/
-gplv3-status: see-gtk+
-activity-status: ok 20151112 (2.46.2)
-
-package: global
-doc-category: Software
-doc-summary: Cross-environment source code tag system
-doc-url: htmlxref
-gplv3-status: done-in-5.6.2
-logo: /software/global/globe.png
-activity-status: ok 20160327 (6.5.4)
-
-package: glpk
-mundane-name: GLPK
-doc-category: Libraries
-doc-summary: GNU Linear Programming Kit, supporting the MathProg language
-doc-url: none
-gplv3-status: done-in-directory
-activity-status: ok 20170122 (4.61)
-
-package: glue
-mundane-name: GLUE
-logo: /software/glue/glue-butterfly.jpg
-doc-category: Software
-doc-summary: Distributed groupware application framework
-doc-url: none
-gplv3-status: not-done-since-nonexistent
-activity-status: moribund no-release
-
-package: gmediaserver
-doc-category: Audio
-doc-summary: UPnP compatible media server
-doc-url: htmlxref
-download-url: http://download.savannah.gnu.org/releases/gmediaserver/
-gplv3-status: done-in-0.13.0 (18 Oct 2007 17:50:13)
-activity-status: stale 20071110 (0.13.0)
-last-contact: 20nov10 replied, this year
-
-package: gmp
-mundane-name: GMP
-copyright-holder: fsf-no-reply
-doc-category: Mathematics
-doc-summary: Multiple-precision arithmetic library
-doc-url: /software/gmp/manual/
-logo: https://gmplib.org/gmplogo2.png
-gplv3-status: lgplv3+-as-of-4.2.2-in-2007
-activity-status: ok 20140325 (6.0.0a)
-
-package: gnash
-copyright-holder: fsf-ok-#786466
-logo: /software/gnash/images/small-GnashGnu.png
-doc-category: Internet
-doc-summary: Flash movie player
-doc-url: /software/gnash/documentation.html
-doc-source-format: docbook
-gplv3-status: done-in-0.8.2
-activity-status: stale 20120131 (0.8.10)
-
-package: gnat
-mundane-name: GNAT
-copyright-holder: fsf-no-reply
-doc-category: Software
-doc-summary: Ada compiler
-doc-url: none
-download-url: http://libre.adacore.com/libre/download2/
-gplv3-status: done-as-of-2009
-activity-status: ok 20130523 (2013)
-
-package: gnats
-mundane-name: GNATS
-copyright-holder: fsf-ok-almost-completely-#790955
-logo: /software/gnats/images/gnatslogo.png
-doc-category: Software
-doc-summary: GNU problem report and bug management system
-doc-url: /software/gnats/#documentation
-gplv3-status: in-dev-sources rms (gnumaint-reply 21 Aug 2007 23:53:43)
-activity-status: ok 20150226 (4.2.0)
-
-package: gnatsweb
-copyright-holder: fsf-no-reply
-doc-category: Software
-doc-summary: Web interface to GNATS
-doc-url: none
-gplv3-status: not-done-in-4.0.0-newmaint
-activity-status: newmaint/20140320 20030729 (4.00)
-
-package: gneuralnetwork
-mundane-name: Gneural Network
-copyright-holder: notfsf
-doc-category: Science
-doc-summary: Programmable neural network
-doc-url: none
-gplv3-status: done-in-0.0.1
-activity-status: ok/20160504 (0.9.1)
-
-package: gnome
-mundane-name: GNOME
-logo: http://www.gnome.org/wp-content/themes/gnome-grass/images/gnome-logo.png
-copyright-holder: notfsf
-doc-category: Interface
-doc-summary: The GNU desktop environment
-doc-url: http://library.gnome.org
-gplv3-status: under-discussion-per-bkuhn-speters-mail-23nov09
-activity-status: ok 20160921 (3.22)
-
-package: gnowsys
-mundane-name: GNOWSYS
-logo: /software/gnowsys/GNOWSYS_files/g1014.png
-doc-category: Web
-doc-summary: Distributed network-based memory and knowledge management
-doc-url: none
-#broken 8apr12 doc-url: http://trac.gnowledge.org/trac/wiki/GnowsysDocumenation
-download-url: http://download.savannah.gnu.org/releases/gnowsys/
-gplv3-status: in-dev-sources
-activity-status: stale 20060617 (0.6r2)
-last-contact: 18mar10 replied
-
-package: gnu-c-manual
-mundane-name: GNU C reference manual
-copyright-holder: fsf-ok-#786666
-doc-category: Software
-doc-summary: Reference manual for the C programming language
-doc-url: htmlxref
-gplv3-status: doc
-activity-status: stale 20130618 (0.2.2)
-note: to be superseded by rms manual? #786666
-
-package: gnu-crypto
-mundane-name: Crypto
-logo: /software/gnu-crypto/graphics/gc-ls-c.png
-doc-category: Security
-doc-summary: Cryptographic primitives and tools for Java programming
-doc-url: htmlxref
-gplv3-status: not-done-since-no-changes
-activity-status: stable 20051023 (2.1.0)
-last-contact: see classpath
-
-package: gnu-pw-mgr
-doc-category: Security
-doc-summary: Retrieve login credentials without recording passwords
-doc-url: none
-gplv3-status: done-in-1.0
-activity-status: ok 20160508 (2.0)
-
-package: gnuae
-mundane-name: GnuAE
-copyright-holder: fsf-ok-#786471
-logo: /software/gnuae/images/gnuae-logo.png
-doc-category: Science
-doc-summary: Designing alternate energy systems
-doc-url: /software/gnuae/manual/
-gplv3-status: in-dev-sources
-activity-status: comaint/20130404 no-release
-
-package: gnuastro
-mundane-name: Gnuastro
-doc-category: Science
-doc-summary: Astronomy utilities
-doc-url: none
-gplv3-status: done-from-beginning
-activity-status: ok 20161003 (0.2)
-
-package: gnubatch
-copyright-holder: fsf-ok-#786525
-doc-category: Sysadmin
-doc-summary: Advanced batch scheduling and job control
-doc-url: none
-gplv3-status: done-in-1.0
-activity-status: ok 20140422 (1.11)
-
-package: gnubg
-mundane-name: Backgammon
-doc-category: Games
-doc-summary: Backgammon game
-doc-url: http://www.gnubg.com/documentation/doku.php
-gplv3-status: in-dev-sources (gnumaint-reply 22 Aug 2007 20:47:21)
-activity-status: stale 20130728 (1.02.000)
-last-contact: 20mar13 brandon asked
-
-package: gnubiff
-logo: http://gnubiff.sourceforge.net/images/tux-sit-small.png
-doc-category: Email
-doc-summary: Mail notification program
-doc-url: http://gnubiff.sourceforge.net/documentation.php
-download-url: http://sourceforge.net/project/showfiles.php?group_id=94176
-gplv3-status: done-in-2.2.8 (sowadart 9 Sep 2007 21:00:37 +0200)
-activity-status: ok 20150228 (2.2.16)
-
-package: gnubik
-doc-category: Games
-doc-summary: 3d Rubik's cube game
-doc-url: /software/gnubik/manual/
-gplv3-status: done-in-2.3
-activity-status: ok 20150506 (2.4.2)
-
-package: gnucap
-doc-category: Science
-doc-summary: Mixed analog and digital circuit simulator
-doc-url: /software/gnucap/gnucap-man-html/
-download-url: http://www.gnucap.org/archive/
-gplv3-status: needs-exception-#342232 done-in-aug20-snapshot (gnumaint-reply 
28 Aug 2007 15:45:43)
-activity-status: stale 20060920 (0.35)
-last-contact: 15aug08 asked about gplv3
-
-package: gnucash
-mundane-name: GnuCash
-logo: http://www.gnucash.org/images/banner5.png
-download-url: http://www.gnucash.org/download.phtml
-doc-category: Business
-doc-summary: Personal and small business financial accounting software
-doc-url: http://www.gnucash.org/docs.phtml
-tech-address: address@hidden
-gplv3-status: not-done-in-2.3.8-some-gplv2-only-files
-activity-status: ok 20160917 (2.6.14)
-last-contact: 24jan10 asked
-
-package: gnucobol
-mundane-name: GnuCOBOL
-doc-category: Software
-doc-summary: A modern COBOL compiler
-doc-url: http://open-cobol.sourceforge.net/doc/gnucobol.html
-gplv3-status: planned-for-2.x
-activity-status: stale 20140118 (1.1)
-
-package: gnucomm
-mundane-name: GNUCOMM
-doc-category: Telephony
-doc-summary: GNU telecommunications project
-doc-url: /software/gnucomm/overview.html
-gplv3-status: ok-since-container
-activity-status: container for-bayonne-etc.
-
-package: gnudos
-mundane-name: GnuDOS
-doc-category: Interface
-doc-summary: MS-DOS-like file manager, editor, and other tools
-doc-url: none
-gplv3-status: done-in-1.0
-activity-status: ok 20141218 (1.8)
-
-package: gnue
-mundane-name: GNU Enterprise
-copyright-holder: fsf-ok-#786904
-fsd: gnuenterprise
-doc-category: Business
-doc-summary: Enterprise resource planning, et al
-doc-url: none
-gplv3-status: done-in-0.5.3
-activity-status: stale # many packages
-
-package: gnufm
-copyright-holder: fsf-ok-with-dependencies-#786606
-doc-category: Audio
-doc-summary: Social music explorations
-doc-url: none
-gplv3-status: not-done-since-no-release
-activity-status: stale no-release dubbed/20100316
-
-package: gnugo
-copyright-holder: fsf-maybe-ok-two-files-#786733
-logo: /software/gnugo/logo-36.jpg
-doc-category: Games
-doc-summary: Play the game of Go
-doc-url: /software/gnugo/gnugo_toc.html
-gplv3-status: done-in-3.8
-activity-status: stable 20090219 (3.8)
-
-package: gnuit
-copyright-holder: fsf-no-reply
-mundane-name: GNU Interactive Tools
-doc-category: Interface
-doc-summary: Interactive utilities for file browsing, viewing, and more
-doc-url: /software/gnuit/manual/
-gplv3-status: done-before-4.9.3
-activity-status: stale 20090223 (4.9.5)
-
-package: gnujdoc
-doc-category: Translation
-doc-summary: Japanese translations of GNU documents
-doc-url: none
-gplv3-status: not-applicable-since-doc
-activity-status: stable
-last-contact: 26jan10 asked, 15dec08 replied
-note: japanese translations of documents
-
-package: gnujump
-logo: /software/gnujump/logo.png
-doc-category: Games
-doc-summary: Game of jumping to the next floor, trying not to fall
-doc-url: none
-gplv3-status: done-in-1.0.5 (13aug08)
-activity-status: stale 20120724 (1.0.8)
-
-package: gnukart
-doc-category: Games
-doc-summary: Racing game
-doc-url: none
-gplv3-status: not-done-since-stale
-activity-status: newmaint/20140420 2010707 (0.1.4d)
-last-contact: replied 21apr10
-note: renamed from speedx
-
-package: gnulib
-copyright-holder: fsf-ok-per-rms-#786492
-doc-category: Software
-doc-summary: Source files to share among distributions
-doc-url: /software/gnulib/manual/
-gplv3-status: done-as-much-as-possible
-activity-status: ok released-through-vc
-
-package: gnumach
-mundane-name: Mach
-copyright-holder: see-hurd
-doc-category: Software
-doc-summary: Microkernel of the GNU system
-doc-url: /software/hurd/microkernel/mach/documentation.html
-gplv3-status: see-hurd
-activity-status: ok 20161218 (1.8)
-last-contact: see hurd
-
-package: gnumed
-doc-category: Health
-doc-summary: Paperless medical practice
-doc-url: http://wiki.gnumed.de/bin/view/Gnumed/GnumedManual
-download-url: http://www.gnumed.de/downloads/
-gplv3-status: working
-activity-status: ok 20160912 (gnumed-server-21.9, gnumed-client-1.6.9)
-
-package: gnumeric
-doc-category: Spreadsheets
-doc-summary: Spreadsheet application
-doc-url: http://www.gnome.org/projects/gnumeric/doc/gnumeric.shtml
-download-url: http://ftp.gnome.org/pub/GNOME/sources/gnumeric/
-gplv3-status: not-done-in-1.9.18-uses-goffice-gnome-not-done
-activity-status: ok 20160820 (1.12.32)
-note: FIXXXME Gnumeric has a logo, but I couldn't find it online.  yavor
-
-package: gnump3d
-logo: /software/gnump3d/gnump3d.jpg
-doc-category: Audio
-doc-summary: Server for streaming audio files
-doc-url: /software/gnump3d/documents.html
-download-url: http://savannah.gnu.org/download/gnump3d/
-gplv3-status: not-done-in-3.0
-activity-status: stable 20071018 (3.0)
-last-contact: 11feb10 asked
-
-package: gnun
-copyright-holder: fsf-ok-with-external-#786604
-mundane-name: GNUnited Nations
-doc-category: Translation
-doc-summary: Build system for www.gnu.org translations
-doc-url: /software/trans-coord/manual/
-doc-url: htmlxref
-gplv3-status: done-in-0.1
-activity-status: ok 20161008 (0.11)
-
-package: gnunet
-doc-category: Internet
-doc-summary: Secure, decentralized, peer-to-peer networking framework
-doc-url: http://gnunet.org/book
-gplv3-status: depends-on-mysql (gnumaint-reply 20 Aug 2007 20:40:48)
-activity-status: ok 201404008 (0.10.1, java-0.10.1, gtk-0.10.1, 
fuse-0.10.0/20131222)
-
-package: gnupg
-mundane-name: GnuPG
-copyright-holder: fsf-maybe-ok-couple-pieces-#786522
-doc-category: Security
-doc-summary: GNU Privacy Guard
-doc-url: http://www.gnupg.org/documentation/
-doc-url: htmlxref
-download-url: ftp://ftp.gnupg.org/gcrypt/gnupg/
-gplv3-status: done-in-2.0.7
-activity-status: ok 20170124 (2.1.18/20160818, 2.0.30/20160331, 
1.4.21/20160817)
-# aka gpg
-
-package: gnupod
-doc-category: Audio
-doc-summary: Manage portable audio device
-doc-url: /software/gnupod/gnupod.html
-gplv3-status: done-in-0.99.3
-activity-status: stable 20091102 (0.99.8)
-
-package: gnuprologjava
-doc-category: Software
-doc-summary: Implementation of Prolog as a Java library
-doc-url: /software/gnuprologjava/api/
-doc-url: htmlxref
-download-url: http://sourceforge.net/projects/gnuprologjava/
-gplv3-status: done-in-0.2.5-lgplv3+
-activity-status: stale 20110106 (0.2.6)
-note: requires jdk 1.2, released under lgpl (no exception?)
-
-package: gnuradio
-mundane-name: Radio
-copyright-holder: fsf-no-reply
-logo: /software/gnuradio/images/gnuradio12.png
-language: python
-doc-category: Audio
-doc-summary: Software radio implementations
-doc-url: http://gnuradio.org/redmine/projects/gnuradio/wiki
-gplv3-status: done-in-3.1.0-probably-earlier
-activity-status: ok 20141021 (3.7.5.1)
-
-package: gnurobots
-mundane-name: Robots
-doc-category: Games
-doc-summary: Program a little robot and watch him explore a world
-doc-url: /software/gnurobots/readme.html
-gplv3-status: done-in-1.2.0
-activity-status: stale 20080803 (1.2.0)
-
-package: gnuschool
-doc-category: Education
-doc-summary: Web application for educators, students, and school administrators
-doc-url: htmlxref
-gplv3-status: done-in-0.2
-activity-status: stale 20130718 (2.2)
-
-package: gnushogi
-copyright-holder: fsf-ok-#786568
-doc-category: Games
-doc-summary: The game of Shogi (Japanese chess)
-doc-url: http://www.cs.caltech.edu/~mvanier/hacking/gnushogi/gnushogi_toc.html
-download-url: http://www.cs.caltech.edu/~mvanier/hacking/gnushogi/
-gplv3-status: not-done-in-1.3.2-nomaint
-activity-status: ok 20140217 (1.4.2)
-last-contact: 13mar12 replied
-
-package: gnusound
-doc-category: Audio
-doc-summary: Multi-track sound editor for GNOME
-doc-url: /software/gnusound/Documentation/
-gplv3-status: not-done-in-0.7.5
-activity-status: stale 20080706 (0.7.5)
-last-contact: 17sep11 asked #709362, 30jan10 asked
-
-package: gnuspeech
-doc-category: Interface
-doc-summary: Extensible rule-based text-to-speech
-doc-url: /software/gnuspeech/#Manuals
-gplv3-status: in-dev-sources
-activity-status: ok 20151019 (gnuspeech-0.9; 20151019 gnuspeechsa-0.1.5)
-
-package: gnuspool
-copyright-holder: fsf-ok-#786526
-doc-category: Printing
-doc-summary: Spooling system with a variety of interfaces
-doc-url: none
-gplv3-status: done-in-1.0
-activity-status: stale 20101021 (1.8)
-
-package: gnustandards
-mundane-name: GNU organization
-copyright-holder: fsf-ok
-doc-category: gnuorg
-doc-summary: GNU coding standards and maintainer information
-doc-url: htmlxref
-gplv3-status: doc
-activity-status: ok released-through-vc
-
-package: gnustep
-copyright-holder: fsf-ok-#786917
-logo: http://wiki.gnustep.org/skins/common/images/GNUstep-MediaWiki.png
-doc-category: Software
-doc-summary: Object-oriented application development environment
-doc-url: http://www.gnustep.org/developers/documentation.html
-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
-
-package: gnutls
-mundane-name: GnuTLS
-copyright-holder: fsf-no-reply
-logo: /software/gnutls/graphics/gnutls-logo.png
-doc-category: Libraries
-doc-summary: Transport layer security library
-doc-url: /software/gnutls/manual/
-gplv3-status: stays-v2-indefinitely (gnumaint-reply 21 Aug 2007 11:13:04)
-activity-status: ok 20170109 (3.5.8, 3.4.15/20160908, 3.3.26/20170109)
-
-package: gnutrition
-copyright-holder: notfsf-#786495
-language: python
-doc-category: Health
-doc-summary: Nutrition analysis
-doc-url: /software/gnutrition/manual/
-gplv3-status: done-in-0.31
-activity-status: stale 20120901 (0.31.2)
-
-package: gnuzilla
-copyright-holder: notfsf
-doc-category: Internet
-doc-summary: Entirely free browser derived from Mozilla Firefox
-doc-url: none
-gplv3-status: ok-since-container
-activity-status: container for-icecat
-
-package: goptical
-copyright-holder: fsf-maybe-ok-with-five-generic-C++-templates-#786535
-doc-category: Science
-doc-summary: C++ optical design and simulation library
-doc-url: /software/goptical/manual/
-gplv3-status: done
-activity-status: stale 20120107 (1.0)
-last-contact: 29nov10 replied, before xmas
-
-package: gorm
-logo: http://gnustep.org/experience/images/Gorm.png
-download-url: ftp://ftp.gnustep.org/pub/gnustep/dev-apps/
-doc-category: Software
-doc-summary: GNUstep interface designer
-doc-url: http://wiki.gnustep.org/index.php/Gorm_Manual
-gplv3-status: not-applicable-since-gnustep
-activity-status: ok 20160719 (1.2.23)
-
-package: gpaint
-doc-category: Graphics
-doc-summary: Simple paint program for GNOME
-doc-url: none
-download-url: ftp://alpha.gnu.org/gpaint/
-gplv3-status: in-0.3.2-alpha-but-unreleased (was gnumaint-reply 20 Aug 2007 
23:52:53)
-activity-status: stale 20070910 (0.3.3)
-
-package: gperf
-copyright-holder: fsf-ok-#786473
-doc-category: Software
-doc-summary: Perfect hash function generator
-doc-url: /software/gperf/manual/
-gplv3-status: done-in-3.0.4
-activity-status: ok/20170113 (3.1)
-
-package: gprolog
-doc-category: Software
-doc-summary: Prolog compiler
-doc-url: http://www.gprolog.org/manual/
-gplv3-status: not-done-in-1.3.1
-activity-status: stale 20130423 (1.4.4)
-
-package: grabcomics
-mundane-name: phpGrabComics
-doc-category: Web
-doc-summary: Saves comic strips from the web
-doc-url: http://server.phpgrabcomics.org/docs/
-download-url: http://sourceforge.net/project/showfiles.php?group_id=33239
-gplv3-status: not-done-in-1.5.4
-activity-status: stale 20101118 (1.5.4)
-last-contact: 18nov10 replied
-
-package: greg
-copyright-holder: fsf-no-reply
-download-url: https://gna.org/files/?group=greg
-doc-category: Software
-doc-summary: Software testing framework
-doc-url: /software/greg/gregdoc.html
-gplv3-status: not-done-since-stale
-activity-status: stale 20060925 (2.0.0)
-last-contact: 14dec08 asked
-
-package: grep
-copyright-holder: fsf-ok-#786534
-doc-category: Text
-doc-summary: Print lines matching a pattern
-doc-url: /software/grep/manual/
-gplv3-status: done-in-2.5.4
-activity-status: ok 20161207 (2.27)
-
-package: gretl
-logo: http://gretl.sourceforge.net/images/gretl-image.png
-doc-category: Business
-doc-summary: Statistical analysis of economic data (econometrics)
-doc-url: http://sourceforge.net/projects/gretl/files/manual/
-download-url: http://sourceforge.net/project/showfiles.php?group_id=36234
-gplv3-status: done-as-of-1.9.2
-activity-status: ok 20161119 (2016d)
-
-package: groff
-copyright-holder: fsf-ok-with-external-and-hyphenations-#786537
-doc-category: Text
-doc-summary: Typesetting from plain text mixed with formatting commands
-doc-url: htmlxref
-logo: /graphics/groff-head.png
-gplv3-status: done-in-1.20.1
-activity-status: ok 20141104 (1.22.3)
-
-package: grub
-mundane-name: GRUB
-copyright-holder: fsf-maybe-ok-external-mostly-followed-#786720
-doc-category: Sysadmin
-doc-summary: GRand Unified Boot loader
-doc-url: /software/grub/grub-documentation.html
-gplv3-status: done-as-of-1.97.2
-activity-status: stale 20120627 (2.00)
-
-package: gsasl
-copyright-holder: notfsf
-doc-category: Libraries
-doc-summary: Simple Authentication and Security Layer library
-doc-url: /software/gsasl/manual/
-gplv3-status: stays-lgplv2.1+
-activity-status: stale 20120528 (1.8.0, libgsasl-1.8.0/20120528)
-
-package: gsegrafix
-doc-category: Graphics
-doc-summary: GNOME application to create scientific and engineering plots
-doc-url: none
-gplv3-status: done-as-of-1.0.5
-activity-status: stale 20110910 (1.0.6)
-last-contact: 13feb11 asked
-
-package: gsl
-mundane-name: GNU Scientific Library
-copyright-holder: notfsf-gough-did-not-assign-though-others-did
-doc-category: Mathematics
-doc-summary: Numerical library for C and C++
-doc-url: htmlxref
-gplv3-status: done-in-1.10 (gnumaint-reply 21 Aug 2007 10:01:29)
-activity-status: ok 20161209 (2.3)
-
-package: gslip
-mundane-name: GNU Slip
-doc-category: Libraries
-doc-summary: SLIP (Symmetric LIst Processor) implementation
-doc-url: none
-gplv3-status: should-be-done
-activity-status: newpkg (20150810)
-
-package: gsrc
-mundane-name: GNU Source Release Collection
-copyright-holder: notfsf-#786658
-doc-category: Sysadmin
-doc-summary: Install latest official GNU releases from original source
-doc-url: /software/gsrc/manual/
-gplv3-status: done
-activity-status: ok 20140706 (2014.07.06)
-
-package: gss
-mundane-name: Generic Security Service
-doc-category: Libraries
-doc-summary: Generic Security Service library
-doc-url: /software/gss/manual/
-gplv3-status: done-as-of-1.0.0
-activity-status: ok 20141009 (1.0.3)
-
-package: gtick
-mundane-name: GTick
-logo: http://www.antcom.de/gtick/logo.www.jpg
-doc-category: Music
-doc-summary: Customizable metronome application
-doc-url: none
-gplv3-status: done-in-0.4.0
-download-url: http://www.antcom.de/gtick/download/
-activity-status: ok 20140727 (0.5.4)
-
-#package: gts
-#mundane-name: GNU Triangulated Surface Library
-#gplv3-status: not-done-in-4.0.0
-#homepage: http://gts.sourceforge.net/
-#activity-status: ? # 13nov08 asked about gnu status
-
-package: gtk+
-mundane-name: GTK+
-doc-category: Interface
-doc-summary: Cross-platform toolkit for creating graphical user interfaces
-doc-url: http://library.gnome.org/devel/gtk/stable/
-gplv3-status: under-discussion # stormy.peters mail 23 Nov 2009 19:26:17
-activity-status: ok 20151112 (3.18.4)
-
-package: gtypist
-doc-category: Education
-doc-summary: Typing tutor
-doc-url: htmlxref
-gplv3-status: done-in-2.8
-activity-status: ok 20140812 (2.9.5)
-
-package: guile
-copyright-holder: fsf-maybe-ok-just-goops-#786545
-logo: /software/guile/static/base/img/branding.png
-doc-category: Software
-doc-summary: Scheme implementation intended especially for extensions
-doc-url: /software/guile/manual/
-gplv3-status: not-done-in-1.8.6-planned-for-1.10/2.0-in-2009 # neil 12jan09
-activity-status: ok 20161012 (2.0.13)
-
-package: guile-cv
-doc-category: Libraries
-doc-summary: Computer Vision library for Guile
-doc-url: none
-gplv3-status: unknown
-activity-status: newpkg 20170421
-
-package: guile-dbi
-doc-category: Database
-doc-summary: Guile database abstraction layer
-doc-url: http://home.gna.org/guile-dbi/guile-dbi.html
-gplv3-status: not-done-in-2.1.2
-download-url: http://download.gna.org/guile-dbi/
-activity-status: ok 20150802 (2.1.6)
-
-package: guile-opengl
-doc-category: Graphics
-doc-summary: Guile binding for the OpenGL graphics API
-doc-url: none
-gplv3-status: done-in-0.1.0
-activity-status: ok 20140518 (0.1.0)
-
-package: guile-gnome
-doc-category: Software
-doc-summary: Guile interface for GTK+ programming for GNOME
-doc-url: /software/guile-gnome/docs/
-doc-url: htmlxref
-gplv3-status: not-done-in-2.16.3
-activity-status: ok (guile-gnome-platform-2.16.4/20151208, 
guile-clutter-1.12.2.1/20151208)
-
-package: guile-ncurses
-doc-category: Interface
-doc-summary: Guile bindings to ncurses
-doc-url: /software/guile-ncurses/manual/
-gplv3-status: done-in-0.9
-activity-status: ok 20161113 (2.1)
-
-package: guile-rpc
-copyright-holder: fsf-ok-with-external-#786605
-doc-category: Software
-doc-summary: Pure Scheme implementation for the ONC RPC standard
-doc-url: /software/guile-rpc/manual/
-gplv3-status: done-in-0.3-alpha (gnumaint-reply 21 Aug 2007 09:35:53 +0200)
-activity-status: ok 20140521 (0.4)
-
-package: guile-sdl
-mundane-name: Guile-SDL
-copyright-holder: notfsf
-doc-category: Audio
-doc-summary: Guile interface for SDL (Simple DirectMedia Layer)
-doc-url: /software/guile-sdl/manual/
-gplv3-status: done-originally
-activity-status: ok 20150308 (0.5.2)
-
-package: guix
-logo: /software/guix/static/base/img/icon.png
-doc-category: Sysadmin
-doc-summary: Functional package manager for installed software packages and 
versions
-doc-url: /software/guix/manual/
-gplv3-status: done-in-0.0
-activity-status: alpha 20160329 (0.10.0)
-
-package: gurgle
-doc-category: Database
-doc-summary: GNU Report Generator Language
-doc-url: http://homepages.inf.ed.ac.uk/timc/gurgle/gurgle.html
-gplv3-status: done-in-1.61
-activity-status: stable 20130718 (1.75)
-
-package: gv
-copyright-holder: notfsf
-doc-category: Printing
-doc-summary: PostScript and PDF viewer using Ghostscript as a back-end
-doc-url: /software/gv/manual/
-gplv3-status: done-in-3.6.5
-activity-status: stale 20130317 (3.7.4)
-
-package: gvpe
-mundane-name: GVPE
-doc-category: Security
-doc-summary: Secure VPN among multiple nodes over an untrusted network
-doc-url: none
-gplv3-status: done-in-2.0
-activity-status: stale 20130716 (2.25)
-
-package: gwl
-mundane-name: GWL
-doc-category: Libraries
-doc-summary: Workflow language for GNU Guix
-doc-url: none
-gplv3-status: done-originally
-activity-status: newpkg/20180221
-
-package: gxmessage
-gplv3-status: done
-doc-category: Interface
-doc-summary: Open popup message window with buttons for return
-doc-url: none
-activity-status: ok 20150522 (3.4.1; 20150522 2.20.2)
-
-package: gzip
-copyright-holder: fsf-ok-with-gailly-contract-#786477
-doc-category: Archiving
-doc-summary: General file (de)compression (using lzw)
-doc-url: /software/gzip/manual/
-gplv3-status: done-as-of-1.4
-activity-status: ok 20160426 (1.8)
-
-package: halifax
-mundane-name: HaliFAX
-doc-category: Telephony
-doc-summary: Fax support
-doc-url: none
-gplv3-status: not-done-since-nomaint
-activity-status: nomaint/20010508 (0.22.0)
-last-contact: wolfgang replied 6jul12
-
-package: health
-language: python
-doc-category: Health
-doc-summary: Health and hospital information system
-doc-url: none
-gplv3-status: done
-activity-status: ok 20160713 (gnuhealth-3.0.2)
-
-package: hello
-copyright-holder: fsf-ok-#786611
-doc-category: Software
-doc-summary: Hello, GNU world: An example GNU package
-doc-url: /software/hello/manual/
-gplv3-status: done-in-2.3
-activity-status: ok 20141116 (2.10)
-
-package: help2man
-copyright-holder: fsf-ok-#786697
-doc-category: Text
-doc-summary: Automatically generate man pages from program --help
-doc-url: none
-gplv3-status: done-in-1.37.1
-activity-status: ok 20150911 (1.47.2)
-
-package: hp2xx
-copyright-holder: notfsf
-doc-category: Printing
-doc-summary: Convert HP-GL format graphics to other vector and bitmap formats
-doc-url: none
-gplv3-status: not-done-since-stale
-activity-status: stable 20030623 (3.4.4)
-
-package: html-info
-doc-category: Text
-doc-summary: HTML-Info viewer and tools
-doc-url: none
-activity-status: newpkg 20150113
-
-package: httptunnel
-logo: /graphics/httptunnel-w.png
-doc-category: Internet
-doc-summary: Bidirectional connection tunnelled inside HTTP requests
-doc-url: none
-gplv3-status: not-done-since-stale
-activity-status: stale 20020116 (3.3)
-last-contact: 28apr09 replied, 9feb10 asked
-
-package: hurd
-copyright-holder: fsf-ok-with-linux-code-rms
-doc-category: Software
-doc-summary: The kernel servers for the GNU operating system
-doc-url: /software/hurd/doc/doc.html
-gplv3-status: under-discussion
-logo: /graphics/hurd_sm_mf.jpg
-activity-status: ok 20161218 (0.9)
-
-package: hyperbole
-doc-category: Text
-doc-summary: Emacs hypertext system via customizable buttons
-doc-url: none
-gplv3-status: done-in-5.0.3
-activity-status: ok 20160727 (6.0.1)
-
-package: icecat
-copyright-holder: notfsf
-logo: /software/gnuzilla/icecat-128.png
-doc-category: Internet
-doc-summary: Entirely free browser derived from Mozilla Firefox
-doc-url: none
-gplv3-status: not-applicable-since-not-our-program
-activity-status: ok 20170305 (45.7.0)
-
-package: idutils
-copyright-holder: fsf-no-reply
-doc-category: Software
-doc-summary: Identifier database utilities
-doc-url: /software/idutils/manual/
-gplv3-status: done-in-4.5
-activity-status: stale 20120203 (4.6)
-
-package: ignuit
-doc-category: Education
-doc-summary: Memorization aid based on Leitner flashcards
-doc-url: none
-gplv3-status: done
-activity-status: ok 20160403 (2.24.2)
-
-package: indent
-copyright-holder: notfsf
-doc-category: Software
-doc-summary: Code reformatter
-doc-url: /software/indent/manual/
-gplv3-status: notgpl-is-bsd
-activity-status: newmaint/20140319 20090215 (2.2.10)
-
-package: inetutils
-doc-category: Internet
-doc-summary: Basic networking utilities
-doc-url: /software/inetutils/manual/
-gplv3-status: done
-activity-status: ok 20150610 (1.9.4)
-
-package: inklingreader
-doc-category: Interface
-doc-summary: Wacom Inkling sketch format conversion and manipulation
-doc-url: none
-gplv3-status: done-except-for-inkscape-plugin
-activity-status: newpkg/20141028
-
-package: intlfonts
-doc-category: Fonts
-doc-summary: TrueType and BDF fonts covering many scripts
-doc-url: none
-gplv3-status: needs-exception-#341653-fonts (21 Aug 2007 10:41:44)
-activity-status: stale 20030703 (1.2.1)
-last-contact: 27jan09 asked
-
-package: jacal
-mundane-name: JACAL
-logo: http://people.csail.mit.edu/jaffer/Logo/equal96.png
-doc-category: Mathematics
-doc-summary: Symbolic mathematics system
-doc-url: http://people.csail.mit.edu/jaffer/jacal_toc.html
-gplv3-status: done-without-guile-licensing-exception (licensing 341651 20 Aug 
2007 21:32:09)
-other-download-url: http://groups.csail.mit.edu/mac/ftpdir/scm/
-activity-status: ok 20150116 (1c4)
-
-package: java-getopt
-language: java
-doc-category: Libraries
-doc-summary: Java port of GNU getopt
-doc-url: 
http://www.urbanophile.com/arenn/hacking/getopt/Package-gnu.getopt.html
-download-url: ftp://ftp.urbanophile.com/pub/arenn/software/sources/
-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.
-
-package: jtw
-mundane-name: Java Training Wheels
-doc-category: Education
-doc-summary: A simplified Java environment for learning programming
-doc-url: none
-gplv3-status: done
-activity-status: ok 20160708 (1.1)
-
-package: jel
-doc-category: Libraries
-doc-summary: Java expression library and compiler
-doc-url: /software/jel/manual.html
-gplv3-status: done-in-2.0.1
-activity-status: stable 20071012 (2.0.1)
-last-contact: 24jun09 replied
-
-package: jwhois
-copyright-holder: fsf-ok-#786523
-language: c
-doc-category: Internet
-doc-summary: An extended whois client
-doc-url: /software/jwhois/manual/
-gplv3-status: done-in-4.0
-activity-status: newmaint/20161012 20070701 (4.0)
-last-contact: 12dec12 newmaint needed, 20090620 replied, maybe soon
-
-package: kawa
-logo: /software/kawa/style/kawa-logo.png
-doc-category: Software
-doc-summary: Java framework and implementation of Scheme, Elisp, and more
-doc-url: none
-gplv3-status: notgpl
-activity-status: ok 20141202 (2.0)
-
-package: kopi
-language: java
-doc-category: Software
-doc-summary: Java development environment for interactive database applications
-doc-url: none
-download-url: http://sourceforge.net/projects/kopi/files/
-gplv3-status: not-done-in-2.3B
-activity-status: stale 20070918 (2.3B)
-last-contact: 10mar12 asked, 10mar12 benheni asked
-
-package: leg
-copyright-holder: fsf-ok-planned-code-#786483
-language: c++
-doc-category: Games
-doc-summary: Libraries and engines for game programming
-doc-url: none
-gplv3-status: not-done-since-no-release
-activity-status: newmaint/20110519
-last-contact: 16feb13 replied end of summer, asked, 8nov10 replied, soon
-
-package: less
-copyright-holder: notfsf
-doc-category: Text
-doc-summary: Paginator for terminals
-doc-url: none
-download-url: http://greenwoodsoftware.com/less/download.html
-gplv3-status: notgpl
-activity-status: ok 20151016 (481)
-
-package: libc
-mundane-name: GNU C Library
-copyright-holder: fsf-ok-per-rms-#786983
-doc-category: Libraries
-doc-summary: C library
-doc-url: /software/libc/manual/
-gplv3-status: under-discussion
-download-url: http://ftp.gnu.org/gnu/glibc/
-activity-status: ok 20160804 (2.24)
-# seems to be gone from shop, noticed 8aug14, webmasters #934653
-#doc-shop: GNU C Library Application Fundamentals (Vol.1)
-#doc-shop: http://shop.fsf.org/product/gnu-c-library-application-fundamentals/
-
-package: libcdio
-doc-category: Audio
-doc-summary: CD Input and Control library
-doc-url: htmlxref
-gplv3-status: done-in-0.81
-activity-status: ok 20140929 (0.93, libcdio-paranoia-10.2+0.93+1/20140929, 
pycdio-0.20/20130906, rbcdio-0.15/200901518)
-
-package: libdbh
-doc-category: Database
-doc-summary: Advanced library for disk-based hash tables
-doc-url: none
-gplv3-status: done-in-5.0.17
-activity-status: ok 20150313 (5.0.17)
-
-package: libextractor
-logo: /software/libextractor/extractor_logo.png
-doc-category: Audio
-doc-summary: Library to extract meta-data from media files
-doc-url: htmlxref
-gplv3-status: depends-on-gnunet (gnumaint-reply 20 Aug 2007 20:40:48)
-activity-status: stale 20131223 (1.3)
-
-package: libffcall
-doc-category: Libraries
-doc-summary: Foreign function calls from interpreters
-doc-url: none
-gplv3-status: not-done-in-1.10-used-by-clisp
-activity-status: newmaint/20130713 20040602 (1.10)
-
-package: libgcrypt
-copyright-holder: notfsf-any-more-#786520
-download-url: ftp://ftp.gnupg.org/gcrypt/libgcrypt/
-doc-category: Libraries
-doc-summary: Cryptographic function library
-doc-url: htmlxref
-gplv3-status: depends-on-gnutls (gnumaint-reply 21 Aug 2007 11:13:04)
-activity-status: ok 20160714 (1.7.2)
-
-package: libiconv
-copyright-holder: fsf-no-reply
-doc-category: Libraries
-doc-summary: Character set conversion library
-doc-url: none
-gplv3-status: not-done-partially-in-1.12
-activity-status: newmaint/20140707 20110807 (1.14)
-
-package: libidn
-copyright-holder: notfsf-simon-did-not-assign-though-others-did
-doc-category: Libraries
-doc-summary: Internationalized string processing library
-doc-url: /software/libidn/manual/
-gplv3-status: not-done-partially-in-1.6-except-java?-20mar08
-activity-status: ok 20160720 (1.33)
-
-package: libjit
-copyright-holder: notfsf
-doc-category: Libraries
-doc-summary: Just-in-Time compilation library
-doc-url: none
-gplv3-status: unknown
-activity-status: newpkg/20121218
-
-package: libmatheval
-copyright-holder: fsf-ok-#786536
-doc-category: Mathematics
-doc-summary: Library for evaluating symbolic expressions
-doc-url: htmlxref
-gplv3-status: done-as-of-1.1.7
-activity-status: newmaint/20131023 20130814 (1.1.11)
-
-package: libmicrohttpd
-copyright-holder: notfsf
-language: c
-doc-category: Libraries
-doc-summary: C library implementing an HTTP 1.1 server
-doc-url: /software/libmicrohttpd/manual/
-gplv3-status: depends-on-gnunet-lgplv2.1+
-activity-status: ok 20160409 (0.9.49)
-
-package: libredwg
-copyright-holder: fsf-no-info-in-reply-#786464
-language: c
-doc-category: Science
-doc-summary: C library to handle DWG (CAD-related) files
-doc-url: none
-gplv3-status: not-done-since-no-release
-activity-status: newpkg/20091021
-last-contact: 16feb10 replied
-
-package: liberty-eiffel
-doc-category: Software
-doc-summary: Eiffel compiler
-doc-url: none
-#logo: http://smarteiffel.loria.fr/images/Logo_pp_small.png
-#download-url: http://gforge.inria.fr/frs/?group_id=184
-#gplv3-status: not-done-in-2.3
-activity-status: ok 20160526 (2016.05)
-note: renamed from smarteiffel (and smalleiffel before that).
-
-package: librejs
-logo: /software/librejs/images/logo-medium.png
-language: javascript
-doc-category: Internet
-doc-summary: Browser add-on that blocks nonfree nontrivial JavaScript
-doc-url: /software/librejs/manual/
-gplv3-status: ok
-activity-status: ok 20160504 (6.0.13)
-
-package: libsigsegv
-doc-category: Software
-doc-summary: Library for handling page faults
-doc-url: none
-gplv3-status: not-done-in-2.5-11nov07
-activity-status: newmaint/20140715 20110403 (2.10)
-
-package: libtasn1
-copyright-holder: fsf-no-reply-see-note
-language: c
-doc-category: Security
-doc-summary: ASN.1 library
-doc-url: /software/libtasn1/manual/
-gplv3-status: done-as-of-2.6
-activity-status: ok 20160411 (4.8)
-note: originated with gnutls, so copyright fsf, even though no explicit
-note: assignment has been needed yet.
-
-package: libtool
-copyright-holder: fsf-ok-#786491
-logo: /software/libtool/libtool.jpg
-doc-category: Libraries
-doc-summary: Generic shared library support tools
-doc-url: /software/libtool/manual/
-gplv3-status: needs-exception-#349136
-activity-status: ok 20150215 (2.4.6)
-
-package: libunistring
-copyright-holder: fsf-ok-#786481
-language: c
-doc-category: Libraries
-doc-summary: C library for manipulating Unicode strings
-doc-url: /software/libunistring/manual/
-gplv3-status: done-as-of-0.9.2.1-lgpl
-activity-status: ok 20161202 (0.9.7)
-
-package: libxmi
-copyright-holder: fsf-no-reply
-doc-category: Graphics
-doc-summary: Library for rasterizing 2-d vector graphics
-doc-url: none
-gplv3-status: not-done-since-stale
-activity-status: stale 20000621 (1.2)
-
-package: lightning
-copyright-holder: fsf-ok-24dec12
-doc-category: Libraries
-doc-summary: Library for generating assembly code at runtime
-doc-url: /software/lightning/manual/
-gplv3-status: not-done-since-stale
-activity-status: ok 20150207 (2.1.0)
-
-package: lilypond
-doc-category: Music
-doc-summary: Music typesetting
-doc-url: http://lilypond.org/manuals.html
-gplv3-status: done-as-of-2.13.13
-download-url: http://download.linuxaudio.org/lilypond/sources/
-activity-status: ok 20150405 (2.19.18)
-
-package: lims
-language: python
-doc-category: Science
-doc-summary: Scientific laboratory information management system
-doc-url: none
-gplv3-status: should-be-done-initially
-activity-status: newpkg/20131104
-
-package: linux-libre
-doc-category: Software
-doc-summary: 100% free redistribution of a cleaned Linux kernel
-doc-url: none
-gplv3-status: stays-gplv2-due-to-linux
-download-url: http://linux-libre.fsfla.org/pub/linux-libre/releases/
-activity-status: ok 20161003 (4.8-gnu)
-
-package: liquidwar6
-mundane-name: Liquid War 6
-doc-category: Games
-doc-summary: Multiplayer wargame where your army is a blob of liquid
-doc-url: /software/liquidwar6/manual/
-gplv3-status: done-in-0.0.2beta
-activity-status: ok 20150507 (0.6.3902)
-
-package: lispintro
-copyright-holder: fsf-no-reply
-doc-category: Software
-doc-summary: Introduction to programming in Emacs Lisp
-doc-url: /software/emacs/emacs-lisp-intro/emacs-lisp-intro.html
-doc-shop: An Introduction to Emacs Lisp
-doc-shop: http://shop.fsf.org/product/Intro_to_Emacs_Lisp_3rd_Ed/
-gplv3-status: doc
-activity-status: ok released-through-emacs
-
-package: lrzsz
-doc-category: Internet
-doc-summary: Implementation of XMODEM/YMODEM/ZMODEM transfer protocols
-doc-url: none
-download-url: http://www.ohse.de/uwe/releases/
-gplv3-status: not-done-in-0.12.20
-activity-status: stale 19981230 (0.12.20)
-last-contact: 28nov10 asked, 11apr09 replied, next 3 months
-
-package: lsh
-doc-category: Security
-doc-url: http://www.lysator.liu.se/~nisse/lsh/lsh.html
-doc-summary: GNU implementation of the Secure Shell (ssh) protocols
-gplv3-status: not-done-in-2.9-exp
-download-url: http://www.lysator.liu.se/~nisse/archive/
-activity-status: stale 20130626 (2.1)
-
-package: m4
-copyright-holder: fsf-ok-#786645
-doc-category: Text
-doc-summary: Macro processor
-doc-url: /software/m4/manual/
-gplv3-status: done-as-of-1.14.14
-activity-status: ok 20161231 (1.4.18)
-
-package: macchanger
-mundane-name: MAC Changer
-doc-category: Internet
-doc-summary: Viewing and manipulating MAC addresses of network interfaces
-doc-url: none
-gplv3-status: in-dev-sources (gnumaint-reply 21 Aug 2007 11:29:32 +0200)
-activity-status: stale 20130326 (1.6.0)
-
-package: mailman
-copyright-holder: fsf-no-reply
-logo: /graphics/dragonlogo.jpg
-language: c,python
-doc-category: Email
-doc-summary: Mailing list manager
-doc-url: /software/mailman/docs.html
-gplv3-status: next-release-2.2-and-3.0
-activity-status: ok 20160228 (2.1.21)
-
-package: mailutils
-copyright-holder: fsf-ok-with-external-libraries-#793769
-doc-category: Email
-doc-summary: Utilities and library for reading and serving mail
-doc-url: /software/mailutils/manual/
-gplv3-status: done-in-2.0
-activity-status: ok 20161216 (3.1.1)
-
-package: make
-copyright-holder: fsf-ok-#788835
-doc-category: Software
-doc-summary: Remake files automatically
-doc-url: /software/make/manual/
-doc-shop: GNU Make
-doc-shop: http://shop.fsf.org/product/gnu-make-version-381/
-gplv3-status: in-dev-sources (gnumaint-reply 28 Aug 2007 08:30:15)
-activity-status: ok 20160611 (4.2.1)
-
-package: marst
-copyright-holder: fsf-no-reply
-mundane-name: MARST
-doc-category: Software
-doc-summary: Algol-to-C translator
-doc-url: none
-gplv3-status: done-in-2.5
-activity-status: stale 20130309 (2.7)
-
-package: maverik
-doc-category: Graphics
-doc-summary: Support interactive 3d virtual environments
-doc-url: none
-gplv3-status: done-in-6.4
-activity-status: stale 20130315 (6.5)
-last-contact: 21feb13 replied, 18feb13 asked
-
-package: mc
-mundane-name: Midnight Commander
-copyright-holder: fsf-no-reply
-doc-category: Interface
-doc-summary: Graphical file manager
-doc-url: none
-gplv3-status: not-done-in-4.6.2-pre1
-activity-status: stale 20070913 (4.6.2-pre1)
-
-package: mcron
-logo: /software/mcron/mcron-logo.png
-doc-category: Sysadmin
-doc-summary: Run jobs at scheduled times
-doc-url: none
-gplv3-status: done-in-1.0.4
-activity-status: ok 20140525 (1.0.8)
-
-package: mcsim
-mundane-name: MCSim
-copyright-holder: fsf-ok-with-pd-#787152
-doc-category: Mathematics
-doc-summary: Monte Carlo simulation and analysis
-doc-url: http://www.gnu.org/software/mcsim/mcsim.html
-gplv3-status: done-in-5.4.0
-activity-status: ok 20170122 (5.6.6)
-last-contact: 29jan11 replied, 29nov10 replied
-
-package: mdk
-mundane-name: MIX Development Kit
-copyright-holder: fsf-ok-#787396
-doc-category: Education
-doc-summary: Virtual development environment for Knuth's MIX
-doc-url: /software/mdk/manual/
-doc-shop: GNU MDK
-doc-shop: http://shop.fsf.org/product/gnu-mdk/
-gplv3-status: done-in-1.2.4-21mar08
-activity-status: ok 20151228 (1.2.9)
-
-package: mediagoblin
-logo: http://mediagoblin.org/images/logo/mediagoblin_dark_medium.png
-language: python
-doc-category: Internet
-doc-summary: Photo and media sharing
-doc-url: http://docs.mediagoblin.org/
-download-url: http://mediagoblin.org/download/
-gplv3-status: ok
-activity-status: ok 20160329 (0.9.0)
-
-package: melting
-logo: http://www.ebi.ac.uk/compneur-srv/melting/meltingtop.jpg
-doc-category: Science
-doc-summary: Temperature computations for a nucleic acid duplex
-doc-url: http://www.ebi.ac.uk/compneur-srv/melting/melting5-doc/melting.html
-download-url: http://www.ebi.ac.uk/compneur-srv/melting/MELTING5.1.1.tar.gz
-gplv3-status: not-done-in-5.0.3
-activity-status: ok 20140808 (5.2.0)
-last-contact: 22feb10 asked
-
-package: mempool
-doc-category: Libraries
-doc-summary: Block allocator library
-doc-url: none
-activity-status: newmaint/20170621
-
-package: metaexchange
-doc-category: Database
-doc-summary: Manipulate metadata from OAI-PMH and Z39.50
-doc-url: /software/metaexchange/#Documentation
-gplv3-status: under-discussion (gnumaint-reply 29 Aug 2007 19:26:27)
-activity-status: comaint/20130404 no-release
-
-package: metahtml
-doc-category: Web
-doc-summary: Combining HTML and Lisp, specifically designed for Web servers
-doc-url: http://metahtml.sourceforge.net/documentation/
-gplv3-status: not-done-since-nomaint
-activity-status: newmaint/20160926 (6.11.01)
-note: metahtml.org domain expired
-note: used by gcc (only?), Gerald Pfeifer has patches
-note: bfox has some updates to sources on sf, but has not sent
-last-contact: 27nov11 gerald asked, 19jan11 replied, 23feb10 replied
-
-package: metalogic-inference
-mundane-name: MLI
-doc-category: Mathematics
-doc-summary: Logical proof program
-doc-url: none
-gplv3-status: unknown
-activity-status: newpkg 20170419
-
-package: mifluz
-doc-category: Libraries
-doc-summary: Full text indexing library
-doc-url: /software/mifluz/doc.en.html
-gplv3-status: done-in-0.24.0 (7jul08)
-activity-status: ok 20140417 (0.25.0)
-
-package: mig
-copyright-holder: see-hurd
-doc-category: Software
-doc-summary: Mach 3.0 interface generator for the Hurd
-doc-url: none
-gplv3-status: see-hurd
-activity-status: ok 20161218 (1.8)
-
-package: miscfiles
-doc-category: Text
-doc-summary: Data files for airport codes, zip codes, a dictionary, and more
-doc-url: none
-gplv3-status: not-applicable (gnumaint-reply 02 Oct 2007 20:11:47)
-activity-status: stale 20101116 (1.4.2)
-last-contact: 17nov10 replied
-
-package: mit-scheme
-mundane-name: MIT/GNU Scheme
-logo: /software/mit-scheme/lambda.png
-doc-category: Software
-doc-summary: A Scheme implementation with integrated editor and debugger
-doc-url: /software/mit-scheme/#Documentation
-doc-url: htmlxref
-gplv3-status: needs-exception-#555330
-activity-status: ok 20140521 (stable.pkg/9.2)
-
-package: moe
-doc-category: Editors
-doc-summary: Modeless, multiple-buffer, user-friendly 8-bit text editor
-doc-url: htmlxref
-gplv3-status: done-in-1.0
-activity-status: ok 20160217 (1.8)
-
-package: motti
-copyright-holder: fsf-ok-#786712
-doc-category: Games
-doc-summary: Multiplayer strategy game
-doc-url: htmlxref
-gplv3-status: done-in-2.5.0.5
-activity-status: ok 20140328 (3.1.0)
-
-package: mpc
-doc-category: Mathematics
-doc-summary: C library for arbitrary precision complex arithmetic
-doc-url: http://www.multiprecision.org/index.php?prog=mpc&page=documentation
-gplv3-status: lgplv3+-as-of-1.0-in-july-2012
-activity-status: ok 20150220 (1.0.3)
-
-package: mpfr
-copyright-holder: fsf-ok-#786594
-logo: http://www.mpfr.org/mpfr500.png
-doc-category: Mathematics
-doc-summary: C library for arbitrary precision floating-point arithmetic
-doc-url: http://www.mpfr.org/mpfr-current/#doc
-gplv3-status: lgplv3+-as-of-3.0.0-in-june-2010
-activity-status: ok 20160927 (3.1.5)
-
-package: mpria
-doc-category: Mathematics
-doc-summary: C library for arbitrary precision rational arithmetic
-doc-url: none
-gplv3-status: done
-activity-status: newpkg/20140110
-
-package: mtools
-doc-category: Sysadmin
-doc-summary: Access MS-DOS disks without mounting
-doc-url: /software/mtools/mailing.html
-gplv3-status: done-as-of-4.0.12
-activity-status: stale 20130109 (4.0.18)
-
-package: nana
-doc-category: Libraries
-doc-summary: Library for assertions, logging, performance measurement
-doc-url: none
-download-url: http://download.savannah.gnu.org/releases/nana/
-gplv3-status: notgpl
-activity-status: moribund 19990912 (2.5) # release date from ChangeLog
-note: assert stuff for gcc
-last-contact: 3jul12 jmd asked, 10mar11 asked maintainers with new addr
-
-package: nano
-copyright-holder: fsf-no-reply-#786770
-doc-category: Editors
-doc-summary: Small, user-friendly console text editor
-doc-url: http://www.nano-editor.org/docs.php
-gplv3-status: done-in-2.1.4
-activity-status: ok 20151206 (2.5.0)
-
-package: nano-archimedes
-doc-category: Science
-doc-summary: Simulation of quantum systems using the Wigner Monte Carlo method
-doc-url: none
-gplv3-status: unknown
-activity-status: ok 20151110 (2.0)
-
-package: ncurses
-copyright-holder: fsf-ok-#786484
-doc-category: Interface
-doc-summary: Terminal emulation (termcap, terminfo) library
-doc-url: none
-gplv3-status: notgpl
-activity-status: ok 20150809 (6.0)
-note: subactivity-status: stale 20081108 (tack-1.06)
-note: as a special case, we accepted ncurses as a GNU package under the
-note: revised BSD license.
-
-package: nettle
-doc-category: Security
-doc-summary: C library for low-level cryptographic functionality
-doc-url: htmlxref
-gplv3-status: lgplv2+-as-of-2.2-9nov10-asked-rms
-activity-status: ok 20161001 (3.3)
-
-package: network
-doc-category: Internet
-doc-summary: Initiative to encourage development of free network services
-doc-url: none
-gplv3-status: ok-since-container
-activity-status: container for-gnu-"group"
-
-package: ocrad
-doc-category: Text
-doc-summary: Optical character recognition based on feature extraction
-doc-url: htmlxref
-gplv3-status: done-in-0.17
-activity-status: ok 20150416 (0.25)
-
-package: octave
-copyright-holder: notfsf-#786632
-logo: /software/octave/images/logo.png
-doc-category: Mathematics
-doc-summary: High-level language for numerical computation
-doc-url: /software/octave/support.html
-gplv3-status: done-in-3.0.1 (licensing #345079)
-activity-status: ok 20161117 (4.2.0)
-
-package: oleo
-copyright-holder: fsf-no-reply
-doc-category: Spreadsheets
-doc-summary: Spreadsheet for both terminal and graphical interfaces
-doc-url: /software/oleo/doc/oleo.html
-gplv3-status: not-done-since-newmaint
-activity-status: newmaint/20100601 20010310 (1.99.16)
-last-contact: 1feb13 brandon wrote, 5apr12 replied, 1apr12,19feb12,22jan12 jmd 
asked
-
-package: oo-browser
-mundane-name: OO-Browser
-copyright-holder: notfsf
-doc-category: Interface
-doc-summary: An interactive object-oriented class browser for Emacs
-doc-url: none
-gplv3-status: done-in-5.0
-activity-status: newpkg/20160810
-
-package: orgadoc
-mundane-name: OrgaDoc
-doc-category: Text
-doc-summary: Eiffel program to maintain and query documents across machines
-doc-url: /software/orgadoc/orgadoc.html
-gplv3-status: not-done-since-stale
-activity-status: newmaint/20170421 (0.8)
-last-contact: 1mar10 resign
-
-package: osip
-mundane-name: oSIP
-copyright-holder: notfsf
-logo: /software/osip/osip-logo-60p.png
-doc-category: Libraries
-doc-summary: Library implementing SIP (RFC-3261)
-doc-url: /software/osip/doc/html/
-gplv3-status: not-done-in-3.2.0
-activity-status: stale 20140106 (libosip2-4.1.0)
-
-package: panorama
-doc-category: Graphics
-doc-summary: Framework for 3D graphics production
-doc-url: none
-download-url: http://sourceforge.net/project/showfiles.php?group_id=7862
-gplv3-status: not-done-since-stale
-activity-status: stale 20030211 (0.18)
-last-contact: 11may09 asked
-
-package: parallel
-logo: /software/parallel/logo.png
-copyright-holder: notfsf
-doc-category: Sysadmin
-doc-summary: Build and execute command lines in parallel
-doc-url: /software/parallel/man.html
-gplv3-status: done-in-20100424
-activity-status: ok 20160922 (20160922)
-
-package: parted
-copyright-holder: fsf-no-reply
-doc-category: Sysadmin
-doc-summary: Disk partition editor
-doc-url: /software/parted/manual/
-gplv3-status: done-in-1.8.8 (gnumaint-reply 20 Aug 2007 21:13:48 -0400)
-activity-status: ok 20140728 (3.2)
-
-package: pascal
-copyright-holder: fsf-ok-#787589
-logo: http://www.gnu-pascal.de/images/GnuPascal-small.png
-doc-category: Software
-doc-summary: GNU Pascal compiler
-doc-url: htmlxref
-download-url: http://www.gnu-pascal.de/alpha/
-gplv3-status: done-as-of-2007-09-04-per-email
-activity-status: moribund 20050331
-last-contact: 23feb09 replied
-
-package: patch
-doc-category: Software
-doc-summary: Apply differences to originals, with optional backups
-doc-url: /software/diffutils/manual/#Invoking-patch
-gplv3-status: done-as-of-2.6.1
-activity-status: ok 20150306 (2.7.5)
-
-package: paxutils
-copyright-holder: fsf-ok-#786468
-doc-category: Archiving
-doc-summary: Manage cpio, tar, and pax file archives
-doc-url: none
-download-url: ftp://alpha.gnu.org/gnu/paxutils/
-note: http://alpha.gnu.org/gnu/paxutils/paxutils-2.4h.tar.gz
-gplv3-status: not-done-since-stale-maintainer-busy
-activity-status: stale 19990611 (2.4h)
-last-contact: 9dec12 replied "soon", 4feb09 replied, autumn09
-
-package: pcb
-doc-category: Science
-doc-summary: Design printed circuit board layouts
-doc-url: none
-download-url: http://sourceforge.net/project/showfiles.php?group_id=73743
-gplv3-status: not-done-in-20100929
-activity-status: stale 20100929 (20100929)
-last-contact: 2jul12,2dec10,4mar10,24mar09 asked
-
-package: pdf
-copyright-holder: fsf-ok-#786934
-doc-category: Printing
-doc-summary: Library and programs for manipulating PDF
-doc-url: none
-gplv3-status: not-done-since-no-release
-activity-status: stale no-release
-
-package: pem
-doc-category: Business
-doc-summary: Personal expenses manager
-doc-url: none
-gplv3-status: done-in-0.7.8
-activity-status: stale 20110815 (0.7.9)
-
-package: pexec
-doc-category: Software
-doc-summary: Execute a command in parallel on multiple hosts
-doc-url: /software/pexec/pexec.1.html
-#old download-url: http://sourceforge.net/project/showfiles.php?group_id=210655
-gplv3-status: done-as-of-1.0rc8
-activity-status: stale 20090914 (1.0rc8)
-
-package: pgccfd
-mundane-name: Porting GCC for Dunces
-doc-category: Software
-doc-summary: Guide on porting the GNU compiler to new platforms
-doc-url: none
-download-url: ftp://ftp.axis.se/pub/users/hp/pgccfd/
-gplv3-status: needs-fdl-update-nomaint
-activity-status: newmaint/20130303 (0.5)
-
-package: phantom_home
-mundane-name: Phantom.Home
-doc-category: Interface
-doc-summary: Computer-controlled home automation
-doc-url: none
-download-url: http://ftp.gnu.org/gnu/phantom/home/
-gplv3-status: not-done-since-stale
-activity-status: stale 20000628 (1.0)
-
-package: pies
-doc-category: Software
-doc-summary: Program invocation and execution supervisor
-doc-url: http://www.gnu.org.ua/software/pies/manual.html
-gplv3-status: done-as-of-1.2
-activity-status: ok 20161001 (1.3)
-
-package: pipo
-download-url: http://maddingue.free.fr/softwares/download/GNU-PipoBBS/
-doc-category: Internet
-doc-summary: Bulletin board system
-doc-url: none
-gplv3-status: not-done-since-stale
-last-contact: 9mar10 asked
-activity-status: stale 19990528 (0.20)
-
-package: plotutils
-copyright-holder: fsf-no-reply
-doc-category: Graphics
-doc-summary: Plotting utilities and library
-doc-url: none
-gplv3-status: done-in-2.6
-activity-status: stale 20090926 (2.6)
-
-package: polyxmass
-doc-category: Science
-doc-summary: Mass spectrometric data simulations and analyses
-doc-url: none
-download-url: http://debian.cs.binghamton.edu/debian/pool/main/p/polyxmass/
-gplv3-status: not-done-since-nomaint
-activity-status: newmaint/20160314
-note: other polyxmass-* directories there too.
-
-package: powerguru
-copyright-holder: fsf-ok-#786472
-mundane-name: PowerGuru
-doc-category: Interface
-doc-summary: Monitoring, logging, and remote control of power generation
-doc-url: /software/powerguru/#documentation
-gplv3-status: in-dev-sources
-activity-status: comaint/20130404 no-release
-
-package: proxyknife
-doc-category: Internet
-doc-summary: Customizable multithread proxy hunter
-doc-url: /software/proxyknife/manual/
-gplv3-status: done-in-1.7 (gnumaint-reply 24 Sep 2007 22:54:49 +0800)
-activity-status: stale 20070924 (1.7)
-
-package: pspp
-mundane-name: PSPP
-copyright-holder: fsf-ok-with-external-#786643
-logo: /software/pspp/pspplogo.png
-doc-category: Mathematics
-doc-summary: Statistical analysis
-doc-url: /software/pspp/manual/
-gplv3-status: done-in-0.4.0.1
-activity-status: ok 20160723 (0.10.2)
-
-package: psychosynth
-doc-category: Music
-doc-summary: Interactive software synthesizer
-doc-url: http://www.psychosynth.com/index.php?title=Documentation
-gplv3-status: done-as-of-0.1.5
-activity-status: stale 20120402 (0.3.0)
-
-package: pth
-logo: /software/pth/pth.jpg
-doc-category: Libraries
-doc-summary: Portable thread library
-doc-url: /software/pth/pth-manual.html
-gplv3-status: next-release rms
-activity-status: stale 20060608 (2.0.7)
-last-contact: 3dec11 replied, 10mar11 asked (rms gave up), 4jan11 to rms, 
12mar10 asked, 1jun09 replied
-
-package: pyconfigure
-language: python
-language: autoconf
-doc-category: Software
-doc-summary: configure interface for Python-based packages
-doc-url: /software/pyconfigure/manual/
-gplv3-status: stays-lgplv2-indefinitely (rms 26 Sep 2010 06:37:43)
-activity-status: ok 20160420 (0.2.3)
-
-package: pythonwebkit
-language: python
-doc-category: Software
-doc-summary: W3C DOM bindings to Webkit for use with GTK and more
-doc-url: none
-gplv3-status: stays-lgplv2-indefinitely (rms 26 Sep 2010 06:37:43)
-activity-status: newmaint/20100926
-last-contact: 17feb13 no release (urged doing so)
-
-package: qexo
-doc-category: Software
-doc-summary: Java implementation of XQuery using GNU Kawa
-doc-url: /software/qexo/#Documentation
-download-url: http://ftp.gnu.org/gnu/kawa/
-gplv3-status: notgpl
-activity-status: subpkg/kawa
-last-contact: see kawa
-
-package: quickthreads
-doc-category: Libraries
-doc-summary: Thread library
-doc-url: none
-gplv3-status: not-done-since-nomaint
-activity-status: nomaint/20060528 (1.6.8)
-last-contact: 12mar10 asked, 23jul09 awaiting code,
-note: used to be part of guile, but dropped in guile 1.8.0
-
-package: r
-logo: http://www.r-project.org/Rlogo.jpg
-doc-category: Mathematics
-doc-summary: Environment for statistical computing and graphics
-doc-url: http://cran.r-project.org/#doc
-download-url: http://stat.ethz.ch/CRAN/src/base/
-gplv3-status: not-done-as-of-2.10.1 (ticket 319866?)
-activity-status: ok 20150416 (3.2.0)
-
-package: radius
-copyright-holder: fsf-no-reply
-doc-category: Security
-doc-summary: Authentication and accounting services and daemon
-doc-url: /software/radius/manual/
-gplv3-status: done-in-1.6
-activity-status: stale 20081217 (1.6.1)
-
-package: rcs
-mundane-name: RCS
-copyright-holder: notfsf-tichy-eggert-nguyen-#786470
-doc-category: Version
-doc-summary: Per-file local revision control system
-doc-url: /software/rcs/manual/
-gplv3-status: not-done-since-stale
-activity-status: ok 20150122 (5.9.4)
-
-package: readline
-copyright-holder: fsf-ok-with-examples-#790941
-doc-category: Editors
-doc-summary: Edit command lines while typing, with history support
-doc-url: htmlxref
-gplv3-status: done-in-4.0
-activity-status: ok 20160917 (7.0)
-
-package: recutils
-logo: http://www.gnu.org/software/recutils/logo.png
-doc-category: Database
-doc-summary: Manipulate plain text files as databases
-doc-url: /software/recutils/manual/
-gplv3-status: done
-activity-status: ok 20140324 (1.6)
-
-package: reftex
-copyright-holder: see-auctex
-doc-category: Text
-doc-summary: Emacs support for LaTeX cross-references of all kinds
-doc-url: /software/auctex/manual/reftex.index.html
-gplv3-status: done-in-4.33
-activity-status: stale 20090809 (4.34)
-
-package: remotecontrol
-copyright-holder: notfsf
-logo: /software/remotecontrol/GNU_remotecontrol_CIRCLE.png
-doc-category: Interface
-doc-summary: Management of IP-enabled thermostats and other HVAC devices
-doc-url: /software/remotecontrol/manual/
-gplv3-status: done-from-start
-activity-status: ok 20160425 (2.0)
-
-package: ring
-doc-category: Live
-doc-summary: A privacy-respecting communication program
-doc-url: none
-gplv3-status: done-from-start
-activity-status: newpkg 20161018
-
-package: rottlog
-doc-category: Sysadmin
-doc-summary: Log rotation and management
-doc-url: /software/rottlog/manual/
-gplv3-status: done-in-0.71.2
-activity-status: newmaint/20130724 20100330 (0.72.2)
-
-package: rpge
-doc-category: Games
-doc-summary: Role playing game engine
-doc-url: none
-gplv3-status: done-in-0.0.1
-activity-status: stale 20140106 (0.0.3)
-note: revived 6jan14, was gone 22may13 per inaction+leg
-
-package: rush
-doc-category: Software
-doc-summary: Restricted user (login) shell
-doc-url: http://puszcza.gnu.org.ua/software/rush/manual.html
-gplv3-status: done-in-1.5
-activity-status: ok 20161001 (1.8)
-
-package: sather
-doc-category: Software
-doc-summary: An object-oriented language designed to be simple, efficient, safe
-doc-url: /software/sather/#doc
-gplv3-status: done-in-1.2.3
-activity-status: newmaint/20120305 20070707 (1.2.3)
-last-contact: 20feb13 replied, 19feb13 asked, 14apr12 asked
-
-package: scm
-mundane-name: SCM
-copyright-holder: fsf-ok-#786490
-language: c
-logo: http://people.csail.mit.edu/jaffer/Logo/SCM_64.png
-doc-category: Software
-doc-summary: A scheme implementation
-doc-url: http://people.csail.mit.edu/jaffer/scm_toc.html
-other-download-url: http://people.csail.mit.edu/jaffer/SCM.html
-gplv3-status: done-without-exception-#502112-lgpl-but-done-in-scm-5e5 
(info-gnu 4 Feb 2008 00:27:30)
-activity-status: ok 20150116 (5f2)
-
-package: screen
-copyright-holder: notfsf-Juergen Weigert, Michael Schroeder, Oliver Laumann, 
et al.
-doc-category: Software
-doc-summary: Full-screen window manager providing multiple terminals
-doc-url: /software/screen/manual/
-gplv3-status: not-done-in-4.0.3
-activity-status: ok 20170118 (4.5.0)
-
-package: sed
-copyright-holder: fsf-ok-#786533
-doc-category: Text
-doc-summary: Stream editor
-doc-url: /software/sed/manual/
-gplv3-status: done-in-4.2
-activity-status: ok/20170104 (4.3)
-
-package: serveez
-logo: /software/serveez/logo.jpg
-doc-category: Sysadmin
-doc-summary: Framework for implementing IP-based servers
-doc-url: /software/serveez/manual/
-gplv3-status: not-done-in-0.1.7
-activity-status: stale 20131202 (0.2.2)
-
-package: sharutils
-copyright-holder: fsf-ok-with-external-29dec-mail
-doc-category: Archiving
-doc-summary: Archives in shell scripts, uuencode/uudecode
-doc-url: /software/sharutils/manual/
-gplv3-status: done-in-4.7
-activity-status: ok 20150530 (4.15.2)
-
-package: shepherd
-copyright-holder: fsf-no-reply-individual-name-in-files
-doc-category: Sysadmin
-doc-summary: System service manager
-doc-url: none
-gplv3-status: not-done-in-0.5
-download_url: http://www.wt-lorsch.de/dmd--0.5.tar.gz
-activity-status: newmaint/20130925 2003 (0.5)
-
-package: shishi
-copyright-holder: notfsf
-logo: /software/shishi/shishi.png
-doc-category: Internet
-doc-summary: Implementation of the Kerberos 5 network security system
-doc-url: /software/shishi/#status
-gplv3-status: done-in-alpha-releases
-activity-status: stale 20120403 (1.0.2)
-
-package: shmm
-doc-category: Software
-doc-summary: Shared memory manager utility
-doc-url: none
-gplv3-status: done-in-1.0
-activity-status: stable 20080628 (1.0)
-
-package: shtool
-doc-category: Software
-doc-summary: Compilation of utility shell scripts into a shell tool
-doc-url: none
-gplv3-status: not-done rms
-activity-status: stale 20080718 (2.0.8)
-last-contact: see pth
-note: pending (l)gplv3, current address, rationalE?, info-gnu announcement
-
-package: sipwitch
-doc-category: Telephony
-doc-summary: Secure peer-to-peer VoIP server for the SIP protocol
-doc-url: none
-gplv3-status: done-in-0.1
-activity-status: ok 20151213 (1.9.15)
-
-package: slib
-mundane-name: SLIB
-doc-category: Software
-doc-summary: Portable library for Scheme
-doc-url: http://people.csail.mit.edu/jaffer/slib/index.html
-logo: http://people.csail.mit.edu/jaffer/Logo/SLIB_64.png
-other-download-url: http://groups.csail.mit.edu/mac/ftpdir/scm/
-gplv3-status: done-since-public-domain (licensing 341650, 20 Aug 2007 21:16:08)
-activity-status: ok 20150116 (3b5)
-
-package: smalltalk
-copyright-holder: fsf-ok-with-external-#786531
-doc-category: Software
-doc-summary: Smalltalk environment
-doc-url: http://smalltalk.gnu.org/documentation
-doc-url: htmlxref
-logo: http://www.smalltalk.org/images/balloon2.gif
-gplv3-status: needs-exception-#362488, brett 29 Oct 2009 18:02:27
-activity-status: ok 20130407 (3.2.5)
-note: html manuals are constructed ok, but have generic names ("manual")
-
-package: social
-doc-category: Internet
-doc-summary: Decentralized social networking server
-doc-url: none
-gplv3-status: not-done-since-no-release
-activity-status: stale no-release dubbed/20100313
-
-package: solfege
-doc-category: Music
-doc-summary: Ear training
-doc-url: none
-logo: http://www.solfege.org/static/logo.png
-gplv3-status: done-in-3.10.3
-activity-status: newmaint/20140318 (3.22.2)
-
-package: spacechart
-mundane-name: SpaceChart
-copyright-holder: fsf-no-reply
-doc-category: Science
-doc-summary: Stargazing in 3D under GNOME
-doc-url: none
-gplv3-status: not-done-since-stale
-activity-status: stale 20021206 (0.9.5)
-last-contact: 21mar10,14feb09 asked
-
-package: speex
-logo: http://www.speex.org/images/logos/parrot_speex_org-3.png
-doc-category: Audio
-doc-summary: Library for patent-free audio compression format
-doc-url: http://www.speex.org/docs/
-download-url: http://downloads.xiph.org/releases/speex/
-gplv3-status: notgpl
-activity-status: stable 20080724 (1.2rc1)
-
-package: spell
-copyright-holder: fsf-ok-#786524
-doc-category: Text
-doc-summary: Spell checking
-doc-url: none
-gplv3-status: not-done-since-stale
-activity-status: stale 20110721 (1.1)
-
-package: sqltutor
-copyright-holder: fsf-ok-with-external-#787535
-doc-category: Database
-doc-summary: Interactively learn SQL by example
-doc-url: /software/sqltutor/manual/
-gplv3-status: done-as-of-0.6
-activity-status: ok 20140601 (0.7)
-
-package: src-highlite
-doc-category: Text
-doc-summary: Produce a document with syntax highlighting from a source file
-doc-url: htmlxref
-gplv3-status: done-in-2.8
-activity-status: ok 20150330 (source-highlight-3.1.8)
-
-package: ssw
-mundane-name: spread-sheet-widget
-doc-category: ssheet
-gplv3-status: done
-activity-status: newpkg
-
-package: stalkerfs
-copyright-holder: fsf-no-reply
-doc-category: Interface
-doc-summary: Desktop search engine for local files, using FUSE
-doc-url: none
-gplv3-status: in-dev-sources (gnumaint-reply 21 Aug 2007 18:41:09 +0200)
-activity-status: stale no-release
-
-package: stow
-doc-category: Sysadmin
-doc-summary: Managing installed software packages
-doc-url: /software/stow/manual/
-gplv3-status: not-done-since-stale
-activity-status: ok 20151109 (2.2.2)
-
-package: stump
-logo: http://www.algebra.com/~ichudov/images/active/stump.jpg
-doc-category: Internet
-doc-summary: Secure team-based Usenet moderation program
-doc-url: none
-download-url: http://www.algebra.com/~ichudov/stump/
-gplv3-status: not-done-since-stale
-activity-status: stable 20000622 (2.5)
-last-contact: 9dec10 asked, 24mar10 asked, 16mar09 replied
-
-package: superopt
-copyright-holder: fsf-no-reply
-doc-category: Software
-doc-summary: Super-optimizer of given functions
-doc-url: none
-gplv3-status: not-done-since-stale
-activity-status: newmaint/20150624 19950614 (2.5)
-note: maintainers@ received patch from ttn, 04 Jan 2014 13:33:11.
-
-package: swbis
-doc-category: Software
-doc-summary: POSIX software packaging utilities
-doc-url: htmlxref
-gplv3-status: done-in-0.951 (20apr08)
-activity-status: ok 20140803 (1.12)
-
-package: sysutils
-copyright-holder: fsf-no-reply
-doc-category: Sysadmin
-doc-summary: Standard system administration utilities: passwd, chsh, and more
-doc-url: none
-download-url: http://download.savannah.gnu.org/releases/sysutils/
-gplv3-status: not-done-since-stale
-activity-status: nomaint/20150322  20060329 (0.1.5)
-last-contact: 19jan11 asked, 26mar10 asked
-note: real maintainer is David Weinhall <address@hidden>
-
-package: taler
-doc-category: Business
-doc-summary: Electronic payments for a liberal society
-doc-url: none
-gplv3-status: done-from-beginning
-activity-status: ok 20160603 (0.0.0)
-
-package: talkfilters
-doc-category: Games
-doc-summary: Convert English text to humorous dialects
-doc-url: http://www.hyperrealm.com/talkfilters/talkfilters.pdf
-download-url: http://www.hyperrealm.com/talkfilters/
-gplv3-status: not-done-in-2.3.8 # 27mar10 replied
-activity-status: stable 20071228 (2.3.8)
-
-package: tar
-copyright-holder: fsf-ok-#786475
-doc-category: Archiving
-doc-summary: Managing tar archives
-doc-url: /software/tar/manual/
-gplv3-status: done-in-1.21
-activity-status: ok 20150516 (1.29)
-
-package: termcap
-copyright-holder: fsf-ok-#786501
-doc-category: Interface
-doc-summary: Terminal-independent display support
-doc-url: /software/termutils/manual/termcap-1.3/termcap.html
-gplv3-status: not-done-since-stale-and-not-updated-in-emacs
-activity-status: stable 20020313 (1.3.1)
-last-contact: see termutils
-
-package: termutils
-copyright-holder: fsf-ok-#786502
-doc-category: Interface
-doc-summary: The tput and tabs utilities for terminal operations
-doc-url: /software/termutils/manual/termutils-2.0/tput.html
-gplv3-status: not-done-since-stale-and-move-to-ncurses
-activity-status: stable 19951201 (2.0)
-last-contact: 8nov10 asked, 23feb09 replied/asked
-
-package: teseq
-doc-category: Software
-doc-summary: Analyze files with terminal control sequences, for debugging
-doc-url: /software/teseq/manual/
-gplv3-status: done-in-1.0.0
-activity-status: ok 20150814 (1.1.1)
-
-package: teximpatient
-mundane-name: TeX for the Impatient
-copyright-holder: notfsf
-doc-category: Text
-doc-summary: Book on TeX, plain TeX, and Eplain
-doc-url: none
-gplv3-status: doc
-download-url: ftp://tug.org/tex/impatient/
-activity-status: newmaint/20160321 20130530 (2.3)
-
-package: texinfo
-copyright-holder: fsf-ok
-doc-category: Text
-doc-summary: The GNU documentation format
-doc-url: /software/texinfo/manual/
-doc-url: htmlxref
-gplv3-status: done-#502113
-activity-status: ok 20160910 (6.3)
-
-package: texmacs
-mundane-name: TeXmacs
-gplv3-status: not-done-in-1.0.7
-doc-category: Text
-doc-summary: Editing platform with special features for scientists
-doc-url: none
-download-url: http://www.texmacs.org/tmweb/download/sources.en.html
-activity-status: ok 20151218 (1.99.4)
-
-package: thales
-doc-category: Software
-doc-summary: Unit test framework for Guile
-doc-url: htmlxref
-gplv3-status: unknown
-activity-status: ok 20140319 (1.99)
-
-package: time
-copyright-holder: fsf-ok-#786500
-doc-category: Sysadmin
-doc-summary: Run a command, then display its resource usage
-doc-url: none
-gplv3-status: not-done-since-stale
-activity-status: ok 20150123 (1.7.2)
-last-contact: 16feb13 replied on bug-gnu-utils, no eta; 14oct11 replied, 
13jan11 replied-within-a-month
-
-package: tramp
-mundane-name: TRAMP
-copyright-holder: fsf-ok-#786547
-doc-category: Interface
-doc-summary: Transparent Remote Access, Multiple Protocol GNU Emacs package
-doc-url: htmlxref
-gplv3-status: done-in-2.1.14
-activity-status: ok 20141229 (2.2.11)
-
-package: trans-coord
-copyright-holder: fsf-ok
-fsd: none
-doc-category: Translation
-doc-summary: Organizational infrastructure for translating www.gnu.org
-doc-url: /software/trans-coord/manual/
-gplv3-status: ok-since-container
-activity-status: container for-gnun
-note: savannah project for www.gnu.org translation coordination
-
-package: trueprint
-doc-category: Printing
-doc-summary: Pretty-print C sources and other plain text to PostScript
-doc-url: none
-gplv3-status: unknown
-activity-status: newmaint/20140305 20130311 (5.4)
-
-package: unifont
-copyright-holder: notfsf
-doc-category: Fonts
-doc-summary: Large bitmap font covering Unicode's Basic Multilingual Plane
-doc-url: none
-gplv3-status: stays-gplv2+-per-author-and-rms
-activity-status: ok 20161223 (9.0.06)
-
-package: units
-copyright-holder: fsf-no-reply
-doc-category: Science
-doc-summary: Conversion between thousands of scales
-doc-url: /software/units/manual/
-gplv3-status: done (gnumaint-reply 26 Sep 2007 21:58:19)
-activity-status: ok 20140402 (2.11)
-
-package: unrtf
-mundane-name: UnRTF
-gplv3-status: done-in-0.20.5
-doc-category: Text
-doc-summary: Convert Rich Text Format documents to other formats
-doc-url: none
-activity-status: ok 20150102 (0.21.9)
-
-package: userv
-doc-category: Security
-doc-summary: Daemon to control service access
-doc-url: http://www.chiark.greenend.org.uk/~ian/userv/spec.html/
-gplv3-status: under-discussion-system-component (gnumaint-reply 21 Aug 2007 
11:55:17 +0100)
-activity-status: ok 20170123 (1.2.0) # ian.jackson
-last-contact: 19feb13 maybe soon; see adns
-
-package: uucp
-copyright-holder: notfsf-#786532
-mundane-name: UUCP
-doc-category: Sysadmin
-doc-summary: UUCP protocol implementation
-doc-url: none
-gplv3-status: not-done-since-stale
-activity-status: newmaint/20131008 20030603 (1.07)
-last-contact: 9jan11 asked, 3apr10 asked, 19may09 replied
-
-package: vc-dwim
-fsd: vcdwim
-doc-category: Version
-doc-summary: Version-control-agnostic ChangeLog diff and commit tool
-doc-url: /software/vc-dwim/manual/
-gplv3-status: done-as-of-1.2
-activity-status: ok 20170114 (1.8)
-
-package: vcdimager
-mundane-name: VCDImager
-doc-category: Video
-doc-summary: Authoring, disassembling and analyzing (super and) video CDs
-doc-url: none
-gplv3-status: under-discussion (4nov07)
-activity-status: stale 20110317 (0.7.24)
-
-package: vera
-copyright-holder: notfsf
-doc-category: Dictionaries
-doc-summary: List of acronyms
-doc-url: none
-gplv3-status: doc
-activity-status: ok 20140925 (1.22)
-
-package: vmgen
-copyright-holder: see-gforth
-doc-category: Software
-doc-summary: Generic virtual machine generation, used by gforth
-doc-url: none
-download-url: http://ftp.gnu.org/gnu/gforth/
-gplv3-status: in-dev-sources (gnumaint-reply 31 Dec 2007 20:31:05)
-activity-status: ok 20140709 (gforth-0.7.3)
-note: vmgen is distributed as part of gforth
-
-package: wb
-mundane-name: WB
-logo: http://people.csail.mit.edu/jaffer/TreeRoot96.jpg
-doc-category: Libraries
-doc-summary: Disk-based associative array B-tree database library
-doc-url: http://people.csail.mit.edu/jaffer/wb_toc.html
-other-download-url: http://groups.csail.mit.edu/mac/ftpdir/scm/
-gplv3-status: done-without-exception-#502112-but-done-in-wb2a2 (info-gnu 4 Feb 
2008 00:29:22)
-activity-status: ok 20150116 (2b3)
-
-package: wdiff
-copyright-holder: fsf-no-reply
-doc-category: Text
-doc-summary: Word difference finder
-doc-url: /software/wdiff/manual/
-gplv3-status: done-in-0.6.0
-activity-status: ok 20140414 (1.2.2)
-
-package: websocket4j
-language: java
-doc-category: Internet
-doc-summary: WebSocket protocol implementation for Java-HTML5 communication
-doc-url: /software/websocket4j/manual/
-gplv3-status: done
-activity-status: stale 20101024 (1.3)
-
-package: webstump
-mundane-name: WebSTUMP
-doc-category: Internet
-doc-summary: Web interface to STUMP
-doc-url: none
-download-url: http://www.algebra.com/~ichudov/stump/
-gplv3-status: see-stump
-activity-status: stable 1999
-last-contact: see stump
-
-package: wget
-copyright-holder: fsf-ok-#786732
-doc-category: Internet
-doc-summary: Non-interactive command-line utility for downloading files
-doc-url: /software/wget/manual/
-gplv3-status: done-in-1.11
-activity-status: ok 20160609 (1.18)
-
-package: which
-copyright-holder: notfsf
-doc-category: Sysadmin
-doc-summary: Find full path of shell commands
-doc-url: none
-gplv3-status: done-in-2.19
-activity-status: stable 20150320 (2.21)
-
-package: womb
-copyright-holder: fsf-ok
-doc-category: Software
-doc-summary: Repository for GNU work not intended to be separate packages
-doc-url: none
-gplv3-status: in-dev-sources (aug07)
-activity-status: ok released-through-vc
-
-package: xaos
-mundane-name: XaoS
-doc-category: Graphics
-doc-summary: Real-time fractal zoomer
-doc-url: http://matek.hu/xaos/doku.php?id=documentation:main
-download-url: http://sourceforge.net/projects/xaos/files/XaoS/
-gplv3-status: working (gnumaint-reply 21 Aug 2007 20:43:33 +0200)
-activity-status: stale 20131101 (3.6)
-
-package: xboard
-mundane-name: XBoard
-copyright-holder: fsf-maybe-ok-just-scotti-#786505
-doc-category: Games
-doc-summary: Graphical user interface for chess programs
-doc-url: /software/xboard/manual/
-gplv3-status: done-as-of-4.4.2
-activity-status: ok 20141102 (4.8.0)
-
-package: xhippo
-doc-category: Audio
-doc-summary: Generic playlist manager program
-doc-url: none
-gplv3-status: done-in-3.5
-activity-status: stable 20070827 (3.5)
-
-package: xlogmaster
-logo: /graphics/xlogmaster/logo_small.jpg
-doc-category: Sysadmin
-doc-summary: GUI program for monitoring log and other files
-doc-url: /software/xlogmaster/tutorial_toc.html
-gplv3-status: done-as-of-1.6.2
-activity-status: stale 20090624 (1.6.2)
-last-contact: 19feb12 jmd asked about penguin
-
-package: xmlat
-doc-category: Web
-doc-summary: Simple XML for defining and implementing markup languages
-doc-url: none
-gplv3-status: should-be-done
-activity-status: newmaint/20120512
-last-contact: 27feb13 replied, 26feb13 asked
-
-package: xnee
-doc-category: Software
-doc-summary: Record, replay and distribute user actions under X11
-doc-url: http://xnee.wordpress.com/documentation/
-gplv3-status: done-in-directory
-activity-status: ok 20140506 (3.19)
-
-package: xorriso
-doc-category: Archiving
-doc-summary: Create, manipulate, burn ISO-9660 filesystems
-doc-url: /software/xorriso/man_1_xorriso.html
-gplv3-status: done
-activity-status: ok 20160917 (1.4.6)
-note: Libburnia project = address@hidden
-note: xorriso support also on address@hidden
-note: mkisofs history at http://lists.debian.org/cdwrite/2004/10/msg00071.html
-
-package: zile
-copyright-holder: fsf-no-reply
-doc-category: Editors
-doc-summary: Zile is lossy Emacs, a lightweight Emacs clone
-doc-url: none
-gplv3-status: done-in-2.2.58
-activity-status: ok 20161018 (2.4.13)
-
-# End. (Do not remove this line or the blank line before it.  Thanks.)



reply via email to

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