[arch-commits] Commit in nettle/repos (8 files)
andyrtr at archlinux.org
andyrtr at archlinux.org
Thu Jan 17 18:26:41 UTC 2013
Date: Thursday, January 17, 2013 @ 13:26:40
Author: andyrtr
Revision: 175512
archrelease: copy trunk to extra-i686, extra-x86_64
Added:
nettle/repos/extra-i686/PKGBUILD
(from rev 175511, nettle/trunk/PKGBUILD)
nettle/repos/extra-i686/nettle.install
(from rev 175511, nettle/trunk/nettle.install)
nettle/repos/extra-x86_64/PKGBUILD
(from rev 175511, nettle/trunk/PKGBUILD)
nettle/repos/extra-x86_64/nettle.install
(from rev 175511, nettle/trunk/nettle.install)
Deleted:
nettle/repos/extra-i686/PKGBUILD
nettle/repos/extra-i686/nettle.install
nettle/repos/extra-x86_64/PKGBUILD
nettle/repos/extra-x86_64/nettle.install
-----------------------------+
extra-i686/PKGBUILD | 71 ++++++++++++++++++++----------------------
extra-i686/nettle.install | 40 +++++++++++------------
extra-x86_64/PKGBUILD | 71 ++++++++++++++++++++----------------------
extra-x86_64/nettle.install | 40 +++++++++++------------
4 files changed, 110 insertions(+), 112 deletions(-)
Deleted: extra-i686/PKGBUILD
===================================================================
--- extra-i686/PKGBUILD 2013-01-17 18:26:02 UTC (rev 175511)
+++ extra-i686/PKGBUILD 2013-01-17 18:26:40 UTC (rev 175512)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke <andyrtr at archlinux.org>
-# Contributor: bender02 at gmx dot com
-
-pkgname=nettle
-pkgver=2.5
-pkgrel=1
-pkgdesc="A low-level cryptographic library"
-arch=('i686' 'x86_64')
-url="http://www.lysator.liu.se/~nisse/nettle/"
-license=('GPL2')
-install=$pkgname.install
-depends=('gmp')
-source=(ftp://ftp.lysator.liu.se/pub/security/lsh/$pkgname-$pkgver.tar.gz)
-md5sums=('d66882e6ad31a9f651b73d7a1a93bd4c')
-
-build() {
- cd "$srcdir/$pkgname-$pkgver"
- ./configure --prefix=/usr --libdir=/usr/lib \
- --enable-shared \
- --disable-static # <-- seems not working now
- make
-}
-
-check() {
- cd "$srcdir/$pkgname-$pkgver"
- make -k check
-}
-
-package() {
- cd "$srcdir/$pkgname-$pkgver"
- make DESTDIR="$pkgdir/" install
-
- # remove static libs
- rm -f ${pkgdir}/usr/lib/{libhogweed,libnettle}.a
-}
Copied: nettle/repos/extra-i686/PKGBUILD (from rev 175511, nettle/trunk/PKGBUILD)
===================================================================
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-01-17 18:26:40 UTC (rev 175512)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andreas Radke <andyrtr at archlinux.org>
+# Contributor: bender02 at gmx dot com
+
+pkgname=nettle
+pkgver=2.6
+pkgrel=1
+pkgdesc="A low-level cryptographic library"
+arch=('i686' 'x86_64')
+url="http://www.lysator.liu.se/~nisse/nettle/"
+license=('GPL2')
+install=$pkgname.install
+depends=('gmp')
+source=(ftp://ftp.lysator.liu.se/pub/security/lsh/$pkgname-$pkgver.tar.gz)
+md5sums=('02f76b668855c4da67186c04cd3a222f')
+
+build() {
+ cd "$srcdir/$pkgname-$pkgver"
+ ./configure --prefix=/usr --libdir=/usr/lib \
+ --enable-shared
+ make
+}
+
+check() {
+ cd "$srcdir/$pkgname-$pkgver"
+ make -k check
+}
+
+package() {
+ cd "$srcdir/$pkgname-$pkgver"
+ make DESTDIR="$pkgdir/" install
+
+ # remove static libs #--disable-static - build would break (since nettle 2.6) - and had no effect before
+ rm -f ${pkgdir}/usr/lib/{libhogweed,libnettle}.a
+}
Deleted: extra-i686/nettle.install
===================================================================
--- extra-i686/nettle.install 2013-01-17 18:26:02 UTC (rev 175511)
+++ extra-i686/nettle.install 2013-01-17 18:26:40 UTC (rev 175512)
@@ -1,20 +0,0 @@
-infodir=/usr/share/info
-filelist=(nettle.info)
-
-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
-}
Copied: nettle/repos/extra-i686/nettle.install (from rev 175511, nettle/trunk/nettle.install)
===================================================================
--- extra-i686/nettle.install (rev 0)
+++ extra-i686/nettle.install 2013-01-17 18:26:40 UTC (rev 175512)
@@ -0,0 +1,20 @@
+infodir=/usr/share/info
+filelist=(nettle.info)
+
+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
+}
Deleted: extra-x86_64/PKGBUILD
===================================================================
--- extra-x86_64/PKGBUILD 2013-01-17 18:26:02 UTC (rev 175511)
+++ extra-x86_64/PKGBUILD 2013-01-17 18:26:40 UTC (rev 175512)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke <andyrtr at archlinux.org>
-# Contributor: bender02 at gmx dot com
-
-pkgname=nettle
-pkgver=2.5
-pkgrel=1
-pkgdesc="A low-level cryptographic library"
-arch=('i686' 'x86_64')
-url="http://www.lysator.liu.se/~nisse/nettle/"
-license=('GPL2')
-install=$pkgname.install
-depends=('gmp')
-source=(ftp://ftp.lysator.liu.se/pub/security/lsh/$pkgname-$pkgver.tar.gz)
-md5sums=('d66882e6ad31a9f651b73d7a1a93bd4c')
-
-build() {
- cd "$srcdir/$pkgname-$pkgver"
- ./configure --prefix=/usr --libdir=/usr/lib \
- --enable-shared \
- --disable-static # <-- seems not working now
- make
-}
-
-check() {
- cd "$srcdir/$pkgname-$pkgver"
- make -k check
-}
-
-package() {
- cd "$srcdir/$pkgname-$pkgver"
- make DESTDIR="$pkgdir/" install
-
- # remove static libs
- rm -f ${pkgdir}/usr/lib/{libhogweed,libnettle}.a
-}
Copied: nettle/repos/extra-x86_64/PKGBUILD (from rev 175511, nettle/trunk/PKGBUILD)
===================================================================
--- extra-x86_64/PKGBUILD (rev 0)
+++ extra-x86_64/PKGBUILD 2013-01-17 18:26:40 UTC (rev 175512)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andreas Radke <andyrtr at archlinux.org>
+# Contributor: bender02 at gmx dot com
+
+pkgname=nettle
+pkgver=2.6
+pkgrel=1
+pkgdesc="A low-level cryptographic library"
+arch=('i686' 'x86_64')
+url="http://www.lysator.liu.se/~nisse/nettle/"
+license=('GPL2')
+install=$pkgname.install
+depends=('gmp')
+source=(ftp://ftp.lysator.liu.se/pub/security/lsh/$pkgname-$pkgver.tar.gz)
+md5sums=('02f76b668855c4da67186c04cd3a222f')
+
+build() {
+ cd "$srcdir/$pkgname-$pkgver"
+ ./configure --prefix=/usr --libdir=/usr/lib \
+ --enable-shared
+ make
+}
+
+check() {
+ cd "$srcdir/$pkgname-$pkgver"
+ make -k check
+}
+
+package() {
+ cd "$srcdir/$pkgname-$pkgver"
+ make DESTDIR="$pkgdir/" install
+
+ # remove static libs #--disable-static - build would break (since nettle 2.6) - and had no effect before
+ rm -f ${pkgdir}/usr/lib/{libhogweed,libnettle}.a
+}
Deleted: extra-x86_64/nettle.install
===================================================================
--- extra-x86_64/nettle.install 2013-01-17 18:26:02 UTC (rev 175511)
+++ extra-x86_64/nettle.install 2013-01-17 18:26:40 UTC (rev 175512)
@@ -1,20 +0,0 @@
-infodir=/usr/share/info
-filelist=(nettle.info)
-
-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
-}
Copied: nettle/repos/extra-x86_64/nettle.install (from rev 175511, nettle/trunk/nettle.install)
===================================================================
--- extra-x86_64/nettle.install (rev 0)
+++ extra-x86_64/nettle.install 2013-01-17 18:26:40 UTC (rev 175512)
@@ -0,0 +1,20 @@
+infodir=/usr/share/info
+filelist=(nettle.info)
+
+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
+}
More information about the arch-commits
mailing list