2013-01-06 00:47:50 +01:00
|
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2013-01-08 22:46:12 +01:00
|
|
|
|
;;; Copyright © 2010, 2011, 2012, 2013 Ludovic Courtès <ludo@gnu.org>
|
2013-03-28 22:40:41 +01:00
|
|
|
|
;;; Copyright © 2012, 2013 Nikita Karetnikov <nikita@karetnikov.org>
|
2012-12-05 00:02:22 +01:00
|
|
|
|
;;;
|
2013-01-06 00:47:50 +01:00
|
|
|
|
;;; This file is part of GNU Guix.
|
2012-12-05 00:02:22 +01:00
|
|
|
|
;;;
|
2013-01-06 00:47:50 +01:00
|
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
2012-12-05 00:02:22 +01:00
|
|
|
|
;;; under the terms of the GNU General Public License as published by
|
|
|
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
|
;;; your option) any later version.
|
|
|
|
|
;;;
|
2013-01-06 00:47:50 +01:00
|
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
2012-12-05 00:02:22 +01:00
|
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
;;; GNU General Public License for more details.
|
|
|
|
|
;;;
|
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
2013-01-06 00:47:50 +01:00
|
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
2012-12-05 00:02:22 +01:00
|
|
|
|
|
|
|
|
|
(define-module (guix gnu-maintenance)
|
|
|
|
|
#:use-module (web uri)
|
|
|
|
|
#:use-module (web client)
|
|
|
|
|
#:use-module (web response)
|
|
|
|
|
#:use-module (ice-9 regex)
|
2013-03-28 22:40:41 +01:00
|
|
|
|
#:use-module (ice-9 rdelim)
|
2013-01-08 22:46:12 +01:00
|
|
|
|
#:use-module (ice-9 match)
|
2012-12-05 00:02:22 +01:00
|
|
|
|
#:use-module (srfi srfi-1)
|
|
|
|
|
#:use-module (srfi srfi-11)
|
|
|
|
|
#:use-module (srfi srfi-26)
|
2013-01-08 22:46:12 +01:00
|
|
|
|
#:use-module (system foreign)
|
|
|
|
|
#:use-module (guix ftp-client)
|
2013-04-21 10:08:40 +02:00
|
|
|
|
#:use-module (guix ui)
|
2013-02-12 18:02:15 +01:00
|
|
|
|
#:use-module (guix utils)
|
2013-03-05 20:30:27 +01:00
|
|
|
|
#:use-module (guix packages)
|
2013-03-28 22:40:41 +01:00
|
|
|
|
#:export (gnu-package-name
|
|
|
|
|
gnu-package-mundane-name
|
|
|
|
|
gnu-package-copyright-holder
|
|
|
|
|
gnu-package-savannah
|
|
|
|
|
gnu-package-fsd
|
|
|
|
|
gnu-package-language
|
|
|
|
|
gnu-package-logo
|
|
|
|
|
gnu-package-doc-category
|
|
|
|
|
gnu-package-doc-summary
|
|
|
|
|
gnu-package-doc-urls
|
|
|
|
|
gnu-package-download-url
|
|
|
|
|
|
|
|
|
|
official-gnu-packages
|
|
|
|
|
find-packages
|
2013-03-05 20:30:27 +01:00
|
|
|
|
gnu-package?
|
2013-03-28 22:40:41 +01:00
|
|
|
|
|
2013-01-08 22:46:12 +01:00
|
|
|
|
releases
|
|
|
|
|
latest-release
|
|
|
|
|
gnu-package-name->name+version))
|
|
|
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
;;;
|
|
|
|
|
;;; Code for dealing with the maintenance of GNU packages, such as
|
|
|
|
|
;;; auto-updates.
|
|
|
|
|
;;;
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;;
|
|
|
|
|
;;; List of GNU packages.
|
|
|
|
|
;;;
|
2012-12-05 00:02:22 +01:00
|
|
|
|
|
|
|
|
|
(define (http-fetch uri)
|
2013-03-28 22:40:41 +01:00
|
|
|
|
"Return an input port containing the textual data at URI, a string."
|
2012-12-05 00:02:22 +01:00
|
|
|
|
(let*-values (((resp data)
|
2013-04-01 00:41:55 +02:00
|
|
|
|
(let ((uri (string->uri uri)))
|
|
|
|
|
;; Try hard to use the API du jour to get an input port.
|
|
|
|
|
(if (version>? "2.0.7" (version))
|
|
|
|
|
(if (defined? 'http-get*)
|
|
|
|
|
(http-get* uri)
|
|
|
|
|
(http-get uri)) ; old Guile, returns a string
|
|
|
|
|
(http-get uri #:streaming? #t)))) ; 2.0.8 or later
|
2012-12-05 00:02:22 +01:00
|
|
|
|
((code)
|
|
|
|
|
(response-code resp)))
|
|
|
|
|
(case code
|
|
|
|
|
((200)
|
2013-04-01 00:41:55 +02:00
|
|
|
|
(cond ((not data)
|
2013-03-28 22:40:41 +01:00
|
|
|
|
(begin
|
|
|
|
|
;; XXX: Guile 2.0.5 and earlier did not support chunked transfer
|
|
|
|
|
;; encoding, which is required when fetching %PACKAGE-LIST-URL
|
|
|
|
|
;; (see <http://lists.gnu.org/archive/html/guile-devel/2011-09/msg00089.html>).
|
|
|
|
|
;; Since users may still be using these versions, warn them and
|
|
|
|
|
;; bail out.
|
2013-04-21 10:08:40 +02:00
|
|
|
|
(warning (_ "using Guile ~a, ~a ~s encoding~%")
|
|
|
|
|
(version)
|
|
|
|
|
"which does not support HTTP"
|
|
|
|
|
(response-transfer-encoding resp))
|
|
|
|
|
(leave (_ "download failed; use a newer Guile~%")
|
2013-03-28 22:40:41 +01:00
|
|
|
|
uri resp)))
|
2013-04-01 00:41:55 +02:00
|
|
|
|
((string? data) ; old `http-get' returns a string
|
2013-03-28 22:40:41 +01:00
|
|
|
|
(open-input-string data))
|
2013-04-01 00:41:55 +02:00
|
|
|
|
(else ; input port
|
|
|
|
|
data)))
|
2012-12-05 00:02:22 +01:00
|
|
|
|
(else
|
2013-03-28 22:40:41 +01:00
|
|
|
|
(error "download failed" uri code
|
2012-12-05 00:02:22 +01:00
|
|
|
|
(response-reason-phrase resp))))))
|
|
|
|
|
|
|
|
|
|
(define %package-list-url
|
|
|
|
|
(string-append "http://cvs.savannah.gnu.org/"
|
|
|
|
|
"viewvc/*checkout*/gnumaint/"
|
|
|
|
|
"gnupackages.txt?root=womb"))
|
|
|
|
|
|
2013-03-28 22:40:41 +01:00
|
|
|
|
(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-urls gnu-package-doc-urls)
|
|
|
|
|
(download-url gnu-package-download-url))
|
|
|
|
|
|
2012-12-05 00:02:22 +01:00
|
|
|
|
(define (official-gnu-packages)
|
2013-03-28 22:40:41 +01:00
|
|
|
|
"Return a list of records, which are GNU packages."
|
|
|
|
|
(define (group-package-fields port state)
|
|
|
|
|
;; Return a list of alists. Each alist contains fields of a GNU
|
|
|
|
|
;; package.
|
|
|
|
|
(let ((line (read-line port))
|
|
|
|
|
(field-rx (make-regexp "^([[:graph:]]+): (.*)$"))
|
|
|
|
|
(doc-urls-rx (make-regexp "^doc-url: (.*)$"))
|
|
|
|
|
(end-rx (make-regexp "^# End. .+Do not remove this line.+")))
|
|
|
|
|
|
|
|
|
|
(define (match-field str)
|
|
|
|
|
;; Packages are separated by empty strings. If STR is an
|
|
|
|
|
;; empty string, create a new list to store fields of a
|
|
|
|
|
;; different package. Otherwise, match and create a key-value
|
|
|
|
|
;; pair.
|
|
|
|
|
(match str
|
|
|
|
|
(""
|
|
|
|
|
(group-package-fields port (cons '() state)))
|
|
|
|
|
(str
|
|
|
|
|
(cond ((regexp-exec doc-urls-rx str)
|
|
|
|
|
=>
|
|
|
|
|
(lambda (match)
|
|
|
|
|
(if (equal? (assoc-ref (first state) "doc-urls") #f)
|
|
|
|
|
(group-package-fields
|
|
|
|
|
port (cons (cons (cons "doc-urls"
|
|
|
|
|
(list
|
|
|
|
|
(match:substring match 1)))
|
|
|
|
|
(first state))
|
|
|
|
|
(drop state 1)))
|
|
|
|
|
(group-package-fields
|
|
|
|
|
port (cons (cons (cons "doc-urls"
|
|
|
|
|
(cons (match:substring match 1)
|
|
|
|
|
(assoc-ref (first state)
|
|
|
|
|
"doc-urls")))
|
|
|
|
|
(assoc-remove! (first state)
|
|
|
|
|
"doc-urls"))
|
|
|
|
|
(drop state 1))))))
|
|
|
|
|
((regexp-exec field-rx str)
|
|
|
|
|
=>
|
|
|
|
|
(lambda (match)
|
|
|
|
|
(group-package-fields
|
|
|
|
|
port (cons (cons (cons (match:substring match 1)
|
|
|
|
|
(match:substring match 2))
|
|
|
|
|
(first state))
|
|
|
|
|
(drop state 1)))))
|
|
|
|
|
(else (group-package-fields port state))))))
|
|
|
|
|
|
|
|
|
|
(if (or (eof-object? line)
|
|
|
|
|
(regexp-exec end-rx line)) ; don't include dummy fields
|
|
|
|
|
(remove null-list? state)
|
|
|
|
|
(match-field line))))
|
|
|
|
|
|
|
|
|
|
(define (alist->record alist make keys)
|
|
|
|
|
;; Apply MAKE, which should be a syntactic constructor, to the
|
|
|
|
|
;; values associated with KEYS in ALIST.
|
|
|
|
|
(let ((args (map (cut assoc-ref alist <>) keys)))
|
|
|
|
|
(apply make args)))
|
|
|
|
|
|
|
|
|
|
(reverse
|
|
|
|
|
(map (lambda (alist)
|
|
|
|
|
(alist->record alist
|
|
|
|
|
make-gnu-package-descriptor
|
|
|
|
|
(list "package" "mundane-name" "copyright-holder"
|
|
|
|
|
"savannah" "fsd" "language" "logo"
|
|
|
|
|
"doc-category" "doc-summary" "doc-urls"
|
|
|
|
|
"download-url")))
|
|
|
|
|
(group-package-fields (http-fetch %package-list-url)
|
|
|
|
|
'(())))))
|
2012-12-05 00:02:22 +01:00
|
|
|
|
|
2013-03-28 22:40:41 +01:00
|
|
|
|
(define (find-packages regexp)
|
|
|
|
|
"Find GNU packages which satisfy REGEXP."
|
|
|
|
|
(let ((name-rx (make-regexp regexp)))
|
|
|
|
|
(filter (lambda (package)
|
|
|
|
|
(false-if-exception
|
|
|
|
|
(regexp-exec name-rx (gnu-package-name package))))
|
|
|
|
|
(official-gnu-packages))))
|
2013-03-05 20:30:27 +01:00
|
|
|
|
|
|
|
|
|
(define gnu-package?
|
|
|
|
|
(memoize
|
|
|
|
|
(lambda (package)
|
|
|
|
|
"Return true if PACKAGE is a GNU package. This procedure may access the
|
|
|
|
|
network to check in GNU's database."
|
|
|
|
|
;; TODO: Find a way to determine that a package is non-GNU without going
|
|
|
|
|
;; through the network.
|
2013-03-28 22:40:41 +01:00
|
|
|
|
(let ((url (and=> (package-source package) origin-uri))
|
|
|
|
|
(name (package-name package)))
|
2013-03-05 22:25:40 +01:00
|
|
|
|
(or (and (string? url) (string-prefix? "mirror://gnu" url))
|
2013-03-28 22:40:41 +01:00
|
|
|
|
(and (member name (map gnu-package-name (official-gnu-packages)))
|
2013-03-05 22:25:40 +01:00
|
|
|
|
#t))))))
|
2013-03-05 20:30:27 +01:00
|
|
|
|
|
2013-01-08 22:46:12 +01:00
|
|
|
|
|
|
|
|
|
;;;
|
|
|
|
|
;;; Latest release.
|
|
|
|
|
;;;
|
|
|
|
|
|
|
|
|
|
(define (ftp-server/directory project)
|
|
|
|
|
"Return the FTP server and directory where PROJECT's tarball are
|
|
|
|
|
stored."
|
|
|
|
|
(define quirks
|
|
|
|
|
'(("commoncpp2" "ftp.gnu.org" "/gnu/commoncpp")
|
|
|
|
|
("ucommon" "ftp.gnu.org" "/gnu/commoncpp")
|
|
|
|
|
("libzrtpcpp" "ftp.gnu.org" "/gnu/ccrtp")
|
|
|
|
|
("libosip2" "ftp.gnu.org" "/gnu/osip")
|
|
|
|
|
("libgcrypt" "ftp.gnupg.org" "/gcrypt/libgcrypt")
|
|
|
|
|
("libgpg-error" "ftp.gnupg.org" "/gcrypt/libgpg-error")
|
|
|
|
|
("libassuan" "ftp.gnupg.org" "/gcrypt/libassuan")
|
|
|
|
|
("gnupg" "ftp.gnupg.org" "/gcrypt/gnupg")
|
|
|
|
|
("freefont-ttf" "ftp.gnu.org" "/gnu/freefont")
|
|
|
|
|
("gnu-ghostscript" "ftp.gnu.org" "/gnu/ghostscript")
|
|
|
|
|
("mit-scheme" "ftp.gnu.org" "/gnu/mit-scheme/stable.pkg")
|
|
|
|
|
("icecat" "ftp.gnu.org" "/gnu/gnuzilla")
|
|
|
|
|
("source-highlight" "ftp.gnu.org" "/gnu/src-highlite")
|
|
|
|
|
("TeXmacs" "ftp.texmacs.org" "/TeXmacs/targz")))
|
|
|
|
|
|
|
|
|
|
(match (assoc project quirks)
|
|
|
|
|
((_ server directory)
|
|
|
|
|
(values server directory))
|
|
|
|
|
(_
|
|
|
|
|
(values "ftp.gnu.org" (string-append "/gnu/" project)))))
|
|
|
|
|
|
|
|
|
|
(define (releases project)
|
|
|
|
|
"Return the list of releases of PROJECT as a list of release name/directory
|
|
|
|
|
pairs. Example: (\"mit-scheme-9.0.1\" . \"/gnu/mit-scheme/stable.pkg/9.0.1\"). "
|
|
|
|
|
;; TODO: Parse something like fencepost.gnu.org:/gd/gnuorg/packages-ftp.
|
|
|
|
|
(define release-rx
|
|
|
|
|
(make-regexp (string-append "^" project
|
|
|
|
|
"-([0-9]|[^-])*(-src)?\\.tar\\.")))
|
|
|
|
|
|
|
|
|
|
(define alpha-rx
|
|
|
|
|
(make-regexp "^.*-.*[0-9](-|~)?(alpha|beta|rc|cvs|svn|git)-?[0-9\\.]*\\.tar\\."))
|
|
|
|
|
|
|
|
|
|
(define (sans-extension tarball)
|
|
|
|
|
(let ((end (string-contains tarball ".tar")))
|
|
|
|
|
(substring tarball 0 end)))
|
|
|
|
|
|
2013-03-05 22:31:19 +01:00
|
|
|
|
(define (release-file file)
|
|
|
|
|
;; Return #f if FILE is not a release tarball, otherwise return
|
|
|
|
|
;; PACKAGE-VERSION.
|
|
|
|
|
(and (not (string-suffix? ".sig" file))
|
|
|
|
|
(regexp-exec release-rx file)
|
|
|
|
|
(not (regexp-exec alpha-rx file))
|
|
|
|
|
(let ((s (sans-extension file)))
|
|
|
|
|
(and (regexp-exec %package-name-rx s) s))))
|
|
|
|
|
|
2013-01-08 22:46:12 +01:00
|
|
|
|
(let-values (((server directory) (ftp-server/directory project)))
|
|
|
|
|
(define conn (ftp-open server))
|
|
|
|
|
|
|
|
|
|
(let loop ((directories (list directory))
|
|
|
|
|
(result '()))
|
2013-03-05 22:31:19 +01:00
|
|
|
|
(match directories
|
|
|
|
|
(()
|
|
|
|
|
(ftp-close conn)
|
|
|
|
|
result)
|
|
|
|
|
((directory rest ...)
|
|
|
|
|
(let* ((files (ftp-list conn directory))
|
|
|
|
|
(subdirs (filter-map (match-lambda
|
|
|
|
|
((name 'directory . _) name)
|
|
|
|
|
(_ #f))
|
|
|
|
|
files)))
|
|
|
|
|
(loop (append (map (cut string-append directory "/" <>)
|
|
|
|
|
subdirs)
|
|
|
|
|
rest)
|
|
|
|
|
(append
|
|
|
|
|
;; Filter out signatures, deltas, and files which
|
|
|
|
|
;; are potentially not releases of PROJECT--e.g.,
|
|
|
|
|
;; in /gnu/guile, filter out guile-oops and
|
|
|
|
|
;; guile-www; in mit-scheme, filter out binaries.
|
|
|
|
|
(filter-map (match-lambda
|
|
|
|
|
((file 'file . _)
|
|
|
|
|
(and=> (release-file file)
|
|
|
|
|
(cut cons <> directory)))
|
|
|
|
|
(_ #f))
|
|
|
|
|
files)
|
|
|
|
|
result))))))))
|
2013-01-08 22:46:12 +01:00
|
|
|
|
|
|
|
|
|
(define (latest-release project)
|
|
|
|
|
"Return (\"FOO-X.Y\" . \"/bar/foo\") or #f."
|
|
|
|
|
(let ((releases (releases project)))
|
|
|
|
|
(and (not (null? releases))
|
|
|
|
|
(fold (lambda (release latest)
|
2013-02-12 18:02:15 +01:00
|
|
|
|
(if (version>? (car release) (car latest))
|
2013-01-08 22:46:12 +01:00
|
|
|
|
release
|
|
|
|
|
latest))
|
|
|
|
|
'("" . "")
|
|
|
|
|
releases))))
|
|
|
|
|
|
|
|
|
|
(define %package-name-rx
|
|
|
|
|
;; Regexp for a package name, e.g., "foo-X.Y". Since TeXmacs uses
|
|
|
|
|
;; "TeXmacs-X.Y-src", the `-src' suffix is allowed.
|
|
|
|
|
(make-regexp "^(.*)-(([0-9]|\\.)+)(-src)?"))
|
|
|
|
|
|
|
|
|
|
(define (gnu-package-name->name+version name+version)
|
|
|
|
|
"Return the package name and version number extracted from NAME+VERSION."
|
|
|
|
|
(let ((match (regexp-exec %package-name-rx name+version)))
|
|
|
|
|
(if (not match)
|
|
|
|
|
(values name+version #f)
|
|
|
|
|
(values (match:substring match 1) (match:substring match 2)))))
|
|
|
|
|
|
|
|
|
|
;;; gnu-maintenance.scm ends here
|