import: Add Hackage updater.

* guix/import/hackage.scm (guix-package->hackage-name, hackage-package?)
  (latest-release): New procedures.
  (%hackage-updater): New variable.
* guix/scripts/refresh.scm (%updaters): Add it.
* doc/guix.texi (Invoking guix refresh): Mention it.
master
Eric Bavier 2016-03-22 22:44:51 -05:00
parent 2ae9c63f15
commit 42efe27a30
3 changed files with 65 additions and 3 deletions

View File

@ -4792,6 +4792,8 @@ the updater for @uref{https://pypi.python.org, PyPI} packages.
the updater for @uref{https://rubygems.org, RubyGems} packages.
@item github
the updater for @uref{https://github.com, GitHub} packages.
@item hackage
the updater for @uref{https://hackage.haskell.org, Hackage} packages.
@end table
For instance, the following command only checks for updates of Emacs

View File

@ -19,20 +19,25 @@
(define-module (guix import hackage)
#:use-module (ice-9 match)
#:use-module (ice-9 regex)
#:use-module (srfi srfi-26)
#:use-module (srfi srfi-11)
#:use-module (srfi srfi-1)
#:use-module ((guix download) #:select (download-to-store))
#:use-module (gnu packages)
#:use-module ((guix download) #:select (download-to-store url-fetch))
#:use-module ((guix utils) #:select (package-name->name+version
canonical-newline-port))
#:use-module (guix import utils)
#:use-module (guix http-client)
#:use-module ((guix import utils) #:select (factorize-uri))
#:use-module (guix import cabal)
#:use-module (guix store)
#:use-module (guix hash)
#:use-module (guix base32)
#:use-module (guix upstream)
#:use-module (guix packages)
#:use-module ((guix utils) #:select (call-with-temporary-output-file))
#:export (hackage->guix-package))
#:export (hackage->guix-package
%hackage-updater))
(define ghc-standard-libraries
;; List of libraries distributed with ghc (7.10.2). We include GHC itself as
@ -89,6 +94,17 @@ version is returned."
(string-downcase name)
(string-append package-name-prefix (string-downcase name))))
(define guix-package->hackage-name
(let ((uri-rx (make-regexp "https?://hackage.haskell.org/package/([^/]+)/.*"))
(name-rx (make-regexp "(.*)-[0-9\\.]+")))
(lambda (package)
"Given a Guix package name, return the corresponding Hackage name."
(let* ((source-url (and=> (package-source package) origin-uri))
(name (match:substring (regexp-exec uri-rx source-url) 1)))
(match (regexp-exec name-rx name)
(#f name)
(m (match:substring m 1)))))))
(define (hackage-fetch name-version)
"Return the Cabal file for the package NAME-VERSION, or #f on failure. If
the version part is omitted from the package name, then return the latest
@ -236,4 +252,46 @@ respectively."
include-test-dependencies?)
(cut eval-cabal <> cabal-environment)))))
(define (hackage-package? package)
"Return #t if PACKAGE is a Haskell package from Hackage."
(define haskell-url?
(let ((hackage-rx (make-regexp "https?://hackage.haskell.org")))
(lambda (url)
(regexp-exec hackage-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?)
(haskell-url? source-url))
((source-url ...)
(any haskell-url? source-url))))))
(define (latest-release guix-package)
"Return an <upstream-source> for the latest release of GUIX-PACKAGE."
(let* ((hackage-name (guix-package->hackage-name
(specification->package guix-package)))
(cabal-meta (hackage-fetch hackage-name)))
(match cabal-meta
(#f
(format (current-error-port)
"warning: failed to parse ~a~%"
(hackage-cabal-url hackage-name))
#f)
((_ *** ("version" (version)))
(let ((url (hackage-source-url hackage-name version)))
(upstream-source
(package guix-package)
(version version)
(urls (list url))))))))
(define %hackage-updater
(upstream-updater
(name 'hackage)
(description "Updater for Hackage packages")
(pred hackage-package?)
(latest latest-release)))
;;; cabal.scm ends here

View File

@ -35,6 +35,7 @@
#:select (%gnu-updater %gnome-updater %xorg-updater))
#:use-module (guix import elpa)
#:use-module (guix import cran)
#:use-module (guix import hackage)
#:use-module (guix gnupg)
#:use-module (gnu packages)
#:use-module ((gnu packages commencement) #:select (%final-inputs))
@ -198,6 +199,7 @@ unavailable optional dependencies such as Guile-JSON."
%elpa-updater
%cran-updater
%bioconductor-updater
%hackage-updater
((guix import pypi) => %pypi-updater)
((guix import gem) => %gem-updater)
((guix import github) => %github-updater)))