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

Andreas Radke andyrtr at archlinux.org
Wed Mar 11 19:09:16 UTC 2015


    Date: Wednesday, March 11, 2015 @ 20:09:16
  Author: andyrtr
Revision: 233365

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

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

---------------------------------+
 testing-i686/PKGBUILD           |   37 +++++++++++++++++++++++++++++++++++++
 testing-i686/libtasn1.install   |   18 ++++++++++++++++++
 testing-x86_64/PKGBUILD         |   37 +++++++++++++++++++++++++++++++++++++
 testing-x86_64/libtasn1.install |   18 ++++++++++++++++++
 4 files changed, 110 insertions(+)

Copied: libtasn1/repos/testing-i686/PKGBUILD (from rev 233364, libtasn1/trunk/PKGBUILD)
===================================================================
--- testing-i686/PKGBUILD	                        (rev 0)
+++ testing-i686/PKGBUILD	2015-03-11 19:09:16 UTC (rev 233365)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: AndyRTR <andyrtr at archlinux.org>
+# Maintainer: Jan de Groot <jgc at archlinux.org>
+# Contributor: judd <jvinet at zeroflux.org>
+
+pkgname=libtasn1
+pkgver=4.3
+pkgrel=1
+pkgdesc="The ASN.1 library used in GNUTLS"
+arch=('i686' 'x86_64')
+license=('GPL3' 'LGPL')
+url="http://www.gnu.org/software/libtasn1/"
+depends=('glibc' 'texinfo')
+install=libtasn1.install
+source=(http://ftp.gnu.org/gnu/libtasn1/${pkgname}-${pkgver}.tar.gz{,.sig})
+md5sums=('67e98988f966a34fbf1b82d33eef9e7e'
+         'SKIP')
+validpgpkeys=('1F42418905D8206AA754CCDC29EE58B996865171') #Nikos Mavrogiannopoulos <nmav at gnutls.org>
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr \
+      --with-packager=Archlinux \
+      --with-packager-bug-reports="http://bugs.archlinux.org/" \
+      --with-packager-version=${pkgver}-${pkgrel}
+  make
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}

Copied: libtasn1/repos/testing-i686/libtasn1.install (from rev 233364, libtasn1/trunk/libtasn1.install)
===================================================================
--- testing-i686/libtasn1.install	                        (rev 0)
+++ testing-i686/libtasn1.install	2015-03-11 19:09:16 UTC (rev 233365)
@@ -0,0 +1,18 @@
+info_dir=/usr/share/info
+info_files=(libtasn1.info)
+
+post_install() {
+  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() {
+  for f in ${info_files[@]}; do
+    install-info --delete ${info_dir}/$f.gz ${info_dir}/dir 2> /dev/null
+  done
+}

Copied: libtasn1/repos/testing-x86_64/PKGBUILD (from rev 233364, libtasn1/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD	                        (rev 0)
+++ testing-x86_64/PKGBUILD	2015-03-11 19:09:16 UTC (rev 233365)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: AndyRTR <andyrtr at archlinux.org>
+# Maintainer: Jan de Groot <jgc at archlinux.org>
+# Contributor: judd <jvinet at zeroflux.org>
+
+pkgname=libtasn1
+pkgver=4.3
+pkgrel=1
+pkgdesc="The ASN.1 library used in GNUTLS"
+arch=('i686' 'x86_64')
+license=('GPL3' 'LGPL')
+url="http://www.gnu.org/software/libtasn1/"
+depends=('glibc' 'texinfo')
+install=libtasn1.install
+source=(http://ftp.gnu.org/gnu/libtasn1/${pkgname}-${pkgver}.tar.gz{,.sig})
+md5sums=('67e98988f966a34fbf1b82d33eef9e7e'
+         'SKIP')
+validpgpkeys=('1F42418905D8206AA754CCDC29EE58B996865171') #Nikos Mavrogiannopoulos <nmav at gnutls.org>
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr \
+      --with-packager=Archlinux \
+      --with-packager-bug-reports="http://bugs.archlinux.org/" \
+      --with-packager-version=${pkgver}-${pkgrel}
+  make
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}

Copied: libtasn1/repos/testing-x86_64/libtasn1.install (from rev 233364, libtasn1/trunk/libtasn1.install)
===================================================================
--- testing-x86_64/libtasn1.install	                        (rev 0)
+++ testing-x86_64/libtasn1.install	2015-03-11 19:09:16 UTC (rev 233365)
@@ -0,0 +1,18 @@
+info_dir=/usr/share/info
+info_files=(libtasn1.info)
+
+post_install() {
+  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() {
+  for f in ${info_files[@]}; do
+    install-info --delete ${info_dir}/$f.gz ${info_dir}/dir 2> /dev/null
+  done
+}



More information about the arch-commits mailing list