[arch-commits] Commit in gmp/repos (6 files)

2015-12-14 Thread Allan McRae
Date: Tuesday, December 15, 2015 @ 02:46:53
  Author: allan
Revision: 256092

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  gmp/repos/testing-i686/
  gmp/repos/testing-i686/PKGBUILD
(from rev 256091, gmp/trunk/PKGBUILD)
  gmp/repos/testing-i686/gmp.install
(from rev 256091, gmp/trunk/gmp.install)
  gmp/repos/testing-x86_64/
  gmp/repos/testing-x86_64/PKGBUILD
(from rev 256091, gmp/trunk/PKGBUILD)
  gmp/repos/testing-x86_64/gmp.install
(from rev 256091, gmp/trunk/gmp.install)

+
 testing-i686/PKGBUILD  |   37 +
 testing-i686/gmp.install   |   20 
 testing-x86_64/PKGBUILD|   37 +
 testing-x86_64/gmp.install |   20 
 4 files changed, 114 insertions(+)

Copied: gmp/repos/testing-i686/PKGBUILD (from rev 256091, gmp/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-12-15 01:46:53 UTC (rev 256092)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Allan McRae 
+# Contributer: Jan de Groot 
+
+pkgname=gmp
+pkgver=6.1.0
+pkgrel=3
+pkgdesc="A free library for arbitrary precision arithmetic"
+arch=('i686' 'x86_64')
+url="http://gmplib.org/;
+depends=('gcc-libs' 'sh')
+license=('LGPL3' 'GPL')
+install=gmp.install
+source=(https://gmplib.org/download/gmp/gmp-${pkgver}.tar.xz{,.sig})
+md5sums=('a9868ef2556ad6a2909babcd1428f3c7'
+ 'SKIP')
+validpgpkeys=('5972C48224C1E7E62AA0275D1150EE33C1A000B0')   # Marco Bodrato
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  ./configure --build=${CHOST} \
+--prefix=/usr \
+--enable-cxx
+# do not --enable-fat - see https://bugs.archlinux.org/task/47284 
+  make
+}
+
+check() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make check
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}

Copied: gmp/repos/testing-i686/gmp.install (from rev 256091, 
gmp/trunk/gmp.install)
===
--- testing-i686/gmp.install(rev 0)
+++ testing-i686/gmp.install2015-12-15 01:46:53 UTC (rev 256092)
@@ -0,0 +1,20 @@
+info_dir=usr/share/info
+info_files=(gmp.info gmp.info-1 gmp.info-2)
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  for f in ${info_files[@]}; do
+install-info ${info_dir}/$f.gz ${info_dir}/dir 2> /dev/null
+  done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [ -x usr/bin/install-info ] || return 0
+  for f in ${info_files[@]}; do
+install-info --delete ${info_dir}/$f.gz ${info_dir}/dir 2> /dev/null
+  done
+}

Copied: gmp/repos/testing-x86_64/PKGBUILD (from rev 256091, gmp/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2015-12-15 01:46:53 UTC (rev 256092)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Allan McRae 
+# Contributer: Jan de Groot 
+
+pkgname=gmp
+pkgver=6.1.0
+pkgrel=3
+pkgdesc="A free library for arbitrary precision arithmetic"
+arch=('i686' 'x86_64')
+url="http://gmplib.org/;
+depends=('gcc-libs' 'sh')
+license=('LGPL3' 'GPL')
+install=gmp.install
+source=(https://gmplib.org/download/gmp/gmp-${pkgver}.tar.xz{,.sig})
+md5sums=('a9868ef2556ad6a2909babcd1428f3c7'
+ 'SKIP')
+validpgpkeys=('5972C48224C1E7E62AA0275D1150EE33C1A000B0')   # Marco Bodrato
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  ./configure --build=${CHOST} \
+--prefix=/usr \
+--enable-cxx
+# do not --enable-fat - see https://bugs.archlinux.org/task/47284 
+  make
+}
+
+check() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make check
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}

Copied: gmp/repos/testing-x86_64/gmp.install (from rev 256091, 
gmp/trunk/gmp.install)
===
--- testing-x86_64/gmp.install  (rev 0)
+++ testing-x86_64/gmp.install  2015-12-15 01:46:53 UTC (rev 256092)
@@ -0,0 +1,20 @@
+info_dir=usr/share/info
+info_files=(gmp.info gmp.info-1 gmp.info-2)
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  for f in ${info_files[@]}; do
+install-info ${info_dir}/$f.gz ${info_dir}/dir 2> /dev/null
+  done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [ -x usr/bin/install-info ] || return 0
+  for f in ${info_files[@]}; do
+install-info --delete ${info_dir}/$f.gz ${info_dir}/dir 2> /dev/null
+  done
+}


[arch-commits] Commit in gmp/repos (6 files)

2015-12-05 Thread Allan McRae
Date: Saturday, December 5, 2015 @ 16:55:11
  Author: allan
Revision: 252454

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  gmp/repos/staging-i686/
  gmp/repos/staging-i686/PKGBUILD
(from rev 252453, gmp/trunk/PKGBUILD)
  gmp/repos/staging-i686/gmp.install
(from rev 252453, gmp/trunk/gmp.install)
  gmp/repos/staging-x86_64/
  gmp/repos/staging-x86_64/PKGBUILD
(from rev 252453, gmp/trunk/PKGBUILD)
  gmp/repos/staging-x86_64/gmp.install
(from rev 252453, gmp/trunk/gmp.install)

+
 staging-i686/PKGBUILD  |   36 
 staging-i686/gmp.install   |   20 
 staging-x86_64/PKGBUILD|   36 
 staging-x86_64/gmp.install |   20 
 4 files changed, 112 insertions(+)

Copied: gmp/repos/staging-i686/PKGBUILD (from rev 252453, gmp/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-12-05 15:55:11 UTC (rev 252454)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Allan McRae 
+# Contributer: Jan de Groot 
+
+pkgname=gmp
+pkgver=6.1.0
+pkgrel=2
+pkgdesc="A free library for arbitrary precision arithmetic"
+arch=('i686' 'x86_64')
+url="http://gmplib.org/;
+depends=('gcc-libs' 'sh')
+license=('LGPL3' 'GPL')
+install=gmp.install
+source=(https://gmplib.org/download/gmp/gmp-${pkgver}.tar.xz{,.sig})
+md5sums=('a9868ef2556ad6a2909babcd1428f3c7'
+ 'SKIP')
+validpgpkeys=('5972C48224C1E7E62AA0275D1150EE33C1A000B0')   # Marco Bodrato
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  ./configure --build=${CHOST} \
+--prefix=/usr \
+--enable-fat --enable-cxx
+  make
+}
+
+check() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make check
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}

Copied: gmp/repos/staging-i686/gmp.install (from rev 252453, 
gmp/trunk/gmp.install)
===
--- staging-i686/gmp.install(rev 0)
+++ staging-i686/gmp.install2015-12-05 15:55:11 UTC (rev 252454)
@@ -0,0 +1,20 @@
+info_dir=usr/share/info
+info_files=(gmp.info gmp.info-1 gmp.info-2)
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  for f in ${info_files[@]}; do
+install-info ${info_dir}/$f.gz ${info_dir}/dir 2> /dev/null
+  done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [ -x usr/bin/install-info ] || return 0
+  for f in ${info_files[@]}; do
+install-info --delete ${info_dir}/$f.gz ${info_dir}/dir 2> /dev/null
+  done
+}

Copied: gmp/repos/staging-x86_64/PKGBUILD (from rev 252453, gmp/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2015-12-05 15:55:11 UTC (rev 252454)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Allan McRae 
+# Contributer: Jan de Groot 
+
+pkgname=gmp
+pkgver=6.1.0
+pkgrel=2
+pkgdesc="A free library for arbitrary precision arithmetic"
+arch=('i686' 'x86_64')
+url="http://gmplib.org/;
+depends=('gcc-libs' 'sh')
+license=('LGPL3' 'GPL')
+install=gmp.install
+source=(https://gmplib.org/download/gmp/gmp-${pkgver}.tar.xz{,.sig})
+md5sums=('a9868ef2556ad6a2909babcd1428f3c7'
+ 'SKIP')
+validpgpkeys=('5972C48224C1E7E62AA0275D1150EE33C1A000B0')   # Marco Bodrato
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  ./configure --build=${CHOST} \
+--prefix=/usr \
+--enable-fat --enable-cxx
+  make
+}
+
+check() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make check
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}

Copied: gmp/repos/staging-x86_64/gmp.install (from rev 252453, 
gmp/trunk/gmp.install)
===
--- staging-x86_64/gmp.install  (rev 0)
+++ staging-x86_64/gmp.install  2015-12-05 15:55:11 UTC (rev 252454)
@@ -0,0 +1,20 @@
+info_dir=usr/share/info
+info_files=(gmp.info gmp.info-1 gmp.info-2)
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  for f in ${info_files[@]}; do
+install-info ${info_dir}/$f.gz ${info_dir}/dir 2> /dev/null
+  done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [ -x usr/bin/install-info ] || return 0
+  for f in ${info_files[@]}; do
+install-info --delete ${info_dir}/$f.gz ${info_dir}/dir 2> /dev/null
+  done
+}


[arch-commits] Commit in gmp/repos (6 files)

2015-11-02 Thread Allan McRae
Date: Monday, November 2, 2015 @ 15:09:07
  Author: allan
Revision: 250024

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  gmp/repos/testing-i686/
  gmp/repos/testing-i686/PKGBUILD
(from rev 250023, gmp/trunk/PKGBUILD)
  gmp/repos/testing-i686/gmp.install
(from rev 250023, gmp/trunk/gmp.install)
  gmp/repos/testing-x86_64/
  gmp/repos/testing-x86_64/PKGBUILD
(from rev 250023, gmp/trunk/PKGBUILD)
  gmp/repos/testing-x86_64/gmp.install
(from rev 250023, gmp/trunk/gmp.install)

+
 testing-i686/PKGBUILD  |   36 
 testing-i686/gmp.install   |   20 
 testing-x86_64/PKGBUILD|   36 
 testing-x86_64/gmp.install |   20 
 4 files changed, 112 insertions(+)

Copied: gmp/repos/testing-i686/PKGBUILD (from rev 250023, gmp/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-11-02 14:09:07 UTC (rev 250024)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Allan McRae 
+# Contributer: Jan de Groot 
+
+pkgname=gmp
+pkgver=6.1.0
+pkgrel=1
+pkgdesc="A free library for arbitrary precision arithmetic"
+arch=('i686' 'x86_64')
+url="http://gmplib.org/;
+depends=('gcc-libs' 'sh')
+license=('LGPL3' 'GPL')
+install=gmp.install
+source=(https://gmplib.org/download/gmp/gmp-${pkgver}.tar.xz{,.sig})
+md5sums=('a9868ef2556ad6a2909babcd1428f3c7'
+ 'SKIP')
+validpgpkeys=('5972C48224C1E7E62AA0275D1150EE33C1A000B0')   # Marco Bodrato
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  ./configure --build=${CHOST} \
+--prefix=/usr \
+--enable-fat --enable-cxx
+  make
+}
+
+check() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make check
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}

Copied: gmp/repos/testing-i686/gmp.install (from rev 250023, 
gmp/trunk/gmp.install)
===
--- testing-i686/gmp.install(rev 0)
+++ testing-i686/gmp.install2015-11-02 14:09:07 UTC (rev 250024)
@@ -0,0 +1,20 @@
+info_dir=usr/share/info
+info_files=(gmp.info gmp.info-1 gmp.info-2)
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  for f in ${info_files[@]}; do
+install-info ${info_dir}/$f.gz ${info_dir}/dir 2> /dev/null
+  done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [ -x usr/bin/install-info ] || return 0
+  for f in ${info_files[@]}; do
+install-info --delete ${info_dir}/$f.gz ${info_dir}/dir 2> /dev/null
+  done
+}

Copied: gmp/repos/testing-x86_64/PKGBUILD (from rev 250023, gmp/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2015-11-02 14:09:07 UTC (rev 250024)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Allan McRae 
+# Contributer: Jan de Groot 
+
+pkgname=gmp
+pkgver=6.1.0
+pkgrel=1
+pkgdesc="A free library for arbitrary precision arithmetic"
+arch=('i686' 'x86_64')
+url="http://gmplib.org/;
+depends=('gcc-libs' 'sh')
+license=('LGPL3' 'GPL')
+install=gmp.install
+source=(https://gmplib.org/download/gmp/gmp-${pkgver}.tar.xz{,.sig})
+md5sums=('a9868ef2556ad6a2909babcd1428f3c7'
+ 'SKIP')
+validpgpkeys=('5972C48224C1E7E62AA0275D1150EE33C1A000B0')   # Marco Bodrato
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  ./configure --build=${CHOST} \
+--prefix=/usr \
+--enable-fat --enable-cxx
+  make
+}
+
+check() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make check
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}

Copied: gmp/repos/testing-x86_64/gmp.install (from rev 250023, 
gmp/trunk/gmp.install)
===
--- testing-x86_64/gmp.install  (rev 0)
+++ testing-x86_64/gmp.install  2015-11-02 14:09:07 UTC (rev 250024)
@@ -0,0 +1,20 @@
+info_dir=usr/share/info
+info_files=(gmp.info gmp.info-1 gmp.info-2)
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  for f in ${info_files[@]}; do
+install-info ${info_dir}/$f.gz ${info_dir}/dir 2> /dev/null
+  done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [ -x usr/bin/install-info ] || return 0
+  for f in ${info_files[@]}; do
+install-info --delete ${info_dir}/$f.gz ${info_dir}/dir 2> /dev/null
+  done
+}


[arch-commits] Commit in gmp/repos (6 files)

2015-02-14 Thread Allan McRae
Date: Sunday, February 15, 2015 @ 06:00:01
  Author: allan
Revision: 231404

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  gmp/repos/testing-i686/
  gmp/repos/testing-i686/PKGBUILD
(from rev 231403, gmp/trunk/PKGBUILD)
  gmp/repos/testing-i686/gmp.install
(from rev 231403, gmp/trunk/gmp.install)
  gmp/repos/testing-x86_64/
  gmp/repos/testing-x86_64/PKGBUILD
(from rev 231403, gmp/trunk/PKGBUILD)
  gmp/repos/testing-x86_64/gmp.install
(from rev 231403, gmp/trunk/gmp.install)

+
 testing-i686/PKGBUILD  |   36 
 testing-i686/gmp.install   |   20 
 testing-x86_64/PKGBUILD|   36 
 testing-x86_64/gmp.install |   20 
 4 files changed, 112 insertions(+)

Copied: gmp/repos/testing-i686/PKGBUILD (from rev 231403, gmp/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-02-15 05:00:01 UTC (rev 231404)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Allan McRae al...@archlinux.org
+# Contributer: Jan de Groot j...@archlinux.org
+
+pkgname=gmp
+pkgver=6.0.0
+pkgrel=2
+pkgdesc=A free library for arbitrary precision arithmetic
+arch=('i686' 'x86_64')
+url=http://gmplib.org/;
+depends=('gcc-libs' 'sh')
+license=('LGPL3' 'GPL')
+install=gmp.install
+source=(https://gmplib.org/download/gmp/gmp-${pkgver}a.tar.xz{,.sig})
+md5sums=('1e6da4e434553d2811437aa42c7f7c76'
+ 'SKIP')
+validpgpkeys=('343C2FF0FBEE5EC2EDBEF399F3599FF828C67298')   # Niels Möller
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  ./configure --build=${CHOST} \
+--prefix=/usr \
+--enable-fat --enable-cxx
+  make
+}
+
+check() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Copied: gmp/repos/testing-i686/gmp.install (from rev 231403, 
gmp/trunk/gmp.install)
===
--- testing-i686/gmp.install(rev 0)
+++ testing-i686/gmp.install2015-02-15 05:00:01 UTC (rev 231404)
@@ -0,0 +1,20 @@
+info_dir=usr/share/info
+info_files=(gmp.info gmp.info-1 gmp.info-2)
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  for f in ${info_files[@]}; do
+install-info ${info_dir}/$f.gz ${info_dir}/dir 2 /dev/null
+  done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [ -x usr/bin/install-info ] || return 0
+  for f in ${info_files[@]}; do
+install-info --delete ${info_dir}/$f.gz ${info_dir}/dir 2 /dev/null
+  done
+}

Copied: gmp/repos/testing-x86_64/PKGBUILD (from rev 231403, gmp/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2015-02-15 05:00:01 UTC (rev 231404)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Allan McRae al...@archlinux.org
+# Contributer: Jan de Groot j...@archlinux.org
+
+pkgname=gmp
+pkgver=6.0.0
+pkgrel=2
+pkgdesc=A free library for arbitrary precision arithmetic
+arch=('i686' 'x86_64')
+url=http://gmplib.org/;
+depends=('gcc-libs' 'sh')
+license=('LGPL3' 'GPL')
+install=gmp.install
+source=(https://gmplib.org/download/gmp/gmp-${pkgver}a.tar.xz{,.sig})
+md5sums=('1e6da4e434553d2811437aa42c7f7c76'
+ 'SKIP')
+validpgpkeys=('343C2FF0FBEE5EC2EDBEF399F3599FF828C67298')   # Niels Möller
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  ./configure --build=${CHOST} \
+--prefix=/usr \
+--enable-fat --enable-cxx
+  make
+}
+
+check() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Copied: gmp/repos/testing-x86_64/gmp.install (from rev 231403, 
gmp/trunk/gmp.install)
===
--- testing-x86_64/gmp.install  (rev 0)
+++ testing-x86_64/gmp.install  2015-02-15 05:00:01 UTC (rev 231404)
@@ -0,0 +1,20 @@
+info_dir=usr/share/info
+info_files=(gmp.info gmp.info-1 gmp.info-2)
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  for f in ${info_files[@]}; do
+install-info ${info_dir}/$f.gz ${info_dir}/dir 2 /dev/null
+  done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [ -x usr/bin/install-info ] || return 0
+  for f in ${info_files[@]}; do
+install-info --delete ${info_dir}/$f.gz ${info_dir}/dir 2 /dev/null
+  done
+}


[arch-commits] Commit in gmp/repos (6 files)

2014-03-25 Thread Allan McRae
Date: Wednesday, March 26, 2014 @ 00:12:21
  Author: allan
Revision: 208731

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  gmp/repos/testing-i686/
  gmp/repos/testing-i686/PKGBUILD
(from rev 208730, gmp/trunk/PKGBUILD)
  gmp/repos/testing-i686/gmp.install
(from rev 208730, gmp/trunk/gmp.install)
  gmp/repos/testing-x86_64/
  gmp/repos/testing-x86_64/PKGBUILD
(from rev 208730, gmp/trunk/PKGBUILD)
  gmp/repos/testing-x86_64/gmp.install
(from rev 208730, gmp/trunk/gmp.install)

+
 testing-i686/PKGBUILD  |   34 ++
 testing-i686/gmp.install   |   20 
 testing-x86_64/PKGBUILD|   34 ++
 testing-x86_64/gmp.install |   20 
 4 files changed, 108 insertions(+)

Copied: gmp/repos/testing-i686/PKGBUILD (from rev 208730, gmp/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-03-25 23:12:21 UTC (rev 208731)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Allan McRae al...@archlinux.org
+# Contributer: Jan de Groot j...@archlinux.org
+
+pkgname=gmp
+pkgver=6.0.0
+pkgrel=1
+pkgdesc=A free library for arbitrary precision arithmetic
+arch=('i686' 'x86_64')
+url=http://gmplib.org/;
+depends=('gcc-libs' 'sh')
+license=('LGPL3')
+install=gmp.install
+source=(ftp://ftp.gmplib.org/pub/gmp-${pkgver}/gmp-${pkgver}a.tar.xz{,.sig})
+md5sums=('1e6da4e434553d2811437aa42c7f7c76'
+ 'SKIP')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  ./configure --build=${CHOST} \
+--prefix=/usr --enable-cxx
+  make
+}
+
+check() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Copied: gmp/repos/testing-i686/gmp.install (from rev 208730, 
gmp/trunk/gmp.install)
===
--- testing-i686/gmp.install(rev 0)
+++ testing-i686/gmp.install2014-03-25 23:12:21 UTC (rev 208731)
@@ -0,0 +1,20 @@
+info_dir=usr/share/info
+info_files=(gmp.info gmp.info-1 gmp.info-2)
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  for f in ${info_files[@]}; do
+install-info ${info_dir}/$f.gz ${info_dir}/dir 2 /dev/null
+  done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [ -x usr/bin/install-info ] || return 0
+  for f in ${info_files[@]}; do
+install-info --delete ${info_dir}/$f.gz ${info_dir}/dir 2 /dev/null
+  done
+}

Copied: gmp/repos/testing-x86_64/PKGBUILD (from rev 208730, gmp/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-03-25 23:12:21 UTC (rev 208731)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Allan McRae al...@archlinux.org
+# Contributer: Jan de Groot j...@archlinux.org
+
+pkgname=gmp
+pkgver=6.0.0
+pkgrel=1
+pkgdesc=A free library for arbitrary precision arithmetic
+arch=('i686' 'x86_64')
+url=http://gmplib.org/;
+depends=('gcc-libs' 'sh')
+license=('LGPL3')
+install=gmp.install
+source=(ftp://ftp.gmplib.org/pub/gmp-${pkgver}/gmp-${pkgver}a.tar.xz{,.sig})
+md5sums=('1e6da4e434553d2811437aa42c7f7c76'
+ 'SKIP')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  ./configure --build=${CHOST} \
+--prefix=/usr --enable-cxx
+  make
+}
+
+check() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Copied: gmp/repos/testing-x86_64/gmp.install (from rev 208730, 
gmp/trunk/gmp.install)
===
--- testing-x86_64/gmp.install  (rev 0)
+++ testing-x86_64/gmp.install  2014-03-25 23:12:21 UTC (rev 208731)
@@ -0,0 +1,20 @@
+info_dir=usr/share/info
+info_files=(gmp.info gmp.info-1 gmp.info-2)
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  for f in ${info_files[@]}; do
+install-info ${info_dir}/$f.gz ${info_dir}/dir 2 /dev/null
+  done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [ -x usr/bin/install-info ] || return 0
+  for f in ${info_files[@]}; do
+install-info --delete ${info_dir}/$f.gz ${info_dir}/dir 2 /dev/null
+  done
+}



[arch-commits] Commit in gmp/repos (6 files)

2013-10-20 Thread Allan McRae
Date: Sunday, October 20, 2013 @ 14:33:52
  Author: allan
Revision: 196841

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  gmp/repos/testing-i686/
  gmp/repos/testing-i686/PKGBUILD
(from rev 196840, gmp/trunk/PKGBUILD)
  gmp/repos/testing-i686/gmp.install
(from rev 196840, gmp/trunk/gmp.install)
  gmp/repos/testing-x86_64/
  gmp/repos/testing-x86_64/PKGBUILD
(from rev 196840, gmp/trunk/PKGBUILD)
  gmp/repos/testing-x86_64/gmp.install
(from rev 196840, gmp/trunk/gmp.install)

+
 testing-i686/PKGBUILD  |   34 ++
 testing-i686/gmp.install   |   20 
 testing-x86_64/PKGBUILD|   34 ++
 testing-x86_64/gmp.install |   20 
 4 files changed, 108 insertions(+)

Copied: gmp/repos/testing-i686/PKGBUILD (from rev 196840, gmp/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-10-20 12:33:52 UTC (rev 196841)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Allan McRae al...@archlinux.org
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=gmp
+pkgver=5.1.3
+pkgrel=2
+pkgdesc=A free library for arbitrary precision arithmetic
+arch=('i686' 'x86_64')
+url=http://gmplib.org/;
+depends=('gcc-libs' 'sh')
+license=('LGPL3')
+install=gmp.install
+source=(ftp://ftp.gmplib.org/pub/gmp-${pkgver}/gmp-${pkgver}.tar.xz{,.sig})
+md5sums=('e5fe367801ff067b923d1e6a126448aa'
+ 'SKIP')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  ./configure --build=${CHOST} \
+--prefix=/usr --enable-cxx
+  make
+}
+
+check() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Copied: gmp/repos/testing-i686/gmp.install (from rev 196840, 
gmp/trunk/gmp.install)
===
--- testing-i686/gmp.install(rev 0)
+++ testing-i686/gmp.install2013-10-20 12:33:52 UTC (rev 196841)
@@ -0,0 +1,20 @@
+info_dir=usr/share/info
+info_files=(gmp.info gmp.info-1 gmp.info-2)
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  for f in ${info_files[@]}; do
+install-info ${info_dir}/$f.gz ${info_dir}/dir 2 /dev/null
+  done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [ -x usr/bin/install-info ] || return 0
+  for f in ${info_files[@]}; do
+install-info --delete ${info_dir}/$f.gz ${info_dir}/dir 2 /dev/null
+  done
+}

Copied: gmp/repos/testing-x86_64/PKGBUILD (from rev 196840, gmp/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-10-20 12:33:52 UTC (rev 196841)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Allan McRae al...@archlinux.org
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=gmp
+pkgver=5.1.3
+pkgrel=2
+pkgdesc=A free library for arbitrary precision arithmetic
+arch=('i686' 'x86_64')
+url=http://gmplib.org/;
+depends=('gcc-libs' 'sh')
+license=('LGPL3')
+install=gmp.install
+source=(ftp://ftp.gmplib.org/pub/gmp-${pkgver}/gmp-${pkgver}.tar.xz{,.sig})
+md5sums=('e5fe367801ff067b923d1e6a126448aa'
+ 'SKIP')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  ./configure --build=${CHOST} \
+--prefix=/usr --enable-cxx
+  make
+}
+
+check() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Copied: gmp/repos/testing-x86_64/gmp.install (from rev 196840, 
gmp/trunk/gmp.install)
===
--- testing-x86_64/gmp.install  (rev 0)
+++ testing-x86_64/gmp.install  2013-10-20 12:33:52 UTC (rev 196841)
@@ -0,0 +1,20 @@
+info_dir=usr/share/info
+info_files=(gmp.info gmp.info-1 gmp.info-2)
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  for f in ${info_files[@]}; do
+install-info ${info_dir}/$f.gz ${info_dir}/dir 2 /dev/null
+  done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [ -x usr/bin/install-info ] || return 0
+  for f in ${info_files[@]}; do
+install-info --delete ${info_dir}/$f.gz ${info_dir}/dir 2 /dev/null
+  done
+}



[arch-commits] Commit in gmp/repos (6 files)

2013-10-01 Thread Allan McRae
Date: Wednesday, October 2, 2013 @ 02:16:26
  Author: allan
Revision: 195846

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  gmp/repos/testing-i686/
  gmp/repos/testing-i686/PKGBUILD
(from rev 195845, gmp/trunk/PKGBUILD)
  gmp/repos/testing-i686/gmp.install
(from rev 195845, gmp/trunk/gmp.install)
  gmp/repos/testing-x86_64/
  gmp/repos/testing-x86_64/PKGBUILD
(from rev 195845, gmp/trunk/PKGBUILD)
  gmp/repos/testing-x86_64/gmp.install
(from rev 195845, gmp/trunk/gmp.install)

+
 testing-i686/PKGBUILD  |   35 +++
 testing-i686/gmp.install   |   20 
 testing-x86_64/PKGBUILD|   35 +++
 testing-x86_64/gmp.install |   20 
 4 files changed, 110 insertions(+)

Copied: gmp/repos/testing-i686/PKGBUILD (from rev 195845, gmp/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-10-02 00:16:26 UTC (rev 195846)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Allan McRae al...@archlinux.org
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=gmp
+pkgver=5.1.3
+pkgrel=1
+pkgdesc=A free library for arbitrary precision arithmetic
+arch=('i686' 'x86_64')
+url=http://gmplib.org/;
+depends=('gcc-libs' 'sh')
+license=('LGPL3')
+options=('!libtool')
+install=gmp.install
+source=(ftp://ftp.gmplib.org/pub/gmp-${pkgver}/gmp-${pkgver}.tar.xz{,.sig})
+md5sums=('e5fe367801ff067b923d1e6a126448aa'
+ 'SKIP')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  ./configure --build=${CHOST} \
+--prefix=/usr --enable-cxx
+  make
+}
+
+check() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Copied: gmp/repos/testing-i686/gmp.install (from rev 195845, 
gmp/trunk/gmp.install)
===
--- testing-i686/gmp.install(rev 0)
+++ testing-i686/gmp.install2013-10-02 00:16:26 UTC (rev 195846)
@@ -0,0 +1,20 @@
+info_dir=usr/share/info
+info_files=(gmp.info gmp.info-1 gmp.info-2)
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  for f in ${info_files[@]}; do
+install-info ${info_dir}/$f.gz ${info_dir}/dir 2 /dev/null
+  done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [ -x usr/bin/install-info ] || return 0
+  for f in ${info_files[@]}; do
+install-info --delete ${info_dir}/$f.gz ${info_dir}/dir 2 /dev/null
+  done
+}

Copied: gmp/repos/testing-x86_64/PKGBUILD (from rev 195845, gmp/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-10-02 00:16:26 UTC (rev 195846)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Allan McRae al...@archlinux.org
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=gmp
+pkgver=5.1.3
+pkgrel=1
+pkgdesc=A free library for arbitrary precision arithmetic
+arch=('i686' 'x86_64')
+url=http://gmplib.org/;
+depends=('gcc-libs' 'sh')
+license=('LGPL3')
+options=('!libtool')
+install=gmp.install
+source=(ftp://ftp.gmplib.org/pub/gmp-${pkgver}/gmp-${pkgver}.tar.xz{,.sig})
+md5sums=('e5fe367801ff067b923d1e6a126448aa'
+ 'SKIP')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  ./configure --build=${CHOST} \
+--prefix=/usr --enable-cxx
+  make
+}
+
+check() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Copied: gmp/repos/testing-x86_64/gmp.install (from rev 195845, 
gmp/trunk/gmp.install)
===
--- testing-x86_64/gmp.install  (rev 0)
+++ testing-x86_64/gmp.install  2013-10-02 00:16:26 UTC (rev 195846)
@@ -0,0 +1,20 @@
+info_dir=usr/share/info
+info_files=(gmp.info gmp.info-1 gmp.info-2)
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  for f in ${info_files[@]}; do
+install-info ${info_dir}/$f.gz ${info_dir}/dir 2 /dev/null
+  done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [ -x usr/bin/install-info ] || return 0
+  for f in ${info_files[@]}; do
+install-info --delete ${info_dir}/$f.gz ${info_dir}/dir 2 /dev/null
+  done
+}



[arch-commits] Commit in gmp/repos (6 files)

2013-05-21 Thread Allan McRae
Date: Wednesday, May 22, 2013 @ 07:54:39
  Author: allan
Revision: 186209

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  gmp/repos/testing-i686/
  gmp/repos/testing-i686/PKGBUILD
(from rev 186208, gmp/trunk/PKGBUILD)
  gmp/repos/testing-i686/gmp.install
(from rev 186208, gmp/trunk/gmp.install)
  gmp/repos/testing-x86_64/
  gmp/repos/testing-x86_64/PKGBUILD
(from rev 186208, gmp/trunk/PKGBUILD)
  gmp/repos/testing-x86_64/gmp.install
(from rev 186208, gmp/trunk/gmp.install)

+
 testing-i686/PKGBUILD  |   35 +++
 testing-i686/gmp.install   |   20 
 testing-x86_64/PKGBUILD|   35 +++
 testing-x86_64/gmp.install |   20 
 4 files changed, 110 insertions(+)

Copied: gmp/repos/testing-i686/PKGBUILD (from rev 186208, gmp/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-05-22 05:54:39 UTC (rev 186209)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Allan McRae al...@archlinux.org
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=gmp
+pkgver=5.1.2
+pkgrel=1
+pkgdesc=A free library for arbitrary precision arithmetic
+arch=('i686' 'x86_64')
+url=http://gmplib.org/;
+depends=('gcc-libs' 'sh')
+license=('LGPL3')
+options=('!libtool')
+install=gmp.install
+source=(ftp://ftp.gmplib.org/pub/gmp-${pkgver}/gmp-${pkgver}.tar.xz{,.sig})
+md5sums=('06fe2ca164221c59ce74867155cfc1ac'
+ 'SKIP')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  ./configure --build=${CHOST} \
+--prefix=/usr --enable-cxx
+  make
+}
+
+check() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Copied: gmp/repos/testing-i686/gmp.install (from rev 186208, 
gmp/trunk/gmp.install)
===
--- testing-i686/gmp.install(rev 0)
+++ testing-i686/gmp.install2013-05-22 05:54:39 UTC (rev 186209)
@@ -0,0 +1,20 @@
+info_dir=usr/share/info
+info_files=(gmp.info gmp.info-1 gmp.info-2)
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  for f in ${info_files[@]}; do
+install-info ${info_dir}/$f.gz ${info_dir}/dir 2 /dev/null
+  done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [ -x usr/bin/install-info ] || return 0
+  for f in ${info_files[@]}; do
+install-info --delete ${info_dir}/$f.gz ${info_dir}/dir 2 /dev/null
+  done
+}

Copied: gmp/repos/testing-x86_64/PKGBUILD (from rev 186208, gmp/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-22 05:54:39 UTC (rev 186209)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Allan McRae al...@archlinux.org
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=gmp
+pkgver=5.1.2
+pkgrel=1
+pkgdesc=A free library for arbitrary precision arithmetic
+arch=('i686' 'x86_64')
+url=http://gmplib.org/;
+depends=('gcc-libs' 'sh')
+license=('LGPL3')
+options=('!libtool')
+install=gmp.install
+source=(ftp://ftp.gmplib.org/pub/gmp-${pkgver}/gmp-${pkgver}.tar.xz{,.sig})
+md5sums=('06fe2ca164221c59ce74867155cfc1ac'
+ 'SKIP')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  ./configure --build=${CHOST} \
+--prefix=/usr --enable-cxx
+  make
+}
+
+check() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Copied: gmp/repos/testing-x86_64/gmp.install (from rev 186208, 
gmp/trunk/gmp.install)
===
--- testing-x86_64/gmp.install  (rev 0)
+++ testing-x86_64/gmp.install  2013-05-22 05:54:39 UTC (rev 186209)
@@ -0,0 +1,20 @@
+info_dir=usr/share/info
+info_files=(gmp.info gmp.info-1 gmp.info-2)
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  for f in ${info_files[@]}; do
+install-info ${info_dir}/$f.gz ${info_dir}/dir 2 /dev/null
+  done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [ -x usr/bin/install-info ] || return 0
+  for f in ${info_files[@]}; do
+install-info --delete ${info_dir}/$f.gz ${info_dir}/dir 2 /dev/null
+  done
+}



[arch-commits] Commit in gmp/repos (6 files)

2013-02-11 Thread Allan McRae
Date: Tuesday, February 12, 2013 @ 02:10:31
  Author: allan
Revision: 177940

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  gmp/repos/testing-i686/
  gmp/repos/testing-i686/PKGBUILD
(from rev 177939, gmp/trunk/PKGBUILD)
  gmp/repos/testing-i686/gmp.install
(from rev 177939, gmp/trunk/gmp.install)
  gmp/repos/testing-x86_64/
  gmp/repos/testing-x86_64/PKGBUILD
(from rev 177939, gmp/trunk/PKGBUILD)
  gmp/repos/testing-x86_64/gmp.install
(from rev 177939, gmp/trunk/gmp.install)

+
 testing-i686/PKGBUILD  |   35 +++
 testing-i686/gmp.install   |   20 
 testing-x86_64/PKGBUILD|   35 +++
 testing-x86_64/gmp.install |   20 
 4 files changed, 110 insertions(+)

Copied: gmp/repos/testing-i686/PKGBUILD (from rev 177939, gmp/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-02-12 01:10:31 UTC (rev 177940)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Allan McRae al...@archlinux.org
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=gmp
+pkgver=5.1.1
+pkgrel=1
+pkgdesc=A free library for arbitrary precision arithmetic
+arch=('i686' 'x86_64')
+url=http://gmplib.org/;
+depends=('gcc-libs' 'sh')
+license=('LGPL3')
+options=('!libtool')
+install=gmp.install
+source=(ftp://ftp.gmplib.org/pub/gmp-${pkgver}/gmp-${pkgver}.tar.xz{,.sig})
+md5sums=('485b1296e6287fa381e6015b19767989'
+ '5cec115b99dc498b079430dd62084d9c')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  ./configure --build=${CHOST} \
+--prefix=/usr --enable-cxx
+  make
+}
+
+check() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Copied: gmp/repos/testing-i686/gmp.install (from rev 177939, 
gmp/trunk/gmp.install)
===
--- testing-i686/gmp.install(rev 0)
+++ testing-i686/gmp.install2013-02-12 01:10:31 UTC (rev 177940)
@@ -0,0 +1,20 @@
+info_dir=usr/share/info
+info_files=(gmp.info gmp.info-1 gmp.info-2)
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  for f in ${info_files[@]}; do
+install-info ${info_dir}/$f.gz ${info_dir}/dir 2 /dev/null
+  done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [ -x usr/bin/install-info ] || return 0
+  for f in ${info_files[@]}; do
+install-info --delete ${info_dir}/$f.gz ${info_dir}/dir 2 /dev/null
+  done
+}

Copied: gmp/repos/testing-x86_64/PKGBUILD (from rev 177939, gmp/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-02-12 01:10:31 UTC (rev 177940)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Allan McRae al...@archlinux.org
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=gmp
+pkgver=5.1.1
+pkgrel=1
+pkgdesc=A free library for arbitrary precision arithmetic
+arch=('i686' 'x86_64')
+url=http://gmplib.org/;
+depends=('gcc-libs' 'sh')
+license=('LGPL3')
+options=('!libtool')
+install=gmp.install
+source=(ftp://ftp.gmplib.org/pub/gmp-${pkgver}/gmp-${pkgver}.tar.xz{,.sig})
+md5sums=('485b1296e6287fa381e6015b19767989'
+ '5cec115b99dc498b079430dd62084d9c')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  ./configure --build=${CHOST} \
+--prefix=/usr --enable-cxx
+  make
+}
+
+check() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Copied: gmp/repos/testing-x86_64/gmp.install (from rev 177939, 
gmp/trunk/gmp.install)
===
--- testing-x86_64/gmp.install  (rev 0)
+++ testing-x86_64/gmp.install  2013-02-12 01:10:31 UTC (rev 177940)
@@ -0,0 +1,20 @@
+info_dir=usr/share/info
+info_files=(gmp.info gmp.info-1 gmp.info-2)
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  for f in ${info_files[@]}; do
+install-info ${info_dir}/$f.gz ${info_dir}/dir 2 /dev/null
+  done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [ -x usr/bin/install-info ] || return 0
+  for f in ${info_files[@]}; do
+install-info --delete ${info_dir}/$f.gz ${info_dir}/dir 2 /dev/null
+  done
+}



[arch-commits] Commit in gmp/repos (6 files)

2012-12-18 Thread Allan McRae
Date: Tuesday, December 18, 2012 @ 20:14:54
  Author: allan
Revision: 173324

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  gmp/repos/testing-i686/
  gmp/repos/testing-i686/PKGBUILD
(from rev 173323, gmp/trunk/PKGBUILD)
  gmp/repos/testing-i686/gmp.install
(from rev 173323, gmp/trunk/gmp.install)
  gmp/repos/testing-x86_64/
  gmp/repos/testing-x86_64/PKGBUILD
(from rev 173323, gmp/trunk/PKGBUILD)
  gmp/repos/testing-x86_64/gmp.install
(from rev 173323, gmp/trunk/gmp.install)

+
 testing-i686/PKGBUILD  |   36 
 testing-i686/gmp.install   |   20 
 testing-x86_64/PKGBUILD|   36 
 testing-x86_64/gmp.install |   20 
 4 files changed, 112 insertions(+)

Copied: gmp/repos/testing-i686/PKGBUILD (from rev 173323, gmp/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2012-12-19 01:14:54 UTC (rev 173324)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Allan McRae al...@archlinux.org
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=gmp
+pkgver=5.1.0
+pkgrel=1
+pkgdesc=A free library for arbitrary precision arithmetic
+arch=('i686' 'x86_64')
+url=http://gmplib.org/;
+depends=('gcc-libs' 'sh')
+license=('LGPL3')
+options=(!libtool)
+install=gmp.install
+source=(ftp://ftp.gmplib.org/pub/gmp-${pkgver}/gmp-${pkgver}.tar.xz{,.sig})
+md5sums=('69fd511e435f81a0334f14f00c7d77b3'
+ '7a02b99dc7edd9822c210f78d88140e5')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  
+  [[ ${CARCH} = i686 ]]  export ABI=32
+  ./configure --build=${CHOST} \
+--prefix=/usr --enable-cxx
+  make
+}
+
+check() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Copied: gmp/repos/testing-i686/gmp.install (from rev 173323, 
gmp/trunk/gmp.install)
===
--- testing-i686/gmp.install(rev 0)
+++ testing-i686/gmp.install2012-12-19 01:14:54 UTC (rev 173324)
@@ -0,0 +1,20 @@
+info_dir=usr/share/info
+info_files=(gmp.info gmp.info-1 gmp.info-2)
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  for f in ${info_files[@]}; do
+install-info ${info_dir}/$f.gz ${info_dir}/dir 2 /dev/null
+  done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [ -x usr/bin/install-info ] || return 0
+  for f in ${info_files[@]}; do
+install-info --delete ${info_dir}/$f.gz ${info_dir}/dir 2 /dev/null
+  done
+}

Copied: gmp/repos/testing-x86_64/PKGBUILD (from rev 173323, gmp/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2012-12-19 01:14:54 UTC (rev 173324)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Allan McRae al...@archlinux.org
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=gmp
+pkgver=5.1.0
+pkgrel=1
+pkgdesc=A free library for arbitrary precision arithmetic
+arch=('i686' 'x86_64')
+url=http://gmplib.org/;
+depends=('gcc-libs' 'sh')
+license=('LGPL3')
+options=(!libtool)
+install=gmp.install
+source=(ftp://ftp.gmplib.org/pub/gmp-${pkgver}/gmp-${pkgver}.tar.xz{,.sig})
+md5sums=('69fd511e435f81a0334f14f00c7d77b3'
+ '7a02b99dc7edd9822c210f78d88140e5')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  
+  [[ ${CARCH} = i686 ]]  export ABI=32
+  ./configure --build=${CHOST} \
+--prefix=/usr --enable-cxx
+  make
+}
+
+check() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Copied: gmp/repos/testing-x86_64/gmp.install (from rev 173323, 
gmp/trunk/gmp.install)
===
--- testing-x86_64/gmp.install  (rev 0)
+++ testing-x86_64/gmp.install  2012-12-19 01:14:54 UTC (rev 173324)
@@ -0,0 +1,20 @@
+info_dir=usr/share/info
+info_files=(gmp.info gmp.info-1 gmp.info-2)
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  for f in ${info_files[@]}; do
+install-info ${info_dir}/$f.gz ${info_dir}/dir 2 /dev/null
+  done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [ -x usr/bin/install-info ] || return 0
+  for f in ${info_files[@]}; do
+install-info --delete ${info_dir}/$f.gz ${info_dir}/dir 2 /dev/null
+  done
+}



[arch-commits] Commit in gmp/repos (6 files)

2012-05-07 Thread Allan McRae
Date: Monday, May 7, 2012 @ 04:43:27
  Author: allan
Revision: 158687

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  gmp/repos/testing-i686/
  gmp/repos/testing-i686/PKGBUILD
(from rev 158686, gmp/trunk/PKGBUILD)
  gmp/repos/testing-i686/gmp.install
(from rev 158686, gmp/trunk/gmp.install)
  gmp/repos/testing-x86_64/
  gmp/repos/testing-x86_64/PKGBUILD
(from rev 158686, gmp/trunk/PKGBUILD)
  gmp/repos/testing-x86_64/gmp.install
(from rev 158686, gmp/trunk/gmp.install)

+
 testing-i686/PKGBUILD  |   37 +
 testing-i686/gmp.install   |   20 
 testing-x86_64/PKGBUILD|   37 +
 testing-x86_64/gmp.install |   20 
 4 files changed, 114 insertions(+)

Copied: gmp/repos/testing-i686/PKGBUILD (from rev 158686, gmp/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2012-05-07 08:43:27 UTC (rev 158687)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Allan McRae al...@archlinux.org
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=gmp
+pkgver=5.0.5
+pkgrel=1
+pkgdesc=A free library for arbitrary precision arithmetic
+arch=('i686' 'x86_64')
+url=http://gmplib.org/;
+depends=('gcc-libs' 'sh')
+license=('LGPL3')
+options=(!libtool)
+install=gmp.install
+source=(ftp://ftp.gnu.org/gnu/gmp/gmp-${pkgver}.tar.xz{,.sig})
+md5sums=('8aef50959acec2a1ad41d144ffe0f3b5'
+ '406e8878aadc51b134d1b3dd845261ee')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  
+  [ ${CARCH} = i686 ]  export ABI=32
+  ./configure --build=${CHOST} \
+--prefix=/usr --infodir=/usr/share/info \
+--enable-cxx
+  make
+}
+
+check() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Copied: gmp/repos/testing-i686/gmp.install (from rev 158686, 
gmp/trunk/gmp.install)
===
--- testing-i686/gmp.install(rev 0)
+++ testing-i686/gmp.install2012-05-07 08:43:27 UTC (rev 158687)
@@ -0,0 +1,20 @@
+info_dir=usr/share/info
+info_files=(gmp.info gmp.info-1 gmp.info-2)
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  for f in ${info_files[@]}; do
+install-info ${info_dir}/$f.gz ${info_dir}/dir 2 /dev/null
+  done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [ -x usr/bin/install-info ] || return 0
+  for f in ${info_files[@]}; do
+install-info --delete ${info_dir}/$f.gz ${info_dir}/dir 2 /dev/null
+  done
+}

Copied: gmp/repos/testing-x86_64/PKGBUILD (from rev 158686, gmp/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2012-05-07 08:43:27 UTC (rev 158687)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Allan McRae al...@archlinux.org
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=gmp
+pkgver=5.0.5
+pkgrel=1
+pkgdesc=A free library for arbitrary precision arithmetic
+arch=('i686' 'x86_64')
+url=http://gmplib.org/;
+depends=('gcc-libs' 'sh')
+license=('LGPL3')
+options=(!libtool)
+install=gmp.install
+source=(ftp://ftp.gnu.org/gnu/gmp/gmp-${pkgver}.tar.xz{,.sig})
+md5sums=('8aef50959acec2a1ad41d144ffe0f3b5'
+ '406e8878aadc51b134d1b3dd845261ee')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  
+  [ ${CARCH} = i686 ]  export ABI=32
+  ./configure --build=${CHOST} \
+--prefix=/usr --infodir=/usr/share/info \
+--enable-cxx
+  make
+}
+
+check() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Copied: gmp/repos/testing-x86_64/gmp.install (from rev 158686, 
gmp/trunk/gmp.install)
===
--- testing-x86_64/gmp.install  (rev 0)
+++ testing-x86_64/gmp.install  2012-05-07 08:43:27 UTC (rev 158687)
@@ -0,0 +1,20 @@
+info_dir=usr/share/info
+info_files=(gmp.info gmp.info-1 gmp.info-2)
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  for f in ${info_files[@]}; do
+install-info ${info_dir}/$f.gz ${info_dir}/dir 2 /dev/null
+  done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [ -x usr/bin/install-info ] || return 0
+  for f in ${info_files[@]}; do
+install-info --delete ${info_dir}/$f.gz ${info_dir}/dir 2 /dev/null
+  done
+}