summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* doc: Document the syntax of the '--remove' argument.Ludovic Courtès2013-11-02
| | | | | * doc/guix.texi (Invoking guix package): Document the syntax of '--remove' patterns.
* guix package: Show the output name of what's being removed.Ludovic Courtès2013-11-01
| | | | | * guix/scripts/package.scm (show-what-to-remove/install): Show the output name of packages being removed.
* guix package: Fix indentation of "will be removed" messages.Ludovic Courtès2013-11-01
| | | | | * guix/scripts/package.scm (show-what-to-remove/install): Remove extra indentation from the removal sentences.
* guix package: Allow removal of a specific package output.Ludovic Courtès2013-11-01
| | | | | | | | | | | | | | | | | Fixes <http://bugs.gnu.org/15756>. * guix/profiles.scm (<manifest-pattern>): New record type. (remove-manifest-entry): Remove. (entry-predicate, manifest-matching-entries): New procedures. (manifest-remove): Accept a list of <manifest-pattern>. (manifest-installed?): Replace 'name' parameter by 'pattern', a <manifest-pattern>. * guix/scripts/package.scm (options->removable): Return a list of <manifest-pattern>. (guix-package)[process-action]: Use 'manifest-matching-entries' to compute the list of packages to remove. * tests/profiles.scm: New file. * Makefile.am (SCM_TESTS): Add it.
* guix package: Separate '--remove' option processing.Ludovic Courtès2013-11-01
| | | | | | * guix/scripts/package.scm (options->removable): New procedure. (guix-package)[process-actions]: Use it. Rename 'remove*' to 'remove' and 'install*' to 'install'.
* ui: Factorize package specification parsing.Ludovic Courtès2013-11-01
| | | | | | | * guix/ui.scm (package-specification->name+version+output): New procedure. * guix/scripts/package.scm (specification->package+output): Use it. * tests/ui.scm ("package-specification->name+version+output"): New test.
* Add (guix profiles).Ludovic Courtès2013-11-01
| | | | | | | | | | | | | | * guix/scripts/package.scm (show-what-to-remove/install): New procedure, moved from... (guix-package): ... here. (<manifest>, make-manifest, <manifest-entry>, profile-manifest, manifest->sexp, sexp->manifest, read-manifest, write-manifest, remove-manifest-entry, manifest-remove, manifest-installed?, manifest=?, profile-regexp, generation-numbers, previous-generation-number, profile-derivation, generation-number, generation-file-name, generation-time, lower-input): Move to... * guix/profiles.scm: ... here. New file. * Makefile.am (MODULES): Add it.
* gnu: Add GCC front ends for Fortran, Go, Objective C, and Objective C++.Nikita Karetnikov2013-11-01
| | | | | * gnu/packages/gcc.scm (custom-gcc, gfortran-4.8, gccgo-4.8) (gcc-objc-4.8, gcc-objc++-4.8): New variables.
* gnu: ffmpeg: Fix typo in configure flags.Andreas Enge2013-11-01
| | | | * gnu/packages/video.scm (ffmpeg): Add "d" in "3d" in configure flags.
* gnu: Add ffmpeg.Andreas Enge2013-11-01
| | | | | * gnu/packages/video.scm: New file. * gnu-system.am (GNU_SYSTEM_MODULES): Add module.
* gnu: pulseaudio: increase timeout of thread test.Mark H Weaver2013-11-01
| | | | | | * gnu/packages/patches/pulseaudio-test-timeouts.patch: New file. * gnu/packages/pulseaudio.scm (pulseaudio): Add patch. * gnu-system.am (dist_patch_DATA): Add patch.
* union: Do not warn when identical files collide.Ludovic Courtès2013-10-31
| | | | | | * guix/build/union.scm (file=?): New procedure. (union-build)[resolve-collision]: Do not warn when identical files collide.
* gnu: Add bridge-utils.Ludovic Courtès2013-10-31
| | | | * gnu/packages/linux.scm (bridge-utils): New variable.
* gnu: libmicrohttpd: Update to 0.9.31.Andreas Enge2013-10-30
| | | | | * gnu/packages/gnunet.scm (libmicrohttpd): Update to 0.9.31, synchronise the description with GNU SRC.
* gnu: Add gst-plugins-base-0.10.Andreas Enge2013-10-30
| | | | * gnu/packages/gstreamer.scm (gst-plugins-base-0.10): New variable.
* gnu: gstreamer-0.10: Propagate input libxml2.Andreas Enge2013-10-30
| | | | * gnu/packages/gstreamer.scm (gstreamer-0.10): Propagate input libxml2.
* guix package: Factorize generation file name computation.Ludovic Courtès2013-10-30
| | | | | | * guix/scripts/package.scm (generation-file-name): New procedure. Change all occurrences of (format #f "~a-~a-link" profile number) to use it.
* guix package: Specify inputs for each manifest entry.Ludovic Courtès2013-10-30
| | | | | | | | | | | | | | | | * guix/scripts/package.scm (<manifest-entry>): Add 'inputs' field. (manifest=?, lower-input): New procedure. (profile-derivation)[builder]: Add #:log-port argument to 'union-build'. [ensure-valid-input]: Remove. Add each entry's inputs to the input list. (options->installable): Return just the list of entries. [package->manifest-entry]: Set 'inputs' field. [canonicalize-deps]: Rename to... [deduplicate]: ... this. Remove input fiddling. (guix-package)[process-actions]: Use 'manifest=?' to compare the new and old manifests. Pass directly PROF-DRV to 'show-what-to-build'. Pass #:print-build-trace #f to 'set-build-options'.
* union: Make the log port a parameter.Ludovic Courtès2013-10-30
| | | | | * guix/build/union.scm (union-build): Add 'log-port' keyword parameter; use it.
* derivations: 'derivation-path->output-path' honors the 'output' parameter.Ludovic Courtès2013-10-30
| | | | | | * guix/derivations.scm (derivation-path->output-path): Pass OUTPUT. * tests/derivations.scm ("multiple-output derivation, derivation-path->output-path"): New test.
* guix package: Always use the term "profile", not "user environment".Ludovic Courtès2013-10-30
| | | | | | | * guix/scripts/package.scm (%user-environment-directory): Rename to... (%user-profile-directory): ... this. Update users accordingly. (profile-derivation): Use the term "profile" instead of "user environment", and use "profile" as the derivation name.
* guix package: Introduce <manifest> and <manifest-entry> types.Ludovic Courtès2013-10-30
| | | | | | | | | | | | | | | | | | | | | | | * guix/scripts/package.scm (<manifest>, <manifest-entry>): New record types. (make-manifest, read-manifest, manifest->sexp, sexp->manifest, read-manifest, write-manifest, remove-manifest-entry, manifest-remove, manifest-installed?): New procedures. (profile-derivation): Take a manifest as the second parameter. Use 'manifest->sexp'. Expect <manifest-entry> objects instead of "tuples". Adjust callers accordingly. (search-path-environment-variables): Changes 'packages' parameter to 'entries'. Rename 'package-in-manifest->package' to 'manifest-entry->package'; expect <manifest-entry> objects. (display-search-paths): Rename 'packages' to 'entries'. (options->installable): Change 'installed' to 'manifest'. Have 'canonicalize-deps' return name/path tuples instead of raw packages. Rename 'package->tuple' to 'package->manifest-entry'. Use <manifest-entry> objects instead of tuples. (guix-package)[process-actions]: Likewise. Rename 'packages' to 'entries'. [process-query]: Use 'manifest-entries' instead of 'manifest-packages'.
* guix package: Better separate option processing.Ludovic Courtès2013-10-30
| | | | | | | | | * guix/scripts/package.scm (find-package): Rename to... (specification->package+output): ... this. Rename 'name' parmameter to 'spec'. Return a package and output name instead of a tuple. (options->installable): New procedure (guix-package)[process-actions]: Use it, and remove corresponding code.
* gnu: Add gstreamer-0.10.Andreas Enge2013-10-30
| | | | | | | * gnu/packages/gstreamer.scm (gstreamer-0.10): New variable. * gnu/packages/patches/gstreamer-0.10-bison3.patch, gnu/packages/patches/gstreamer-0.10-silly-test.patch: New files. * gnu-system.am (dist_patch_DATA): Add patches.
* gnu: mit-krb5: Update to 1.11.3.Andreas Enge2013-10-29
| | | | * gnu/packages/mit-krb5.scm (mit-krb5): Update to 1.11.3.
* guix package: Declutter the entry point.Ludovic Courtès2013-10-29
| | | | | | | * guix/scripts/package.scm (newest-available-packages, find-best-packages-by-name, find-package, upgradeable?): New procedures, moved from... (guix-package): ... here.
* Change indentation rule for 'package' for the common case.Mark H Weaver2013-10-29
| | | | | * .dir-locals.el: Change the indentation rule for 'package' to do the right thing for packages without an inherit clause.
* list-runtime-roots: List files referenced by environment variables.Ludovic Courtès2013-10-29
| | | | | | | | Inspired by <https://github.com/NixOS/nix/compare/772b70952f75...4ddd077bfa9a>. * nix/scripts/list-runtime-roots.in (%store-directory): New variable. (proc-environ-roots): New procedure. (<top-level>): Use it.
* doc: Augment the "Porting" section.Ludovic Courtès2013-10-29
| | | | | | | Reported by Andreas Enge <andreas@enge.fr>. * doc/guix.texi (Porting): Document needed changes to (gnu packages bootstrap) and (gnu packages linux).
* gnu: Add python2-empy.Ludovic Courtès2013-10-29
| | | | * gnu/packages/python.scm (python2-empy): New variable.
* build-system/{cmake,perl}: Don't use (guix build gnu-build-system).Ludovic Courtès2013-10-29
| | | | | | | | | Previously references to '%standard-phases' in builder-side code would refer to the wrong one. * guix/build-system/cmake.scm (cmake-build): Remove (guix build gnu-build-system) from the default MODULES value. * guix/build-system/perl.scm (perl-build): Likewise.
* gnu: gcc-4.8: Upgrade to 4.8.2.Nikita Karetnikov2013-10-28
| | | | * gnu/packages/gcc.scm (gcc-4.8): Upgrade to 4.8.2.
* gnu: mesa: Update URI.Andreas Enge2013-10-26
| | | | * gnu/packages/xorg.scm (mesa): Update URI.
* gnu: lzip: Update to 1.15.Andreas Enge2013-10-26
| | | | * gnu/packages/compression.scm (lzip): Update to 1.15.
* gnu: Add libmikmod.David Thompson2013-10-26
| | | | | | | * gnu/packages/sdl.scm: New file. * gnu-system.am (GNU_SYSTEM_MODULES): Add it. Signed-off-by: Andreas Enge <andreas@enge.fr>
* gnu: Add Pem.Eric Bavier2013-10-26
| | | | | | | * gnu/packages/pem.scm: New file. * gnu-system.am (GNU_SYSTEM_MODULES): Add it. Signed-off-by: Andreas Enge <andreas@enge.fr>
* gnu: Add sharutils.Andreas Enge2013-10-26
| | | | * gnu/packages/compression.scm (sharutils): New variable.
* gnu: rsync: Update to 3.1.0.Andreas Enge2013-10-25
| | | | * gnu/packages/rsync.scm (rsync): Update to 3.1.0.
* gnu: qt: Correct source uri.Andreas Enge2013-10-23
| | | | | * gnu/packages/qt.scm (qt-4): Correct source uri (reported by Cyril Roelandt <tipecaml@gmail.com>).
* gnu: Add GLPK.Andreas Enge2013-10-22
| | | | * gnu/packages/maths.scm (glpk): New variable.
* gnu: Add GNU Alive.Ludovic Courtès2013-10-19
| | | | * gnu/packages/system.scm (alive): New variable.
* build: Build the bootstrap-graph.{png,eps,pdf} under $(top_srcdir).Ludovic Courtès2013-10-18
| | | | | | | | | | Fixes <http://bugs.gnu.org/15640>. Reported by Eric Bavier <ericbavier@gmail.com>. * doc.am (EXTRA_DIST): Add doc/images/bootstrap-graph.pdf to the distribution. (pdf-local, info-local, ps-local): Prepend $(top_srcdir) to the image file names.
* gnu: dfc: Add missing input.Ludovic Courtès2013-10-18
| | | | * gnu/packages/system.scm (dfc): Add 'native-inputs' field.
* gnu: glib: Work around test failure in 'gio/tests/network-address.c'.Ludovic Courtès2013-10-17
| | | | | | * gnu/packages/patches/glib-tests-newnet.patch: New file. * gnu/packages/glib.scm (glib): Use it. * gnu-system.am (dist_patch_DATA): Add it.
* gnu: evince: Set search path for MIME info.Ludovic Courtès2013-10-17
| | | | | | * gnu/packages/gnome.scm (evince): Add #:phases argument. Remove "perl" and "perl-xml-parser" inputs since they are not directly needed; move "intltool" to 'native-inputs'.
* gnu: Add shared-mime-info.Ludovic Courtès2013-10-17
| | | | * gnu/packages/gnome.scm (shared-mime-info): New variable.
* gnu: Add SCons.Ludovic Courtès2013-10-17
| | | | * gnu/packages/python.scm (scons): New variable.
* doc: Improve the copyright notice.Nikita Karetnikov2013-10-17
|
* gnu: harfbuzz: Update to 0.9.22.Andreas Enge2013-10-16
| | | | | * gnu/packages/gtk.scm (harfbuzz): Update to 0.9.22; should solve the test problems on i686.
* Update 'AUTHORS'.Ludovic Courtès2013-10-16
|