2015-06-16 10:50:06 +02:00
|
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
|
|
|
|
;;; Copyright © 2015 Federico Beffa <beffa@fbengineering.ch>
|
2018-03-18 22:26:34 +01:00
|
|
|
|
;;; Copyright © 2015, 2016, 2017, 2018 Ludovic Courtès <ludo@gnu.org>
|
2018-06-08 12:49:29 +02:00
|
|
|
|
;;; Copyright © 2018 Oleg Pykhalov <go.wigust@gmail.com>
|
2015-06-16 10:50:06 +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 import elpa)
|
|
|
|
|
#:use-module (ice-9 match)
|
|
|
|
|
#:use-module (ice-9 rdelim)
|
2015-10-21 12:12:59 +02:00
|
|
|
|
#:use-module (web uri)
|
2015-06-16 10:50:06 +02:00
|
|
|
|
#:use-module (srfi srfi-1)
|
|
|
|
|
#:use-module (srfi srfi-9)
|
|
|
|
|
#:use-module (srfi srfi-9 gnu)
|
|
|
|
|
#:use-module (srfi srfi-11)
|
|
|
|
|
#:use-module (srfi srfi-26)
|
|
|
|
|
#:use-module ((guix download) #:select (download-to-store))
|
|
|
|
|
#:use-module (guix import utils)
|
2015-10-21 12:12:59 +02:00
|
|
|
|
#:use-module (guix http-client)
|
2015-06-16 10:50:06 +02:00
|
|
|
|
#:use-module (guix store)
|
|
|
|
|
#:use-module (guix ui)
|
Switch to Guile-Gcrypt.
This removes (guix hash) and (guix pk-crypto), which now live as part of
Guile-Gcrypt (version 0.1.0.)
* guix/gcrypt.scm, guix/hash.scm, guix/pk-crypto.scm,
tests/hash.scm, tests/pk-crypto.scm: Remove.
* configure.ac: Test for Guile-Gcrypt. Remove LIBGCRYPT and
LIBGCRYPT_LIBDIR assignments.
* m4/guix.m4 (GUIX_ASSERT_LIBGCRYPT_USABLE): Remove.
* README: Add Guile-Gcrypt to the dependencies; move libgcrypt as
"required unless --disable-daemon".
* doc/guix.texi (Requirements): Likewise.
* gnu/packages/bash.scm, guix/derivations.scm, guix/docker.scm,
guix/git.scm, guix/http-client.scm, guix/import/cpan.scm,
guix/import/cran.scm, guix/import/crate.scm, guix/import/elpa.scm,
guix/import/gnu.scm, guix/import/hackage.scm,
guix/import/texlive.scm, guix/import/utils.scm, guix/nar.scm,
guix/pki.scm, guix/scripts/archive.scm,
guix/scripts/authenticate.scm, guix/scripts/download.scm,
guix/scripts/hash.scm, guix/scripts/pack.scm,
guix/scripts/publish.scm, guix/scripts/refresh.scm,
guix/scripts/substitute.scm, guix/store.scm,
guix/store/deduplication.scm, guix/tests.scm, tests/base32.scm,
tests/builders.scm, tests/challenge.scm, tests/cpan.scm,
tests/crate.scm, tests/derivations.scm, tests/gem.scm,
tests/nar.scm, tests/opam.scm, tests/pki.scm,
tests/publish.scm, tests/pypi.scm, tests/store-deduplication.scm,
tests/store.scm, tests/substitute.scm: Adjust imports.
* gnu/system/vm.scm: Likewise.
(guile-sqlite3&co): Rename to...
(gcrypt-sqlite3&co): ... this. Add GUILE-GCRYPT.
(expression->derivation-in-linux-vm)[config]: Remove.
(iso9660-image)[config]: Remove.
(qemu-image)[config]: Remove.
(system-docker-image)[config]: Remove.
* guix/scripts/pack.scm: Adjust imports.
(guile-sqlite3&co): Rename to...
(gcrypt-sqlite3&co): ... this. Add GUILE-GCRYPT.
(self-contained-tarball)[build]: Call 'make-config.scm' without
#:libgcrypt argument.
(squashfs-image)[libgcrypt]: Remove.
[build]: Call 'make-config.scm' without #:libgcrypt.
(docker-image)[config, json]: Remove.
[build]: Add GUILE-GCRYPT to the extensions Remove (guix config) from
the imported modules.
* guix/self.scm (specification->package): Remove "libgcrypt", add
"guile-gcrypt".
(compiled-guix): Remove #:libgcrypt.
[guile-gcrypt]: New variable.
[dependencies]: Add it.
[*core-modules*]: Remove #:libgcrypt from 'make-config.scm' call.
Add #:extensions.
[*config*]: Remove #:libgcrypt from 'make-config.scm' call.
(%dependency-variables): Remove %libgcrypt.
(make-config.scm): Remove #:libgcrypt.
* build-aux/build-self.scm (guile-gcrypt): New variable.
(make-config.scm): Remove #:libgcrypt.
(build-program)[fake-gcrypt-hash]: New variable.
Add (gcrypt hash) to the imported modules. Adjust load path
assignments.
* gnu/packages/package-management.scm (guix)[propagated-inputs]: Add
GUILE-GCRYPT.
[arguments]: In 'wrap-program' phase, add GUILE-GCRYPT to the search
path.
2018-08-31 17:07:07 +02:00
|
|
|
|
#:use-module (gcrypt hash)
|
2015-06-16 10:50:06 +02:00
|
|
|
|
#:use-module (guix base32)
|
2015-10-21 12:25:06 +02:00
|
|
|
|
#:use-module (guix upstream)
|
|
|
|
|
#:use-module (guix packages)
|
utils: Move combinators to (guix combinators).
* guix/utils.scm (compile-time-value, memoize, fold2)
(fold-tree, fold-tree-leaves): Move to...
* guix/combinators: ... here. New file.
* tests/utils.scm ("fold2, 1 list", "fold2, 2 lists")
(fold-tree tests): Move to...
* tests/combinators.scm: ... here. New file.
* Makefile.am (MODULES, SCM_TESTS): Add them.
* gnu/packages.scm, gnu/packages/bootstrap.scm,
gnu/services/herd.scm, guix/build-system/gnu.scm,
guix/build-system/python.scm, guix/derivations.scm,
guix/gnu-maintenance.scm, guix/import/elpa.scm,
guix/scripts/archive.scm, guix/scripts/build.scm,
guix/scripts/graph.scm, guix/scripts/lint.scm,
guix/scripts/size.scm, guix/scripts/substitute.scm,
guix/serialization.scm, guix/store.scm, guix/ui.scm: Adjust imports
accordingly.
2016-05-04 17:35:47 +02:00
|
|
|
|
#:use-module ((guix utils) #:select (call-with-temporary-output-file))
|
2015-10-21 12:25:06 +02:00
|
|
|
|
#:export (elpa->guix-package
|
2018-06-08 12:49:29 +02:00
|
|
|
|
%elpa-updater
|
|
|
|
|
elpa-recursive-import))
|
2015-06-16 10:50:06 +02:00
|
|
|
|
|
|
|
|
|
(define (elpa-dependencies->names deps)
|
|
|
|
|
"Convert DEPS, a list of symbol/version pairs à la ELPA, to a list of
|
|
|
|
|
package names as strings"
|
|
|
|
|
(match deps
|
|
|
|
|
(((names _ ...) ...)
|
|
|
|
|
(map symbol->string names))))
|
|
|
|
|
|
|
|
|
|
(define emacs-standard-library?
|
|
|
|
|
(let ((libs '("emacs" "cl-lib")))
|
|
|
|
|
(lambda (lib)
|
|
|
|
|
"Return true if LIB is part of Emacs itself. The check is not
|
|
|
|
|
exhaustive and only attempts to recognize a subset of packages which in the
|
|
|
|
|
past were distributed separately from Emacs."
|
|
|
|
|
(member lib libs))))
|
|
|
|
|
|
|
|
|
|
(define (filter-dependencies names)
|
|
|
|
|
"Remove the package names included with Emacs from the list of
|
|
|
|
|
NAMES (strings)."
|
2017-03-28 17:12:20 +02:00
|
|
|
|
(remove emacs-standard-library? names))
|
2015-06-16 10:50:06 +02:00
|
|
|
|
|
|
|
|
|
(define (elpa-name->package-name name)
|
|
|
|
|
"Given the NAME of an Emacs package, return the corresponding Guix name."
|
|
|
|
|
(let ((package-name-prefix "emacs-"))
|
|
|
|
|
(if (string-prefix? package-name-prefix name)
|
|
|
|
|
(string-downcase name)
|
|
|
|
|
(string-append package-name-prefix (string-downcase name)))))
|
|
|
|
|
|
|
|
|
|
(define* (elpa-url #:optional (repo 'gnu))
|
2018-03-16 14:55:10 +01:00
|
|
|
|
"Retrieve the URL of REPO."
|
2015-06-16 10:50:06 +02:00
|
|
|
|
(let ((elpa-archives
|
2018-03-16 14:53:09 +01:00
|
|
|
|
'((gnu . "https://elpa.gnu.org/packages")
|
|
|
|
|
(melpa-stable . "https://stable.melpa.org/packages")
|
|
|
|
|
(melpa . "https://melpa.org/packages"))))
|
2015-06-16 10:50:06 +02:00
|
|
|
|
(assq-ref elpa-archives repo)))
|
|
|
|
|
|
|
|
|
|
(define* (elpa-fetch-archive #:optional (repo 'gnu))
|
2018-03-16 14:55:10 +01:00
|
|
|
|
"Retrieve the archive with the list of packages available from REPO."
|
2015-06-16 10:50:06 +02:00
|
|
|
|
(let ((url (and=> (elpa-url repo)
|
|
|
|
|
(cut string-append <> "/archive-contents"))))
|
|
|
|
|
(if url
|
2015-10-21 12:12:59 +02:00
|
|
|
|
;; Use a relatively small TTL for the archive itself.
|
2017-10-27 23:43:19 +02:00
|
|
|
|
(let* ((port (http-fetch/cached (string->uri url)
|
|
|
|
|
#:ttl (* 6 3600)))
|
|
|
|
|
(data (read port)))
|
|
|
|
|
(close-port port)
|
|
|
|
|
data)
|
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
|
|
|
|
(leave (G_ "~A: currently not supported~%") repo))))
|
2015-06-16 10:50:06 +02:00
|
|
|
|
|
2015-07-22 15:26:12 +02:00
|
|
|
|
(define* (call-with-downloaded-file url proc #:optional (error-thunk #f))
|
2015-06-16 10:50:06 +02:00
|
|
|
|
"Fetch URL, store the content in a temporary file and call PROC with that
|
2015-07-22 15:26:12 +02:00
|
|
|
|
file. Returns the value returned by PROC. On error call ERROR-THUNK and
|
|
|
|
|
return its value or leave if it's false."
|
2016-12-14 02:31:12 +01:00
|
|
|
|
(catch #t
|
|
|
|
|
(lambda ()
|
|
|
|
|
(proc (http-fetch/cached (string->uri url))))
|
|
|
|
|
(lambda (key . args)
|
|
|
|
|
(if error-thunk
|
|
|
|
|
(error-thunk)
|
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
|
|
|
|
(leave (G_ "~A: download failed~%") url)))))
|
2015-06-16 10:50:06 +02:00
|
|
|
|
|
|
|
|
|
(define (is-elpa-package? name elpa-pkg-spec)
|
|
|
|
|
"Return true if the string NAME corresponds to the name of the package
|
|
|
|
|
defined by ELPA-PKG-SPEC, a package specification as in an archive
|
|
|
|
|
'archive-contents' file."
|
|
|
|
|
(eq? (first elpa-pkg-spec) (string->symbol name)))
|
|
|
|
|
|
|
|
|
|
(define* (elpa-package-info name #:optional (repo 'gnu))
|
|
|
|
|
"Extract the information about the package NAME from the package archieve of
|
|
|
|
|
REPO."
|
|
|
|
|
(let* ((archive (elpa-fetch-archive repo))
|
|
|
|
|
(pkgs (match archive ((version pkg-spec ...) pkg-spec)))
|
|
|
|
|
(info (filter (cut is-elpa-package? name <>) pkgs)))
|
|
|
|
|
(if (pair? info) (first info) #f)))
|
|
|
|
|
|
|
|
|
|
;; Object to store information about an ELPA package.
|
|
|
|
|
(define-record-type <elpa-package>
|
|
|
|
|
(make-elpa-package name version inputs synopsis kind home-page description
|
|
|
|
|
source-url)
|
|
|
|
|
elpa-package?
|
|
|
|
|
(name elpa-package-name)
|
|
|
|
|
(version elpa-package-version)
|
|
|
|
|
(inputs elpa-package-inputs)
|
|
|
|
|
(synopsis elpa-package-synopsis)
|
|
|
|
|
(kind elpa-package-kind)
|
|
|
|
|
(home-page elpa-package-home-page)
|
|
|
|
|
(description elpa-package-description)
|
|
|
|
|
(source-url elpa-package-source-url))
|
|
|
|
|
|
|
|
|
|
(set-record-type-printer! <elpa-package>
|
|
|
|
|
(lambda (package port)
|
2016-01-24 17:42:39 +01:00
|
|
|
|
(format port "#<elpa-package ~a@~a>"
|
2015-06-16 10:50:06 +02:00
|
|
|
|
(elpa-package-name package)
|
|
|
|
|
(elpa-package-version package))))
|
|
|
|
|
|
|
|
|
|
(define (elpa-version->string elpa-version)
|
|
|
|
|
"Convert the package version as used in Emacs package files into a string."
|
|
|
|
|
(if (pair? elpa-version)
|
|
|
|
|
(let-values (((ms rest) (match elpa-version
|
|
|
|
|
((ms . rest)
|
|
|
|
|
(values ms rest)))))
|
|
|
|
|
(fold (lambda (n s) (string-append s "." (number->string n)))
|
|
|
|
|
(number->string ms) rest))
|
|
|
|
|
#f))
|
|
|
|
|
|
|
|
|
|
(define (package-home-page alist)
|
|
|
|
|
"Extract the package home-page from ALIST."
|
|
|
|
|
(or (assq-ref alist ':url) "unspecified"))
|
|
|
|
|
|
|
|
|
|
(define (ensure-list alist)
|
|
|
|
|
"If ALIST is the symbol 'nil return the empty list. Otherwise, return ALIST."
|
|
|
|
|
(if (eq? alist 'nil)
|
|
|
|
|
'()
|
|
|
|
|
alist))
|
|
|
|
|
|
|
|
|
|
(define (package-source-url kind name version repo)
|
|
|
|
|
"Return the source URL of the package described the the strings NAME and
|
|
|
|
|
VERSION at REPO. KIND is either the symbol 'single or 'tar."
|
|
|
|
|
(case kind
|
|
|
|
|
((single) (full-url repo name ".el" version))
|
|
|
|
|
((tar) (full-url repo name ".tar" version))
|
|
|
|
|
(else
|
|
|
|
|
#f)))
|
|
|
|
|
|
|
|
|
|
(define* (full-url repo name suffix #:optional (version #f))
|
|
|
|
|
"Return the full URL of the package NAME at REPO and the SUFFIX. Maybe
|
|
|
|
|
include VERSION."
|
|
|
|
|
(if version
|
|
|
|
|
(string-append (elpa-url repo) "/" name "-" version suffix)
|
|
|
|
|
(string-append (elpa-url repo) "/" name suffix)))
|
|
|
|
|
|
|
|
|
|
(define (fetch-package-description kind name repo)
|
|
|
|
|
"Fetch the description of package NAME of type KIND from REPO."
|
2015-07-22 15:26:12 +02:00
|
|
|
|
(let ((url (full-url repo name "-readme.txt"))
|
|
|
|
|
(error-thunk (lambda () "No description available.")))
|
|
|
|
|
(call-with-downloaded-file url read-string error-thunk)))
|
2015-06-16 10:50:06 +02:00
|
|
|
|
|
|
|
|
|
(define* (fetch-elpa-package name #:optional (repo 'gnu))
|
|
|
|
|
"Fetch package NAME from REPO."
|
|
|
|
|
(let ((pkg (elpa-package-info name repo)))
|
|
|
|
|
(match pkg
|
|
|
|
|
((name version reqs synopsis kind . rest)
|
|
|
|
|
(let* ((name (symbol->string name))
|
|
|
|
|
(ver (elpa-version->string version))
|
|
|
|
|
(url (package-source-url kind name ver repo)))
|
|
|
|
|
(make-elpa-package name ver
|
|
|
|
|
(ensure-list reqs) synopsis kind
|
2018-06-30 09:51:45 +02:00
|
|
|
|
(package-home-page (match rest
|
|
|
|
|
(() #f)
|
|
|
|
|
((one) one)))
|
2015-06-16 10:50:06 +02:00
|
|
|
|
(fetch-package-description kind name repo)
|
|
|
|
|
url)))
|
|
|
|
|
(_ #f))))
|
|
|
|
|
|
2018-03-18 22:26:34 +01:00
|
|
|
|
(define* (elpa-package->sexp pkg #:optional license)
|
2015-06-16 10:50:06 +02:00
|
|
|
|
"Return the `package' S-expression for the Emacs package PKG, a record of
|
|
|
|
|
type '<elpa-package>'."
|
|
|
|
|
|
|
|
|
|
(define name (elpa-package-name pkg))
|
|
|
|
|
|
|
|
|
|
(define version (elpa-package-version pkg))
|
|
|
|
|
|
|
|
|
|
(define source-url (elpa-package-source-url pkg))
|
|
|
|
|
|
2018-06-08 12:49:29 +02:00
|
|
|
|
(define dependencies-names
|
|
|
|
|
(filter-dependencies (elpa-dependencies->names
|
|
|
|
|
(elpa-package-inputs pkg))))
|
|
|
|
|
|
2015-06-16 10:50:06 +02:00
|
|
|
|
(define dependencies
|
2018-06-08 12:49:29 +02:00
|
|
|
|
(map (lambda (n)
|
|
|
|
|
(let ((new-n (elpa-name->package-name n)))
|
|
|
|
|
(list new-n (list 'unquote (string->symbol new-n)))))
|
|
|
|
|
dependencies-names))
|
2015-06-16 10:50:06 +02:00
|
|
|
|
|
|
|
|
|
(define (maybe-inputs input-type inputs)
|
|
|
|
|
(match inputs
|
|
|
|
|
(()
|
|
|
|
|
'())
|
|
|
|
|
((inputs ...)
|
|
|
|
|
(list (list input-type
|
|
|
|
|
(list 'quasiquote inputs))))))
|
|
|
|
|
|
|
|
|
|
(let ((tarball (with-store store
|
|
|
|
|
(download-to-store store source-url))))
|
2018-06-08 12:49:29 +02:00
|
|
|
|
(values
|
|
|
|
|
`(package
|
|
|
|
|
(name ,(elpa-name->package-name name))
|
|
|
|
|
(version ,version)
|
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append ,@(factorize-uri source-url version)))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
,(if tarball
|
|
|
|
|
(bytevector->nix-base32-string (file-sha256 tarball))
|
|
|
|
|
"failed to download package")))))
|
|
|
|
|
(build-system emacs-build-system)
|
|
|
|
|
,@(maybe-inputs 'propagated-inputs dependencies)
|
|
|
|
|
(home-page ,(elpa-package-home-page pkg))
|
|
|
|
|
(synopsis ,(elpa-package-synopsis pkg))
|
|
|
|
|
(description ,(elpa-package-description pkg))
|
|
|
|
|
(license ,license))
|
|
|
|
|
dependencies-names)))
|
2015-06-16 10:50:06 +02:00
|
|
|
|
|
|
|
|
|
(define* (elpa->guix-package name #:optional (repo 'gnu))
|
|
|
|
|
"Fetch the package NAME from REPO and produce a Guix package S-expression."
|
2018-03-18 22:26:34 +01:00
|
|
|
|
(match (fetch-elpa-package name repo)
|
|
|
|
|
(#f #f)
|
|
|
|
|
(package
|
|
|
|
|
;; ELPA is known to contain only GPLv3+ code. Other repos may contain
|
|
|
|
|
;; code under other license but there's no license metadata.
|
|
|
|
|
(let ((license (and (eq? 'gnu repo) 'license:gpl3+)))
|
|
|
|
|
(elpa-package->sexp package license)))))
|
2015-06-16 10:50:06 +02:00
|
|
|
|
|
2015-10-21 12:25:06 +02:00
|
|
|
|
|
|
|
|
|
;;;
|
|
|
|
|
;;; Updates.
|
|
|
|
|
;;;
|
|
|
|
|
|
|
|
|
|
(define (latest-release package)
|
2016-04-14 21:40:20 +02:00
|
|
|
|
"Return an <upstream-release> for the latest release of PACKAGE."
|
2015-10-21 12:25:06 +02:00
|
|
|
|
(define name
|
2016-04-14 21:40:20 +02:00
|
|
|
|
(if (string-prefix? "emacs-" (package-name package))
|
|
|
|
|
(string-drop (package-name package) 6)
|
|
|
|
|
(package-name package)))
|
2015-10-21 12:25:06 +02:00
|
|
|
|
|
|
|
|
|
(let* ((repo 'gnu)
|
|
|
|
|
(info (elpa-package-info name repo))
|
|
|
|
|
(version (match info
|
|
|
|
|
((name raw-version . _)
|
|
|
|
|
(elpa-version->string raw-version))))
|
|
|
|
|
(url (match info
|
|
|
|
|
((_ raw-version reqs synopsis kind . rest)
|
|
|
|
|
(package-source-url kind name version repo)))))
|
|
|
|
|
(upstream-source
|
2016-04-14 21:40:20 +02:00
|
|
|
|
(package (package-name package))
|
2015-10-21 12:25:06 +02:00
|
|
|
|
(version version)
|
|
|
|
|
(urls (list url))
|
|
|
|
|
(signature-urls (list (string-append url ".sig"))))))
|
|
|
|
|
|
|
|
|
|
(define (package-from-gnu.org? package)
|
|
|
|
|
"Return true if PACKAGE is from elpa.gnu.org."
|
|
|
|
|
(match (and=> (package-source package) origin-uri)
|
|
|
|
|
((? string? uri)
|
|
|
|
|
(let ((uri (string->uri uri)))
|
|
|
|
|
(and uri (string=? (uri-host uri) "elpa.gnu.org"))))
|
|
|
|
|
(_ #f)))
|
|
|
|
|
|
|
|
|
|
(define %elpa-updater
|
|
|
|
|
;; The ELPA updater. We restrict it to packages hosted on elpa.gnu.org
|
|
|
|
|
;; because for other repositories, we typically grab the source elsewhere.
|
2015-10-26 19:24:53 +01:00
|
|
|
|
(upstream-updater
|
|
|
|
|
(name 'elpa)
|
|
|
|
|
(description "Updater for ELPA packages")
|
|
|
|
|
(pred package-from-gnu.org?)
|
|
|
|
|
(latest latest-release)))
|
2015-10-21 12:25:06 +02:00
|
|
|
|
|
2018-06-08 12:49:29 +02:00
|
|
|
|
(define elpa-guix-name (cut guix-name "emacs-" <>))
|
|
|
|
|
|
|
|
|
|
(define* (elpa-recursive-import package-name #:optional (repo 'gnu))
|
|
|
|
|
(recursive-import package-name repo
|
|
|
|
|
#:repo->guix-package elpa->guix-package
|
|
|
|
|
#:guix-name elpa-guix-name))
|
|
|
|
|
|
2015-06-16 10:50:06 +02:00
|
|
|
|
;;; elpa.scm ends here
|