public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in net-libs/ldns: ldns-1.6.9.ebuild ChangeLog
@ 2011-03-26  3:02 Matsuu Takuto (matsuu)
  0 siblings, 0 replies; 3+ messages in thread
From: Matsuu Takuto (matsuu) @ 2011-03-26  3:02 UTC (permalink / raw
  To: gentoo-commits

matsuu      11/03/26 03:02:34

  Modified:             ChangeLog
  Added:                ldns-1.6.9.ebuild
  Log:
  Version bumped, bug #360171.
  
  (Portage version: 2.1.9.43/cvs/Linux x86_64)

Revision  Changes    Path
1.15                 net-libs/ldns/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/ldns/ChangeLog?rev=1.15&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/ldns/ChangeLog?rev=1.15&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/ldns/ChangeLog?r1=1.14&r2=1.15

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/ldns/ChangeLog,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- ChangeLog	3 Mar 2011 04:46:43 -0000	1.14
+++ ChangeLog	26 Mar 2011 03:02:34 -0000	1.15
@@ -1,6 +1,11 @@
 # ChangeLog for net-libs/ldns
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/ldns/ChangeLog,v 1.14 2011/03/03 04:46:43 matsuu Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/ldns/ChangeLog,v 1.15 2011/03/26 03:02:34 matsuu Exp $
+
+*ldns-1.6.9 (26 Mar 2011)
+
+  26 Mar 2011; MATSUU Takuto <matsuu@gentoo.org> +ldns-1.6.9.ebuild:
+  Version bumped, bug #360171.
 
 *ldns-1.6.8-r1 (03 Mar 2011)
 



1.1                  net-libs/ldns/ldns-1.6.9.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/ldns/ldns-1.6.9.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/ldns/ldns-1.6.9.ebuild?rev=1.1&content-type=text/plain

Index: ldns-1.6.9.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/ldns/ldns-1.6.9.ebuild,v 1.1 2011/03/26 03:02:34 matsuu Exp $

EAPI="3"
PYTHON_DEPEND="python? 2:2.4"

inherit python

DESCRIPTION="ldns is a library with the aim to simplify DNS programing in C"
HOMEPAGE="http://www.nlnetlabs.nl/projects/ldns/"
SRC_URI="http://www.nlnetlabs.nl/downloads/${PN}/${P}.tar.gz"

LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~ppc-macos ~x64-macos"
IUSE="doc gost python ssl static-libs vim-syntax"

RESTRICT="test" # 1.6.9 has no test directory

RDEPEND="ssl? ( >=dev-libs/openssl-0.9.7 )
	gost? ( >=dev-libs/openssl-1 )"
DEPEND="${RDEPEND}
	python? ( dev-lang/swig )
	doc? ( app-doc/doxygen )"

pkg_setup() {
	python_set_active_version 2
}

src_configure() {
	econf \
		$(use_enable gost) \
		$(use_enable ssl sha2) \
		$(use_enable static-libs static) \
		$(use_with ssl) \
		$(use_with python pyldns) \
		--disable-rpath || die "econf failed"
}

src_compile() {
	emake || die "emake failed"
	if use doc ; then
		emake doxygen || die "emake doxygen failed"
	fi
}

src_install() {
	emake DESTDIR="${D}" install || die "emake install failed"
	dodoc Changelog README* || die "dodoc failed"

	if use python ; then
		find "${ED}$(python_get_sitedir)" "(" -name "*.a" -o -name "*.la" ")" -type f -delete || die
	fi

	if use doc ; then
		dohtml doc/html/* || die "dohtml failed"
	fi

	if use vim-syntax ; then
		insinto /usr/share/vim/vimfiles/ftdetect
		doins libdns.vim || die "doins libdns.vim failed"
	fi
}






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

* [gentoo-commits] gentoo-x86 commit in net-libs/ldns: ldns-1.6.9.ebuild ChangeLog
@ 2011-05-07 17:03 Thomas Kahle (tomka)
  0 siblings, 0 replies; 3+ messages in thread
From: Thomas Kahle (tomka) @ 2011-05-07 17:03 UTC (permalink / raw
  To: gentoo-commits

tomka       11/05/07 17:03:46

  Modified:             ldns-1.6.9.ebuild ChangeLog
  Log:
  x86 stable per bug 362015
  
  (Portage version: 2.1.9.46/cvs/Linux i686)

Revision  Changes    Path
1.2                  net-libs/ldns/ldns-1.6.9.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/ldns/ldns-1.6.9.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/ldns/ldns-1.6.9.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/ldns/ldns-1.6.9.ebuild?r1=1.1&r2=1.2

Index: ldns-1.6.9.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/ldns/ldns-1.6.9.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ldns-1.6.9.ebuild	26 Mar 2011 03:02:34 -0000	1.1
+++ ldns-1.6.9.ebuild	7 May 2011 17:03:46 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/ldns/ldns-1.6.9.ebuild,v 1.1 2011/03/26 03:02:34 matsuu Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/ldns/ldns-1.6.9.ebuild,v 1.2 2011/05/07 17:03:46 tomka Exp $
 
 EAPI="3"
 PYTHON_DEPEND="python? 2:2.4"
@@ -13,7 +13,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~x86 ~ppc-macos ~x64-macos"
+KEYWORDS="~amd64 x86 ~ppc-macos ~x64-macos"
 IUSE="doc gost python ssl static-libs vim-syntax"
 
 RESTRICT="test" # 1.6.9 has no test directory



1.16                 net-libs/ldns/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/ldns/ChangeLog?rev=1.16&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/ldns/ChangeLog?rev=1.16&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/ldns/ChangeLog?r1=1.15&r2=1.16

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/ldns/ChangeLog,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- ChangeLog	26 Mar 2011 03:02:34 -0000	1.15
+++ ChangeLog	7 May 2011 17:03:46 -0000	1.16
@@ -1,6 +1,9 @@
 # ChangeLog for net-libs/ldns
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/ldns/ChangeLog,v 1.15 2011/03/26 03:02:34 matsuu Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/ldns/ChangeLog,v 1.16 2011/05/07 17:03:46 tomka Exp $
+
+  07 May 2011; Thomas Kahle <tomka@gentoo.org> ldns-1.6.9.ebuild:
+  x86 stable per bug 362015
 
 *ldns-1.6.9 (26 Mar 2011)
 






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

* [gentoo-commits] gentoo-x86 commit in net-libs/ldns: ldns-1.6.9.ebuild ChangeLog
@ 2011-05-11 19:36 Christoph Mende (angelos)
  0 siblings, 0 replies; 3+ messages in thread
From: Christoph Mende (angelos) @ 2011-05-11 19:36 UTC (permalink / raw
  To: gentoo-commits

angelos     11/05/11 19:36:54

  Modified:             ldns-1.6.9.ebuild ChangeLog
  Log:
  Stable on amd64 wrt bug #362015
  
  (Portage version: 2.2.0_alpha32/cvs/Linux x86_64)

Revision  Changes    Path
1.3                  net-libs/ldns/ldns-1.6.9.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/ldns/ldns-1.6.9.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/ldns/ldns-1.6.9.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/ldns/ldns-1.6.9.ebuild?r1=1.2&r2=1.3

Index: ldns-1.6.9.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/ldns/ldns-1.6.9.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ldns-1.6.9.ebuild	7 May 2011 17:03:46 -0000	1.2
+++ ldns-1.6.9.ebuild	11 May 2011 19:36:54 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/ldns/ldns-1.6.9.ebuild,v 1.2 2011/05/07 17:03:46 tomka Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/ldns/ldns-1.6.9.ebuild,v 1.3 2011/05/11 19:36:54 angelos Exp $
 
 EAPI="3"
 PYTHON_DEPEND="python? 2:2.4"
@@ -13,7 +13,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 x86 ~ppc-macos ~x64-macos"
+KEYWORDS="amd64 x86 ~ppc-macos ~x64-macos"
 IUSE="doc gost python ssl static-libs vim-syntax"
 
 RESTRICT="test" # 1.6.9 has no test directory



1.17                 net-libs/ldns/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/ldns/ChangeLog?rev=1.17&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/ldns/ChangeLog?rev=1.17&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/ldns/ChangeLog?r1=1.16&r2=1.17

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/ldns/ChangeLog,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- ChangeLog	7 May 2011 17:03:46 -0000	1.16
+++ ChangeLog	11 May 2011 19:36:54 -0000	1.17
@@ -1,6 +1,9 @@
 # ChangeLog for net-libs/ldns
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/ldns/ChangeLog,v 1.16 2011/05/07 17:03:46 tomka Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/ldns/ChangeLog,v 1.17 2011/05/11 19:36:54 angelos Exp $
+
+  11 May 2011; Christoph Mende <angelos@gentoo.org> ldns-1.6.9.ebuild:
+  Stable on amd64 wrt bug #362015
 
   07 May 2011; Thomas Kahle <tomka@gentoo.org> ldns-1.6.9.ebuild:
   x86 stable per bug 362015






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

end of thread, other threads:[~2011-05-11 19:37 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-05-07 17:03 [gentoo-commits] gentoo-x86 commit in net-libs/ldns: ldns-1.6.9.ebuild ChangeLog Thomas Kahle (tomka)
  -- strict thread matches above, loose matches on Subject: below --
2011-05-11 19:36 Christoph Mende (angelos)
2011-03-26  3:02 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