aboutsummaryrefslogtreecommitdiff
Commit message (Expand)AuthorAge
...
* guix-build: Fix the "unrecognized option" error message.•••* guix-build.in (guix-build): Show the option name when an unrecognized option is passed. Ludovic Courtès2012-08-31
* build-system/gnu: Add a `strip' phase.•••* guix/build/gnu-build-system.scm (strip): New procedure. (%standard-phases): Add it. * guix/build-system/gnu.scm (gnu-build): New `strip-binaries?', `strip-flags', and `strip-directories' keyword parameters. Pass them to BUILDER. Ludovic Courtès2012-08-31
* build-system/gnu: Always invoke `configure' with a relative path.•••* guix/build/gnu-build-system.scm (configure): Change SRCDIR to always be a relative path. Ludovic Courtès2012-08-30
* distro: gcc: Do not store configure flags in the resulting binaries.•••* distro/base.scm (gcc-4.7): Add a `post-configure' phase to clear `TOPLEVEL_CONFIGURE_ARGUMENTS' in the top-level `Makefile'. Ludovic Courtès2012-08-30
* define-record-type*: Add the `inherit' syntactic constructor keyword.•••* guix/utils.scm (define-record-type*)[make-syntactic-constructor]: New `type' parameter. Add the `inherit' keyword and corresponding support code. * tests/utils.scm ("define-record-type* & inherit", "define-record-type* & inherit & letrec* behavior"): New tests. Ludovic Courtès2012-08-30
* distro: Add missing Binutils patch.•••* distro/patches/binutils-ld-new-dtags.patch: New file. * Makefile.am (dist_patch_DATA): Add it. Ludovic Courtès2012-08-29
* distro: Add the GNU C Library.•••* distro/base.scm (glibc): New variable. Ludovic Courtès2012-08-28
* distro: Add Linux headers.•••* distro/base.scm (linux-headers): New variable. Ludovic Courtès2012-08-28
* configure.ac: Make 'guild' configure check fatal, otherwise one gets 'compile...Cyprien Nicolas (fulax)2012-08-27
* distro: Add GNU Binutils.•••* distro/base.scm (binutils): New variable. Ludovic Courtès2012-08-25
* distro: Add GCC.•••* distro/base.scm (gcc-4.7): New variable. Ludovic Courtès2012-08-25
* utils: Change `substitute*' to accept a list of files to patch.•••* guix/build/utils.scm (substitute*): Support a list of files as the first argument. Ludovic Courtès2012-08-25
* build-system/gnu: Add `out-of-source?' keyword parameter.•••* guix/build/gnu-build-system.scm (configure): Add an `out-of-source?' keyword parameter; build out-of-source-tree when #t. * guix/build-system/gnu.scm (gnu-build): Add `out-of-source?' keyword parameter. Pass it in BUILDER. Ludovic Courtès2012-08-23
* packages: Raise an error condition upon invalid input.•••* guix/packages.scm (&package-error, &package-input-error): New condition types. (package-derivation): Raise a `&package-input-error' when no match is made. Ludovic Courtès2012-08-23
* distro: coreutils: Remove erroneous hack.•••* distro/base.scm (coreutils)[arguments]: Remove "FORCE_UNSAFE_CONFIGURE" setting, since in fact, this is no problem when using Nix with separate build users. Ludovic Courtès2012-08-23
* distro: Add GNU Coreutils.•••* distro/base.scm (coreutils): New variable. Ludovic Courtès2012-08-22
* distro: Add XZ.•••* distro/base.scm (xz): New variable. Ludovic Courtès2012-08-22
* distro: Add GNU gzip.•••* distro/base.scm (gzip): New variable. Ludovic Courtès2012-08-22
* distro: Add GNU Patch.•••* distro/base.scm (patch): New variable. Ludovic Courtès2012-08-22
* distro: Add GNU Diffutils.•••* distro/base.scm (diffutils): New variable. Ludovic Courtès2012-08-22
* build: Bump version number.•••* configure.ac: Switch to version 0.1. Ludovic Courtès2012-08-22
* Add `close-connection'.•••* guix/store.scm (close-connection): New procedure. Ludovic Courtès2012-08-22
* distro: Move patches to their own directory.•••* Makefile.am (nobase_dist_guilemodule_DATA): Keep only $(MODULES). (patchdir): New variable. (dist_patch_DATA): New variable. Patch files formerly in $(nobase_dist_guilemodule_DATA). (.scm.go): Define `DISTRO_PATCH_DIRECTORY' and `DISTRO_INSTALLED_PATCH_DIRECTORY'. (TESTS_ENVIRONMENT): Define `DISTRO_PATCH_DIRECTORY'. * distro.scm (%patch-directory): New variable. (search-patch): New procedure. * distro/base.scm: Use `search-patch' instead of `(search-path %load-path ...)'. * distro/findutils-absolute-paths.patch, distro/guile-1.8-cpp-4.5.patch, distro/m4-readlink-EINVAL.patch, distro/m4-s_isdir.patch, distro/make-impure-dirs.patch: Move to `distro/patches'. Ludovic Courtès2012-08-22
* distro: Add GNU Findutils.•••* distro/base.scm (findutils): New variable. * distro/findutils-absolute-paths.patch: New file. * Makefile.am (nobase_dist_guilemodule_DATA): Add it. Ludovic Courtès2012-08-22
* distro: Add GNU grep.•••* distro/base.scm (grep): New variable. Ludovic Courtès2012-08-22
* distro: Add GNU tar.•••* distro/base.scm (tar): New variable. Ludovic Courtès2012-08-22
* distro: Add GNU sed.•••* distro/base.scm (sed): New variable. Ludovic Courtès2012-08-22
* distro: Add GNU Bash.•••* distro/base.scm (bash): New variable. Ludovic Courtès2012-08-21
* distro: Add GNU Make.•••* distro/base.scm (gnu-make): New variable. * distro/make-impure-dirs.patch: New file. * Makefile.am (nobase_dist_guilemodule_DATA): Add it. Ludovic Courtès2012-08-21
* build-system/gnu: Augment $PATH with $out for `patch-shebangs'.•••* guix/build/gnu-build-system.scm (patch-shebangs): Add BINDIRS to $PATH, and pass that to `patch-shebang'. Ludovic Courtès2012-08-19
* utils: Add a `path' argument to `patch-shebang'.•••* guix/build/utils.scm (patch-shebang): Add an optional `path' parameter. Change SHEBANG-RX to match the whole interpreter file name. Don't patch when BIN and CMD are the same. Add docstring. Ludovic Courtès2012-08-19
* distro: gmp: Fix typo in URL.•••* distro/base.scm (gmp): Fix URL. Ludovic Courtès2012-08-19
* build-system/gnu: Add a `patch-shebangs' phase.•••* guix/build/gnu-build-system.scm (patch-shebangs): New procedure. (%standard-phases): Add it. * guix/build-system/gnu.scm (gnu-build): New `patch-shebangs?' keyword parameter. Pass it to the builder's `gnu-build'. Ludovic Courtès2012-08-19
* utils: Add `patch-shebang'.•••* guix/build/utils.scm (search-path-as-string->list): New procedure. (dump-port, patch-shebang): New procedures. Ludovic Courtès2012-08-19
* release.nix: Add dependency on GNU libgcrypt.•••* release.nix (build)[configureFlags]: Add `--with-libgcrypt-prefix'. Ludovic Courtès2012-08-17
* build: Add `--with-libgcrypt-prefix'; capture the path to libgcrypt.•••* configure.ac: Add `--with-libgcrypt-prefix'. Substitute `LIBGCRYPT'. * Makefile.am (.scm.go): Pass $(LIBGCRYPT). * guix/utils.scm (%libgcrypt): New variable. (sha256): Use it. Ludovic Courtès2012-08-17
* packages: Add all non-derivation paths to the store.•••* guix/packages.scm (package-derivation): Add all non-derivation paths to the store. Ludovic Courtès2012-08-16
* packages: Allow store paths as inputs.•••* guix/packages.scm (package-derivation): Allow non-derivation store paths as inputs. Ludovic Courtès2012-08-16
* release.nix: Build out of chroot.•••* release.nix: Add `preConfigure' and `__noChroot' attributes. Ludovic Courtès2012-08-14
* build: Pass the right flags for "make distcheck".•••* Makefile.am (AM_DISTCHECK_CONFIGURE_FLAGS): New variable. * configure.ac: Define and substitute `NIX_PREFIX'. Ludovic Courtès2012-08-14
* build: Add `test.drv' to the distribution.•••* Makefile.am (EXTRA_DIST): Add `tests/test.drv'. Ludovic Courtès2012-08-14
* build: Pass $(NIX_INSTANTIATE) to the build and test environments.•••* Makefile.am (.scm.go): Define $NIX_INSTANTIATE. (TESTS_ENVIRONMENT): Likewise, and define $NIX_HASH. * guix/utils.scm (nixpkgs-derivation): Use $NIX_INSTANTIATE when defined. * tests/utils.scm (%nix-hash): New variable. ("sha256 & bytevector->nix-base32-string"): Use it. Ludovic Courtès2012-08-14
* build: Add SRFI-64 to the distribution.•••* Makefile.am (MODULES): Add `srfi/srfi-64.scm' and `srfi/srfi-64.upstream.scm'. Ludovic Courtès2012-08-14
* build: Add release.nix.•••* release.nix: New file. * Makefile.am (EXTRA_DIST): Add it. Ludovic Courtès2012-08-14
* distro: Add GNU MPC.•••* distro/base.scm (mpc): New variable. Ludovic Courtès2012-07-21
* distro: Add GNU MPFR.•••* distro/base.scm (mpfr): New variable. Ludovic Courtès2012-07-21
* distro: Add GNU recutils.•••* distro/base.scm (recutils): New variable. Ludovic Courtès2012-07-21
* distro: Add libffi.•••* distro/base.scm (libffi): New variable. (guile-2.0): Use it. Ludovic Courtès2012-07-13
* distro: Add GNU Ncurses.•••* distro/base.scm (ncurses): New variable. (readline): Use it. Ludovic Courtès2012-07-12
* distro: Add GNU Readline.•••* distro/base.scm (readline): New variable. (guile-1.8, guile-2.0): Use it. * distro/readline-link-ncurses.patch: New file. * Makefile.am (nobase_dist_guilemodule_DATA): Add it. Ludovic Courtès2012-07-12