* [gentoo-commits] gentoo-x86 commit in dev-util/pkgconfig: pkgconfig-0.25-r2.ebuild ChangeLog
@ 2010-07-11 12:28 Samuli Suominen (ssuominen)
0 siblings, 0 replies; 10+ messages in thread
From: Samuli Suominen (ssuominen) @ 2010-07-11 12:28 UTC (permalink / raw
To: gentoo-commits
ssuominen 10/07/11 12:28:28
Modified: ChangeLog
Added: pkgconfig-0.25-r2.ebuild
Log:
Fix for sys-devel/autoconf-2.66 compat (but commit unkeyworded until it's sorted out).
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Revision Changes Path
1.82 dev-util/pkgconfig/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/pkgconfig/ChangeLog?rev=1.82&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/pkgconfig/ChangeLog?rev=1.82&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/pkgconfig/ChangeLog?r1=1.81&r2=1.82
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/pkgconfig/ChangeLog,v
retrieving revision 1.81
retrieving revision 1.82
diff -u -r1.81 -r1.82
--- ChangeLog 17 Jun 2010 12:49:27 -0000 1.81
+++ ChangeLog 11 Jul 2010 12:28:28 -0000 1.82
@@ -1,6 +1,13 @@
# ChangeLog for dev-util/pkgconfig
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/pkgconfig/ChangeLog,v 1.81 2010/06/17 12:49:27 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/pkgconfig/ChangeLog,v 1.82 2010/07/11 12:28:28 ssuominen Exp $
+
+*pkgconfig-0.25-r2 (11 Jul 2010)
+
+ 11 Jul 2010; Samuli Suominen <ssuominen@gentoo.org>
+ +pkgconfig-0.25-r2.ebuild, +files/pkgconfig-0.25-dnl.patch:
+ Fix for sys-devel/autoconf-2.66 compat (but commit unkeyworded until it's
+ sorted out).
*pkgconfig-0.25-r1 (17 Jun 2010)
1.1 dev-util/pkgconfig/pkgconfig-0.25-r2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/pkgconfig/pkgconfig-0.25-r2.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/pkgconfig/pkgconfig-0.25-r2.ebuild?rev=1.1&content-type=text/plain
Index: pkgconfig-0.25-r2.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/pkgconfig/pkgconfig-0.25-r2.ebuild,v 1.1 2010/07/11 12:28:28 ssuominen Exp $
EAPI=2
inherit eutils flag-o-matic
MY_P=pkg-config-${PV}
DESCRIPTION="Package config system that manages compile/link flags"
HOMEPAGE="http://pkgconfig.freedesktop.org/wiki/"
SRC_URI="http://pkgconfig.freedesktop.org/releases/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS=""
#KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd"
IUSE="elibc_FreeBSD hardened"
DEPEND=">=dev-libs/popt-1.15"
S=${WORKDIR}/${MY_P}
src_prepare() {
# XXX: Bug in autoconf 2.66, or pkg-config?
epatch "${FILESDIR}"/${P}-dnl.patch
}
src_configure() {
use ppc64 && use hardened && replace-flags -O[2-3] -O1
# Force using all the requirements when linking, so that needed -pthread
# lines are inherited between libraries
local myconf
use elibc_FreeBSD && myconf="--enable-indirect-deps"
econf \
--docdir=/usr/share/doc/${PF}/html \
--with-installed-popt \
${myconf}
}
src_install() {
emake DESTDIR="${D}" install || die
dodoc AUTHORS ChangeLog NEWS README
}
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-util/pkgconfig: pkgconfig-0.25-r2.ebuild ChangeLog
@ 2010-07-15 8:07 Samuli Suominen (ssuominen)
0 siblings, 0 replies; 10+ messages in thread
From: Samuli Suominen (ssuominen) @ 2010-07-15 8:07 UTC (permalink / raw
To: gentoo-commits
ssuominen 10/07/15 08:07:12
Modified: pkgconfig-0.25-r2.ebuild ChangeLog
Log:
Fix for sys-devel/autoconf >= 2.66 compability wrt #326939.
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Revision Changes Path
1.2 dev-util/pkgconfig/pkgconfig-0.25-r2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/pkgconfig/pkgconfig-0.25-r2.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/pkgconfig/pkgconfig-0.25-r2.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/pkgconfig/pkgconfig-0.25-r2.ebuild?r1=1.1&r2=1.2
Index: pkgconfig-0.25-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/pkgconfig/pkgconfig-0.25-r2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- pkgconfig-0.25-r2.ebuild 11 Jul 2010 12:28:28 -0000 1.1
+++ pkgconfig-0.25-r2.ebuild 15 Jul 2010 08:07:11 -0000 1.2
@@ -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/dev-util/pkgconfig/pkgconfig-0.25-r2.ebuild,v 1.1 2010/07/11 12:28:28 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/pkgconfig/pkgconfig-0.25-r2.ebuild,v 1.2 2010/07/15 08:07:11 ssuominen Exp $
EAPI=2
inherit eutils flag-o-matic
@@ -13,8 +13,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS=""
-#KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd"
IUSE="elibc_FreeBSD hardened"
DEPEND=">=dev-libs/popt-1.15"
@@ -22,7 +21,6 @@
S=${WORKDIR}/${MY_P}
src_prepare() {
- # XXX: Bug in autoconf 2.66, or pkg-config?
epatch "${FILESDIR}"/${P}-dnl.patch
}
1.83 dev-util/pkgconfig/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/pkgconfig/ChangeLog?rev=1.83&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/pkgconfig/ChangeLog?rev=1.83&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/pkgconfig/ChangeLog?r1=1.82&r2=1.83
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/pkgconfig/ChangeLog,v
retrieving revision 1.82
retrieving revision 1.83
diff -u -r1.82 -r1.83
--- ChangeLog 11 Jul 2010 12:28:28 -0000 1.82
+++ ChangeLog 15 Jul 2010 08:07:11 -0000 1.83
@@ -1,13 +1,12 @@
# ChangeLog for dev-util/pkgconfig
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/pkgconfig/ChangeLog,v 1.82 2010/07/11 12:28:28 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/pkgconfig/ChangeLog,v 1.83 2010/07/15 08:07:11 ssuominen Exp $
*pkgconfig-0.25-r2 (11 Jul 2010)
11 Jul 2010; Samuli Suominen <ssuominen@gentoo.org>
+pkgconfig-0.25-r2.ebuild, +files/pkgconfig-0.25-dnl.patch:
- Fix for sys-devel/autoconf-2.66 compat (but commit unkeyworded until it's
- sorted out).
+ Fix for sys-devel/autoconf >= 2.66 compability wrt #326939.
*pkgconfig-0.25-r1 (17 Jun 2010)
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-util/pkgconfig: pkgconfig-0.25-r2.ebuild ChangeLog
@ 2010-08-06 12:16 Christian Faulhammer (fauli)
0 siblings, 0 replies; 10+ messages in thread
From: Christian Faulhammer (fauli) @ 2010-08-06 12:16 UTC (permalink / raw
To: gentoo-commits
fauli 10/08/06 12:16:58
Modified: pkgconfig-0.25-r2.ebuild ChangeLog
Log:
stable x86, bug 331345
(Portage version: 2.1.8.3/cvs/Linux i686)
Revision Changes Path
1.3 dev-util/pkgconfig/pkgconfig-0.25-r2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/pkgconfig/pkgconfig-0.25-r2.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/pkgconfig/pkgconfig-0.25-r2.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/pkgconfig/pkgconfig-0.25-r2.ebuild?r1=1.2&r2=1.3
Index: pkgconfig-0.25-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/pkgconfig/pkgconfig-0.25-r2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- pkgconfig-0.25-r2.ebuild 15 Jul 2010 08:07:11 -0000 1.2
+++ pkgconfig-0.25-r2.ebuild 6 Aug 2010 12:16:58 -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/dev-util/pkgconfig/pkgconfig-0.25-r2.ebuild,v 1.2 2010/07/15 08:07:11 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/pkgconfig/pkgconfig-0.25-r2.ebuild,v 1.3 2010/08/06 12:16:58 fauli Exp $
EAPI=2
inherit eutils flag-o-matic
@@ -13,7 +13,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~sparc-fbsd ~x86-fbsd"
IUSE="elibc_FreeBSD hardened"
DEPEND=">=dev-libs/popt-1.15"
1.84 dev-util/pkgconfig/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/pkgconfig/ChangeLog?rev=1.84&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/pkgconfig/ChangeLog?rev=1.84&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/pkgconfig/ChangeLog?r1=1.83&r2=1.84
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/pkgconfig/ChangeLog,v
retrieving revision 1.83
retrieving revision 1.84
diff -u -r1.83 -r1.84
--- ChangeLog 15 Jul 2010 08:07:11 -0000 1.83
+++ ChangeLog 6 Aug 2010 12:16:58 -0000 1.84
@@ -1,6 +1,10 @@
# ChangeLog for dev-util/pkgconfig
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/pkgconfig/ChangeLog,v 1.83 2010/07/15 08:07:11 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/pkgconfig/ChangeLog,v 1.84 2010/08/06 12:16:58 fauli Exp $
+
+ 06 Aug 2010; Christian Faulhammer <fauli@gentoo.org>
+ pkgconfig-0.25-r2.ebuild:
+ stable x86, bug 331345
*pkgconfig-0.25-r2 (11 Jul 2010)
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-util/pkgconfig: pkgconfig-0.25-r2.ebuild ChangeLog
@ 2010-08-07 14:24 Markos Chandras (hwoarang)
0 siblings, 0 replies; 10+ messages in thread
From: Markos Chandras (hwoarang) @ 2010-08-07 14:24 UTC (permalink / raw
To: gentoo-commits
hwoarang 10/08/07 14:24:37
Modified: pkgconfig-0.25-r2.ebuild ChangeLog
Log:
Stable on amd64 wrt bug #331345
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Revision Changes Path
1.4 dev-util/pkgconfig/pkgconfig-0.25-r2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/pkgconfig/pkgconfig-0.25-r2.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/pkgconfig/pkgconfig-0.25-r2.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/pkgconfig/pkgconfig-0.25-r2.ebuild?r1=1.3&r2=1.4
Index: pkgconfig-0.25-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/pkgconfig/pkgconfig-0.25-r2.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- pkgconfig-0.25-r2.ebuild 6 Aug 2010 12:16:58 -0000 1.3
+++ pkgconfig-0.25-r2.ebuild 7 Aug 2010 14:24:37 -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/dev-util/pkgconfig/pkgconfig-0.25-r2.ebuild,v 1.3 2010/08/06 12:16:58 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/pkgconfig/pkgconfig-0.25-r2.ebuild,v 1.4 2010/08/07 14:24:37 hwoarang Exp $
EAPI=2
inherit eutils flag-o-matic
@@ -13,7 +13,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~sparc-fbsd ~x86-fbsd"
IUSE="elibc_FreeBSD hardened"
DEPEND=">=dev-libs/popt-1.15"
1.85 dev-util/pkgconfig/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/pkgconfig/ChangeLog?rev=1.85&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/pkgconfig/ChangeLog?rev=1.85&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/pkgconfig/ChangeLog?r1=1.84&r2=1.85
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/pkgconfig/ChangeLog,v
retrieving revision 1.84
retrieving revision 1.85
diff -u -r1.84 -r1.85
--- ChangeLog 6 Aug 2010 12:16:58 -0000 1.84
+++ ChangeLog 7 Aug 2010 14:24:37 -0000 1.85
@@ -1,6 +1,10 @@
# ChangeLog for dev-util/pkgconfig
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/pkgconfig/ChangeLog,v 1.84 2010/08/06 12:16:58 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/pkgconfig/ChangeLog,v 1.85 2010/08/07 14:24:37 hwoarang Exp $
+
+ 07 Aug 2010; Markos Chandras <hwoarang@gentoo.org>
+ pkgconfig-0.25-r2.ebuild:
+ Stable on amd64 wrt bug #331345
06 Aug 2010; Christian Faulhammer <fauli@gentoo.org>
pkgconfig-0.25-r2.ebuild:
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-util/pkgconfig: pkgconfig-0.25-r2.ebuild ChangeLog
@ 2010-08-10 16:01 Jeroen Roovers (jer)
0 siblings, 0 replies; 10+ messages in thread
From: Jeroen Roovers (jer) @ 2010-08-10 16:01 UTC (permalink / raw
To: gentoo-commits
jer 10/08/10 16:01:02
Modified: pkgconfig-0.25-r2.ebuild ChangeLog
Log:
Stable for HPPA (bug #331345).
(Portage version: 2.2_rc67/cvs/Linux i686)
Revision Changes Path
1.5 dev-util/pkgconfig/pkgconfig-0.25-r2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/pkgconfig/pkgconfig-0.25-r2.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/pkgconfig/pkgconfig-0.25-r2.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/pkgconfig/pkgconfig-0.25-r2.ebuild?r1=1.4&r2=1.5
Index: pkgconfig-0.25-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/pkgconfig/pkgconfig-0.25-r2.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- pkgconfig-0.25-r2.ebuild 7 Aug 2010 14:24:37 -0000 1.4
+++ pkgconfig-0.25-r2.ebuild 10 Aug 2010 16:01:02 -0000 1.5
@@ -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/dev-util/pkgconfig/pkgconfig-0.25-r2.ebuild,v 1.4 2010/08/07 14:24:37 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/pkgconfig/pkgconfig-0.25-r2.ebuild,v 1.5 2010/08/10 16:01:02 jer Exp $
EAPI=2
inherit eutils flag-o-matic
@@ -13,7 +13,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~sparc-fbsd ~x86-fbsd"
IUSE="elibc_FreeBSD hardened"
DEPEND=">=dev-libs/popt-1.15"
1.86 dev-util/pkgconfig/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/pkgconfig/ChangeLog?rev=1.86&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/pkgconfig/ChangeLog?rev=1.86&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/pkgconfig/ChangeLog?r1=1.85&r2=1.86
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/pkgconfig/ChangeLog,v
retrieving revision 1.85
retrieving revision 1.86
diff -u -r1.85 -r1.86
--- ChangeLog 7 Aug 2010 14:24:37 -0000 1.85
+++ ChangeLog 10 Aug 2010 16:01:02 -0000 1.86
@@ -1,6 +1,9 @@
# ChangeLog for dev-util/pkgconfig
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/pkgconfig/ChangeLog,v 1.85 2010/08/07 14:24:37 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/pkgconfig/ChangeLog,v 1.86 2010/08/10 16:01:02 jer Exp $
+
+ 10 Aug 2010; Jeroen Roovers <jer@gentoo.org> pkgconfig-0.25-r2.ebuild:
+ Stable for HPPA (bug #331345).
07 Aug 2010; Markos Chandras <hwoarang@gentoo.org>
pkgconfig-0.25-r2.ebuild:
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-util/pkgconfig: pkgconfig-0.25-r2.ebuild ChangeLog
@ 2010-08-20 19:18 Samuli Suominen (ssuominen)
0 siblings, 0 replies; 10+ messages in thread
From: Samuli Suominen (ssuominen) @ 2010-08-20 19:18 UTC (permalink / raw
To: gentoo-commits
ssuominen 10/08/20 19:18:56
Modified: pkgconfig-0.25-r2.ebuild ChangeLog
Log:
ppc64 stable wrt #331345
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Revision Changes Path
1.6 dev-util/pkgconfig/pkgconfig-0.25-r2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/pkgconfig/pkgconfig-0.25-r2.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/pkgconfig/pkgconfig-0.25-r2.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/pkgconfig/pkgconfig-0.25-r2.ebuild?r1=1.5&r2=1.6
Index: pkgconfig-0.25-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/pkgconfig/pkgconfig-0.25-r2.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- pkgconfig-0.25-r2.ebuild 10 Aug 2010 16:01:02 -0000 1.5
+++ pkgconfig-0.25-r2.ebuild 20 Aug 2010 19:18:55 -0000 1.6
@@ -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/dev-util/pkgconfig/pkgconfig-0.25-r2.ebuild,v 1.5 2010/08/10 16:01:02 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/pkgconfig/pkgconfig-0.25-r2.ebuild,v 1.6 2010/08/20 19:18:55 ssuominen Exp $
EAPI=2
inherit eutils flag-o-matic
@@ -13,7 +13,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86 ~sparc-fbsd ~x86-fbsd"
IUSE="elibc_FreeBSD hardened"
DEPEND=">=dev-libs/popt-1.15"
1.87 dev-util/pkgconfig/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/pkgconfig/ChangeLog?rev=1.87&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/pkgconfig/ChangeLog?rev=1.87&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/pkgconfig/ChangeLog?r1=1.86&r2=1.87
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/pkgconfig/ChangeLog,v
retrieving revision 1.86
retrieving revision 1.87
diff -u -r1.86 -r1.87
--- ChangeLog 10 Aug 2010 16:01:02 -0000 1.86
+++ ChangeLog 20 Aug 2010 19:18:55 -0000 1.87
@@ -1,6 +1,10 @@
# ChangeLog for dev-util/pkgconfig
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/pkgconfig/ChangeLog,v 1.86 2010/08/10 16:01:02 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/pkgconfig/ChangeLog,v 1.87 2010/08/20 19:18:55 ssuominen Exp $
+
+ 20 Aug 2010; Samuli Suominen <ssuominen@gentoo.org>
+ pkgconfig-0.25-r2.ebuild:
+ ppc64 stable wrt #331345
10 Aug 2010; Jeroen Roovers <jer@gentoo.org> pkgconfig-0.25-r2.ebuild:
Stable for HPPA (bug #331345).
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-util/pkgconfig: pkgconfig-0.25-r2.ebuild ChangeLog
@ 2010-08-23 20:06 Markus Meier (maekke)
0 siblings, 0 replies; 10+ messages in thread
From: Markus Meier (maekke) @ 2010-08-23 20:06 UTC (permalink / raw
To: gentoo-commits
maekke 10/08/23 20:06:10
Modified: pkgconfig-0.25-r2.ebuild ChangeLog
Log:
arm stable, bug #331345
(Portage version: 2.2_rc68/cvs/Linux i686)
Revision Changes Path
1.7 dev-util/pkgconfig/pkgconfig-0.25-r2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/pkgconfig/pkgconfig-0.25-r2.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/pkgconfig/pkgconfig-0.25-r2.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/pkgconfig/pkgconfig-0.25-r2.ebuild?r1=1.6&r2=1.7
Index: pkgconfig-0.25-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/pkgconfig/pkgconfig-0.25-r2.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- pkgconfig-0.25-r2.ebuild 20 Aug 2010 19:18:55 -0000 1.6
+++ pkgconfig-0.25-r2.ebuild 23 Aug 2010 20:06:10 -0000 1.7
@@ -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/dev-util/pkgconfig/pkgconfig-0.25-r2.ebuild,v 1.6 2010/08/20 19:18:55 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/pkgconfig/pkgconfig-0.25-r2.ebuild,v 1.7 2010/08/23 20:06:10 maekke Exp $
EAPI=2
inherit eutils flag-o-matic
@@ -13,7 +13,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86 ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="~alpha amd64 arm hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86 ~sparc-fbsd ~x86-fbsd"
IUSE="elibc_FreeBSD hardened"
DEPEND=">=dev-libs/popt-1.15"
1.88 dev-util/pkgconfig/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/pkgconfig/ChangeLog?rev=1.88&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/pkgconfig/ChangeLog?rev=1.88&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/pkgconfig/ChangeLog?r1=1.87&r2=1.88
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/pkgconfig/ChangeLog,v
retrieving revision 1.87
retrieving revision 1.88
diff -u -r1.87 -r1.88
--- ChangeLog 20 Aug 2010 19:18:55 -0000 1.87
+++ ChangeLog 23 Aug 2010 20:06:10 -0000 1.88
@@ -1,6 +1,9 @@
# ChangeLog for dev-util/pkgconfig
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/pkgconfig/ChangeLog,v 1.87 2010/08/20 19:18:55 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/pkgconfig/ChangeLog,v 1.88 2010/08/23 20:06:10 maekke Exp $
+
+ 23 Aug 2010; Markus Meier <maekke@gentoo.org> pkgconfig-0.25-r2.ebuild:
+ arm stable, bug #331345
20 Aug 2010; Samuli Suominen <ssuominen@gentoo.org>
pkgconfig-0.25-r2.ebuild:
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-util/pkgconfig: pkgconfig-0.25-r2.ebuild ChangeLog
@ 2010-09-19 13:25 Tobias Klausmann (klausman)
0 siblings, 0 replies; 10+ messages in thread
From: Tobias Klausmann (klausman) @ 2010-09-19 13:25 UTC (permalink / raw
To: gentoo-commits
klausman 10/09/19 13:25:58
Modified: pkgconfig-0.25-r2.ebuild ChangeLog
Log:
Stable on alpha, bug #331345, thanks to mattst88 for testing
(Portage version: 2.1.9.7/cvs/Linux x86_64)
Revision Changes Path
1.8 dev-util/pkgconfig/pkgconfig-0.25-r2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/pkgconfig/pkgconfig-0.25-r2.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/pkgconfig/pkgconfig-0.25-r2.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/pkgconfig/pkgconfig-0.25-r2.ebuild?r1=1.7&r2=1.8
Index: pkgconfig-0.25-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/pkgconfig/pkgconfig-0.25-r2.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- pkgconfig-0.25-r2.ebuild 23 Aug 2010 20:06:10 -0000 1.7
+++ pkgconfig-0.25-r2.ebuild 19 Sep 2010 13:25:58 -0000 1.8
@@ -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/dev-util/pkgconfig/pkgconfig-0.25-r2.ebuild,v 1.7 2010/08/23 20:06:10 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/pkgconfig/pkgconfig-0.25-r2.ebuild,v 1.8 2010/09/19 13:25:58 klausman Exp $
EAPI=2
inherit eutils flag-o-matic
@@ -13,7 +13,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86 ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86 ~sparc-fbsd ~x86-fbsd"
IUSE="elibc_FreeBSD hardened"
DEPEND=">=dev-libs/popt-1.15"
1.90 dev-util/pkgconfig/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/pkgconfig/ChangeLog?rev=1.90&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/pkgconfig/ChangeLog?rev=1.90&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/pkgconfig/ChangeLog?r1=1.89&r2=1.90
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/pkgconfig/ChangeLog,v
retrieving revision 1.89
retrieving revision 1.90
diff -u -r1.89 -r1.90
--- ChangeLog 3 Sep 2010 12:35:14 -0000 1.89
+++ ChangeLog 19 Sep 2010 13:25:58 -0000 1.90
@@ -1,6 +1,10 @@
# ChangeLog for dev-util/pkgconfig
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/pkgconfig/ChangeLog,v 1.89 2010/09/03 12:35:14 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/pkgconfig/ChangeLog,v 1.90 2010/09/19 13:25:58 klausman Exp $
+
+ 19 Sep 2010; Tobias Klausmann <klausman@gentoo.org>
+ pkgconfig-0.25-r2.ebuild:
+ Stable on alpha, bug #331345, thanks to mattst88 for testing
03 Sep 2010; Pacho Ramos <pacho@gentoo.org> metadata.xml:
Move maintainership to freedesktop as talked with them.
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-util/pkgconfig: pkgconfig-0.25-r2.ebuild ChangeLog
@ 2010-09-19 18:07 Raul Porcel (armin76)
0 siblings, 0 replies; 10+ messages in thread
From: Raul Porcel (armin76) @ 2010-09-19 18:07 UTC (permalink / raw
To: gentoo-commits
armin76 10/09/19 18:07:16
Modified: pkgconfig-0.25-r2.ebuild ChangeLog
Log:
ia64/m68k/s390/sh/sparc stable wrt #331345
(Portage version: 2.1.8.3/cvs/Linux ia64)
Revision Changes Path
1.9 dev-util/pkgconfig/pkgconfig-0.25-r2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/pkgconfig/pkgconfig-0.25-r2.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/pkgconfig/pkgconfig-0.25-r2.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/pkgconfig/pkgconfig-0.25-r2.ebuild?r1=1.8&r2=1.9
Index: pkgconfig-0.25-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/pkgconfig/pkgconfig-0.25-r2.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- pkgconfig-0.25-r2.ebuild 19 Sep 2010 13:25:58 -0000 1.8
+++ pkgconfig-0.25-r2.ebuild 19 Sep 2010 18:07:16 -0000 1.9
@@ -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/dev-util/pkgconfig/pkgconfig-0.25-r2.ebuild,v 1.8 2010/09/19 13:25:58 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/pkgconfig/pkgconfig-0.25-r2.ebuild,v 1.9 2010/09/19 18:07:16 armin76 Exp $
EAPI=2
inherit eutils flag-o-matic
@@ -13,7 +13,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86 ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ~ppc ppc64 s390 sh sparc x86 ~sparc-fbsd ~x86-fbsd"
IUSE="elibc_FreeBSD hardened"
DEPEND=">=dev-libs/popt-1.15"
1.91 dev-util/pkgconfig/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/pkgconfig/ChangeLog?rev=1.91&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/pkgconfig/ChangeLog?rev=1.91&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/pkgconfig/ChangeLog?r1=1.90&r2=1.91
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/pkgconfig/ChangeLog,v
retrieving revision 1.90
retrieving revision 1.91
diff -u -r1.90 -r1.91
--- ChangeLog 19 Sep 2010 13:25:58 -0000 1.90
+++ ChangeLog 19 Sep 2010 18:07:16 -0000 1.91
@@ -1,6 +1,9 @@
# ChangeLog for dev-util/pkgconfig
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/pkgconfig/ChangeLog,v 1.90 2010/09/19 13:25:58 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/pkgconfig/ChangeLog,v 1.91 2010/09/19 18:07:16 armin76 Exp $
+
+ 19 Sep 2010; Raúl Porcel <armin76@gentoo.org> pkgconfig-0.25-r2.ebuild:
+ ia64/m68k/s390/sh/sparc stable wrt #331345
19 Sep 2010; Tobias Klausmann <klausman@gentoo.org>
pkgconfig-0.25-r2.ebuild:
^ permalink raw reply [flat|nested] 10+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-util/pkgconfig: pkgconfig-0.25-r2.ebuild ChangeLog
@ 2010-10-14 19:25 Brent Baude (ranger)
0 siblings, 0 replies; 10+ messages in thread
From: Brent Baude (ranger) @ 2010-10-14 19:25 UTC (permalink / raw
To: gentoo-commits
ranger 10/10/14 19:25:45
Modified: pkgconfig-0.25-r2.ebuild ChangeLog
Log:
stable ppc, bug 331345
(Portage version: 2.1.8.3/cvs/Linux ppc64)
Revision Changes Path
1.10 dev-util/pkgconfig/pkgconfig-0.25-r2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/pkgconfig/pkgconfig-0.25-r2.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/pkgconfig/pkgconfig-0.25-r2.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/pkgconfig/pkgconfig-0.25-r2.ebuild?r1=1.9&r2=1.10
Index: pkgconfig-0.25-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/pkgconfig/pkgconfig-0.25-r2.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- pkgconfig-0.25-r2.ebuild 19 Sep 2010 18:07:16 -0000 1.9
+++ pkgconfig-0.25-r2.ebuild 14 Oct 2010 19:25:45 -0000 1.10
@@ -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/dev-util/pkgconfig/pkgconfig-0.25-r2.ebuild,v 1.9 2010/09/19 18:07:16 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/pkgconfig/pkgconfig-0.25-r2.ebuild,v 1.10 2010/10/14 19:25:45 ranger Exp $
EAPI=2
inherit eutils flag-o-matic
@@ -13,7 +13,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ~ppc ppc64 s390 sh sparc x86 ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~sparc-fbsd ~x86-fbsd"
IUSE="elibc_FreeBSD hardened"
DEPEND=">=dev-libs/popt-1.15"
1.92 dev-util/pkgconfig/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/pkgconfig/ChangeLog?rev=1.92&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/pkgconfig/ChangeLog?rev=1.92&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/pkgconfig/ChangeLog?r1=1.91&r2=1.92
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/pkgconfig/ChangeLog,v
retrieving revision 1.91
retrieving revision 1.92
diff -u -r1.91 -r1.92
--- ChangeLog 19 Sep 2010 18:07:16 -0000 1.91
+++ ChangeLog 14 Oct 2010 19:25:45 -0000 1.92
@@ -1,6 +1,9 @@
# ChangeLog for dev-util/pkgconfig
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/pkgconfig/ChangeLog,v 1.91 2010/09/19 18:07:16 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/pkgconfig/ChangeLog,v 1.92 2010/10/14 19:25:45 ranger Exp $
+
+ 14 Oct 2010; Brent Baude <ranger@gentoo.org> pkgconfig-0.25-r2.ebuild:
+ stable ppc, bug 331345
19 Sep 2010; Raúl Porcel <armin76@gentoo.org> pkgconfig-0.25-r2.ebuild:
ia64/m68k/s390/sh/sparc stable wrt #331345
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2010-10-14 19:25 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-07-11 12:28 [gentoo-commits] gentoo-x86 commit in dev-util/pkgconfig: pkgconfig-0.25-r2.ebuild ChangeLog Samuli Suominen (ssuominen)
-- strict thread matches above, loose matches on Subject: below --
2010-07-15 8:07 Samuli Suominen (ssuominen)
2010-08-06 12:16 Christian Faulhammer (fauli)
2010-08-07 14:24 Markos Chandras (hwoarang)
2010-08-10 16:01 Jeroen Roovers (jer)
2010-08-20 19:18 Samuli Suominen (ssuominen)
2010-08-23 20:06 Markus Meier (maekke)
2010-09-19 13:25 Tobias Klausmann (klausman)
2010-09-19 18:07 Raul Porcel (armin76)
2010-10-14 19:25 Brent Baude (ranger)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox