From mboxrd@z Thu Jan 1 00:00:00 1970 From: Brandon Invergo Subject: Re: [PATCH] gnu-maintenance: Improve 'official-gnu-packages'; add the related procedures. Date: Fri, 22 Mar 2013 11:08:13 +0100 Message-ID: <87wqszrble.fsf@invergo.net> References: <87obfchq38.fsf@karetnikov.org> <87sj4ok6sc.fsf@gnu.org> <87sj48gxzp.fsf_-_@karetnikov.org> <87lia09khe.fsf@gnu.org> <874ngbcfbl.fsf_-_@karetnikov.org> <87vc8rq6ol.fsf@gnu.org> <877gl0kye8.fsf@karetnikov.org> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([208.118.235.92]:43642) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UIz0h-0000ij-GZ for bug-guix@gnu.org; Fri, 22 Mar 2013 06:15:45 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UIz0d-0001mU-JI for bug-guix@gnu.org; Fri, 22 Mar 2013 06:15:43 -0400 Received: from hapkido.dreamhost.com ([66.33.216.122]:51575) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UIz0d-0001ly-9r for bug-guix@gnu.org; Fri, 22 Mar 2013 06:15:39 -0400 Received: from homiemail-a72.g.dreamhost.com (caiajhbdcagg.dreamhost.com [208.97.132.66]) by hapkido.dreamhost.com (Postfix) with ESMTP id AEFF18379 for ; Fri, 22 Mar 2013 03:15:37 -0700 (PDT) Received: from homiemail-a72.g.dreamhost.com (localhost [127.0.0.1]) by homiemail-a72.g.dreamhost.com (Postfix) with ESMTP id C84C56B0078 for ; Fri, 22 Mar 2013 03:15:36 -0700 (PDT) Received: from localhost (nat-cmprbb-upf.upf.edu [193.145.39.133]) (using TLSv1 with cipher AES128-SHA (128/128 bits)) (No client certificate requested) (Authenticated sender: brandon@invergo.net) by homiemail-a72.g.dreamhost.com (Postfix) with ESMTPSA id 3F0396B0059 for ; Fri, 22 Mar 2013 03:15:36 -0700 (PDT) In-Reply-To: <877gl0kye8.fsf@karetnikov.org> List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org Sender: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org To: bug-guix@gnu.org > (define %package-list-url > (string-append "http://cvs.savannah.gnu.org/" > "viewvc/*checkout*/gnumaint/" > "gnupackages.txt?root=womb")) > > +(define-record-type* > + gnu-package-descriptor > + make-gnu-package-descriptor > + > + gnu-package-descriptor? > + > + (name gnu-package-name) > + (mundane-name gnu-package-mundane-name) > + (copyright-holder gnu-package-copyright-holder) > + (savannah gnu-package-savannah) > + (fsd gnu-package-fsd) > + (language gnu-package-language) > + (logo gnu-package-logo) > + (doc-category gnu-package-doc-category) > + (doc-summary gnu-package-doc-summary) > + (doc-url gnu-package-doc-url) > + (download-url gnu-package-download-url) > + (gplv3-status gnu-package-gplv3-status) > + (activity-status gnu-package-activity-status) > + (last-contact gnu-package-last-contact) > + (next-contact gnu-package-next-contact) > + (note gnu-package-note)) FYI we just moved the last/next-contact information into a separate file in Womb called contact-activity.txt, so I'd imagine that it will be removed from the gnupackages.txt file at some point. -brandon