From 922eaededc0aa4bb051046c906a4321750dbb22a Mon Sep 17 00:00:00 2001 From: Paul van der Walt Date: Fri, 27 Feb 2015 01:23:48 +0100 Subject: [PATCH 01/37] gnu: mu: Update to 0.9.11. * gnu/packages/mail.scm (mu): Update to 0.9.11. Update source URI. Add autoconf, automake, and libtool to native-inputs. Add autoreconf phase. --- gnu/packages/mail.scm | 30 +++++++++++++++++++----------- 1 file changed, 19 insertions(+), 11 deletions(-) diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index dc33c8cbd3..ca25c58f68 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -304,18 +304,22 @@ repository and Maildir/IMAP as LOCAL repository.") (define-public mu (package (name "mu") - (version "0.9.9.5") + (version "0.9.11") (source (origin (method url-fetch) - (uri (string-append "https://mu0.googlecode.com/files/mu-" + (uri (string-append "https://github.com/djcb/mu/archive/v" version ".tar.gz")) + (file-name (string-append "mu-" version ".tar.gz")) (sha256 (base32 - "1hwkliyb8fjrz5sw9fcisssig0jkdxzhccw0ld0l9a10q1l9mqhp")))) + "01n1lzq4pfsm5pn932p948d1z55yqc7kkm1ifjxjchb3k8lr66fh")))) (build-system gnu-build-system) (native-inputs `(("pkg-config" ,pkg-config) ("glib" ,glib "bin") ; for gtester + ("autoconf" ,autoconf) + ("automake" ,automake) + ("libtool" ,libtool) ("texinfo" ,texinfo))) ;; TODO: Add webkit and gtk to build the mug GUI. (inputs @@ -326,14 +330,18 @@ repository and Maildir/IMAP as LOCAL repository.") ("gmime" ,gmime) ("tzdata" ,tzdata))) ;for mu/test/test-mu-query.c (arguments - '(#:phases (alist-cons-before - 'check 'check-tz-setup - (lambda* (#:key inputs #:allow-other-keys) - ;; For mu/test/test-mu-query.c - (setenv "TZDIR" - (string-append (assoc-ref inputs "tzdata") - "/share/zoneinfo"))) - %standard-phases))) + '(#:phases (alist-cons-after + 'unpack 'autoreconf + (lambda _ + (zero? (system* "autoreconf" "-vi"))) + (alist-cons-before + 'check 'check-tz-setup + (lambda* (#:key inputs #:allow-other-keys) + ;; For mu/test/test-mu-query.c + (setenv "TZDIR" + (string-append (assoc-ref inputs "tzdata") + "/share/zoneinfo"))) + %standard-phases)))) (home-page "http://www.djcbsoftware.nl/code/mu/") (synopsis "Quickly find emails") (description From ac4cbcc10ac20e31abbc40e68e11baad320b24b4 Mon Sep 17 00:00:00 2001 From: Jason Self Date: Fri, 27 Feb 2015 05:02:31 -0800 Subject: [PATCH 02/37] gnu: linux-libre: Update to 3.18.8 * gnu/packages/linux.scm (linux-libre): Update to version 3.18.8. --- gnu/packages/linux.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 4fe6f887cf..496a91471f 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -198,7 +198,7 @@ for SYSTEM, or #f if there is no configuration for SYSTEM." #f))) (define-public linux-libre - (let* ((version "3.18.7") + (let* ((version "3.18.8") (build-phase '(lambda* (#:key system inputs #:allow-other-keys #:rest args) ;; Apply the neat patch. @@ -271,7 +271,7 @@ for SYSTEM, or #f if there is no configuration for SYSTEM." (uri (linux-libre-urls version)) (sha256 (base32 - "113r2dzmiwlchp5b3hyjyx91jysx5j4hhxjw45gaky5nj9pax2rh")))) + "1ai2krm0svq52z4nm0qyw3q3ybfia83zvpv1f38q1wkllwq0gi6j")))) (build-system gnu-build-system) (native-inputs `(("perl" ,perl) ("bc" ,bc) From 7ca0dbc3f063ef26c6eff87ec9661eab84af5c85 Mon Sep 17 00:00:00 2001 From: Andreas Enge Date: Fri, 27 Feb 2015 23:53:57 +0100 Subject: [PATCH 03/37] gnu: python2-py2cairo: Rename to python2-pycairo. * gnu/packages/gtk.scm (python2-py2cairo): Rename to ... (python2-pycairo): ... this (python2-pygtk): Adapt input. * gnu/packages/glib.scm (python2-pygobject-2): Adapt input. * gnu/packages/python.scm (package-with-python2): Adapt input. --- gnu/packages/glib.scm | 6 +++--- gnu/packages/gtk.scm | 8 ++++---- gnu/packages/python.scm | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/gnu/packages/glib.scm b/gnu/packages/glib.scm index 66ee4fae97..a2c01e6440 100644 --- a/gnu/packages/glib.scm +++ b/gnu/packages/glib.scm @@ -212,11 +212,11 @@ dynamic loading, and an object system.") "/gobject-introspection-" version ".tar.xz")) (sha256 (base32 "1xwm7wmr9r9wp6xljb3bckx3a4siybavaq39w46ly7gpskxfv8iv")) - (patches (list + (patches (list (search-patch "gobject-introspection-cc.patch") (search-patch "gobject-introspection-girepository.patch") - (search-patch + (search-patch "gobject-introspection-absolute-shlib-path.patch"))))) (build-system gnu-build-system) (inputs @@ -466,7 +466,7 @@ useful for C++.") (inputs `(("python" ,python-2) ("glib" ,glib) - ("python2-py2cairo" ,python2-py2cairo) + ("python2-pycairo" ,python2-pycairo) ("gobject-introspection" ,gobject-introspection))) (propagated-inputs `(("libffi" ,libffi))) ;mentioned in pygobject-2.0.pc diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm index a5022ba116..81f912e4dc 100644 --- a/gnu/packages/gtk.scm +++ b/gnu/packages/gtk.scm @@ -532,7 +532,7 @@ graphics library with all of the benefits of Scheme: memory management, exceptions, macros, and a dynamic programming environment.") (license license:lgpl3+))) - + ;;; ;;; C++ bindings. ;;; @@ -705,9 +705,9 @@ extensive documentation, including API reference and a tutorial.") "Pycairo is a set of Python bindings for the Cairo graphics library.") (license license:lgpl3+))) -(define-public python2-py2cairo +(define-public python2-pycairo (package (inherit python-pycairo) - (name "python2-py2cairo") + (name "python2-pycairo") (version "1.10.0") (source (origin @@ -743,7 +743,7 @@ extensive documentation, including API reference and a tutorial.") `(("python" ,python-2) ("glib" ,glib))) (propagated-inputs - `(("python-pycairo" ,python2-py2cairo) ;loaded at runtime + `(("python-pycairo" ,python2-pycairo) ;loaded at runtime ("python-pygobject" ,python2-pygobject-2) ;referenced in pc file ("gtk+" ,gtk+-2))) (arguments diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index bbff241833..014e592203 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -2290,7 +2290,7 @@ toolkits.") ;; Make sure we use exactly PYTHON2-NUMPYDOC, which is ;; customized for Python 2. (propagated-inputs - `(("python2-py2cairo" ,python2-py2cairo) + `(("python2-pycairo" ,python2-pycairo) ("python2-pygobject-2" ,python2-pygobject-2) ,@(alist-delete "python-pycairo" (alist-delete "python-pygobject" From 5e4d8f67100d066420e0fe5478f4d4ac62a57bfd Mon Sep 17 00:00:00 2001 From: Andreas Enge Date: Sat, 28 Feb 2015 01:08:37 +0100 Subject: [PATCH 04/37] gnu: python-numpydoc: Drop one test. * gnu/packages/python.scm (python-numpydoc): Drop one test for all Python versions. (python2-numpydoc): Define it by package-with-python2 without modifications. --- gnu/packages/python.scm | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 014e592203..7c12ebf6d2 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -2147,7 +2147,15 @@ that client code uses to construct the grammar directly in Python code.") version ".tar.gz")) (sha256 (base32 - "0d4dnifaxkll50jx6czj05y8cb4ny60njd2wz299sj2jxfy51w4k")))) + "0d4dnifaxkll50jx6czj05y8cb4ny60njd2wz299sj2jxfy51w4k")) + (modules '((guix build utils))) + (snippet + '(begin + ;; Drop a test requiring matplotlib, which we cannot add as an + ;; input since it would create a circular dependency: Extend the + ;; test for Python 3, where it is already dropped, to Python 2. + (substitute* "numpydoc/tests/test_plot_directive.py" + (("3") "2")))))) (build-system python-build-system) (inputs `(("python-setuptools" ,python-setuptools) @@ -2162,13 +2170,7 @@ that client code uses to construct the grammar directly in Python code.") (license bsd-2))) (define-public python2-numpydoc - (package - (inherit (package-with-python2 python-numpydoc)) - ;; With python-2 1 test (out of 30) fails because it doesn't find - ;; matplotlib. With python-3 it seems to detect at run-time the absence - ;; of matplotlib. - (arguments `(#:tests? #f - #:python ,python-2)))) + (package-with-python2 python-numpydoc)) (define-public python-matplotlib (package From 88c268347beeb503b1809ba1ac7eee0cb1305661 Mon Sep 17 00:00:00 2001 From: Andreas Enge Date: Sat, 28 Feb 2015 01:17:57 +0100 Subject: [PATCH 05/37] gnu: python: Drop special handling of python2-numpydoc as input. * gnu/packages/python.scm (python2-numpy, python2-matplotlib, python2-ipython): Keep input python2-numpydoc created by package-with-python2. --- gnu/packages/python.scm | 31 +++++++++++-------------------- 1 file changed, 11 insertions(+), 20 deletions(-) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 7c12ebf6d2..d438525ac4 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -2078,14 +2078,11 @@ capabilities.") (define-public python2-numpy (let ((numpy (package-with-python2 python-numpy))) (package (inherit numpy) - ;; Make sure we use exactly PYTHON2-NUMPYDOC, which is customized for - ;; Python 2. Since it is also an input to PYTHON2-MATPLOTLIB, we need to - ;; import the right version of 'matplotlib' as well. - (inputs `(("python2-numpydoc" ,python2-numpydoc) - ("python2-matplotlib" ,python2-matplotlib) - ,@(alist-delete "python-numpydoc" - (alist-delete "python-matplotlib" - (package-inputs numpy)))))))) + ;; Make sure we use exactly PYTHON2-MATPLOTLIB, which is customized for + ;; Python 2. + (inputs `(("python2-matplotlib" ,python2-matplotlib) + ,@(alist-delete "python-matplotlib" + (package-inputs numpy))))))) (define-public python-pyparsing (package @@ -2289,19 +2286,15 @@ toolkits.") (define-public python2-matplotlib (let ((matplotlib (package-with-python2 python-matplotlib))) (package (inherit matplotlib) - ;; Make sure we use exactly PYTHON2-NUMPYDOC, which is - ;; customized for Python 2. + ;; Make sure to use special packages for Python 2 instead + ;; of those automatically rewritten by package-with-python2. (propagated-inputs `(("python2-pycairo" ,python2-pycairo) ("python2-pygobject-2" ,python2-pygobject-2) ,@(alist-delete "python-pycairo" (alist-delete "python-pygobject" (package-propagated-inputs - matplotlib))))) - (inputs - `(("python2-numpydoc" ,python2-numpydoc) - ,@(alist-delete "python-numpydoc" - (package-inputs matplotlib))))))) + matplotlib)))))))) (define-public python-scipy (package @@ -2819,11 +2812,9 @@ computing.") (package (inherit ipython) ;; Make sure we use custom python2-NAME packages. (inputs - `(("python2-numpydoc" ,python2-numpydoc) - ("python2-matplotlib" ,python2-matplotlib) - ,@(alist-delete "python-numpydoc" - (alist-delete "python-matplotlib" - (package-inputs ipython)))))))) + `(("python2-matplotlib" ,python2-matplotlib) + ,@(alist-delete "python-matplotlib" + (package-inputs ipython))))))) (define-public python-isodate (package From 692784ddbb0ad02e6f21e729fecc093bbaa70af1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=8B=E6=96=87=E6=AD=A6?= Date: Fri, 27 Feb 2015 13:59:29 +0800 Subject: [PATCH 06/37] gnu: Add font-adobe-source-han-sans. * gnu/packages/fonts.scm (font-adobe-source-han-sans): New variable. --- gnu/packages/fonts.scm | 56 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm index 94993f0d08..77abc2b700 100644 --- a/gnu/packages/fonts.scm +++ b/gnu/packages/fonts.scm @@ -3,6 +3,7 @@ ;;; Copyright © 2014 Mark H Weaver ;;; Copyright © 2014 Joshua Grant ;;; Copyright © 2014 Alex Kost +;;; Copyright © 2015 Sou Bunnbu ;;; ;;; This file is part of GNU Guix. ;;; @@ -303,3 +304,58 @@ The Liberation Fonts are sponsored by Red Hat.") (description "Terminus Font is a clean, fixed width bitmap font, designed for long (8 and more hours per day) work with computers.") (license license:silofl1.1))) + +(define-public font-adobe-source-han-sans + (package + (name "font-adobe-source-han-sans") + (version "1.001R") + (source (origin + (method url-fetch) + (uri (string-append + "https://github.com/adobe-fonts/source-han-sans/archive/" + version ".tar.gz")) + (file-name (string-append "source-han-sans-" version ".tar.gz")) + (sha256 + (base32 + "0cwz3d8jancl0a7vbjxhnh1vgwsjba62lahfjya9yrjkp1ndxlap")))) + (outputs '("out" ; OpenType/CFF Collection (OTC), 119 MiB. + "cn" "jp" "kr" "tw")) ; Region-specific Subset OpenType/CFF. + (build-system trivial-build-system) + (arguments + `(#:modules ((guix build utils)) + #:builder + (begin + (use-modules (guix build utils)) + (let ((tar (string-append (assoc-ref %build-inputs + "tar") + "/bin/tar")) + (PATH (string-append (assoc-ref %build-inputs + "gzip") + "/bin")) + (install-opentype-fonts + (lambda (fonts-dir out) + (copy-recursively fonts-dir + (string-append (assoc-ref %outputs out) + "/share/fonts/opentype"))))) + (setenv "PATH" PATH) + (system* tar "xvf" (assoc-ref %build-inputs "source")) + (chdir (string-append "source-han-sans-" ,version)) + (install-opentype-fonts "OTC" "out") + (install-opentype-fonts "SubsetOTF/CN" "cn") + (install-opentype-fonts "SubsetOTF/JP" "jp") + (install-opentype-fonts "SubsetOTF/KR" "kr") + (install-opentype-fonts "SubsetOTF/TW" "tw"))))) + (native-inputs + `(("gzip" ,gzip) + ("tar" ,tar))) + (home-page "https://github.com/adobe-fonts/source-han-sans") + (synopsis "Pan-CJK fonts") + (description + "Source Han Sans is a sans serif Pan-CJK font family that is offered in +seven weights: ExtraLight, Light, Normal, Regular, Medium, Bold, and Heavy. +And in several OpenType/CFF-based deployment configurations to accommodate +various system requirements or limitations. As the name suggests, Pan-CJK +fonts are intended to support the characters necessary to render or display +text in Simplified Chinese, Traditional Chinese, Japanese, and Korean. +") + (license license:asl2.0))) From 17dd4329eb5892ce8a4ffab77f59bc1ca64e3f0a Mon Sep 17 00:00:00 2001 From: Paul van der Walt Date: Sat, 28 Feb 2015 14:28:00 +0100 Subject: [PATCH 07/37] gnu: mail: Add copyright line. * gnu/packages/mail.scm (mu): Add forgotten copyright line. --- gnu/packages/mail.scm | 1 + 1 file changed, 1 insertion(+) diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index ca25c58f68..a3ea778e12 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -5,6 +5,7 @@ ;;; Copyright © 2014 Sou Bunnbu ;;; Copyright © 2014 Julien Lepiller ;;; Copyright © 2015 Taylan Ulrich Bayırlı/Kammer +;;; Copyright © 2015 Paul van der Walt ;;; ;;; This file is part of GNU Guix. ;;; From e42dc6249c24f67568fd2efafcb860dec40c629f Mon Sep 17 00:00:00 2001 From: Paul van der Walt Date: Sat, 28 Feb 2015 14:49:09 +0100 Subject: [PATCH 08/37] gnu: ncmpcpp: Update to 0.6.2 * gnu/packages/mpd.scm (ncmpcpp): Update to version 0.6.2. Add boost, readline, autotools inputs. --- gnu/packages/mpd.scm | 26 +++++++++++++++++++++++--- 1 file changed, 23 insertions(+), 3 deletions(-) diff --git a/gnu/packages/mpd.scm b/gnu/packages/mpd.scm index a1b427271d..550e75d43f 100644 --- a/gnu/packages/mpd.scm +++ b/gnu/packages/mpd.scm @@ -3,6 +3,7 @@ ;;; Copyright © 2014 Andreas Enge ;;; Copyright © 2014 Cyrill Schenkel ;;; Copyright © 2014 Ian Denhardt +;;; Copyright © 2015 Paul van der Walt ;;; ;;; This file is part of GNU Guix. ;;; @@ -27,6 +28,8 @@ #:use-module (guix utils) #:use-module (guix build-system gnu) #:use-module (gnu packages avahi) + #:use-module (gnu packages boost) + #:use-module (gnu packages readline) #:use-module (gnu packages compression) #:use-module (gnu packages curl) #:use-module (gnu packages doxygen) @@ -35,6 +38,7 @@ #:use-module (gnu packages mp3) #:use-module (gnu packages ncurses) #:use-module (gnu packages pkg-config) + #:use-module (gnu packages autotools) #:use-module (gnu packages pulseaudio) #:use-module (gnu packages databases) #:use-module (gnu packages video) @@ -153,7 +157,7 @@ terminal using ncurses.") (define ncmpcpp (package (name "ncmpcpp") - (version "0.5.10") + (version "0.6.2") (source (origin (method url-fetch) (uri @@ -161,11 +165,27 @@ terminal using ncurses.") version ".tar.bz2")) (sha256 (base32 - "1a54g6dary1rirrny9fd0hpxpyyffypni3mpbdpvmjnrl9v56vgz")))) + "1mrd6m6ph0fscxp9x96ipxh6ai7w0n1miapcfqrqfy058qx5zbck")))) (build-system gnu-build-system) (inputs `(("libmpdclient" ,libmpdclient) + ("boost" ,boost) + ("readline" ,readline) ("ncurses" ,ncurses))) - (native-inputs `(("pkg-config" ,pkg-config))) + (native-inputs + `(("pkg-config" ,pkg-config) + ("automake" ,automake) + ("autoconf" ,autoconf) + ("libtool" ,libtool))) + (arguments + '(#:configure-flags + '("BOOST_LIB_SUFFIX=") + #:phases + (alist-cons-after + 'unpack 'autogen + (lambda _ + (setenv "NOCONFIGURE" "true") + (zero? (system* "sh" "autogen.sh"))) + %standard-phases))) (synopsis "Featureful ncurses based MPD client inspired by ncmpc") (description "Ncmpcpp is an mpd client with a UI very similar to ncmpc, but it provides new useful features such as support for regular expressions From 773b2792e1ca1450b4625b0afed11e0bb18317c6 Mon Sep 17 00:00:00 2001 From: Paul van der Walt Date: Sat, 28 Feb 2015 18:22:03 +0100 Subject: [PATCH 09/37] gnu: Add mpd-mpc. * gnu/packages/mpd.scm (mpd-mpc): New variable. --- gnu/packages/mpd.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/mpd.scm b/gnu/packages/mpd.scm index 550e75d43f..8e798ee2c6 100644 --- a/gnu/packages/mpd.scm +++ b/gnu/packages/mpd.scm @@ -45,6 +45,7 @@ #:use-module (gnu packages xiph) #:export (libmpdclient mpd + mpd-mpc ncmpc ncmpcpp)) @@ -130,6 +131,28 @@ protocol.") (home-page "http://www.musicpd.org/") (license license:gpl2))) +(define mpd-mpc + (package + (name "mpd-mpc") + (version "0.26") + (source (origin + (method url-fetch) + (uri + (string-append "http://www.musicpd.org/download/mpc/" + (car (string-split version #\.)) + "/mpc-" version ".tar.xz")) + (sha256 + (base32 + "0hp2qv6w2v902dhrmck5hg32s1ai6xiv9n61a3n6prfcfdqmywr0")))) + (build-system gnu-build-system) + (inputs `(("libmpdclient" ,libmpdclient))) + (native-inputs `(("pkg-config" ,pkg-config))) + (synopsis "Music Player Daemon client") + (description "MPC is a minimalist command line interface to MPD, the music +player daemon.") + (home-page "http://www.musicpd.org/clients/mpc/") + (license license:gpl2))) + (define ncmpc (package (name "ncmpc") From 654b27e56ea2ab7a9fecfc0044ed96c572552e7a Mon Sep 17 00:00:00 2001 From: David Thompson Date: Sat, 28 Feb 2015 14:05:20 -0500 Subject: [PATCH 10/37] gnu: mpd: Export package variables using define-public. * gnu/packages/mpd.scm: Use define-public for package variables. Remove #:exports from module declaration. --- gnu/packages/mpd.scm | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) diff --git a/gnu/packages/mpd.scm b/gnu/packages/mpd.scm index 8e798ee2c6..2d7ca6ef37 100644 --- a/gnu/packages/mpd.scm +++ b/gnu/packages/mpd.scm @@ -42,14 +42,9 @@ #:use-module (gnu packages pulseaudio) #:use-module (gnu packages databases) #:use-module (gnu packages video) - #:use-module (gnu packages xiph) - #:export (libmpdclient - mpd - mpd-mpc - ncmpc - ncmpcpp)) + #:use-module (gnu packages xiph)) -(define libmpdclient +(define-public libmpdclient (package (name "libmpdclient") (version "2.9") @@ -70,7 +65,7 @@ interfacing MPD in the C, C++ & Objective C languages.") (home-page "http://www.musicpd.org/libs/libmpdclient/") (license license:bsd-3))) -(define mpd +(define-public mpd (package (name "mpd") (version "0.18.8") @@ -131,7 +126,7 @@ protocol.") (home-page "http://www.musicpd.org/") (license license:gpl2))) -(define mpd-mpc +(define-public mpd-mpc (package (name "mpd-mpc") (version "0.26") @@ -153,7 +148,7 @@ player daemon.") (home-page "http://www.musicpd.org/clients/mpc/") (license license:gpl2))) -(define ncmpc +(define-public ncmpc (package (name "ncmpc") (version "0.21") @@ -177,7 +172,7 @@ terminal using ncurses.") (home-page "http://www.musicpd.org/clients/ncmpc/") (license license:gpl2))) -(define ncmpcpp +(define-public ncmpcpp (package (name "ncmpcpp") (version "0.6.2") From dd6b54b8460065d8c4531a09b20ddfaafc111bac Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Fri, 27 Feb 2015 08:32:58 +0100 Subject: [PATCH 11/37] gnu: Add txt2man. * gnu/packages/man.scm (txt2man): New variable. --- gnu/packages/man.scm | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/gnu/packages/man.scm b/gnu/packages/man.scm index 712622aee8..3507c0c1fb 100644 --- a/gnu/packages/man.scm +++ b/gnu/packages/man.scm @@ -1,6 +1,7 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2012, 2014 Ludovic Courtès ;;; Copyright © 2014 David Thompson +;;; Copyright © 2015 Ricardo Wurmus ;;; ;;; This file is part of GNU Guix. ;;; @@ -23,6 +24,7 @@ #:use-module (guix packages) #:use-module (guix build-system gnu) #:use-module (gnu packages flex) + #:use-module (gnu packages gawk) #:use-module (gnu packages gdbm) #:use-module (gnu packages groff) #:use-module (gnu packages less) @@ -176,3 +178,28 @@ Linux kernel and C library interfaces employed by user-space programs.") \"--help\" and \"--version\" command-line arguments into a manual page automatically.") (license gpl3+))) + +(define-public txt2man + (package + (name "txt2man") + (version "1.5.6") + (source + (origin + (method url-fetch) + (uri (string-append + "https://github.com/mvertes/txt2man/archive/txt2man-" + version ".tar.gz")) + (sha256 + (base32 + "0sjq687jknq65wbnjh2siq8hc09ydpnlmrkrnwl66mrhd4n9g7fz")))) + (build-system gnu-build-system) + (arguments + `(#:tests? #f ; no "check" target + #:make-flags (list (string-append "prefix=" (assoc-ref %outputs "out"))) + #:phases (alist-delete 'configure %standard-phases))) + (inputs + `(("gawk" ,gawk))) + (home-page "https://github.com/mvertes/txt2man") + (synopsis "Convert text to man page") + (description "Txt2man converts flat ASCII text to man page format.") + (license gpl2+))) From 982471276be6042860ad3f36ca62a89afe50f61f Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Wed, 11 Feb 2015 23:30:50 +0100 Subject: [PATCH 12/37] gnu: Add LV2 mda Piano plugin. * gnu/packages/audio.scm (lv2-mdapiano): New variable. --- gnu/packages/audio.scm | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index 52feea3701..0460fde727 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -498,6 +498,39 @@ add functionality to support the needs of increasingly powerful audio software.") (license license:isc))) +(define-public lv2-mda-piano + (package + (name "lv2-mda-piano") + (version "0.0.2") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://gitorious.org/lv2-synths/lv2-mdametapiano.git") + (commit version))) + (sha256 + (base32 + "07lywf6lpfpndg3i9w752mmlg2hgn1bwp23h8b0mdj6awh67abqd")))) + (build-system gnu-build-system) + (arguments + `(#:make-flags (list + "TYPE=mdaPiano" + (string-append "PREFIX=" (assoc-ref %outputs "out"))) + #:tests? #f ; no check target + #:phases (alist-delete 'configure %standard-phases))) + (inputs + `(("lv2" ,lv2) + ("lvtk" ,lvtk))) + (native-inputs + `(("pkg-config" ,pkg-config))) + (native-search-paths + (list (search-path-specification + (variable "LV2_PATH") + (files '("lib/lv2"))))) + (home-page "http://elephly.net/lv2/mdapiano.html") + (synopsis "LV2 port of the mda Piano plugin") + (description "An LV2 port of the mda Piano VSTi.") + (license license:gpl3+))) + (define-public lvtk (package (name "lvtk") From 8fb79e3dfbc2d874c50dbb4199976473d8bf5583 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Wed, 11 Feb 2015 23:31:37 +0100 Subject: [PATCH 13/37] gnu: Add LV2 mda EPiano plugin. * gnu/packages/audio.scm (lv2-mdaepiano): New variable. --- gnu/packages/audio.scm | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index 0460fde727..7e6c2810b3 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -531,6 +531,19 @@ software.") (description "An LV2 port of the mda Piano VSTi.") (license license:gpl3+))) +(define-public lv2-mda-epiano + (package (inherit lv2-mda-piano) + (name "lv2-mda-epiano") + (arguments + `(#:make-flags (list + "TYPE=mdaEPiano" + (string-append "PREFIX=" (assoc-ref %outputs "out"))) + #:tests? #f ; no check target + #:phases (alist-delete 'configure %standard-phases))) + (home-page "http://elephly.net/lv2/mdaepiano.html") + (synopsis "LV2 port of the mda EPiano plugin") + (description "An LV2 port of the mda EPiano VSTi."))) + (define-public lvtk (package (name "lvtk") From 74bbf894953c3e7b0123f96b6d2442e4ca4dff8c Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Sat, 21 Feb 2015 21:52:10 +0100 Subject: [PATCH 14/37] gnu: Add zita-alsa-pcmi. * gnu/packages/audio.scm (zita-alsa-pcmi): New variable. --- gnu/packages/audio.scm | 47 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index 7e6c2810b3..ac6bc25c28 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -942,3 +942,50 @@ portions of LAME.") to record and/or play sound using a callback function or a blocking read/write interface.") (license license:expat))) + +(define-public zita-alsa-pcmi + (package + (name "zita-alsa-pcmi") + (version "0.2.0") + (source (origin + (method url-fetch) + (uri (string-append + "http://kokkinizita.linuxaudio.org" + "/linuxaudio/downloads/zita-alsa-pcmi-" + version ".tar.bz2")) + (sha256 + (base32 + "1rgv332g82rrrlm4vdam6p2pyrisxbi7b3izfaa0pcjglafsy7j9")) + (modules '((guix build utils))) + (snippet + '(substitute* "libs/Makefile" + (("ldconfig") "true"))))) + (build-system gnu-build-system) + (arguments + `(#:tests? #f ; no "check" target + #:make-flags (list (string-append "PREFIX=" (assoc-ref %outputs "out"))) + #:phases + (alist-cons-after + 'unpack + 'enter-directory + (lambda _ (chdir "libs")) + (alist-cons-after + 'install + 'install-symlink + (lambda _ + (symlink "libzita-alsa-pcmi.so" + (string-append (assoc-ref %outputs "out") + "/lib/libzita-alsa-pcmi.so.0"))) + ;; no configure script + (alist-delete 'configure %standard-phases))))) + (inputs + `(("alsa-lib" ,alsa-lib) + ("fftw" ,fftw))) + (home-page "http://kokkinizita.linuxaudio.org") + (synopsis "C++ wrapper around the ALSA API") + (description + "Zita-alsa-pcmi is a C++ wrapper around the ALSA API. It provides easy +access to ALSA PCM devices, taking care of the many functions required to +open, initialise and use a hw: device in mmap mode, and providing floating +point audio data.") + (license license:gpl3+))) From ec4a4c46efaf2e7373f331654640f1321c0f2e62 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Sat, 28 Feb 2015 22:44:31 +0100 Subject: [PATCH 15/37] services: xorg: Fix file descriptor leak from SLiM/xinitrc. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Previously processes started from the window manager would have a couple of leaked file descriptors: writable /var/log/slim.log and readable /gnu/store/…-xinitrc. * gnu/services/xorg.scm (xinitrc)[builder]: Add 'close-all-fdes'. Use it in 'exec-from-login-shell'. --- gnu/services/xorg.scm | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/gnu/services/xorg.scm b/gnu/services/xorg.scm index 69a89584e0..bc1774840b 100644 --- a/gnu/services/xorg.scm +++ b/gnu/services/xorg.scm @@ -155,6 +155,13 @@ which should be passed to this script as the first argument. If not, the #~(begin (use-modules (ice-9 match)) + (define (close-all-fdes) + ;; Close all the open file descriptors. + (let loop ((fd 0)) + (when (< fd 4096) ;FIXME: use sysconf + _SC_OPEN_MAX + (false-if-exception (close-fdes fd)) + (loop (+ 1 fd))))) + (define (exec-from-login-shell command . args) ;; Run COMMAND from a login shell so that it gets to see the same ;; environment variables that one gets when logging in on a tty, for @@ -163,6 +170,11 @@ which should be passed to this script as the first argument. If not, the (shell (passwd:shell pw)) (st (stat command #f))) (when (and st (not (zero? (logand (stat:mode st) #o100)))) + ;; Close any open file descriptors. This is all the more + ;; important that SLiM itself exec's us directly without closing + ;; its own file descriptors! + (close-all-fdes) + ;; The '--login' option is supported at least by Bash and zsh. (execl shell shell "--login" "-c" (string-join (cons command args)))))) From 96fffedea0b0f38d48452344742c5f18430403e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=8B=E6=96=87=E6=AD=A6?= Date: Sun, 1 Mar 2015 13:39:10 +0800 Subject: [PATCH 16/37] gnu: libxfce4util: Update to 4.12.1. * gnu/packages/xfce.scm (libxfce4util): Update to 4.12.1. --- gnu/packages/xfce.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm index fb5427c94d..4dc2c5e558 100644 --- a/gnu/packages/xfce.scm +++ b/gnu/packages/xfce.scm @@ -65,7 +65,7 @@ (define-public libxfce4util (package (name "libxfce4util") - (version "4.10.0") + (version "4.12.1") (source (origin (method url-fetch) (uri (string-append "http://archive.xfce.org/xfce/" @@ -73,7 +73,7 @@ "/src/" name "-" version ".tar.bz2")) (sha256 (base32 - "13k0wwbbqvdmbj4xmk4nxdlgvrdgr5y6r3dk380mzfw053hzwy89")))) + "07c8r3xwx5is298zk77m3r784gmr5y4mh8bbca5zdjqk5vxdwsw7")))) (build-system gnu-build-system) (native-inputs `(("pkg-config" ,pkg-config) From 7379ffc1a0d854eaece927136a2acbcc9f9cc55d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=8B=E6=96=87=E6=AD=A6?= Date: Sun, 1 Mar 2015 13:44:14 +0800 Subject: [PATCH 17/37] gnu: libxfce4ui: Update to 4.12.0. * gnu/packages/xfce.scm (libxfce4ui): Update to 4.12.0. --- gnu/packages/xfce.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm index 4dc2c5e558..3122340b1e 100644 --- a/gnu/packages/xfce.scm +++ b/gnu/packages/xfce.scm @@ -120,7 +120,7 @@ storage system.") (define-public libxfce4ui (package (name "libxfce4ui") - (version "4.10.0") + (version "4.12.0") (source (origin (method url-fetch) (uri (string-append "http://archive.xfce.org/xfce/" @@ -128,7 +128,7 @@ storage system.") "/src/" name "-" version ".tar.bz2")) (sha256 (base32 - "1qm31s6568cz4c8rl9fsfq0xmf7pldxm0ki62gx1cpybihlgmfd2")))) + "11rrhqxnfwx5jls3nlg9s2x8saag9f2zqk9cdm6hr3bs6cr9a781")))) (build-system gnu-build-system) (native-inputs `(("pkg-config" ,pkg-config) From 9ade90ae525484ec52fd2ac93d366953adee106b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=8B=E6=96=87=E6=AD=A6?= Date: Sun, 1 Mar 2015 13:45:17 +0800 Subject: [PATCH 18/37] gnu: exo: Update to 0.10.3. * gnu/packages/xfce.scm (exo): Update to 0.10.3. --- gnu/packages/xfce.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm index 3122340b1e..b153b231d7 100644 --- a/gnu/packages/xfce.scm +++ b/gnu/packages/xfce.scm @@ -151,14 +151,14 @@ to share commonly used Xfce widgets amoung the Xfce applications.") (define-public exo (package (name "exo") - (version "0.8.0") + (version "0.10.3") (source (origin (method url-fetch) - (uri (string-append "http://archive.xfce.org/xfce/4.10/src/" + (uri (string-append "http://archive.xfce.org/xfce/4.12/src/" name "-" version ".tar.bz2")) (sha256 (base32 - "1c05pbagw14djv5zmqg34qfj40jav8sd10w2zi2wpzrad4qal8bf")))) + "1g9651ra395v2fmzb943l68b9pg0rfxc19x97a62crchxwa4nw4m")))) (build-system gnu-build-system) (native-inputs `(("pkg-config" ,pkg-config) From ea3fb8f183563dac90cbe81609b0c3ba24b96b74 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=8B=E6=96=87=E6=AD=A6?= Date: Sun, 1 Mar 2015 13:46:06 +0800 Subject: [PATCH 19/37] gnu: garcon: Update to 0.4.0. * gnu/packages/xfce.scm (garcon): Update to 0.4.0. --- gnu/packages/xfce.scm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm index b153b231d7..68d05271ac 100644 --- a/gnu/packages/xfce.scm +++ b/gnu/packages/xfce.scm @@ -182,21 +182,21 @@ development.") (define-public garcon (package (name "garcon") - (version "0.2.0") + (version "0.4.0") (source (origin (method url-fetch) - (uri (string-append "http://archive.xfce.org/xfce/4.10/src/" + (uri (string-append "http://archive.xfce.org/xfce/4.12/src/" name "-" version ".tar.bz2")) (sha256 (base32 - "0v7pkvxcayi86z4f173z5l7w270f3g369sa88z59w0y0p7ns7ph2")))) + "0wm9pjbwq53s3n3nwvsyf0q8lbmhiy2ln3bn5ncihr9vf5cwhzbq")))) (build-system gnu-build-system) (native-inputs `(("pkg-config" ,pkg-config) ("intltool" ,intltool) ("glib:bin" ,glib "bin"))) - (propagated-inputs `(("glib" ,glib))) ; required by garcon-1.pc - (inputs `(("libxfce4util" ,libxfce4util))) + (propagated-inputs + `(("libxfce4ui" ,libxfce4ui))) ; required by garcon-gtk2-1.pc (home-page "http://www.xfce.org/") (synopsis "Implementation of the freedesktop.org menu specification") (description From 3786be080fb341c5b81e6a2650ab066348b43abb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=8B=E6=96=87=E6=AD=A6?= Date: Sun, 1 Mar 2015 13:47:10 +0800 Subject: [PATCH 20/37] gnu: tumbler: Update to 0.1.31. * gnu/packages/xfce.scm (tumbler): Update to 0.1.31. --- gnu/packages/xfce.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm index 68d05271ac..f0d52746d7 100644 --- a/gnu/packages/xfce.scm +++ b/gnu/packages/xfce.scm @@ -209,14 +209,14 @@ merging features essential for loading menus modified with menu editors.") (define-public tumbler (package (name "tumbler") - (version "0.1.30") + (version "0.1.31") (source (origin (method url-fetch) (uri (string-append "http://archive.xfce.org/src/xfce/tumbler/0.1/" name "-" version ".tar.bz2")) (sha256 (base32 - "013kacqyy1vya7kp6jgc1almp3cbbvq96a3r7f5myiihr1whvhp7")))) + "0wvip28gm2w061hn84zp2q4dv947ihylrppahn4cjspzff935zfh")))) (build-system gnu-build-system) (native-inputs `(("pkg-config" ,pkg-config) From bcd54994f0010675e0e338e56f0a356d72b516ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=8B=E6=96=87=E6=AD=A6?= Date: Sun, 1 Mar 2015 13:48:03 +0800 Subject: [PATCH 21/37] gnu: xfce4-panel: Update to 4.12.0. * gnu/packages/xfce.scm (xfce4-panel): Update to 4.12.0. --- gnu/packages/xfce.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm index f0d52746d7..588e4fd2cc 100644 --- a/gnu/packages/xfce.scm +++ b/gnu/packages/xfce.scm @@ -244,7 +244,7 @@ management D-Bus specification.") (define-public xfce4-panel (package (name "xfce4-panel") - (version "4.10.0") + (version "4.12.0") (source (origin (method url-fetch) (uri (string-append "http://archive.xfce.org/xfce/" @@ -252,7 +252,7 @@ management D-Bus specification.") "/src/" name "-" version ".tar.bz2")) (sha256 (base32 - "1f8903nx6ivzircl8d8s9zna4vjgfy0qhjk5d2x19g9bmycgj89k")) + "1c4p3ckghvsad1sj5v8wmar5mh9cbhail9mmhad2f9pwwb10z4ih")) (patches (list (search-patch "xfce4-panel-plugins.patch"))))) (build-system gnu-build-system) (native-inputs From be3db25a5271e81cc1d02ef79ff2f9bdb0f1ed6d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=8B=E6=96=87=E6=AD=A6?= Date: Sun, 1 Mar 2015 13:48:42 +0800 Subject: [PATCH 22/37] gnu: xfce4-appfinder: Update to 4.12.0. * gnu/packages/xfce.scm (xfce4-appfinder): Update to 4.12.0. --- gnu/packages/xfce.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm index 588e4fd2cc..77db1e9fd6 100644 --- a/gnu/packages/xfce.scm +++ b/gnu/packages/xfce.scm @@ -309,7 +309,7 @@ applications menu, workspace switcher and more.") (define-public xfce4-appfinder (package (name "xfce4-appfinder") - (version "4.10.0") + (version "4.12.0") (source (origin (method url-fetch) (uri (string-append "http://archive.xfce.org/xfce/" @@ -317,7 +317,7 @@ applications menu, workspace switcher and more.") "/src/" name "-" version ".tar.bz2")) (sha256 (base32 - "0falckrziw8m1a72nxd7fqq84r3xfbrb6lv35flsca346rzawah4")))) + "0ry5hin8xhgnkmm9vs7jq8blk1cnbyr0s18nm1j6nsm7360abm1a")))) (build-system gnu-build-system) (native-inputs `(("pkg-config" ,pkg-config) From 3d75c320fa7ba6ff0bbe0ab87fccd478d1f4eeea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=8B=E6=96=87=E6=AD=A6?= Date: Sun, 1 Mar 2015 13:49:22 +0800 Subject: [PATCH 23/37] gnu: xfce4-session: Update to 4.12.0. * gnu/packages/xfce.scm (xfce4-session): Update to 4.12.0. --- gnu/packages/xfce.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm index 77db1e9fd6..2419522b48 100644 --- a/gnu/packages/xfce.scm +++ b/gnu/packages/xfce.scm @@ -335,7 +335,7 @@ your system in categories, so you can quickly find and launch them.") (define-public xfce4-session (package (name "xfce4-session") - (version "4.10.0") + (version "4.12.0") (source (origin (method url-fetch) (uri (string-append "http://archive.xfce.org/xfce/" @@ -343,7 +343,7 @@ your system in categories, so you can quickly find and launch them.") "/src/" name "-" version ".tar.bz2")) (sha256 (base32 - "1kj65jkjhd0ysf0yxsf88wzpyv6n8i8qgd3gb502hf1x9jksk2mv")))) + "01kvbd09c06j20n155hracsgrq06rlmfgdywffjsvlwpn19m9j38")))) (build-system gnu-build-system) (arguments '(#:configure-flags From 2998f7181fdcd9b521b21c7e3addb93eea3099f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=8B=E6=96=87=E6=AD=A6?= Date: Sun, 1 Mar 2015 13:49:58 +0800 Subject: [PATCH 24/37] gnu: xfce4-settings: Update to 4.12.0. * gnu/packages/xfce.scm (xfce4-settings): Update to 4.12.0. --- gnu/packages/xfce.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm index 2419522b48..11da7bd84a 100644 --- a/gnu/packages/xfce.scm +++ b/gnu/packages/xfce.scm @@ -366,7 +366,7 @@ allows you to shutdown the computer from Xfce.") (define-public xfce4-settings (package (name "xfce4-settings") - (version "4.10.0") + (version "4.12.0") (source (origin (method url-fetch) (uri (string-append "http://archive.xfce.org/xfce/" @@ -374,7 +374,7 @@ allows you to shutdown the computer from Xfce.") "/src/" name "-" version ".tar.bz2")) (sha256 (base32 - "0zppq747z9lrxyv5zrrvpalq7hb3gfhy9p7qbldisgv7m6dz0hq8")))) + "108za1cmjslwzkdl76x9kwxkq8z734kg9nz8rxk057f10pqwxgh4")))) (build-system gnu-build-system) (native-inputs `(("pkg-config" ,pkg-config) From 78daf79be15b0794513ea72c74118a3b6a882902 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=8B=E6=96=87=E6=AD=A6?= Date: Sun, 1 Mar 2015 13:50:45 +0800 Subject: [PATCH 25/37] gnu: thunar: Update to 1.6.6. * gnu/packages/xfce.scm (thunar): Update to 1.6.6. --- gnu/packages/xfce.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm index 11da7bd84a..ea222caaf9 100644 --- a/gnu/packages/xfce.scm +++ b/gnu/packages/xfce.scm @@ -397,14 +397,14 @@ like appearance, display, keyboard and mouse settings.") (define-public thunar (package (name "thunar") - (version "1.4.0") + (version "1.6.6") (source (origin (method url-fetch) - (uri (string-append "http://archive.xfce.org/xfce/4.10/src/" + (uri (string-append "http://archive.xfce.org/xfce/4.12/src/" "Thunar-" version ".tar.bz2")) (sha256 (base32 - "1fn8wjzkfvnx2giv3rrg2cyrr2c96f9mskgvcji0ixyfcjga249c")))) + "1cl9v3rdzipyyxml3pyrzspxfmmssz5h5snpj18irq4an42539dr")))) (build-system gnu-build-system) (native-inputs `(("pkg-config" ,pkg-config) From ad1540062bf80d0b0a1bfdb9af44504f3df649d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=8B=E6=96=87=E6=AD=A6?= Date: Sun, 1 Mar 2015 13:51:36 +0800 Subject: [PATCH 26/37] gnu: thunar-volman: Update to 0.8.1. * gnu/packages/xfce.scm (thunar-volman): Update to 0.8.1. --- gnu/packages/xfce.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm index ea222caaf9..30b1afa45a 100644 --- a/gnu/packages/xfce.scm +++ b/gnu/packages/xfce.scm @@ -428,14 +428,14 @@ fast.") (define-public thunar-volman (package (name "thunar-volman") - (version "0.8.0") + (version "0.8.1") (source (origin (method url-fetch) - (uri (string-append "http://archive.xfce.org/xfce/4.10/src/" + (uri (string-append "http://archive.xfce.org/xfce/4.12/src/" name "-" version ".tar.bz2")) (sha256 (base32 - "1sxw09fwyn5sr6ipxk7r8gqjyf41c2v7vkgl0l6mhy5mcb48f27z")))) + "1gf259n1v3y23n1zlkhyr6r0i8j59rnl1cmxvxj6la9cwdfbn22s")))) (build-system gnu-build-system) (native-inputs `(("pkg-config" ,pkg-config) From 046bcf295259923df345662426d12ceac12ebbae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=8B=E6=96=87=E6=AD=A6?= Date: Sun, 1 Mar 2015 13:55:44 +0800 Subject: [PATCH 27/37] gnu: xfdesktop: Update to 4.12.0. * gnu/packages/xfce.scm (xfdesktop): Update to 4.12.0. --- gnu/packages/xfce.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm index 30b1afa45a..01b50c48a3 100644 --- a/gnu/packages/xfce.scm +++ b/gnu/packages/xfce.scm @@ -486,7 +486,7 @@ on the screen.") (define-public xfdesktop (package (name "xfdesktop") - (version "4.10.0") + (version "4.12.0") (source (origin (method url-fetch) (uri (string-append "http://archive.xfce.org/xfce/" @@ -494,7 +494,7 @@ on the screen.") "/src/" name "-" version ".tar.bz2")) (sha256 (base32 - "0yrddj1lgk3xn4w340y89z7x2isks72ia36pka08kk2x8gpfcyl9")))) + "1ivzgg4792nid6wcgd1nq5vc3z0y5ip6ymq7ci5j2qkp663qnykf")))) (build-system gnu-build-system) (native-inputs `(("pkg-config" ,pkg-config) From 39a4d761c7311fcb43b68af77ee8822477b161a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=8B=E6=96=87=E6=AD=A6?= Date: Sun, 1 Mar 2015 18:41:02 +0800 Subject: [PATCH 28/37] gnu: xfwm4: Update to 4.12.0. * gnu/packages/xfce.scm (xfwm4): Update 4.12.0. --- gnu/packages/xfce.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm index 01b50c48a3..420a819db4 100644 --- a/gnu/packages/xfce.scm +++ b/gnu/packages/xfce.scm @@ -458,7 +458,7 @@ and import the new pictures from your camera.") (define-public xfwm4 (package (name "xfwm4") - (version "4.10.0") + (version "4.12.0") (source (origin (method url-fetch) (uri (string-append "http://archive.xfce.org/xfce/" @@ -466,7 +466,7 @@ and import the new pictures from your camera.") "/src/" name "-" version ".tar.bz2")) (sha256 (base32 - "170zzs7adj47srsi2cl723w9pl8k8awd7w1bpzxby7hj92zmf8s9")))) + "0fnc2ps4k733n9qfpxrz047h1myyqjzxczl7fmkjmqwshvicpx19")))) (build-system gnu-build-system) (native-inputs `(("pkg-config" ,pkg-config) From 8ccf68f9e0d3a29d62d91a115e14e9ce5dca5c83 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=8B=E6=96=87=E6=AD=A6?= Date: Sun, 1 Mar 2015 18:41:57 +0800 Subject: [PATCH 29/37] gnu: xfwm4: Add inputs libdrm and libxdamage. * gnu/packages/xfce.scm (xfwm4): Add libdrm and libxdamage to inputs. --- gnu/packages/xfce.scm | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm index 420a819db4..3ec081133a 100644 --- a/gnu/packages/xfce.scm +++ b/gnu/packages/xfce.scm @@ -472,10 +472,12 @@ and import the new pictures from your camera.") `(("pkg-config" ,pkg-config) ("intltool" ,intltool))) (inputs - `(("libwnck", libwnck-1) + `(("libdrm" ,libdrm) + ("libwnck" ,libwnck-1) + ("libxcomposite" ,libxcomposite) + ("libxdamage" ,libxdamage) ("libxfce4ui" ,libxfce4ui) - ("libxrandr" ,libxrandr) - ("libxcomposite" ,libxcomposite))) + ("libxrandr" ,libxrandr))) (home-page "http://www.xfce.org/") (synopsis "Xfce window manager") (description From 631ac903b680838bfe93b2008b655991cf464568 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Sun, 1 Mar 2015 13:35:06 +0100 Subject: [PATCH 30/37] gnu: Add clalsadrv. * gnu/packages/audio.scm (clalsadrv): New variable. --- gnu/packages/audio.scm | 45 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index ac6bc25c28..05ad39459e 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -199,6 +199,51 @@ bass section with five drawbars. A standalone JACK application and LV2 plugins are provided.") (license license:gpl2))) +(define-public clalsadrv + (package + (name "clalsadrv") + (version "2.0.0") + (source (origin + (method url-fetch) + (uri (string-append + "http://kokkinizita.linuxaudio.org" + "/linuxaudio/downloads/clalsadrv-" + version ".tar.bz2")) + (sha256 + (base32 + "0bsacx3l9065gk8g4137qmz2ij7s9x06aldvacinzlcslw7bd1kq")) + (modules '((guix build utils))) + (snippet + '(substitute* "libs/Makefile" + (("/sbin/ldconfig") "true"))))) + (build-system gnu-build-system) + (arguments + `(#:tests? #f ; no "check" target + #:make-flags (list (string-append "PREFIX=" (assoc-ref %outputs "out"))) + #:phases + (alist-cons-after + 'unpack + 'enter-directory + (lambda _ (chdir "libs")) + (alist-cons-after + 'install + 'install-symlink + (lambda _ + (symlink "libclalsadrv.so" + (string-append (assoc-ref %outputs "out") + "/lib/libclalsadrv.so.2"))) + ;; no configure script + (alist-delete 'configure %standard-phases))))) + (inputs + `(("alsa-lib" ,alsa-lib) + ("fftw" ,fftw))) + (home-page "http://kokkinizita.linuxaudio.org") + (synopsis "C++ wrapper around the ALSA API") + (description + "clalsadrv is a C++ wrapper around the ALSA API simplifying access to +ALSA PCM devices.") + (license license:gpl2+))) + (define-public freepats (package (name "freepats") From eb0fb087b996cf7b4dcc59dec32442a0d56bf65f Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Sat, 21 Feb 2015 21:53:02 +0100 Subject: [PATCH 31/37] gnu: Add AlsaModularSynth. * gnu/packages/audio.scm (alsa-modular-synth): New variable. --- gnu/packages/audio.scm | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index 05ad39459e..5a236183bc 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -53,6 +53,40 @@ #:use-module (gnu packages xml) #:use-module (srfi srfi-1)) +(define-public alsa-modular-synth + (package + (name "alsa-modular-synth") + (version "2.1.1") + (source (origin + (method url-fetch) + (uri (string-append "mirror://sourceforge/alsamodular/ams-" + version ".tar.bz2")) + (sha256 + (base32 + "1nb7qzzqlqa2x8h797jbwi18ihnfkxqg9lyi0c4nvf8ybwzxkzd2")))) + (build-system gnu-build-system) + (inputs + `(("alsa-lib" ,alsa-lib) + ;; We cannot use zita-alsa-pcmi (the successor of clalsadrv) due to + ;; license incompatibility. + ("clalsadrv" ,clalsadrv) + ("fftw" ,fftw) + ("jack" ,jack-1) + ("ladspa" ,ladspa) + ("liblo" ,liblo) + ("qt" ,qt-4))) + (native-inputs + `(("pkg-config" ,pkg-config))) + (home-page "http://alsamodular.sourceforge.net/") + (synopsis "Realtime modular synthesizer and effect processor") + (description + "AlsaModularSynth is a digital implementation of a classical analog +modular synthesizer system. It uses virtual control voltages to control the +parameters of the modules. The control voltages which control the frequency +e.g. of the VCO (Voltage Controlled Oscillator) and VCF (Voltage Controlled +Filter) modules follow the convention of 1V / Octave.") + (license license:gpl2))) + (define-public aubio (package (name "aubio") From 76212b57f6a2eb042186c1264c8ac04e0bce85e1 Mon Sep 17 00:00:00 2001 From: Mathieu Lirzin Date: Sun, 1 Mar 2015 14:12:41 +0100 Subject: [PATCH 32/37] gnu: Add xbindkeys. * gnu/packages/xdisorg.scm (xbindkeys): New variable. --- gnu/packages/xdisorg.scm | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm index d0c983dc78..67aa34a84b 100644 --- a/gnu/packages/xdisorg.scm +++ b/gnu/packages/xdisorg.scm @@ -4,6 +4,7 @@ ;;; Copyright © 2014 Eric Bavier ;;; Copyright © 2014, 2015 Alex Kost ;;; Copyright © 2013, 2015 Ludovic Courtès +;;; Copyright © 2015 Mathieu Lirzin ;;; ;;; This file is part of GNU Guix. ;;; @@ -32,6 +33,7 @@ #:use-module (gnu packages glib) #:use-module (gnu packages perl) #:use-module (gnu packages linux) + #:use-module (gnu packages guile) #:use-module (gnu packages xorg)) ;; packages outside the x.org system proper @@ -420,3 +422,34 @@ X Window System.") "XOSD provides a C library and a simple utility (osd_cat) for displaying transparent text on your screen.") (license license:gpl2+))) + +(define-public xbindkeys + (package + (name "xbindkeys") + (version "1.8.6") + (source (origin + (method url-fetch) + ;; Download from the savannah mirror list fails + (uri (string-append + "http://www.nongnu.org/xbindkeys/xbindkeys-" + version + ".tar.gz")) + (sha256 + (base32 + "060df6d8y727jp1inp7blp44cs8a7jig7vcm8ndsn6gw36z1h3bc")))) + (build-system gnu-build-system) + (inputs + `(("libx11" ,libx11) + ("guile" ,guile-2.0))) + (home-page "http://www.nongnu.org/xbindkeys/") + (synopsis "Associate a combination of keys with a shell command") + (description + "XBindKeys is a program that allows you to launch shell commands with +your keyboard or your mouse under the X Window System. It links commands to +keys or mouse buttons, using a configuration file. It's independent of the +window manager and can capture all keyboard keys (ex: Power, Wake...). It +optionally supports a Guile-based configuration file layout, which enables you +to access all XBindKeys internals, so you can have key combinations, double +clicks or timed double clicks take actions. Also all functions that work in +Guile will work for XBindKeys.") + (license license:gpl2+))) From cb03a9b6a2eb50935d591039fdda2d2365358f24 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Taylan=20Ulrich=20Bay=C4=B1rl=C4=B1/Kammer?= Date: Sat, 21 Feb 2015 22:28:45 +0100 Subject: [PATCH 33/37] gnu: ecl: Update to version 15.2.21. * gnu/packages/lisp.scm (ecl): Update to version 15.2.21, and disable the test suite because ECL now fails to initialize during 'make check'. --- gnu/packages/lisp.scm | 49 ++++++++++++++++++++++++------------------- 1 file changed, 28 insertions(+), 21 deletions(-) diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm index 5db3fa98f9..c592fbd83f 100644 --- a/gnu/packages/lisp.scm +++ b/gnu/packages/lisp.scm @@ -97,7 +97,7 @@ interface to the Tk widget system.") (define-public ecl (package (name "ecl") - (version "13.5.1") + (version "15.2.21") (source (origin (method url-fetch) @@ -105,33 +105,40 @@ interface to the Tk widget system.") (version-major+minor version) "/ecl-" version ".tgz")) (sha256 - (base32 "18ic8w9sdl0dh3kmyc9lsrafikrd9cg1jkhhr25p9saz0v75f77r")))) + (base32 "05di23v977byf67rq5bdshw8lqbby1ycbscdcl1vca0z6r1s204j")))) (build-system gnu-build-system) + ;; src/configure uses 'which' to confirm the existence of 'gzip'. (native-inputs `(("which" ,which))) (inputs `(("gmp" ,gmp) ("libatomic-ops" ,libatomic-ops) ("libgc" ,libgc) ("libffi" ,libffi))) (arguments - '(#:phases - ;; The test-suite seems to assume that ECL is installed. So re-order - ;; the phases, then reference the installed executable. - (let* ((check-phase (assq-ref %standard-phases 'check)) - (rearranged-phases - (alist-cons-after 'install 'check check-phase - (alist-delete 'check %standard-phases)))) - (alist-cons-before - 'check 'pre-check - (lambda* (#:key outputs #:allow-other-keys) - (substitute* '("build/tests/Makefile") - (("ECL=ecl") - (string-append - "ECL=" (assoc-ref outputs "out") "/bin/ecl")))) - rearranged-phases)) - ;; Parallel builds explicitly not supported: - ;; http://sourceforge.net/p/ecls/bugs/98/ - #:parallel-build? #f - #:parallel-tests? #f)) + '(#:tests? #f + ;; During 'make check', ECL fails to initialize with "protocol not + ;; supported", presumably because /etc/protocols is missing in the + ;; build environment. See . + ;; + ;; Should the test suite be re-enabled, it might be necessary to add + ;; '#:parallel-tests #f'. See the same bug report as above. + ;; + ;; The following might also be necessary, due to 'make check' assuming + ;; ECL is installed. See . + ;; + ;; #:phases + ;; (let* ((check-phase (assq-ref %standard-phases 'check)) + ;; (rearranged-phases + ;; (alist-cons-after 'install 'check check-phase + ;; (alist-delete 'check %standard-phases)))) + ;; (alist-cons-before + ;; 'check 'pre-check + ;; (lambda* (#:key outputs #:allow-other-keys) + ;; (substitute* '("build/tests/Makefile") + ;; (("ECL=ecl") + ;; (string-append + ;; "ECL=" (assoc-ref outputs "out") "/bin/ecl")))) + ;; rearranged-phases)) + )) (home-page "http://ecls.sourceforge.net/") (synopsis "Embeddable Common Lisp") (description "ECL is an implementation of the Common Lisp language as From 9041d935c42b537e7423630fc1030f59a649a3d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Sun, 1 Mar 2015 22:13:51 +0100 Subject: [PATCH 34/37] gnu: gnupg-1: Update to 1.4.19. * gnu/packages/gnupg.scm (gnupg-1): Update to 1.4.19. --- gnu/packages/gnupg.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/packages/gnupg.scm b/gnu/packages/gnupg.scm index 9bc75b2329..62816eb5a9 100644 --- a/gnu/packages/gnupg.scm +++ b/gnu/packages/gnupg.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2012, 2013, 2014 Ludovic Courtès +;;; Copyright © 2012, 2013, 2014, 2015 Ludovic Courtès ;;; Copyright © 2013 Andreas Enge ;;; Copyright © 2014 Eric Bavier ;;; Copyright © 2014 Mark H Weaver @@ -206,14 +206,14 @@ libskba (working with X.509 certificates and CMS data).") (define-public gnupg-1 (package (inherit gnupg) - (version "1.4.18") + (version "1.4.19") (source (origin (method url-fetch) (uri (string-append "mirror://gnupg/gnupg/gnupg-" version ".tar.bz2")) (sha256 (base32 - "1233bppjvdpbbl425ii6l7xvgy0879ghhnmwrph5b6c4g3dgvddp")))) + "11pxx26sfilh0vswylh9mhiifw5yffw7nn733zknw3sb0jfk22bz")))) (inputs `(("zlib" ,guix:zlib) ("bzip2" ,guix:bzip2) From ec35d364959078ac8e452db3ddc09ff0143d89da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Sun, 1 Mar 2015 22:21:53 +0100 Subject: [PATCH 35/37] gnu: libpsl: Fix link flag in 'libpsl.pc'. * gnu/packages/web.scm (libpsl)[source]: Add 'snippet' and 'modules' fields. --- gnu/packages/web.scm | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm index 5296c43c53..fd1d6dd4c7 100644 --- a/gnu/packages/web.scm +++ b/gnu/packages/web.scm @@ -248,7 +248,12 @@ for efficient socket-like bidirectional reliable communication channels.") (sha256 (base32 "10s7xxxx6pp4ydp3san69sa6q379ih3pv92fyi565ggmlw8igv7a")) - (file-name (string-append name "-" version ".tar.gz")))) + (file-name (string-append name "-" version ".tar.gz")) + (modules '((guix build utils))) + (snippet + ;; Believe it or not, the .pc is invalid. Fix it. + '(substitute* "libpsl.pc.in" + (("-llibpsl") "-lpsl"))))) (build-system gnu-build-system) (inputs `(("icu4c" ,icu4c))) ;; The release tarball lacks the generated files. From 6b9540bcff0b57058aa30823b9815a9998fd544a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Sun, 1 Mar 2015 22:22:22 +0100 Subject: [PATCH 36/37] gnu: wget: Update to 1.16.2. * gnu/packages/wget.scm (wget): Update to 1.16.2. [inputs]: Add PKG-CONFIG. --- gnu/packages/wget.scm | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/gnu/packages/wget.scm b/gnu/packages/wget.scm index 8debe4baea..3ca297d90c 100644 --- a/gnu/packages/wget.scm +++ b/gnu/packages/wget.scm @@ -1,6 +1,6 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2012 Nikita Karetnikov -;;; Copyright © 2014 Ludovic Courtès +;;; Copyright © 2014, 2015 Ludovic Courtès ;;; ;;; This file is part of GNU Guix. ;;; @@ -24,6 +24,7 @@ #:use-module (gnu packages python) #:use-module (gnu packages perl) #:use-module (gnu packages web) + #:use-module (gnu packages pkg-config) #:use-module (guix packages) #:use-module (guix download) #:use-module (guix build-system gnu)) @@ -31,7 +32,7 @@ (define-public wget (package (name "wget") - (version "1.16.1") + (version "1.16.2") (source (origin (method url-fetch) @@ -39,14 +40,15 @@ version ".tar.xz")) (sha256 (base32 - "0csdw41hixa4kd0m19r7p41sip1hlnkp5y62bdzq9zhmxq3wg5ib")))) + "1mfpvhgzvpvw36wmkwyyds3ilz74s2gn8yjqvynkbc8frcdxxpx7")))) (build-system gnu-build-system) (inputs `(("gnutls" ,gnutls) ("libidn" ,libidn) ("libpsl" ,libpsl))) (native-inputs - `(("perl" ,perl) + `(("pkg-config" ,pkg-config) + ("perl" ,perl) ("python" ,python) ;for testenv suite ("perl-http-daemon" ,perl-http-daemon) ("perl-io-socket-ssl" ,perl-io-socket-ssl))) From afff9058a0a9a3f3d633f563bb8a1a7d9e503165 Mon Sep 17 00:00:00 2001 From: Mark H Weaver Date: Sun, 1 Mar 2015 19:02:08 -0500 Subject: [PATCH 37/37] gnu: gnupg: Update to 2.0.27. * gnu/packages/gnupg.scm (gnupg): Update to 2.0.27. --- gnu/packages/gnupg.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/packages/gnupg.scm b/gnu/packages/gnupg.scm index 62816eb5a9..3b52351fec 100644 --- a/gnu/packages/gnupg.scm +++ b/gnu/packages/gnupg.scm @@ -2,7 +2,7 @@ ;;; Copyright © 2012, 2013, 2014, 2015 Ludovic Courtès ;;; Copyright © 2013 Andreas Enge ;;; Copyright © 2014 Eric Bavier -;;; Copyright © 2014 Mark H Weaver +;;; Copyright © 2014, 2015 Mark H Weaver ;;; ;;; This file is part of GNU Guix. ;;; @@ -165,14 +165,14 @@ specifications are building blocks of S/MIME and TLS.") (define-public gnupg (package (name "gnupg") - (version "2.0.26") + (version "2.0.27") (source (origin (method url-fetch) (uri (string-append "mirror://gnupg/gnupg/gnupg-" version ".tar.bz2")) (sha256 (base32 - "1q5qcl5panrvcvpwvz6nl9gayl5a6vwvfhgdcxqpmbl2qc6y6n3p")))) + "1wihx7dphacg9fy5wfj93h236lr1w5gwzh7ir3js37wi9cz6sr2p")))) (build-system gnu-build-system) (inputs `(("bzip2" ,guix:bzip2)