2015-01-08 21:51:13 +01:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
|
|
|
;;; Copyright © 2014 Eric Bavier <bavier@member.fsf.org>
|
2015-02-20 22:20:38 +01:00
|
|
|
;;; Copyright © 2015 Mark H Weaver <mhw@netris.org>
|
2016-07-02 20:06:02 +02:00
|
|
|
;;; Copyright © 2016 Alex Sassmannshausen <alex@pompo.co>
|
2018-08-11 15:53:20 +02:00
|
|
|
;;; Copyright © 2017, 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
2015-01-08 21:51:13 +01: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 cpan)
|
|
|
|
#:use-module (ice-9 match)
|
|
|
|
#:use-module (ice-9 regex)
|
2015-02-12 15:39:09 +01:00
|
|
|
#:use-module ((ice-9 popen) #:select (open-pipe* close-pipe))
|
|
|
|
#:use-module ((ice-9 rdelim) #:select (read-line))
|
2015-01-08 21:51:13 +01:00
|
|
|
#:use-module (srfi srfi-1)
|
2016-12-13 04:59:27 +01:00
|
|
|
#:use-module (srfi srfi-26)
|
2015-01-08 21:51:13 +01:00
|
|
|
#:use-module (json)
|
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-01-08 21:51:13 +01:00
|
|
|
#:use-module (guix store)
|
2016-04-16 06:52:19 +02:00
|
|
|
#:use-module (guix utils)
|
2015-01-08 21:51:13 +01:00
|
|
|
#:use-module (guix base32)
|
2016-12-13 04:59:27 +01:00
|
|
|
#:use-module (guix ui)
|
|
|
|
#:use-module ((guix download) #:select (download-to-store url-fetch))
|
|
|
|
#:use-module ((guix import utils) #:select (factorize-uri
|
|
|
|
flatten assoc-ref*))
|
2015-01-08 21:51:13 +01:00
|
|
|
#:use-module (guix import json)
|
2015-02-12 15:39:09 +01:00
|
|
|
#:use-module (guix packages)
|
2016-12-13 04:59:27 +01:00
|
|
|
#:use-module (guix upstream)
|
2015-02-12 15:39:09 +01:00
|
|
|
#:use-module (guix derivations)
|
2016-12-13 04:59:27 +01:00
|
|
|
#:export (cpan->guix-package
|
|
|
|
%cpan-updater))
|
2015-01-08 21:51:13 +01:00
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
;;;
|
|
|
|
;;; Generate a package declaration template for the latest version of a CPAN
|
|
|
|
;;; module, using meta-data from metacpan.org.
|
|
|
|
;;;
|
|
|
|
;;; Code:
|
|
|
|
|
|
|
|
(define string->license
|
|
|
|
(match-lambda
|
|
|
|
;; List of valid values from https://metacpan.org/pod/CPAN::Meta::Spec.
|
|
|
|
;; Some licenses are excluded based on their absense from (guix licenses).
|
|
|
|
("agpl_3" 'agpl3)
|
|
|
|
;; apache_1_1
|
|
|
|
("apache_2_0" 'asl2.0)
|
2015-04-19 16:37:35 +02:00
|
|
|
;; artistic_1
|
|
|
|
("artistic_2" 'artistic2.0)
|
2015-01-08 21:51:13 +01:00
|
|
|
("bsd" 'bsd-3)
|
|
|
|
("freebsd" 'bsd-2)
|
|
|
|
;; gfdl_1_2
|
|
|
|
("gfdl_1_3" 'fdl1.3+)
|
|
|
|
("gpl_1" 'gpl1)
|
|
|
|
("gpl_2" 'gpl2)
|
|
|
|
("gpl_3" 'gpl3)
|
|
|
|
("lgpl_2_1" 'lgpl2.1)
|
|
|
|
("lgpl_3_0" 'lgpl3)
|
|
|
|
("mit" 'x11)
|
|
|
|
;; mozilla_1_0
|
|
|
|
("mozilla_1_1" 'mpl1.1)
|
|
|
|
("openssl" 'openssl)
|
2017-09-10 20:36:08 +02:00
|
|
|
("perl_5" 'perl-license) ;GPL1+ and Artistic 1
|
2015-01-08 21:51:13 +01:00
|
|
|
("qpl_1_0" 'qpl)
|
|
|
|
;; ssleay
|
|
|
|
;; sun
|
|
|
|
("zlib" 'zlib)
|
|
|
|
((x) (string->license x))
|
|
|
|
((lst ...) `(list ,@(map string->license lst)))
|
|
|
|
(_ #f)))
|
|
|
|
|
|
|
|
(define (module->name module)
|
|
|
|
"Transform a 'module' name into a 'release' name"
|
|
|
|
(regexp-substitute/global #f "::" module 'pre "-" 'post))
|
|
|
|
|
2015-02-12 15:39:09 +01:00
|
|
|
(define (module->dist-name module)
|
|
|
|
"Return the base distribution module for a given module. E.g. the 'ok'
|
|
|
|
module is distributed with 'Test::Simple', so (module->dist-name \"ok\") would
|
|
|
|
return \"Test-Simple\""
|
2018-06-10 20:35:39 +02:00
|
|
|
(assoc-ref (json-fetch-alist (string-append
|
|
|
|
"https://fastapi.metacpan.org/v1/module/"
|
|
|
|
module
|
|
|
|
"?fields=distribution"))
|
2015-02-12 15:39:09 +01:00
|
|
|
"distribution"))
|
|
|
|
|
2016-12-13 04:59:27 +01:00
|
|
|
(define (package->upstream-name package)
|
|
|
|
"Return the CPAN name of PACKAGE."
|
|
|
|
(let* ((properties (package-properties package))
|
|
|
|
(upstream-name (and=> properties
|
|
|
|
(cut assoc-ref <> 'upstream-name))))
|
|
|
|
(or upstream-name
|
|
|
|
(match (package-source package)
|
|
|
|
((? origin? origin)
|
|
|
|
(match (origin-uri origin)
|
|
|
|
((or (? string? url) (url _ ...))
|
|
|
|
(match (string-match (string-append "([^/]*)-v?[0-9\\.]+") url)
|
|
|
|
(#f #f)
|
|
|
|
(m (match:substring m 1))))
|
|
|
|
(_ #f)))
|
|
|
|
(_ #f)))))
|
|
|
|
|
|
|
|
(define (cpan-fetch name)
|
2015-01-08 21:51:13 +01:00
|
|
|
"Return an alist representation of the CPAN metadata for the perl module MODULE,
|
|
|
|
or #f on failure. MODULE should be e.g. \"Test::Script\""
|
|
|
|
;; This API always returns the latest release of the module.
|
2018-06-10 20:35:39 +02:00
|
|
|
(json-fetch-alist (string-append "https://fastapi.metacpan.org/v1/release/" name)))
|
2015-01-08 21:51:13 +01:00
|
|
|
|
|
|
|
(define (cpan-home name)
|
2018-08-11 15:53:20 +02:00
|
|
|
(string-append "https://metacpan.org/release/" name))
|
2015-01-08 21:51:13 +01:00
|
|
|
|
2016-12-13 04:59:27 +01:00
|
|
|
(define (cpan-source-url meta)
|
|
|
|
"Return the download URL for a module's source tarball."
|
|
|
|
(regexp-substitute/global #f "http[s]?://cpan.metacpan.org"
|
|
|
|
(assoc-ref meta "download_url")
|
2016-07-02 20:06:02 +02:00
|
|
|
'pre "mirror://cpan" 'post))
|
|
|
|
|
2016-12-13 04:59:27 +01:00
|
|
|
(define (cpan-version meta)
|
|
|
|
"Return the version number from META."
|
|
|
|
(match (assoc-ref meta "version")
|
|
|
|
((? number? version)
|
|
|
|
;; version is sometimes not quoted in the module json, so it gets
|
|
|
|
;; imported into Guile as a number, so convert it to a string.
|
|
|
|
(number->string version))
|
2018-03-01 14:54:55 +01:00
|
|
|
(version
|
|
|
|
;; Sometimes we get a "v" prefix. Strip it.
|
|
|
|
(if (string-prefix? "v" version)
|
|
|
|
(string-drop version 1)
|
|
|
|
version))))
|
2016-07-02 20:06:02 +02:00
|
|
|
|
2017-10-10 11:13:28 +02:00
|
|
|
(define (perl-package)
|
|
|
|
"Return the 'perl' package. This is a lazy reference so that we don't
|
|
|
|
depend on (gnu packages perl)."
|
|
|
|
(module-ref (resolve-interface '(gnu packages perl)) 'perl))
|
|
|
|
|
2015-02-12 15:39:09 +01:00
|
|
|
(define %corelist
|
2015-02-20 22:20:38 +01:00
|
|
|
(delay
|
|
|
|
(let* ((perl (with-store store
|
|
|
|
(derivation->output-path
|
2017-10-10 11:13:28 +02:00
|
|
|
(package-derivation store (perl-package)))))
|
2015-02-20 22:20:38 +01:00
|
|
|
(core (string-append perl "/bin/corelist")))
|
|
|
|
(and (access? core X_OK)
|
|
|
|
core))))
|
2015-02-12 15:39:09 +01:00
|
|
|
|
2016-12-13 04:57:09 +01:00
|
|
|
(define core-module?
|
2017-10-10 11:13:28 +02:00
|
|
|
(let ((rx (make-regexp
|
2016-12-13 04:57:09 +01:00
|
|
|
(string-append "released with perl v?([0-9\\.]*)"
|
|
|
|
"(.*and removed from v?([0-9\\.]*))?"))))
|
|
|
|
(lambda (name)
|
2017-10-10 11:13:28 +02:00
|
|
|
(define perl-version
|
|
|
|
(package-version (perl-package)))
|
|
|
|
|
2016-12-13 04:57:09 +01:00
|
|
|
(define (version-between? lower version upper)
|
|
|
|
(and (version>=? version lower)
|
|
|
|
(or (not upper)
|
|
|
|
(version>? upper version))))
|
|
|
|
(and (force %corelist)
|
|
|
|
(parameterize ((current-error-port (%make-void-port "w")))
|
|
|
|
(let* ((corelist (open-pipe* OPEN_READ (force %corelist) name)))
|
|
|
|
(let loop ()
|
|
|
|
(let ((line (read-line corelist)))
|
|
|
|
(if (eof-object? line)
|
|
|
|
(begin (close-pipe corelist) #f)
|
|
|
|
(or (and=> (regexp-exec rx line)
|
|
|
|
(lambda (m)
|
|
|
|
(let ((first (match:substring m 1))
|
|
|
|
(last (match:substring m 3)))
|
|
|
|
(version-between?
|
|
|
|
first perl-version last))))
|
|
|
|
(loop)))))))))))
|
|
|
|
|
2015-01-08 21:51:13 +01:00
|
|
|
(define (cpan-module->sexp meta)
|
|
|
|
"Return the `package' s-expression for a CPAN module from the metadata in
|
|
|
|
META."
|
|
|
|
(define name
|
|
|
|
(assoc-ref meta "distribution"))
|
|
|
|
|
|
|
|
(define (guix-name name)
|
|
|
|
(if (string-prefix? "perl-" name)
|
|
|
|
(string-downcase name)
|
|
|
|
(string-append "perl-" (string-downcase name))))
|
|
|
|
|
2016-12-13 04:59:27 +01:00
|
|
|
(define version (cpan-version meta))
|
|
|
|
(define source-url (cpan-source-url meta))
|
2015-01-08 21:51:13 +01:00
|
|
|
|
|
|
|
(define (convert-inputs phases)
|
|
|
|
;; Convert phase dependencies into a list of name/variable pairs.
|
|
|
|
(match (flatten
|
|
|
|
(map (lambda (ph)
|
|
|
|
(filter-map (lambda (t)
|
|
|
|
(assoc-ref* meta "metadata" "prereqs" ph t))
|
|
|
|
'("requires" "recommends" "suggests")))
|
|
|
|
phases))
|
|
|
|
(#f
|
|
|
|
'())
|
|
|
|
((inputs ...)
|
2015-02-14 04:34:40 +01:00
|
|
|
(sort
|
|
|
|
(delete-duplicates
|
|
|
|
;; Listed dependencies may include core modules. Filter those out.
|
|
|
|
(filter-map (match-lambda
|
|
|
|
(("perl" . _) ;implicit dependency
|
|
|
|
#f)
|
|
|
|
((module . _)
|
|
|
|
(and (not (core-module? module))
|
|
|
|
(let ((name (guix-name (module->dist-name module))))
|
|
|
|
(list name
|
|
|
|
(list 'unquote (string->symbol name)))))))
|
|
|
|
inputs))
|
|
|
|
(lambda args
|
|
|
|
(match args
|
|
|
|
(((a _ ...) (b _ ...))
|
|
|
|
(string<? a b))))))))
|
2015-01-08 21:51:13 +01:00
|
|
|
|
|
|
|
(define (maybe-inputs guix-name inputs)
|
|
|
|
(match inputs
|
|
|
|
(()
|
|
|
|
'())
|
|
|
|
((inputs ...)
|
|
|
|
(list (list guix-name
|
|
|
|
(list 'quasiquote inputs))))))
|
|
|
|
|
|
|
|
(let ((tarball (with-store store
|
|
|
|
(download-to-store store source-url))))
|
|
|
|
`(package
|
|
|
|
(name ,(guix-name name))
|
|
|
|
(version ,version)
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append ,@(factorize-uri source-url version)))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
,(bytevector->nix-base32-string (file-sha256 tarball))))))
|
|
|
|
(build-system perl-build-system)
|
|
|
|
,@(maybe-inputs 'native-inputs
|
2015-02-12 15:39:09 +01:00
|
|
|
;; "runtime" may also be needed here. See
|
2015-01-08 21:51:13 +01:00
|
|
|
;; https://metacpan.org/pod/CPAN::Meta::Spec#Phases,
|
|
|
|
;; which says they are required during building. We
|
|
|
|
;; have not yet had a need for cross-compiled perl
|
2015-02-12 15:39:09 +01:00
|
|
|
;; modules, however, so we leave it out.
|
|
|
|
(convert-inputs '("configure" "build" "test")))
|
2017-10-29 01:13:08 +02:00
|
|
|
,@(maybe-inputs 'propagated-inputs
|
2015-01-08 21:51:13 +01:00
|
|
|
(convert-inputs '("runtime")))
|
2017-10-29 15:51:28 +01:00
|
|
|
(home-page ,(cpan-home name))
|
2015-01-08 21:51:13 +01:00
|
|
|
(synopsis ,(assoc-ref meta "abstract"))
|
|
|
|
(description fill-in-yourself!)
|
|
|
|
(license ,(string->license (assoc-ref meta "license"))))))
|
|
|
|
|
|
|
|
(define (cpan->guix-package module-name)
|
|
|
|
"Fetch the metadata for PACKAGE-NAME from metacpan.org, and return the
|
|
|
|
`package' s-expression corresponding to that package, or #f on failure."
|
2016-12-13 04:59:27 +01:00
|
|
|
(let ((module-meta (cpan-fetch (module->name module-name))))
|
2015-01-08 21:51:13 +01:00
|
|
|
(and=> module-meta cpan-module->sexp)))
|
2016-12-13 04:59:27 +01:00
|
|
|
|
|
|
|
(define (cpan-package? package)
|
|
|
|
"Return #t if PACKAGE is a package from CPAN."
|
|
|
|
(define cpan-url?
|
|
|
|
(let ((cpan-rx (make-regexp (string-append "("
|
|
|
|
"mirror://cpan" "|"
|
|
|
|
"https?://www.cpan.org" "|"
|
|
|
|
"https?://cpan.metacpan.org"
|
|
|
|
")"))))
|
|
|
|
(lambda (url)
|
|
|
|
(regexp-exec cpan-rx url))))
|
|
|
|
|
|
|
|
(let ((source-url (and=> (package-source package) origin-uri))
|
|
|
|
(fetch-method (and=> (package-source package) origin-method)))
|
|
|
|
(and (eq? fetch-method url-fetch)
|
|
|
|
(match source-url
|
|
|
|
((? string?)
|
|
|
|
(cpan-url? source-url))
|
|
|
|
((source-url ...)
|
|
|
|
(any cpan-url? source-url))))))
|
|
|
|
|
|
|
|
(define (latest-release package)
|
|
|
|
"Return an <upstream-source> for the latest release of PACKAGE."
|
|
|
|
(match (cpan-fetch (package->upstream-name package))
|
|
|
|
(#f #f)
|
|
|
|
(meta
|
|
|
|
(let ((core-inputs
|
|
|
|
(match (package-direct-inputs package)
|
|
|
|
(((_ inputs _ ...) ...)
|
|
|
|
(filter-map (match-lambda
|
|
|
|
((and (? package?)
|
|
|
|
(? cpan-package?)
|
|
|
|
(= package->upstream-name
|
|
|
|
(? core-module? name)))
|
|
|
|
name)
|
|
|
|
(else #f))
|
|
|
|
inputs)))))
|
|
|
|
;; Warn about inputs that are part of perl's core
|
|
|
|
(unless (null? core-inputs)
|
|
|
|
(for-each (lambda (module)
|
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_ "input '~a' of ~a is in Perl core~%")
|
2016-12-13 04:59:27 +01:00
|
|
|
module (package-name package)))
|
|
|
|
core-inputs)))
|
|
|
|
(let ((version (cpan-version meta))
|
|
|
|
(url (cpan-source-url meta)))
|
|
|
|
(upstream-source
|
|
|
|
(package (package-name package))
|
|
|
|
(version version)
|
2017-07-24 17:35:26 +02:00
|
|
|
(urls (list url)))))))
|
2016-12-13 04:59:27 +01:00
|
|
|
|
|
|
|
(define %cpan-updater
|
|
|
|
(upstream-updater
|
|
|
|
(name 'cpan)
|
|
|
|
(description "Updater for CPAN packages")
|
|
|
|
(pred cpan-package?)
|
|
|
|
(latest latest-release)))
|