[arch-commits] Commit in autoconf/repos (5 files)

Allan McRae allan at archlinux.org
Sun Nov 4 02:45:39 UTC 2018


    Date: Sunday, November 4, 2018 @ 02:45:39
  Author: allan
Revision: 337802

archrelease: copy trunk to testing-any

Added:
  autoconf/repos/testing-any/
  autoconf/repos/testing-any/PKGBUILD
    (from rev 337801, autoconf/trunk/PKGBUILD)
  autoconf/repos/testing-any/autoconf-2.69-libtool-compatibility.patch
    (from rev 337801, autoconf/trunk/autoconf-2.69-libtool-compatibility.patch)
  autoconf/repos/testing-any/autoconf-2.69-perl-5.22-autoscan.patch
    (from rev 337801, autoconf/trunk/autoconf-2.69-perl-5.22-autoscan.patch)
  autoconf/repos/testing-any/autoconf-2.69-perl-5.28.patch
    (from rev 337801, autoconf/trunk/autoconf-2.69-perl-5.28.patch)

-------------------------------------------+
 PKGBUILD                                  |   59 ++++++++++++++++++++++++++++
 autoconf-2.69-libtool-compatibility.patch |   27 ++++++++++++
 autoconf-2.69-perl-5.22-autoscan.patch    |   28 +++++++++++++
 autoconf-2.69-perl-5.28.patch             |   25 +++++++++++
 4 files changed, 139 insertions(+)

Copied: autoconf/repos/testing-any/PKGBUILD (from rev 337801, autoconf/trunk/PKGBUILD)
===================================================================
--- testing-any/PKGBUILD	                        (rev 0)
+++ testing-any/PKGBUILD	2018-11-04 02:45:39 UTC (rev 337802)
@@ -0,0 +1,59 @@
+# Maintainer: Allan McRae <allan at archlinux.org>
+# Contributor: Andreas Radke <andyrtr at archlinux.org>
+
+pkgname=autoconf
+pkgver=2.69
+pkgrel=5
+pkgdesc="A GNU tool for automatically configuring source code"
+arch=('any')
+license=('GPL2' 'GPL3' 'custom')
+url="http://www.gnu.org/software/autoconf"
+groups=('base-devel')
+depends=('awk' 'm4' 'diffutils' 'sh')
+makedepends=('help2man')  # needed while perl patch is present
+checkdepends=('gcc-fortran')
+source=(ftp://ftp.gnu.org/pub/gnu/${pkgname}/${pkgname}-${pkgver}.tar.xz{,.sig}
+        autoconf-2.69-perl-5.22-autoscan.patch
+        autoconf-2.69-perl-5.28.patch
+        autoconf-2.69-libtool-compatibility.patch)
+md5sums=('50f97f4159805e374639a73e2636f22e'
+         'SKIP'
+         'aa07afe5a671df25bf1878831702d5b9'
+         'f450ce6001458d800907e5d4ad8023fb'
+         '87bceda7922ebc2a453568b2ae179e1b')
+validpgpkeys=('71C2CC22B1C4602927D2F3AAA7A16B4A2527436A')
+
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+
+  # fix incompatibility with recent perl
+  patch -p1 -i $srcdir/autoconf-2.69-perl-5.22-autoscan.patch
+  patch -p1 -i $srcdir/autoconf-2.69-perl-5.28.patch
+
+  # fix tesetsuite failures with recent libtool
+  patch -p1 -i $srcdir/autoconf-2.69-libtool-compatibility.patch
+}
+  
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  # license exception
+  install -Dm644 COPYING.EXCEPTION \
+    $pkgdir/usr/share/licenses/autoconf/COPYING.EXCEPTION
+
+  # remove unwanted file
+  rm -f ${pkgdir}/usr/share/info/standards.info
+}

Copied: autoconf/repos/testing-any/autoconf-2.69-libtool-compatibility.patch (from rev 337801, autoconf/trunk/autoconf-2.69-libtool-compatibility.patch)
===================================================================
--- testing-any/autoconf-2.69-libtool-compatibility.patch	                        (rev 0)
+++ testing-any/autoconf-2.69-libtool-compatibility.patch	2018-11-04 02:45:39 UTC (rev 337802)
@@ -0,0 +1,27 @@
+From 247b02e5a5bb79ca6666e91de02ae2d3cb0cd325 Mon Sep 17 00:00:00 2001
+From: Gary V. Vaughan <gary at gnu.org>
+Date: Mon, 03 Nov 2014 06:25:03 +0000
+Subject: tests: avoid spurious test failure with libtool 2.4.3
+
+Based on a report by Bruce Dubbs.
+
+* tests/foreign.at (Libtool): Be tolerant of 'quote' replacing the
+older `quote'.
+
+Signed-off-by: Eric Blake <eblake at redhat.com>
+---
+diff --git a/tests/foreign.at b/tests/foreign.at
+index a9dc33c..d4702cd 100644
+--- a/tests/foreign.at
++++ b/tests/foreign.at
+@@ -57,7 +57,7 @@ AT_CHECK([./config.guess || exit 77], [], [ignore], [ignore])
+ # Make sure at-path contains something valid, and let the test suite
+ # display it when verbose.  And fail, skipping would too easily hide
+ # problems.
+-AT_CHECK([sed -n ["s,^.*\`\\(/[^']*\\)'.*,\\1,p"] stdout], [0], [stdout])
++AT_CHECK([sed -n ["s,^[^']*[\`']\\(/[^']*\\)'.*,\\1,p"] stdout], [0], [stdout])
+ AT_CHECK([test -f "`sed -n 1p stdout`"])
+ 
+ # Older libtoolize installed everything but install-sh...
+--
+cgit v0.9.0.2

Copied: autoconf/repos/testing-any/autoconf-2.69-perl-5.22-autoscan.patch (from rev 337801, autoconf/trunk/autoconf-2.69-perl-5.22-autoscan.patch)
===================================================================
--- testing-any/autoconf-2.69-perl-5.22-autoscan.patch	                        (rev 0)
+++ testing-any/autoconf-2.69-perl-5.22-autoscan.patch	2018-11-04 02:45:39 UTC (rev 337802)
@@ -0,0 +1,28 @@
+From e5654a5591884b92633c7785f325626711e7f7aa Mon Sep 17 00:00:00 2001
+From: Paul Eggert <eggert at cs.ucla.edu>
+Date: Tue, 29 Jan 2013 13:46:48 -0800
+Subject: [PATCH] autoscan: port to perl 5.17
+
+* bin/autoscan.in (scan_sh_file): Escape '{'.  This avoids a
+feature that is deprecated in Perl 5.17.  Reported by Ray Lauff in
+<http://lists.gnu.org/archive/html/bug-autoconf/2013-01/msg00059.html>.
+---
+ bin/autoscan.in | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/bin/autoscan.in b/bin/autoscan.in
+index 993a750..db1df79 100644
+--- a/bin/autoscan.in
++++ b/bin/autoscan.in
+@@ -358,7 +358,7 @@ sub scan_sh_file ($)
+     {
+       # Strip out comments and variable references.
+       s/#.*//;
+-      s/\${[^\}]*}//g;
++      s/\$\{[^\}]*}//g;
+       s/@[^@]*@//g;
+ 
+       # Tokens in the code.
+-- 
+2.1.0
+

Copied: autoconf/repos/testing-any/autoconf-2.69-perl-5.28.patch (from rev 337801, autoconf/trunk/autoconf-2.69-perl-5.28.patch)
===================================================================
--- testing-any/autoconf-2.69-perl-5.28.patch	                        (rev 0)
+++ testing-any/autoconf-2.69-perl-5.28.patch	2018-11-04 02:45:39 UTC (rev 337802)
@@ -0,0 +1,25 @@
+From dfb0659b205e03af62542cd318a9f3253e28c40a Mon Sep 17 00:00:00 2001
+From: Daniel Colascione <dancol at dancol.org>
+Date: Sun, 4 Mar 2018 13:36:55 -0800
+Subject: [PATCH] Fix test suite with modern Perl
+
+---
+ tests/tools.at | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/tests/tools.at b/tests/tools.at
+index a4a7dd7..e9a6240 100644
+--- a/tests/tools.at
++++ b/tests/tools.at
+@@ -1386,7 +1386,7 @@ do
+   funny=`func_sanitize_file_name "$funny"`
+   file=" file $funny"
+   dir=`func_sanitize_dir_name " dir $funny"`
+-  TMPDIR=" tmp$dir"
++  TMPDIR="./ tmp$dir"
+   export TMPDIR
+ 
+   # skip if we cannot create such a file or directory
+-- 
+1.9.1
+



More information about the arch-commits mailing list