2015-10-21 11:11:25 +02:00
|
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2019-03-08 23:13:56 +01:00
|
|
|
|
;;; Copyright © 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019 Ludovic Courtès <ludo@gnu.org>
|
2015-10-26 19:24:53 +01:00
|
|
|
|
;;; Copyright © 2015 Alex Kost <alezost@gmail.com>
|
2019-01-11 09:26:44 +01:00
|
|
|
|
;;; Copyright © 2019 Ricardo Wurmus <rekado@elephly.net>
|
2015-10-21 11:11:25 +02:00
|
|
|
|
;;;
|
|
|
|
|
;;; This file is part of GNU Guix.
|
|
|
|
|
;;;
|
|
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
|
|
|
|
;;; 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.
|
|
|
|
|
;;;
|
|
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
|
|
|
|
;;; 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
|
|
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
|
|
(define-module (guix upstream)
|
|
|
|
|
#:use-module (guix records)
|
|
|
|
|
#:use-module (guix utils)
|
2017-07-06 08:13:31 +02:00
|
|
|
|
#:use-module (guix discovery)
|
2015-10-21 11:11:25 +02:00
|
|
|
|
#:use-module ((guix download)
|
2019-03-08 23:13:56 +01:00
|
|
|
|
#:select (download-to-store url-fetch))
|
2015-10-21 11:11:25 +02:00
|
|
|
|
#:use-module (guix gnupg)
|
|
|
|
|
#:use-module (guix packages)
|
|
|
|
|
#:use-module (guix ui)
|
|
|
|
|
#:use-module (guix base32)
|
2016-11-30 17:30:12 +01:00
|
|
|
|
#:use-module (guix gexp)
|
|
|
|
|
#:use-module (guix store)
|
|
|
|
|
#:use-module ((guix derivations)
|
|
|
|
|
#:select (built-derivations derivation->output-path))
|
|
|
|
|
#:use-module (guix monads)
|
2015-10-21 11:11:25 +02:00
|
|
|
|
#:use-module (srfi srfi-1)
|
|
|
|
|
#:use-module (srfi srfi-9)
|
|
|
|
|
#:use-module (srfi srfi-11)
|
|
|
|
|
#:use-module (srfi srfi-26)
|
2019-03-08 23:13:56 +01:00
|
|
|
|
#:use-module (srfi srfi-34)
|
|
|
|
|
#:use-module (srfi srfi-35)
|
2019-03-27 14:56:23 +01:00
|
|
|
|
#:use-module (rnrs bytevectors)
|
2015-10-21 11:11:25 +02:00
|
|
|
|
#:use-module (ice-9 match)
|
|
|
|
|
#:use-module (ice-9 regex)
|
|
|
|
|
#:export (upstream-source
|
|
|
|
|
upstream-source?
|
|
|
|
|
upstream-source-package
|
|
|
|
|
upstream-source-version
|
|
|
|
|
upstream-source-urls
|
|
|
|
|
upstream-source-signature-urls
|
2015-11-03 00:59:28 +01:00
|
|
|
|
upstream-source-archive-types
|
2019-01-11 09:26:44 +01:00
|
|
|
|
upstream-source-input-changes
|
2015-10-21 11:11:25 +02:00
|
|
|
|
|
2017-09-25 17:34:26 +02:00
|
|
|
|
url-prefix-predicate
|
2015-10-21 11:11:25 +02:00
|
|
|
|
coalesce-sources
|
|
|
|
|
|
|
|
|
|
upstream-updater
|
|
|
|
|
upstream-updater?
|
|
|
|
|
upstream-updater-name
|
2015-10-26 19:24:53 +01:00
|
|
|
|
upstream-updater-description
|
2015-10-21 11:11:25 +02:00
|
|
|
|
upstream-updater-predicate
|
|
|
|
|
upstream-updater-latest
|
|
|
|
|
|
2019-01-11 09:26:44 +01:00
|
|
|
|
upstream-input-change?
|
|
|
|
|
upstream-input-change-name
|
|
|
|
|
upstream-input-change-type
|
|
|
|
|
upstream-input-change-action
|
|
|
|
|
changed-inputs
|
|
|
|
|
|
2017-07-06 08:13:31 +02:00
|
|
|
|
%updaters
|
2016-11-29 15:07:07 +01:00
|
|
|
|
lookup-updater
|
|
|
|
|
|
2015-10-21 11:11:25 +02:00
|
|
|
|
download-tarball
|
2016-11-29 15:07:07 +01:00
|
|
|
|
package-latest-release
|
|
|
|
|
package-latest-release*
|
2015-10-21 11:11:25 +02:00
|
|
|
|
package-update
|
|
|
|
|
update-package-source))
|
|
|
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
;;;
|
|
|
|
|
;;; This module provides tools to represent and manipulate a upstream source
|
|
|
|
|
;;; code, and to auto-update package recipes.
|
|
|
|
|
;;;
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
|
|
|
|
;; Representation of upstream's source. There can be several URLs--e.g.,
|
|
|
|
|
;; tar.gz, tar.gz, etc. There can be correspond signature URLs, one per
|
|
|
|
|
;; source URL.
|
|
|
|
|
(define-record-type* <upstream-source>
|
|
|
|
|
upstream-source make-upstream-source
|
|
|
|
|
upstream-source?
|
|
|
|
|
(package upstream-source-package) ;string
|
|
|
|
|
(version upstream-source-version) ;string
|
|
|
|
|
(urls upstream-source-urls) ;list of strings
|
|
|
|
|
(signature-urls upstream-source-signature-urls ;#f | list of strings
|
2019-01-11 09:26:44 +01:00
|
|
|
|
(default #f))
|
|
|
|
|
(input-changes upstream-source-input-changes
|
|
|
|
|
(default '()) (thunked)))
|
|
|
|
|
|
|
|
|
|
;; Representation of an upstream input change.
|
|
|
|
|
(define-record-type* <upstream-input-change>
|
|
|
|
|
upstream-input-change make-upstream-input-change
|
|
|
|
|
upstream-input-change?
|
|
|
|
|
(name upstream-input-change-name) ;string
|
|
|
|
|
(type upstream-input-change-type) ;symbol: regular | native | propagated
|
|
|
|
|
(action upstream-input-change-action)) ;symbol: add | remove
|
|
|
|
|
|
|
|
|
|
(define (changed-inputs package package-sexp)
|
|
|
|
|
"Return a list of input changes for PACKAGE based on the newly imported
|
|
|
|
|
S-expression PACKAGE-SEXP."
|
|
|
|
|
(match package-sexp
|
|
|
|
|
((and expr ('package fields ...))
|
|
|
|
|
(let* ((input->name (match-lambda ((name pkg . out) name)))
|
|
|
|
|
(new-regular
|
|
|
|
|
(match expr
|
|
|
|
|
((path *** ('inputs
|
|
|
|
|
('quasiquote ((label ('unquote sym)) ...)))) label)
|
|
|
|
|
(_ '())))
|
|
|
|
|
(new-native
|
|
|
|
|
(match expr
|
|
|
|
|
((path *** ('native-inputs
|
|
|
|
|
('quasiquote ((label ('unquote sym)) ...)))) label)
|
|
|
|
|
(_ '())))
|
|
|
|
|
(new-propagated
|
|
|
|
|
(match expr
|
|
|
|
|
((path *** ('propagated-inputs
|
|
|
|
|
('quasiquote ((label ('unquote sym)) ...)))) label)
|
|
|
|
|
(_ '())))
|
|
|
|
|
(current-regular
|
|
|
|
|
(map input->name (package-inputs package)))
|
|
|
|
|
(current-native
|
|
|
|
|
(map input->name (package-native-inputs package)))
|
|
|
|
|
(current-propagated
|
|
|
|
|
(map input->name (package-propagated-inputs package))))
|
|
|
|
|
(append-map
|
|
|
|
|
(match-lambda
|
|
|
|
|
((action type names)
|
|
|
|
|
(map (lambda (name)
|
|
|
|
|
(upstream-input-change
|
|
|
|
|
(name name)
|
|
|
|
|
(type type)
|
|
|
|
|
(action action)))
|
|
|
|
|
names)))
|
|
|
|
|
`((add regular
|
|
|
|
|
,(lset-difference equal?
|
|
|
|
|
new-regular current-regular))
|
|
|
|
|
(remove regular
|
|
|
|
|
,(lset-difference equal?
|
|
|
|
|
current-regular new-regular))
|
|
|
|
|
(add native
|
|
|
|
|
,(lset-difference equal?
|
|
|
|
|
new-native current-native))
|
|
|
|
|
(remove native
|
|
|
|
|
,(lset-difference equal?
|
|
|
|
|
current-native new-native))
|
|
|
|
|
(add propagated
|
|
|
|
|
,(lset-difference equal?
|
|
|
|
|
new-propagated current-propagated))
|
|
|
|
|
(remove propagated
|
|
|
|
|
,(lset-difference equal?
|
|
|
|
|
current-propagated new-propagated))))))
|
|
|
|
|
(_ '())))
|
2015-10-21 11:11:25 +02:00
|
|
|
|
|
2017-09-25 17:34:26 +02:00
|
|
|
|
(define (url-prefix-predicate prefix)
|
|
|
|
|
"Return a predicate that returns true when passed a package where one of its
|
|
|
|
|
source URLs starts with PREFIX."
|
|
|
|
|
(lambda (package)
|
|
|
|
|
(define matching-uri?
|
|
|
|
|
(match-lambda
|
|
|
|
|
((? string? uri)
|
|
|
|
|
(string-prefix? prefix uri))
|
|
|
|
|
(_
|
|
|
|
|
#f)))
|
|
|
|
|
|
|
|
|
|
(match (package-source package)
|
|
|
|
|
((? origin? origin)
|
|
|
|
|
(match (origin-uri origin)
|
|
|
|
|
((? matching-uri?) #t)
|
|
|
|
|
(_ #f)))
|
|
|
|
|
(_ #f))))
|
|
|
|
|
|
2015-10-21 11:11:25 +02:00
|
|
|
|
(define (upstream-source-archive-types release)
|
|
|
|
|
"Return the available types of archives for RELEASE---a list of strings such
|
|
|
|
|
as \"gz\" or \"xz\"."
|
|
|
|
|
(map file-extension (upstream-source-urls release)))
|
|
|
|
|
|
|
|
|
|
(define (coalesce-sources sources)
|
|
|
|
|
"Coalesce the elements of SOURCES, a list of <upstream-source>, that
|
|
|
|
|
correspond to the same version."
|
|
|
|
|
(define (same-version? r1 r2)
|
|
|
|
|
(string=? (upstream-source-version r1) (upstream-source-version r2)))
|
|
|
|
|
|
|
|
|
|
(define (release>? r1 r2)
|
|
|
|
|
(version>? (upstream-source-version r1) (upstream-source-version r2)))
|
|
|
|
|
|
|
|
|
|
(fold (lambda (release result)
|
|
|
|
|
(match result
|
|
|
|
|
((head . tail)
|
|
|
|
|
(if (same-version? release head)
|
|
|
|
|
(cons (upstream-source
|
|
|
|
|
(inherit release)
|
|
|
|
|
(urls (append (upstream-source-urls release)
|
|
|
|
|
(upstream-source-urls head)))
|
|
|
|
|
(signature-urls
|
2015-12-07 23:54:35 +01:00
|
|
|
|
(let ((one (upstream-source-signature-urls release))
|
2016-03-09 15:08:00 +01:00
|
|
|
|
(two (upstream-source-signature-urls head)))
|
2015-12-07 23:54:35 +01:00
|
|
|
|
(and one two (append one two)))))
|
2015-10-21 11:11:25 +02:00
|
|
|
|
tail)
|
|
|
|
|
(cons release result)))
|
|
|
|
|
(()
|
|
|
|
|
(list release))))
|
|
|
|
|
'()
|
|
|
|
|
(sort sources release>?)))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;;
|
|
|
|
|
;;; Auto-update.
|
|
|
|
|
;;;
|
|
|
|
|
|
2015-10-26 19:24:53 +01:00
|
|
|
|
(define-record-type* <upstream-updater>
|
|
|
|
|
upstream-updater make-upstream-updater
|
2015-10-21 11:11:25 +02:00
|
|
|
|
upstream-updater?
|
2015-10-26 19:24:53 +01:00
|
|
|
|
(name upstream-updater-name)
|
|
|
|
|
(description upstream-updater-description)
|
|
|
|
|
(pred upstream-updater-predicate)
|
|
|
|
|
(latest upstream-updater-latest))
|
2015-10-21 11:11:25 +02:00
|
|
|
|
|
2017-07-06 08:13:31 +02:00
|
|
|
|
(define (importer-modules)
|
|
|
|
|
"Return the list of importer modules."
|
|
|
|
|
(cons (resolve-interface '(guix gnu-maintenance))
|
|
|
|
|
(all-modules (map (lambda (entry)
|
|
|
|
|
`(,entry . "guix/import"))
|
2018-03-26 23:42:59 +02:00
|
|
|
|
%load-path)
|
|
|
|
|
#:warn warn-about-load-error)))
|
2017-07-06 08:13:31 +02:00
|
|
|
|
|
|
|
|
|
(define %updaters
|
|
|
|
|
;; The list of publically-known updaters.
|
|
|
|
|
(delay (fold-module-public-variables (lambda (obj result)
|
|
|
|
|
(if (upstream-updater? obj)
|
|
|
|
|
(cons obj result)
|
|
|
|
|
result))
|
|
|
|
|
'()
|
|
|
|
|
(importer-modules))))
|
|
|
|
|
|
2015-10-21 11:11:25 +02:00
|
|
|
|
(define (lookup-updater package updaters)
|
|
|
|
|
"Return an updater among UPDATERS that matches PACKAGE, or #f if none of
|
|
|
|
|
them matches."
|
|
|
|
|
(any (match-lambda
|
2017-03-14 11:19:21 +01:00
|
|
|
|
(($ <upstream-updater> name description pred latest)
|
2015-10-21 11:11:25 +02:00
|
|
|
|
(and (pred package) latest)))
|
|
|
|
|
updaters))
|
|
|
|
|
|
2016-11-29 15:07:07 +01:00
|
|
|
|
(define (package-latest-release package updaters)
|
2016-04-14 21:40:20 +02:00
|
|
|
|
"Return an upstream source to update PACKAGE, a <package> object, or #f if
|
2016-11-29 15:07:07 +01:00
|
|
|
|
none of UPDATERS matches PACKAGE. It is the caller's responsibility to ensure
|
|
|
|
|
that the returned source is newer than the current one."
|
2015-10-21 11:11:25 +02:00
|
|
|
|
(match (lookup-updater package updaters)
|
|
|
|
|
((? procedure? latest-release)
|
2016-11-29 15:07:07 +01:00
|
|
|
|
(latest-release package))
|
|
|
|
|
(_ #f)))
|
|
|
|
|
|
|
|
|
|
(define (package-latest-release* package updaters)
|
|
|
|
|
"Like 'package-latest-release', but ensure that the return source is newer
|
|
|
|
|
than that of PACKAGE."
|
|
|
|
|
(match (package-latest-release package updaters)
|
|
|
|
|
((and source ($ <upstream-source> name version))
|
|
|
|
|
(and (version>? version (package-version package))
|
|
|
|
|
source))
|
|
|
|
|
(_
|
|
|
|
|
#f)))
|
2015-10-21 11:11:25 +02:00
|
|
|
|
|
2016-11-30 17:30:12 +01:00
|
|
|
|
(define (uncompressed-tarball name tarball)
|
|
|
|
|
"Return a derivation that decompresses TARBALL."
|
|
|
|
|
(define (ref package)
|
|
|
|
|
(module-ref (resolve-interface '(gnu packages compression))
|
|
|
|
|
package))
|
|
|
|
|
|
|
|
|
|
(define compressor
|
|
|
|
|
(cond ((or (string-suffix? ".gz" tarball)
|
|
|
|
|
(string-suffix? ".tgz" tarball))
|
|
|
|
|
(file-append (ref 'gzip) "/bin/gzip"))
|
|
|
|
|
((string-suffix? ".bz2" tarball)
|
|
|
|
|
(file-append (ref 'bzip2) "/bin/bzip2"))
|
|
|
|
|
((string-suffix? ".xz" tarball)
|
|
|
|
|
(file-append (ref 'xz) "/bin/xz"))
|
|
|
|
|
((string-suffix? ".lz" tarball)
|
|
|
|
|
(file-append (ref 'lzip) "/bin/lzip"))
|
|
|
|
|
(else
|
|
|
|
|
(error "unknown archive type" tarball))))
|
|
|
|
|
|
|
|
|
|
(gexp->derivation (file-sans-extension name)
|
|
|
|
|
#~(begin
|
|
|
|
|
(copy-file #+tarball #+name)
|
|
|
|
|
(and (zero? (system* #+compressor "-d" #+name))
|
|
|
|
|
(copy-file #+(file-sans-extension name)
|
|
|
|
|
#$output)))))
|
|
|
|
|
|
2015-10-21 11:11:25 +02:00
|
|
|
|
(define* (download-tarball store url signature-url
|
|
|
|
|
#:key (key-download 'interactive))
|
|
|
|
|
"Download the tarball at URL to the store; check its OpenPGP signature at
|
|
|
|
|
SIGNATURE-URL, unless SIGNATURE-URL is false. On success, return the tarball
|
2016-05-17 13:41:07 +02:00
|
|
|
|
file name; return #f on failure (network failure or authentication failure).
|
|
|
|
|
KEY-DOWNLOAD specifies a download policy for missing OpenPGP keys; allowed
|
|
|
|
|
values: 'interactive' (default), 'always', and 'never'."
|
2015-10-21 11:11:25 +02:00
|
|
|
|
(let ((tarball (download-to-store store url)))
|
|
|
|
|
(if (not signature-url)
|
|
|
|
|
tarball
|
2016-11-30 17:30:12 +01:00
|
|
|
|
(let* ((sig (download-to-store store signature-url))
|
|
|
|
|
|
|
|
|
|
;; Sometimes we get a signature over the uncompressed tarball.
|
|
|
|
|
;; In that case, decompress the tarball in the store so that we
|
|
|
|
|
;; can check the signature.
|
|
|
|
|
(data (if (string-prefix? (basename url)
|
|
|
|
|
(basename signature-url))
|
|
|
|
|
tarball
|
|
|
|
|
(run-with-store store
|
|
|
|
|
(mlet %store-monad ((drv (uncompressed-tarball
|
|
|
|
|
(basename url) tarball)))
|
|
|
|
|
(mbegin %store-monad
|
|
|
|
|
(built-derivations (list drv))
|
|
|
|
|
(return (derivation->output-path drv)))))))
|
|
|
|
|
|
|
|
|
|
(ret (gnupg-verify* sig data #:key-download key-download)))
|
2015-10-21 11:11:25 +02:00
|
|
|
|
(if ret
|
|
|
|
|
tarball
|
|
|
|
|
(begin
|
ui: Rename '_' to 'G_'.
This avoids collisions with '_' when the latter is used as a 'match'
pattern for instance. See
<https://lists.gnu.org/archive/html/guix-devel/2017-04/msg00464.html>.
* guix/ui.scm: Rename '_' to 'G_'.
* po/guix/Makevars (XGETTEXT_OPTIONS): Adjust accordingly.
* build-aux/compile-all.scm (warnings): Remove 'format'.
* gnu/packages.scm,
gnu/services.scm,
gnu/services/shepherd.scm,
gnu/system.scm,
gnu/system/shadow.scm,
guix/gnupg.scm,
guix/http-client.scm,
guix/import/cpan.scm,
guix/import/elpa.scm,
guix/import/pypi.scm,
guix/nar.scm,
guix/scripts.scm,
guix/scripts/archive.scm,
guix/scripts/authenticate.scm,
guix/scripts/build.scm,
guix/scripts/challenge.scm,
guix/scripts/container.scm,
guix/scripts/container/exec.scm,
guix/scripts/copy.scm,
guix/scripts/download.scm,
guix/scripts/edit.scm,
guix/scripts/environment.scm,
guix/scripts/gc.scm,
guix/scripts/graph.scm,
guix/scripts/hash.scm,
guix/scripts/import.scm,
guix/scripts/import/cpan.scm,
guix/scripts/import/cran.scm,
guix/scripts/import/crate.scm,
guix/scripts/import/elpa.scm,
guix/scripts/import/gem.scm,
guix/scripts/import/gnu.scm,
guix/scripts/import/hackage.scm,
guix/scripts/import/nix.scm,
guix/scripts/import/pypi.scm,
guix/scripts/import/stackage.scm,
guix/scripts/lint.scm,
guix/scripts/offload.scm,
guix/scripts/pack.scm,
guix/scripts/package.scm,
guix/scripts/perform-download.scm,
guix/scripts/publish.scm,
guix/scripts/pull.scm,
guix/scripts/refresh.scm,
guix/scripts/size.scm,
guix/scripts/substitute.scm,
guix/scripts/system.scm,
guix/ssh.scm,
guix/upstream.scm: Use 'G_' instead of '_'. Most of this change was
obtained by running: "sed -i -e's/(_ "/(G_ "/g' `find -name \*.scm`".
2017-05-03 15:57:02 +02:00
|
|
|
|
(warning (G_ "signature verification failed for `~a'~%")
|
2015-10-21 11:11:25 +02:00
|
|
|
|
url)
|
ui: Rename '_' to 'G_'.
This avoids collisions with '_' when the latter is used as a 'match'
pattern for instance. See
<https://lists.gnu.org/archive/html/guix-devel/2017-04/msg00464.html>.
* guix/ui.scm: Rename '_' to 'G_'.
* po/guix/Makevars (XGETTEXT_OPTIONS): Adjust accordingly.
* build-aux/compile-all.scm (warnings): Remove 'format'.
* gnu/packages.scm,
gnu/services.scm,
gnu/services/shepherd.scm,
gnu/system.scm,
gnu/system/shadow.scm,
guix/gnupg.scm,
guix/http-client.scm,
guix/import/cpan.scm,
guix/import/elpa.scm,
guix/import/pypi.scm,
guix/nar.scm,
guix/scripts.scm,
guix/scripts/archive.scm,
guix/scripts/authenticate.scm,
guix/scripts/build.scm,
guix/scripts/challenge.scm,
guix/scripts/container.scm,
guix/scripts/container/exec.scm,
guix/scripts/copy.scm,
guix/scripts/download.scm,
guix/scripts/edit.scm,
guix/scripts/environment.scm,
guix/scripts/gc.scm,
guix/scripts/graph.scm,
guix/scripts/hash.scm,
guix/scripts/import.scm,
guix/scripts/import/cpan.scm,
guix/scripts/import/cran.scm,
guix/scripts/import/crate.scm,
guix/scripts/import/elpa.scm,
guix/scripts/import/gem.scm,
guix/scripts/import/gnu.scm,
guix/scripts/import/hackage.scm,
guix/scripts/import/nix.scm,
guix/scripts/import/pypi.scm,
guix/scripts/import/stackage.scm,
guix/scripts/lint.scm,
guix/scripts/offload.scm,
guix/scripts/pack.scm,
guix/scripts/package.scm,
guix/scripts/perform-download.scm,
guix/scripts/publish.scm,
guix/scripts/pull.scm,
guix/scripts/refresh.scm,
guix/scripts/size.scm,
guix/scripts/substitute.scm,
guix/scripts/system.scm,
guix/ssh.scm,
guix/upstream.scm: Use 'G_' instead of '_'. Most of this change was
obtained by running: "sed -i -e's/(_ "/(G_ "/g' `find -name \*.scm`".
2017-05-03 15:57:02 +02:00
|
|
|
|
(warning (G_ "(could be because the public key is not in your keyring)~%"))
|
2015-10-21 11:11:25 +02:00
|
|
|
|
#f))))))
|
|
|
|
|
|
|
|
|
|
(define (find2 pred lst1 lst2)
|
|
|
|
|
"Like 'find', but operate on items from both LST1 and LST2. Return two
|
|
|
|
|
values: the item from LST1 and the item from LST2 that match PRED."
|
|
|
|
|
(let loop ((lst1 lst1) (lst2 lst2))
|
|
|
|
|
(match lst1
|
|
|
|
|
((head1 . tail1)
|
|
|
|
|
(match lst2
|
|
|
|
|
((head2 . tail2)
|
|
|
|
|
(if (pred head1 head2)
|
|
|
|
|
(values head1 head2)
|
|
|
|
|
(loop tail1 tail2)))))
|
|
|
|
|
(()
|
|
|
|
|
(values #f #f)))))
|
|
|
|
|
|
2019-03-08 23:13:56 +01:00
|
|
|
|
(define* (package-update/url-fetch store package source
|
|
|
|
|
#:key key-download)
|
2019-03-27 14:42:07 +01:00
|
|
|
|
"Return the version, tarball, and SOURCE, to update PACKAGE to
|
2019-03-08 23:13:56 +01:00
|
|
|
|
SOURCE, an <upstream-source>."
|
|
|
|
|
(match source
|
2019-03-27 14:42:07 +01:00
|
|
|
|
(($ <upstream-source> _ version urls signature-urls)
|
2019-03-08 23:13:56 +01:00
|
|
|
|
(let*-values (((archive-type)
|
2015-10-21 11:11:25 +02:00
|
|
|
|
(match (and=> (package-source package) origin-uri)
|
|
|
|
|
((? string? uri)
|
2017-12-19 17:57:15 +01:00
|
|
|
|
(let ((type (file-extension (basename uri))))
|
|
|
|
|
;; Sometimes we have URLs such as
|
|
|
|
|
;; "https://github.com/…/tarball/v0.1", in which case
|
|
|
|
|
;; we must not consider "1" as the extension.
|
|
|
|
|
(and (or (string-contains type "z")
|
|
|
|
|
(string=? type "tar"))
|
|
|
|
|
type)))
|
2015-10-21 11:11:25 +02:00
|
|
|
|
(_
|
|
|
|
|
"gz")))
|
|
|
|
|
((url signature-url)
|
|
|
|
|
(find2 (lambda (url sig-url)
|
2016-09-28 16:17:07 +02:00
|
|
|
|
;; Some URIs lack a file extension, like
|
|
|
|
|
;; 'https://crates.io/???/0.1/download'. In that
|
|
|
|
|
;; case, pick the first URL.
|
|
|
|
|
(or (not archive-type)
|
|
|
|
|
(string-suffix? archive-type url)))
|
2015-10-21 11:11:25 +02:00
|
|
|
|
urls
|
|
|
|
|
(or signature-urls (circular-list #f)))))
|
|
|
|
|
(let ((tarball (download-tarball store url signature-url
|
|
|
|
|
#:key-download key-download)))
|
2019-03-27 14:42:07 +01:00
|
|
|
|
(values version tarball source))))))
|
2019-03-08 23:13:56 +01:00
|
|
|
|
|
|
|
|
|
(define %method-updates
|
|
|
|
|
;; Mapping of origin methods to source update procedures.
|
|
|
|
|
`((,url-fetch . ,package-update/url-fetch)))
|
|
|
|
|
|
|
|
|
|
(define* (package-update store package updaters
|
|
|
|
|
#:key (key-download 'interactive))
|
|
|
|
|
"Return the new version, the file name of the new version tarball, and input
|
|
|
|
|
changes for PACKAGE; return #f (three values) when PACKAGE is up-to-date.
|
|
|
|
|
KEY-DOWNLOAD specifies a download policy for missing OpenPGP keys; allowed
|
|
|
|
|
values: 'always', 'never', and 'interactive' (default)."
|
|
|
|
|
(match (package-latest-release* package updaters)
|
|
|
|
|
((? upstream-source? source)
|
|
|
|
|
(let ((method (match (package-source package)
|
|
|
|
|
((? origin? origin)
|
|
|
|
|
(origin-method origin))
|
|
|
|
|
(_
|
|
|
|
|
#f))))
|
|
|
|
|
(match (assq method %method-updates)
|
|
|
|
|
(#f
|
|
|
|
|
(raise (condition (&message
|
|
|
|
|
(message (format #f (G_ "cannot download for \
|
|
|
|
|
this method: ~s")
|
|
|
|
|
method)))
|
|
|
|
|
(&error-location
|
|
|
|
|
(location (package-location package))))))
|
|
|
|
|
((_ . update)
|
|
|
|
|
(update store package source
|
|
|
|
|
#:key-download key-download)))))
|
2015-10-21 11:11:25 +02:00
|
|
|
|
(#f
|
2019-01-11 09:26:44 +01:00
|
|
|
|
(values #f #f #f))))
|
2015-10-21 11:11:25 +02:00
|
|
|
|
|
2019-03-27 14:56:23 +01:00
|
|
|
|
(define* (update-package-source package source hash)
|
|
|
|
|
"Modify the source file that defines PACKAGE to refer to SOURCE, an
|
|
|
|
|
<upstream-source> whose tarball has SHA256 HASH (a bytevector). Return the
|
|
|
|
|
new version string if an update was made, and #f otherwise."
|
|
|
|
|
(define (update-expression expr replacements)
|
|
|
|
|
;; Apply REPLACEMENTS to package expression EXPR, a string. REPLACEMENTS
|
|
|
|
|
;; must be a list of replacement pairs, either bytevectors or strings.
|
|
|
|
|
(fold (lambda (replacement str)
|
|
|
|
|
(match replacement
|
|
|
|
|
(((? bytevector? old-bv) . (? bytevector? new-bv))
|
|
|
|
|
(string-replace-substring
|
|
|
|
|
str
|
|
|
|
|
(bytevector->nix-base32-string old-bv)
|
|
|
|
|
(bytevector->nix-base32-string new-bv)))
|
|
|
|
|
((old . new)
|
|
|
|
|
(string-replace-substring str old new))))
|
|
|
|
|
expr
|
|
|
|
|
replacements))
|
2016-04-06 12:32:20 +02:00
|
|
|
|
|
|
|
|
|
(let ((name (package-name package))
|
2019-03-27 14:56:23 +01:00
|
|
|
|
(version (upstream-source-version source))
|
2016-04-06 12:32:20 +02:00
|
|
|
|
(version-loc (package-field-location package 'version)))
|
|
|
|
|
(if version-loc
|
|
|
|
|
(let* ((loc (package-location package))
|
|
|
|
|
(old-version (package-version package))
|
|
|
|
|
(old-hash (origin-sha256 (package-source package)))
|
2019-03-27 14:56:23 +01:00
|
|
|
|
(old-url (match (origin-uri (package-source package))
|
|
|
|
|
((? string? url) url)
|
|
|
|
|
(_ #f)))
|
|
|
|
|
(new-url (match (upstream-source-urls source)
|
|
|
|
|
((first _ ...) first)))
|
2016-04-06 12:32:20 +02:00
|
|
|
|
(file (and=> (location-file loc)
|
|
|
|
|
(cut search-path %load-path <>))))
|
2015-10-21 11:11:25 +02:00
|
|
|
|
(if file
|
2019-03-27 14:56:23 +01:00
|
|
|
|
;; Be sure to use absolute filename. Replace the URL directory
|
|
|
|
|
;; when OLD-URL is available; this is useful notably for
|
|
|
|
|
;; mirror://cpan/ URLs where the directory may change as a
|
|
|
|
|
;; function of the person who uploads the package. Note that
|
|
|
|
|
;; package definitions usually concatenate fragments of the URL,
|
|
|
|
|
;; which is why we only attempt to replace a subset of the URL.
|
|
|
|
|
(let ((properties (assq-set! (location->source-properties loc)
|
|
|
|
|
'filename file))
|
|
|
|
|
(replacements `((,old-version . ,version)
|
|
|
|
|
(,old-hash . ,hash)
|
|
|
|
|
,@(if (and old-url new-url)
|
|
|
|
|
`((,(dirname old-url) .
|
|
|
|
|
,(dirname new-url)))
|
|
|
|
|
'()))))
|
|
|
|
|
(and (edit-expression properties
|
|
|
|
|
(cut update-expression <> replacements))
|
|
|
|
|
version))
|
2015-10-21 11:11:25 +02:00
|
|
|
|
(begin
|
ui: Rename '_' to 'G_'.
This avoids collisions with '_' when the latter is used as a 'match'
pattern for instance. See
<https://lists.gnu.org/archive/html/guix-devel/2017-04/msg00464.html>.
* guix/ui.scm: Rename '_' to 'G_'.
* po/guix/Makevars (XGETTEXT_OPTIONS): Adjust accordingly.
* build-aux/compile-all.scm (warnings): Remove 'format'.
* gnu/packages.scm,
gnu/services.scm,
gnu/services/shepherd.scm,
gnu/system.scm,
gnu/system/shadow.scm,
guix/gnupg.scm,
guix/http-client.scm,
guix/import/cpan.scm,
guix/import/elpa.scm,
guix/import/pypi.scm,
guix/nar.scm,
guix/scripts.scm,
guix/scripts/archive.scm,
guix/scripts/authenticate.scm,
guix/scripts/build.scm,
guix/scripts/challenge.scm,
guix/scripts/container.scm,
guix/scripts/container/exec.scm,
guix/scripts/copy.scm,
guix/scripts/download.scm,
guix/scripts/edit.scm,
guix/scripts/environment.scm,
guix/scripts/gc.scm,
guix/scripts/graph.scm,
guix/scripts/hash.scm,
guix/scripts/import.scm,
guix/scripts/import/cpan.scm,
guix/scripts/import/cran.scm,
guix/scripts/import/crate.scm,
guix/scripts/import/elpa.scm,
guix/scripts/import/gem.scm,
guix/scripts/import/gnu.scm,
guix/scripts/import/hackage.scm,
guix/scripts/import/nix.scm,
guix/scripts/import/pypi.scm,
guix/scripts/import/stackage.scm,
guix/scripts/lint.scm,
guix/scripts/offload.scm,
guix/scripts/pack.scm,
guix/scripts/package.scm,
guix/scripts/perform-download.scm,
guix/scripts/publish.scm,
guix/scripts/pull.scm,
guix/scripts/refresh.scm,
guix/scripts/size.scm,
guix/scripts/substitute.scm,
guix/scripts/system.scm,
guix/ssh.scm,
guix/upstream.scm: Use 'G_' instead of '_'. Most of this change was
obtained by running: "sed -i -e's/(_ "/(G_ "/g' `find -name \*.scm`".
2017-05-03 15:57:02 +02:00
|
|
|
|
(warning (G_ "~a: could not locate source file")
|
2015-10-21 11:11:25 +02:00
|
|
|
|
(location-file loc))
|
|
|
|
|
#f)))
|
|
|
|
|
(begin
|
|
|
|
|
(format (current-error-port)
|
ui: Rename '_' to 'G_'.
This avoids collisions with '_' when the latter is used as a 'match'
pattern for instance. See
<https://lists.gnu.org/archive/html/guix-devel/2017-04/msg00464.html>.
* guix/ui.scm: Rename '_' to 'G_'.
* po/guix/Makevars (XGETTEXT_OPTIONS): Adjust accordingly.
* build-aux/compile-all.scm (warnings): Remove 'format'.
* gnu/packages.scm,
gnu/services.scm,
gnu/services/shepherd.scm,
gnu/system.scm,
gnu/system/shadow.scm,
guix/gnupg.scm,
guix/http-client.scm,
guix/import/cpan.scm,
guix/import/elpa.scm,
guix/import/pypi.scm,
guix/nar.scm,
guix/scripts.scm,
guix/scripts/archive.scm,
guix/scripts/authenticate.scm,
guix/scripts/build.scm,
guix/scripts/challenge.scm,
guix/scripts/container.scm,
guix/scripts/container/exec.scm,
guix/scripts/copy.scm,
guix/scripts/download.scm,
guix/scripts/edit.scm,
guix/scripts/environment.scm,
guix/scripts/gc.scm,
guix/scripts/graph.scm,
guix/scripts/hash.scm,
guix/scripts/import.scm,
guix/scripts/import/cpan.scm,
guix/scripts/import/cran.scm,
guix/scripts/import/crate.scm,
guix/scripts/import/elpa.scm,
guix/scripts/import/gem.scm,
guix/scripts/import/gnu.scm,
guix/scripts/import/hackage.scm,
guix/scripts/import/nix.scm,
guix/scripts/import/pypi.scm,
guix/scripts/import/stackage.scm,
guix/scripts/lint.scm,
guix/scripts/offload.scm,
guix/scripts/pack.scm,
guix/scripts/package.scm,
guix/scripts/perform-download.scm,
guix/scripts/publish.scm,
guix/scripts/pull.scm,
guix/scripts/refresh.scm,
guix/scripts/size.scm,
guix/scripts/substitute.scm,
guix/scripts/system.scm,
guix/ssh.scm,
guix/upstream.scm: Use 'G_' instead of '_'. Most of this change was
obtained by running: "sed -i -e's/(_ "/(G_ "/g' `find -name \*.scm`".
2017-05-03 15:57:02 +02:00
|
|
|
|
(G_ "~a: ~a: no `version' field in source; skipping~%")
|
2015-10-21 11:11:25 +02:00
|
|
|
|
(location->string (package-location package))
|
|
|
|
|
name)))))
|
|
|
|
|
|
|
|
|
|
;;; upstream.scm ends here
|