[arch-commits] Commit in automake/repos/testing-any (5 files)

Allan McRae allan at archlinux.org
Wed Aug 15 07:19:22 UTC 2012


    Date: Wednesday, August 15, 2012 @ 03:19:22
  Author: allan
Revision: 165305

archrelease: copy trunk to testing-any

Added:
  automake/repos/testing-any/PKGBUILD
    (from rev 165304, automake/trunk/PKGBUILD)
  automake/repos/testing-any/automake.install
    (from rev 165304, automake/trunk/automake.install)
Deleted:
  automake/repos/testing-any/PKGBUILD
  automake/repos/testing-any/automake-1.12.2-aclocal7-test-fix.diff
  automake/repos/testing-any/automake.install

----------------------------------------+
 PKGBUILD                               |   71 ++++++++++++++-----------------
 automake-1.12.2-aclocal7-test-fix.diff |   18 -------
 automake.install                       |   44 +++++++++----------
 3 files changed, 56 insertions(+), 77 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2012-08-15 07:18:49 UTC (rev 165304)
+++ PKGBUILD	2012-08-15 07:19:22 UTC (rev 165305)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Allan McRae <allan at archlinux.org>
-# Contributor: judd <jvinet at zeroflux.org>
-
-pkgname=automake
-pkgver=1.12.3
-pkgrel=1
-pkgdesc="A GNU tool for automatically creating Makefiles"
-arch=('any')
-license=('GPL')
-url="http://www.gnu.org/software/automake"
-groups=('base-devel')
-depends=('perl' 'bash')
-makedepends=('autoconf')
-install=automake.install
-source=(ftp://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.xz{,.sig}
-        automake-1.12.2-aclocal7-test-fix.diff)
-md5sums=('0df082825f8f41087eb70c5088f4515e'
-         '1e272ddf91d347e1316afd970568ee81'
-         '12280109fc55cfb6197feecfbe7ab513')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  #patch -p2 -i $srcdir/automake-1.12.2-aclocal7-test-fix.diff
-  ./configure --prefix=/usr
-  make
-}
-
-check() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make check
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-}

Copied: automake/repos/testing-any/PKGBUILD (from rev 165304, automake/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2012-08-15 07:19:22 UTC (rev 165305)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Allan McRae <allan at archlinux.org>
+# Contributor: judd <jvinet at zeroflux.org>
+
+pkgname=automake
+pkgver=1.12.3
+pkgrel=1
+pkgdesc="A GNU tool for automatically creating Makefiles"
+arch=('any')
+license=('GPL')
+url="http://www.gnu.org/software/automake"
+groups=('base-devel')
+depends=('perl' 'bash')
+makedepends=('autoconf')
+install=automake.install
+source=(ftp://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.xz{,.sig})
+md5sums=('0df082825f8f41087eb70c5088f4515e'
+         '1e272ddf91d347e1316afd970568ee81')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Deleted: automake-1.12.2-aclocal7-test-fix.diff
===================================================================
--- automake-1.12.2-aclocal7-test-fix.diff	2012-08-15 07:18:49 UTC (rev 165304)
+++ automake-1.12.2-aclocal7-test-fix.diff	2012-08-15 07:19:22 UTC (rev 165305)
@@ -1,18 +0,0 @@
-Fix a race condition that causes aclocal7 to fail on fast machines (see the
-comment below).
-
-diff -x config.log -x config.status -ru tmp/automake-1.12.2/t/aclocal7.sh work/automake-1.12.2/t/aclocal7.sh
---- tmp/automake-1.12.2/t/aclocal7.sh	2012-07-08 11:48:25.000000000 +0100
-+++ work/automake-1.12.2/t/aclocal7.sh	2012-07-10 11:58:50.325999591 +0100
-@@ -45,6 +45,11 @@
-   $AUTOMAKE --no-force
- }
- 
-+# aclocal will rewrite aclocal.m4 unless the input files are all older than the
-+# existing aclocal.m4 -- sleep to ensure somedefs.m4 has an older timestamp
-+# than the aclocal.m4 that the next aclocal call will generate.
-+$sleep
-+
- $ACLOCAL -I m4
- AUTOMAKE_after_aclocal
- 

Deleted: automake.install
===================================================================
--- automake.install	2012-08-15 07:18:49 UTC (rev 165304)
+++ automake.install	2012-08-15 07:19:22 UTC (rev 165305)
@@ -1,22 +0,0 @@
-infodir=/usr/share/info
-filelist=(automake.info automake.info-1 automake.info-2)
-
-post_install() {
-  [ -x usr/bin/install-info ] || return 0
-  for file in ${filelist[@]}; do
-    install-info $infodir/$file.gz $infodir/dir 2> /dev/null
-  done
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-pre_remove() {
-  [ -x usr/bin/install-info ] || return 0
-  for file in ${filelist[@]}; do
-    install-info --delete $infodir/$file.gz $infodir/dir 2> /dev/null
-  done
-}
-
-# vim:set ts=2 sw=2 et:

Copied: automake/repos/testing-any/automake.install (from rev 165304, automake/trunk/automake.install)
===================================================================
--- automake.install	                        (rev 0)
+++ automake.install	2012-08-15 07:19:22 UTC (rev 165305)
@@ -0,0 +1,22 @@
+infodir=/usr/share/info
+filelist=(automake.info automake.info-1 automake.info-2)
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+    install-info $infodir/$file.gz $infodir/dir 2> /dev/null
+  done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+    install-info --delete $infodir/$file.gz $infodir/dir 2> /dev/null
+  done
+}
+
+# vim:set ts=2 sw=2 et:




More information about the arch-commits mailing list