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

2016-09-08 Thread Allan McRae
Date: Friday, September 9, 2016 @ 05:13:33
  Author: allan
Revision: 276084

archrelease: copy trunk to testing-any

Added:
  automake/repos/testing-any/
  automake/repos/testing-any/PKGBUILD
(from rev 276083, automake/trunk/PKGBUILD)
  automake/repos/testing-any/automake-1.15-dejagnu-testcase.patch
(from rev 276083, automake/trunk/automake-1.15-dejagnu-testcase.patch)
  automake/repos/testing-any/automake-1.15-gzip-envvar.patch
(from rev 276083, automake/trunk/automake-1.15-gzip-envvar.patch)
  automake/repos/testing-any/automake-1.15-perl-regex.patch
(from rev 276083, automake/trunk/automake-1.15-perl-regex.patch)

--+
 PKGBUILD |   55 ++
 automake-1.15-dejagnu-testcase.patch |   49 +++
 automake-1.15-gzip-envvar.patch  |   68 +
 automake-1.15-perl-regex.patch   |   26 
 4 files changed, 198 insertions(+)

Copied: automake/repos/testing-any/PKGBUILD (from rev 276083, 
automake/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2016-09-09 05:13:33 UTC (rev 276084)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Allan McRae 
+# Contributor: judd 
+
+pkgname=automake
+pkgver=1.15
+pkgrel=2
+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')
+checkdepends=('dejagnu' 'gcc-fortran' 'java-environment' 'vala' 'emacs' 
'cscope')  # 'python'
+source=(ftp://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.xz{,.sig}
+automake-1.15-perl-regex.patch
+automake-1.15-gzip-envvar.patch
+automake-1.15-dejagnu-testcase.patch)
+md5sums=('9a1ddb0e053474d9d1105cfe39b0c48d'
+ 'SKIP'
+ 'ec24c629cad74c88555ee499c38dbd6e'
+ 'fa71c83d3f9d32d9a4007152b829074c'
+ 'ffa4dd8eb78cea82c3009d76087598b1')
+validpgpkeys=('E1622F96D2BB4E58018EEF9860F906016E407573')   # Stefano Lattarini
+
+
+prepare() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  # fix regex issue with recent perl
+  patch -p1 -i $srcdir/automake-1.15-perl-regex.patch
+
+  # fix testsuite issues with recent gzip
+  patch -p1 -i $srcdir/automake-1.15-gzip-envvar.patch
+
+  # fix testsuite issue with resent dejagnu
+  patch -p1 -i $srcdir/automake-1.15-dejagnu-testcase.patch
+}
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --build=$CHOST --prefix=/usr
+  make
+}
+
+check() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Copied: automake/repos/testing-any/automake-1.15-dejagnu-testcase.patch (from 
rev 276083, automake/trunk/automake-1.15-dejagnu-testcase.patch)
===
--- testing-any/automake-1.15-dejagnu-testcase.patch
(rev 0)
+++ testing-any/automake-1.15-dejagnu-testcase.patch2016-09-09 05:13:33 UTC 
(rev 276084)
@@ -0,0 +1,49 @@
+From 3b86722e504c686d3e825ca8870708cce7580190 Mon Sep 17 00:00:00 2001
+From: Pavel Raiskup 
+Date: Mon, 27 Jun 2016 23:10:12 +0200
+Subject: [PATCH] tests: fix bug in dejagnu testcase
+
+This resolves testsuite error:
+ERROR: tcl error sourcing ./spanner.test/spanner.exp.
+ERROR: couldn't execute "./spanner": no such file or directory
+while executing
+"spawn $SPANNER"
+(file "./spanner.test/spanner.exp" line 2)
+invoked from within
+"source ./spanner.test/spanner.exp"
+("uplevel" body line 1)
+invoked from within
+"uplevel #0 source ./spanner.test/spanner.exp"
+invoked from within
+"catch "uplevel #0 source $test_file_name""
+
+.. which was there probably for a very long time, but now with
+dejagnu 1.6 the runtest binary started to validly exit with
+non-zero status.
+
+* t/check12.sh (Makefile.am): Also distribute files from
+$(DEJATOOL) because otherwise 'runtest' binary fails later during
+'make distcheck' because of incomplete list of distributed files.
+
+Proposed upstream:
+http://thread.gmane.org/gmane.comp.sysutils.automake.patches/9941
+
+---
+ t/check12.sh | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/t/check12.sh b/t/check12.sh
+index 0f3928a..306c720 100644
+--- a/t/check12.sh
 b/t/check12.sh
+@@ -61,6 +61,7 @@ DEJATOOL = hammer spanner
+ AM_RUNTESTFLAGS = HAMMER=$(srcdir)/hammer SPANNER=$(srcdir)/spanner
+ EXTRA_DIST += hammer.test/hammer.exp
+ EXTRA_DIST += spanner.test/spanner.exp
++EXTRA_DIST += $(DEJATOOL)
+ END
+ 
+ cat > hammer << 'END'
+-- 
+2.7.4
+

Copied: automake/repos/testing-any/automake-1.15-gzip-envvar.patch (from rev 
276083, automake/trunk/automake-1.15-gzip-envvar.patch)

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

2013-01-03 Thread Allan McRae
Date: Thursday, January 3, 2013 @ 08:58:37
  Author: allan
Revision: 174269

db-move: moved automake from [testing] to [core] (any)

Added:
  automake/repos/core-any/PKGBUILD
(from rev 174268, automake/repos/testing-any/PKGBUILD)
  automake/repos/core-any/automake.install
(from rev 174268, automake/repos/testing-any/automake.install)
Deleted:
  automake/repos/core-any/PKGBUILD
  automake/repos/core-any/automake.install
  automake/repos/testing-any/

--+
 PKGBUILD |   68 ++---
 automake.install |   44 +-
 2 files changed, 56 insertions(+), 56 deletions(-)

Deleted: core-any/PKGBUILD
===
--- core-any/PKGBUILD   2013-01-03 13:58:09 UTC (rev 174268)
+++ core-any/PKGBUILD   2013-01-03 13:58:37 UTC (rev 174269)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Allan McRae al...@archlinux.org
-# Contributor: judd jvi...@zeroflux.org
-
-pkgname=automake
-pkgver=1.12.6
-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=('140e084223bf463a24c1a28427c6aec7'
- '3c5d76f56493b85e806bfd163010a6c2')
-
-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
-}

Copied: automake/repos/core-any/PKGBUILD (from rev 174268, 
automake/repos/testing-any/PKGBUILD)
===
--- core-any/PKGBUILD   (rev 0)
+++ core-any/PKGBUILD   2013-01-03 13:58:37 UTC (rev 174269)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Allan McRae al...@archlinux.org
+# Contributor: judd jvi...@zeroflux.org
+
+pkgname=automake
+pkgver=1.13.1
+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=('a60380ab11e1481376b7747d1b42ced2'
+ '272d0de0756252b1835234cca0ff2cfe')
+
+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: core-any/automake.install
===
--- core-any/automake.install   2013-01-03 13:58:09 UTC (rev 174268)
+++ core-any/automake.install   2013-01-03 13:58:37 UTC (rev 174269)
@@ -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/core-any/automake.install (from rev 174268, 
automake/repos/testing-any/automake.install)
===
--- core-any/automake.install   (rev 0)
+++ core-any/automake.install   2013-01-03 13:58:37 UTC (rev 174269)
@@ -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:



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

2012-12-18 Thread Allan McRae
Date: Tuesday, December 18, 2012 @ 20:16:31
  Author: allan
Revision: 173326

db-move: moved automake from [testing] to [core] (any)

Added:
  automake/repos/core-any/PKGBUILD
(from rev 173324, automake/repos/testing-any/PKGBUILD)
  automake/repos/core-any/automake.install
(from rev 173324, automake/repos/testing-any/automake.install)
Deleted:
  automake/repos/core-any/PKGBUILD
  automake/repos/core-any/automake.install
  automake/repos/testing-any/

--+
 PKGBUILD |   68 ++---
 automake.install |   44 +-
 2 files changed, 56 insertions(+), 56 deletions(-)

Deleted: core-any/PKGBUILD
===
--- core-any/PKGBUILD   2012-12-19 01:16:30 UTC (rev 173325)
+++ core-any/PKGBUILD   2012-12-19 01:16:31 UTC (rev 173326)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Allan McRae al...@archlinux.org
-# Contributor: judd jvi...@zeroflux.org
-
-pkgname=automake
-pkgver=1.12.5
-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=('2bc1aef898712c7e56320f264040972d'
- '2b5cf11401c4a6d9ebe8f3a979b626c9')
-
-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
-}

Copied: automake/repos/core-any/PKGBUILD (from rev 173324, 
automake/repos/testing-any/PKGBUILD)
===
--- core-any/PKGBUILD   (rev 0)
+++ core-any/PKGBUILD   2012-12-19 01:16:31 UTC (rev 173326)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Allan McRae al...@archlinux.org
+# Contributor: judd jvi...@zeroflux.org
+
+pkgname=automake
+pkgver=1.12.6
+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=('140e084223bf463a24c1a28427c6aec7'
+ '3c5d76f56493b85e806bfd163010a6c2')
+
+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: core-any/automake.install
===
--- core-any/automake.install   2012-12-19 01:16:30 UTC (rev 173325)
+++ core-any/automake.install   2012-12-19 01:16:31 UTC (rev 173326)
@@ -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/core-any/automake.install (from rev 173324, 
automake/repos/testing-any/automake.install)
===
--- core-any/automake.install   (rev 0)
+++ core-any/automake.install   2012-12-19 01:16:31 UTC (rev 173326)
@@ -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:



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

2012-11-18 Thread Allan McRae
Date: Sunday, November 18, 2012 @ 06:37:53
  Author: allan
Revision: 171527

db-move: moved automake from [testing] to [core] (any)

Added:
  automake/repos/core-any/PKGBUILD
(from rev 171526, automake/repos/testing-any/PKGBUILD)
  automake/repos/core-any/automake.install
(from rev 171526, automake/repos/testing-any/automake.install)
Deleted:
  automake/repos/core-any/PKGBUILD
  automake/repos/core-any/automake.install
  automake/repos/testing-any/

--+
 PKGBUILD |   68 ++---
 automake.install |   44 +-
 2 files changed, 56 insertions(+), 56 deletions(-)

Deleted: core-any/PKGBUILD
===
--- core-any/PKGBUILD   2012-11-18 11:37:20 UTC (rev 171526)
+++ core-any/PKGBUILD   2012-11-18 11:37:53 UTC (rev 171527)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Allan McRae al...@archlinux.org
-# Contributor: judd jvi...@zeroflux.org
-
-pkgname=automake
-pkgver=1.12.4
-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=('7395a0420ecb5c9bc43e5fcf4824df36'
- '372a7f78193e6cec543d573c710b70b2')
-
-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
-}

Copied: automake/repos/core-any/PKGBUILD (from rev 171526, 
automake/repos/testing-any/PKGBUILD)
===
--- core-any/PKGBUILD   (rev 0)
+++ core-any/PKGBUILD   2012-11-18 11:37:53 UTC (rev 171527)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Allan McRae al...@archlinux.org
+# Contributor: judd jvi...@zeroflux.org
+
+pkgname=automake
+pkgver=1.12.5
+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=('2bc1aef898712c7e56320f264040972d'
+ '2b5cf11401c4a6d9ebe8f3a979b626c9')
+
+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: core-any/automake.install
===
--- core-any/automake.install   2012-11-18 11:37:20 UTC (rev 171526)
+++ core-any/automake.install   2012-11-18 11:37:53 UTC (rev 171527)
@@ -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/core-any/automake.install (from rev 171526, 
automake/repos/testing-any/automake.install)
===
--- core-any/automake.install   (rev 0)
+++ core-any/automake.install   2012-11-18 11:37:53 UTC (rev 171527)
@@ -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:



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

2012-09-19 Thread Allan McRae
Date: Wednesday, September 19, 2012 @ 06:40:22
  Author: allan
Revision: 166801

db-move: moved automake from [testing] to [core] (any)

Added:
  automake/repos/core-any/PKGBUILD
(from rev 166800, automake/repos/testing-any/PKGBUILD)
  automake/repos/core-any/automake.install
(from rev 166800, automake/repos/testing-any/automake.install)
Deleted:
  automake/repos/core-any/PKGBUILD
  automake/repos/core-any/automake.install
  automake/repos/testing-any/

--+
 PKGBUILD |   68 ++---
 automake.install |   44 +-
 2 files changed, 56 insertions(+), 56 deletions(-)

Deleted: core-any/PKGBUILD
===
--- core-any/PKGBUILD   2012-09-19 10:37:35 UTC (rev 166800)
+++ core-any/PKGBUILD   2012-09-19 10:40:22 UTC (rev 166801)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Allan McRae al...@archlinux.org
-# Contributor: judd jvi...@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
-}

Copied: automake/repos/core-any/PKGBUILD (from rev 166800, 
automake/repos/testing-any/PKGBUILD)
===
--- core-any/PKGBUILD   (rev 0)
+++ core-any/PKGBUILD   2012-09-19 10:40:22 UTC (rev 166801)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Allan McRae al...@archlinux.org
+# Contributor: judd jvi...@zeroflux.org
+
+pkgname=automake
+pkgver=1.12.4
+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=('7395a0420ecb5c9bc43e5fcf4824df36'
+ '372a7f78193e6cec543d573c710b70b2')
+
+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: core-any/automake.install
===
--- core-any/automake.install   2012-09-19 10:37:35 UTC (rev 166800)
+++ core-any/automake.install   2012-09-19 10:40:22 UTC (rev 166801)
@@ -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/core-any/automake.install (from rev 166800, 
automake/repos/testing-any/automake.install)
===
--- core-any/automake.install   (rev 0)
+++ core-any/automake.install   2012-09-19 10:40:22 UTC (rev 166801)
@@ -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:



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

2012-06-02 Thread Allan McRae
Date: Saturday, June 2, 2012 @ 19:09:44
  Author: allan
Revision: 160643

db-move: moved automake from [testing] to [core] (any)

Added:
  automake/repos/core-any/PKGBUILD
(from rev 160642, automake/repos/testing-any/PKGBUILD)
  automake/repos/core-any/automake.install
(from rev 160642, automake/repos/testing-any/automake.install)
Deleted:
  automake/repos/core-any/PKGBUILD
  automake/repos/core-any/automake.install
  automake/repos/testing-any/

--+
 PKGBUILD |   68 ++---
 automake.install |   44 +-
 2 files changed, 56 insertions(+), 56 deletions(-)

Deleted: core-any/PKGBUILD
===
--- core-any/PKGBUILD   2012-06-02 23:03:27 UTC (rev 160642)
+++ core-any/PKGBUILD   2012-06-02 23:09:44 UTC (rev 160643)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Allan McRae al...@archlinux.org
-# Contributor: judd jvi...@zeroflux.org
-
-pkgname=automake
-pkgver=1.12
-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=('5fc40c032ceaebecd1588b8d125b4781'
- 'c7298222918ea44c4dce97363173a02d')
-
-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
-}

Copied: automake/repos/core-any/PKGBUILD (from rev 160642, 
automake/repos/testing-any/PKGBUILD)
===
--- core-any/PKGBUILD   (rev 0)
+++ core-any/PKGBUILD   2012-06-02 23:09:44 UTC (rev 160643)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Allan McRae al...@archlinux.org
+# Contributor: judd jvi...@zeroflux.org
+
+pkgname=automake
+pkgver=1.12.1
+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=('036d79de6e443e02aec2be1df2b4f0ac'
+ '3f8f31210a3030ff9146a6696774f5e9')
+
+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: core-any/automake.install
===
--- core-any/automake.install   2012-06-02 23:03:27 UTC (rev 160642)
+++ core-any/automake.install   2012-06-02 23:09:44 UTC (rev 160643)
@@ -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/core-any/automake.install (from rev 160642, 
automake/repos/testing-any/automake.install)
===
--- core-any/automake.install   (rev 0)
+++ core-any/automake.install   2012-06-02 23:09:44 UTC (rev 160643)
@@ -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:



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

2012-04-29 Thread Allan McRae
Date: Sunday, April 29, 2012 @ 20:41:55
  Author: allan
Revision: 157811

db-move: moved automake from [testing] to [core] (any)

Added:
  automake/repos/core-any/PKGBUILD
(from rev 157810, automake/repos/testing-any/PKGBUILD)
  automake/repos/core-any/automake.install
(from rev 157810, automake/repos/testing-any/automake.install)
Deleted:
  automake/repos/core-any/PKGBUILD
  automake/repos/core-any/automake.install
  automake/repos/testing-any/

--+
 PKGBUILD |   68 ++---
 automake.install |   44 +-
 2 files changed, 56 insertions(+), 56 deletions(-)

Deleted: core-any/PKGBUILD
===
--- core-any/PKGBUILD   2012-04-30 00:00:31 UTC (rev 157810)
+++ core-any/PKGBUILD   2012-04-30 00:41:55 UTC (rev 157811)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Allan McRae al...@archlinux.org
-# Contributor: judd jvi...@zeroflux.org
-
-pkgname=automake
-pkgver=1.11.5
-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=('13f6a9522339ac0885110506cb7abad8'
- 'c1170aad0acbe57b87d17b5eaf3f9061')
-
-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
-}

Copied: automake/repos/core-any/PKGBUILD (from rev 157810, 
automake/repos/testing-any/PKGBUILD)
===
--- core-any/PKGBUILD   (rev 0)
+++ core-any/PKGBUILD   2012-04-30 00:41:55 UTC (rev 157811)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Allan McRae al...@archlinux.org
+# Contributor: judd jvi...@zeroflux.org
+
+pkgname=automake
+pkgver=1.12
+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=('5fc40c032ceaebecd1588b8d125b4781'
+ 'c7298222918ea44c4dce97363173a02d')
+
+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: core-any/automake.install
===
--- core-any/automake.install   2012-04-30 00:00:31 UTC (rev 157810)
+++ core-any/automake.install   2012-04-30 00:41:55 UTC (rev 157811)
@@ -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/core-any/automake.install (from rev 157810, 
automake/repos/testing-any/automake.install)
===
--- core-any/automake.install   (rev 0)
+++ core-any/automake.install   2012-04-30 00:41:55 UTC (rev 157811)
@@ -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:



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

2012-04-21 Thread Allan McRae
Date: Saturday, April 21, 2012 @ 06:26:53
  Author: allan
Revision: 156584

db-move: moved automake from [testing] to [core] (any)

Added:
  automake/repos/core-any/PKGBUILD
(from rev 156583, automake/repos/testing-any/PKGBUILD)
  automake/repos/core-any/automake.install
(from rev 156583, automake/repos/testing-any/automake.install)
Deleted:
  automake/repos/core-any/PKGBUILD
  automake/repos/core-any/automake.install
  automake/repos/testing-any/

--+
 PKGBUILD |   69 ++---
 automake.install |   44 -
 2 files changed, 56 insertions(+), 57 deletions(-)

Deleted: core-any/PKGBUILD
===
--- core-any/PKGBUILD   2012-04-21 09:42:51 UTC (rev 156583)
+++ core-any/PKGBUILD   2012-04-21 10:26:53 UTC (rev 156584)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Allan McRae al...@archlinux.org
-# Contributor: judd jvi...@zeroflux.org
-
-pkgname=automake
-pkgver=1.11.4
-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.gz{,.sig})
-md5sums=('f4c545f01252089d2c3837e1d1d3e21b'
- '290d7b0dc40011b3956decc1effb0bb1')
-
-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
-}

Copied: automake/repos/core-any/PKGBUILD (from rev 156583, 
automake/repos/testing-any/PKGBUILD)
===
--- core-any/PKGBUILD   (rev 0)
+++ core-any/PKGBUILD   2012-04-21 10:26:53 UTC (rev 156584)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Allan McRae al...@archlinux.org
+# Contributor: judd jvi...@zeroflux.org
+
+pkgname=automake
+pkgver=1.11.5
+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=('13f6a9522339ac0885110506cb7abad8'
+ 'c1170aad0acbe57b87d17b5eaf3f9061')
+
+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: core-any/automake.install
===
--- core-any/automake.install   2012-04-21 09:42:51 UTC (rev 156583)
+++ core-any/automake.install   2012-04-21 10:26:53 UTC (rev 156584)
@@ -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/core-any/automake.install (from rev 156583, 
automake/repos/testing-any/automake.install)
===
--- core-any/automake.install   (rev 0)
+++ core-any/automake.install   2012-04-21 10:26:53 UTC (rev 156584)
@@ -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:



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

2012-04-15 Thread Allan McRae
Date: Monday, April 16, 2012 @ 00:41:46
  Author: allan
Revision: 156207

fix conflict

Added:
  automake/repos/testing-any/
  automake/repos/testing-any/PKGBUILD
(from rev 156206, automake/trunk/PKGBUILD)
  automake/repos/testing-any/automake.install
(from rev 156206, automake/trunk/automake.install)
Deleted:
  automake/repos/testing-any/PKGBUILD
  automake/repos/testing-any/automake.install

--+
 PKGBUILD |   69 ++---
 automake.install |   44 -
 2 files changed, 56 insertions(+), 57 deletions(-)

Deleted: testing-any/PKGBUILD
===
--- testing-any/PKGBUILD2012-04-04 09:05:52 UTC (rev 155494)
+++ testing-any/PKGBUILD2012-04-16 04:41:46 UTC (rev 156207)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Allan McRae al...@archlinux.org
-# Contributor: judd jvi...@zeroflux.org
-
-pkgname=automake
-pkgver=1.11.4
-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.gz{,.sig})
-md5sums=('f4c545f01252089d2c3837e1d1d3e21b'
- '290d7b0dc40011b3956decc1effb0bb1')
-
-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
-}

Copied: automake/repos/testing-any/PKGBUILD (from rev 156206, 
automake/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2012-04-16 04:41:46 UTC (rev 156207)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Allan McRae al...@archlinux.org
+# Contributor: judd jvi...@zeroflux.org
+
+pkgname=automake
+pkgver=1.11.5
+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=('13f6a9522339ac0885110506cb7abad8'
+ 'c1170aad0acbe57b87d17b5eaf3f9061')
+
+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: testing-any/automake.install
===
--- testing-any/automake.install2012-04-04 09:05:52 UTC (rev 155494)
+++ testing-any/automake.install2012-04-16 04:41:46 UTC (rev 156207)
@@ -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 156206, 
automake/trunk/automake.install)
===
--- testing-any/automake.install(rev 0)
+++ testing-any/automake.install2012-04-16 04:41:46 UTC (rev 156207)
@@ -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:



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

2012-04-07 Thread Allan McRae
Date: Saturday, April 7, 2012 @ 04:07:13
  Author: allan
Revision: 155833

db-move: moved automake from [testing] to [core] (any)

Added:
  automake/repos/core-any/PKGBUILD
(from rev 155832, automake/repos/testing-any/PKGBUILD)
  automake/repos/core-any/automake.install
(from rev 155832, automake/repos/testing-any/automake.install)
Deleted:
  automake/repos/core-any/PKGBUILD
  automake/repos/core-any/automake.install
  automake/repos/testing-any/

--+
 PKGBUILD |   70 ++---
 automake.install |   44 -
 2 files changed, 57 insertions(+), 57 deletions(-)

Deleted: core-any/PKGBUILD
===
--- core-any/PKGBUILD   2012-04-07 07:57:39 UTC (rev 155832)
+++ core-any/PKGBUILD   2012-04-07 08:07:13 UTC (rev 155833)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Allan McRae al...@archlinux.org
-# Contributor: judd jvi...@zeroflux.org
-
-pkgname=automake
-pkgver=1.11.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.gz{,.sig})
-md5sums=('93ecb319f0365cb801990b00f658d026'
- 'f0673734ccb70a7d40c201ee51d83653')
-
-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
-}

Copied: automake/repos/core-any/PKGBUILD (from rev 155832, 
automake/repos/testing-any/PKGBUILD)
===
--- core-any/PKGBUILD   (rev 0)
+++ core-any/PKGBUILD   2012-04-07 08:07:13 UTC (rev 155833)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Allan McRae al...@archlinux.org
+# Contributor: judd jvi...@zeroflux.org
+
+pkgname=automake
+pkgver=1.11.4
+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.gz{,.sig})
+md5sums=('f4c545f01252089d2c3837e1d1d3e21b'
+ '290d7b0dc40011b3956decc1effb0bb1')
+
+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: core-any/automake.install
===
--- core-any/automake.install   2012-04-07 07:57:39 UTC (rev 155832)
+++ core-any/automake.install   2012-04-07 08:07:13 UTC (rev 155833)
@@ -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/core-any/automake.install (from rev 155832, 
automake/repos/testing-any/automake.install)
===
--- core-any/automake.install   (rev 0)
+++ core-any/automake.install   2012-04-07 08:07:13 UTC (rev 155833)
@@ -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:



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

2012-02-02 Thread Allan McRae
Date: Friday, February 3, 2012 @ 02:03:59
  Author: allan
Revision: 148523

db-move: moved automake from [testing] to [core] (any)

Added:
  automake/repos/core-any/PKGBUILD
(from rev 148522, automake/repos/testing-any/PKGBUILD)
  automake/repos/core-any/automake.install
(from rev 148522, automake/repos/testing-any/automake.install)
Deleted:
  automake/repos/core-any/PKGBUILD
  automake/repos/core-any/automake.install
  automake/repos/testing-any/

--+
 PKGBUILD |   70 ++---
 automake.install |   44 -
 2 files changed, 57 insertions(+), 57 deletions(-)

Deleted: core-any/PKGBUILD
===
--- core-any/PKGBUILD   2012-02-03 01:16:27 UTC (rev 148522)
+++ core-any/PKGBUILD   2012-02-03 07:03:59 UTC (rev 148523)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Allan McRae al...@archlinux.org
-# Contributor: judd jvi...@zeroflux.org
-
-pkgname=automake
-pkgver=1.11.2
-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.gz{,.sig})
-md5sums=('79ad64a9f6e83ea98d6964cef8d8a0bc'
- '677bfee8a872499fb9ade9ff82971d41')
-
-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
-}

Copied: automake/repos/core-any/PKGBUILD (from rev 148522, 
automake/repos/testing-any/PKGBUILD)
===
--- core-any/PKGBUILD   (rev 0)
+++ core-any/PKGBUILD   2012-02-03 07:03:59 UTC (rev 148523)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Allan McRae al...@archlinux.org
+# Contributor: judd jvi...@zeroflux.org
+
+pkgname=automake
+pkgver=1.11.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.gz{,.sig})
+md5sums=('93ecb319f0365cb801990b00f658d026'
+ 'f0673734ccb70a7d40c201ee51d83653')
+
+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: core-any/automake.install
===
--- core-any/automake.install   2012-02-03 01:16:27 UTC (rev 148522)
+++ core-any/automake.install   2012-02-03 07:03:59 UTC (rev 148523)
@@ -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/core-any/automake.install (from rev 148522, 
automake/repos/testing-any/automake.install)
===
--- core-any/automake.install   (rev 0)
+++ core-any/automake.install   2012-02-03 07:03:59 UTC (rev 148523)
@@ -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:



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

2011-12-23 Thread Allan McRae
Date: Friday, December 23, 2011 @ 18:43:33
  Author: allan
Revision: 145612

db-move: moved automake from [testing] to [core] (any)

Added:
  automake/repos/core-any/PKGBUILD
(from rev 145611, automake/repos/testing-any/PKGBUILD)
  automake/repos/core-any/automake.install
(from rev 145611, automake/repos/testing-any/automake.install)
Deleted:
  automake/repos/core-any/PKGBUILD
  automake/repos/core-any/automake.install
  automake/repos/testing-any/

--+
 PKGBUILD |   70 ++---
 automake.install |   44 -
 2 files changed, 57 insertions(+), 57 deletions(-)

Deleted: core-any/PKGBUILD
===
--- core-any/PKGBUILD   2011-12-23 20:54:15 UTC (rev 145611)
+++ core-any/PKGBUILD   2011-12-23 23:43:33 UTC (rev 145612)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Allan McRae al...@archlinux.org
-# Contributor: judd jvi...@zeroflux.org
-
-pkgname=automake
-pkgver=1.11.1
-pkgrel=3
-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.gz{,.sig})
-md5sums=('4ee7f0ff5f0e467d58b6bd5da96b1c74'
- 'ef699c963063e30a34843fb75606025b')
-
-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
-}

Copied: automake/repos/core-any/PKGBUILD (from rev 145611, 
automake/repos/testing-any/PKGBUILD)
===
--- core-any/PKGBUILD   (rev 0)
+++ core-any/PKGBUILD   2011-12-23 23:43:33 UTC (rev 145612)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Allan McRae al...@archlinux.org
+# Contributor: judd jvi...@zeroflux.org
+
+pkgname=automake
+pkgver=1.11.2
+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.gz{,.sig})
+md5sums=('79ad64a9f6e83ea98d6964cef8d8a0bc'
+ '677bfee8a872499fb9ade9ff82971d41')
+
+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: core-any/automake.install
===
--- core-any/automake.install   2011-12-23 20:54:15 UTC (rev 145611)
+++ core-any/automake.install   2011-12-23 23:43:33 UTC (rev 145612)
@@ -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/core-any/automake.install (from rev 145611, 
automake/repos/testing-any/automake.install)
===
--- core-any/automake.install   (rev 0)
+++ core-any/automake.install   2011-12-23 23:43:33 UTC (rev 145612)
@@ -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:



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

2011-11-04 Thread Allan McRae
Date: Friday, November 4, 2011 @ 19:35:45
  Author: allan
Revision: 142058

db-move: moved automake from [testing] to [core] (any)

Added:
  automake/repos/core-any/PKGBUILD
(from rev 142056, automake/repos/testing-any/PKGBUILD)
  automake/repos/core-any/automake.install
(from rev 142056, automake/repos/testing-any/automake.install)
Deleted:
  automake/repos/core-any/PKGBUILD
  automake/repos/core-any/automake.install
  automake/repos/testing-any/

--+
 PKGBUILD |   63 +
 automake.install |   44 ++---
 2 files changed, 57 insertions(+), 50 deletions(-)

Deleted: core-any/PKGBUILD
===
--- core-any/PKGBUILD   2011-11-04 23:35:44 UTC (rev 142057)
+++ core-any/PKGBUILD   2011-11-04 23:35:45 UTC (rev 142058)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Allan McRae al...@archlinux.org
-# Contributor: judd jvi...@zeroflux.org
-
-pkgname=automake
-pkgver=1.11.1
-pkgrel=2
-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.gz)
-md5sums=('4ee7f0ff5f0e467d58b6bd5da96b1c74')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-}

Copied: automake/repos/core-any/PKGBUILD (from rev 142056, 
automake/repos/testing-any/PKGBUILD)
===
--- core-any/PKGBUILD   (rev 0)
+++ core-any/PKGBUILD   2011-11-04 23:35:45 UTC (rev 142058)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Allan McRae al...@archlinux.org
+# Contributor: judd jvi...@zeroflux.org
+
+pkgname=automake
+pkgver=1.11.1
+pkgrel=3
+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.gz{,.sig})
+md5sums=('4ee7f0ff5f0e467d58b6bd5da96b1c74'
+ 'ef699c963063e30a34843fb75606025b')
+
+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: core-any/automake.install
===
--- core-any/automake.install   2011-11-04 23:35:44 UTC (rev 142057)
+++ core-any/automake.install   2011-11-04 23:35:45 UTC (rev 142058)
@@ -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/core-any/automake.install (from rev 142056, 
automake/repos/testing-any/automake.install)
===
--- core-any/automake.install   (rev 0)
+++ core-any/automake.install   2011-11-04 23:35:45 UTC (rev 142058)
@@ -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: