| Commit message (Collapse) | Author | Age |
... | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
* gnu/packages/video.scm (mplayer)[arguments]: Remove "--disable-neon" from
arguments passed to configure.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
* gnu/packages/python.scm (python-2)[arguments]: Use 'modify-phases'. Return
true from phases where needed. Add 'set-source-file-times-to-1980' phase.
Add (ice-9 ftw) to #:modules.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
* gnu/packages/make-bootstrap.scm (tarball-package)[arguments]: Build tarball
deterministically.
* gnu/packages/admin.scm (isc-dhcp)[arguments]: In 'post-configure' phase,
create bind.tar.gz deterministically.
* gnu/packages/video.scm (avidemux)[arguments]: In 'repack-ffmpeg' phase,
create ffmpeg-1.2.1.tar.bz2 deterministically.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
* guix/packages.scm (patch-and-repack)[build]: When invoking 'tar' to repack
the archive, pass "--mtime=@0", "--owner=root:0", and "--group=root:0".
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
This is a followup to 161094c, which gets rid of the "a/b" notation for
propagated inputs.
* gnu/packages/cross-base.scm (cross-gcc-arguments): Change reference from
"libc/linux-headers" to "linux-headers".
* gnu/packages/emacs.scm (magit-svn): Change "magit/git-modes" to
"git-modes".
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Fixes <http://bugs.gnu.org/21010>.
Reported by Alex Sassmannshausen <alex.sassmannshausen@gmail.com>.
* gnu/packages/linux.scm (util-linux)[arguments]: Add 'set-umount-file-name'.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
* gnu/packages/linux.scm (util-linux)[arguments]: Use 'modify-phases' instead
of 'alist-cons-before'.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
This is a followup to commit 3c7d023d6458669c6bfa23bc85e098c91f699892,
"build-system/gnu: Pass --build=<triplet> to configure by default"
* gnu/packages/ssh.scm (corkscrew)[arguments]: In custom configure phase,
accept 'build' keyword argument and pass it to configure in --build argument
and, if not cross-compiling, the --host argument. Previously, the nix
system string was passed.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
This is a followup to commit 3c7d023d6458669c6bfa23bc85e098c91f699892,
"build-system/gnu: Pass --build=<triplet> to configure by default"
* gnu/packages/video.scm (liba52)[arguments]: Remove --build from configure
flags.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
This is a followup to commit 3c7d023d6458669c6bfa23bc85e098c91f699892,
"build-system/gnu: Pass --build=<triplet> to configure by default"
* gnu/packages/linux.scm (sysfsutils-1)[arguments]: Remove field.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
This is a followup to commit 3c7d023d6458669c6bfa23bc85e098c91f699892,
"build-system/gnu: Pass --build=<triplet> to configure by default"
* gnu/packages/xdisorg.scm (xbindkeys)[arguments]: Remove field.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
This is a followup to commit 3c7d023d6458669c6bfa23bc85e098c91f699892,
"build-system/gnu: Pass --build=<triplet> to configure by default"
* gnu/packages/multiprecision.scm (gmp)[arguments]: Remove field.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
* guix/build-system/gnu.scm (gnu-build, gnu-cross-build): Accept #:build
keyword argument. Pass it to 'gnu-build' on the build side.
* guix/build/gnu-build-system.scm (configure): Accept #:build keyword
argument. Unless it is false, pass --build to configure.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
* gnu/packages/perl.scm (perl)[arguments]: Pass -Dlibpth and -Dplibpth to
./Configure.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
There were two issues:
1. Use of 'delete-duplicates', which is quadratic, was a serious problem for
closures with lots of propagated inputs, such as that of the 'hydra'
package (several minutes for 'guix build hydra -n'!).
2. The 'delete-duplicates' call essentially had no effect since duplicate
inputs typically had a different label and were thus kept. For
instance, (bag-transitive-inputs (package->bag inkscape)) would return
216 items whereas (delete-duplicates (map cdr THAT)) contains only 67
items.
The new implementation returns 67 items in this case. For 'hydra', we're
down from 42211 items to 361, and roughly 13s for 'guix build hydra'.
* guix/packages.scm (transitive-inputs): Rewrite as a breadth-first
traversal. Remove duplicate propagated inputs.
* tests/packages.scm ("package-transitive-inputs", "package->bag, propagated
inputs"): Adjust to use simple labels for propagated inputs, without "/".
("package-transitive-inputs, no duplicates"): New test.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
This is a followup to commit 5d6792f ("gnu: bootstrap: Create a wrapper for
guile to set the system load path.")
* tests/size.scm ("store-profile"): Expect profile of 'bash' bootstrap binary.
* tests/gexp.scm ("gexp->derivation #:references-graphs"): Expect GUILE-DRV to
depend on 'bash' bootstrap binary.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
* gnu/packages/gcc.scm (gcc-configure-flags-for-triplet): On armhf,
include --with-fpu=neon.
* doc/guix.texi (GNU Distribution): Document that our armhf port
requires NEON.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
* gnu/packages/pcre.scm (pcre)[arguments]: To configure-flags, add
"--enable-unicode-properties", "--enable-pcre16", and "--enable-pcre32".
|
| | | | |
| | | | |
| | | | |
| | | | | |
* gnu/packages/bash.scm (%patch-series-4.3): Add patches 34-39.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
* gnu/packages/texinfo.scm (texinfo)[native-inputs]: Add procps.
(texinfo-5, texinfo-4)[native-inputs]: Override to be empty.
* gnu/packages/commencement.scm (texinfo-boot0)[texinfo]: Override
native-inputs to be empty.
|
| | | | |
| | | | |
| | | | |
| | | | | |
* gnu/packages/gnuzilla.scm (nss): Update to 3.19.2.
|
| | | | |
| | | | |
| | | | |
| | | | | |
* gnu/packages/gnupg.scm (libgpg-error): Update to 1.19.
|
| | | | |
| | | | |
| | | | |
| | | | | |
* gnu/packages/libidn.scm (libidn): Update to 1.31.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
* gnu/packages/texinfo.scm (texinfo): Update to 6.0.
(texinfo-6): Removed.
(texinfo-5): New variable.
|
| | | | |
| | | | |
| | | | |
| | | | | |
* gnu/packages/libunistring.scm (libunistring): Update to 0.9.6.
|
| | | | |
| | | | |
| | | | |
| | | | | |
* gnu/packages/multiprecision.scm (mpfr): Update to 3.1.3.
|
| | | | |
| | | | |
| | | | |
| | | | | |
* gnu/packages/ed.scm (ed): Update to 1.12.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
* gnu/packages/patches/gettext-msgunfmt.patch: Remove file.
* gnu-system.am (dist_patch_DATA): Remove it.
* gnu/packages/gettext.scm (gnu-gettext): Update to 0.19.5. Remove patch.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
* gnu/packages/patches/coreutils-dummy-man.patch: Remove file.
* gnu-system.am (dist_patch_DATA): Remove it.
* gnu/packages/base.scm (coreutils): Update to 8.24. Remove patch.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
* gnu/packages/gcc.scm (gcc-4.9): Update to 4.9.3. Remove
"gcc-arm-link-spec-fix.patch" from patches.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
* gnu/packages/bootstrap.scm (raw-build): After unpacking, use the bootstrap
guile to create its own wrapper that sets the guile system load path.
|
| | | | |
| | | | |
| | | | |
| | | | | |
* gnu/packages/tls.scm (openssl): Update to 1.0.2d.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
* gnu/system.scm (<operating-system>)[kernel]: Change default to
LINUX-LIBRE-4.0.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Previously, before replying to a /nar/* request, 'guix publish' would first
build up the whole nar into memory (as a consequence of
<http://bugs.gnu.org/21093>), which obviously doesn't scale.
* guix/scripts/publish.scm (render-nar): Return STORE-PATH instead of a
procedure that calls 'write-file'.
(sans-content-length): New procedure.
(http-write): For 'x-nix-archive', don't call '%http-write'. Instead, call
'write-file' right from here, using BODY as the file name.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
* guix/scripts/publish.scm (%http-write): New variable.
(http-write): New procedure.
(concurrent-http-server): New variable.
(run-publish-server): Use it.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
* gnu/packages/python.scm (python-feedgenerator, python2-feedgenerator): New
variables.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
|
| |_|_|/
|/| | |
| | | |
| | | |
| | | |
| | | | |
* doc/guix.texi (GNU Distribution): Use the new package list URL.
(Limitations): Mention Enlightenment and improve wording. Update the
package count.
|
| | | |
| | | |
| | | |
| | | | |
* gnu/packages/gcc.scm (gnu-c-manual): New variable.
|
| | | |
| | | |
| | | |
| | | | |
* po/packages/POTFILES.in: Add a bunch of files.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
* doc.am (doc/guix.1): Remove dependency on 'scripts/guix' since every user
would end up rebuilding 'guix.1'. Add dependency on guix/scripts/*.scm.
(doc/guix-daemon.1): For the same reason, depend on 'guix-daemon.cc' instead
of 'guix-daemon'.
(doc/guix-$(1).1): Similarly, remove dependency on 'scripts/guix' and depend
on 'guix/scripts/$(1).scm' instead of the .go file.
|
| | | |
| | | |
| | | |
| | | |
| | | | |
* daemon.am (etc/guix-daemon.service): Add $(MKDIR_P) invocation. Add
$(srcdir) when referring to the source file.
|
| | | |
| | | |
| | | |
| | | | |
* daemon.am (libstore_headers): Remove nix/libstore/schema.sql.hh.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
* doc.am (EXTRA_DIST): Add coreutils-size-map.eps.
(.png.eps): New rule.
(ps-local): Add dependency on coreutils-size-map.eps.
(dvi-local): New target.
|
| | | |
| | | |
| | | |
| | | | |
* Makefile.am (EXTRA_DIST): Add build-aux/generate-authors.scm.
|
| | | |
| | | |
| | | |
| | | |
| | | | |
* Makefile.am (gen-AUTHORS): Don't do anything if '.git' is missing. Remove
"$(distdir)/AUTHORS" before invoking 'generate-authors.scm'.
|
| | | |
| | | |
| | | |
| | | |
| | | | |
* AUTHORS: Remove the list of people, and add a note saying that this file is
meant to be generated.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
* gnu/packages/bioinformatics.scm (metabat)[arguments]: Fix indentation in
'fix-includes' phase.
[license]: Fix misspelling.
|
| | | |
| | | |
| | | |
| | | | |
* gnu/packages/bioinformatics.scm (metabat): New variable.
|
| | | |
| | | |
| | | |
| | | | |
* gnu/packages/lxde.scm (lxappearance)[source]: Add missing slash.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
* gnu/packages/emacs.scm (emacs-mmm-mode): Replace melpa-stable URL with
the github URL and use 'gnu-build-system' instead of
'emacs-build-system'. Fix typo (add missing space before the
description).
|