public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-libs/apr-util: apr-util-1.3.12.ebuild ChangeLog
@ 2011-09-09 14:40 Tomas Chvatal (scarabeus)
  0 siblings, 0 replies; 8+ messages in thread
From: Tomas Chvatal (scarabeus) @ 2011-09-09 14:40 UTC (permalink / raw
  To: gentoo-commits

scarabeus    11/09/09 14:40:50

  Modified:             apr-util-1.3.12.ebuild ChangeLog
  Log:
  Drop the sqlite2 useflag, keep only sqlite3 around.
  
  (Portage version: 2.2.0_alpha54/cvs/Linux x86_64)

Revision  Changes    Path
1.2                  dev-libs/apr-util/apr-util-1.3.12.ebuild

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

Index: apr-util-1.3.12.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/apr-util/apr-util-1.3.12.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- apr-util-1.3.12.ebuild	29 Jul 2011 20:43:44 -0000	1.1
+++ apr-util-1.3.12.ebuild	9 Sep 2011 14:40:50 -0000	1.2
@@ -1,12 +1,12 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/apr-util/apr-util-1.3.12.ebuild,v 1.1 2011/07/29 20:43:44 neurogeek Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/apr-util/apr-util-1.3.12.ebuild,v 1.2 2011/09/09 14:40:50 scarabeus Exp $
 
-EAPI="3"
+EAPI=4
 
 # Usually apr-util has the same PV as apr, but in case of security fixes, this may change.
 # APR_PV="${PV}"
-APR_PV="1.4.4"
+APR_PV="1.4.5"
 
 inherit autotools db-use eutils libtool multilib
 
@@ -17,7 +17,7 @@
 LICENSE="Apache-2.0"
 SLOT="1"
 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd"
-IUSE="berkdb doc freetds gdbm ldap mysql odbc postgres sqlite sqlite3"
+IUSE="berkdb doc freetds gdbm ldap mysql odbc postgres sqlite"
 RESTRICT="test"
 
 RDEPEND="dev-libs/expat
@@ -29,11 +29,12 @@
 	mysql? ( =virtual/mysql-5* )
 	odbc? ( dev-db/unixODBC )
 	postgres? ( dev-db/postgresql-base )
-	sqlite? ( dev-db/sqlite:0 )
-	sqlite3? ( dev-db/sqlite:3 )"
+	sqlite? ( dev-db/sqlite:3 )"
 DEPEND="${RDEPEND}
 	doc? ( app-doc/doxygen )"
 
+DOCS=( CHANGES NOTICE README )
+
 src_prepare() {
 	epatch "${FILESDIR}/${P}-bdb-5.2.patch"
 	eautoreconf
@@ -54,17 +55,18 @@
 		myconf+=" --without-berkeley-db"
 	fi
 
-	econf --datadir=/usr/share/apr-util-1 \
+	econf \
+		--datadir=/usr/share/apr-util-1 \
 		--with-apr=/usr \
 		--with-expat=/usr \
+		--without-sqlite2 \
 		$(use_with freetds) \
 		$(use_with gdbm) \
 		$(use_with ldap) \
 		$(use_with mysql) \
 		$(use_with odbc) \
 		$(use_with postgres pgsql) \
-		$(use_with sqlite sqlite2) \
-		$(use_with sqlite3) \
+		$(use_with sqlite sqlite3) \
 		${myconf}
 }
 
@@ -77,12 +79,12 @@
 }
 
 src_install() {
-	emake DESTDIR="${D}" install || die "emake install failed"
+	default
 
-	find "${ED}" -name "*.la" -print0 | xargs -0 rm -f
-	find "${ED}usr/$(get_libdir)/apr-util-${SLOT}" -name "*.a" -print0 | xargs -0 rm -f
+	# --disable-static does not work
+	find "${ED}" -name "*.a" -exec rm -f {} +
 
-	dodoc CHANGES NOTICE README
+	find "${ED}" -name '*.la' -exec rm -f {} +
 
 	if use doc; then
 		dohtml -r docs/dox/html/* || die "dohtml failed"
@@ -90,5 +92,5 @@
 
 	# This file is only used on AIX systems, which Gentoo is not,
 	# and causes collisions between the SLOTs, so remove it.
-	rm -f "${D}usr/$(get_libdir)/aprutil.exp"
+	rm -f "${ED}usr/$(get_libdir)/aprutil.exp"
 }



1.164                dev-libs/apr-util/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/apr-util/ChangeLog,v
retrieving revision 1.163
retrieving revision 1.164
diff -u -r1.163 -r1.164
--- ChangeLog	29 Jul 2011 20:43:44 -0000	1.163
+++ ChangeLog	9 Sep 2011 14:40:50 -0000	1.164
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/apr-util
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/apr-util/ChangeLog,v 1.163 2011/07/29 20:43:44 neurogeek Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/apr-util/ChangeLog,v 1.164 2011/09/09 14:40:50 scarabeus Exp $
+
+  09 Sep 2011; Tomáš Chvátal <scarabeus@gentoo.org> apr-util-1.3.12.ebuild:
+  Drop the sqlite2 useflag, keep only sqlite3 around.
 
 *apr-util-1.3.12 (29 Jul 2011)
 






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

* [gentoo-commits] gentoo-x86 commit in dev-libs/apr-util: apr-util-1.3.12.ebuild ChangeLog
@ 2011-10-19 11:22 Tony Vroon (chainsaw)
  0 siblings, 0 replies; 8+ messages in thread
From: Tony Vroon (chainsaw) @ 2011-10-19 11:22 UTC (permalink / raw
  To: gentoo-commits

chainsaw    11/10/19 11:22:22

  Modified:             apr-util-1.3.12.ebuild ChangeLog
  Log:
  Marked stable on AMD64 based on arch testing by Agostino "ago" Sarubbo & Ian "idella4" Delaney in security bug #385859.
  
  (Portage version: 2.1.10.29/cvs/Linux x86_64)

Revision  Changes    Path
1.3                  dev-libs/apr-util/apr-util-1.3.12.ebuild

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

Index: apr-util-1.3.12.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/apr-util/apr-util-1.3.12.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- apr-util-1.3.12.ebuild	9 Sep 2011 14:40:50 -0000	1.2
+++ apr-util-1.3.12.ebuild	19 Oct 2011 11:22:22 -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/dev-libs/apr-util/apr-util-1.3.12.ebuild,v 1.2 2011/09/09 14:40:50 scarabeus Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/apr-util/apr-util-1.3.12.ebuild,v 1.3 2011/10/19 11:22:22 chainsaw Exp $
 
 EAPI=4
 
@@ -16,7 +16,7 @@
 
 LICENSE="Apache-2.0"
 SLOT="1"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd"
 IUSE="berkdb doc freetds gdbm ldap mysql odbc postgres sqlite"
 RESTRICT="test"
 



1.165                dev-libs/apr-util/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/apr-util/ChangeLog,v
retrieving revision 1.164
retrieving revision 1.165
diff -u -r1.164 -r1.165
--- ChangeLog	9 Sep 2011 14:40:50 -0000	1.164
+++ ChangeLog	19 Oct 2011 11:22:22 -0000	1.165
@@ -1,6 +1,10 @@
 # ChangeLog for dev-libs/apr-util
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/apr-util/ChangeLog,v 1.164 2011/09/09 14:40:50 scarabeus Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/apr-util/ChangeLog,v 1.165 2011/10/19 11:22:22 chainsaw Exp $
+
+  19 Oct 2011; Tony Vroon <chainsaw@gentoo.org> apr-util-1.3.12.ebuild:
+  Marked stable on AMD64 based on arch testing by Agostino "ago" Sarubbo & Ian
+  "idella4" Delaney in security bug #385859.
 
   09 Sep 2011; Tomáš Chvátal <scarabeus@gentoo.org> apr-util-1.3.12.ebuild:
   Drop the sqlite2 useflag, keep only sqlite3 around.






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

* [gentoo-commits] gentoo-x86 commit in dev-libs/apr-util: apr-util-1.3.12.ebuild ChangeLog
@ 2011-10-19 11:58 Jeroen Roovers (jer)
  0 siblings, 0 replies; 8+ messages in thread
From: Jeroen Roovers (jer) @ 2011-10-19 11:58 UTC (permalink / raw
  To: gentoo-commits

jer         11/10/19 11:58:11

  Modified:             apr-util-1.3.12.ebuild ChangeLog
  Log:
  Stable for HPPA (bug #385859).
  
  (Portage version: 2.2.0_alpha69/cvs/Linux x86_64)

Revision  Changes    Path
1.4                  dev-libs/apr-util/apr-util-1.3.12.ebuild

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

Index: apr-util-1.3.12.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/apr-util/apr-util-1.3.12.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- apr-util-1.3.12.ebuild	19 Oct 2011 11:22:22 -0000	1.3
+++ apr-util-1.3.12.ebuild	19 Oct 2011 11:58:10 -0000	1.4
@@ -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/dev-libs/apr-util/apr-util-1.3.12.ebuild,v 1.3 2011/10/19 11:22:22 chainsaw Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/apr-util/apr-util-1.3.12.ebuild,v 1.4 2011/10/19 11:58:10 jer Exp $
 
 EAPI=4
 
@@ -16,7 +16,7 @@
 
 LICENSE="Apache-2.0"
 SLOT="1"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd"
 IUSE="berkdb doc freetds gdbm ldap mysql odbc postgres sqlite"
 RESTRICT="test"
 



1.166                dev-libs/apr-util/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/apr-util/ChangeLog,v
retrieving revision 1.165
retrieving revision 1.166
diff -u -r1.165 -r1.166
--- ChangeLog	19 Oct 2011 11:22:22 -0000	1.165
+++ ChangeLog	19 Oct 2011 11:58:10 -0000	1.166
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/apr-util
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/apr-util/ChangeLog,v 1.165 2011/10/19 11:22:22 chainsaw Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/apr-util/ChangeLog,v 1.166 2011/10/19 11:58:10 jer Exp $
+
+  19 Oct 2011; Jeroen Roovers <jer@gentoo.org> apr-util-1.3.12.ebuild:
+  Stable for HPPA (bug #385859).
 
   19 Oct 2011; Tony Vroon <chainsaw@gentoo.org> apr-util-1.3.12.ebuild:
   Marked stable on AMD64 based on arch testing by Agostino "ago" Sarubbo & Ian






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

* [gentoo-commits] gentoo-x86 commit in dev-libs/apr-util: apr-util-1.3.12.ebuild ChangeLog
@ 2011-10-22 16:20 Kacper Kowalik (xarthisius)
  0 siblings, 0 replies; 8+ messages in thread
From: Kacper Kowalik (xarthisius) @ 2011-10-22 16:20 UTC (permalink / raw
  To: gentoo-commits

xarthisius    11/10/22 16:20:06

  Modified:             apr-util-1.3.12.ebuild ChangeLog
  Log:
  ppc/ppc64 stable wrt #385859
  
  (Portage version: 2.2.0_alpha69/cvs/Linux x86_64)

Revision  Changes    Path
1.5                  dev-libs/apr-util/apr-util-1.3.12.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/apr-util/apr-util-1.3.12.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/apr-util/apr-util-1.3.12.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/apr-util/apr-util-1.3.12.ebuild?r1=1.4&r2=1.5

Index: apr-util-1.3.12.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/apr-util/apr-util-1.3.12.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- apr-util-1.3.12.ebuild	19 Oct 2011 11:58:10 -0000	1.4
+++ apr-util-1.3.12.ebuild	22 Oct 2011 16:20:06 -0000	1.5
@@ -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/dev-libs/apr-util/apr-util-1.3.12.ebuild,v 1.4 2011/10/19 11:58:10 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/apr-util/apr-util-1.3.12.ebuild,v 1.5 2011/10/22 16:20:06 xarthisius Exp $
 
 EAPI=4
 
@@ -16,7 +16,7 @@
 
 LICENSE="Apache-2.0"
 SLOT="1"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd"
 IUSE="berkdb doc freetds gdbm ldap mysql odbc postgres sqlite"
 RESTRICT="test"
 



1.167                dev-libs/apr-util/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/apr-util/ChangeLog,v
retrieving revision 1.166
retrieving revision 1.167
diff -u -r1.166 -r1.167
--- ChangeLog	19 Oct 2011 11:58:10 -0000	1.166
+++ ChangeLog	22 Oct 2011 16:20:06 -0000	1.167
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/apr-util
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/apr-util/ChangeLog,v 1.166 2011/10/19 11:58:10 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/apr-util/ChangeLog,v 1.167 2011/10/22 16:20:06 xarthisius Exp $
+
+  22 Oct 2011; Kacper Kowalik <xarthisius@gentoo.org> apr-util-1.3.12.ebuild:
+  ppc/ppc64 stable wrt #385859
 
   19 Oct 2011; Jeroen Roovers <jer@gentoo.org> apr-util-1.3.12.ebuild:
   Stable for HPPA (bug #385859).






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

* [gentoo-commits] gentoo-x86 commit in dev-libs/apr-util: apr-util-1.3.12.ebuild ChangeLog
@ 2011-10-23 11:41 Markus Meier (maekke)
  0 siblings, 0 replies; 8+ messages in thread
From: Markus Meier (maekke) @ 2011-10-23 11:41 UTC (permalink / raw
  To: gentoo-commits

maekke      11/10/23 11:41:40

  Modified:             apr-util-1.3.12.ebuild ChangeLog
  Log:
  arm stable, bug #385859
  
  (Portage version: 2.1.10.30/cvs/Linux x86_64)

Revision  Changes    Path
1.6                  dev-libs/apr-util/apr-util-1.3.12.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/apr-util/apr-util-1.3.12.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/apr-util/apr-util-1.3.12.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/apr-util/apr-util-1.3.12.ebuild?r1=1.5&r2=1.6

Index: apr-util-1.3.12.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/apr-util/apr-util-1.3.12.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- apr-util-1.3.12.ebuild	22 Oct 2011 16:20:06 -0000	1.5
+++ apr-util-1.3.12.ebuild	23 Oct 2011 11:41:39 -0000	1.6
@@ -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/dev-libs/apr-util/apr-util-1.3.12.ebuild,v 1.5 2011/10/22 16:20:06 xarthisius Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/apr-util/apr-util-1.3.12.ebuild,v 1.6 2011/10/23 11:41:39 maekke Exp $
 
 EAPI=4
 
@@ -16,7 +16,7 @@
 
 LICENSE="Apache-2.0"
 SLOT="1"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd"
 IUSE="berkdb doc freetds gdbm ldap mysql odbc postgres sqlite"
 RESTRICT="test"
 



1.168                dev-libs/apr-util/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/apr-util/ChangeLog,v
retrieving revision 1.167
retrieving revision 1.168
diff -u -r1.167 -r1.168
--- ChangeLog	22 Oct 2011 16:20:06 -0000	1.167
+++ ChangeLog	23 Oct 2011 11:41:39 -0000	1.168
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/apr-util
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/apr-util/ChangeLog,v 1.167 2011/10/22 16:20:06 xarthisius Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/apr-util/ChangeLog,v 1.168 2011/10/23 11:41:39 maekke Exp $
+
+  23 Oct 2011; Markus Meier <maekke@gentoo.org> apr-util-1.3.12.ebuild:
+  arm stable, bug #385859
 
   22 Oct 2011; Kacper Kowalik <xarthisius@gentoo.org> apr-util-1.3.12.ebuild:
   ppc/ppc64 stable wrt #385859






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

* [gentoo-commits] gentoo-x86 commit in dev-libs/apr-util: apr-util-1.3.12.ebuild ChangeLog
@ 2011-10-24 19:53 Markus Meier (maekke)
  0 siblings, 0 replies; 8+ messages in thread
From: Markus Meier (maekke) @ 2011-10-24 19:53 UTC (permalink / raw
  To: gentoo-commits

maekke      11/10/24 19:53:20

  Modified:             apr-util-1.3.12.ebuild ChangeLog
  Log:
  x86 stable, bug #385859
  
  (Portage version: 2.1.10.30/cvs/Linux x86_64)

Revision  Changes    Path
1.7                  dev-libs/apr-util/apr-util-1.3.12.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/apr-util/apr-util-1.3.12.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/apr-util/apr-util-1.3.12.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/apr-util/apr-util-1.3.12.ebuild?r1=1.6&r2=1.7

Index: apr-util-1.3.12.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/apr-util/apr-util-1.3.12.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- apr-util-1.3.12.ebuild	23 Oct 2011 11:41:39 -0000	1.6
+++ apr-util-1.3.12.ebuild	24 Oct 2011 19:53:20 -0000	1.7
@@ -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/dev-libs/apr-util/apr-util-1.3.12.ebuild,v 1.6 2011/10/23 11:41:39 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/apr-util/apr-util-1.3.12.ebuild,v 1.7 2011/10/24 19:53:20 maekke Exp $
 
 EAPI=4
 
@@ -16,7 +16,7 @@
 
 LICENSE="Apache-2.0"
 SLOT="1"
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~sparc-fbsd ~x86-fbsd"
 IUSE="berkdb doc freetds gdbm ldap mysql odbc postgres sqlite"
 RESTRICT="test"
 



1.169                dev-libs/apr-util/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/apr-util/ChangeLog,v
retrieving revision 1.168
retrieving revision 1.169
diff -u -r1.168 -r1.169
--- ChangeLog	23 Oct 2011 11:41:39 -0000	1.168
+++ ChangeLog	24 Oct 2011 19:53:20 -0000	1.169
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/apr-util
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/apr-util/ChangeLog,v 1.168 2011/10/23 11:41:39 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/apr-util/ChangeLog,v 1.169 2011/10/24 19:53:20 maekke Exp $
+
+  24 Oct 2011; Markus Meier <maekke@gentoo.org> apr-util-1.3.12.ebuild:
+  x86 stable, bug #385859
 
   23 Oct 2011; Markus Meier <maekke@gentoo.org> apr-util-1.3.12.ebuild:
   arm stable, bug #385859






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

* [gentoo-commits] gentoo-x86 commit in dev-libs/apr-util: apr-util-1.3.12.ebuild ChangeLog
@ 2011-10-29 18:43 Raul Porcel (armin76)
  0 siblings, 0 replies; 8+ messages in thread
From: Raul Porcel (armin76) @ 2011-10-29 18:43 UTC (permalink / raw
  To: gentoo-commits

armin76     11/10/29 18:43:37

  Modified:             apr-util-1.3.12.ebuild ChangeLog
  Log:
  alpha/ia64/s390/sh/sparc stable wrt #385859
  
  (Portage version: 2.1.10.11/cvs/Linux ia64)

Revision  Changes    Path
1.8                  dev-libs/apr-util/apr-util-1.3.12.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/apr-util/apr-util-1.3.12.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/apr-util/apr-util-1.3.12.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/apr-util/apr-util-1.3.12.ebuild?r1=1.7&r2=1.8

Index: apr-util-1.3.12.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/apr-util/apr-util-1.3.12.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- apr-util-1.3.12.ebuild	24 Oct 2011 19:53:20 -0000	1.7
+++ apr-util-1.3.12.ebuild	29 Oct 2011 18:43:37 -0000	1.8
@@ -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/dev-libs/apr-util/apr-util-1.3.12.ebuild,v 1.7 2011/10/24 19:53:20 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/apr-util/apr-util-1.3.12.ebuild,v 1.8 2011/10/29 18:43:37 armin76 Exp $
 
 EAPI=4
 
@@ -16,7 +16,7 @@
 
 LICENSE="Apache-2.0"
 SLOT="1"
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~sparc-fbsd ~x86-fbsd"
 IUSE="berkdb doc freetds gdbm ldap mysql odbc postgres sqlite"
 RESTRICT="test"
 



1.170                dev-libs/apr-util/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/apr-util/ChangeLog,v
retrieving revision 1.169
retrieving revision 1.170
diff -u -r1.169 -r1.170
--- ChangeLog	24 Oct 2011 19:53:20 -0000	1.169
+++ ChangeLog	29 Oct 2011 18:43:37 -0000	1.170
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/apr-util
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/apr-util/ChangeLog,v 1.169 2011/10/24 19:53:20 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/apr-util/ChangeLog,v 1.170 2011/10/29 18:43:37 armin76 Exp $
+
+  29 Oct 2011; Raúl Porcel <armin76@gentoo.org> apr-util-1.3.12.ebuild:
+  alpha/ia64/s390/sh/sparc stable wrt #385859
 
   24 Oct 2011; Markus Meier <maekke@gentoo.org> apr-util-1.3.12.ebuild:
   x86 stable, bug #385859






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

* [gentoo-commits] gentoo-x86 commit in dev-libs/apr-util: apr-util-1.3.12.ebuild ChangeLog
@ 2011-11-11 19:19 Markos Chandras (hwoarang)
  0 siblings, 0 replies; 8+ messages in thread
From: Markos Chandras (hwoarang) @ 2011-11-11 19:19 UTC (permalink / raw
  To: gentoo-commits

hwoarang    11/11/11 19:19:14

  Modified:             apr-util-1.3.12.ebuild ChangeLog
  Log:
  Add static-libs USE flag. Patch by Arfrever.
  
  (Portage version: 2.2.0_alpha73/cvs/Linux x86_64)

Revision  Changes    Path
1.9                  dev-libs/apr-util/apr-util-1.3.12.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/apr-util/apr-util-1.3.12.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/apr-util/apr-util-1.3.12.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/apr-util/apr-util-1.3.12.ebuild?r1=1.8&r2=1.9

Index: apr-util-1.3.12.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/apr-util/apr-util-1.3.12.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- apr-util-1.3.12.ebuild	29 Oct 2011 18:43:37 -0000	1.8
+++ apr-util-1.3.12.ebuild	11 Nov 2011 19:19:13 -0000	1.9
@@ -1,8 +1,8 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/apr-util/apr-util-1.3.12.ebuild,v 1.8 2011/10/29 18:43:37 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/apr-util/apr-util-1.3.12.ebuild,v 1.9 2011/11/11 19:19:13 hwoarang Exp $
 
-EAPI=4
+EAPI="4"
 
 # Usually apr-util has the same PV as apr, but in case of security fixes, this may change.
 # APR_PV="${PV}"
@@ -17,7 +17,7 @@
 LICENSE="Apache-2.0"
 SLOT="1"
 KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~sparc-fbsd ~x86-fbsd"
-IUSE="berkdb doc freetds gdbm ldap mysql odbc postgres sqlite"
+IUSE="berkdb doc freetds gdbm ldap mysql odbc postgres sqlite static-libs"
 RESTRICT="test"
 
 RDEPEND="dev-libs/expat
@@ -33,7 +33,7 @@
 DEPEND="${RDEPEND}
 	doc? ( app-doc/doxygen )"
 
-DOCS=( CHANGES NOTICE README )
+DOCS=(CHANGES NOTICE README)
 
 src_prepare() {
 	epatch "${FILESDIR}/${P}-bdb-5.2.patch"
@@ -71,23 +71,25 @@
 }
 
 src_compile() {
-	emake CPPFLAGS="${CPPFLAGS}" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" || die "emake failed"
+	emake CPPFLAGS="${CPPFLAGS}" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}"
 
 	if use doc; then
-		emake dox || die "emake dox failed"
+		emake dox
 	fi
 }
 
 src_install() {
 	default
 
-	# --disable-static does not work
-	find "${ED}" -name "*.a" -exec rm -f {} +
-
-	find "${ED}" -name '*.la' -exec rm -f {} +
+	find "${ED}" -name "*.la" -exec rm -f {} +
+	find "${ED}usr/$(get_libdir)/apr-util-${SLOT}" -name "*.a" -exec rm -f {} +
 
 	if use doc; then
-		dohtml -r docs/dox/html/* || die "dohtml failed"
+		dohtml -r docs/dox/html/*
+	fi
+
+	if ! use static-libs; then
+		find "${ED}" -name "*.a" -exec rm -f {} +
 	fi
 
 	# This file is only used on AIX systems, which Gentoo is not,



1.171                dev-libs/apr-util/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/apr-util/ChangeLog,v
retrieving revision 1.170
retrieving revision 1.171
diff -u -r1.170 -r1.171
--- ChangeLog	29 Oct 2011 18:43:37 -0000	1.170
+++ ChangeLog	11 Nov 2011 19:19:13 -0000	1.171
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/apr-util
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/apr-util/ChangeLog,v 1.170 2011/10/29 18:43:37 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/apr-util/ChangeLog,v 1.171 2011/11/11 19:19:13 hwoarang Exp $
+
+  11 Nov 2011; Markos Chandras <hwoarang@gentoo.org> apr-util-1.3.12.ebuild:
+  Add static-libs USE flag. Patch by Arfrever.
 
   29 Oct 2011; Raúl Porcel <armin76@gentoo.org> apr-util-1.3.12.ebuild:
   alpha/ia64/s390/sh/sparc stable wrt #385859






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

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

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-10-19 11:58 [gentoo-commits] gentoo-x86 commit in dev-libs/apr-util: apr-util-1.3.12.ebuild ChangeLog Jeroen Roovers (jer)
  -- strict thread matches above, loose matches on Subject: below --
2011-11-11 19:19 Markos Chandras (hwoarang)
2011-10-29 18:43 Raul Porcel (armin76)
2011-10-24 19:53 Markus Meier (maekke)
2011-10-23 11:41 Markus Meier (maekke)
2011-10-22 16:20 Kacper Kowalik (xarthisius)
2011-10-19 11:22 Tony Vroon (chainsaw)
2011-09-09 14:40 Tomas Chvatal (scarabeus)

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