public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in net-dns/unbound: ChangeLog unbound-1.4.1.ebuild
@ 2009-12-17 15:50 Matsuu Takuto (matsuu)
  0 siblings, 0 replies; 4+ messages in thread
From: Matsuu Takuto (matsuu) @ 2009-12-17 15:50 UTC (permalink / raw
  To: gentoo-commits

matsuu      09/12/17 15:50:33

  Modified:             ChangeLog
  Added:                unbound-1.4.1.ebuild
  Log:
  Version bumped.
  (Portage version: 2.1.7.14/cvs/Linux x86_64)

Revision  Changes    Path
1.3                  net-dns/unbound/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-dns/unbound/ChangeLog?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-dns/unbound/ChangeLog?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-dns/unbound/ChangeLog?r1=1.2&r2=1.3

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-dns/unbound/ChangeLog,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ChangeLog	26 Nov 2009 15:55:56 -0000	1.2
+++ ChangeLog	17 Dec 2009 15:50:33 -0000	1.3
@@ -1,6 +1,11 @@
 # ChangeLog for net-dns/unbound
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-dns/unbound/ChangeLog,v 1.2 2009/11/26 15:55:56 matsuu Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/unbound/ChangeLog,v 1.3 2009/12/17 15:50:33 matsuu Exp $
+
+*unbound-1.4.1 (17 Dec 2009)
+
+  17 Dec 2009; MATSUU Takuto <matsuu@gentoo.org> +unbound-1.4.1.ebuild:
+  Version bumped.
 
 *unbound-1.4.0 (26 Nov 2009)
 



1.1                  net-dns/unbound/unbound-1.4.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-dns/unbound/unbound-1.4.1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-dns/unbound/unbound-1.4.1.ebuild?rev=1.1&content-type=text/plain

Index: unbound-1.4.1.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-dns/unbound/unbound-1.4.1.ebuild,v 1.1 2009/12/17 15:50:33 matsuu Exp $

EAPI="2"

inherit autotools eutils multilib

DESCRIPTION="A validating, recursive and caching DNS resolver"
HOMEPAGE="http://unbound.net/"
SRC_URI="http://unbound.net/downloads/${P}.tar.gz"

LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="debug libevent python static test threads"

RDEPEND=">=dev-libs/openssl-0.9.8
	>=net-libs/ldns-1.4
	libevent? ( dev-libs/libevent )"
DEPEND="${RDEPEND}
	python? ( dev-lang/swig )
	test? (
		net-dns/ldns-utils[examples]
		dev-util/splint
	)"

pkg_setup() {
	enewgroup unbound
	enewuser unbound -1 -1 /etc/unbound unbound
}

src_prepare() {
	sed -i -e "s:\(withval\|thedir\)/lib:\1/$(get_libdir):" configure.ac || die
	eautoreconf
}

src_configure() {
	econf \
		--with-pidfile=/var/run/unbound.pid \
		--with-ldns=/usr \
		$(use_enable debug) \
		$(use_enable debug lock-checks) \
		$(use_enable debug alloc-checks) \
		$(use_enable static static-exe) \
		$(use_with libevent) \
		$(use_with threads pthreads) \
		$(use_with python pyunbound) \
		$(use_with python pythonmodule) || die
}

src_install() {
	emake DESTDIR="${D}" install || die "emake install failed"
	newinitd "${FILESDIR}/unbound.initd" unbound || die "newinitd failed"
	newconfd "${FILESDIR}/unbound.confd" unbound || die "newconfd failed"

	dodoc doc/{README,CREDITS,TODO,Changelog,FEATURES} || die "dodoc failed"

	exeinto /usr/share/${PN}
	doexe contrib/{update-anchor,update-itar,split-itar}.sh || die "doexe failed"
}






^ permalink raw reply	[flat|nested] 4+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-dns/unbound: ChangeLog unbound-1.4.1.ebuild
@ 2010-01-20 18:20 Jeremy Olexa (darkside)
  0 siblings, 0 replies; 4+ messages in thread
From: Jeremy Olexa (darkside) @ 2010-01-20 18:20 UTC (permalink / raw
  To: gentoo-commits

darkside    10/01/20 18:20:20

  Modified:             ChangeLog unbound-1.4.1.ebuild
  Log:
  Fix net-libs/ldns dependancy, requires USE=ssl support, bug 301257
  (Portage version: 2.1.7.16/cvs/Linux x86_64)

Revision  Changes    Path
1.4                  net-dns/unbound/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-dns/unbound/ChangeLog?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-dns/unbound/ChangeLog?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-dns/unbound/ChangeLog?r1=1.3&r2=1.4

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-dns/unbound/ChangeLog,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ChangeLog	17 Dec 2009 15:50:33 -0000	1.3
+++ ChangeLog	20 Jan 2010 18:20:20 -0000	1.4
@@ -1,6 +1,9 @@
 # ChangeLog for net-dns/unbound
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-dns/unbound/ChangeLog,v 1.3 2009/12/17 15:50:33 matsuu Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-dns/unbound/ChangeLog,v 1.4 2010/01/20 18:20:20 darkside Exp $
+
+  20 Jan 2010; Jeremy Olexa <darkside@gentoo.org> unbound-1.4.1.ebuild:
+  Fix net-libs/ldns dependancy, requires USE=ssl support, bug 301257
 
 *unbound-1.4.1 (17 Dec 2009)
 



1.2                  net-dns/unbound/unbound-1.4.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-dns/unbound/unbound-1.4.1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-dns/unbound/unbound-1.4.1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-dns/unbound/unbound-1.4.1.ebuild?r1=1.1&r2=1.2

Index: unbound-1.4.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-dns/unbound/unbound-1.4.1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- unbound-1.4.1.ebuild	17 Dec 2009 15:50:33 -0000	1.1
+++ unbound-1.4.1.ebuild	20 Jan 2010 18:20:20 -0000	1.2
@@ -1,6 +1,6 @@
-# Copyright 1999-2009 Gentoo Foundation
+# Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-dns/unbound/unbound-1.4.1.ebuild,v 1.1 2009/12/17 15:50:33 matsuu Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/unbound/unbound-1.4.1.ebuild,v 1.2 2010/01/20 18:20:20 darkside Exp $
 
 EAPI="2"
 
@@ -16,7 +16,7 @@
 IUSE="debug libevent python static test threads"
 
 RDEPEND=">=dev-libs/openssl-0.9.8
-	>=net-libs/ldns-1.4
+	>=net-libs/ldns-1.4[ssl]
 	libevent? ( dev-libs/libevent )"
 DEPEND="${RDEPEND}
 	python? ( dev-lang/swig )






^ permalink raw reply	[flat|nested] 4+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-dns/unbound: ChangeLog unbound-1.4.1.ebuild
@ 2010-03-04 12:03 PaweA Hajdan (phajdan.jr)
  0 siblings, 0 replies; 4+ messages in thread
From: PaweA Hajdan (phajdan.jr) @ 2010-03-04 12:03 UTC (permalink / raw
  To: gentoo-commits

phajdan.jr    10/03/04 12:03:42

  Modified:             ChangeLog unbound-1.4.1.ebuild
  Log:
  x86 stable wrt bug #300362, arch-tested by Andreas Schurch
  (Portage version: 2.1.7.17/cvs/Linux i686)

Revision  Changes    Path
1.6                  net-dns/unbound/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-dns/unbound/ChangeLog?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-dns/unbound/ChangeLog?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-dns/unbound/ChangeLog?r1=1.5&r2=1.6

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-dns/unbound/ChangeLog,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ChangeLog	20 Jan 2010 18:22:05 -0000	1.5
+++ ChangeLog	4 Mar 2010 12:03:41 -0000	1.6
@@ -1,6 +1,9 @@
 # ChangeLog for net-dns/unbound
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-dns/unbound/ChangeLog,v 1.5 2010/01/20 18:22:05 darkside Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/unbound/ChangeLog,v 1.6 2010/03/04 12:03:41 phajdan.jr Exp $
+
+  04 Mar 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org> unbound-1.4.1.ebuild:
+  x86 stable wrt bug #300362, arch-tested by Andreas Schurch
 
   20 Jan 2010; Jeremy Olexa <darkside@gentoo.org> unbound-1.4.1.ebuild:
   Fix net-libs/ldns dependency, requires USE=ssl support, bug 301257



1.3                  net-dns/unbound/unbound-1.4.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-dns/unbound/unbound-1.4.1.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-dns/unbound/unbound-1.4.1.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-dns/unbound/unbound-1.4.1.ebuild?r1=1.2&r2=1.3

Index: unbound-1.4.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-dns/unbound/unbound-1.4.1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- unbound-1.4.1.ebuild	20 Jan 2010 18:20:20 -0000	1.2
+++ unbound-1.4.1.ebuild	4 Mar 2010 12:03:41 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-dns/unbound/unbound-1.4.1.ebuild,v 1.2 2010/01/20 18:20:20 darkside Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/unbound/unbound-1.4.1.ebuild,v 1.3 2010/03/04 12:03:41 phajdan.jr Exp $
 
 EAPI="2"
 
@@ -12,7 +12,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 IUSE="debug libevent python static test threads"
 
 RDEPEND=">=dev-libs/openssl-0.9.8






^ permalink raw reply	[flat|nested] 4+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-dns/unbound: ChangeLog unbound-1.4.1.ebuild
@ 2010-03-11 18:58 Markos Chandras (hwoarang)
  0 siblings, 0 replies; 4+ messages in thread
From: Markos Chandras (hwoarang) @ 2010-03-11 18:58 UTC (permalink / raw
  To: gentoo-commits

hwoarang    10/03/11 18:58:05

  Modified:             ChangeLog unbound-1.4.1.ebuild
  Log:
  Stable on amd64 wrt bug #300362
  (Portage version: 2.2_rc67/cvs/Linux x86_64)

Revision  Changes    Path
1.8                  net-dns/unbound/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-dns/unbound/ChangeLog?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-dns/unbound/ChangeLog?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-dns/unbound/ChangeLog?r1=1.7&r2=1.8

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-dns/unbound/ChangeLog,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ChangeLog	9 Mar 2010 16:29:15 -0000	1.7
+++ ChangeLog	11 Mar 2010 18:58:05 -0000	1.8
@@ -1,6 +1,9 @@
 # ChangeLog for net-dns/unbound
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-dns/unbound/ChangeLog,v 1.7 2010/03/09 16:29:15 matsuu Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/unbound/ChangeLog,v 1.8 2010/03/11 18:58:05 hwoarang Exp $
+
+  11 Mar 2010; Markos Chandras <hwoarang@gentoo.org> unbound-1.4.1.ebuild:
+  Stable on amd64 wrt bug #300362
 
 *unbound-1.4.2 (09 Mar 2010)
 



1.4                  net-dns/unbound/unbound-1.4.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-dns/unbound/unbound-1.4.1.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-dns/unbound/unbound-1.4.1.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-dns/unbound/unbound-1.4.1.ebuild?r1=1.3&r2=1.4

Index: unbound-1.4.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-dns/unbound/unbound-1.4.1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- unbound-1.4.1.ebuild	4 Mar 2010 12:03:41 -0000	1.3
+++ unbound-1.4.1.ebuild	11 Mar 2010 18:58:05 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-dns/unbound/unbound-1.4.1.ebuild,v 1.3 2010/03/04 12:03:41 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/unbound/unbound-1.4.1.ebuild,v 1.4 2010/03/11 18:58:05 hwoarang Exp $
 
 EAPI="2"
 
@@ -12,7 +12,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
 IUSE="debug libevent python static test threads"
 
 RDEPEND=">=dev-libs/openssl-0.9.8






^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2010-03-11 18:58 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-01-20 18:20 [gentoo-commits] gentoo-x86 commit in net-dns/unbound: ChangeLog unbound-1.4.1.ebuild Jeremy Olexa (darkside)
  -- strict thread matches above, loose matches on Subject: below --
2010-03-11 18:58 Markos Chandras (hwoarang)
2010-03-04 12:03 PaweA Hajdan (phajdan.jr)
2009-12-17 15:50 Matsuu Takuto (matsuu)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox