summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* gexp: Add 'local-file' file name resolution test.Ludovic Courtès2016-06-16
| | | | * tests/gexp.scm ("local-file, relative file name"): New test.
* gexp: Add #:select? parameter to 'local-file'.Ludovic Courtès2016-06-16
| | | | | | | | | * guix/gexp.scm (<local-file>)[select?]: New field. (true): New procedure. (%local-file): Add #:select? and honor it. (local-file): Likewise. * tests/gexp.scm ("local-file, #:select?"): New test. * doc/guix.texi (G-Expressions): Adjust accordingly.
* gexp: Move 'current-source-directory' to (guix utils).Ludovic Courtès2016-06-16
| | | | | | * guix/gexp.scm (extract-directory, current-source-directory): Move to... * guix/utils.scm (extract-directory, current-source-directory): ... here. New procedures.
* doc: Fix typos.Ludovic Courtès2016-06-16
| | | | | | | | Reported by ozzloy on #guix. * doc/guix.texi (package Reference): Add missing space. (G-Expressions, Invoking guix build): (Common Build Options): Fix typos.
* gnu: avidemux: Update to 2.6.12.Andreas Enge2016-06-15
| | | | | * gnu/packages/video.scm (avidemux): Update to 2.6.12. [arguments]: Adapt version number of bundled ffmpeg.
* gnu: offlineimap: Update to 6.7.0.1.Efraim Flashner2016-06-15
| | | | * gnu/packages/mail.scm (offlineimap): Update to 6.7.0.1.
* gnu: oxygen-icons: Build with qtbase.Efraim Flashner2016-06-15
| | | | | * gnu/packages/kde-frameworks.scm (oxygen-icons)[inputs]: Remove qt, add qtbase.
* gnu: Add gnome-maps.Leo Famulari2016-06-15
| | | | | * gnu/packages/geo.scm: New file. * gnu/local.mk (GNU_SYSTEM_MODULES): Add it.
* gnu: Add gfbgraph.Leo Famulari2016-06-15
| | | | * gnu/packages/gnome.scm (gfbgraph): New variable.
* gnu: libchamplain: Build Vala bindings.Leo Famulari2016-06-15
| | | | | | * gnu/packages/gnome.scm (libchamplain)[native-inputs]: Add gobject-introspection, vala. [arguments]: New field.
* gnu: vala: Build Vala API (.vapi) generator.Leo Famulari2016-06-15
| | | | | * gnu/packages/gnome.scm (vala)[arguments]: Pass --enable-apigen to #:configure-flags.
* gnu: Add folks.Leo Famulari2016-06-15
| | | | * gnu/packages/gnome.scm (folks): New variable.
* gnu: evolution-data-server: Build Vala bindings.Leo Famulari2016-06-15
| | | | | | * gnu/packages/gnome.scm (evolution-data-server)[arguments]: Add --enable-vala-bindings to #:configure-flags. [native-inputs]: Add vala.
* gnu: telepathy-glib: Enable vala bindings.Leo Famulari2016-06-15
| | | | | | * gnu/packages/glib.scm (telepathy-glib)[arguments]: Add --enable-vala-bindings to #:configure-flags. [native-inputs]: Add vala.
* gnu: Add emacs-ebuild-mode.ng02016-06-15
| | | | | | * gnu/packages/emacs.scm (emacs-ebuild-mode): New variable. Signed-off-by: Alex Kost <alezost@gmail.com>
* gnu: Add emacs-lua-mode.ng02016-06-15
| | | | | | * gnu/packages/emacs.scm (emacs-lua-mode): New variable. Signed-off-by: Alex Kost <alezost@gmail.com>
* gnu: Add r-bsgenome-mmusculus-ucsc-mm10.Ricardo Wurmus2016-06-15
| | | | | * gnu/packages/bioinformatics.scm (r-bsgenome-mmusculus-ucsc-mm10): New variable.
* guix: Add downloader for Mercurial repositories.Ricardo Wurmus2016-06-15
| | | | | | * guix/build/hg.scm: New file. * guix/hg-download.scm: New file. * Makefile.am (MODULES): Add them.
* gnu: openssl: Fix CVE-2016-2177 and CVE-2016-2178.Leo Famulari2016-06-15
| | | | | | | * gnu/packages/patches/openssl-CVE-2016-2177.patch, gnu/packages/patches/openssl-CVE-2016-2178.patch: New files. * gnu/local.mk (dist_patch_DATA): Add them. * gnu/packages/tls.scm (openssl/fixed): Use them.
* gnu: Add python-wcwidth and python2-wcwidth.Danny Milosavljevic2016-06-15
| | | | | | * gnu/packages/python.scm (python-wcwidth, python2-wcwidth): New variables. Co-authored-by: Leo Famulari <leo@famulari.name>
* gnu: Add log4cpp.Ricardo Wurmus2016-06-15
| | | | | * gnu/packages/logging.scm: New file. * gnu/local.mk (GNU_SYSTEM_MODULES): Add it.
* gnu: Add gengetopt.Ricardo Wurmus2016-06-15
| | | | * gnu/packages/popt.scm (gengetopt): New variable.
* gnu: Add teensy-loader-cli.Hartmut Goebel2016-06-15
| | | | | | | | * gnu/packages/flashing-tools.scm (teensy-loader-cli): New variable. * gnu/packages/patches/teensy-loader-cli-help.patch: New file. * gnu/local.mk (dist_patch_DATA): Add it. Co-authored-by: Ludovic Courtès <ludo@gnu.org>
* store: Add #:select? parameter to 'add-to-store'.Ludovic Courtès2016-06-15
| | | | | | | | | | * guix/store.scm (write-arg): Remove 'file' case. (true): New procedure. (add-to-store): Add #:select? parameter and honor it. Use hand-coded stub instead of 'operation'. (interned-file): Add #:select? parameter and honor it. * doc/guix.texi (The Store Monad): Adjust 'interned-file' documentation accordingly.
* gnu: grue-hunter: Move to (gnu packages games).Ludovic Courtès2016-06-15
| | | | | | * gnu/packages/grue-hunter.scm: Remove. Move contents to... * gnu/packages/games.scm (grue-hunter): ... here. New variable. * gnu/local.mk (GNU_SYSTEM_MODULES): Adjust accordingly.
* packages: The 'source' can be any lowerable object.Ludovic Courtès2016-06-15
| | | | | | | | | | | * guix/packages.scm (expand-input): Use 'struct?' instead of 'origin?' when matching SOURCE. (package-source-derivation): Use 'lower-object' instead of 'origin->derivation'. * tests/packages.scm ("package-source-derivation, local-file"): New test. * doc/guix.texi (package Reference): Update 'source' documentation accordingly.
* packages: 'origin->derivation' expects an origin and nothing else.Ludovic Courtès2016-06-15
| | | | | | * guix/packages.scm (origin->derivation): Rename 'source' parameter to 'origin'. Move cases where SOURCE is a string to... (package-source-derivation): ... here.
* packages: Recognize the '.Z' extension.Ludovic Courtès2016-06-15
| | | | | | Reported by thomasd on #guix. * guix/packages.scm (patch-and-repack)[decompression-type]: Add "Z".
* gnu: pumpa: Build with qtbase.Efraim Flashner2016-06-15
| | | | * gnu/packages/pumpio.scm (pumpa)[inputs]: Remove qt, add qtbase.
* gnu: pinentry-qt: Build with qtbase.Efraim Flashner2016-06-15
| | | | * gnu/packages/gnupg.scm (pinentry-qt)[inputs]: Remove qt, add qtbase.
* gnu: Add qttools.Efraim Flashner2016-06-15
| | | | * gnu/packages/qt.scm (qttools): New variable.
* gnu: Add qtlocation.Efraim Flashner2016-06-15
| | | | * gnu/packages/qt.scm (qtlocation): New variable.
* gnu: Add qtwebchannel.Efraim Flashner2016-06-15
| | | | * gnu/packages/qt.scm (qtwebchannel): New variable.
* gnu: Add qtserialport.Efraim Flashner2016-06-15
| | | | * gnu/packages/qt.scm (qtserialport): New variable.
* gnu: Add qtwayland.Efraim Flashner2016-06-15
| | | | * gnu/packages/qt.scm (qtwayland): New variable.
* gnu: Add qtmultimedia.Efraim Flashner2016-06-15
| | | | * gnu/packages/qt.scm (qtmultimedia): New variable.
* gnu: Add qtsensors.Efraim Flashner2016-06-15
| | | | * gnu/packages/qt.scm (qtsensors): New variable.
* gnu: Add qtwebsockets.Efraim Flashner2016-06-15
| | | | * gnu/packages/qt.scm (qtwebsockets): New variable.
* gnu: Add qtconnectivity.Efraim Flashner2016-06-15
| | | | * gnu/packages/qt.scm (qtconnectivity): New variable.
* gnu: Add qtdeclarative.Efraim Flashner2016-06-15
| | | | * gnu/packages/qt.scm (qtdeclarative): New variable.
* gnu: Add qtxmlpatterns.Efraim Flashner2016-06-15
| | | | * gnu/packages/qt.scm (qtxmlpatterns): New variable.
* gnu: Add qtx11extras.Efraim Flashner2016-06-15
| | | | * gnu/packages/qt.scm (qtx11extras): New variable.
* gnu: Add qtimageformats.Efraim Flashner2016-06-15
| | | | * gnu/packages/qt.scm (qtimageformats): New variable.
* gnu: Add qtsvg.Efraim Flashner2016-06-15
| | | | * gnu/packages/qt.scm (qtsvg): New variable.
* import: pypi: read requirements from wheels.Cyril Roelandt2016-06-14
| | | | | | | | * doc/guix.tex (Invoking guix import): Mention that the pypi importer works better with "unzip". * guix/import/pypi.scm (latest-wheel-release, wheel-url->extracted-directory): New procedures. * tests/pypi.scm (("pypi->guix-package, wheels"): New test.
* gnu: julia: Use unbundled release tarball.Ricardo Wurmus2016-06-14
| | | | | | | | | * gnu/packages/julia.scm (julia)[source]: Use smaller tarball without bundled sources. [inputs]: Add inputs for rmath-julia, suitesparse, objconv, dsfmt, and virtualenv. [arguments]: Add phase "prepare-deps" to copy tarballs to their expected locations.
* gnu: perl-dbi: Update to 1.636.Efraim Flashner2016-06-14
| | | | | * gnu/packages/databases.scm (perl-dbi): Update to 1.636. [home-page]: Update it.
* gnu: perl-exporter-lite: Update to 0.08.Efraim Flashner2016-06-14
| | | | | * gnu/packages/perl.scm (perl-exporter-lite): Update to 0.08. [home-page]: Update it.
* gnu: perl-image-exiftool: Update to 10.20.Efraim Flashner2016-06-14
| | | | | * gnu/packages/photo.scm (perl-image-exiftool): Update to 10.20. [home-page]: Update it.
* gnu: perl-test-deep: Update to 1.120.Efraim Flashner2016-06-14
| | | | | * gnu/packages/perl.scm (perl-test-deep): Update to 1.120. [home-page]: Update it.