summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
| * | daemon: Update to Nix 1.2-1-ge087bfe.Ludovic Courtès2012-12-09
| | |
| * | doc: Add new dependencies in `README'.Ludovic Courtès2012-12-06
| | | | | | | | | | | | | | | * README (Hacking): Rename to... (Requirements): ... this. Add the daemon's dependencies.
| * | daemon: Add more options.Ludovic Courtès2012-12-06
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * nix/nix-daemon/guix-daemon.cc (GUIX_OPT_BUILD_USERS_GROUP, GUIX_OPT_CACHE_FAILURES, GUIX_OPT_LOSE_LOGS, GUIX_OPT_DISABLE_STORE_OPTIMIZATION, GUIX_OPT_IMPERSONATE_LINUX_26): New macros. (options)["build-users-group", "cache-failures", "lose-logs", "disable-store-optimization", "impersonate-linux-2.6"]: New options. (parse_opt): Handle them.
| * | build: Update skip count in `tests/derivations.scm'.Ludovic Courtès2012-12-06
| | | | | | | | | | | | * tests/derivations.scm: When %STORE if #f, skip 11 tests.
| * | build: Run `distcheck' with `--enable-daemon'.Ludovic Courtès2012-12-06
| | | | | | | | | | | | * Makefile.am (AM_DISTCHECK_CONFIGURE_FLAGS): Add `--enable-daemon'.
| * | build: Add missing daemon header to the distribution.Ludovic Courtès2012-12-06
| | | | | | | | | | | | | | | * daemon.am (guix_daemon_headers): New variable. (noinst_HEADERS): Add it.
| * | build: Capture configure-time settings in (guix config).Ludovic Courtès2012-12-06
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * configure.ac: Compute and substitute `guix_localstatedir'. * m4/guix.m4: Substitute `guix_system'. * guix/config.scm.in (%store-directory, %store-directory, %system): New variables. * guix/store.scm (%nix-state-dir): Remove. (%default-socket-path): Use %STATE-DIRECTORY as the default. (%store-prefix): Use %STORE-DIRECTORY as the default. * guix/utils.scm (%current-system): Default to %SYSTEM.
| * | build: Run all the tests against the just-built daemon.Ludovic Courtès2012-12-06
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * test-env.in: New file. * configure.ac: Add it to `AC_CONFIG_FILES' and `commands-exec'. * config-daemon.ac: Set and substitute `GUIX_TEST_ROOT'. * Makefile.am (SCM_LOG_COMPILER, SH_LOG_COMPILER): Use it in lieu of `pre-inst-env'. * daemon.am (test_root): Remove (AM_TESTS_ENVIRONMENT): Remove `TEST_ROOT'. (clean-local): Use $(GUIX_TEST_ROOT); make files writable before removing them.guix_test_root * tests/guix-daemon.sh: Remove `NIX_' variable settings; don't launch `guix-daemon'.
| * | tests: Remove hard-coded /nix/store.Ludovic Courtès2012-12-05
| | | | | | | | | | | | | | | * tests/utils.scm ("store-path-package-name"): Use (%store-prefix) instead of a hard-coded "/nix/store".
| * | daemon: Add `list-runtime-roots' script.Ludovic Courtès2012-12-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * nix/scripts/list-runtime-roots.in: New file. * config-daemon.ac: Add `AC_CONFIG_FILES' invocation for it. * daemon.am (nodist_pkglibexec_SCRIPTS): New variable. (AM_TESTS_ENVIRONMENT): Define `top_builddir'. * tests/guix-daemon.sh: Export `NIX_ROOT_FINDER'. * nix/sync-with-upstream: Substitute the path to the root finder in libstore/gc.cc.
| * | daemon: Disable use of chroots when support is lacking.Ludovic Courtès2012-12-05
| | | | | | | | | | | | | | | | | | * nix/nix-daemon/guix-daemon.cc (options)[!HAVE_CHROOT]: Mention that `--disable-chroot' has no effect. (main)[!HAVE_CHROOT]: Set `useChroot' to false.
| * | daemon: Add test.Ludovic Courtès2012-12-04
| | | | | | | | | | | | | | | | | | * daemon.am (test_root, AM_TESTS_ENVIRONMENT): New variables. (clean-local): New target. * tests/guix-daemon.sh: New file.
| * | build: daemon: Add missing feature tests.Ludovic Courtès2012-12-04
| | | | | | | | | | | | | | | * config-daemon.ac: Add feature tests needed for the daemon code. Taken from Nix's `configure.ac'.
| * | build: daemon: Remove extraneous quotes in CPP macro `SYSTEM'.Ludovic Courtès2012-12-04
| | | | | | | | | | | | * config-daemon.ac: Remove extraneous quotes in definition of `SYSTEM'.
| * | daemon: Fix typo in libgcrypt bindings.Ludovic Courtès2012-12-04
| | | | | | | | | | | | | | | | | | | | | * nix/libutil/md5.h (MD5_Final): Pass RESBUF as the first argument to `guix_hash_final'. * nix/libutil/sha1.h (SHA1_Final): Likewise. * nix/libutil/sha256.h (SHA256_Final): Likewise.
| * | Merge branch 'master' into nix-integrationLudovic Courtès2012-12-04
| |\ \
| * | | build: Add `bootstrap' and `sync-with-upstream' scripts.Ludovic Courtès2012-12-03
| | | | | | | | | | | | | | | | | | | | | | | | * bootstrap, nix/sync-with-upstream: New files. * Makefile.am (EXTRA_DIST): Add `bootstrap'. * daemon.am (EXTRA_DIST): Add `nix/sync-with-upstream'.
| * | | build: Add Nix as a sub-module.Ludovic Courtès2012-12-03
| | | | | | | | | | | | | | | | * .gitmodules, nix-upstream: New files.
| * | | build: Include a copy of Nix's libstore and daemon; build it.Ludovic Courtès2012-12-03
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * configure.ac: Call `AC_USE_SYSTEM_EXTENSIONS', and `GUIX_SYSTEM_TYPE'. Add `--with-store-dir' option, and substitute `storedir'. Include `config-daemon.ac'. * config-daemon.ac: New file. * Makefile.am [BUILD_DAEMON]: Include `daemon.am'. * daemon.am: New file. * m4/guix.m4 (GUIX_SYSTEM_TYPE): New macro. * nix/libutil/gcrypt-hash.cc, nix/libutil/gcrypt-hash.hh, nix/libutil/md5.h, nix/libutil/sha1.h, nix/libutil/sha256.h, nix/nix-daemon/guix-daemon.cc, nix/nix-daemon/shared.hh: New files.
* | | | guix-package: Add `--verbose'; silence the environment's build by default.Ludovic Courtès2012-12-12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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.
* | | | doc: Fix typos.Ludovic Courtès2012-12-12
| | | | | | | | | | | | | | | | * doc/guix.texi: Fix typos. Reported by Andreas Enge <andreas@enge.fr>.
* | | | licenses: Add 'bsd-style', 'expat', 'gpl1', 'gpl1+', 'lgpl2.0', and 'lgpl2.0+'.Nikita Karetnikov2012-12-12
| | | | | | | | | | | | | | | | | | | | * guix/licenses.scm (bsd-style, expat, gpl1, gpl1+) (lgpl2.0, lgpl2.0+): New variables.
* | | | tests: Remove `t-profile' files on exit.Ludovic Courtès2012-12-12
| | | | | | | | | | | | | | | | | | | | * tests/guix-package.sh: Use a trap on EXIT to remove profile-related files. Reported by Andreas Enge <andreas@enge.fr>.
* | | | guix-package: Gracefully handle multiple installs of the same path.Ludovic Courtès2012-12-12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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.
* | | | Have `%nixpkgs-directory' default to #f when $NIXPKGS is the empty string.Ludovic Courtès2012-12-10
| | | | | | | | | | | | | | | | | | | | | | | | * guix/utils.scm (%nixpkgs-directory): Set to #f when the `NIXPKGS' environment variable is set but empty. Reported by Andreas Enge <andreas@enge.fr>.
* | | | distro: lout: Delay use of of `nixpkgs-derivation'.Ludovic Courtès2012-12-10
| | | | | | | | | | | | | | | | | | | | * distro/packages/lout.scm (lout): Don't fork with `nixpkgs-derivation', to avoid any issues in the absence of `nix-instantiate'.
* | | | derivations: Distinguish direct store paths from files within a store path.Ludovic Courtès2012-12-10
| |_|/ |/| | | | | | | | | | | * guix/derivations.scm (derivation)[direct-store-path?]: New procedure. Use it to determine which inputs must be added to the store.
* | | store: Add GC-related operations.Ludovic Courtès2012-12-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * guix/store.scm (gc-action): New enumerate type. (read-long-long, read-string-list, write-store-path, write-store-path-list, read-store-path-list): New procedures. (write-arg): Add support for `store-path' and `store-path-list'. (read-arg): Add support for `store-path-list'. (define-operation): Add support for multiple-value returns. (run-gc, live-paths, dead-paths, collect-garbage, delete-paths): New procedures. (%long-long-max): New macro. * tests/store.scm: New file. * Makefile.am (TESTS): Add it.
* | | store: Add `add-temp-root'.Ludovic Courtès2012-12-09
| | | | | | | | | | | | * guix/store.scm (add-temp-root): New procedure.
* | | Update `THANKS'.Ludovic Courtès2012-12-09
| | |
* | | doc: Correct short name of `--install' option of `guix-package'.Ludovic Courtès2012-12-09
| | | | | | | | | | | | | | | * doc/guix.texi (Invoking guix-package): Fix short form of `--install'. Reported by Andreas Enge <andreas@enge.fr>.
* | | Update `TODO'.Ludovic Courtès2012-12-09
| | |
* | | Change email address in `AUTHORS'.Ludovic Courtès2012-12-09
| | |
* | | Update `AUTHORS'.Ludovic Courtès2012-12-08
| | |
* | | Add (guix licenses).Nikita Karetnikov2012-12-08
| | | | | | | | | | | | | | | * guix/licenses.scm: New file. * Makefile.am (MODULES): Add it.
* | | download: Fix the primary Savannah URL.Ludovic Courtès2012-12-07
| | | | | | | | | | | | | | | * guix/download.scm (%mirrors)[savannah]: Use "http://download.savannah.gnu.org/releases/" as the primary URL.
* | | distro: Add ACL.Nikita Karetnikov2012-12-07
| | | | | | | | | | | | | | | | | | * distro/packages/acl.scm: New file. Dependency on Perl added by Ludovic. * Makefile.am (MODULES): Add it.
* | | distro: Add Attr.Nikita Karetnikov2012-12-07
| | | | | | | | | | | | | | | | | | * distro/packages/attr.scm: New file. Dependency on Perl and `patch-shebang' added by Ludovic. * Makefile.am (MODULES): Add it.
* | | Add (guix gnu-maintenance).Nikita Karetnikov2012-12-05
| |/ |/| | | | | | | * guix/gnu-maintenance.scm: New file. * Makefile.am (MODULES): Add it.
* | guix-build: Don't connect to the daemon when run with `--version' or `--help'.Ludovic Courtès2012-12-04
| | | | | | | | | | | | * guix-build.in (%store): Turn into a SRFI-39 parameter. Update users. (guix-build): Set %STORE and call `open-connection' only after `parse-options' has been called.
* | store: Honor $NIX_STORE_DIR and $NIX_STATE_DIR.Ludovic Courtès2012-12-04
| | | | | | | | | | * guix/store.scm (%nix-state-dir): Honor $NIX_STATE_DIR. (%store-prefix): Honor $NIX_STORE_DIR.
* | derivations: Fix erroneous call to `add-to-store' for local files as input.Ludovic Courtès2012-12-04
| | | | | | | | | | | | | | * guix/derivations.scm (derivation)[inputs]: Fix typo in call to `add-to-store'. * tests/derivations.scm ("derivation with local file as input"): New test. * tests/packages.scm ("trivial with local file as input"): New test.
* | Augment `TODO'.Ludovic Courtès2012-12-04
| |
* | distro: Add GNU lsh.Ludovic Courtès2012-12-04
| | | | | | | | | | | | | | | | | | * distro/packages/lsh.scm, distro/packages/patches/lsh-guile-compat.patch: distro/packages/patches/lsh-no-root-login.patch: distro/packages/patches/lsh-pam-service-name.patch: New files. * Makefile.am (MODULES): Add lsh.scm. (dist_patch_DATA): Add the above patches.
* | distro: Add util-linux.Nikita Karetnikov2012-12-04
| | | | | | | | * distro/packages/linux.scm (util-linux): New variable.
* | distro: Add psmisc.Ludovic Courtès2012-12-04
|/ | | | * distro/packages/linux.scm (psmisc): New variable.
* distro: make-bootstrap: Use `linux' module.Ludovic Courtès2012-12-02
| | | | | * distro/packages/make-bootstrap.scm: Use (distro packages linux). This is a followup to 80fe5c6.
* distro: gnutls: Build sequentially.Ludovic Courtès2012-12-01
| | | | * distro/packages/gnutls.scm (gnutls)[arguments]: New field.
* distro: guile-2.0: Update to 2.0.7.Ludovic Courtès2012-11-30
| | | | | * distro/packages/guile.scm (guile-2.0): Switch to 2.0.7. (guile-2.0/fixed): Stay at 2.0.6.
* distro: Add `guile-2.0/fixed', which should rarely change.Ludovic Courtès2012-11-30
| | | | | * distro/packages/guile.scm (guile-2.0/fixed): New variable. * distro/packages/base.scm (guile-final): Use it.