summaryrefslogtreecommitdiff
path: root/distro
AgeCommit message (Collapse)Author
2012-09-14distro: gcc: Patch `lib' spec to add `-rpath' for each `-L'.Ludovic Courtès
* distro/base.scm (gcc-4.7): Patch `LIB_SPEC' to add `-rpath' for each `-L'. Spec string suggested by Marc Glisse <marc.glisse@inria.fr>. (libtool): Add `libtool-skip-tests.patch'. * distro/patches/libtool-skip-tests.patch: New file. * Makefile.am (dist_patch_DATA): Add it.
2012-09-12Add (guix ftp) and companion modules.Ludovic Courtès
* guix/ftp-client.scm, guix/ftp.scm, guix/build/ftp.scm: New files. * Makefile.am (MODULES): Add them. * distro/base.scm (libffi): Use `ftp-fetch'.
2012-09-12distro: Use our own Perl during bootstrap.Ludovic Courtès
* distro/base.scm (linux-headers-boot0): Use PERL with %BOOT0-INPUTS instead of calling out to `nixpkgs-derivation*'.
2012-09-12distro: gcc: Add a RUNPATH on libc.Ludovic Courtès
* distro/base.scm (gcc-4.7): Remove unnecessary "libc" input. Add `-rpath LIBC/lib' to `LIB_SPEC'.
2012-09-11distro: Add Perl.Ludovic Courtès
* distro/base.scm (perl): New variable. * distro/patches/perl-no-sys-dirs.patch: New file. * Makefile.am (dist_patch_DATA): Add it.
2012-09-11distro: Bootstrap via a cross-toolchain.Ludovic Courtès
This allows the final toolchain to be completely independent of %BOOTSTRAP-INPUTS. * distro/base.scm (glibc-dynamic-linker): New procedure. (gcc-4.7): Remove #:path-exclusions argument. Check whether LIBC is #f before using it. (glibc): Remove "libc_cv_as_needed" hack. Patch `Makeconfig' to remove `-lgcc_s'. (nix-system->gnu-triplet, boot-triplet): New variables. (binutils-boot0): Turn into a cross-Binutils targeting (boot-triplet SYSTEM). (gcc-boot0): Likewise. Add configure options to make a smaller build. Remove "binutils-source" from the input, and use BINUTILS-BOOT0 instead. (glibc-final): Cross-build using GCC-BOOT0 and BINUTILS-BOOT0. (gcc-boot0-wrapped): New variable. (%boot2-inputs): Use it. (m4-boot2, gmp-boot2, mpfr-boot2, mpc-boot2): Remove. (binutils-final): New variable. (gcc-final): Turn into a joint build with GMP/MPFR/MPC. Use BINUTILS-FINAL. (%boot3-inputs): Adjust accordingly. (%boot4-inputs): Remove. (%final-inputs): Use %BOOT3-INPUTS.
2012-09-07distro: Reduce the bootstrap set.Ludovic Courtès
* distro/base.scm (%bootstrap-inputs): Remove `gnumake', `diffutils', and `findutils'. (gnu-make-boot0, diffutils-boot0, findutils-boot0, %boot0-inputs): New variables. (binutils-boot0, gcc-boot0, linux-headers-boot0, %boot1-inputs): Replace %BOOTSTRAP-INPUTS by %BOOT0-INPUTS. (final-inputs): Remove now unneeded call to `source-properties->location'.
2012-09-06distro: Bootstrap with a joint GCC/Binutils/GMP/MPFR/MPC build.Ludovic Courtès
* distro/base.scm (%bootstrap-inputs): Remove GMP, MPFR, and MPC. (substitute-keyword-arguments): New macro. (gcc-boot0): Add dependency on the Binutils, GMP, MPFR, and MPC tarballs. Add a `unpack-binutils&co' phase to unpack them and symlink them so they get built, and to patch errors in `configure'. (glibc-final): Use `substitute-keyword-arguments' instead of a loop. (gcc-final): Inherit from GCC-4.7 instead of GCC-BOOT0.
2012-09-06distro: gcc: Avoid retention of reference to `sed'.Ludovic Courtès
* distro/base.scm (gcc-4.7)[pre-configure]: Patch fixincl.x.
2012-09-06distro: glibc: Assume a recent Linux kernel.Ludovic Courtès
* distro/base.scm (glibc): Pass "--enable-kernel=2.6.30".
2012-09-05distro: mpc: Upgrade to 1.0.Ludovic Courtès
* distro/base.scm (mpc): Upgrade to 1.0.
2012-09-03distro: bash, readline: Correctly set RUNPATH to the dependencies.Ludovic Courtès
* distro/base.scm (readline): Add configure flags to set an rpath on ncurses. (bash): Add configure flags to set an rpath to readline and ncurses.
2012-09-02distro: Add bzip2.Ludovic Courtès
* distro/base.scm (bzip2): New variable. (%final-inputs): Add bzip2.
2012-09-02distro: Bootstrap standard inputs from Nixpkgs.Ludovic Courtès
This is a first step towards bootstrapping from a set of pre-built, statically-linked binaries. * guix/build-system/gnu.scm (package-with-explicit-inputs, standard-inputs): New procedure. (%store): New variable. (%standard-inputs): Remove. (gnu-build): New `implicit-inputs?' keyword parameter. Use it to choose whether to use `(standard-inputs SYSTEM)' or the empty list. * distro/base.scm (guile-2.0): Remove dependency on XZ, which is now implicit. (%bootstrap-inputs, gcc-boot0, binutils-boot0, linux-headers-boot0, %boot1-inputs, glibc-final, %boot2-inputs, m4-boot2, gmp-boot2, mpfr-boot2, mpc-boot2, %boot3-inputs, gcc-final, %boot4-inputs, %final-inputs): New variables.
2012-09-02distro: recutils: Allow builds with glibc 2.16+.Ludovic Courtès
* distro/base.scm (recutils): Apply. `diffutils-gets-undeclared.patch'.
2012-09-02distro: glibc: Propagate Linux headers.Ludovic Courtès
* distro/base.scm (glibc): Move LINUX-HEADERS from `native-inputs' to `propagated-inputs'. Remove unnecessary `_' in /bin/pwd substitution.
2012-09-02distro: diffutils: Allow builds with glibc 2.16+.Ludovic Courtès
* distro/patches/diffutils-gets-undeclared.patch: New file. * Makefile.am (dist_patch_DATA): Add it. * distro/base.scm (diffutils): Apply. `diffutils-gets-undeclared.patch'.
2012-09-02distro: tar: Allow builds with glibc 2.16+.Ludovic Courtès
* distro/patches/tar-gets-undeclared.patch: New file. * Makefile.am (dist_patch_DATA): Add it. * distro/base.scm (tar): Apply. `tar-gets-undeclared.patch'.
2012-09-01utils: Change `substitute*' to allow iteration over several matches.Ludovic Courtès
* guix/build/utils.scm (substitute): Do not pass the OUT to PROC; use `list-matches' instead of `regexp-exec' and pass a list of matches to PROC. Expect PROC to return a string, and output that. Fold over RX+PROC in order. Use `(read-line p 'concat)' to include the trailing delimiter in LINE. (substitute*): Produce code to iterate over the matches, and return a string, which includes anything from the original line that's in between matches. * distro/base.scm (gcc-4.7, glibc): Adjust accordingly: remove use of (ice-9 regex) and `regexp-substitute/global'; return a string.
2012-09-01distro: m4: Add patch to allow builds with glibc 2.16+.Ludovic Courtès
* distro/base.scm (m4): Use `m4-gets-undeclared.patch'. * distro/patches/m4-gets-undeclared.patch: New file. * Makefile.am (dist_patch_DATA): Add it.
2012-09-01build-system/gnu: Add `path-exclusions' parameter.Ludovic Courtès
* guix/build/gnu-build-system.scm (set-paths): Add new `path-exclusions' parameter; honor it. * guix/build-system/gnu.scm (gnu-build): New `path-exclusions' keyword parameter; pass it to BUILDER. * distro/base.scm (gcc-4.7): Exclude "libc" from $LIBRARY_PATH.
2012-09-01distro: gcc: Allow `libstdc++' to be found.Ludovic Courtès
* distro/base.scm (gcc-4.7): Add `-rpath' arguments to `LIB_SPEC' to allow `libstdc++' to be found by users.
2012-09-01distro: gcc: Pass #:strip-binaries?.Ludovic Courtès
* distro/base.scm (gcc-4.7): Pass #:strip-binaries?.
2012-08-30distro: gcc: Do not store configure flags in the resulting binaries.Ludovic Courtès
* distro/base.scm (gcc-4.7): Add a `post-configure' phase to clear `TOPLEVEL_CONFIGURE_ARGUMENTS' in the top-level `Makefile'.
2012-08-29distro: Add missing Binutils patch.Ludovic Courtès
* distro/patches/binutils-ld-new-dtags.patch: New file. * Makefile.am (dist_patch_DATA): Add it.
2012-08-28distro: Add the GNU C Library.Ludovic Courtès
* distro/base.scm (glibc): New variable.
2012-08-28distro: Add Linux headers.Ludovic Courtès
* distro/base.scm (linux-headers): New variable.
2012-08-25distro: Add GNU Binutils.Ludovic Courtès
* distro/base.scm (binutils): New variable.
2012-08-25distro: Add GCC.Ludovic Courtès
* distro/base.scm (gcc-4.7): New variable.
2012-08-23distro: coreutils: Remove erroneous hack.Ludovic Courtès
* distro/base.scm (coreutils)[arguments]: Remove "FORCE_UNSAFE_CONFIGURE" setting, since in fact, this is no problem when using Nix with separate build users.
2012-08-22distro: Add GNU Coreutils.Ludovic Courtès
* distro/base.scm (coreutils): New variable.
2012-08-22distro: Add XZ.Ludovic Courtès
* distro/base.scm (xz): New variable.
2012-08-22distro: Add GNU gzip.Ludovic Courtès
* distro/base.scm (gzip): New variable.
2012-08-22distro: Add GNU Patch.Ludovic Courtès
* distro/base.scm (patch): New variable.
2012-08-22distro: Add GNU Diffutils.Ludovic Courtès
* distro/base.scm (diffutils): New variable.
2012-08-22distro: Move patches to their own directory.Ludovic Courtès
* 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'.
2012-08-22distro: Add GNU Findutils.Ludovic Courtès
* distro/base.scm (findutils): New variable. * distro/findutils-absolute-paths.patch: New file. * Makefile.am (nobase_dist_guilemodule_DATA): Add it.
2012-08-22distro: Add GNU grep.Ludovic Courtès
* distro/base.scm (grep): New variable.
2012-08-22distro: Add GNU tar.Ludovic Courtès
* distro/base.scm (tar): New variable.
2012-08-22distro: Add GNU sed.Ludovic Courtès
* distro/base.scm (sed): New variable.
2012-08-21distro: Add GNU Bash.Ludovic Courtès
* distro/base.scm (bash): New variable.
2012-08-21distro: Add GNU Make.Ludovic Courtès
* distro/base.scm (gnu-make): New variable. * distro/make-impure-dirs.patch: New file. * Makefile.am (nobase_dist_guilemodule_DATA): Add it.
2012-08-19distro: gmp: Fix typo in URL.Ludovic Courtès
* distro/base.scm (gmp): Fix URL.
2012-07-21distro: Add GNU MPC.Ludovic Courtès
* distro/base.scm (mpc): New variable.
2012-07-21distro: Add GNU MPFR.Ludovic Courtès
* distro/base.scm (mpfr): New variable.
2012-07-21distro: Add GNU recutils.Ludovic Courtès
* distro/base.scm (recutils): New variable.
2012-07-13distro: Add libffi.Ludovic Courtès
* distro/base.scm (libffi): New variable. (guile-2.0): Use it.
2012-07-12distro: Add GNU Ncurses.Ludovic Courtès
* distro/base.scm (ncurses): New variable. (readline): Use it.
2012-07-12distro: Add GNU Readline.Ludovic Courtès
* 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.
2012-07-11Add `nixpkgs-derivation*'; use it in the distro.Ludovic Courtès
* guix/utils.scm (nixpkgs-derivation*): New macro. * distro/base.scm: Use it instead of `nixpkgs-derivation'.