* [gentoo-commits] gentoo-x86 commit in dev-libs/libdnet: ChangeLog libdnet-1.11-r2.ebuild
@ 2012-02-14 22:08 Jeroen Roovers (jer)
0 siblings, 0 replies; 10+ messages in thread
From: Jeroen Roovers (jer) @ 2012-02-14 22:08 UTC (permalink / raw
To: gentoo-commits
jer 12/02/14 22:08:18
Modified: ChangeLog
Added: libdnet-1.11-r2.ebuild
Log:
Clean up patch. Add IUSE=static-libs. Possibly improve python related code by Ian Delaney (bugs #253267, #326389, #363601).
(Portage version: 2.2.0_alpha86/cvs/Linux x86_64)
Revision Changes Path
1.47 dev-libs/libdnet/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libdnet/ChangeLog?rev=1.47&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libdnet/ChangeLog?rev=1.47&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libdnet/ChangeLog?r1=1.46&r2=1.47
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libdnet/ChangeLog,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -r1.46 -r1.47
--- ChangeLog 19 Jul 2010 21:35:59 -0000 1.46
+++ ChangeLog 14 Feb 2012 22:08:17 -0000 1.47
@@ -1,6 +1,13 @@
# ChangeLog for dev-libs/libdnet
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libdnet/ChangeLog,v 1.46 2010/07/19 21:35:59 maekke Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libdnet/ChangeLog,v 1.47 2012/02/14 22:08:17 jer Exp $
+
+*libdnet-1.11-r2 (14 Feb 2012)
+
+ 14 Feb 2012; Jeroen Roovers <jer@gentoo.org> files/libdnet-1.10-gcc4.diff,
+ +libdnet-1.11-r2.ebuild:
+ Clean up patch. Add IUSE=static-libs. Possibly improve python related code by
+ Ian Delaney (bugs #253267, #326389, #363601).
19 Jul 2010; Markus Meier <maekke@gentoo.org> libdnet-1.11-r1.ebuild:
add ~arm, bug #301080
1.1 dev-libs/libdnet/libdnet-1.11-r2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libdnet/libdnet-1.11-r2.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libdnet/libdnet-1.11-r2.ebuild?rev=1.1&content-type=text/plain
Index: libdnet-1.11-r2.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libdnet/libdnet-1.11-r2.ebuild,v 1.1 2012/02/14 22:08:17 jer Exp $
EAPI=4
PYTHON_DEPEND="python? 2"
inherit autotools eutils python
DESCRIPTION="simplified, portable interface to several low-level networking routines"
HOMEPAGE="http://libdnet.sourceforge.net/"
SRC_URI="mirror://sourceforge/libdnet/${P}.tar.gz"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="python static-libs"
RESTRICT="test"
DOCS=( README THANKS TODO )
pkg_setup() {
python_set_active_version 2
}
src_prepare() {
sed -i 's/suite_free(s);//' test/check/*.c || die "sed failed"
epatch "${FILESDIR}"/${PN}-1.10-gcc4.diff
AT_M4DIR="config"
eautoreconf
}
src_configure() {
econf $(use_with python) $(use_enable static-libs static)
}
src_install() {
default
if ! use static-libs; then
rm -f "${D}"/usr/lib*/*.la || die
fi
}
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-libs/libdnet: ChangeLog libdnet-1.11-r2.ebuild
@ 2012-02-15 13:21 Jeroen Roovers (jer)
0 siblings, 0 replies; 10+ messages in thread
From: Jeroen Roovers (jer) @ 2012-02-15 13:21 UTC (permalink / raw
To: gentoo-commits
jer 12/02/15 13:21:20
Modified: ChangeLog libdnet-1.11-r2.ebuild
Log:
Tweak python stuff by Arfrever.
(Portage version: 2.2.0_alpha86/cvs/Linux x86_64)
Revision Changes Path
1.48 dev-libs/libdnet/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libdnet/ChangeLog?rev=1.48&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libdnet/ChangeLog?rev=1.48&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libdnet/ChangeLog?r1=1.47&r2=1.48
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libdnet/ChangeLog,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
--- ChangeLog 14 Feb 2012 22:08:17 -0000 1.47
+++ ChangeLog 15 Feb 2012 13:21:20 -0000 1.48
@@ -1,6 +1,9 @@
# ChangeLog for dev-libs/libdnet
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libdnet/ChangeLog,v 1.47 2012/02/14 22:08:17 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libdnet/ChangeLog,v 1.48 2012/02/15 13:21:20 jer Exp $
+
+ 15 Feb 2012; Jeroen Roovers <jer@gentoo.org> libdnet-1.11-r2.ebuild:
+ Tweak python stuff by Arfrever.
*libdnet-1.11-r2 (14 Feb 2012)
1.2 dev-libs/libdnet/libdnet-1.11-r2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libdnet/libdnet-1.11-r2.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libdnet/libdnet-1.11-r2.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libdnet/libdnet-1.11-r2.ebuild?r1=1.1&r2=1.2
Index: libdnet-1.11-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libdnet/libdnet-1.11-r2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- libdnet-1.11-r2.ebuild 14 Feb 2012 22:08:17 -0000 1.1
+++ libdnet-1.11-r2.ebuild 15 Feb 2012 13:21:20 -0000 1.2
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libdnet/libdnet-1.11-r2.ebuild,v 1.1 2012/02/14 22:08:17 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libdnet/libdnet-1.11-r2.ebuild,v 1.2 2012/02/15 13:21:20 jer Exp $
EAPI=4
PYTHON_DEPEND="python? 2"
@@ -20,6 +20,7 @@
pkg_setup() {
python_set_active_version 2
+ python_pkg_setup
}
src_prepare() {
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-libs/libdnet: ChangeLog libdnet-1.11-r2.ebuild
@ 2012-02-16 15:05 Jeroen Roovers (jer)
0 siblings, 0 replies; 10+ messages in thread
From: Jeroen Roovers (jer) @ 2012-02-16 15:05 UTC (permalink / raw
To: gentoo-commits
jer 12/02/16 15:05:39
Modified: ChangeLog libdnet-1.11-r2.ebuild
Log:
More python.eclass tweaking by Arfrever (bug #326389).
(Portage version: 2.2.0_alpha86/cvs/Linux x86_64)
Revision Changes Path
1.49 dev-libs/libdnet/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libdnet/ChangeLog?rev=1.49&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libdnet/ChangeLog?rev=1.49&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libdnet/ChangeLog?r1=1.48&r2=1.49
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libdnet/ChangeLog,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -r1.48 -r1.49
--- ChangeLog 15 Feb 2012 13:21:20 -0000 1.48
+++ ChangeLog 16 Feb 2012 15:05:39 -0000 1.49
@@ -1,6 +1,9 @@
# ChangeLog for dev-libs/libdnet
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libdnet/ChangeLog,v 1.48 2012/02/15 13:21:20 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libdnet/ChangeLog,v 1.49 2012/02/16 15:05:39 jer Exp $
+
+ 16 Feb 2012; Jeroen Roovers <jer@gentoo.org> libdnet-1.11-r2.ebuild:
+ More python.eclass tweaking by Arfrever (bug #326389).
15 Feb 2012; Jeroen Roovers <jer@gentoo.org> libdnet-1.11-r2.ebuild:
Tweak python stuff by Arfrever.
1.3 dev-libs/libdnet/libdnet-1.11-r2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libdnet/libdnet-1.11-r2.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libdnet/libdnet-1.11-r2.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libdnet/libdnet-1.11-r2.ebuild?r1=1.2&r2=1.3
Index: libdnet-1.11-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libdnet/libdnet-1.11-r2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- libdnet-1.11-r2.ebuild 15 Feb 2012 13:21:20 -0000 1.2
+++ libdnet-1.11-r2.ebuild 16 Feb 2012 15:05:39 -0000 1.3
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libdnet/libdnet-1.11-r2.ebuild,v 1.2 2012/02/15 13:21:20 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libdnet/libdnet-1.11-r2.ebuild,v 1.3 2012/02/16 15:05:39 jer Exp $
EAPI=4
PYTHON_DEPEND="python? 2"
@@ -19,8 +19,10 @@
DOCS=( README THANKS TODO )
pkg_setup() {
- python_set_active_version 2
- python_pkg_setup
+ if use python; then
+ python_set_active_version 2
+ python_pkg_setup
+ fi
}
src_prepare() {
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-libs/libdnet: ChangeLog libdnet-1.11-r2.ebuild
@ 2012-06-04 10:32 Agostino Sarubbo (ago)
0 siblings, 0 replies; 10+ messages in thread
From: Agostino Sarubbo (ago) @ 2012-06-04 10:32 UTC (permalink / raw
To: gentoo-commits
ago 12/06/04 10:32:15
Modified: ChangeLog libdnet-1.11-r2.ebuild
Log:
Stable for amd64, wrt bug #418751
(Portage version: 2.1.10.49/cvs/Linux x86_64)
Revision Changes Path
1.51 dev-libs/libdnet/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libdnet/ChangeLog?rev=1.51&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libdnet/ChangeLog?rev=1.51&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libdnet/ChangeLog?r1=1.50&r2=1.51
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libdnet/ChangeLog,v
retrieving revision 1.50
retrieving revision 1.51
diff -u -r1.50 -r1.51
--- ChangeLog 2 Apr 2012 09:33:07 -0000 1.50
+++ ChangeLog 4 Jun 2012 10:32:13 -0000 1.51
@@ -1,6 +1,9 @@
# ChangeLog for dev-libs/libdnet
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libdnet/ChangeLog,v 1.50 2012/04/02 09:33:07 naota Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libdnet/ChangeLog,v 1.51 2012/06/04 10:32:13 ago Exp $
+
+ 04 Jun 2012; Agostino Sarubbo <ago@gentoo.org> libdnet-1.11-r2.ebuild:
+ Stable for amd64, wrt bug #418751
02 Apr 2012; Naohiro Aota <naota@gentoo.org> libdnet-1.11-r2.ebuild:
Add ~x86-fbsd
1.5 dev-libs/libdnet/libdnet-1.11-r2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libdnet/libdnet-1.11-r2.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libdnet/libdnet-1.11-r2.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libdnet/libdnet-1.11-r2.ebuild?r1=1.4&r2=1.5
Index: libdnet-1.11-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libdnet/libdnet-1.11-r2.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- libdnet-1.11-r2.ebuild 2 Apr 2012 09:33:07 -0000 1.4
+++ libdnet-1.11-r2.ebuild 4 Jun 2012 10:32:13 -0000 1.5
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libdnet/libdnet-1.11-r2.ebuild,v 1.4 2012/04/02 09:33:07 naota Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libdnet/libdnet-1.11-r2.ebuild,v 1.5 2012/06/04 10:32:13 ago Exp $
EAPI=4
PYTHON_DEPEND="python? 2"
@@ -12,7 +12,7 @@
LICENSE="LGPL-2"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE="python static-libs"
RESTRICT="test"
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-libs/libdnet: ChangeLog libdnet-1.11-r2.ebuild
@ 2012-06-05 21:10 Brent Baude (ranger)
0 siblings, 0 replies; 10+ messages in thread
From: Brent Baude (ranger) @ 2012-06-05 21:10 UTC (permalink / raw
To: gentoo-commits
ranger 12/06/05 21:10:01
Modified: ChangeLog libdnet-1.11-r2.ebuild
Log:
Marking libdnet-1.11-r2 ppc64 for bug 418751
(Portage version: 2.1.10.49/cvs/Linux ppc64)
Revision Changes Path
1.52 dev-libs/libdnet/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libdnet/ChangeLog?rev=1.52&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libdnet/ChangeLog?rev=1.52&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libdnet/ChangeLog?r1=1.51&r2=1.52
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libdnet/ChangeLog,v
retrieving revision 1.51
retrieving revision 1.52
diff -u -r1.51 -r1.52
--- ChangeLog 4 Jun 2012 10:32:13 -0000 1.51
+++ ChangeLog 5 Jun 2012 21:10:00 -0000 1.52
@@ -1,6 +1,9 @@
# ChangeLog for dev-libs/libdnet
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libdnet/ChangeLog,v 1.51 2012/06/04 10:32:13 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libdnet/ChangeLog,v 1.52 2012/06/05 21:10:00 ranger Exp $
+
+ 05 Jun 2012; Brent Baude <ranger@gentoo.org> libdnet-1.11-r2.ebuild:
+ Marking libdnet-1.11-r2 ppc64 for bug 418751
04 Jun 2012; Agostino Sarubbo <ago@gentoo.org> libdnet-1.11-r2.ebuild:
Stable for amd64, wrt bug #418751
1.6 dev-libs/libdnet/libdnet-1.11-r2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libdnet/libdnet-1.11-r2.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libdnet/libdnet-1.11-r2.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libdnet/libdnet-1.11-r2.ebuild?r1=1.5&r2=1.6
Index: libdnet-1.11-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libdnet/libdnet-1.11-r2.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- libdnet-1.11-r2.ebuild 4 Jun 2012 10:32:13 -0000 1.5
+++ libdnet-1.11-r2.ebuild 5 Jun 2012 21:10:00 -0000 1.6
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libdnet/libdnet-1.11-r2.ebuild,v 1.5 2012/06/04 10:32:13 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libdnet/libdnet-1.11-r2.ebuild,v 1.6 2012/06/05 21:10:00 ranger Exp $
EAPI=4
PYTHON_DEPEND="python? 2"
@@ -12,7 +12,7 @@
LICENSE="LGPL-2"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE="python static-libs"
RESTRICT="test"
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-libs/libdnet: ChangeLog libdnet-1.11-r2.ebuild
@ 2012-06-06 7:06 Jeff Horelick (jdhore)
0 siblings, 0 replies; 10+ messages in thread
From: Jeff Horelick (jdhore) @ 2012-06-06 7:06 UTC (permalink / raw
To: gentoo-commits
jdhore 12/06/06 07:06:00
Modified: ChangeLog libdnet-1.11-r2.ebuild
Log:
marked x86 per bug 418751
(Portage version: 2.2.0_alpha110/cvs/Linux i686)
Revision Changes Path
1.53 dev-libs/libdnet/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libdnet/ChangeLog?rev=1.53&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libdnet/ChangeLog?rev=1.53&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libdnet/ChangeLog?r1=1.52&r2=1.53
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libdnet/ChangeLog,v
retrieving revision 1.52
retrieving revision 1.53
diff -u -r1.52 -r1.53
--- ChangeLog 5 Jun 2012 21:10:00 -0000 1.52
+++ ChangeLog 6 Jun 2012 07:06:00 -0000 1.53
@@ -1,6 +1,9 @@
# ChangeLog for dev-libs/libdnet
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libdnet/ChangeLog,v 1.52 2012/06/05 21:10:00 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libdnet/ChangeLog,v 1.53 2012/06/06 07:06:00 jdhore Exp $
+
+ 06 Jun 2012; Jeff Horelick <jdhore@gentoo.org> libdnet-1.11-r2.ebuild:
+ marked x86 per bug 418751
05 Jun 2012; Brent Baude <ranger@gentoo.org> libdnet-1.11-r2.ebuild:
Marking libdnet-1.11-r2 ppc64 for bug 418751
1.7 dev-libs/libdnet/libdnet-1.11-r2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libdnet/libdnet-1.11-r2.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libdnet/libdnet-1.11-r2.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libdnet/libdnet-1.11-r2.ebuild?r1=1.6&r2=1.7
Index: libdnet-1.11-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libdnet/libdnet-1.11-r2.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- libdnet-1.11-r2.ebuild 5 Jun 2012 21:10:00 -0000 1.6
+++ libdnet-1.11-r2.ebuild 6 Jun 2012 07:06:00 -0000 1.7
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libdnet/libdnet-1.11-r2.ebuild,v 1.6 2012/06/05 21:10:00 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libdnet/libdnet-1.11-r2.ebuild,v 1.7 2012/06/06 07:06:00 jdhore Exp $
EAPI=4
PYTHON_DEPEND="python? 2"
@@ -12,7 +12,7 @@
LICENSE="LGPL-2"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ppc64 ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ppc64 ~sparc x86 ~x86-fbsd"
IUSE="python static-libs"
RESTRICT="test"
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-libs/libdnet: ChangeLog libdnet-1.11-r2.ebuild
@ 2012-06-07 21:53 Brent Baude (ranger)
0 siblings, 0 replies; 10+ messages in thread
From: Brent Baude (ranger) @ 2012-06-07 21:53 UTC (permalink / raw
To: gentoo-commits
ranger 12/06/07 21:53:48
Modified: ChangeLog libdnet-1.11-r2.ebuild
Log:
Marking libdnet-1.11-r2 ppc for bug 418751
(Portage version: 2.1.10.49/cvs/Linux ppc64)
Revision Changes Path
1.54 dev-libs/libdnet/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libdnet/ChangeLog?rev=1.54&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libdnet/ChangeLog?rev=1.54&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libdnet/ChangeLog?r1=1.53&r2=1.54
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libdnet/ChangeLog,v
retrieving revision 1.53
retrieving revision 1.54
diff -u -r1.53 -r1.54
--- ChangeLog 6 Jun 2012 07:06:00 -0000 1.53
+++ ChangeLog 7 Jun 2012 21:53:48 -0000 1.54
@@ -1,6 +1,9 @@
# ChangeLog for dev-libs/libdnet
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libdnet/ChangeLog,v 1.53 2012/06/06 07:06:00 jdhore Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libdnet/ChangeLog,v 1.54 2012/06/07 21:53:48 ranger Exp $
+
+ 07 Jun 2012; Brent Baude <ranger@gentoo.org> libdnet-1.11-r2.ebuild:
+ Marking libdnet-1.11-r2 ppc for bug 418751
06 Jun 2012; Jeff Horelick <jdhore@gentoo.org> libdnet-1.11-r2.ebuild:
marked x86 per bug 418751
1.8 dev-libs/libdnet/libdnet-1.11-r2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libdnet/libdnet-1.11-r2.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libdnet/libdnet-1.11-r2.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libdnet/libdnet-1.11-r2.ebuild?r1=1.7&r2=1.8
Index: libdnet-1.11-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libdnet/libdnet-1.11-r2.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- libdnet-1.11-r2.ebuild 6 Jun 2012 07:06:00 -0000 1.7
+++ libdnet-1.11-r2.ebuild 7 Jun 2012 21:53:48 -0000 1.8
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libdnet/libdnet-1.11-r2.ebuild,v 1.7 2012/06/06 07:06:00 jdhore Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libdnet/libdnet-1.11-r2.ebuild,v 1.8 2012/06/07 21:53:48 ranger Exp $
EAPI=4
PYTHON_DEPEND="python? 2"
@@ -12,7 +12,7 @@
LICENSE="LGPL-2"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ppc64 ~sparc x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ppc ppc64 ~sparc x86 ~x86-fbsd"
IUSE="python static-libs"
RESTRICT="test"
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-libs/libdnet: ChangeLog libdnet-1.11-r2.ebuild
@ 2012-06-21 14:49 Jeroen Roovers (jer)
0 siblings, 0 replies; 10+ messages in thread
From: Jeroen Roovers (jer) @ 2012-06-21 14:49 UTC (permalink / raw
To: gentoo-commits
jer 12/06/21 14:49:25
Modified: ChangeLog libdnet-1.11-r2.ebuild
Log:
Stable for HPPA (bug #418751).
(Portage version: 2.2.0_alpha110/cvs/Linux x86_64)
Revision Changes Path
1.55 dev-libs/libdnet/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libdnet/ChangeLog?rev=1.55&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libdnet/ChangeLog?rev=1.55&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libdnet/ChangeLog?r1=1.54&r2=1.55
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libdnet/ChangeLog,v
retrieving revision 1.54
retrieving revision 1.55
diff -u -r1.54 -r1.55
--- ChangeLog 7 Jun 2012 21:53:48 -0000 1.54
+++ ChangeLog 21 Jun 2012 14:49:25 -0000 1.55
@@ -1,6 +1,9 @@
# ChangeLog for dev-libs/libdnet
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libdnet/ChangeLog,v 1.54 2012/06/07 21:53:48 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libdnet/ChangeLog,v 1.55 2012/06/21 14:49:25 jer Exp $
+
+ 21 Jun 2012; Jeroen Roovers <jer@gentoo.org> libdnet-1.11-r2.ebuild:
+ Stable for HPPA (bug #418751).
07 Jun 2012; Brent Baude <ranger@gentoo.org> libdnet-1.11-r2.ebuild:
Marking libdnet-1.11-r2 ppc for bug 418751
1.9 dev-libs/libdnet/libdnet-1.11-r2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libdnet/libdnet-1.11-r2.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libdnet/libdnet-1.11-r2.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libdnet/libdnet-1.11-r2.ebuild?r1=1.8&r2=1.9
Index: libdnet-1.11-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libdnet/libdnet-1.11-r2.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- libdnet-1.11-r2.ebuild 7 Jun 2012 21:53:48 -0000 1.8
+++ libdnet-1.11-r2.ebuild 21 Jun 2012 14:49:25 -0000 1.9
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libdnet/libdnet-1.11-r2.ebuild,v 1.8 2012/06/07 21:53:48 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libdnet/libdnet-1.11-r2.ebuild,v 1.9 2012/06/21 14:49:25 jer Exp $
EAPI=4
PYTHON_DEPEND="python? 2"
@@ -12,7 +12,7 @@
LICENSE="LGPL-2"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ppc ppc64 ~sparc x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ppc ppc64 ~sparc x86 ~x86-fbsd"
IUSE="python static-libs"
RESTRICT="test"
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-libs/libdnet: ChangeLog libdnet-1.11-r2.ebuild
@ 2012-07-08 17:29 Raul Porcel (armin76)
0 siblings, 0 replies; 10+ messages in thread
From: Raul Porcel (armin76) @ 2012-07-08 17:29 UTC (permalink / raw
To: gentoo-commits
armin76 12/07/08 17:29:47
Modified: ChangeLog libdnet-1.11-r2.ebuild
Log:
alpha/ia64/sparc stable wrt #418751
(Portage version: 2.1.11.5/cvs/Linux ia64)
Revision Changes Path
1.56 dev-libs/libdnet/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libdnet/ChangeLog?rev=1.56&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libdnet/ChangeLog?rev=1.56&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libdnet/ChangeLog?r1=1.55&r2=1.56
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libdnet/ChangeLog,v
retrieving revision 1.55
retrieving revision 1.56
diff -u -r1.55 -r1.56
--- ChangeLog 21 Jun 2012 14:49:25 -0000 1.55
+++ ChangeLog 8 Jul 2012 17:29:47 -0000 1.56
@@ -1,6 +1,9 @@
# ChangeLog for dev-libs/libdnet
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libdnet/ChangeLog,v 1.55 2012/06/21 14:49:25 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libdnet/ChangeLog,v 1.56 2012/07/08 17:29:47 armin76 Exp $
+
+ 08 Jul 2012; Raúl Porcel <armin76@gentoo.org> libdnet-1.11-r2.ebuild:
+ alpha/ia64/sparc stable wrt #418751
21 Jun 2012; Jeroen Roovers <jer@gentoo.org> libdnet-1.11-r2.ebuild:
Stable for HPPA (bug #418751).
1.10 dev-libs/libdnet/libdnet-1.11-r2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libdnet/libdnet-1.11-r2.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libdnet/libdnet-1.11-r2.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libdnet/libdnet-1.11-r2.ebuild?r1=1.9&r2=1.10
Index: libdnet-1.11-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libdnet/libdnet-1.11-r2.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- libdnet-1.11-r2.ebuild 21 Jun 2012 14:49:25 -0000 1.9
+++ libdnet-1.11-r2.ebuild 8 Jul 2012 17:29:47 -0000 1.10
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libdnet/libdnet-1.11-r2.ebuild,v 1.9 2012/06/21 14:49:25 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libdnet/libdnet-1.11-r2.ebuild,v 1.10 2012/07/08 17:29:47 armin76 Exp $
EAPI=4
PYTHON_DEPEND="python? 2"
@@ -12,7 +12,7 @@
LICENSE="LGPL-2"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ppc ppc64 ~sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 ~arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd"
IUSE="python static-libs"
RESTRICT="test"
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-libs/libdnet: ChangeLog libdnet-1.11-r2.ebuild
@ 2013-07-19 15:45 Jeroen Roovers (jer)
0 siblings, 0 replies; 10+ messages in thread
From: Jeroen Roovers (jer) @ 2013-07-19 15:45 UTC (permalink / raw
To: gentoo-commits
jer 13/07/19 15:45:14
Modified: ChangeLog
Removed: libdnet-1.11-r2.ebuild
Log:
Old.
(Portage version: 2.2.0_alpha188/cvs/Linux x86_64, signed Manifest commit with key A792A613)
Revision Changes Path
1.73 dev-libs/libdnet/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libdnet/ChangeLog?rev=1.73&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libdnet/ChangeLog?rev=1.73&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libdnet/ChangeLog?r1=1.72&r2=1.73
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libdnet/ChangeLog,v
retrieving revision 1.72
retrieving revision 1.73
diff -u -r1.72 -r1.73
--- ChangeLog 12 Jul 2013 00:20:30 -0000 1.72
+++ ChangeLog 19 Jul 2013 15:45:14 -0000 1.73
@@ -1,6 +1,10 @@
# ChangeLog for dev-libs/libdnet
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libdnet/ChangeLog,v 1.72 2013/07/12 00:20:30 pinkbyte Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libdnet/ChangeLog,v 1.73 2013/07/19 15:45:14 jer Exp $
+
+ 19 Jul 2013; Jeroen Roovers <jer@gentoo.org> -libdnet-1.11-r2.ebuild,
+ -files/libdnet-1.10-gcc4.diff:
+ Old.
12 Jul 2013; Sergey Popov <pinkbyte@gentoo.org> libdnet-1.12.ebuild:
Stable on arm, wrt bug #471420
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2013-07-19 15:45 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-06-05 21:10 [gentoo-commits] gentoo-x86 commit in dev-libs/libdnet: ChangeLog libdnet-1.11-r2.ebuild Brent Baude (ranger)
-- strict thread matches above, loose matches on Subject: below --
2013-07-19 15:45 Jeroen Roovers (jer)
2012-07-08 17:29 Raul Porcel (armin76)
2012-06-21 14:49 Jeroen Roovers (jer)
2012-06-07 21:53 Brent Baude (ranger)
2012-06-06 7:06 Jeff Horelick (jdhore)
2012-06-04 10:32 Agostino Sarubbo (ago)
2012-02-16 15:05 Jeroen Roovers (jer)
2012-02-15 13:21 Jeroen Roovers (jer)
2012-02-14 22:08 Jeroen Roovers (jer)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox