summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* gnu: Add gnome-doc-utils.Andreas Enge2013-09-22
| | | | | * gnu/packages/gnome.scm: New file. * gnu-system.am (GNU_SYSTEM_MODULES): Add module.
* gnu: Add gst-plugins-base.Andreas Enge2013-09-22
| | | | * gnu/packages/gstreamer.scm (gst-plugins-base): New variable.
* gnu: gstreamer: Depend on python-wrapper.Andreas Enge2013-09-22
| | | | | * gnu/packages/gstreamer.scm (gstreamer): Replace input python by python-wrapper.
* gnu: Add gstreamer.Andreas Enge2013-09-22
| | | | | * gnu/packages/gstreamer.scm: New file. * gnu-system.am (GNU_SYSTEM_MODULES): Add module.
* gnu: xcursor-themes: Install data into package output directory.Andreas Enge2013-09-22
| | | | | * gnu/packages/xorg.scm (xcursor-themes): Install icons into output directory instead of libxcursor.
* gnu: Add python2-pyicu.Andreas Enge2013-09-22
| | | | * gnu/packages/python.scm (python2-pyicu): New variable.
* guix package: Sort the list of generation numbers in '--list-generations'.Ludovic Courtès2013-09-21
| | | | * guix/scripts/package.scm (generation-numbers): Sort the result.
* guix package: Internationalize "Generation" string.Ludovic Courtès2013-09-21
| | | | | * guix/scripts/package.scm (guix-package): Internationalize generation listing.
* Thank Cyrill.Ludovic Courtès2013-09-21
|
* pull: Adjust to 'derivation' API change.Ludovic Courtès2013-09-21
| | | | | | | Fixes <http://bugs.gnu.org/15428>. Reported by Cyrill Schenkel <cyrill.schenkel@gmail.com>. * guix/scripts/pull.scm (guix-pull): 'unpack' returns a single value.
* gnu: Add python-simplejson, python2-simplejson.Andreas Enge2013-09-21
| | | | | * gnu/packages/python.scm (python-simplejson, python2-simplejson): New variables.
* gnu: python2-pysqlite: Fix 'license'.Ludovic Courtès2013-09-21
| | | | | * gnu/packages/python.scm (python2-pysqlite): Refer to (@ (guix licenses) zlib), not to the same-named package.
* gnu: QEMU images boots into dmd.Ludovic Courtès2013-09-21
| | | | | | | | | * gnu/system/dmd.scm: New file. * gnu/system/vm.scm (system-qemu-image): Define dmd services. [populate]: Make var/log and etc/group. [boot]: Execute dmd directly. Add dmd and etc-group as inputs; add the inputs of dmd services. * gnu-system.am (GNU_SYSTEM_MODULES): Add gnu/system/dmd.scm.
* gnu: Add GNU dmd.Ludovic Courtès2013-09-21
| | | | * gnu/packages/system.scm (dmd): New variable.
* guix package: Add '--list-generations'.Nikita Karetnikov2013-09-19
| | | | | | | | | | | | | | * guix/scripts/package.scm: Import (srfi srfi-19). (generation-time, matching-generations): New functions. (show-help): Add '--list-generations'. (%options): Likewise. (guix-package)[process-query]: Add support for '--list-generations'. * guix/ui.scm: Import (srfi srfi-19) and (ice-9 regex). (string->generations, string->duration): New functions. * tests/guix-package.sh: Test '--list-generations'. * tests/ui.scm: Import (srfi srfi-19). Test 'string->generations' and 'string->duration'. * doc/guix.texi (Invoking guix-package): Document '--list-generations'.
* hydra: Pass the directory name of the Nix checkout.Ludovic Courtès2013-09-18
| | | | | * build-aux/hydra/guix.scm (hydra-jobs): Extract the 'file-name' item from NIX-CHECKOUT, and pass that to 'tarball-package'.
* hydra: Fix typo.Ludovic Courtès2013-09-18
| | | | * build-aux/hydra/guix.scm (tarball-package): Unquote 'nix-checkout'.
* hydra: Add missing import.Ludovic Courtès2013-09-18
| | | | | * build-aux/hydra/gnu-system.scm, build-aux/hydra/guix.scm: Use (guix derivations).
* hydra: Return the .drv file names, not the <derivation> objects.Ludovic Courtès2013-09-18
| | | | | | * build-aux/hydra/gnu-system.scm (package->alist): Call 'derivation-file-name' on the result of 'package-derivation'. * build-aux/hydra/guix.scm (package->alist): Likewise.
* hydra: Point the Git submodule to our local copy.Ludovic Courtès2013-09-18
| | | | | | | | * build-aux/hydra/guix.scm (tarball-package): Add 'nix-checkout' parameter. Replace 'patch-bootstrap-script' phase by 'set-nix-module'. (hydra-jobs): Get the 'nix' value from ARGUMENTS, and pass it to 'tarball-package'.
* derivations: 'derivation' and related procedures return a single value.Ludovic Courtès2013-09-18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * guix/derivations.scm (derivation->output-path, derivation->output-paths): New procedures. (derivation-path->output-path): Use 'derivation->output-path'. (derivation-path->output-paths): Use 'derivation->output-paths'. (derivation): Accept 'derivation?' objects as inputs. Return a single value. (build-derivations): New procedure. (compiled-modules): Use 'derivation->output-paths'. (build-expression->derivation)[source-path]: Add case for when the input matches 'derivation?'. [prologue]: Accept 'derivation?' objects in INPUTS. [mod-dir, go-dir]: Use 'derivation->output-path'. * guix/download.scm (url-fetch): Adjust to the single-value return. * guix/packages.scm (package-output): Use 'derivation->output-path'. * guix/scripts/build.scm (guix-build): When the argument is 'derivation-path?', pass it through 'read-derivation'. Use 'derivation-file-name' to print out the .drv file names, and to register them. Use 'derivation->output-path' instead of 'derivation-path->output-path'. * guix/scripts/package.scm (roll-back): Adjust to the single-value return. (guix-package): Use 'derivation->output-path'. * guix/ui.scm (show-what-to-build): Adjust to deal with 'derivation?' objects instead of .drv file names. * gnu/system/grub.scm (grub-configuration-file): Use 'derivation->output-path' instead of 'derivation-path->output-path'. * gnu/system/vm.scm (qemu-image, system-qemu-image): Likewise. * tests/builders.scm, tests/derivations.scm, tests/packages.scm, tests/store.scm, tests/union.scm: Adjust to the new calling convention. * doc/guix.texi (Defining Packages, The Store, Derivations): Adjust accordingly.
* tests: Clarify filtering of the "debug" output.Ludovic Courtès2013-09-18
| | | | | * tests/guix-package.sh: Clearly filter out the "debug" output of 'gnu-make-boot0'.
* derivations: Add a nicer printer.Ludovic Courtès2013-09-18
| | | | * guix/derivations.scm (<derivation>): Add a printer.
* derivations: Keep the .drv file name in <derivation> objects.Ludovic Courtès2013-09-17
| | | | | | | | | * guix/derivations.scm (<derivation>): Add 'file-name' field. (%read-derivation): Use (port-filename DRV-PORT) as the file name for the result. (derivation): Set the 'file-name' field in the result. * tests/derivations.scm ("build derivation with 1 source"): Assert that 'derivation-file-name' returns the right thing.
* gnu: dbus: Add dependency on libX11.Ludovic Courtès2013-09-16
| | | | | * gnu/packages/glib.scm: Use #:export instead of 'define-public'. (dbus): Add LIBX11 as an input.
* Merge branch 'python'Andreas Enge2013-09-14
|\
| * gnu: Add python2-mechanize.Andreas Enge2013-09-13
| | | | | | | | * gnu/packages/python.scm (python2-mechanize): New variable.
| * gnu: Add python2-sqlite.Andreas Enge2013-09-12
| | | | | | | | * gnu/packages/python.scm (python2-sqlite): New variable.
| * gnu: Update python-babel, python2-babel to 1.3.Andreas Enge2013-09-11
| | | | | | | | * gnu/packages/python.scm (python-babel, python2-babel): Update to 1.3.
| * gnu: Add python-dateutil, python2-dateutil.Andreas Enge2013-09-11
| | | | | | | | * gnu/packages/python.scm (python-dateutil, python2-dateutil): New variables.
| * guix: python: Create module installation path and add it to PYTHONPATH duringAndreas Enge2013-09-11
| | | | | | | | | | | | | | | | the installation phase. * guix/build/python-build-system.scm (get-python-version): New procedure. * guix/build/python-build-system.scm (install): Create and add path. * gnu/packages/python.scm (python-setuptools): Drop path creation code.
| * gnu: Add python-setuptools, python2-setuptools.Andreas Enge2013-09-10
| | | | | | | | | | * gnu/packages/python.scm (python-setuptools, python2-setuptools): New variables.
| * guix: python: Do not import %standard-phases from gnu-build-system.Andreas Enge2013-09-10
| | | | | | | | | | * guix/build-system/python.scm (python-build): Drop module gnu-build-system. Thanks to Ludovic Courtès <ludo@gnu.org>.
| * guix: python: Add parameter #:phases to build system.Andreas Enge2013-09-10
| | | | | | | | * guix/build-system/python.scm (python-build): Use parameter #:phases.
| * guix: python: Add package-with-python2, a procedure rewriting a packageAndreas Enge2013-09-08
| | | | | | | | | | | | | | | | | | to compile with Python 2 instead of the default Python 3. * guix/build-system/python.scm (default-python2, package-with-explicit-python, package-with-python2): New procedures. * guix/build-system/python.scm (python2-pytz, python2-babel): Use package-with-python2.
| * guix: python: Add build phase and factor out calls to setup.py.Andreas Enge2013-09-05
| | | | | | | | | | | | | | * guix/build/python-build-system.scm (call-setuppy): New procedure. * guix/build/python-build-system.scm (build): New procedure. * guix/build/python-build-system.scm (check, install): Use call-setuppy. * guix/build/python-build-system.scm (%standard-phases): Add call to build.
| * gnu: python: Disable tests in python2-pytz and python2-babel.Andreas Enge2013-09-05
| | | | | | | | * gnu/packages/python.scm (python2-pytz, python2-babel): Disable tests.
| * gnu: python: Disable tests in pytz and babel.Andreas Enge2013-09-05
| | | | | | | | * gnu/packages/python.scm (python-pytz, python-babel): Disable tests.
| * gnu: python: Honour #:tests? and #:test-target in build system.Andreas Enge2013-09-05
| | | | | | | | | | * guix/build/python-build-system.scm (check): Use named parameters tests? and test-target (default now: "test" instead of "check").
| * gnu: git: Switch back to Python 2.Andreas Enge2013-09-05
| | | | | | | | * gnu/packages/version-control.scm (git): Switch back to Python 2.
| * gnu: python: Implement the python naming scheme for pytz and babel.Andreas Enge2013-09-04
| | | | | | | | | | | | | | | | | | * gnu/packages/python.scm (pytz): Rename this ... * gnu/packages/python.scm (python-pytz): ... to this * gnu/packages/python.scm (python2-pytz): New variable, input python-2. * gnu/packages/python.scm (babel): Rename this ... * gnu/packages/python.scm (python-babel): ... to this * gnu/packages/python.scm (python2-babel): New variable, input python-2.
| * gnu: subversion: Switch back to Python 2.Andreas Enge2013-09-04
| | | | | | | | * gnu/packages/version-control.scm (subversion): Switch back to Python 2.
| * gnu: qemu: Switch back to Python 2.Andreas Enge2013-09-04
| | | | | | | | * gnu/packages/qemu.scm (qemu): Switch back to Python 2.
| * gnu: texlive: Switch back to Python 2.Andreas Enge2013-09-04
| | | | | | | | * gnu/packages/texlive.scm (texlive): Switch back to Python 2.
| * gnu: rubber: Switch back to Python 2.Andreas Enge2013-09-04
| | | | | | | | * gnu/packages/texlive.scm (rubber): Switch back to Python 2.
| * gnu: mesa: Switch back to Python 2.Andreas Enge2013-09-04
| | | | | | | | * gnu/packages/xorg.scm (mesa): Switch back to Python 2.
| * gnu: libxml2: Switch back to Python 2.Andreas Enge2013-09-04
| | | | | | | | * gnu/packages/xml.scm (libxml2): Switch back to Python 2.
| * gnu: zziplib: Switch back to Python 2.Andreas Enge2013-09-04
| | | | | | | | * gnu/packages/zip.scm (zziplib): Switch back to Python 2.
| * gnu: bazaar: Switch back to Python 2.Andreas Enge2013-09-04
| | | | | | | | * gnu/packages/version-control.scm (bazaar): Switch back to Python 2.
| * guix: python: Switch to python-wrapper as the default version for the pythonAndreas Enge2013-09-04
| | | | | | | | | | | | | | | | | | build system (switches to Python 3) and compute python-version instead of passing it as a parameter. * guix/build-system/python.scm (default-python): Switch to python-wrapper. * guix/build-system/python.scm (python-build): Drop parameter #:python-version. * guix/build/python-build-system.scm (wrap): Compute python version from input.