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

2017-02-11 Thread Pierre Schmitz
Date: Saturday, February 11, 2017 @ 12:10:09
  Author: pierre
Revision: 288666

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

Added:
  ldns/repos/staging-i686/
  ldns/repos/staging-i686/PKGBUILD
(from rev 288665, ldns/trunk/PKGBUILD)
  ldns/repos/staging-i686/pc.patch
(from rev 288665, ldns/trunk/pc.patch)
  ldns/repos/staging-x86_64/
  ldns/repos/staging-x86_64/PKGBUILD
(from rev 288665, ldns/trunk/PKGBUILD)
  ldns/repos/staging-x86_64/pc.patch
(from rev 288665, ldns/trunk/pc.patch)

-+
 staging-i686/PKGBUILD   |   45 ++
 staging-i686/pc.patch   |   60 ++
 staging-x86_64/PKGBUILD |   45 ++
 staging-x86_64/pc.patch |   60 ++
 4 files changed, 210 insertions(+)

Copied: ldns/repos/staging-i686/PKGBUILD (from rev 288665, ldns/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2017-02-11 12:10:09 UTC (rev 288666)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: mathieui 
+# Contributor: jiribb 
+
+pkgname=ldns
+pkgver=1.7.0
+pkgrel=3
+pkgdesc='Fast DNS library supporting recent RFCs'
+url='https://www.nlnetlabs.nl/projects/ldns/'
+license=('custom:BSD')
+arch=('i686' 'x86_64')
+depends=('openssl' 'dnssec-anchors')
+optdepends=('libpcap: ldns-dpa tool')
+makedepends=('libpcap')
+source=("https://www.nlnetlabs.nl/downloads/${pkgname}/${pkgname}-${pkgver}.tar.gz;
+'pc.patch')
+sha1sums=('ceeeccf8a27e61a854762737f6ee02f44662c1b8'
+  '92161452a6e75dd283bebef4e60135ed23497e51')
+
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   patch -p1 -i ../pc.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 \
+   --disable-dane-verify # needs openssl>=1.1.0
+
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+   install -D -m644 LICENSE 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}

Copied: ldns/repos/staging-i686/pc.patch (from rev 288665, ldns/trunk/pc.patch)
===
--- staging-i686/pc.patch   (rev 0)
+++ staging-i686/pc.patch   2017-02-11 12:10:09 UTC (rev 288666)
@@ -0,0 +1,60 @@
+From 2a38f26ed5695c3ad737de082b56a296240dd51a Mon Sep 17 00:00:00 2001
+From: Willem Toorop 
+Date: Thu, 19 Jan 2017 09:41:51 +0100
+Subject: bugfix #1209: make install ldns.pc file
+
+---
+ Changelog   |  4 
+ Makefile.in | 16 ++--
+ 2 files changed, 18 insertions(+), 2 deletions(-)
+
+diff --git a/Changelog b/Changelog
+index 0bd3658..efda95e 100644
+--- a/Changelog
 b/Changelog
+@@ -1,3 +1,7 @@
++1.7.1 -??-??
++  * bugfix #1209: make install ldns.pc file
++Thanks Oleksandr Natalenko
++
+ 1.7.0 2016-12-20
+   * Fix lookup of relative names in ldns_resolver_search.
+   * bugfix #548: Double free for answers > 4096 in ldns_resolver_send_pkt
+diff --git a/Makefile.in b/Makefile.in
+index 04f683b..853777e 100644
+--- a/Makefile.in
 b/Makefile.in
+@@ -308,9 +308,9 @@ clean-p5-dns-ldns: $(p5_dns_ldns_dir)/Makefile
+ test-p5-dns-ldns: $(p5_dns_ldns_dir)/Makefile
+   cd $(p5_dns_ldns_dir); $(MAKE) test
+ 
+-install: install-h install-lib @INSTALL_CONFIG@ install-manpages 
$(pyldns_inst) $(pyldnsx_inst) @INSTALL_P5_DNS_LDNS@ @INSTALL_DRILL@ 
@INSTALL_EXAMPLES@
++install: install-h install-lib install-pc @INSTALL_CONFIG@ install-manpages 
$(pyldns_inst) $(pyldnsx_inst) @INSTALL_P5_DNS_LDNS@ @INSTALL_DRILL@ 
@INSTALL_EXAMPLES@
+ 
+-uninstall: uninstall-manpages @UNINSTALL_CONFIG@ uninstall-h uninstall-lib 
$(pyldns_uninst) $(pyldnsx_uninst) @UNINSTALL_P5_DNS_LDNS@ @UNINSTALL_DRILL@ 
@UNINSTALL_EXAMPLES@
++uninstall: uninstall-manpages @UNINSTALL_CONFIG@ uninstall-h uninstall-lib 
uninstall-pc $(pyldns_uninst) $(pyldnsx_uninst) @UNINSTALL_P5_DNS_LDNS@ 
@UNINSTALL_DRILL@ @UNINSTALL_EXAMPLES@
+ 
+ destclean: uninstall
+ 
+@@ -355,6 +355,18 @@ uninstall-h:
+   test ! -d $(DESTDIR)$(includedir)/ldns || rmdir -p 
$(DESTDIR)$(includedir)/ldns || echo "ok, dir already gone"
+   exit 0
+ 
++packaging/libldns.pc: packaging/libldns.pc.in
++  ./config.status $@
++
++install-pc: packaging/libldns.pc
++  $(INSTALL) -m 644 packaging/libldns.pc 
$(DESTDIR)$(libdir)/pkgconfig/ldns.pc
++
++uninstall-pc:
++  $(LIBTOOL) --mode=uninstall rm -f 

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

2017-01-19 Thread Gaëtan Bisson
Date: Thursday, January 19, 2017 @ 09:15:58
  Author: bisson
Revision: 286966

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

Added:
  ldns/repos/testing-i686/
  ldns/repos/testing-i686/PKGBUILD
(from rev 286965, ldns/trunk/PKGBUILD)
  ldns/repos/testing-i686/pc.patch
(from rev 286965, ldns/trunk/pc.patch)
  ldns/repos/testing-x86_64/
  ldns/repos/testing-x86_64/PKGBUILD
(from rev 286965, ldns/trunk/PKGBUILD)
  ldns/repos/testing-x86_64/pc.patch
(from rev 286965, ldns/trunk/pc.patch)

-+
 testing-i686/PKGBUILD   |   45 ++
 testing-i686/pc.patch   |   60 ++
 testing-x86_64/PKGBUILD |   45 ++
 testing-x86_64/pc.patch |   60 ++
 4 files changed, 210 insertions(+)

Copied: ldns/repos/testing-i686/PKGBUILD (from rev 286965, ldns/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2017-01-19 09:15:58 UTC (rev 286966)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: mathieui 
+# Contributor: jiribb 
+
+pkgname=ldns
+pkgver=1.7.0
+pkgrel=2
+pkgdesc='Fast DNS library supporting recent RFCs'
+url='https://www.nlnetlabs.nl/projects/ldns/'
+license=('custom:BSD')
+arch=('i686' 'x86_64')
+depends=('openssl' 'dnssec-anchors')
+optdepends=('libpcap: ldns-dpa tool')
+makedepends=('libpcap')
+source=("https://www.nlnetlabs.nl/downloads/${pkgname}/${pkgname}-${pkgver}.tar.gz;
+'pc.patch')
+sha1sums=('ceeeccf8a27e61a854762737f6ee02f44662c1b8'
+  '92161452a6e75dd283bebef4e60135ed23497e51')
+
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   patch -p1 -i ../pc.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 \
+   --disable-dane-verify # needs openssl>=1.1.0
+
+   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/pc.patch (from rev 286965, ldns/trunk/pc.patch)
===
--- testing-i686/pc.patch   (rev 0)
+++ testing-i686/pc.patch   2017-01-19 09:15:58 UTC (rev 286966)
@@ -0,0 +1,60 @@
+From 2a38f26ed5695c3ad737de082b56a296240dd51a Mon Sep 17 00:00:00 2001
+From: Willem Toorop 
+Date: Thu, 19 Jan 2017 09:41:51 +0100
+Subject: bugfix #1209: make install ldns.pc file
+
+---
+ Changelog   |  4 
+ Makefile.in | 16 ++--
+ 2 files changed, 18 insertions(+), 2 deletions(-)
+
+diff --git a/Changelog b/Changelog
+index 0bd3658..efda95e 100644
+--- a/Changelog
 b/Changelog
+@@ -1,3 +1,7 @@
++1.7.1 -??-??
++  * bugfix #1209: make install ldns.pc file
++Thanks Oleksandr Natalenko
++
+ 1.7.0 2016-12-20
+   * Fix lookup of relative names in ldns_resolver_search.
+   * bugfix #548: Double free for answers > 4096 in ldns_resolver_send_pkt
+diff --git a/Makefile.in b/Makefile.in
+index 04f683b..853777e 100644
+--- a/Makefile.in
 b/Makefile.in
+@@ -308,9 +308,9 @@ clean-p5-dns-ldns: $(p5_dns_ldns_dir)/Makefile
+ test-p5-dns-ldns: $(p5_dns_ldns_dir)/Makefile
+   cd $(p5_dns_ldns_dir); $(MAKE) test
+ 
+-install: install-h install-lib @INSTALL_CONFIG@ install-manpages 
$(pyldns_inst) $(pyldnsx_inst) @INSTALL_P5_DNS_LDNS@ @INSTALL_DRILL@ 
@INSTALL_EXAMPLES@
++install: install-h install-lib install-pc @INSTALL_CONFIG@ install-manpages 
$(pyldns_inst) $(pyldnsx_inst) @INSTALL_P5_DNS_LDNS@ @INSTALL_DRILL@ 
@INSTALL_EXAMPLES@
+ 
+-uninstall: uninstall-manpages @UNINSTALL_CONFIG@ uninstall-h uninstall-lib 
$(pyldns_uninst) $(pyldnsx_uninst) @UNINSTALL_P5_DNS_LDNS@ @UNINSTALL_DRILL@ 
@UNINSTALL_EXAMPLES@
++uninstall: uninstall-manpages @UNINSTALL_CONFIG@ uninstall-h uninstall-lib 
uninstall-pc $(pyldns_uninst) $(pyldnsx_uninst) @UNINSTALL_P5_DNS_LDNS@ 
@UNINSTALL_DRILL@ @UNINSTALL_EXAMPLES@
+ 
+ destclean: uninstall
+ 
+@@ -355,6 +355,18 @@ uninstall-h:
+   test ! -d $(DESTDIR)$(includedir)/ldns || rmdir -p 
$(DESTDIR)$(includedir)/ldns || echo "ok, dir already gone"
+   exit 0
+ 
++packaging/libldns.pc: packaging/libldns.pc.in
++  ./config.status $@
++
++install-pc: packaging/libldns.pc
++  $(INSTALL) -m 644 packaging/libldns.pc 
$(DESTDIR)$(libdir)/pkgconfig/ldns.pc
++
++uninstall-pc:
++  $(LIBTOOL) --mode=uninstall rm -f 

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

2017-01-01 Thread Gaëtan Bisson
Date: Sunday, January 1, 2017 @ 08:43:59
  Author: bisson
Revision: 285011

db-move: moved ldns from [staging] to [testing] (i686, x86_64)

Added:
  ldns/repos/testing-i686/
  ldns/repos/testing-i686/PKGBUILD
(from rev 285010, ldns/repos/staging-i686/PKGBUILD)
  ldns/repos/testing-x86_64/
  ldns/repos/testing-x86_64/PKGBUILD
(from rev 285010, ldns/repos/staging-x86_64/PKGBUILD)
Deleted:
  ldns/repos/staging-i686/
  ldns/repos/staging-x86_64/

-+
 testing-i686/PKGBUILD   |   39 +++
 testing-x86_64/PKGBUILD |   39 +++
 2 files changed, 78 insertions(+)

Copied: ldns/repos/testing-i686/PKGBUILD (from rev 285010, 
ldns/repos/staging-i686/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2017-01-01 08:43:59 UTC (rev 285011)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: mathieui 
+# Contributor: jiribb 
+
+pkgname=ldns
+pkgver=1.7.0
+pkgrel=1
+pkgdesc='Fast DNS library supporting recent RFCs'
+url='https://www.nlnetlabs.nl/projects/ldns/'
+license=('custom:BSD')
+arch=('i686' 'x86_64')
+depends=('openssl' 'dnssec-anchors')
+optdepends=('libpcap: ldns-dpa tool')
+makedepends=('libpcap')
+source=("https://www.nlnetlabs.nl/downloads/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
+sha1sums=('ceeeccf8a27e61a854762737f6ee02f44662c1b8')
+
+
+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 \
+   --disable-dane-verify # needs openssl>=1.1.0
+
+   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/PKGBUILD (from rev 285010, 
ldns/repos/staging-x86_64/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2017-01-01 08:43:59 UTC (rev 285011)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: mathieui 
+# Contributor: jiribb 
+
+pkgname=ldns
+pkgver=1.7.0
+pkgrel=1
+pkgdesc='Fast DNS library supporting recent RFCs'
+url='https://www.nlnetlabs.nl/projects/ldns/'
+license=('custom:BSD')
+arch=('i686' 'x86_64')
+depends=('openssl' 'dnssec-anchors')
+optdepends=('libpcap: ldns-dpa tool')
+makedepends=('libpcap')
+source=("https://www.nlnetlabs.nl/downloads/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
+sha1sums=('ceeeccf8a27e61a854762737f6ee02f44662c1b8')
+
+
+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 \
+   --disable-dane-verify # needs openssl>=1.1.0
+
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+   install -D -m644 LICENSE 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}


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

2016-03-02 Thread Evangelos Foutras
Date: Wednesday, March 2, 2016 @ 19:13:03
  Author: foutrelis
Revision: 260517

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

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

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

Copied: ldns/repos/staging-i686/PKGBUILD (from rev 260516, ldns/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-03-02 18:13:03 UTC (rev 260517)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: mathieui 
+# Contributor: jiribb 
+
+pkgname=ldns
+pkgver=1.6.17
+pkgrel=4
+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/staging-i686/perl-recent.patch (from rev 260516, 
ldns/trunk/perl-recent.patch)
===
--- staging-i686/perl-recent.patch  (rev 0)
+++ staging-i686/perl-recent.patch  2016-03-02 18:13:03 UTC (rev 260517)
@@ -0,0 +1,12 @@
+diff -Naur old/doc/doxyparse.pl new/doc/doxyparse.pl
+--- old/doc/doxyparse.pl   2014-01-11 06:04:41.0 +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/staging-x86_64/PKGBUILD (from rev 260516, 
ldns/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2016-03-02 18:13:03 UTC (rev 260517)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: mathieui 
+# Contributor: jiribb 
+
+pkgname=ldns
+pkgver=1.6.17
+pkgrel=4
+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/staging-x86_64/perl-recent.patch (from rev 260516, 

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

2015-08-08 Thread Gaetan Bisson
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 bis...@archlinux.org
+# Contributor: mathieui mathi...@mathieui.net
+# Contributor: jiribb jir...@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.0 +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 bis...@archlinux.org
+# Contributor: mathieui mathi...@mathieui.net
+# Contributor: jiribb jir...@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)

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

2014-11-10 Thread Gaetan Bisson
Date: Monday, November 10, 2014 @ 23:53:56
  Author: bisson
Revision: 225926

db-move: moved ldns from [testing] to [core] (i686, x86_64)

Added:
  ldns/repos/core-i686/PKGBUILD
(from rev 225925, ldns/repos/testing-i686/PKGBUILD)
  ldns/repos/core-x86_64/PKGBUILD
(from rev 225925, ldns/repos/testing-x86_64/PKGBUILD)
Deleted:
  ldns/repos/core-i686/PKGBUILD
  ldns/repos/core-x86_64/PKGBUILD
  ldns/repos/testing-i686/
  ldns/repos/testing-x86_64/

--+
 /PKGBUILD|   80 +
 core-i686/PKGBUILD   |   39 ---
 core-x86_64/PKGBUILD |   39 ---
 3 files changed, 80 insertions(+), 78 deletions(-)

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2014-11-10 22:53:50 UTC (rev 225925)
+++ core-i686/PKGBUILD  2014-11-10 22:53:56 UTC (rev 225926)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson bis...@archlinux.org
-# Contributor: mathieui mathi...@mathieui.net
-# Contributor: jiribb jir...@gmail.com
-
-pkgname=ldns
-pkgver=1.6.17
-pkgrel=1
-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;)
-sha1sums=('4218897b3c002aadfc7280b3f40cda829e05c9a4')
-
-build() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-
-   ./configure \
-   --prefix=/usr \
-   --sysconfdir=/etc \
-   --localstatedir=/var \
-   --disable-rpath \
-   --with-drill \
-   --with-examples \
-
-   make
-}
-
-package() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-
-   make DESTDIR=${pkgdir} install
-
-   install -D -m644 LICENSE 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: ldns/repos/core-i686/PKGBUILD (from rev 225925, 
ldns/repos/testing-i686/PKGBUILD)
===
--- core-i686/PKGBUILD  (rev 0)
+++ core-i686/PKGBUILD  2014-11-10 22:53:56 UTC (rev 225926)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: mathieui mathi...@mathieui.net
+# Contributor: jiribb jir...@gmail.com
+
+pkgname=ldns
+pkgver=1.6.17
+pkgrel=2
+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;)
+sha1sums=('4218897b3c002aadfc7280b3f40cda829e05c9a4')
+
+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
+}

Deleted: core-x86_64/PKGBUILD
===
--- core-x86_64/PKGBUILD2014-11-10 22:53:50 UTC (rev 225925)
+++ core-x86_64/PKGBUILD2014-11-10 22:53:56 UTC (rev 225926)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson bis...@archlinux.org
-# Contributor: mathieui mathi...@mathieui.net
-# Contributor: jiribb jir...@gmail.com
-
-pkgname=ldns
-pkgver=1.6.17
-pkgrel=1
-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;)
-sha1sums=('4218897b3c002aadfc7280b3f40cda829e05c9a4')
-
-build() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-
-   ./configure \
-   --prefix=/usr \
-   --sysconfdir=/etc \
-   --localstatedir=/var \
-   --disable-rpath \
-   --with-drill \
-   --with-examples \
-
-   make
-}
-
-package() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-
-   make DESTDIR=${pkgdir} install
-
-   install -D -m644 LICENSE 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: ldns/repos/core-x86_64/PKGBUILD (from rev 225925, 
ldns/repos/testing-x86_64/PKGBUILD)
===
--- core-x86_64/PKGBUILD(rev 0)
+++ core-x86_64/PKGBUILD 

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

2014-02-02 Thread Gaetan Bisson
Date: Sunday, February 2, 2014 @ 21:56:10
  Author: bisson
Revision: 205001

db-move: moved ldns from [testing] to [core] (i686, x86_64)

Added:
  ldns/repos/core-i686/PKGBUILD
(from rev 205000, ldns/repos/testing-i686/PKGBUILD)
  ldns/repos/core-x86_64/PKGBUILD
(from rev 205000, ldns/repos/testing-x86_64/PKGBUILD)
Deleted:
  ldns/repos/core-i686/PKGBUILD
  ldns/repos/core-x86_64/PKGBUILD
  ldns/repos/testing-i686/
  ldns/repos/testing-x86_64/

--+
 /PKGBUILD|   78 +
 core-i686/PKGBUILD   |   40 -
 core-x86_64/PKGBUILD |   40 -
 3 files changed, 78 insertions(+), 80 deletions(-)

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2014-02-02 20:53:32 UTC (rev 205000)
+++ core-i686/PKGBUILD  2014-02-02 20:56:10 UTC (rev 205001)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson bis...@archlinux.org
-# Contributor: mathieui mathi...@mathieui.net
-# Contributor: jiribb jir...@gmail.com
-
-pkgname=ldns
-pkgver=1.6.16
-pkgrel=1
-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;)
-sha1sums=('5b4fc6c5c3078cd061905c47178478cb1015c62a')
-
-build() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-
-   ./configure \
-   --prefix=/usr \
-   --sysconfdir=/etc \
-   --localstatedir=/var \
-   --enable-static=no \
-   --disable-rpath \
-   --with-drill \
-   --with-examples \
-
-   make
-}
-
-package() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-
-   make DESTDIR=${pkgdir} install
-
-   install -D -m644 LICENSE 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: ldns/repos/core-i686/PKGBUILD (from rev 205000, 
ldns/repos/testing-i686/PKGBUILD)
===
--- core-i686/PKGBUILD  (rev 0)
+++ core-i686/PKGBUILD  2014-02-02 20:56:10 UTC (rev 205001)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: mathieui mathi...@mathieui.net
+# Contributor: jiribb jir...@gmail.com
+
+pkgname=ldns
+pkgver=1.6.17
+pkgrel=1
+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;)
+sha1sums=('4218897b3c002aadfc7280b3f40cda829e05c9a4')
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --localstatedir=/var \
+   --disable-rpath \
+   --with-drill \
+   --with-examples \
+
+   make
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+
+   make DESTDIR=${pkgdir} install
+
+   install -D -m644 LICENSE 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}

Deleted: core-x86_64/PKGBUILD
===
--- core-x86_64/PKGBUILD2014-02-02 20:53:32 UTC (rev 205000)
+++ core-x86_64/PKGBUILD2014-02-02 20:56:10 UTC (rev 205001)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson bis...@archlinux.org
-# Contributor: mathieui mathi...@mathieui.net
-# Contributor: jiribb jir...@gmail.com
-
-pkgname=ldns
-pkgver=1.6.16
-pkgrel=1
-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;)
-sha1sums=('5b4fc6c5c3078cd061905c47178478cb1015c62a')
-
-build() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-
-   ./configure \
-   --prefix=/usr \
-   --sysconfdir=/etc \
-   --localstatedir=/var \
-   --enable-static=no \
-   --disable-rpath \
-   --with-drill \
-   --with-examples \
-
-   make
-}
-
-package() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-
-   make DESTDIR=${pkgdir} install
-
-   install -D -m644 LICENSE 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: ldns/repos/core-x86_64/PKGBUILD (from rev 205000, 
ldns/repos/testing-x86_64/PKGBUILD)
===
--- core-x86_64/PKGBUILD(rev 0)
+++ 

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

2012-11-18 Thread Gaetan Bisson
Date: Sunday, November 18, 2012 @ 22:55:29
  Author: bisson
Revision: 171551

db-move: moved ldns from [testing] to [core] (i686, x86_64)

Added:
  ldns/repos/core-i686/PKGBUILD
(from rev 171550, ldns/repos/testing-i686/PKGBUILD)
  ldns/repos/core-x86_64/PKGBUILD
(from rev 171550, ldns/repos/testing-x86_64/PKGBUILD)
Deleted:
  ldns/repos/core-i686/PKGBUILD
  ldns/repos/core-x86_64/PKGBUILD
  ldns/repos/testing-i686/
  ldns/repos/testing-x86_64/

--+
 core-i686/PKGBUILD   |   82 -
 core-x86_64/PKGBUILD |   82 -
 2 files changed, 82 insertions(+), 82 deletions(-)

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2012-11-19 03:46:19 UTC (rev 171550)
+++ core-i686/PKGBUILD  2012-11-19 03:55:29 UTC (rev 171551)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson bis...@archlinux.org
-# Contributor: mathieui mathi...@mathieui.net
-# Contributor: jiribb jir...@gmail.com
-
-pkgname=ldns
-pkgver=1.6.14
-pkgrel=1
-pkgdesc='Fast DNS library supporting recent RFCs'
-url='http://www.nlnetlabs.nl/projects/ldns/'
-license=('custom:BSD')
-arch=('i686' 'x86_64')
-options=('!libtool')
-depends=('openssl' 'dnssec-anchors')
-optdepends=('libpcap: ldns-dpa tool')
-makedepends=('libpcap')
-source=(http://www.nlnetlabs.nl/downloads/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
-sha1sums=('2ef5fbf33b25d2f7b736c332ebccc0862dd12d02')
-
-build() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-
-   ./configure \
-   --prefix=/usr \
-   --sysconfdir=/etc \
-   --localstatedir=/var \
-   --enable-static=no \
-   --disable-rpath \
-   --with-drill \
-   --with-examples \
-
-   make
-}
-
-package() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-
-   make DESTDIR=${pkgdir} install
-
-   install -D -m644 LICENSE 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: ldns/repos/core-i686/PKGBUILD (from rev 171550, 
ldns/repos/testing-i686/PKGBUILD)
===
--- core-i686/PKGBUILD  (rev 0)
+++ core-i686/PKGBUILD  2012-11-19 03:55:29 UTC (rev 171551)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: mathieui mathi...@mathieui.net
+# Contributor: jiribb jir...@gmail.com
+
+pkgname=ldns
+pkgver=1.6.16
+pkgrel=1
+pkgdesc='Fast DNS library supporting recent RFCs'
+url='http://www.nlnetlabs.nl/projects/ldns/'
+license=('custom:BSD')
+arch=('i686' 'x86_64')
+options=('!libtool')
+depends=('openssl' 'dnssec-anchors')
+optdepends=('libpcap: ldns-dpa tool')
+makedepends=('libpcap')
+source=(http://www.nlnetlabs.nl/downloads/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
+sha1sums=('5b4fc6c5c3078cd061905c47178478cb1015c62a')
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --localstatedir=/var \
+   --enable-static=no \
+   --disable-rpath \
+   --with-drill \
+   --with-examples \
+
+   make
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+
+   make DESTDIR=${pkgdir} install
+
+   install -D -m644 LICENSE 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}

Deleted: core-x86_64/PKGBUILD
===
--- core-x86_64/PKGBUILD2012-11-19 03:46:19 UTC (rev 171550)
+++ core-x86_64/PKGBUILD2012-11-19 03:55:29 UTC (rev 171551)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson bis...@archlinux.org
-# Contributor: mathieui mathi...@mathieui.net
-# Contributor: jiribb jir...@gmail.com
-
-pkgname=ldns
-pkgver=1.6.14
-pkgrel=1
-pkgdesc='Fast DNS library supporting recent RFCs'
-url='http://www.nlnetlabs.nl/projects/ldns/'
-license=('custom:BSD')
-arch=('i686' 'x86_64')
-options=('!libtool')
-depends=('openssl' 'dnssec-anchors')
-optdepends=('libpcap: ldns-dpa tool')
-makedepends=('libpcap')
-source=(http://www.nlnetlabs.nl/downloads/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
-sha1sums=('2ef5fbf33b25d2f7b736c332ebccc0862dd12d02')
-
-build() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-
-   ./configure \
-   --prefix=/usr \
-   --sysconfdir=/etc \
-   --localstatedir=/var \
-   --enable-static=no \
-   --disable-rpath \
-   --with-drill \
-   --with-examples \
-
-   make
-}
-
-package() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-
-   make DESTDIR=${pkgdir} install
-
-   install -D -m644 LICENSE 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: ldns/repos/core-x86_64/PKGBUILD (from rev 171550, 
ldns/repos/testing-x86_64/PKGBUILD)

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

2012-10-24 Thread Gaetan Bisson
Date: Wednesday, October 24, 2012 @ 19:47:25
  Author: bisson
Revision: 169625

db-move: moved ldns from [testing] to [core] (i686, x86_64)

Added:
  ldns/repos/core-i686/PKGBUILD
(from rev 169624, ldns/repos/testing-i686/PKGBUILD)
  ldns/repos/core-x86_64/PKGBUILD
(from rev 169624, ldns/repos/testing-x86_64/PKGBUILD)
Deleted:
  ldns/repos/core-i686/PKGBUILD
  ldns/repos/core-x86_64/PKGBUILD
  ldns/repos/testing-i686/
  ldns/repos/testing-x86_64/

--+
 core-i686/PKGBUILD   |   82 -
 core-x86_64/PKGBUILD |   82 -
 2 files changed, 82 insertions(+), 82 deletions(-)

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2012-10-24 21:19:10 UTC (rev 169624)
+++ core-i686/PKGBUILD  2012-10-24 23:47:25 UTC (rev 169625)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson bis...@archlinux.org
-# Contributor: mathieui mathi...@mathieui.net
-# Contributor: jiribb jir...@gmail.com
-
-pkgname=ldns
-pkgver=1.6.13
-pkgrel=1
-pkgdesc='Fast DNS library supporting recent RFCs'
-url='http://www.nlnetlabs.nl/projects/ldns/'
-license=('custom:BSD')
-arch=('i686' 'x86_64')
-options=('!libtool')
-depends=('openssl' 'dnssec-anchors')
-optdepends=('libpcap: ldns-dpa tool')
-makedepends=('libpcap')
-source=(http://www.nlnetlabs.nl/downloads/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
-sha1sums=('859f633d10b763f06b602e2113828cbbd964c7eb')
-
-build() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-
-   ./configure \
-   --prefix=/usr \
-   --sysconfdir=/etc \
-   --localstatedir=/var \
-   --enable-static=no \
-   --disable-rpath \
-   --with-drill \
-   --with-examples \
-
-   make
-}
-
-package() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-
-   make DESTDIR=${pkgdir} install
-
-   install -D -m644 LICENSE 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: ldns/repos/core-i686/PKGBUILD (from rev 169624, 
ldns/repos/testing-i686/PKGBUILD)
===
--- core-i686/PKGBUILD  (rev 0)
+++ core-i686/PKGBUILD  2012-10-24 23:47:25 UTC (rev 169625)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: mathieui mathi...@mathieui.net
+# Contributor: jiribb jir...@gmail.com
+
+pkgname=ldns
+pkgver=1.6.14
+pkgrel=1
+pkgdesc='Fast DNS library supporting recent RFCs'
+url='http://www.nlnetlabs.nl/projects/ldns/'
+license=('custom:BSD')
+arch=('i686' 'x86_64')
+options=('!libtool')
+depends=('openssl' 'dnssec-anchors')
+optdepends=('libpcap: ldns-dpa tool')
+makedepends=('libpcap')
+source=(http://www.nlnetlabs.nl/downloads/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
+sha1sums=('2ef5fbf33b25d2f7b736c332ebccc0862dd12d02')
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --localstatedir=/var \
+   --enable-static=no \
+   --disable-rpath \
+   --with-drill \
+   --with-examples \
+
+   make
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+
+   make DESTDIR=${pkgdir} install
+
+   install -D -m644 LICENSE 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}

Deleted: core-x86_64/PKGBUILD
===
--- core-x86_64/PKGBUILD2012-10-24 21:19:10 UTC (rev 169624)
+++ core-x86_64/PKGBUILD2012-10-24 23:47:25 UTC (rev 169625)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson bis...@archlinux.org
-# Contributor: mathieui mathi...@mathieui.net
-# Contributor: jiribb jir...@gmail.com
-
-pkgname=ldns
-pkgver=1.6.13
-pkgrel=1
-pkgdesc='Fast DNS library supporting recent RFCs'
-url='http://www.nlnetlabs.nl/projects/ldns/'
-license=('custom:BSD')
-arch=('i686' 'x86_64')
-options=('!libtool')
-depends=('openssl' 'dnssec-anchors')
-optdepends=('libpcap: ldns-dpa tool')
-makedepends=('libpcap')
-source=(http://www.nlnetlabs.nl/downloads/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
-sha1sums=('859f633d10b763f06b602e2113828cbbd964c7eb')
-
-build() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-
-   ./configure \
-   --prefix=/usr \
-   --sysconfdir=/etc \
-   --localstatedir=/var \
-   --enable-static=no \
-   --disable-rpath \
-   --with-drill \
-   --with-examples \
-
-   make
-}
-
-package() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-
-   make DESTDIR=${pkgdir} install
-
-   install -D -m644 LICENSE 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: ldns/repos/core-x86_64/PKGBUILD (from rev 169624, 
ldns/repos/testing-x86_64/PKGBUILD)

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

2012-04-22 Thread Gaetan Bisson
Date: Sunday, April 22, 2012 @ 03:34:09
  Author: bisson
Revision: 156644

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

Added:
  ldns/repos/extra-i686/
  ldns/repos/extra-i686/Makefile.patch
(from rev 156643, ldns/trunk/Makefile.patch)
  ldns/repos/extra-i686/PKGBUILD
(from rev 156643, ldns/trunk/PKGBUILD)
  ldns/repos/extra-x86_64/
  ldns/repos/extra-x86_64/Makefile.patch
(from rev 156643, ldns/trunk/Makefile.patch)
  ldns/repos/extra-x86_64/PKGBUILD
(from rev 156643, ldns/trunk/PKGBUILD)

-+
 extra-i686/Makefile.patch   |   20 ++
 extra-i686/PKGBUILD |   45 ++
 extra-x86_64/Makefile.patch |   20 ++
 extra-x86_64/PKGBUILD   |   45 ++
 4 files changed, 130 insertions(+)

Copied: ldns/repos/extra-i686/Makefile.patch (from rev 156643, 
ldns/trunk/Makefile.patch)
===
--- extra-i686/Makefile.patch   (rev 0)
+++ extra-i686/Makefile.patch   2012-04-22 07:34:09 UTC (rev 156644)
@@ -0,0 +1,20 @@
+--- old/Makefile.in2012-01-12 00:11:36.0 +1100
 new/Makefile.in2012-01-27 11:36:16.110154453 +1100
+@@ -130,7 +130,7 @@
+   exit -1 ; \
+   fi
+ drill/drill: $(DRILL_LOBJS) $(LIB)
+-  $(LINK_EXE) $(DRILL_LOBJS) $(LIBS) -lldns -o drill/drill
++  $(LINK_EXE) $(DRILL_LOBJS) $(LIBS) $(LIBSSL_LIBS) -lldns -o drill/drill
+ 
+ install-drill: drill/drill
+   $(INSTALL) -m 755 -d $(DESTDIR)$(bindir)
+@@ -157,7 +157,7 @@
+   exit -1 ; \
+   fi
+ $(EXAMPLE_PROGS): $(EXAMPLE_LOBJS) $(LIB)
+-  $(LINK_EXE) $@.lo $(LIBS) -lldns -o $@
++  $(LINK_EXE) $@.lo $(LIBS) $(LIBSSL_LIBS) -lldns -o $@
+ 
+ $(TESTNS): $(TESTNS_LOBJS) $(LIB)
+   $(LINK_EXE) $(TESTNS_LOBJS) $(LIBS) -lldns -o $(TESTNS)

Copied: ldns/repos/extra-i686/PKGBUILD (from rev 156643, ldns/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-04-22 07:34:09 UTC (rev 156644)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: mathieui mathi...@mathieui.net
+# Contributor: jiribb jir...@gmail.com
+
+pkgname=ldns
+pkgver=1.6.12
+pkgrel=1
+pkgdesc='Fast DNS library supporting recent RFCs, including Drill and other 
tools'
+url='http://www.nlnetlabs.nl/projects/ldns/'
+license=('custom:BSD')
+arch=('i686' 'x86_64')
+options=('!libtool')
+depends=('openssl')
+makedepends=('libpcap')
+optdepends=('libpcap: ldns-dpa tool')
+source=(http://www.nlnetlabs.nl/downloads/${pkgname}/${pkgname}-${pkgver}.tar.gz;
+'Makefile.patch')
+sha1sums=('1d61df0f666908551d5a62768f77d63e727810aa'
+  '01bce260e9639d9cd26109a689dddf2498e5026a')
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+
+   patch -p1 -i ../Makefile.patch
+
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --localstatedir=/var \
+   --enable-static=no \
+   --disable-rpath \
+   --with-drill \
+   --with-examples \
+
+   make
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+
+   make DESTDIR=${pkgdir} install
+
+   install -D -m644 LICENSE 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}

Copied: ldns/repos/extra-x86_64/Makefile.patch (from rev 156643, 
ldns/trunk/Makefile.patch)
===
--- extra-x86_64/Makefile.patch (rev 0)
+++ extra-x86_64/Makefile.patch 2012-04-22 07:34:09 UTC (rev 156644)
@@ -0,0 +1,20 @@
+--- old/Makefile.in2012-01-12 00:11:36.0 +1100
 new/Makefile.in2012-01-27 11:36:16.110154453 +1100
+@@ -130,7 +130,7 @@
+   exit -1 ; \
+   fi
+ drill/drill: $(DRILL_LOBJS) $(LIB)
+-  $(LINK_EXE) $(DRILL_LOBJS) $(LIBS) -lldns -o drill/drill
++  $(LINK_EXE) $(DRILL_LOBJS) $(LIBS) $(LIBSSL_LIBS) -lldns -o drill/drill
+ 
+ install-drill: drill/drill
+   $(INSTALL) -m 755 -d $(DESTDIR)$(bindir)
+@@ -157,7 +157,7 @@
+   exit -1 ; \
+   fi
+ $(EXAMPLE_PROGS): $(EXAMPLE_LOBJS) $(LIB)
+-  $(LINK_EXE) $@.lo $(LIBS) -lldns -o $@
++  $(LINK_EXE) $@.lo $(LIBS) $(LIBSSL_LIBS) -lldns -o $@
+ 
+ $(TESTNS): $(TESTNS_LOBJS) $(LIB)
+   $(LINK_EXE) $(TESTNS_LOBJS) $(LIBS) -lldns -o $(TESTNS)

Copied: ldns/repos/extra-x86_64/PKGBUILD (from rev 156643, ldns/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-04-22 07:34:09 UTC (rev 156644)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: mathieui mathi...@mathieui.net
+# Contributor: jiribb jir...@gmail.com
+
+pkgname=ldns

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

2012-04-22 Thread Gaetan Bisson
Date: Sunday, April 22, 2012 @ 04:06:30
  Author: bisson
Revision: 156650

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

Added:
  ldns/repos/testing-i686/
  ldns/repos/testing-i686/Makefile.patch
(from rev 156649, ldns/trunk/Makefile.patch)
  ldns/repos/testing-i686/PKGBUILD
(from rev 156649, ldns/trunk/PKGBUILD)
  ldns/repos/testing-x86_64/
  ldns/repos/testing-x86_64/Makefile.patch
(from rev 156649, ldns/trunk/Makefile.patch)
  ldns/repos/testing-x86_64/PKGBUILD
(from rev 156649, ldns/trunk/PKGBUILD)

---+
 testing-i686/Makefile.patch   |   20 +
 testing-i686/PKGBUILD |   45 
 testing-x86_64/Makefile.patch |   20 +
 testing-x86_64/PKGBUILD   |   45 
 4 files changed, 130 insertions(+)

Copied: ldns/repos/testing-i686/Makefile.patch (from rev 156649, 
ldns/trunk/Makefile.patch)
===
--- testing-i686/Makefile.patch (rev 0)
+++ testing-i686/Makefile.patch 2012-04-22 08:06:30 UTC (rev 156650)
@@ -0,0 +1,20 @@
+--- old/Makefile.in2012-01-12 00:11:36.0 +1100
 new/Makefile.in2012-01-27 11:36:16.110154453 +1100
+@@ -130,7 +130,7 @@
+   exit -1 ; \
+   fi
+ drill/drill: $(DRILL_LOBJS) $(LIB)
+-  $(LINK_EXE) $(DRILL_LOBJS) $(LIBS) -lldns -o drill/drill
++  $(LINK_EXE) $(DRILL_LOBJS) $(LIBS) $(LIBSSL_LIBS) -lldns -o drill/drill
+ 
+ install-drill: drill/drill
+   $(INSTALL) -m 755 -d $(DESTDIR)$(bindir)
+@@ -157,7 +157,7 @@
+   exit -1 ; \
+   fi
+ $(EXAMPLE_PROGS): $(EXAMPLE_LOBJS) $(LIB)
+-  $(LINK_EXE) $@.lo $(LIBS) -lldns -o $@
++  $(LINK_EXE) $@.lo $(LIBS) $(LIBSSL_LIBS) -lldns -o $@
+ 
+ $(TESTNS): $(TESTNS_LOBJS) $(LIB)
+   $(LINK_EXE) $(TESTNS_LOBJS) $(LIBS) -lldns -o $(TESTNS)

Copied: ldns/repos/testing-i686/PKGBUILD (from rev 156649, ldns/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2012-04-22 08:06:30 UTC (rev 156650)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: mathieui mathi...@mathieui.net
+# Contributor: jiribb jir...@gmail.com
+
+pkgname=ldns
+pkgver=1.6.12
+pkgrel=2
+pkgdesc='Fast DNS library supporting recent RFCs'
+url='http://www.nlnetlabs.nl/projects/ldns/'
+license=('custom:BSD')
+arch=('i686' 'x86_64')
+options=('!libtool')
+depends=('openssl' 'dnssec-anchors')
+optdepends=('libpcap: ldns-dpa tool')
+makedepends=('libpcap')
+source=(http://www.nlnetlabs.nl/downloads/${pkgname}/${pkgname}-${pkgver}.tar.gz;
+'Makefile.patch')
+sha1sums=('1d61df0f666908551d5a62768f77d63e727810aa'
+  '01bce260e9639d9cd26109a689dddf2498e5026a')
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+
+   patch -p1 -i ../Makefile.patch
+
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --localstatedir=/var \
+   --enable-static=no \
+   --disable-rpath \
+   --with-drill \
+   --with-examples \
+
+   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/Makefile.patch (from rev 156649, 
ldns/trunk/Makefile.patch)
===
--- testing-x86_64/Makefile.patch   (rev 0)
+++ testing-x86_64/Makefile.patch   2012-04-22 08:06:30 UTC (rev 156650)
@@ -0,0 +1,20 @@
+--- old/Makefile.in2012-01-12 00:11:36.0 +1100
 new/Makefile.in2012-01-27 11:36:16.110154453 +1100
+@@ -130,7 +130,7 @@
+   exit -1 ; \
+   fi
+ drill/drill: $(DRILL_LOBJS) $(LIB)
+-  $(LINK_EXE) $(DRILL_LOBJS) $(LIBS) -lldns -o drill/drill
++  $(LINK_EXE) $(DRILL_LOBJS) $(LIBS) $(LIBSSL_LIBS) -lldns -o drill/drill
+ 
+ install-drill: drill/drill
+   $(INSTALL) -m 755 -d $(DESTDIR)$(bindir)
+@@ -157,7 +157,7 @@
+   exit -1 ; \
+   fi
+ $(EXAMPLE_PROGS): $(EXAMPLE_LOBJS) $(LIB)
+-  $(LINK_EXE) $@.lo $(LIBS) -lldns -o $@
++  $(LINK_EXE) $@.lo $(LIBS) $(LIBSSL_LIBS) -lldns -o $@
+ 
+ $(TESTNS): $(TESTNS_LOBJS) $(LIB)
+   $(LINK_EXE) $(TESTNS_LOBJS) $(LIBS) -lldns -o $(TESTNS)

Copied: ldns/repos/testing-x86_64/PKGBUILD (from rev 156649, 
ldns/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2012-04-22 08:06:30 UTC (rev 156650)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: mathieui mathi...@mathieui.net
+#