public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-libs/libnl: ChangeLog libnl-3.2.10.ebuild
@ 2012-06-06 20:50 Jeroen Roovers (jer)
  0 siblings, 0 replies; 3+ messages in thread
From: Jeroen Roovers (jer) @ 2012-06-06 20:50 UTC (permalink / raw
  To: gentoo-commits

jer         12/06/06 20:50:36

  Modified:             ChangeLog
  Added:                libnl-3.2.10.ebuild
  Log:
  Version bump. Bring back ~ppc64 keywording now that app-text/xmlstarlet is no longer needed.
  
  (Portage version: 2.2.0_alpha110/cvs/Linux x86_64)

Revision  Changes    Path
1.83                 dev-libs/libnl/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libnl/ChangeLog?rev=1.83&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libnl/ChangeLog?rev=1.83&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libnl/ChangeLog?r1=1.82&r2=1.83

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libnl/ChangeLog,v
retrieving revision 1.82
retrieving revision 1.83
diff -u -r1.82 -r1.83
--- ChangeLog	31 May 2012 16:27:08 -0000	1.82
+++ ChangeLog	6 Jun 2012 20:50:36 -0000	1.83
@@ -1,6 +1,12 @@
 # ChangeLog for dev-libs/libnl
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libnl/ChangeLog,v 1.82 2012/05/31 16:27:08 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libnl/ChangeLog,v 1.83 2012/06/06 20:50:36 jer Exp $
+
+*libnl-3.2.10 (06 Jun 2012)
+
+  06 Jun 2012; Jeroen Roovers <jer@gentoo.org> +libnl-3.2.10.ebuild:
+  Version bump. Bring back ~ppc64 keywording now that app-text/xmlstarlet is no
+  longer needed.
 
   31 May 2012; Anthony G. Basile <blueness@gentoo.org> libnl-1.1-r3.ebuild:
   Keyword ~mips



1.1                  dev-libs/libnl/libnl-3.2.10.ebuild

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

Index: libnl-3.2.10.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libnl/libnl-3.2.10.ebuild,v 1.1 2012/06/06 20:50:36 jer Exp $

EAPI=4
inherit eutils multilib

DESCRIPTION="A library for applications dealing with netlink socket"
HOMEPAGE="http://www.infradead.org/~tgr/libnl/"
SRC_URI="http://www.infradead.org/~tgr/libnl/files/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="3"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~ia64-linux ~x86-linux"
IUSE="doc static-libs utils"

DEPEND="
	sys-devel/flex
	virtual/yacc
	doc? (
		<app-doc/doxygen-1.8.0[latex]
	)
"

src_prepare() {
	epatch "${FILESDIR}"/${PN}-1.1-vlan-header.patch
}

src_configure() {
	econf $(use_enable static-libs static) $(use_enable utils cli)
}

src_compile() {
	default
	use doc && emake -C doc api_ref
}

src_install() {
	default
	if use doc; then
		dohtml doc/api/*
	fi

	if ! use static-libs; then
		rm -f "${D}"/usr/lib*/lib*.la
	fi

	dodoc ChangeLog
}






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

* [gentoo-commits] gentoo-x86 commit in dev-libs/libnl: ChangeLog libnl-3.2.10.ebuild
@ 2012-06-06 21:03 Jeroen Roovers (jer)
  0 siblings, 0 replies; 3+ messages in thread
From: Jeroen Roovers (jer) @ 2012-06-06 21:03 UTC (permalink / raw
  To: gentoo-commits

jer         12/06/06 21:03:57

  Modified:             ChangeLog libnl-3.2.10.ebuild
  Log:
  Add more documentation build dependencies (bug #419987).
  
  (Portage version: 2.2.0_alpha110/cvs/Linux x86_64)

Revision  Changes    Path
1.84                 dev-libs/libnl/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libnl/ChangeLog?rev=1.84&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libnl/ChangeLog?rev=1.84&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libnl/ChangeLog?r1=1.83&r2=1.84

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libnl/ChangeLog,v
retrieving revision 1.83
retrieving revision 1.84
diff -u -r1.83 -r1.84
--- ChangeLog	6 Jun 2012 20:50:36 -0000	1.83
+++ ChangeLog	6 Jun 2012 21:03:57 -0000	1.84
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/libnl
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libnl/ChangeLog,v 1.83 2012/06/06 20:50:36 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libnl/ChangeLog,v 1.84 2012/06/06 21:03:57 jer Exp $
+
+  06 Jun 2012; Jeroen Roovers <jer@gentoo.org> libnl-3.2.10.ebuild:
+  Add more documentation build dependencies (bug #419987).
 
 *libnl-3.2.10 (06 Jun 2012)
 



1.2                  dev-libs/libnl/libnl-3.2.10.ebuild

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

Index: libnl-3.2.10.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libnl/libnl-3.2.10.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- libnl-3.2.10.ebuild	6 Jun 2012 20:50:36 -0000	1.1
+++ libnl-3.2.10.ebuild	6 Jun 2012 21:03:57 -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/libnl/libnl-3.2.10.ebuild,v 1.1 2012/06/06 20:50:36 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libnl/libnl-3.2.10.ebuild,v 1.2 2012/06/06 21:03:57 jer Exp $
 
 EAPI=4
 inherit eutils multilib
@@ -10,14 +10,16 @@
 SRC_URI="http://www.infradead.org/~tgr/libnl/files/${P}.tar.gz"
 LICENSE="LGPL-2.1"
 SLOT="3"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~ia64-linux ~x86-linux"
+KEYWORDS="~amd64 ~s390 ~sh ~x86 ~amd64-linux ~ia64-linux ~x86-linux"
 IUSE="doc static-libs utils"
 
 DEPEND="
 	sys-devel/flex
 	virtual/yacc
 	doc? (
+		app-text/asciidoc
 		<app-doc/doxygen-1.8.0[latex]
+		media-gfx/mscgen
 	)
 "
 






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

* [gentoo-commits] gentoo-x86 commit in dev-libs/libnl: ChangeLog libnl-3.2.10.ebuild
@ 2012-06-10 15:56 Jeroen Roovers (jer)
  0 siblings, 0 replies; 3+ messages in thread
From: Jeroen Roovers (jer) @ 2012-06-10 15:56 UTC (permalink / raw
  To: gentoo-commits

jer         12/06/10 15:56:23

  Modified:             ChangeLog libnl-3.2.10.ebuild
  Log:
  Update app-doc/doxygen dependency by Torsten Kaiser (bug #420467).
  
  (Portage version: 2.2.0_alpha110/cvs/Linux x86_64)

Revision  Changes    Path
1.85                 dev-libs/libnl/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libnl/ChangeLog?rev=1.85&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libnl/ChangeLog?rev=1.85&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libnl/ChangeLog?r1=1.84&r2=1.85

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libnl/ChangeLog,v
retrieving revision 1.84
retrieving revision 1.85
diff -u -r1.84 -r1.85
--- ChangeLog	6 Jun 2012 21:03:57 -0000	1.84
+++ ChangeLog	10 Jun 2012 15:56:23 -0000	1.85
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/libnl
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libnl/ChangeLog,v 1.84 2012/06/06 21:03:57 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libnl/ChangeLog,v 1.85 2012/06/10 15:56:23 jer Exp $
+
+  10 Jun 2012; Jeroen Roovers <jer@gentoo.org> libnl-3.2.10.ebuild:
+  Update app-doc/doxygen dependency by Torsten Kaiser (bug #420467).
 
   06 Jun 2012; Jeroen Roovers <jer@gentoo.org> libnl-3.2.10.ebuild:
   Add more documentation build dependencies (bug #419987).



1.3                  dev-libs/libnl/libnl-3.2.10.ebuild

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

Index: libnl-3.2.10.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libnl/libnl-3.2.10.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- libnl-3.2.10.ebuild	6 Jun 2012 21:03:57 -0000	1.2
+++ libnl-3.2.10.ebuild	10 Jun 2012 15:56:23 -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/libnl/libnl-3.2.10.ebuild,v 1.2 2012/06/06 21:03:57 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libnl/libnl-3.2.10.ebuild,v 1.3 2012/06/10 15:56:23 jer Exp $
 
 EAPI=4
 inherit eutils multilib
@@ -18,7 +18,7 @@
 	virtual/yacc
 	doc? (
 		app-text/asciidoc
-		<app-doc/doxygen-1.8.0[latex]
+		app-doc/doxygen[latex]
 		media-gfx/mscgen
 	)
 "






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

end of thread, other threads:[~2012-06-10 15:56 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-06-06 21:03 [gentoo-commits] gentoo-x86 commit in dev-libs/libnl: ChangeLog libnl-3.2.10.ebuild Jeroen Roovers (jer)
  -- strict thread matches above, loose matches on Subject: below --
2012-06-10 15:56 Jeroen Roovers (jer)
2012-06-06 20:50 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