* [gentoo-commits] gentoo-x86 commit in dev-libs/libxml2: ChangeLog libxml2-2.6.30.ebuild
@ 2007-09-11 19:56 Leonardo Boshell (leonardop)
0 siblings, 0 replies; 8+ messages in thread
From: Leonardo Boshell (leonardop) @ 2007-09-11 19:56 UTC (permalink / raw
To: gentoo-commits
leonardop 07/09/11 19:56:08
Modified: ChangeLog
Added: libxml2-2.6.30.ebuild
Log:
New release: 2.6.30
(Portage version: 2.1.3.9)
Revision Changes Path
1.192 dev-libs/libxml2/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libxml2/ChangeLog?rev=1.192&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libxml2/ChangeLog?rev=1.192&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libxml2/ChangeLog?r1=1.191&r2=1.192
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libxml2/ChangeLog,v
retrieving revision 1.191
retrieving revision 1.192
diff -u -r1.191 -r1.192
--- ChangeLog 24 Jul 2007 18:49:15 -0000 1.191
+++ ChangeLog 11 Sep 2007 19:56:07 -0000 1.192
@@ -1,6 +1,12 @@
# ChangeLog for dev-libs/libxml2
# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxml2/ChangeLog,v 1.191 2007/07/24 18:49:15 dang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxml2/ChangeLog,v 1.192 2007/09/11 19:56:07 leonardop Exp $
+
+*libxml2-2.6.30 (11 Sep 2007)
+
+ 11 Sep 2007; Leonardo Boshell <leonardop@gentoo.org>
+ +libxml2-2.6.30.ebuild:
+ New bug-fix release.
*libxml2-2.6.29 (24 Jul 2007)
1.1 dev-libs/libxml2/libxml2-2.6.30.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libxml2/libxml2-2.6.30.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libxml2/libxml2-2.6.30.ebuild?rev=1.1&content-type=text/plain
Index: libxml2-2.6.30.ebuild
===================================================================
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxml2/libxml2-2.6.30.ebuild,v 1.1 2007/09/11 19:56:07 leonardop Exp $
inherit libtool flag-o-matic eutils
DESCRIPTION="Version 2 of the library to manipulate XML files"
HOMEPAGE="http://www.xmlsoft.org/"
LICENSE="MIT"
SLOT="2"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd"
IUSE="debug doc ipv6 python readline test"
XSTS_HOME="http://www.w3.org/XML/2004/xml-schema-test-suite"
XSTS_NAME_1="xmlschema2002-01-16"
XSTS_NAME_2="xmlschema2006-11-06"
XSTS_TARBALL_1="xsts-2002-01-16.tar.gz"
XSTS_TARBALL_2="xsts-2006-11-06.tar.gz"
SRC_URI="ftp://xmlsoft.org/${PN}/${P}.tar.gz
test? (
${XSTS_HOME}/${XSTS_NAME_1}/${XSTS_TARBALL_1}
${XSTS_HOME}/${XSTS_NAME_2}/${XSTS_TARBALL_2} )"
RDEPEND="sys-libs/zlib
python? ( dev-lang/python )
readline? ( sys-libs/readline )"
DEPEND="${RDEPEND}
hppa? ( >=sys-devel/binutils-2.15.92.0.2 )"
src_unpack() {
unpack ${P}.tar.gz
cd "${S}"
if use test; then
cp ${DISTDIR}/${XSTS_TARBALL_1} \
${DISTDIR}/${XSTS_TARBALL_2} \
${S}/xstc/ \
|| die "Failed to install test tarballs"
fi
epunt_cxx
}
src_compile() {
# USE zlib support breaks gnome2
# (libgnomeprint for instance fails to compile with
# fresh install, and existing) - <azarah@gentoo.org> (22 Dec 2002).
# The meaning of the 'debug' USE flag does not apply to the --with-debug
# switch (enabling the libxml2 debug module). See bug #100898.
# --with-mem-debug causes unusual segmentation faults (bug #105120).
local myconf="--with-zlib \
$(use_with debug run-debug) \
$(use_with python) \
$(use_with readline) \
$(use_with readline history) \
$(use_enable ipv6)"
# Please do not remove, as else we get references to PORTAGE_TMPDIR
# in /usr/lib/python?.?/site-packages/libxml2mod.la among things.
elibtoolize
# filter seemingly problematic CFLAGS (#26320)
filter-flags -fprefetch-loop-arrays -funroll-loops
econf $myconf || die "Configuration failed"
# Patching the Makefiles to respect get_libdir
# Fixes BUG #86766, please keep this.
# Danny van Dyk <kugelfang@gentoo.org> 2005/03/26
for x in $(find ${S} -name "Makefile") ; do
sed \
-e "s|^\(PYTHON_SITE_PACKAGES\ =\ \/usr\/\).*\(\/python.*\)|\1$(get_libdir)\2|g" \
-i ${x} \
|| die "sed failed"
done
emake || die "Copilation failed"
}
src_install() {
make DESTDIR="${D}" install || die "Installation failed"
dodoc AUTHORS ChangeLog Copyright NEWS README* TODO*
if ! use doc; then
rm -rf ${D}/usr/share/gtk-doc
rm -rf ${D}/usr/share/doc/${P}/html
fi
}
pkg_postinst() {
# need an XML catalog, so no-one writes to a non-existent one
CATALOG="${ROOT}etc/xml/catalog"
# we dont want to clobber an existing catalog though,
# only ensure that one is there
# <obz@gentoo.org>
if [ ! -e ${CATALOG} ]; then
[ -d "${ROOT}etc/xml" ] || mkdir -p "${ROOT}etc/xml"
/usr/bin/xmlcatalog --create > ${CATALOG}
einfo "Created XML catalog in ${CATALOG}"
fi
}
--
gentoo-commits@gentoo.org mailing list
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-libs/libxml2: ChangeLog libxml2-2.6.30.ebuild
@ 2007-11-16 16:57 Samuli Suominen (drac)
0 siblings, 0 replies; 8+ messages in thread
From: Samuli Suominen (drac) @ 2007-11-16 16:57 UTC (permalink / raw
To: gentoo-commits
drac 07/11/16 16:57:27
Modified: ChangeLog libxml2-2.6.30.ebuild
Log:
amd64 stable wrt #199322
(Portage version: 2.1.3.19)
Revision Changes Path
1.193 dev-libs/libxml2/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libxml2/ChangeLog?rev=1.193&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libxml2/ChangeLog?rev=1.193&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libxml2/ChangeLog?r1=1.192&r2=1.193
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libxml2/ChangeLog,v
retrieving revision 1.192
retrieving revision 1.193
diff -u -r1.192 -r1.193
--- ChangeLog 11 Sep 2007 19:56:07 -0000 1.192
+++ ChangeLog 16 Nov 2007 16:57:26 -0000 1.193
@@ -1,6 +1,9 @@
# ChangeLog for dev-libs/libxml2
# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxml2/ChangeLog,v 1.192 2007/09/11 19:56:07 leonardop Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxml2/ChangeLog,v 1.193 2007/11/16 16:57:26 drac Exp $
+
+ 16 Nov 2007; Samuli Suominen <drac@gentoo.org> libxml2-2.6.30.ebuild:
+ amd64 stable wrt #199322
*libxml2-2.6.30 (11 Sep 2007)
1.2 dev-libs/libxml2/libxml2-2.6.30.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libxml2/libxml2-2.6.30.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libxml2/libxml2-2.6.30.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libxml2/libxml2-2.6.30.ebuild?r1=1.1&r2=1.2
Index: libxml2-2.6.30.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libxml2/libxml2-2.6.30.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- libxml2-2.6.30.ebuild 11 Sep 2007 19:56:07 -0000 1.1
+++ libxml2-2.6.30.ebuild 16 Nov 2007 16:57:26 -0000 1.2
@@ -1,6 +1,6 @@
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxml2/libxml2-2.6.30.ebuild,v 1.1 2007/09/11 19:56:07 leonardop Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxml2/libxml2-2.6.30.ebuild,v 1.2 2007/11/16 16:57:26 drac Exp $
inherit libtool flag-o-matic eutils
@@ -9,7 +9,7 @@
LICENSE="MIT"
SLOT="2"
-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="debug doc ipv6 python readline test"
XSTS_HOME="http://www.w3.org/XML/2004/xml-schema-test-suite"
--
gentoo-commits@gentoo.org mailing list
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-libs/libxml2: ChangeLog libxml2-2.6.30.ebuild
@ 2007-11-17 13:11 Dawid Weglinski (cla)
0 siblings, 0 replies; 8+ messages in thread
From: Dawid Weglinski (cla) @ 2007-11-17 13:11 UTC (permalink / raw
To: gentoo-commits
cla 07/11/17 13:11:39
Modified: ChangeLog libxml2-2.6.30.ebuild
Log:
Stable on x86 wrt bug #199322
(Portage version: 2.1.3.19)
Revision Changes Path
1.194 dev-libs/libxml2/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libxml2/ChangeLog?rev=1.194&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libxml2/ChangeLog?rev=1.194&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libxml2/ChangeLog?r1=1.193&r2=1.194
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libxml2/ChangeLog,v
retrieving revision 1.193
retrieving revision 1.194
diff -u -r1.193 -r1.194
--- ChangeLog 16 Nov 2007 16:57:26 -0000 1.193
+++ ChangeLog 17 Nov 2007 13:11:39 -0000 1.194
@@ -1,6 +1,9 @@
# ChangeLog for dev-libs/libxml2
# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxml2/ChangeLog,v 1.193 2007/11/16 16:57:26 drac Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxml2/ChangeLog,v 1.194 2007/11/17 13:11:39 cla Exp $
+
+ 17 Nov 2007; Dawid Węgliński <cla@gentoo.org> libxml2-2.6.30.ebuild:
+ Stable on x86 (bug #199322)
16 Nov 2007; Samuli Suominen <drac@gentoo.org> libxml2-2.6.30.ebuild:
amd64 stable wrt #199322
1.3 dev-libs/libxml2/libxml2-2.6.30.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libxml2/libxml2-2.6.30.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libxml2/libxml2-2.6.30.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libxml2/libxml2-2.6.30.ebuild?r1=1.2&r2=1.3
Index: libxml2-2.6.30.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libxml2/libxml2-2.6.30.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- libxml2-2.6.30.ebuild 16 Nov 2007 16:57:26 -0000 1.2
+++ libxml2-2.6.30.ebuild 17 Nov 2007 13:11:39 -0000 1.3
@@ -1,6 +1,6 @@
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxml2/libxml2-2.6.30.ebuild,v 1.2 2007/11/16 16:57:26 drac Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxml2/libxml2-2.6.30.ebuild,v 1.3 2007/11/17 13:11:39 cla Exp $
inherit libtool flag-o-matic eutils
@@ -9,7 +9,7 @@
LICENSE="MIT"
SLOT="2"
-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="debug doc ipv6 python readline test"
XSTS_HOME="http://www.w3.org/XML/2004/xml-schema-test-suite"
--
gentoo-commits@gentoo.org mailing list
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-libs/libxml2: ChangeLog libxml2-2.6.30.ebuild
@ 2007-11-17 14:59 Gysbert Wassenaar (nixnut)
0 siblings, 0 replies; 8+ messages in thread
From: Gysbert Wassenaar (nixnut) @ 2007-11-17 14:59 UTC (permalink / raw
To: gentoo-commits
nixnut 07/11/17 14:59:15
Modified: ChangeLog libxml2-2.6.30.ebuild
Log:
Stable on ppc wrt bug 199322
(Portage version: 2.1.3.19)
Revision Changes Path
1.195 dev-libs/libxml2/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libxml2/ChangeLog?rev=1.195&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libxml2/ChangeLog?rev=1.195&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libxml2/ChangeLog?r1=1.194&r2=1.195
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libxml2/ChangeLog,v
retrieving revision 1.194
retrieving revision 1.195
diff -u -r1.194 -r1.195
--- ChangeLog 17 Nov 2007 13:11:39 -0000 1.194
+++ ChangeLog 17 Nov 2007 14:59:14 -0000 1.195
@@ -1,6 +1,9 @@
# ChangeLog for dev-libs/libxml2
# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxml2/ChangeLog,v 1.194 2007/11/17 13:11:39 cla Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxml2/ChangeLog,v 1.195 2007/11/17 14:59:14 nixnut Exp $
+
+ 17 Nov 2007; nixnut <nixnut@gentoo.org> libxml2-2.6.30.ebuild:
+ Stable on ppc wrt bug 199322
17 Nov 2007; Dawid Węgliński <cla@gentoo.org> libxml2-2.6.30.ebuild:
Stable on x86 (bug #199322)
1.4 dev-libs/libxml2/libxml2-2.6.30.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libxml2/libxml2-2.6.30.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libxml2/libxml2-2.6.30.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libxml2/libxml2-2.6.30.ebuild?r1=1.3&r2=1.4
Index: libxml2-2.6.30.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libxml2/libxml2-2.6.30.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- libxml2-2.6.30.ebuild 17 Nov 2007 13:11:39 -0000 1.3
+++ libxml2-2.6.30.ebuild 17 Nov 2007 14:59:14 -0000 1.4
@@ -1,6 +1,6 @@
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxml2/libxml2-2.6.30.ebuild,v 1.3 2007/11/17 13:11:39 cla Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxml2/libxml2-2.6.30.ebuild,v 1.4 2007/11/17 14:59:14 nixnut Exp $
inherit libtool flag-o-matic eutils
@@ -9,7 +9,7 @@
LICENSE="MIT"
SLOT="2"
-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="debug doc ipv6 python readline test"
XSTS_HOME="http://www.w3.org/XML/2004/xml-schema-test-suite"
--
gentoo-commits@gentoo.org mailing list
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-libs/libxml2: ChangeLog libxml2-2.6.30.ebuild
@ 2007-11-17 17:48 Raul Porcel (armin76)
0 siblings, 0 replies; 8+ messages in thread
From: Raul Porcel (armin76) @ 2007-11-17 17:48 UTC (permalink / raw
To: gentoo-commits
armin76 07/11/17 17:48:04
Modified: ChangeLog libxml2-2.6.30.ebuild
Log:
alpha/ia64/sparc stable wrt #199322
(Portage version: 2.1.3.19)
Revision Changes Path
1.196 dev-libs/libxml2/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libxml2/ChangeLog?rev=1.196&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libxml2/ChangeLog?rev=1.196&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libxml2/ChangeLog?r1=1.195&r2=1.196
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libxml2/ChangeLog,v
retrieving revision 1.195
retrieving revision 1.196
diff -u -r1.195 -r1.196
--- ChangeLog 17 Nov 2007 14:59:14 -0000 1.195
+++ ChangeLog 17 Nov 2007 17:48:03 -0000 1.196
@@ -1,6 +1,9 @@
# ChangeLog for dev-libs/libxml2
# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxml2/ChangeLog,v 1.195 2007/11/17 14:59:14 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxml2/ChangeLog,v 1.196 2007/11/17 17:48:03 armin76 Exp $
+
+ 17 Nov 2007; Raúl Porcel <armin76@gentoo.org> libxml2-2.6.30.ebuild:
+ alpha/ia64/sparc stable wrt #199322
17 Nov 2007; nixnut <nixnut@gentoo.org> libxml2-2.6.30.ebuild:
Stable on ppc wrt bug 199322
1.5 dev-libs/libxml2/libxml2-2.6.30.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libxml2/libxml2-2.6.30.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libxml2/libxml2-2.6.30.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libxml2/libxml2-2.6.30.ebuild?r1=1.4&r2=1.5
Index: libxml2-2.6.30.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libxml2/libxml2-2.6.30.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- libxml2-2.6.30.ebuild 17 Nov 2007 14:59:14 -0000 1.4
+++ libxml2-2.6.30.ebuild 17 Nov 2007 17:48:03 -0000 1.5
@@ -1,6 +1,6 @@
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxml2/libxml2-2.6.30.ebuild,v 1.4 2007/11/17 14:59:14 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxml2/libxml2-2.6.30.ebuild,v 1.5 2007/11/17 17:48:03 armin76 Exp $
inherit libtool flag-o-matic eutils
@@ -9,7 +9,7 @@
LICENSE="MIT"
SLOT="2"
-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="debug doc ipv6 python readline test"
XSTS_HOME="http://www.w3.org/XML/2004/xml-schema-test-suite"
--
gentoo-commits@gentoo.org mailing list
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-libs/libxml2: ChangeLog libxml2-2.6.30.ebuild
@ 2007-11-19 2:03 Joshua Kinard (kumba)
0 siblings, 0 replies; 8+ messages in thread
From: Joshua Kinard (kumba) @ 2007-11-19 2:03 UTC (permalink / raw
To: gentoo-commits
kumba 07/11/19 02:03:52
Modified: ChangeLog libxml2-2.6.30.ebuild
Log:
Stable on mips, per #199322.
(Portage version: 2.1.3.19)
Revision Changes Path
1.197 dev-libs/libxml2/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libxml2/ChangeLog?rev=1.197&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libxml2/ChangeLog?rev=1.197&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libxml2/ChangeLog?r1=1.196&r2=1.197
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libxml2/ChangeLog,v
retrieving revision 1.196
retrieving revision 1.197
diff -u -r1.196 -r1.197
--- ChangeLog 17 Nov 2007 17:48:03 -0000 1.196
+++ ChangeLog 19 Nov 2007 02:03:51 -0000 1.197
@@ -1,6 +1,9 @@
# ChangeLog for dev-libs/libxml2
# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxml2/ChangeLog,v 1.196 2007/11/17 17:48:03 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxml2/ChangeLog,v 1.197 2007/11/19 02:03:51 kumba Exp $
+
+ 19 Nov 2007; Joshua Kinard <kumba@gentoo.org> libxml2-2.6.30.ebuild:
+ Stable on mips, per #199322.
17 Nov 2007; Raúl Porcel <armin76@gentoo.org> libxml2-2.6.30.ebuild:
alpha/ia64/sparc stable wrt #199322
1.6 dev-libs/libxml2/libxml2-2.6.30.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libxml2/libxml2-2.6.30.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libxml2/libxml2-2.6.30.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libxml2/libxml2-2.6.30.ebuild?r1=1.5&r2=1.6
Index: libxml2-2.6.30.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libxml2/libxml2-2.6.30.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- libxml2-2.6.30.ebuild 17 Nov 2007 17:48:03 -0000 1.5
+++ libxml2-2.6.30.ebuild 19 Nov 2007 02:03:51 -0000 1.6
@@ -1,6 +1,6 @@
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxml2/libxml2-2.6.30.ebuild,v 1.5 2007/11/17 17:48:03 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxml2/libxml2-2.6.30.ebuild,v 1.6 2007/11/19 02:03:51 kumba Exp $
inherit libtool flag-o-matic eutils
@@ -9,7 +9,7 @@
LICENSE="MIT"
SLOT="2"
-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="debug doc ipv6 python readline test"
XSTS_HOME="http://www.w3.org/XML/2004/xml-schema-test-suite"
--
gentoo-commits@gentoo.org mailing list
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-libs/libxml2: ChangeLog libxml2-2.6.30.ebuild
@ 2007-11-20 19:04 Markus Rothe (corsair)
0 siblings, 0 replies; 8+ messages in thread
From: Markus Rothe (corsair) @ 2007-11-20 19:04 UTC (permalink / raw
To: gentoo-commits
corsair 07/11/20 19:04:40
Modified: ChangeLog libxml2-2.6.30.ebuild
Log:
Stable on ppc64; bug #199322
(Portage version: 2.1.3.19)
Revision Changes Path
1.198 dev-libs/libxml2/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libxml2/ChangeLog?rev=1.198&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libxml2/ChangeLog?rev=1.198&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libxml2/ChangeLog?r1=1.197&r2=1.198
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libxml2/ChangeLog,v
retrieving revision 1.197
retrieving revision 1.198
diff -u -r1.197 -r1.198
--- ChangeLog 19 Nov 2007 02:03:51 -0000 1.197
+++ ChangeLog 20 Nov 2007 19:04:40 -0000 1.198
@@ -1,6 +1,9 @@
# ChangeLog for dev-libs/libxml2
# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxml2/ChangeLog,v 1.197 2007/11/19 02:03:51 kumba Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxml2/ChangeLog,v 1.198 2007/11/20 19:04:40 corsair Exp $
+
+ 20 Nov 2007; Markus Rothe <corsair@gentoo.org> libxml2-2.6.30.ebuild:
+ Stable on ppc64; bug #199322
19 Nov 2007; Joshua Kinard <kumba@gentoo.org> libxml2-2.6.30.ebuild:
Stable on mips, per #199322.
1.7 dev-libs/libxml2/libxml2-2.6.30.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libxml2/libxml2-2.6.30.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libxml2/libxml2-2.6.30.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libxml2/libxml2-2.6.30.ebuild?r1=1.6&r2=1.7
Index: libxml2-2.6.30.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libxml2/libxml2-2.6.30.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- libxml2-2.6.30.ebuild 19 Nov 2007 02:03:51 -0000 1.6
+++ libxml2-2.6.30.ebuild 20 Nov 2007 19:04:40 -0000 1.7
@@ -1,6 +1,6 @@
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxml2/libxml2-2.6.30.ebuild,v 1.6 2007/11/19 02:03:51 kumba Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxml2/libxml2-2.6.30.ebuild,v 1.7 2007/11/20 19:04:40 corsair Exp $
inherit libtool flag-o-matic eutils
@@ -9,7 +9,7 @@
LICENSE="MIT"
SLOT="2"
-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="debug doc ipv6 python readline test"
XSTS_HOME="http://www.w3.org/XML/2004/xml-schema-test-suite"
--
gentoo-commits@gentoo.org mailing list
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-libs/libxml2: ChangeLog libxml2-2.6.30.ebuild
@ 2007-11-27 3:34 Jeroen Roovers (jer)
0 siblings, 0 replies; 8+ messages in thread
From: Jeroen Roovers (jer) @ 2007-11-27 3:34 UTC (permalink / raw
To: gentoo-commits
jer 07/11/27 03:34:57
Modified: ChangeLog libxml2-2.6.30.ebuild
Log:
Stable for HPPA (bug #199322).
(Portage version: 2.1.4_rc3)
Revision Changes Path
1.199 dev-libs/libxml2/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libxml2/ChangeLog?rev=1.199&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libxml2/ChangeLog?rev=1.199&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libxml2/ChangeLog?r1=1.198&r2=1.199
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libxml2/ChangeLog,v
retrieving revision 1.198
retrieving revision 1.199
diff -u -r1.198 -r1.199
--- ChangeLog 20 Nov 2007 19:04:40 -0000 1.198
+++ ChangeLog 27 Nov 2007 03:34:56 -0000 1.199
@@ -1,6 +1,9 @@
# ChangeLog for dev-libs/libxml2
# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxml2/ChangeLog,v 1.198 2007/11/20 19:04:40 corsair Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxml2/ChangeLog,v 1.199 2007/11/27 03:34:56 jer Exp $
+
+ 27 Nov 2007; Jeroen Roovers <jer@gentoo.org> libxml2-2.6.30.ebuild:
+ Stable for HPPA (bug #199322).
20 Nov 2007; Markus Rothe <corsair@gentoo.org> libxml2-2.6.30.ebuild:
Stable on ppc64; bug #199322
1.8 dev-libs/libxml2/libxml2-2.6.30.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libxml2/libxml2-2.6.30.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libxml2/libxml2-2.6.30.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libxml2/libxml2-2.6.30.ebuild?r1=1.7&r2=1.8
Index: libxml2-2.6.30.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libxml2/libxml2-2.6.30.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- libxml2-2.6.30.ebuild 20 Nov 2007 19:04:40 -0000 1.7
+++ libxml2-2.6.30.ebuild 27 Nov 2007 03:34:56 -0000 1.8
@@ -1,6 +1,6 @@
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxml2/libxml2-2.6.30.ebuild,v 1.7 2007/11/20 19:04:40 corsair Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxml2/libxml2-2.6.30.ebuild,v 1.8 2007/11/27 03:34:56 jer Exp $
inherit libtool flag-o-matic eutils
@@ -9,7 +9,7 @@
LICENSE="MIT"
SLOT="2"
-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="debug doc ipv6 python readline test"
XSTS_HOME="http://www.w3.org/XML/2004/xml-schema-test-suite"
@@ -37,7 +37,7 @@
if use test; then
cp ${DISTDIR}/${XSTS_TARBALL_1} \
${DISTDIR}/${XSTS_TARBALL_2} \
- ${S}/xstc/ \
+ "${S}"/xstc/ \
|| die "Failed to install test tarballs"
fi
@@ -73,7 +73,7 @@
# Patching the Makefiles to respect get_libdir
# Fixes BUG #86766, please keep this.
# Danny van Dyk <kugelfang@gentoo.org> 2005/03/26
- for x in $(find ${S} -name "Makefile") ; do
+ for x in $(find "${S}" -name "Makefile") ; do
sed \
-e "s|^\(PYTHON_SITE_PACKAGES\ =\ \/usr\/\).*\(\/python.*\)|\1$(get_libdir)\2|g" \
-i ${x} \
@@ -89,8 +89,8 @@
dodoc AUTHORS ChangeLog Copyright NEWS README* TODO*
if ! use doc; then
- rm -rf ${D}/usr/share/gtk-doc
- rm -rf ${D}/usr/share/doc/${P}/html
+ rm -rf "${D}"/usr/share/gtk-doc
+ rm -rf "${D}"/usr/share/doc/${P}/html
fi
}
--
gentoo-commits@gentoo.org mailing list
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2007-11-27 3:35 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-11-16 16:57 [gentoo-commits] gentoo-x86 commit in dev-libs/libxml2: ChangeLog libxml2-2.6.30.ebuild Samuli Suominen (drac)
-- strict thread matches above, loose matches on Subject: below --
2007-11-27 3:34 Jeroen Roovers (jer)
2007-11-20 19:04 Markus Rothe (corsair)
2007-11-19 2:03 Joshua Kinard (kumba)
2007-11-17 17:48 Raul Porcel (armin76)
2007-11-17 14:59 Gysbert Wassenaar (nixnut)
2007-11-17 13:11 Dawid Weglinski (cla)
2007-09-11 19:56 Leonardo Boshell (leonardop)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox