2013-01-06 00:47:50 +01:00
|
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2019-05-12 23:15:13 +02:00
|
|
|
|
;;; Copyright © 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019 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)
|
2018-11-10 16:20:25 +01:00
|
|
|
|
#:use-module (sxml simple)
|
2012-12-05 00:02:22 +01:00
|
|
|
|
#:use-module (ice-9 regex)
|
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)
|
2017-09-03 23:31:09 +02:00
|
|
|
|
#:use-module (rnrs io ports)
|
2013-01-08 22:46:12 +01:00
|
|
|
|
#:use-module (system foreign)
|
2013-07-14 16:35:37 +02:00
|
|
|
|
#:use-module (guix http-client)
|
2013-01-08 22:46:12 +01:00
|
|
|
|
#:use-module (guix ftp-client)
|
2013-02-12 18:02:15 +01:00
|
|
|
|
#:use-module (guix utils)
|
Add (guix memoization).
* guix/combinators.scm (memoize): Remove.
* guix/memoization.scm: New file.
* Makefile.am (MODULES): Add it.
* gnu/packages.scm, gnu/packages/bootstrap.scm,
guix/build-system/gnu.scm, guix/build-system/python.scm,
guix/derivations.scm, guix/gnu-maintenance.scm,
guix/import/cran.scm, guix/import/elpa.scm,
guix/modules.scm, guix/scripts/build.scm,
guix/scripts/graph.scm, guix/scripts/lint.scm,
guix/store.scm, guix/utils.scm: Adjust imports accordingly.
2017-01-28 16:33:57 +01:00
|
|
|
|
#:use-module (guix memoization)
|
2013-05-12 15:46:16 +02:00
|
|
|
|
#:use-module (guix records)
|
2015-10-21 11:11:25 +02:00
|
|
|
|
#:use-module (guix upstream)
|
2013-03-05 20:30:27 +01:00
|
|
|
|
#:use-module (guix packages)
|
2017-09-03 23:31:09 +02:00
|
|
|
|
#:use-module (guix zlib)
|
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
|
2013-07-10 22:33:40 +02:00
|
|
|
|
gnu-package-doc-description
|
2013-03-28 22:40:41 +01:00
|
|
|
|
gnu-package-doc-urls
|
|
|
|
|
gnu-package-download-url
|
|
|
|
|
|
|
|
|
|
official-gnu-packages
|
2016-06-08 17:59:45 +02:00
|
|
|
|
find-package
|
2013-03-05 20:30:27 +01:00
|
|
|
|
gnu-package?
|
2013-03-28 22:40:41 +01:00
|
|
|
|
|
2015-12-07 22:45:00 +01:00
|
|
|
|
release-file?
|
2013-01-08 22:46:12 +01:00
|
|
|
|
releases
|
|
|
|
|
latest-release
|
2014-11-11 15:30:58 +01:00
|
|
|
|
gnu-release-archive-types
|
2013-04-24 23:48:36 +02:00
|
|
|
|
gnu-package-name->name+version
|
2014-11-11 15:30:58 +01:00
|
|
|
|
|
2015-12-07 23:23:46 +01:00
|
|
|
|
%gnu-updater
|
2017-09-03 23:31:09 +02:00
|
|
|
|
%gnu-ftp-updater
|
2016-08-01 11:05:28 +02:00
|
|
|
|
%kde-updater
|
2016-11-30 16:29:15 +01:00
|
|
|
|
%xorg-updater
|
|
|
|
|
%kernel.org-updater))
|
2013-01-08 22:46:12 +01:00
|
|
|
|
|
|
|
|
|
;;; 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
|
|
|
|
|
2013-10-09 13:00:00 +02:00
|
|
|
|
(define %gnumaint-base-url
|
2019-05-12 23:15:13 +02:00
|
|
|
|
"https://web.cvs.savannah.gnu.org/viewvc/*checkout*/www/www/prep/gnumaint/")
|
2013-10-09 13:00:00 +02:00
|
|
|
|
|
2012-12-05 00:02:22 +01:00
|
|
|
|
(define %package-list-url
|
2013-04-25 22:06:48 +02:00
|
|
|
|
(string->uri
|
2018-07-11 14:28:23 +02:00
|
|
|
|
(string-append %gnumaint-base-url "rec/gnupackages.rec")))
|
2012-12-05 00:02:22 +01:00
|
|
|
|
|
2013-10-09 13:00:00 +02:00
|
|
|
|
(define %package-description-url
|
|
|
|
|
;; This file contains package descriptions in recutils format.
|
2018-07-11 14:28:23 +02:00
|
|
|
|
;; See <https://lists.gnu.org/archive/html/guix-devel/2013-10/msg00071.html>
|
|
|
|
|
;; and <https://lists.gnu.org/archive/html/guix-devel/2018-06/msg00362.html>.
|
2013-10-09 13:00:00 +02:00
|
|
|
|
(string->uri
|
2018-07-11 14:28:23 +02:00
|
|
|
|
(string-append %gnumaint-base-url "rec/pkgblurbs.rec")))
|
2013-07-10 22:33:40 +02:00
|
|
|
|
|
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)
|
2013-07-10 18:08:09 +02:00
|
|
|
|
(language gnu-package-language) ; list of strings
|
2013-03-28 22:40:41 +01:00
|
|
|
|
(logo gnu-package-logo)
|
|
|
|
|
(doc-category gnu-package-doc-category)
|
|
|
|
|
(doc-summary gnu-package-doc-summary)
|
2013-10-09 13:00:00 +02:00
|
|
|
|
(doc-description gnu-package-doc-description) ; taken from 'pkgdescr.txt'
|
2013-07-10 18:08:09 +02:00
|
|
|
|
(doc-urls gnu-package-doc-urls) ; list of strings
|
2013-03-28 22:40:41 +01:00
|
|
|
|
(download-url gnu-package-download-url))
|
|
|
|
|
|
2015-10-17 13:04:12 +02:00
|
|
|
|
(define* (official-gnu-packages
|
|
|
|
|
#:optional (fetch http-fetch/cached))
|
|
|
|
|
"Return a list of records, which are GNU packages. Use FETCH,
|
|
|
|
|
to fetch the list of GNU packages over HTTP."
|
2013-07-10 22:33:40 +02:00
|
|
|
|
(define (read-records port)
|
2013-03-28 22:40:41 +01:00
|
|
|
|
;; Return a list of alists. Each alist contains fields of a GNU
|
|
|
|
|
;; package.
|
2013-07-10 18:08:09 +02:00
|
|
|
|
(let loop ((alist (recutils->alist port))
|
|
|
|
|
(result '()))
|
|
|
|
|
(if (null? alist)
|
2013-07-10 22:33:40 +02:00
|
|
|
|
(reverse result)
|
2013-07-10 18:08:09 +02:00
|
|
|
|
(loop (recutils->alist port)
|
2018-07-11 14:28:23 +02:00
|
|
|
|
|
|
|
|
|
;; Ignore things like "%rec" (info "(recutils) Record
|
|
|
|
|
;; Descriptors").
|
|
|
|
|
(if (assoc-ref alist "package")
|
|
|
|
|
(cons alist result)
|
|
|
|
|
result)))))
|
2013-03-28 22:40:41 +01:00
|
|
|
|
|
2013-10-09 13:00:00 +02:00
|
|
|
|
(define official-description
|
2015-10-17 13:04:12 +02:00
|
|
|
|
(let ((db (read-records (fetch %package-description-url #:text? #t))))
|
2013-07-10 22:33:40 +02:00
|
|
|
|
(lambda (name)
|
2013-10-09 13:00:00 +02:00
|
|
|
|
;; Return the description found upstream for package NAME, or #f.
|
2013-07-10 22:33:40 +02:00
|
|
|
|
(and=> (find (lambda (alist)
|
2013-10-09 13:00:00 +02:00
|
|
|
|
(equal? name (assoc-ref alist "package")))
|
|
|
|
|
db)
|
2013-12-03 21:33:55 +01:00
|
|
|
|
(lambda (record)
|
|
|
|
|
(let ((field (assoc-ref record "blurb")))
|
|
|
|
|
;; The upstream description file uses "redirect PACKAGE" as
|
|
|
|
|
;; a blurb in cases where the description of the two
|
|
|
|
|
;; packages should be considered the same (e.g., GTK+ has
|
|
|
|
|
;; "redirect gnome".) This is usually not acceptable for
|
|
|
|
|
;; us because we prefer to have distinct descriptions in
|
|
|
|
|
;; such cases. Thus, ignore the 'blurb' field when that
|
|
|
|
|
;; happens.
|
|
|
|
|
(and field
|
|
|
|
|
(not (string-prefix? "redirect " field))
|
|
|
|
|
field)))))))
|
2013-07-10 22:33:40 +02:00
|
|
|
|
|
|
|
|
|
(map (lambda (alist)
|
|
|
|
|
(let ((name (assoc-ref alist "package")))
|
2013-10-09 13:00:00 +02:00
|
|
|
|
(alist->record `(("description" . ,(official-description name))
|
2013-07-10 22:33:40 +02:00
|
|
|
|
,@alist)
|
|
|
|
|
make-gnu-package-descriptor
|
2018-07-11 14:28:23 +02:00
|
|
|
|
(list "package" "mundane_name" "copyright_holder"
|
2013-07-10 22:33:40 +02:00
|
|
|
|
"savannah" "fsd" "language" "logo"
|
2018-07-11 14:28:23 +02:00
|
|
|
|
"doc_category" "doc_summary" "description"
|
|
|
|
|
"doc_url"
|
|
|
|
|
"download_url")
|
|
|
|
|
'("doc_url" "language"))))
|
2015-10-17 14:37:50 +02:00
|
|
|
|
(let* ((port (fetch %package-list-url #:text? #t))
|
|
|
|
|
(lst (read-records port)))
|
|
|
|
|
(close-port port)
|
|
|
|
|
lst)))
|
2012-12-05 00:02:22 +01:00
|
|
|
|
|
2016-06-08 17:59:45 +02:00
|
|
|
|
(define (find-package name)
|
|
|
|
|
"Find GNU package called NAME and return it. Return #f if it was not
|
|
|
|
|
found."
|
|
|
|
|
(find (lambda (package)
|
|
|
|
|
(string=? name (gnu-package-name package)))
|
|
|
|
|
(official-gnu-packages)))
|
2013-03-05 20:30:27 +01:00
|
|
|
|
|
|
|
|
|
(define gnu-package?
|
2017-01-28 17:09:34 +01:00
|
|
|
|
(let ((official-gnu-packages (memoize official-gnu-packages)))
|
2017-01-28 17:17:13 +01:00
|
|
|
|
(mlambdaq (package)
|
2017-01-28 17:09:34 +01:00
|
|
|
|
"Return true if PACKAGE is a GNU package. This procedure may access the
|
2013-03-05 20:30:27 +01:00
|
|
|
|
network to check in GNU's database."
|
2017-01-28 17:09:34 +01:00
|
|
|
|
(define (mirror-type url)
|
|
|
|
|
(let ((uri (string->uri url)))
|
|
|
|
|
(and (eq? (uri-scheme uri) 'mirror)
|
|
|
|
|
(cond
|
|
|
|
|
((member (uri-host uri)
|
|
|
|
|
'("gnu" "gnupg" "gcc" "gnome"))
|
|
|
|
|
;; Definitely GNU.
|
|
|
|
|
'gnu)
|
|
|
|
|
((equal? (uri-host uri) "cran")
|
|
|
|
|
;; Possibly GNU: mirror://cran could be either GNU R itself
|
|
|
|
|
;; or a non-GNU package.
|
|
|
|
|
#f)
|
|
|
|
|
(else
|
|
|
|
|
;; Definitely non-GNU.
|
|
|
|
|
'non-gnu)))))
|
|
|
|
|
|
|
|
|
|
(define (gnu-home-page? package)
|
|
|
|
|
(letrec-syntax ((>> (syntax-rules ()
|
|
|
|
|
((_ value proc)
|
|
|
|
|
(and=> value proc))
|
|
|
|
|
((_ value proc rest ...)
|
|
|
|
|
(and=> value
|
|
|
|
|
(lambda (next)
|
|
|
|
|
(>> (proc next) rest ...)))))))
|
|
|
|
|
(>> package package-home-page
|
|
|
|
|
string->uri uri-host
|
|
|
|
|
(lambda (host)
|
|
|
|
|
(member host '("www.gnu.org" "gnu.org"))))))
|
|
|
|
|
|
|
|
|
|
(or (gnu-home-page? package)
|
|
|
|
|
(let ((url (and=> (package-source package) origin-uri))
|
|
|
|
|
(name (package-upstream-name package)))
|
|
|
|
|
(case (and (string? url) (mirror-type url))
|
|
|
|
|
((gnu) #t)
|
|
|
|
|
((non-gnu) #f)
|
|
|
|
|
(else
|
|
|
|
|
(and (member name (map gnu-package-name (official-gnu-packages)))
|
|
|
|
|
#t))))))))
|
2013-03-05 20:30:27 +01:00
|
|
|
|
|
2013-01-08 22:46:12 +01:00
|
|
|
|
|
|
|
|
|
;;;
|
2018-11-10 16:20:25 +01:00
|
|
|
|
;;; Latest FTP release.
|
2013-01-08 22:46:12 +01:00
|
|
|
|
;;;
|
|
|
|
|
|
2016-04-14 22:18:56 +02:00
|
|
|
|
(define (ftp-server/directory package)
|
|
|
|
|
"Return the FTP server and directory where PACKAGE's tarball are stored."
|
2017-01-28 00:11:33 +01:00
|
|
|
|
(let ((name (package-upstream-name package)))
|
2017-01-27 23:20:59 +01:00
|
|
|
|
(values (or (assoc-ref (package-properties package) 'ftp-server)
|
|
|
|
|
"ftp.gnu.org")
|
|
|
|
|
(or (assoc-ref (package-properties package) 'ftp-directory)
|
|
|
|
|
(string-append "/gnu/" name)))))
|
2013-01-08 22:46:12 +01:00
|
|
|
|
|
2013-04-24 23:17:31 +02:00
|
|
|
|
(define (sans-extension tarball)
|
2014-11-29 22:14:34 +01:00
|
|
|
|
"Return TARBALL without its .tar.* or .zip extension."
|
|
|
|
|
(let ((end (or (string-contains tarball ".tar")
|
|
|
|
|
(string-contains tarball ".zip"))))
|
2013-04-24 23:17:31 +02:00
|
|
|
|
(substring tarball 0 end)))
|
2013-01-08 22:46:12 +01:00
|
|
|
|
|
2013-04-24 23:37:14 +02:00
|
|
|
|
(define %tarball-rx
|
2015-12-07 22:17:43 +01:00
|
|
|
|
;; The .zip extensions is notably used for freefont-ttf.
|
|
|
|
|
;; The "-src" pattern is for "TeXmacs-1.0.7.9-src.tar.gz".
|
|
|
|
|
;; The "-gnu[0-9]" pattern is for "icecat-38.4.0-gnu1.tar.bz2".
|
|
|
|
|
(make-regexp "^([^.]+)-([0-9]|[^-])+(-(src|gnu[0-9]))?\\.(tar\\.|zip$)"))
|
2013-04-24 23:37:14 +02:00
|
|
|
|
|
|
|
|
|
(define %alpha-tarball-rx
|
|
|
|
|
(make-regexp "^.*-.*[0-9](-|~)?(alpha|beta|rc|cvs|svn|git)-?[0-9\\.]*\\.tar\\."))
|
|
|
|
|
|
2014-11-11 14:59:38 +01:00
|
|
|
|
(define (release-file? project file)
|
2013-04-24 23:17:31 +02:00
|
|
|
|
"Return #f if FILE is not a release tarball of PROJECT, otherwise return
|
2014-11-11 14:59:38 +01:00
|
|
|
|
true."
|
2018-11-10 16:03:48 +01:00
|
|
|
|
(and (not (member (file-extension file) '("sig" "sign" "asc")))
|
2013-04-24 23:37:14 +02:00
|
|
|
|
(and=> (regexp-exec %tarball-rx file)
|
|
|
|
|
(lambda (match)
|
|
|
|
|
;; Filter out unrelated files, like `guile-www-1.1.1'.
|
2015-12-07 22:18:31 +01:00
|
|
|
|
;; Case-insensitive for things like "TeXmacs" vs. "texmacs".
|
2016-04-14 21:48:05 +02:00
|
|
|
|
;; The "-src" suffix is for "freefont-src-20120503.tar.gz".
|
2015-12-07 22:18:31 +01:00
|
|
|
|
(and=> (match:substring match 1)
|
|
|
|
|
(lambda (name)
|
2016-04-14 21:48:05 +02:00
|
|
|
|
(or (string-ci=? name project)
|
|
|
|
|
(string-ci=? name
|
|
|
|
|
(string-append project
|
|
|
|
|
"-src")))))))
|
2013-04-24 23:17:31 +02:00
|
|
|
|
(not (regexp-exec %alpha-tarball-rx file))
|
|
|
|
|
(let ((s (sans-extension file)))
|
2014-11-11 14:59:38 +01:00
|
|
|
|
(regexp-exec %package-name-rx s))))
|
|
|
|
|
|
|
|
|
|
(define (tarball->version tarball)
|
|
|
|
|
"Return the version TARBALL corresponds to. TARBALL is a file name like
|
|
|
|
|
\"coreutils-8.23.tar.xz\"."
|
|
|
|
|
(let-values (((name version)
|
|
|
|
|
(gnu-package-name->name+version (sans-extension tarball))))
|
|
|
|
|
version))
|
|
|
|
|
|
2016-04-14 22:18:56 +02:00
|
|
|
|
(define* (releases project
|
|
|
|
|
#:key
|
|
|
|
|
(server "ftp.gnu.org")
|
|
|
|
|
(directory (string-append "/gnu/" project)))
|
|
|
|
|
"Return the list of <upstream-release> of PROJECT as a list of release
|
|
|
|
|
name/directory pairs."
|
2013-04-24 23:17:31 +02:00
|
|
|
|
;; TODO: Parse something like fencepost.gnu.org:/gd/gnuorg/packages-ftp.
|
2016-04-14 22:18:56 +02:00
|
|
|
|
(define conn (ftp-open server))
|
|
|
|
|
|
|
|
|
|
(let loop ((directories (list directory))
|
|
|
|
|
(result '()))
|
|
|
|
|
(match directories
|
|
|
|
|
(()
|
|
|
|
|
(ftp-close conn)
|
|
|
|
|
(coalesce-sources result))
|
|
|
|
|
((directory rest ...)
|
|
|
|
|
(let* ((files (ftp-list conn directory))
|
|
|
|
|
(subdirs (filter-map (match-lambda
|
|
|
|
|
((name 'directory . _) name)
|
|
|
|
|
(_ #f))
|
|
|
|
|
files)))
|
|
|
|
|
(define (file->url file)
|
|
|
|
|
(string-append "ftp://" server directory "/" file))
|
|
|
|
|
|
|
|
|
|
(define (file->source file)
|
|
|
|
|
(let ((url (file->url file)))
|
|
|
|
|
(upstream-source
|
|
|
|
|
(package project)
|
|
|
|
|
(version (tarball->version file))
|
|
|
|
|
(urls (list url))
|
|
|
|
|
(signature-urls (list (string-append url ".sig"))))))
|
|
|
|
|
|
|
|
|
|
(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? project file)
|
|
|
|
|
(file->source file)))
|
|
|
|
|
(_ #f))
|
|
|
|
|
files)
|
|
|
|
|
result)))))))
|
2013-01-08 22:46:12 +01:00
|
|
|
|
|
2015-12-07 23:18:06 +01:00
|
|
|
|
(define* (latest-ftp-release project
|
|
|
|
|
#:key
|
|
|
|
|
(server "ftp.gnu.org")
|
|
|
|
|
(directory (string-append "/gnu/" project))
|
2015-12-08 16:05:55 +01:00
|
|
|
|
(keep-file? (const #t))
|
2015-12-07 23:54:35 +01:00
|
|
|
|
(file->signature (cut string-append <> ".sig"))
|
2015-12-07 23:18:06 +01:00
|
|
|
|
(ftp-open ftp-open) (ftp-close ftp-close))
|
|
|
|
|
"Return an <upstream-source> for the latest release of PROJECT on SERVER
|
|
|
|
|
under DIRECTORY, or #f. Use FTP-OPEN and FTP-CLOSE to open (resp. close) FTP
|
2015-12-08 16:05:55 +01:00
|
|
|
|
connections; this can be useful to reuse connections.
|
|
|
|
|
|
2015-12-09 21:59:32 +01:00
|
|
|
|
KEEP-FILE? is a predicate to decide whether to enter a directory and to
|
|
|
|
|
consider a given file (source tarball) as a valid candidate based on its name.
|
2015-12-08 16:05:55 +01:00
|
|
|
|
|
|
|
|
|
FILE->SIGNATURE must be a procedure; it is passed a source file URL and must
|
|
|
|
|
return the corresponding signature URL, or #f it signatures are unavailable."
|
2013-04-24 23:17:31 +02:00
|
|
|
|
(define (latest a b)
|
|
|
|
|
(if (version>? a b) a b))
|
|
|
|
|
|
2014-11-11 14:59:38 +01:00
|
|
|
|
(define (latest-release a b)
|
2015-10-21 11:11:25 +02:00
|
|
|
|
(if (version>? (upstream-source-version a) (upstream-source-version b))
|
2014-11-11 14:59:38 +01:00
|
|
|
|
a b))
|
|
|
|
|
|
2014-02-28 00:01:53 +01:00
|
|
|
|
(define patch-directory-name?
|
|
|
|
|
;; Return #t for patch directory names such as 'bash-4.2-patches'.
|
|
|
|
|
(cut string-suffix? "patches" <>))
|
|
|
|
|
|
2015-12-07 23:18:06 +01:00
|
|
|
|
(define conn (ftp-open server))
|
|
|
|
|
|
|
|
|
|
(define (file->url directory file)
|
|
|
|
|
(string-append "ftp://" server directory "/" file))
|
|
|
|
|
|
|
|
|
|
(define (file->source directory file)
|
|
|
|
|
(let ((url (file->url directory file)))
|
|
|
|
|
(upstream-source
|
|
|
|
|
(package project)
|
|
|
|
|
(version (tarball->version file))
|
|
|
|
|
(urls (list url))
|
2015-12-07 23:54:35 +01:00
|
|
|
|
(signature-urls (match (file->signature url)
|
|
|
|
|
(#f #f)
|
|
|
|
|
(sig (list sig)))))))
|
2015-12-07 23:18:06 +01:00
|
|
|
|
|
|
|
|
|
(let loop ((directory directory)
|
|
|
|
|
(result #f))
|
|
|
|
|
(let* ((entries (ftp-list conn directory))
|
|
|
|
|
|
2017-11-24 18:44:08 +01:00
|
|
|
|
;; Filter out things like /gnupg/patches. Filter out "w32"
|
2015-12-07 23:18:06 +01:00
|
|
|
|
;; directories as found on ftp.gnutls.org.
|
|
|
|
|
(subdirs (filter-map (match-lambda
|
|
|
|
|
(((? patch-directory-name? dir)
|
|
|
|
|
'directory . _)
|
|
|
|
|
#f)
|
|
|
|
|
(("w32" 'directory . _)
|
|
|
|
|
#f)
|
2017-12-17 16:52:27 +01:00
|
|
|
|
(("unstable" 'directory . _)
|
|
|
|
|
;; As seen at ftp.gnupg.org/gcrypt/pinentry.
|
|
|
|
|
#f)
|
2017-11-24 18:44:08 +01:00
|
|
|
|
((directory 'directory . _)
|
|
|
|
|
directory)
|
2015-12-07 23:18:06 +01:00
|
|
|
|
(_ #f))
|
|
|
|
|
entries))
|
|
|
|
|
|
|
|
|
|
;; Whether or not SUBDIRS is empty, compute the latest releases
|
|
|
|
|
;; for the current directory. This is necessary for packages
|
|
|
|
|
;; such as 'sharutils' that have a sub-directory that contains
|
|
|
|
|
;; only an older release.
|
|
|
|
|
(releases (filter-map (match-lambda
|
|
|
|
|
((file 'file . _)
|
|
|
|
|
(and (release-file? project file)
|
2015-12-08 16:05:55 +01:00
|
|
|
|
(keep-file? file)
|
2015-12-07 23:18:06 +01:00
|
|
|
|
(file->source directory file)))
|
|
|
|
|
(_ #f))
|
|
|
|
|
entries)))
|
|
|
|
|
|
|
|
|
|
;; Assume that SUBDIRS correspond to versions, and jump into the
|
|
|
|
|
;; one with the highest version number.
|
|
|
|
|
(let* ((release (reduce latest-release #f
|
|
|
|
|
(coalesce-sources releases)))
|
|
|
|
|
(result (if (and result release)
|
|
|
|
|
(latest-release release result)
|
|
|
|
|
(or release result)))
|
|
|
|
|
(target (reduce latest #f subdirs)))
|
|
|
|
|
(if target
|
|
|
|
|
(loop (string-append directory "/" target)
|
|
|
|
|
result)
|
|
|
|
|
(begin
|
|
|
|
|
(ftp-close conn)
|
|
|
|
|
result))))))
|
|
|
|
|
|
2016-04-14 22:18:56 +02:00
|
|
|
|
(define* (latest-release package
|
|
|
|
|
#:key
|
|
|
|
|
(server "ftp.gnu.org")
|
|
|
|
|
(directory (string-append "/gnu/" package)))
|
2015-12-07 23:18:06 +01:00
|
|
|
|
"Return the <upstream-source> for the latest version of PACKAGE or #f.
|
2016-04-14 22:18:56 +02:00
|
|
|
|
PACKAGE must be the canonical name of a GNU package."
|
|
|
|
|
(latest-ftp-release package
|
|
|
|
|
#:server server
|
|
|
|
|
#:directory directory))
|
2013-01-08 22:46:12 +01:00
|
|
|
|
|
2015-12-07 23:23:46 +01:00
|
|
|
|
(define-syntax-rule (false-if-ftp-error exp)
|
|
|
|
|
"Return #f if an FTP error is raise while evaluating EXP; return the result
|
|
|
|
|
of EXP otherwise."
|
2015-10-21 11:11:25 +02:00
|
|
|
|
(catch 'ftp-error
|
|
|
|
|
(lambda ()
|
2015-12-07 23:23:46 +01:00
|
|
|
|
exp)
|
2015-10-21 11:11:25 +02:00
|
|
|
|
(lambda (key port . rest)
|
|
|
|
|
(if (ftp-connection? port)
|
|
|
|
|
(ftp-close port)
|
|
|
|
|
(close-port port))
|
|
|
|
|
#f)))
|
2014-11-11 15:30:58 +01:00
|
|
|
|
|
2015-12-07 23:23:46 +01:00
|
|
|
|
(define (latest-release* package)
|
2016-04-14 22:18:56 +02:00
|
|
|
|
"Like 'latest-release', but (1) take a <package> object, and (2) ignore FTP
|
|
|
|
|
errors that might occur when PACKAGE is not actually a GNU package, or not
|
|
|
|
|
hosted on ftp.gnu.org, or not under that name (this is the case for
|
|
|
|
|
\"emacs-auctex\", for instance.)"
|
|
|
|
|
(let-values (((server directory)
|
|
|
|
|
(ftp-server/directory package)))
|
2017-01-28 00:11:33 +01:00
|
|
|
|
(false-if-ftp-error (latest-release (package-upstream-name package)
|
|
|
|
|
#:server server
|
|
|
|
|
#:directory directory))))
|
2015-12-07 23:23:46 +01:00
|
|
|
|
|
2018-11-10 16:20:25 +01:00
|
|
|
|
|
|
|
|
|
;;;
|
|
|
|
|
;;; Latest HTTP release.
|
|
|
|
|
;;;
|
|
|
|
|
|
|
|
|
|
(define (html->sxml port)
|
|
|
|
|
"Read HTML from PORT and return the corresponding SXML tree."
|
|
|
|
|
(let ((str (get-string-all port)))
|
|
|
|
|
(catch #t
|
|
|
|
|
(lambda ()
|
|
|
|
|
;; XXX: This is the poor developer's HTML-to-XML converter. It's good
|
|
|
|
|
;; enough for directory listings at <https://kernel.org/pub> but if
|
|
|
|
|
;; needed we could resort to (htmlprag) from Guile-Lib.
|
|
|
|
|
(call-with-input-string (string-replace-substring str "<hr>" "<hr />")
|
|
|
|
|
xml->sxml))
|
|
|
|
|
(const '(html))))) ;parse error
|
|
|
|
|
|
|
|
|
|
(define (html-links sxml)
|
|
|
|
|
"Return the list of links found in SXML, the SXML tree of an HTML page."
|
|
|
|
|
(let loop ((sxml sxml)
|
|
|
|
|
(links '()))
|
|
|
|
|
(match sxml
|
|
|
|
|
(('a ('@ attributes ...) body ...)
|
|
|
|
|
(match (assq 'href attributes)
|
|
|
|
|
(#f (fold loop links body))
|
|
|
|
|
(('href url) (fold loop (cons url links) body))))
|
|
|
|
|
((tag ('@ _ ...) body ...)
|
|
|
|
|
(fold loop links body))
|
|
|
|
|
((tag body ...)
|
|
|
|
|
(fold loop links body))
|
|
|
|
|
(_
|
|
|
|
|
links))))
|
|
|
|
|
|
|
|
|
|
(define* (latest-html-release package
|
|
|
|
|
#:key
|
|
|
|
|
(base-url "https://kernel.org/pub")
|
|
|
|
|
(directory (string-append "/" package))
|
|
|
|
|
(file->signature (cut string-append <> ".sig")))
|
|
|
|
|
"Return an <upstream-source> for the latest release of PACKAGE (a string) on
|
|
|
|
|
SERVER under DIRECTORY, or #f. BASE-URL should be the URL of an HTML page,
|
|
|
|
|
typically a directory listing as found on 'https://kernel.org/pub'.
|
|
|
|
|
|
|
|
|
|
FILE->SIGNATURE must be a procedure; it is passed a source file URL and must
|
|
|
|
|
return the corresponding signature URL, or #f it signatures are unavailable."
|
|
|
|
|
(let* ((uri (string->uri (string-append base-url directory "/")))
|
|
|
|
|
(port (http-fetch/cached uri #:ttl 3600))
|
|
|
|
|
(sxml (html->sxml port)))
|
|
|
|
|
(define (url->release url)
|
|
|
|
|
(and (string=? url (basename url)) ;relative reference?
|
|
|
|
|
(release-file? package url)
|
|
|
|
|
(let-values (((name version)
|
|
|
|
|
(package-name->name+version (sans-extension url)
|
|
|
|
|
#\-)))
|
|
|
|
|
(upstream-source
|
|
|
|
|
(package name)
|
|
|
|
|
(version version)
|
|
|
|
|
(urls (list (string-append base-url directory "/" url)))
|
|
|
|
|
(signature-urls
|
|
|
|
|
(list (string-append base-url directory "/"
|
|
|
|
|
(file-sans-extension url)
|
|
|
|
|
".sign")))))))
|
|
|
|
|
|
|
|
|
|
(define candidates
|
|
|
|
|
(filter-map url->release (html-links sxml)))
|
|
|
|
|
|
|
|
|
|
(close-port port)
|
|
|
|
|
(match candidates
|
|
|
|
|
(() #f)
|
|
|
|
|
((first . _)
|
|
|
|
|
;; Select the most recent release and return it.
|
|
|
|
|
(reduce (lambda (r1 r2)
|
|
|
|
|
(if (version>? (upstream-source-version r1)
|
|
|
|
|
(upstream-source-version r2))
|
|
|
|
|
r1 r2))
|
|
|
|
|
first
|
|
|
|
|
(coalesce-sources candidates))))))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;;
|
|
|
|
|
;;; Updaters.
|
|
|
|
|
;;;
|
|
|
|
|
|
2017-09-03 23:31:09 +02:00
|
|
|
|
(define %gnu-file-list-uri
|
|
|
|
|
;; URI of the file list for ftp.gnu.org.
|
|
|
|
|
(string->uri "https://ftp.gnu.org/find.txt.gz"))
|
|
|
|
|
|
|
|
|
|
(define ftp.gnu.org-files
|
|
|
|
|
(mlambda ()
|
|
|
|
|
"Return the list of files available at ftp.gnu.org."
|
|
|
|
|
|
|
|
|
|
;; XXX: Memoize the whole procedure to work around the fact that
|
|
|
|
|
;; 'http-fetch/cached' caches the gzipped version.
|
|
|
|
|
|
|
|
|
|
(define (trim-leading-components str)
|
|
|
|
|
;; Trim the leading ".", if any, in "./gnu/foo".
|
|
|
|
|
(string-trim str (char-set #\.)))
|
|
|
|
|
|
|
|
|
|
(define (string->lines str)
|
|
|
|
|
(string-tokenize str (char-set-complement (char-set #\newline))))
|
|
|
|
|
|
2017-09-19 11:49:29 +02:00
|
|
|
|
;; Since https://ftp.gnu.org honors 'If-Modified-Since', the hard-coded
|
|
|
|
|
;; TTL can be relatively short.
|
|
|
|
|
(let ((port (http-fetch/cached %gnu-file-list-uri #:ttl (* 15 60))))
|
2017-09-03 23:31:09 +02:00
|
|
|
|
(map trim-leading-components
|
|
|
|
|
(call-with-gzip-input-port port
|
|
|
|
|
(compose string->lines get-string-all))))))
|
|
|
|
|
|
|
|
|
|
(define (latest-gnu-release package)
|
|
|
|
|
"Return the latest release of PACKAGE, a GNU package available via
|
|
|
|
|
ftp.gnu.org.
|
|
|
|
|
|
|
|
|
|
This method does not rely on FTP access at all; instead, it browses the file
|
|
|
|
|
list available from %GNU-FILE-LIST-URI over HTTP(S)."
|
|
|
|
|
(let-values (((server directory)
|
|
|
|
|
(ftp-server/directory package))
|
|
|
|
|
((name)
|
|
|
|
|
(package-upstream-name package)))
|
|
|
|
|
(let* ((files (ftp.gnu.org-files))
|
|
|
|
|
(relevant (filter (lambda (file)
|
2017-09-11 11:45:30 +02:00
|
|
|
|
(and (string-prefix? "/gnu" file)
|
|
|
|
|
(string-contains file directory)
|
2017-09-11 11:40:32 +02:00
|
|
|
|
(release-file? name (basename file))))
|
2017-09-03 23:31:09 +02:00
|
|
|
|
files)))
|
|
|
|
|
(match (sort relevant (lambda (file1 file2)
|
2017-09-11 11:40:32 +02:00
|
|
|
|
(version>? (sans-extension (basename file1))
|
|
|
|
|
(sans-extension (basename file2)))))
|
2017-09-11 11:45:30 +02:00
|
|
|
|
((and tarballs (reference _ ...))
|
|
|
|
|
(let* ((version (tarball->version reference))
|
|
|
|
|
(tarballs (filter (lambda (file)
|
|
|
|
|
(string=? (sans-extension
|
|
|
|
|
(basename file))
|
|
|
|
|
(sans-extension
|
|
|
|
|
(basename reference))))
|
|
|
|
|
tarballs)))
|
|
|
|
|
(upstream-source
|
|
|
|
|
(package name)
|
|
|
|
|
(version version)
|
|
|
|
|
(urls (map (lambda (file)
|
|
|
|
|
(string-append "mirror://gnu/"
|
|
|
|
|
(string-drop file
|
|
|
|
|
(string-length "/gnu/"))))
|
|
|
|
|
tarballs))
|
|
|
|
|
(signature-urls (map (cut string-append <> ".sig") urls)))))
|
2017-09-03 23:31:09 +02:00
|
|
|
|
(()
|
|
|
|
|
#f)))))
|
|
|
|
|
|
2013-01-08 22:46:12 +01:00
|
|
|
|
(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)))))
|
|
|
|
|
|
2017-09-25 23:58:02 +02:00
|
|
|
|
(define gnome-package?
|
|
|
|
|
(url-prefix-predicate "mirror://gnome/"))
|
|
|
|
|
|
2015-12-07 23:23:46 +01:00
|
|
|
|
(define (pure-gnu-package? package)
|
|
|
|
|
"Return true if PACKAGE is a non-Emacs and non-GNOME GNU package. This
|
|
|
|
|
excludes AucTeX, for instance, whose releases are now uploaded to
|
2017-01-27 23:24:21 +01:00
|
|
|
|
elpa.gnu.org, and all the GNOME packages; EMMS is included though, because its
|
|
|
|
|
releases are on gnu.org."
|
|
|
|
|
(and (or (not (string-prefix? "emacs-" (package-name package)))
|
|
|
|
|
(gnu-hosted? package))
|
2015-12-07 23:23:46 +01:00
|
|
|
|
(not (gnome-package? package))
|
2015-10-21 11:11:25 +02:00
|
|
|
|
(gnu-package? package)))
|
2013-04-24 23:48:36 +02:00
|
|
|
|
|
2017-01-27 23:24:21 +01:00
|
|
|
|
(define gnu-hosted?
|
|
|
|
|
(url-prefix-predicate "mirror://gnu/"))
|
|
|
|
|
|
2016-08-01 11:05:28 +02:00
|
|
|
|
(define (latest-kde-release package)
|
|
|
|
|
"Return the latest release of PACKAGE, the name of an KDE.org package."
|
|
|
|
|
(let ((uri (string->uri (origin-uri (package-source package)))))
|
|
|
|
|
(false-if-ftp-error
|
|
|
|
|
(latest-ftp-release
|
2017-01-28 00:11:33 +01:00
|
|
|
|
(package-upstream-name package)
|
2019-06-10 13:58:24 +02:00
|
|
|
|
#:server "ftp.mirrorservice.org"
|
|
|
|
|
#:directory (string-append "/sites/ftp.kde.org/pub/kde/"
|
|
|
|
|
(dirname (dirname (uri-path uri))))))))
|
2016-08-01 11:05:28 +02:00
|
|
|
|
|
2016-02-18 20:50:02 +01:00
|
|
|
|
(define (latest-xorg-release package)
|
|
|
|
|
"Return the latest release of PACKAGE, the name of an X.org package."
|
2016-04-14 21:40:20 +02:00
|
|
|
|
(let ((uri (string->uri (origin-uri (package-source package)))))
|
2016-02-18 20:50:02 +01:00
|
|
|
|
(false-if-ftp-error
|
|
|
|
|
(latest-ftp-release
|
2016-04-14 21:40:20 +02:00
|
|
|
|
(package-name package)
|
2016-02-18 20:50:02 +01:00
|
|
|
|
#:server "ftp.freedesktop.org"
|
|
|
|
|
#:directory
|
|
|
|
|
(string-append "/pub/xorg/" (dirname (uri-path uri)))))))
|
|
|
|
|
|
2016-11-30 16:29:15 +01:00
|
|
|
|
(define (latest-kernel.org-release package)
|
|
|
|
|
"Return the latest release of PACKAGE, the name of a kernel.org package."
|
2018-11-10 16:20:25 +01:00
|
|
|
|
(define %kernel.org-base
|
|
|
|
|
;; This URL and sub-directories thereof are nginx-generated directory
|
|
|
|
|
;; listings suitable for 'latest-html-release'.
|
|
|
|
|
"https://mirrors.edge.kernel.org/pub")
|
|
|
|
|
|
|
|
|
|
(define (file->signature file)
|
|
|
|
|
(string-append (file-sans-extension file) ".sign"))
|
|
|
|
|
|
|
|
|
|
(let* ((uri (string->uri (origin-uri (package-source package))))
|
|
|
|
|
(package (package-upstream-name package))
|
|
|
|
|
(directory (dirname (uri-path uri))))
|
|
|
|
|
(latest-html-release package
|
|
|
|
|
#:base-url %kernel.org-base
|
|
|
|
|
#:directory directory
|
|
|
|
|
#:file->signature file->signature)))
|
2016-11-30 16:29:15 +01:00
|
|
|
|
|
2015-10-21 11:11:25 +02:00
|
|
|
|
(define %gnu-updater
|
2017-09-03 23:31:09 +02:00
|
|
|
|
;; This is for everything at ftp.gnu.org.
|
2015-10-26 19:24:53 +01:00
|
|
|
|
(upstream-updater
|
|
|
|
|
(name 'gnu)
|
|
|
|
|
(description "Updater for GNU packages")
|
2017-09-03 23:31:09 +02:00
|
|
|
|
(pred gnu-hosted?)
|
|
|
|
|
(latest latest-gnu-release)))
|
|
|
|
|
|
|
|
|
|
(define %gnu-ftp-updater
|
|
|
|
|
;; This is for GNU packages taken from alternate locations, such as
|
|
|
|
|
;; alpha.gnu.org, ftp.gnupg.org, etc. It is obsolescent.
|
|
|
|
|
(upstream-updater
|
|
|
|
|
(name 'gnu-ftp)
|
|
|
|
|
(description "Updater for GNU packages only available via FTP")
|
|
|
|
|
(pred (lambda (package)
|
|
|
|
|
(and (not (gnu-hosted? package))
|
|
|
|
|
(pure-gnu-package? package))))
|
2015-10-26 19:24:53 +01:00
|
|
|
|
(latest latest-release*)))
|
2013-04-24 23:48:36 +02:00
|
|
|
|
|
2016-08-01 11:05:28 +02:00
|
|
|
|
(define %kde-updater
|
|
|
|
|
(upstream-updater
|
|
|
|
|
(name 'kde)
|
|
|
|
|
(description "Updater for KDE packages")
|
2016-11-30 15:56:55 +01:00
|
|
|
|
(pred (url-prefix-predicate "mirror://kde/"))
|
2016-08-01 11:05:28 +02:00
|
|
|
|
(latest latest-kde-release)))
|
|
|
|
|
|
2016-02-18 20:50:02 +01:00
|
|
|
|
(define %xorg-updater
|
|
|
|
|
(upstream-updater
|
|
|
|
|
(name 'xorg)
|
|
|
|
|
(description "Updater for X.org packages")
|
2016-11-30 15:56:55 +01:00
|
|
|
|
(pred (url-prefix-predicate "mirror://xorg/"))
|
2016-02-18 20:50:02 +01:00
|
|
|
|
(latest latest-xorg-release)))
|
|
|
|
|
|
2016-11-30 16:29:15 +01:00
|
|
|
|
(define %kernel.org-updater
|
|
|
|
|
(upstream-updater
|
|
|
|
|
(name 'kernel.org)
|
|
|
|
|
(description "Updater for packages hosted on kernel.org")
|
|
|
|
|
(pred (url-prefix-predicate "mirror://kernel.org/"))
|
|
|
|
|
(latest latest-kernel.org-release)))
|
|
|
|
|
|
2013-01-08 22:46:12 +01:00
|
|
|
|
;;; gnu-maintenance.scm ends here
|