bug-guix
[Top][All Lists]
Advanced

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

Re: [PATCH] gnu-maintenance: Improve 'official-gnu-packages'; add the re


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
User-agent: Notmuch/0.15 (http://notmuchmail.org) Emacs/24.2.1 (x86_64-unknown-linux-gnu)

>  (define %package-list-url
>    (string-append "http://cvs.savannah.gnu.org/";
>                   "viewvc/*checkout*/gnumaint/"
>                   "gnupackages.txt?root=womb"))
>  
> +(define-record-type* <gnu-package-descriptor>
> +  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



reply via email to

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