Age | Commit message (Expand) | Author |
2013-01-22 | guix-package: Fix `--roll-back' when `--profile' is not passed....* guix-package.in (roll-back): Fix file name of PREVIOUS-PROFILE, which
could end up containing the dirname twice.
Reported by Nikita and Andreas.
* tests/guix-package.sh: Add test.
| Ludovic Courtès |
2013-01-18 | distro: Rename (distro) to (gnu packages)....* distro.scm: Rename to...
* gnu/packages.scm: ... this. Update all users accordingly.
* Makefile.am (MODULES): Adjust accordingly.
* po/POTFILES.in: Likewise.
| Ludovic Courtès |
2013-01-18 | distro: Change the module name space to (gnu ...)....* distro: Rename to...
* gnu: ... this. Update module names accordingly.
* Makefile.am: Adjust accordingly.
* po/POTFILES.in: Likewise.
* distro.scm: Search for files under /gnu/packages instead of
/distro/packages.
* gnu/packages/base.scm (ld-wrapper-boot3): Likewise.
| Ludovic Courtès |
2013-01-17 | guix-package: Allow `--roll-back' to skip missing generations....* guix-package.in (profile-numbers): New procedure.
(latest-profile-number): Use it.
(previous-profile-number): New procedure.
(roll-back): Use it lieu of `1-'. Check whether PREVIOUS-NUMBER is
zero, and raise an error when it is.
* tests/guix-package.sh: Test whether we can roll back over a "hole".
| Ludovic Courtès |
2013-01-17 | guix-package: Add `--roll-back'....Based on a patch by Nikita Karetnikov <nikita@karetnikov.org>.
* guix-package.in (profile-regexp): New procedure.
(latest-profile-number): Remove `%profile-rx', and use
`profile-regexp' instead.
(profile-number, roll-back): New procedure.
(show-help): Add `--roll-back'.
(%options): Likewise.
(guix-package)[process-actions]: First check whether `roll-back?' is
among OPTS, and call `roll-back' if it is, followed by a recursive
call to `process-actions'. Emit the "nothing to be done" message only
when INSTALL or REMOVE is non-empty.
* tests/guix-package.sh (readlink_base): New function.
Add tests for `--roll-back'.
* doc/guix.texi (Invoking guix-package): Document `--roll-back'.
| Ludovic Courtès |
2013-01-15 | guix-package: Connect to the daemon only after arguments have been processed....* guix-package.in (%store): Change to a SRFI-39 parameter. Update all users.
(guix-package): Parametrize %STORE to an open connection after
`parse-options' has been called.
| Ludovic Courtès |
2013-01-14 | guix-package: Create or diagnose missing profile directory....Reported by Andreas Enge.
* guix-package.in (%profile-directory): Honor $NIX_STATE_DIR.
(guix-package)[ensure-default-profile]: Use it.
[process-actions]: Call it when the `profile' option is
%CURRENT-PROFILE.
* tests/guix-package.sh: Add installation test with $HOME set, using the
default profile.
| Ludovic Courtès |
2013-01-13 | guix-package: Fix check for ~/.guix-profile existence....* guix-package.in (guix-package): When testing whether
%USER-ENVIRONMENT-DIRECTORY exists, use `lstat' instead of
`file-exists?'. Reported by Andreas Enge.
| Ludovic Courtès |
2013-01-09 | guix-package: Create ~/.guix-profile when it doesn't exist....* guix-package.in (guix-package): Create the %USER-ENVIRONMENT-DIRECTORY
symlink if it doesn't exist yet.
* doc/guix.texi (Invoking guix-package): Document it.
| Ludovic Courtès |
2013-01-09 | guix-package: Show package outputs in `--list-available'....* guix-package.in (guix-package)[process-query]: For `list-available',
show the outputs of each package.
* doc/guix.texi (Invoking guix-package): Update accordingly.
| Ludovic Courtès |
2013-01-08 | guix-package: Use `guile-final', not `guile-2.0' to build the environment....* guix-package.in (guix-package): Use either %BOOTSTRAP-GUILE or
GUILE-FINAL.
| Ludovic Courtès |
2013-01-08 | guix-package: Be verbose when Guile itself needs to be built....* guix-package.in (guix-package)[guile-missing?]: New procedure.
(guix-package): Always redirect `current-build-output-port' to
`current-error-port' when (guile-missing?).
| Ludovic Courtès |
2013-01-07 | guix-package: Remove `-b' shorthand for `--bootstrap'....* guix-package.in (%options): Remove #\b as an alternate for
"bootstrap".
(show-help): Adjust accordingly.
* tests/guix-package.sh: Use `--bootstrap' instead of `-b'.
| Ludovic Courtès |
2013-01-06 | Update license headers....Change all license headers, except guix/build/* and ld-wrapper.scm, with
this code:
(use-modules (guix build utils)
(srfi srfi-1))
(fluid-set! %default-port-encoding "UTF-8")
(substitute* (remove (lambda (f)
(or (string-contains f ".tar.")
(string-contains f ".git/")
(string-contains f ".so")
(string-suffix? ".o" f)
(string-suffix? ".a" f)
(string-suffix? ".go" f)
(string-suffix? ".pdf" f)
(string-suffix? ".png" f)
(string-suffix? ".info" f)
(equal? (basename f) "guix-daemon")
(equal? (basename f) "nix-setuid-helper")
(string-contains f "nix-upstream/")
(string-contains f "distro/packages/bootstrap/")))
(find-files "." "\\.[a-z]+$"))
(("^([[:graph:]]+) This file is part of Guix." _ comment-start)
(string-append comment-start " This file is part of GNU Guix."))
(("^([[:graph:]]+) Guix --- Nix package management.*" _ comment-start)
(string-append comment-start
" GNU Guix --- Functional package management for GNU\n"))
(("^([[:graph:]]+) Guix is " _ comment-start)
(string-append comment-start " GNU Guix is "))
(("^([[:graph:]]+) along with Guix." _ comment-start)
(string-append comment-start " along with GNU Guix."))
(("^([[:graph:]]+) Copyright \\(C\\)" _ comment-start)
(string-append comment-start " Copyright ©")))
Change headers using C-style comments manually.
| Ludovic Courtès |
2013-01-05 | ui: Factorize bug-report information in `--help'....* guix/config.scm.in (%guix-home-page-url): New variable.
* guix/ui.scm (show-bug-report-information): New procedure.
* guix-build.in (show-help): Use it.
* guix-download.in (show-help): Likewise.
* guix-import.in (show-help): Likewise.
* guix-package.in (show-help): Likewise.
| Ludovic Courtès |
2012-12-13 | guix-package: Avoid use of the `guix' sub-directory for profiles....* guix-package.in (%current-profile): Change to `guix-profile'.
| Ludovic Courtès |
2012-12-13 | guix-package: Use directory names from (guix config)....* guix-package.in (%profile-directory): Use %STATE-DIRECTORY instead of
a hard-coded directory.
| Ludovic Courtès |
2012-12-12 | guix-package: Add `--verbose'; silence the environment's build by default....* guix-package.in (%options): Add `--verbose'.
(show-help): Update accordingly.
(guix-package): Parameterize `current-build-output-port' according to
VERBOSE?. By default, silence the environment build's output.
| Ludovic Courtès |
2012-12-12 | guix-package: Gracefully handle multiple installs of the same path....* guix-package.in (guix-package)[process-actions]: Compute PACKAGES such
that packages listed in INSTALL* are first removed from the remainder
of the list. When PROF is equal to the previous profile's store path,
do nothing. Reported by Andreas Enge <andreas@enge.fr>.
* tests/guix-package.sh: Test the behavior of installing the same store
path twice. When removing a package, omit its version number.
| Ludovic Courtès |
2012-11-19 | guix-package: Extract version strings when installing a direct store path....* guix-package.in (guix-package)[process-actions]: Extract the version
string from store paths.
* tests/guix-package.sh: Adjust accordingly.
| Ludovic Courtès |
2012-11-19 | guix-package: Record the correct version string in manifests....* guix-package.in (guix-package)[find-package]: Return (package-version p),
not VERSION.
| Ludovic Courtès |
2012-11-19 | guix-package: Add `--list-available'....* guix-package.in (show-help, %options): Add `--list-available'.
(guix-package)[process-query]: Add support for `--list-available'.
* doc/guix.texi (Invoking guix-package): Document it.
* tests/guix-package.sh: Add test.
* guix/ui.scm (location->string): New procedure.
* guix/utils.scm: Export <location>.
| Ludovic Courtès |
2012-11-19 | guix-package: Add `--list-installed'....* guix-package.in (show-help, %options): Add `--list-installed'.
(guix-package): Move main body to...
[process-actions]: ... here. New internal procedure.
[process-query]: New procedure.
* tests/guix-package.sh: Add tests for `--list-installed'.
* doc/guix.texi (Invoking guix-package): Document it.
| Ludovic Courtès |
2012-11-19 | guix-package: Fix typo....* guix-package.in (guix-package)[find-package]: Don't use `_' as the
wildcard, to avoid collision with `gettext'.
| Ludovic Courtès |
2012-11-07 | guix-package: Fix handling of the PACKAGE:OUTPUT syntax....* guix-package.in (guix-package)[find-package]: Return the correct NAME
and SUB-DRV when NAME contains #\:.
* tests/guix-package.sh (profile): Add test.
| Ludovic Courtès |
2012-11-07 | guix-package: Fix invalid module use....* guix-package.in: Use (distro packages guile), not (... base).
| Ludovic Courtès |
2012-11-04 | guix-package: Remove extraneous procedures....* guix-package.in (_, N_): Remove.
| Ludovic Courtès |
2012-11-04 | utils: Add `package-name->name+version'....* guix/utils.scm (package-name->name+version): New procedure.
* guix-package.in (guix-package)[find-package]: Use it.
* tests/utils.scm ("package-name->name+version"): New test.
| Ludovic Courtès |
2012-11-03 | guix-package: Use more (guix ui) features....* guix-package.in (leave): Remove.
(guix-package): Wrap body in `with-error-handling'.
| Ludovic Courtès |
2012-11-03 | ui: Factorize `--version'....* guix/ui.scm (show-version-and-exit): New procedure.
* guix-build.in (show-version): Remove.
(%options)["version"]: Use `show-version-and-exit'.
* guix-download.in: Likewise.
* guix-package.in: Likewise.
| Ludovic Courtès |
2012-11-01 | Add a preliminary `guix-package' command-line tool....* guix-package.in, tests/guix-package.sh: New files.
* configure.ac: Output `guix-package'.
* Makefile.am (TESTS): Add `tests/guix-package.sh'.
(bin_SCRIPTS): Add `guix-package'.
| Ludovic Courtès |