2012-06-13 12:01:25 -04:00
|
|
|
# Guix --- Nix package management from Guile. -*- coding: utf-8 -*-
|
|
|
|
# Copyright (C) 2012 Ludovic Courtès <ludo@gnu.org>
|
|
|
|
#
|
|
|
|
# This file is part of Guix.
|
|
|
|
#
|
|
|
|
# Guix is free software; you can redistribute it and/or modify it
|
|
|
|
# under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
# your option) any later version.
|
|
|
|
#
|
|
|
|
# Guix is distributed in the hope that it will be useful, but
|
|
|
|
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2012-10-24 17:10:09 -04:00
|
|
|
bin_SCRIPTS = \
|
|
|
|
guix-build \
|
2012-10-31 20:46:15 -04:00
|
|
|
guix-download \
|
2012-11-04 13:38:31 -05:00
|
|
|
guix-import \
|
2012-10-31 20:46:15 -04:00
|
|
|
guix-package
|
2012-06-30 18:56:24 -04:00
|
|
|
|
2012-06-13 12:01:25 -04:00
|
|
|
MODULES = \
|
Move base32 code to (guix base32).
* guix/utils.scm (bytevector-quintet-ref, bytevector-quintet-ref-right,
bytevector-quintet-length, bytevector-quintet-fold,
bytevector-quintet-fold-right, make-bytevector->base32-string,
%nix-base32-chars, %rfc4648-base32-chars, bytevector->base32-string,
bytevector->nix-base32-string, bytevector-quintet-set!,
bytevector-quintet-set-right!, base32-string-unfold,
base32-string-unfold-right, make-base32-string->bytevector,
base32-string->bytevector, nix-base32-string->bytevector): Move to...
* guix/base32.scm: ... here. New file.
* tests/utils.scm (%nix-hash, "bytevector->base32-string",
"base32-string->bytevector", "nix-base32-string->bytevector", "sha256
& bytevector->base32-string"): Move to...
* tests/base32.scm: ... here. New file
* guix-download.in, guix/derivations.scm, guix/packages.scm,
guix/snix.scm, tests/builders.scm, tests/derivations.scm: Adjust
accordingly.
* guix.scm (%public-modules): Add `base32'.
2012-11-11 16:33:28 -05:00
|
|
|
guix/base32.scm \
|
2012-07-01 09:10:50 -04:00
|
|
|
guix/utils.scm \
|
2012-06-13 12:01:25 -04:00
|
|
|
guix/derivations.scm \
|
2012-11-12 17:10:26 -05:00
|
|
|
guix/download.scm \
|
2012-12-04 18:02:22 -05:00
|
|
|
guix/gnu-maintenance.scm \
|
2012-06-27 17:58:07 -04:00
|
|
|
guix/build-system.scm \
|
|
|
|
guix/build-system/gnu.scm \
|
2012-09-10 16:47:10 -04:00
|
|
|
guix/build-system/trivial.scm \
|
2012-09-12 17:47:49 -04:00
|
|
|
guix/ftp-client.scm \
|
2012-06-13 12:01:25 -04:00
|
|
|
guix/store.scm \
|
2012-10-31 19:50:01 -04:00
|
|
|
guix/ui.scm \
|
2012-11-12 17:10:26 -05:00
|
|
|
guix/build/download.scm \
|
2012-06-13 12:01:25 -04:00
|
|
|
guix/build/gnu-build-system.scm \
|
2012-06-15 04:03:08 -04:00
|
|
|
guix/build/utils.scm \
|
2012-10-29 17:39:46 -04:00
|
|
|
guix/build/union.scm \
|
2012-06-27 19:24:34 -04:00
|
|
|
guix/packages.scm \
|
2012-11-04 13:38:31 -05:00
|
|
|
guix/snix.scm \
|
2012-06-27 19:24:34 -04:00
|
|
|
guix.scm \
|
2012-06-30 10:37:19 -04:00
|
|
|
distro.scm \
|
2012-12-06 20:18:23 -05:00
|
|
|
distro/packages/acl.scm \
|
2012-12-06 19:59:30 -05:00
|
|
|
distro/packages/attr.scm \
|
2012-11-21 19:10:21 -05:00
|
|
|
distro/packages/autotools.scm \
|
2012-09-26 15:58:48 -04:00
|
|
|
distro/packages/base.scm \
|
distro: Split (distro packages base) into several files.
* distro/packages/base.scm (libsigsegv, gawk, perl, m4, gmp, mpfr, mpc,
ncurses, readline, bash, libtool, libunistring, libffi, pkg-config,
libgc): Move to modules of their own.
(guile-1.8, guile-2.0): Move to...
* distro/packages/guile.scm: ... here.
* distro/packages/bash.scm, distro/packages/bdw-gc.scm,
distro/packages/gawk.scm, distro/packages/libffi.scm,
distro/packages/libsigsegv.scm, distro/packages/libtool.scm,
distro/packages/libunistring.scm, distro/packages/m4.scm,
distro/packages/multiprecision.scm, distro/packages/ncurses.scm,
distro/packages/perl.scm, distro/packages/pkg-config.scm,
distro/packages/readline.scm: New files.
2012-11-04 16:37:22 -05:00
|
|
|
distro/packages/bash.scm \
|
|
|
|
distro/packages/bdw-gc.scm \
|
2012-11-22 11:57:37 -05:00
|
|
|
distro/packages/bison.scm \
|
distro: Move bootstrap packages to (distro packages bootstrap).
* distro/packages/base.scm (glibc-dynamic-linker, %bootstrap-guile,
bootstrap-origin, package-from-tarball, %bootstrap-base-url,
%bootstrap-coreutils&co, %bootstrap-binutils, %bootstrap-glibc,
%bootstrap-gcc, %bootstrap-inputs, package-with-bootstrap-guile): Move
to ...
* distro/packages/bootstrap.scm: ... here. New file.
* Makefile.am (MODULES): Add it.
* tests/builders.scm: Use (distro packages bootstrap).
(%bootstrap-guile): Remove.
* tests/packages.scm: Likewise.
* tests/union.scm: Likewise, and remove @@ to access %bootstrap-inputs.
* tests/derivations.scm: Use (distro packages bootstrap) and remove @@
to access %bootstrap-coreutils&co.
* HACKING (When the platform is supported by Nixpkgs): Update
accordingly.
2012-11-04 16:04:41 -05:00
|
|
|
distro/packages/bootstrap.scm \
|
2012-11-04 17:16:58 -05:00
|
|
|
distro/packages/compression.scm \
|
2012-11-25 16:45:42 -05:00
|
|
|
distro/packages/cpio.scm \
|
2012-11-23 19:20:46 -05:00
|
|
|
distro/packages/ddrescue.scm \
|
2012-11-21 07:24:14 -05:00
|
|
|
distro/packages/ed.scm \
|
2012-11-22 12:22:48 -05:00
|
|
|
distro/packages/flex.scm \
|
distro: Split (distro packages base) into several files.
* distro/packages/base.scm (libsigsegv, gawk, perl, m4, gmp, mpfr, mpc,
ncurses, readline, bash, libtool, libunistring, libffi, pkg-config,
libgc): Move to modules of their own.
(guile-1.8, guile-2.0): Move to...
* distro/packages/guile.scm: ... here.
* distro/packages/bash.scm, distro/packages/bdw-gc.scm,
distro/packages/gawk.scm, distro/packages/libffi.scm,
distro/packages/libsigsegv.scm, distro/packages/libtool.scm,
distro/packages/libunistring.scm, distro/packages/m4.scm,
distro/packages/multiprecision.scm, distro/packages/ncurses.scm,
distro/packages/perl.scm, distro/packages/pkg-config.scm,
distro/packages/readline.scm: New files.
2012-11-04 16:37:22 -05:00
|
|
|
distro/packages/gawk.scm \
|
2012-11-22 11:56:35 -05:00
|
|
|
distro/packages/gdbm.scm \
|
2012-11-23 18:31:26 -05:00
|
|
|
distro/packages/gettext.scm \
|
2012-11-04 17:33:58 -05:00
|
|
|
distro/packages/gnupg.scm \
|
2012-11-13 15:44:57 -05:00
|
|
|
distro/packages/gnutls.scm \
|
2012-11-04 16:55:59 -05:00
|
|
|
distro/packages/gperf.scm \
|
distro: Add the `guile', `typesetting', and `databases' package modules.
* distro.scm (package-files): Adjust PREFIX-LEN to use the top-level
directory, not %DISTRO-MODULE-DIRECTORY.
* distro/packages/base.scm (guile-reader, guile-reader/guile-1.8,
guile-reader/guile-2.0, lout, recutils): Move to...
* distro/packages/guile.scm, distro/packages/typesetting.scm,
distro/packages/databases.scm: ... here. New files.
* Makefile.am (MODULES): Add them.
(EXTRA_DIST): Add `.dir-locals.el'.
* .dir-locals.el: New file, with settings formerly in `base.scm'.
2012-09-26 16:17:41 -04:00
|
|
|
distro/packages/guile.scm \
|
2012-11-19 15:42:11 -05:00
|
|
|
distro/packages/help2man.scm \
|
distro: Add the `guile', `typesetting', and `databases' package modules.
* distro.scm (package-files): Adjust PREFIX-LEN to use the top-level
directory, not %DISTRO-MODULE-DIRECTORY.
* distro/packages/base.scm (guile-reader, guile-reader/guile-1.8,
guile-reader/guile-2.0, lout, recutils): Move to...
* distro/packages/guile.scm, distro/packages/typesetting.scm,
distro/packages/databases.scm: ... here. New files.
* Makefile.am (MODULES): Add them.
(EXTRA_DIST): Add `.dir-locals.el'.
* .dir-locals.el: New file, with settings formerly in `base.scm'.
2012-09-26 16:17:41 -04:00
|
|
|
distro/packages/ld-wrapper.scm \
|
2012-11-24 23:04:13 -05:00
|
|
|
distro/packages/less.scm \
|
distro: Split (distro packages base) into several files.
* distro/packages/base.scm (libsigsegv, gawk, perl, m4, gmp, mpfr, mpc,
ncurses, readline, bash, libtool, libunistring, libffi, pkg-config,
libgc): Move to modules of their own.
(guile-1.8, guile-2.0): Move to...
* distro/packages/guile.scm: ... here.
* distro/packages/bash.scm, distro/packages/bdw-gc.scm,
distro/packages/gawk.scm, distro/packages/libffi.scm,
distro/packages/libsigsegv.scm, distro/packages/libtool.scm,
distro/packages/libunistring.scm, distro/packages/m4.scm,
distro/packages/multiprecision.scm, distro/packages/ncurses.scm,
distro/packages/perl.scm, distro/packages/pkg-config.scm,
distro/packages/readline.scm: New files.
2012-11-04 16:37:22 -05:00
|
|
|
distro/packages/libffi.scm \
|
|
|
|
distro/packages/libsigsegv.scm \
|
|
|
|
distro/packages/libunistring.scm \
|
2012-11-27 15:56:37 -05:00
|
|
|
distro/packages/linux.scm \
|
2012-11-04 15:44:42 -05:00
|
|
|
distro/packages/lout.scm \
|
2012-12-04 16:03:21 -05:00
|
|
|
distro/packages/lsh.scm \
|
distro: Split (distro packages base) into several files.
* distro/packages/base.scm (libsigsegv, gawk, perl, m4, gmp, mpfr, mpc,
ncurses, readline, bash, libtool, libunistring, libffi, pkg-config,
libgc): Move to modules of their own.
(guile-1.8, guile-2.0): Move to...
* distro/packages/guile.scm: ... here.
* distro/packages/bash.scm, distro/packages/bdw-gc.scm,
distro/packages/gawk.scm, distro/packages/libffi.scm,
distro/packages/libsigsegv.scm, distro/packages/libtool.scm,
distro/packages/libunistring.scm, distro/packages/m4.scm,
distro/packages/multiprecision.scm, distro/packages/ncurses.scm,
distro/packages/perl.scm, distro/packages/pkg-config.scm,
distro/packages/readline.scm: New files.
2012-11-04 16:37:22 -05:00
|
|
|
distro/packages/m4.scm \
|
distro: Move bootstrap tarball packages to (distro packages make-bootstrap).
* distro/packages/base.scm (binutils-final): Make public.
(static-package, %bash-static, %static-inputs, %static-binaries,
%binutils-static, %binutils-static-stripped, %glibc-stripped,
%gcc-static, %gcc-stripped, %guile-static, %guile-static-stripped,
tarball-package, %bootstrap-binaries-tarball,
%binutils-bootstrap-tarball, %glibc-bootstrap-tarball,
%guile-bootstrap-tarball): Move to...
* distro/packages/make-bootstrap.scm: ... here. New file.
* Makefile.am (MODULES): Add it.
2012-11-06 16:55:44 -05:00
|
|
|
distro/packages/make-bootstrap.scm \
|
distro: Split (distro packages base) into several files.
* distro/packages/base.scm (libsigsegv, gawk, perl, m4, gmp, mpfr, mpc,
ncurses, readline, bash, libtool, libunistring, libffi, pkg-config,
libgc): Move to modules of their own.
(guile-1.8, guile-2.0): Move to...
* distro/packages/guile.scm: ... here.
* distro/packages/bash.scm, distro/packages/bdw-gc.scm,
distro/packages/gawk.scm, distro/packages/libffi.scm,
distro/packages/libsigsegv.scm, distro/packages/libtool.scm,
distro/packages/libunistring.scm, distro/packages/m4.scm,
distro/packages/multiprecision.scm, distro/packages/ncurses.scm,
distro/packages/perl.scm, distro/packages/pkg-config.scm,
distro/packages/readline.scm: New files.
2012-11-04 16:37:22 -05:00
|
|
|
distro/packages/multiprecision.scm \
|
2012-11-24 22:14:01 -05:00
|
|
|
distro/packages/nano.scm \
|
distro: Split (distro packages base) into several files.
* distro/packages/base.scm (libsigsegv, gawk, perl, m4, gmp, mpfr, mpc,
ncurses, readline, bash, libtool, libunistring, libffi, pkg-config,
libgc): Move to modules of their own.
(guile-1.8, guile-2.0): Move to...
* distro/packages/guile.scm: ... here.
* distro/packages/bash.scm, distro/packages/bdw-gc.scm,
distro/packages/gawk.scm, distro/packages/libffi.scm,
distro/packages/libsigsegv.scm, distro/packages/libtool.scm,
distro/packages/libunistring.scm, distro/packages/m4.scm,
distro/packages/multiprecision.scm, distro/packages/ncurses.scm,
distro/packages/perl.scm, distro/packages/pkg-config.scm,
distro/packages/readline.scm: New files.
2012-11-04 16:37:22 -05:00
|
|
|
distro/packages/ncurses.scm \
|
2012-11-13 15:43:30 -05:00
|
|
|
distro/packages/nettle.scm \
|
distro: Split (distro packages base) into several files.
* distro/packages/base.scm (libsigsegv, gawk, perl, m4, gmp, mpfr, mpc,
ncurses, readline, bash, libtool, libunistring, libffi, pkg-config,
libgc): Move to modules of their own.
(guile-1.8, guile-2.0): Move to...
* distro/packages/guile.scm: ... here.
* distro/packages/bash.scm, distro/packages/bdw-gc.scm,
distro/packages/gawk.scm, distro/packages/libffi.scm,
distro/packages/libsigsegv.scm, distro/packages/libtool.scm,
distro/packages/libunistring.scm, distro/packages/m4.scm,
distro/packages/multiprecision.scm, distro/packages/ncurses.scm,
distro/packages/perl.scm, distro/packages/pkg-config.scm,
distro/packages/readline.scm: New files.
2012-11-04 16:37:22 -05:00
|
|
|
distro/packages/perl.scm \
|
|
|
|
distro/packages/pkg-config.scm \
|
2012-11-04 17:08:44 -05:00
|
|
|
distro/packages/pth.scm \
|
distro: Split (distro packages base) into several files.
* distro/packages/base.scm (libsigsegv, gawk, perl, m4, gmp, mpfr, mpc,
ncurses, readline, bash, libtool, libunistring, libffi, pkg-config,
libgc): Move to modules of their own.
(guile-1.8, guile-2.0): Move to...
* distro/packages/guile.scm: ... here.
* distro/packages/bash.scm, distro/packages/bdw-gc.scm,
distro/packages/gawk.scm, distro/packages/libffi.scm,
distro/packages/libsigsegv.scm, distro/packages/libtool.scm,
distro/packages/libunistring.scm, distro/packages/m4.scm,
distro/packages/multiprecision.scm, distro/packages/ncurses.scm,
distro/packages/perl.scm, distro/packages/pkg-config.scm,
distro/packages/readline.scm: New files.
2012-11-04 16:37:22 -05:00
|
|
|
distro/packages/readline.scm \
|
2012-11-13 15:46:10 -05:00
|
|
|
distro/packages/recutils.scm \
|
2012-11-23 17:00:50 -05:00
|
|
|
distro/packages/shishi.scm \
|
2012-11-18 12:42:29 -05:00
|
|
|
distro/packages/system.scm \
|
2012-11-19 15:46:31 -05:00
|
|
|
distro/packages/texinfo.scm \
|
2012-11-25 12:41:21 -05:00
|
|
|
distro/packages/time.scm \
|
2012-11-25 09:58:31 -05:00
|
|
|
distro/packages/wget.scm \
|
2012-11-25 11:19:39 -05:00
|
|
|
distro/packages/which.scm \
|
2012-11-19 15:46:31 -05:00
|
|
|
distro/packages/zile.scm
|
2012-06-13 12:01:25 -04:00
|
|
|
|
distro: Split (distro packages base) into several files.
* distro/packages/base.scm (libsigsegv, gawk, perl, m4, gmp, mpfr, mpc,
ncurses, readline, bash, libtool, libunistring, libffi, pkg-config,
libgc): Move to modules of their own.
(guile-1.8, guile-2.0): Move to...
* distro/packages/guile.scm: ... here.
* distro/packages/bash.scm, distro/packages/bdw-gc.scm,
distro/packages/gawk.scm, distro/packages/libffi.scm,
distro/packages/libsigsegv.scm, distro/packages/libtool.scm,
distro/packages/libunistring.scm, distro/packages/m4.scm,
distro/packages/multiprecision.scm, distro/packages/ncurses.scm,
distro/packages/perl.scm, distro/packages/pkg-config.scm,
distro/packages/readline.scm: New files.
2012-11-04 16:37:22 -05:00
|
|
|
|
2012-11-03 16:07:52 -04:00
|
|
|
GOBJECTS = $(MODULES:%.scm=%.go) guix/config.go
|
2012-06-13 12:01:25 -04:00
|
|
|
|
2012-08-22 11:24:38 -04:00
|
|
|
nobase_dist_guilemodule_DATA = $(MODULES)
|
|
|
|
|
2012-11-25 10:28:52 -05:00
|
|
|
patchdir = $(guilemoduledir)/distro/packages/patches
|
2012-10-27 09:30:08 -04:00
|
|
|
dist_patch_DATA = \
|
|
|
|
distro/packages/patches/binutils-ld-new-dtags.patch \
|
2012-11-25 16:45:42 -05:00
|
|
|
distro/packages/patches/cpio-gets-undeclared.patch \
|
2012-10-27 09:30:08 -04:00
|
|
|
distro/packages/patches/diffutils-gets-undeclared.patch \
|
2012-11-22 12:22:48 -05:00
|
|
|
distro/packages/patches/flex-bison-tests.patch \
|
2012-11-23 18:31:26 -05:00
|
|
|
distro/packages/patches/gettext-gets-undeclared.patch \
|
2012-11-12 17:58:01 -05:00
|
|
|
distro/packages/patches/glibc-no-ld-so-cache.patch \
|
2012-10-27 09:30:08 -04:00
|
|
|
distro/packages/patches/guile-1.8-cpp-4.5.patch \
|
|
|
|
distro/packages/patches/guile-default-utf8.patch \
|
|
|
|
distro/packages/patches/guile-relocatable.patch \
|
|
|
|
distro/packages/patches/libtool-skip-tests.patch \
|
2012-12-04 16:03:21 -05:00
|
|
|
distro/packages/patches/lsh-guile-compat.patch \
|
|
|
|
distro/packages/patches/lsh-no-root-login.patch \
|
|
|
|
distro/packages/patches/lsh-pam-service-name.patch \
|
2012-10-27 09:30:08 -04:00
|
|
|
distro/packages/patches/m4-gets-undeclared.patch \
|
|
|
|
distro/packages/patches/m4-readlink-EINVAL.patch \
|
|
|
|
distro/packages/patches/m4-s_isdir.patch \
|
|
|
|
distro/packages/patches/make-impure-dirs.patch \
|
|
|
|
distro/packages/patches/findutils-absolute-paths.patch \
|
|
|
|
distro/packages/patches/perl-no-sys-dirs.patch \
|
|
|
|
distro/packages/patches/readline-link-ncurses.patch \
|
2012-11-23 17:00:50 -05:00
|
|
|
distro/packages/patches/shishi-gets-undeclared.patch \
|
2012-10-27 09:30:08 -04:00
|
|
|
distro/packages/patches/tar-gets-undeclared.patch
|
2012-07-05 18:55:07 -04:00
|
|
|
|
2012-11-25 10:28:52 -05:00
|
|
|
bootstrapdir = $(guilemoduledir)/distro/packages/bootstrap
|
2012-10-17 15:44:25 -04:00
|
|
|
bootstrap_x86_64_linuxdir = $(bootstrapdir)/x86_64-linux
|
2012-10-26 13:10:37 -04:00
|
|
|
bootstrap_i686_linuxdir = $(bootstrapdir)/i686-linux
|
2012-10-17 15:44:25 -04:00
|
|
|
|
|
|
|
dist_bootstrap_x86_64_linux_DATA = \
|
|
|
|
distro/packages/bootstrap/x86_64-linux/bash \
|
|
|
|
distro/packages/bootstrap/x86_64-linux/mkdir \
|
|
|
|
distro/packages/bootstrap/x86_64-linux/tar \
|
|
|
|
distro/packages/bootstrap/x86_64-linux/xz
|
|
|
|
|
2012-10-26 13:10:37 -04:00
|
|
|
dist_bootstrap_i686_linux_DATA = \
|
|
|
|
distro/packages/bootstrap/i686-linux/bash \
|
|
|
|
distro/packages/bootstrap/i686-linux/mkdir \
|
|
|
|
distro/packages/bootstrap/i686-linux/tar \
|
|
|
|
distro/packages/bootstrap/i686-linux/xz
|
|
|
|
|
2012-10-17 15:44:25 -04:00
|
|
|
# Big bootstrap binaries are not included in the tarball. Instead, they
|
|
|
|
# are downloaded.
|
|
|
|
nodist_bootstrap_x86_64_linux_DATA = \
|
|
|
|
distro/packages/bootstrap/x86_64-linux/guile-bootstrap-2.0.6.tar.xz
|
2012-10-26 13:10:37 -04:00
|
|
|
nodist_bootstrap_i686_linux_DATA = \
|
|
|
|
distro/packages/bootstrap/i686-linux/guile-bootstrap-2.0.6.tar.xz
|
2012-10-17 15:44:25 -04:00
|
|
|
|
2012-10-27 17:18:08 -04:00
|
|
|
# Those files must remain executable, so they remain executable once
|
|
|
|
# imported into the store.
|
|
|
|
install-data-hook:
|
|
|
|
chmod +x $(DESTDIR)$(bootstrapdir)/*/{bash,mkdir,tar,xz}
|
|
|
|
|
2012-10-26 13:10:37 -04:00
|
|
|
DISTCLEANFILES = \
|
|
|
|
$(nodist_bootstrap_x86_64_linux_DATA) \
|
|
|
|
$(nodist_bootstrap_i686_linux_DATA)
|
2012-10-17 15:44:25 -04:00
|
|
|
|
|
|
|
# Method to download a file from an external source.
|
|
|
|
DOWNLOAD_FILE = \
|
|
|
|
GUILE_LOAD_COMPILED_PATH="$(top_builddir):$$GUILE_LOAD_COMPILED_PATH" \
|
2012-11-12 18:33:43 -05:00
|
|
|
$(GUILE) --no-auto-compile -L "$(top_builddir)" -L "$(top_srcdir)" \
|
2012-10-17 15:44:25 -04:00
|
|
|
"$(top_srcdir)/build-aux/download.scm"
|
|
|
|
|
2012-11-07 12:00:16 -05:00
|
|
|
distro/packages/bootstrap/x86_64-linux/guile-bootstrap-2.0.6.tar.xz:
|
2012-10-27 16:37:49 -04:00
|
|
|
$(MKDIR_P) `dirname "$@"`
|
2012-10-17 15:44:25 -04:00
|
|
|
$(DOWNLOAD_FILE) "$@" "0467a82cbe4136f60a79eb4176011bf88cf28ea19c9ad9defa365811ff8e11cf"
|
2012-11-07 12:00:16 -05:00
|
|
|
distro/packages/bootstrap/i686-linux/guile-bootstrap-2.0.6.tar.xz:
|
2012-10-27 16:37:49 -04:00
|
|
|
$(MKDIR_P) `dirname "$@"`
|
2012-10-26 13:10:37 -04:00
|
|
|
$(DOWNLOAD_FILE) "$@" "93b537766dfab3ad287143523751e3ec02dd32d3ccaf88ad2d31c63158f342ee"
|
2012-10-17 15:44:25 -04:00
|
|
|
|
2012-11-03 16:07:52 -04:00
|
|
|
nobase_nodist_guilemodule_DATA = $(GOBJECTS) guix/config.scm
|
2012-06-13 12:01:25 -04:00
|
|
|
|
|
|
|
TESTS = \
|
Move base32 code to (guix base32).
* guix/utils.scm (bytevector-quintet-ref, bytevector-quintet-ref-right,
bytevector-quintet-length, bytevector-quintet-fold,
bytevector-quintet-fold-right, make-bytevector->base32-string,
%nix-base32-chars, %rfc4648-base32-chars, bytevector->base32-string,
bytevector->nix-base32-string, bytevector-quintet-set!,
bytevector-quintet-set-right!, base32-string-unfold,
base32-string-unfold-right, make-base32-string->bytevector,
base32-string->bytevector, nix-base32-string->bytevector): Move to...
* guix/base32.scm: ... here. New file.
* tests/utils.scm (%nix-hash, "bytevector->base32-string",
"base32-string->bytevector", "nix-base32-string->bytevector", "sha256
& bytevector->base32-string"): Move to...
* tests/base32.scm: ... here. New file
* guix-download.in, guix/derivations.scm, guix/packages.scm,
guix/snix.scm, tests/builders.scm, tests/derivations.scm: Adjust
accordingly.
* guix.scm (%public-modules): Add `base32'.
2012-11-11 16:33:28 -05:00
|
|
|
tests/base32.scm \
|
2012-06-13 12:01:25 -04:00
|
|
|
tests/builders.scm \
|
|
|
|
tests/derivations.scm \
|
2012-06-27 19:24:34 -04:00
|
|
|
tests/utils.scm \
|
2012-07-01 11:32:03 -04:00
|
|
|
tests/build-utils.scm \
|
2012-10-29 17:39:46 -04:00
|
|
|
tests/packages.scm \
|
2012-11-04 13:38:31 -05:00
|
|
|
tests/snix.scm \
|
2012-10-31 18:27:51 -04:00
|
|
|
tests/union.scm \
|
2012-10-31 20:46:15 -04:00
|
|
|
tests/guix-build.sh \
|
2012-11-07 18:13:25 -05:00
|
|
|
tests/guix-download.sh \
|
2012-10-31 20:46:15 -04:00
|
|
|
tests/guix-package.sh
|
2012-06-13 12:01:25 -04:00
|
|
|
|
2012-10-31 18:27:51 -04:00
|
|
|
TEST_EXTENSIONS = .scm .sh
|
|
|
|
|
2012-11-13 16:57:50 -05:00
|
|
|
AM_TESTS_ENVIRONMENT = abs_top_srcdir="$(abs_top_srcdir)"
|
|
|
|
|
2012-10-31 18:27:51 -04:00
|
|
|
SCM_LOG_COMPILER = $(top_builddir)/pre-inst-env $(GUILE)
|
|
|
|
AM_SCM_LOG_FLAGS = --no-auto-compile -L "$(top_srcdir)"
|
|
|
|
|
|
|
|
SH_LOG_COMPILER = $(top_builddir)/pre-inst-env $(SHELL)
|
|
|
|
AM_SH_LOG_FLAGS = -x -e
|
2012-06-13 12:01:25 -04:00
|
|
|
|
2012-08-14 12:28:04 -04:00
|
|
|
EXTRA_DIST = \
|
2012-10-25 17:44:27 -04:00
|
|
|
HACKING \
|
2012-11-18 11:46:55 -05:00
|
|
|
ROADMAP \
|
2012-11-18 11:10:47 -05:00
|
|
|
TODO \
|
distro: Add the `guile', `typesetting', and `databases' package modules.
* distro.scm (package-files): Adjust PREFIX-LEN to use the top-level
directory, not %DISTRO-MODULE-DIRECTORY.
* distro/packages/base.scm (guile-reader, guile-reader/guile-1.8,
guile-reader/guile-2.0, lout, recutils): Move to...
* distro/packages/guile.scm, distro/packages/typesetting.scm,
distro/packages/databases.scm: ... here. New files.
* Makefile.am (MODULES): Add them.
(EXTRA_DIST): Add `.dir-locals.el'.
* .dir-locals.el: New file, with settings formerly in `base.scm'.
2012-09-26 16:17:41 -04:00
|
|
|
.dir-locals.el \
|
2012-11-18 12:35:26 -05:00
|
|
|
hydra.scm \
|
2012-10-17 15:44:25 -04:00
|
|
|
build-aux/download.scm \
|
2012-08-14 12:28:04 -04:00
|
|
|
srfi/srfi-64.scm \
|
|
|
|
srfi/srfi-64.upstream.scm \
|
2012-08-14 12:44:52 -04:00
|
|
|
tests/test.drv \
|
2012-08-14 12:28:04 -04:00
|
|
|
build-aux/config.rpath \
|
|
|
|
release.nix \
|
|
|
|
$(TESTS)
|
2012-07-05 18:55:07 -04:00
|
|
|
|
2012-06-13 12:01:25 -04:00
|
|
|
CLEANFILES = $(GOBJECTS) *.log
|
|
|
|
|
|
|
|
.scm.go:
|
|
|
|
$(MKDIR_P) `dirname "$@"`
|
2012-11-12 18:33:43 -05:00
|
|
|
$(top_builddir)/pre-inst-env \
|
|
|
|
$(GUILD) compile -L "$(top_builddir)" -L "$(top_srcdir)" \
|
|
|
|
-Wformat -Wunbound-variable -Warity-mismatch \
|
|
|
|
--target="$(host)" \
|
2012-06-13 12:01:25 -04:00
|
|
|
-o "$@" "$<"
|
|
|
|
|
|
|
|
SUFFIXES = .go
|
|
|
|
|
|
|
|
# Make sure source files are installed first, so that the mtime of
|
|
|
|
# installed compiled files is greater than that of installed source
|
|
|
|
# files. See
|
|
|
|
# <http://lists.gnu.org/archive/html/guile-devel/2010-07/msg00125.html>
|
|
|
|
# for details.
|
|
|
|
guix_install_go_files = install-nobase_nodist_guilemoduleDATA
|
|
|
|
$(guix_install_go_files): install-nobase_dist_guilemoduleDATA
|
2012-06-29 16:22:48 -04:00
|
|
|
|
|
|
|
SUBDIRS = po
|
|
|
|
|
2012-10-13 10:05:01 -04:00
|
|
|
info_TEXINFOS = doc/guix.texi
|
|
|
|
EXTRA_DIST += doc/fdl-1.3.texi
|
|
|
|
|
2012-06-29 16:22:48 -04:00
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
2012-11-03 16:11:02 -04:00
|
|
|
AM_DISTCHECK_CONFIGURE_FLAGS = \
|
2012-11-03 16:43:30 -04:00
|
|
|
--with-libgcrypt-prefix="$(LIBGCRYPT_PREFIX)" \
|
2012-11-03 16:11:02 -04:00
|
|
|
--with-nix-prefix="$(NIX_PREFIX)"
|