[arch-commits] Commit in dirmngr/repos (6 files)
Tobias Powalowski
tpowa at nymeria.archlinux.org
Mon May 6 09:57:46 UTC 2013
Date: Monday, May 6, 2013 @ 11:57:46
Author: tpowa
Revision: 184334
archrelease: copy trunk to testing-i686, testing-x86_64
Added:
dirmngr/repos/testing-i686/
dirmngr/repos/testing-i686/PKGBUILD
(from rev 184333, dirmngr/trunk/PKGBUILD)
dirmngr/repos/testing-i686/dirmngr.install
(from rev 184333, dirmngr/trunk/dirmngr.install)
dirmngr/repos/testing-x86_64/
dirmngr/repos/testing-x86_64/PKGBUILD
(from rev 184333, dirmngr/trunk/PKGBUILD)
dirmngr/repos/testing-x86_64/dirmngr.install
(from rev 184333, dirmngr/trunk/dirmngr.install)
--------------------------------+
testing-i686/PKGBUILD | 30 ++++++++++++++++++++++++++++++
testing-i686/dirmngr.install | 20 ++++++++++++++++++++
testing-x86_64/PKGBUILD | 30 ++++++++++++++++++++++++++++++
testing-x86_64/dirmngr.install | 20 ++++++++++++++++++++
4 files changed, 100 insertions(+)
Copied: dirmngr/repos/testing-i686/PKGBUILD (from rev 184333, dirmngr/trunk/PKGBUILD)
===================================================================
--- testing-i686/PKGBUILD (rev 0)
+++ testing-i686/PKGBUILD 2013-05-06 09:57:46 UTC (rev 184334)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Tobias Powalowski <tpowa at archlinux.org>
+
+pkgname=dirmngr
+pkgver=1.1.1
+pkgrel=1
+pkgdesc="A daemon to handle CRL and certificate requests"
+arch=('i686' 'x86_64')
+license=('GPL')
+url="ftp://ftp.gnupg.org/gcrypt/dirmngr"
+depends=('libgcrypt' 'libldap' 'libksba' 'libgpg-error' 'libassuan' 'pth')
+source=(ftp://ftp.gnupg.org/gcrypt/$pkgname/$pkgname-$pkgver.tar.bz2)
+install=dirmngr.install
+md5sums=('f5a40e93bcf07a94522579bfd58a2c96')
+
+build() {
+ cd $srcdir/$pkgname-$pkgver
+ # FIX for https://bugzilla.redhat.com/565131
+ # not sure how best to turn this into something more upstreamable
+ # patch configure to try this combo first? -- Rex
+ # https://bugs.archlinux.org/task/28606
+ export LDAPLIBS="-lldap -llber"
+ ./configure --prefix=/usr --libexecdir=/usr/lib
+ make
+}
+
+package() {
+ cd $srcdir/$pkgname-$pkgver
+ make DESTDIR=$pkgdir install
+}
Copied: dirmngr/repos/testing-i686/dirmngr.install (from rev 184333, dirmngr/trunk/dirmngr.install)
===================================================================
--- testing-i686/dirmngr.install (rev 0)
+++ testing-i686/dirmngr.install 2013-05-06 09:57:46 UTC (rev 184334)
@@ -0,0 +1,20 @@
+infodir=usr/share/info
+filelist=(dirmngr.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: dirmngr/repos/testing-x86_64/PKGBUILD (from rev 184333, dirmngr/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-05-06 09:57:46 UTC (rev 184334)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Tobias Powalowski <tpowa at archlinux.org>
+
+pkgname=dirmngr
+pkgver=1.1.1
+pkgrel=1
+pkgdesc="A daemon to handle CRL and certificate requests"
+arch=('i686' 'x86_64')
+license=('GPL')
+url="ftp://ftp.gnupg.org/gcrypt/dirmngr"
+depends=('libgcrypt' 'libldap' 'libksba' 'libgpg-error' 'libassuan' 'pth')
+source=(ftp://ftp.gnupg.org/gcrypt/$pkgname/$pkgname-$pkgver.tar.bz2)
+install=dirmngr.install
+md5sums=('f5a40e93bcf07a94522579bfd58a2c96')
+
+build() {
+ cd $srcdir/$pkgname-$pkgver
+ # FIX for https://bugzilla.redhat.com/565131
+ # not sure how best to turn this into something more upstreamable
+ # patch configure to try this combo first? -- Rex
+ # https://bugs.archlinux.org/task/28606
+ export LDAPLIBS="-lldap -llber"
+ ./configure --prefix=/usr --libexecdir=/usr/lib
+ make
+}
+
+package() {
+ cd $srcdir/$pkgname-$pkgver
+ make DESTDIR=$pkgdir install
+}
Copied: dirmngr/repos/testing-x86_64/dirmngr.install (from rev 184333, dirmngr/trunk/dirmngr.install)
===================================================================
--- testing-x86_64/dirmngr.install (rev 0)
+++ testing-x86_64/dirmngr.install 2013-05-06 09:57:46 UTC (rev 184334)
@@ -0,0 +1,20 @@
+infodir=usr/share/info
+filelist=(dirmngr.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