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

Gaetan Bisson bisson at archlinux.org
Sat Aug 8 13:36:02 UTC 2015


    Date: Saturday, August 8, 2015 @ 15:36:02
  Author: bisson
Revision: 243125

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

Added:
  ldns/repos/testing-i686/
  ldns/repos/testing-i686/PKGBUILD
    (from rev 243124, ldns/trunk/PKGBUILD)
  ldns/repos/testing-i686/perl-recent.patch
    (from rev 243124, ldns/trunk/perl-recent.patch)
  ldns/repos/testing-x86_64/
  ldns/repos/testing-x86_64/PKGBUILD
    (from rev 243124, ldns/trunk/PKGBUILD)
  ldns/repos/testing-x86_64/perl-recent.patch
    (from rev 243124, ldns/trunk/perl-recent.patch)

----------------------------------+
 testing-i686/PKGBUILD            |   44 +++++++++++++++++++++++++++++++++++++
 testing-i686/perl-recent.patch   |   12 ++++++++++
 testing-x86_64/PKGBUILD          |   44 +++++++++++++++++++++++++++++++++++++
 testing-x86_64/perl-recent.patch |   12 ++++++++++
 4 files changed, 112 insertions(+)

Copied: ldns/repos/testing-i686/PKGBUILD (from rev 243124, ldns/trunk/PKGBUILD)
===================================================================
--- testing-i686/PKGBUILD	                        (rev 0)
+++ testing-i686/PKGBUILD	2015-08-08 13:36:02 UTC (rev 243125)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Gaetan Bisson <bisson at archlinux.org>
+# Contributor: mathieui <mathieui at mathieui.net>
+# Contributor: jiribb <jiribb at gmail.com>
+
+pkgname=ldns
+pkgver=1.6.17
+pkgrel=3
+pkgdesc='Fast DNS library supporting recent RFCs'
+url='http://www.nlnetlabs.nl/projects/ldns/'
+license=('custom:BSD')
+arch=('i686' 'x86_64')
+depends=('openssl' 'dnssec-anchors')
+optdepends=('libpcap: ldns-dpa tool')
+makedepends=('libpcap')
+source=("http://www.nlnetlabs.nl/downloads/${pkgname}/${pkgname}-${pkgver}.tar.gz"
+        'perl-recent.patch')
+sha1sums=('4218897b3c002aadfc7280b3f40cda829e05c9a4'
+          '026b276a360d29b3bd3690293a27178262a0b3dc')
+
+prepare() {
+	cd "${srcdir}/${pkgname}-${pkgver}"
+	patch -p1 -i ../perl-recent.patch
+}
+
+build() {
+	cd "${srcdir}/${pkgname}-${pkgver}"
+	./configure \
+		--prefix=/usr \
+		--sysconfdir=/etc \
+		--localstatedir=/var \
+		--disable-rpath \
+		--with-drill \
+		--with-examples \
+		--with-trust-anchor=/etc/trusted-key.key \
+
+	make
+}
+
+package() {
+	cd "${srcdir}/${pkgname}-${pkgver}"
+	make DESTDIR="${pkgdir}" install
+	install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}

Copied: ldns/repos/testing-i686/perl-recent.patch (from rev 243124, ldns/trunk/perl-recent.patch)
===================================================================
--- testing-i686/perl-recent.patch	                        (rev 0)
+++ testing-i686/perl-recent.patch	2015-08-08 13:36:02 UTC (rev 243125)
@@ -0,0 +1,12 @@
+diff -Naur old/doc/doxyparse.pl new/doc/doxyparse.pl
+--- old/doc/doxyparse.pl	2014-01-11 06:04:41.000000000 +0900
++++ new/doc/doxyparse.pl	2015-08-08 22:29:34.216889652 +0900
+@@ -273,7 +273,7 @@
+ 
+ 	print MAN $MAN_MIDDLE;
+ 
+-	if (defined(@$also)) {
++	if (@$also) {
+ 		print MAN "\n.SH SEE ALSO\n\\fI";
+ 		print MAN join "\\fR, \\fI", @$also;
+ 		print MAN "\\fR.\nAnd ";

Copied: ldns/repos/testing-x86_64/PKGBUILD (from rev 243124, ldns/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD	                        (rev 0)
+++ testing-x86_64/PKGBUILD	2015-08-08 13:36:02 UTC (rev 243125)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Gaetan Bisson <bisson at archlinux.org>
+# Contributor: mathieui <mathieui at mathieui.net>
+# Contributor: jiribb <jiribb at gmail.com>
+
+pkgname=ldns
+pkgver=1.6.17
+pkgrel=3
+pkgdesc='Fast DNS library supporting recent RFCs'
+url='http://www.nlnetlabs.nl/projects/ldns/'
+license=('custom:BSD')
+arch=('i686' 'x86_64')
+depends=('openssl' 'dnssec-anchors')
+optdepends=('libpcap: ldns-dpa tool')
+makedepends=('libpcap')
+source=("http://www.nlnetlabs.nl/downloads/${pkgname}/${pkgname}-${pkgver}.tar.gz"
+        'perl-recent.patch')
+sha1sums=('4218897b3c002aadfc7280b3f40cda829e05c9a4'
+          '026b276a360d29b3bd3690293a27178262a0b3dc')
+
+prepare() {
+	cd "${srcdir}/${pkgname}-${pkgver}"
+	patch -p1 -i ../perl-recent.patch
+}
+
+build() {
+	cd "${srcdir}/${pkgname}-${pkgver}"
+	./configure \
+		--prefix=/usr \
+		--sysconfdir=/etc \
+		--localstatedir=/var \
+		--disable-rpath \
+		--with-drill \
+		--with-examples \
+		--with-trust-anchor=/etc/trusted-key.key \
+
+	make
+}
+
+package() {
+	cd "${srcdir}/${pkgname}-${pkgver}"
+	make DESTDIR="${pkgdir}" install
+	install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}

Copied: ldns/repos/testing-x86_64/perl-recent.patch (from rev 243124, ldns/trunk/perl-recent.patch)
===================================================================
--- testing-x86_64/perl-recent.patch	                        (rev 0)
+++ testing-x86_64/perl-recent.patch	2015-08-08 13:36:02 UTC (rev 243125)
@@ -0,0 +1,12 @@
+diff -Naur old/doc/doxyparse.pl new/doc/doxyparse.pl
+--- old/doc/doxyparse.pl	2014-01-11 06:04:41.000000000 +0900
++++ new/doc/doxyparse.pl	2015-08-08 22:29:34.216889652 +0900
+@@ -273,7 +273,7 @@
+ 
+ 	print MAN $MAN_MIDDLE;
+ 
+-	if (defined(@$also)) {
++	if (@$also) {
+ 		print MAN "\n.SH SEE ALSO\n\\fI";
+ 		print MAN join "\\fR, \\fI", @$also;
+ 		print MAN "\\fR.\nAnd ";



More information about the arch-commits mailing list