Description: make build reproducible by sorting hash keys cf. https://reproducible.debian.net/dbd/unstable/amd64/libclass-methodmaker-perl_2.21-1.debbindiff.html Origin: vendor Bug-Debian: https://bugs.debian.org/778979 Author: Chris Lamb Reviewed-by: gregor herrmann Last-Update: 2015-05-02 Forwarded: https://rt.cpan.org/Ticket/Display.html?id=104163 Bug: https://rt.cpan.org/Ticket/Display.html?id=104163 --- a/lib/Class/MethodMaker/OptExt.pm +++ b/lib/Class/MethodMaker/OptExt.pm @@ -357,7 +357,7 @@ # ------------------------------------- -sub option_names { grep $_ ne 'DEFAULT', keys %{OPTEXT()} } +sub option_names { grep $_ ne 'DEFAULT', sort keys %{OPTEXT()} } sub optcode { my $class = shift; ption> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2018-11-23build: Binary tarball now populates the "current-guix" profile....* Makefile.am (guix-binary.%.tar.xz): Pass '--profile-name=current-guix'. Remove glibc and glibc-utf8-locales. * doc/guix.texi (Binary Installation): Update accordingly. * etc/guix-install.sh * etc/guix-install.sh (sys_create_store, sys_enable_guix_daemon) (sys_authorize_build_farms): Likewise. * etc/guix-publish.conf.in, etc/guix-publish.service.in, etc/guix-daemon.conf.in, etc/guix-daemon.service.in: Update file names accordingly. Ludovic Courtès
2017-07-15Remove task from 'guix-daemon.conf'....The 'task' means that events that led to this job starting will be blocked until it has stopped. Tasks are short lived jobs, whereas the guix-daemon is a long lived service. Including 'task' means that attempts to start the guix-daemon appear to hang, as upstart waits for it to exit. * etc/guix-daemon.conf.in: Remove 'task'. Christopher Baines
2017-03-06build: Don't embed absolute paths in .service and .conf service files....Otherwise, users will be stuck running an old copy of guix and the guix-daemon if they copy the service files instead of symlinking them. * etc/guix-daemon.conf.in, etc/guix-daemon.service.in, etc/guix-publish.conf.in, etc/guix-publish.service.in: Expand @localstatedir@ instead of @bindir@. * nix/local.mk (etc/guix-%.service, etc/guix-%.conf): Use @localstatedir@ instead of @bindir@. Leo Famulari