Package Details: cpio-git 2.14.r0.g4a41909-1

Git Clone URL: https://aur.archlinux.org/cpio-git.git (read-only, click to copy)
Package Base: cpio-git
Description: Utility that copy files into or out of a cpio or tar archive
Upstream URL: https://www.gnu.org/software/cpio/
Licenses: GPL
Conflicts: cpio
Provides: cpio
Submitter: Chocobo1
Maintainer: Chocobo1
Last Packager: Chocobo1
Votes: 0
Popularity: 0.000000
First Submitted: 2019-03-21 09:00 (UTC)
Last Updated: 2023-05-03 07:39 (UTC)

Dependencies (3)

Required by (424)

Sources (1)

Latest Comments

Chocobo1 commented on 2023-05-03 07:43 (UTC)

2.14 is out and the patch is no longer needed. But now the leading "v" in the pkgver needs to be cut off.

Thanks, done.

haawda commented on 2023-05-02 18:12 (UTC)

2.14 is out and the patch is no longer needed. But now the leading "v" in the pkgver needs to be cut off.

Chocobo1 commented on 2021-12-06 18:32 (UTC)

Maybe it is time to apply the patch I sent in January manually? No upstream response so far.

I applied the patch but it shows another error (only when building cleanly):

configure:17945: error: possibly undefined macro: gl_SIZE_MAX
      If this token and others are legitimate, please use m4_pattern_allow.
      See the Autoconf documentation.
autoreconf: error: /usr/bin/autoconf failed with exit status: 1
./bootstrap: autoreconf failed
==> ERROR: A failure occurred in build().
    Aborting...

haawda commented on 2021-12-06 10:15 (UTC)

Maybe it is time to apply the patch I sent in January manually? No upstream response so far.

haawda commented on 2021-01-18 22:39 (UTC)

Upstream screwed up something.

*** error: gettext infrastructure mismatch: using a Makefile.in.in from gettext version 0.19 but the autoconf macros are from gettext version 0.20
make[2]: *** [Makefile:232: stamp-po] Fehler 1

I opened an upstream bug report to propose this patch: gettext-version.patch:

diff --git a/configure.ac b/configure.ac
index 0a35e4c..6c587a0 100644
--- a/configure.ac
+++ b/configure.ac
@@ -84,7 +84,7 @@ AC_CHECK_DECLS([errno, getpwnam, getgrnam, getgrgid, strdup, strerror, getenv, a
 # Gettext.
 AM_ICONV
 AM_GNU_GETTEXT([external], [need-formatstring-macros])
-AM_GNU_GETTEXT_VERSION(0.19)
+AM_GNU_GETTEXT_VERSION(0.20)

 LIBS="$LIBS $LIB_CLOCK_GETTIME"