Patch taken from Debian sid. Adapted to 4.2.4.6 for Guix by Tobias Geerinckx-Rice . Description: Support uncompressing and compressing soft links. Historically, ncompress for Debian has been built using a command line directly in debian/rules. For 4.2.4.5-1, I simplified by swtching to the upstream Makefile. However, that caused a regression - the Debian version of ncompress has always successfully handled soft links, but this stopped working. To revert to the original behavior, I need to remove -DLSTAT from the build options, to be consistent with how the code was previously built. Author: Kenneth J. Pronovici Bug-Debian: http://bugs.debian.org/918836 Index: ncompress/GNUmakefile =================================================================== --- ncompress.orig/GNUmakefile +++ ncompress/GNUmakefile @@ -9,7 +9,7 @@ distclean: cleanup Makefile: Makefile.def GNUmakefile sed \ - -e 's:options= :options= -DUTIME_H -DLSTAT :' \ + -e 's:options= :options= -DUTIME_H :' \ Makefile.def > Makefile check: /guix/'>summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2023-10-13gnu: distrobox: Update to 1.5.0.2....* gnu/packages/containers.scm (distrobox): Update to 1.5.0.2. [arguments]: Do not patch files with extensions, such as a .pdf. Ricardo Wurmus
2023-07-02gnu: podman: Fix path to helper binaries....'quadlet' and 'rootlessport' coming with podman reside in "#$output/libexex/podman", not in "#$output/bin". Thus search this first. * gnu/packages/containers.scm (podman)[phases]<fix-hardcoded-paths>: Change subsitution for "/usr/local/libexec/podman", add substitution for "/usr/local/lib/podman". Hartmut Goebel
2023-06-08gnu: Add Buildah....* gnu/packages/containers.scm (buildah): New variable. Co-authored-by: Ludovic Courtès <ludo@gnu.org> Zongyuan Li
2023-02-27gnu: podman: Update to 4.4.1....* gnu/packages/containers.scm (podman): Update to 4.4.1. [native-inputs]: Replace go to go-1.19. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Hilton Chain
2023-02-18gnu: distrobox: Skip substitution in man pages....* gnu/packages/containers.scm (distrobox)[arguments]: Change refer-to-inputs phase to not substitute in man pages. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr> Michael Rohleder
2023-02-04gnu: Add distrobox....* gnu/packages/containers.scm (distrobox): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr> Adam Faiz
2023-01-31gnu: podman: Enable Btrfs support....* gnu/packages/containers.scm (podman): Enable Btrfs support. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Hilton Chain
2022-12-29gnu: podman: Update to 4.3.1....* gnu/packages/containers.scm (podman): Update to 4.3.1. [native-inputs]: Add python, for hack/markdown-preprocess. Signed-off-by: 宋文武 <iyzsong@member.fsf.org> Simon Josefsson
2022-12-11gnu: yajl: Drop custom ‘lib-’ prefix....* gnu/packages/web.scm (yajl): New variable, renamed from… (libyajl): …this one, which is now a DEPRECATED-PACKAGE alias of yajl. Adjust all users. Tobias Geerinckx-Rice