* [gentoo-commits] gentoo-x86 commit in dev-libs/libxml2: ChangeLog libxml2-2.7.7.ebuild
@ 2010-03-18 12:59 Samuli Suominen (ssuominen)
0 siblings, 0 replies; 9+ messages in thread
From: Samuli Suominen (ssuominen) @ 2010-03-18 12:59 UTC (permalink / raw
To: gentoo-commits
ssuominen 10/03/18 12:59:11
Modified: ChangeLog
Added: libxml2-2.7.7.ebuild
Log:
Version bump wrt #309723.
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Revision Changes Path
1.279 dev-libs/libxml2/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libxml2/ChangeLog?rev=1.279&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libxml2/ChangeLog?rev=1.279&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libxml2/ChangeLog?r1=1.278&r2=1.279
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libxml2/ChangeLog,v
retrieving revision 1.278
retrieving revision 1.279
diff -u -r1.278 -r1.279
--- ChangeLog 18 Mar 2010 12:42:17 -0000 1.278
+++ ChangeLog 18 Mar 2010 12:59:10 -0000 1.279
@@ -1,6 +1,11 @@
# ChangeLog for dev-libs/libxml2
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxml2/ChangeLog,v 1.278 2010/03/18 12:42:17 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxml2/ChangeLog,v 1.279 2010/03/18 12:59:10 ssuominen Exp $
+
+*libxml2-2.7.7 (18 Mar 2010)
+
+ 18 Mar 2010; Samuli Suominen <ssuominen@gentoo.org> +libxml2-2.7.7.ebuild:
+ Version bump wrt #309723.
18 Mar 2010; Markos Chandras <hwoarang@gentoo.org> libxml2-2.7.6.ebuild:
Stable on amd64 wrt bug #309949
1.1 dev-libs/libxml2/libxml2-2.7.7.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libxml2/libxml2-2.7.7.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libxml2/libxml2-2.7.7.ebuild?rev=1.1&content-type=text/plain
Index: libxml2-2.7.7.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxml2/libxml2-2.7.7.ebuild,v 1.1 2010/03/18 12:59:10 ssuominen Exp $
EAPI="2"
inherit libtool flag-o-matic eutils python
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 ~x86 ~sparc-fbsd ~x86-fbsd"
IUSE="debug doc examples 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="xmlschema2004-01-14"
XSTS_TARBALL_1="xsts-2002-01-16.tar.gz"
XSTS_TARBALL_2="xsts-2004-01-14.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-3 )
readline? ( sys-libs/readline )"
DEPEND="${RDEPEND}
hppa? ( >=sys-devel/binutils-2.15.92.0.2 )"
src_unpack() {
# ${A} isn't used to avoid unpacking of test tarballs into $WORKDIR,
# as they are needed as tarballs in ${S}/xstc instead and not unpacked
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
}
src_prepare() {
epunt_cxx
# Please do not remove, as else we get references to PORTAGE_TMPDIR
# in /usr/lib/python?.?/site-packages/libxml2mod.la among things.
elibtoolize
}
src_configure() {
# 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
--with-html-subdir=${PF}/html
--docdir=/usr/share/doc/${PF}
$(use_with debug run-debug)
$(use_with python)
$(use_with readline)
$(use_with readline history)
$(use_enable ipv6)
PYTHON_SITE_PACKAGES=$(python_get_sitedir)"
# filter seemingly problematic CFLAGS (#26320)
filter-flags -fprefetch-loop-arrays -funroll-loops
econf ${myconf}
}
src_install() {
emake DESTDIR="${D}" \
EXAMPLES_DIR=/usr/share/doc/${PF}/examples \
docsdir=/usr/share/doc/${PF}/python \
exampledir=/usr/share/doc/${PF}/python/examples \
install || die "Installation failed"
rm -rf "${D}"/usr/share/doc/${P}
dodoc AUTHORS ChangeLog Copyright NEWS README* TODO* || die "dodoc failed"
if ! use python; then
rm -rf "${D}"/usr/share/doc/${PF}/python
rm -rf "${D}"/usr/share/doc/${PN}-python-${PV}
fi
if ! use doc; then
rm -rf "${D}"/usr/share/gtk-doc
rm -rf "${D}"/usr/share/doc/${PF}/html
fi
if ! use examples; then
rm -rf "${D}/usr/share/doc/${PF}/examples"
rm -rf "${D}/usr/share/doc/${PF}/python/examples"
fi
}
pkg_postinst() {
if use python; then
python_need_rebuild
python_mod_optimize $(python_get_sitedir)
fi
# We don't want to do the xmlcatalog during stage1, as xmlcatalog will not
# be in / and stage1 builds to ROOT=/tmp/stage1root. This fixes bug #208887.
if [ "${ROOT}" != "/" ]
then
elog "Skipping XML catalog creation for stage building (bug #208887)."
else
# 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
fi
}
pkg_postrm() {
python_mod_cleanup /usr/$(get_libdir)/python*/site-packages
}
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-libs/libxml2: ChangeLog libxml2-2.7.7.ebuild
@ 2010-05-04 10:16 Christoph Mende (angelos)
0 siblings, 0 replies; 9+ messages in thread
From: Christoph Mende (angelos) @ 2010-05-04 10:16 UTC (permalink / raw
To: gentoo-commits
angelos 10/05/04 10:16:18
Modified: ChangeLog libxml2-2.7.7.ebuild
Log:
amd64 stable, thanks to Roeland Douma (bug #317819)
(Portage version: 2.1.8.3/cvs/Linux i686)
Revision Changes Path
1.285 dev-libs/libxml2/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libxml2/ChangeLog?rev=1.285&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libxml2/ChangeLog?rev=1.285&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libxml2/ChangeLog?r1=1.284&r2=1.285
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libxml2/ChangeLog,v
retrieving revision 1.284
retrieving revision 1.285
diff -u -r1.284 -r1.285
--- ChangeLog 24 Apr 2010 19:02:44 -0000 1.284
+++ ChangeLog 4 May 2010 10:16:18 -0000 1.285
@@ -1,6 +1,9 @@
# ChangeLog for dev-libs/libxml2
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxml2/ChangeLog,v 1.284 2010/04/24 19:02:44 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxml2/ChangeLog,v 1.285 2010/05/04 10:16:18 angelos Exp $
+
+ 04 May 2010; <angelos@gentoo.org> libxml2-2.7.7.ebuild:
+ amd64 stable, thanks to Roeland Douma (bug #317819)
24 Apr 2010; Raúl Porcel <armin76@gentoo.org> libxml2-2.7.6.ebuild:
alpha/arm/ia64/m68k/s390/sh/sparc stable wrt #309949
1.4 dev-libs/libxml2/libxml2-2.7.7.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libxml2/libxml2-2.7.7.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libxml2/libxml2-2.7.7.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libxml2/libxml2-2.7.7.ebuild?r1=1.3&r2=1.4
Index: libxml2-2.7.7.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libxml2/libxml2-2.7.7.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- libxml2-2.7.7.ebuild 7 Apr 2010 21:16:18 -0000 1.3
+++ libxml2-2.7.7.ebuild 4 May 2010 10:16:18 -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-libs/libxml2/libxml2-2.7.7.ebuild,v 1.3 2010/04/07 21:16:18 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxml2/libxml2-2.7.7.ebuild,v 1.4 2010/05/04 10:16:18 angelos Exp $
EAPI="2"
SUPPORT_PYTHON_ABIS="1"
@@ -13,7 +13,7 @@
LICENSE="MIT"
SLOT="2"
-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="debug doc examples ipv6 python readline test"
XSTS_HOME="http://www.w3.org/XML/2004/xml-schema-test-suite"
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-libs/libxml2: ChangeLog libxml2-2.7.7.ebuild
@ 2010-05-10 18:51 Gysbert Wassenaar (nixnut)
0 siblings, 0 replies; 9+ messages in thread
From: Gysbert Wassenaar (nixnut) @ 2010-05-10 18:51 UTC (permalink / raw
To: gentoo-commits
nixnut 10/05/10 18:51:39
Modified: ChangeLog libxml2-2.7.7.ebuild
Log:
ppc stable #317819
(Portage version: 2.1.7.17/cvs/Linux ppc)
Revision Changes Path
1.286 dev-libs/libxml2/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libxml2/ChangeLog?rev=1.286&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libxml2/ChangeLog?rev=1.286&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libxml2/ChangeLog?r1=1.285&r2=1.286
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libxml2/ChangeLog,v
retrieving revision 1.285
retrieving revision 1.286
diff -u -r1.285 -r1.286
--- ChangeLog 4 May 2010 10:16:18 -0000 1.285
+++ ChangeLog 10 May 2010 18:51:39 -0000 1.286
@@ -1,6 +1,9 @@
# ChangeLog for dev-libs/libxml2
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxml2/ChangeLog,v 1.285 2010/05/04 10:16:18 angelos Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxml2/ChangeLog,v 1.286 2010/05/10 18:51:39 nixnut Exp $
+
+ 10 May 2010; nixnut <nixnut@gentoo.org> libxml2-2.7.7.ebuild:
+ ppc stable #317819
04 May 2010; <angelos@gentoo.org> libxml2-2.7.7.ebuild:
amd64 stable, thanks to Roeland Douma (bug #317819)
1.5 dev-libs/libxml2/libxml2-2.7.7.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libxml2/libxml2-2.7.7.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libxml2/libxml2-2.7.7.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libxml2/libxml2-2.7.7.ebuild?r1=1.4&r2=1.5
Index: libxml2-2.7.7.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libxml2/libxml2-2.7.7.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- libxml2-2.7.7.ebuild 4 May 2010 10:16:18 -0000 1.4
+++ libxml2-2.7.7.ebuild 10 May 2010 18:51:39 -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-libs/libxml2/libxml2-2.7.7.ebuild,v 1.4 2010/05/04 10:16:18 angelos Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxml2/libxml2-2.7.7.ebuild,v 1.5 2010/05/10 18:51:39 nixnut Exp $
EAPI="2"
SUPPORT_PYTHON_ABIS="1"
@@ -13,7 +13,7 @@
LICENSE="MIT"
SLOT="2"
-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="debug doc examples ipv6 python readline test"
XSTS_HOME="http://www.w3.org/XML/2004/xml-schema-test-suite"
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-libs/libxml2: ChangeLog libxml2-2.7.7.ebuild
@ 2010-05-11 13:17 PaweA Hajdan (phajdan.jr)
0 siblings, 0 replies; 9+ messages in thread
From: PaweA Hajdan (phajdan.jr) @ 2010-05-11 13:17 UTC (permalink / raw
To: gentoo-commits
phajdan.jr 10/05/11 13:17:18
Modified: ChangeLog libxml2-2.7.7.ebuild
Log:
x86 stable wrt bug #317819
(Portage version: 2.1.8.3/cvs/Linux i686)
Revision Changes Path
1.287 dev-libs/libxml2/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libxml2/ChangeLog?rev=1.287&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libxml2/ChangeLog?rev=1.287&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libxml2/ChangeLog?r1=1.286&r2=1.287
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libxml2/ChangeLog,v
retrieving revision 1.286
retrieving revision 1.287
diff -u -r1.286 -r1.287
--- ChangeLog 10 May 2010 18:51:39 -0000 1.286
+++ ChangeLog 11 May 2010 13:17:18 -0000 1.287
@@ -1,6 +1,9 @@
# ChangeLog for dev-libs/libxml2
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxml2/ChangeLog,v 1.286 2010/05/10 18:51:39 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxml2/ChangeLog,v 1.287 2010/05/11 13:17:18 phajdan.jr Exp $
+
+ 11 May 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org> libxml2-2.7.7.ebuild:
+ x86 stable wrt bug #317819
10 May 2010; nixnut <nixnut@gentoo.org> libxml2-2.7.7.ebuild:
ppc stable #317819
1.6 dev-libs/libxml2/libxml2-2.7.7.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libxml2/libxml2-2.7.7.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libxml2/libxml2-2.7.7.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libxml2/libxml2-2.7.7.ebuild?r1=1.5&r2=1.6
Index: libxml2-2.7.7.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libxml2/libxml2-2.7.7.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- libxml2-2.7.7.ebuild 10 May 2010 18:51:39 -0000 1.5
+++ libxml2-2.7.7.ebuild 11 May 2010 13:17:18 -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-libs/libxml2/libxml2-2.7.7.ebuild,v 1.5 2010/05/10 18:51:39 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxml2/libxml2-2.7.7.ebuild,v 1.6 2010/05/11 13:17:18 phajdan.jr Exp $
EAPI="2"
SUPPORT_PYTHON_ABIS="1"
@@ -13,7 +13,7 @@
LICENSE="MIT"
SLOT="2"
-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="debug doc examples ipv6 python readline test"
XSTS_HOME="http://www.w3.org/XML/2004/xml-schema-test-suite"
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-libs/libxml2: ChangeLog libxml2-2.7.7.ebuild
@ 2010-05-11 21:26 Brent Baude (ranger)
0 siblings, 0 replies; 9+ messages in thread
From: Brent Baude (ranger) @ 2010-05-11 21:26 UTC (permalink / raw
To: gentoo-commits
ranger 10/05/11 21:26:13
Modified: ChangeLog libxml2-2.7.7.ebuild
Log:
stable ppc64, bug 317819
(Portage version: 2.1.8.3/cvs/Linux ppc64)
Revision Changes Path
1.288 dev-libs/libxml2/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libxml2/ChangeLog?rev=1.288&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libxml2/ChangeLog?rev=1.288&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libxml2/ChangeLog?r1=1.287&r2=1.288
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libxml2/ChangeLog,v
retrieving revision 1.287
retrieving revision 1.288
diff -u -r1.287 -r1.288
--- ChangeLog 11 May 2010 13:17:18 -0000 1.287
+++ ChangeLog 11 May 2010 21:26:13 -0000 1.288
@@ -1,6 +1,9 @@
# ChangeLog for dev-libs/libxml2
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxml2/ChangeLog,v 1.287 2010/05/11 13:17:18 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxml2/ChangeLog,v 1.288 2010/05/11 21:26:13 ranger Exp $
+
+ 11 May 2010; Brent Baude <ranger@gentoo.org> libxml2-2.7.7.ebuild:
+ stable ppc64, bug 317819
11 May 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org> libxml2-2.7.7.ebuild:
x86 stable wrt bug #317819
1.7 dev-libs/libxml2/libxml2-2.7.7.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libxml2/libxml2-2.7.7.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libxml2/libxml2-2.7.7.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libxml2/libxml2-2.7.7.ebuild?r1=1.6&r2=1.7
Index: libxml2-2.7.7.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libxml2/libxml2-2.7.7.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- libxml2-2.7.7.ebuild 11 May 2010 13:17:18 -0000 1.6
+++ libxml2-2.7.7.ebuild 11 May 2010 21:26:13 -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-libs/libxml2/libxml2-2.7.7.ebuild,v 1.6 2010/05/11 13:17:18 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxml2/libxml2-2.7.7.ebuild,v 1.7 2010/05/11 21:26:13 ranger Exp $
EAPI="2"
SUPPORT_PYTHON_ABIS="1"
@@ -13,7 +13,7 @@
LICENSE="MIT"
SLOT="2"
-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="debug doc examples ipv6 python readline test"
XSTS_HOME="http://www.w3.org/XML/2004/xml-schema-test-suite"
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-libs/libxml2: ChangeLog libxml2-2.7.7.ebuild
@ 2010-05-14 4:00 Robin H. Johnson (robbat2)
0 siblings, 0 replies; 9+ messages in thread
From: Robin H. Johnson (robbat2) @ 2010-05-14 4:00 UTC (permalink / raw
To: gentoo-commits
robbat2 10/05/14 04:00:00
Modified: ChangeLog libxml2-2.7.7.ebuild
Log:
Fix so that the catalyst autobuilds can continue safely. If the Python binary is not present in $ROOT, python_execute_function returns successfully but silently, WITHOUT running the command (with disasterous side-effects).
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Revision Changes Path
1.289 dev-libs/libxml2/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libxml2/ChangeLog?rev=1.289&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libxml2/ChangeLog?rev=1.289&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libxml2/ChangeLog?r1=1.288&r2=1.289
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libxml2/ChangeLog,v
retrieving revision 1.288
retrieving revision 1.289
diff -p -w -b -B -u -u -r1.288 -r1.289
--- ChangeLog 11 May 2010 21:26:13 -0000 1.288
+++ ChangeLog 14 May 2010 03:59:59 -0000 1.289
@@ -1,6 +1,6 @@
# ChangeLog for dev-libs/libxml2
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxml2/ChangeLog,v 1.288 2010/05/11 21:26:13 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxml2/ChangeLog,v 1.289 2010/05/14 03:59:59 robbat2 Exp $
11 May 2010; Brent Baude <ranger@gentoo.org> libxml2-2.7.7.ebuild:
stable ppc64, bug 317819
@@ -8,6 +8,12 @@
11 May 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org> libxml2-2.7.7.ebuild:
x86 stable wrt bug #317819
+ 14 May 2010; Robin H. Johnson <robbat2@gentoo.org> libxml2-2.7.7.ebuild:
+ Fix so that the catalyst autobuilds can continue safely. If the Python
+ binary is not present in $ROOT, python_execute_function returns
+ successfully but silently, WITHOUT running the command (with disasterous
+ side-effects).
+
10 May 2010; nixnut <nixnut@gentoo.org> libxml2-2.7.7.ebuild:
ppc stable #317819
1.8 dev-libs/libxml2/libxml2-2.7.7.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libxml2/libxml2-2.7.7.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libxml2/libxml2-2.7.7.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libxml2/libxml2-2.7.7.ebuild?r1=1.7&r2=1.8
Index: libxml2-2.7.7.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libxml2/libxml2-2.7.7.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -p -w -b -B -u -u -r1.7 -r1.8
--- libxml2-2.7.7.ebuild 11 May 2010 21:26:13 -0000 1.7
+++ libxml2-2.7.7.ebuild 14 May 2010 03:59:59 -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-libs/libxml2/libxml2-2.7.7.ebuild,v 1.7 2010/05/11 21:26:13 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxml2/libxml2-2.7.7.ebuild,v 1.8 2010/05/14 03:59:59 robbat2 Exp $
EAPI="2"
SUPPORT_PYTHON_ABIS="1"
@@ -81,7 +81,15 @@ src_configure() {
# filter seemingly problematic CFLAGS (#26320)
filter-flags -fprefetch-loop-arrays -funroll-loops
+ # This ebuild is critical during preparation of a stage1 build.
+ # If the Python binary is not present in $ROOT, python_execute_function
+ # returns successfully but silently, WITHOUT running the command (with
+ # disasterous side-effects).
+ if use python; then
python_execute_function -f -q econf ${myconf}
+ else
+ econf ${myconf}
+ fi
}
src_compile() {
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-libs/libxml2: ChangeLog libxml2-2.7.7.ebuild
@ 2010-05-17 20:19 Jeroen Roovers (jer)
0 siblings, 0 replies; 9+ messages in thread
From: Jeroen Roovers (jer) @ 2010-05-17 20:19 UTC (permalink / raw
To: gentoo-commits
jer 10/05/17 20:19:40
Modified: ChangeLog libxml2-2.7.7.ebuild
Log:
Stable for HPPA (bug #317819).
(Portage version: 2.2_rc67/cvs/Linux i686)
Revision Changes Path
1.291 dev-libs/libxml2/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libxml2/ChangeLog?rev=1.291&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libxml2/ChangeLog?rev=1.291&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libxml2/ChangeLog?r1=1.290&r2=1.291
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libxml2/ChangeLog,v
retrieving revision 1.290
retrieving revision 1.291
diff -u -r1.290 -r1.291
--- ChangeLog 14 May 2010 08:16:34 -0000 1.290
+++ ChangeLog 17 May 2010 20:19:40 -0000 1.291
@@ -1,6 +1,9 @@
# ChangeLog for dev-libs/libxml2
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxml2/ChangeLog,v 1.290 2010/05/14 08:16:34 robbat2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxml2/ChangeLog,v 1.291 2010/05/17 20:19:40 jer Exp $
+
+ 17 May 2010; Jeroen Roovers <jer@gentoo.org> libxml2-2.7.7.ebuild:
+ Stable for HPPA (bug #317819).
14 May 2010; Robin H. Johnson <robbat2@gentoo.org> libxml2-2.7.7.ebuild:
Fix so that the catalyst autobuilds can continue safely. If the Python
1.10 dev-libs/libxml2/libxml2-2.7.7.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libxml2/libxml2-2.7.7.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libxml2/libxml2-2.7.7.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libxml2/libxml2-2.7.7.ebuild?r1=1.9&r2=1.10
Index: libxml2-2.7.7.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libxml2/libxml2-2.7.7.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- libxml2-2.7.7.ebuild 17 May 2010 18:18:21 -0000 1.9
+++ libxml2-2.7.7.ebuild 17 May 2010 20:19:40 -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-libs/libxml2/libxml2-2.7.7.ebuild,v 1.9 2010/05/17 18:18:21 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxml2/libxml2-2.7.7.ebuild,v 1.10 2010/05/17 20:19:40 jer Exp $
EAPI="2"
SUPPORT_PYTHON_ABIS="1"
@@ -13,7 +13,7 @@
LICENSE="MIT"
SLOT="2"
-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="debug doc examples ipv6 python readline test"
XSTS_HOME="http://www.w3.org/XML/2004/xml-schema-test-suite"
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-libs/libxml2: ChangeLog libxml2-2.7.7.ebuild
@ 2010-05-30 17:36 Raul Porcel (armin76)
0 siblings, 0 replies; 9+ messages in thread
From: Raul Porcel (armin76) @ 2010-05-30 17:36 UTC (permalink / raw
To: gentoo-commits
armin76 10/05/30 17:36:55
Modified: ChangeLog libxml2-2.7.7.ebuild
Log:
alpha/arm/ia64/m68k/s390/sh/sparc stable wrt #317819
(Portage version: 2.1.8.3/cvs/Linux ia64)
Revision Changes Path
1.292 dev-libs/libxml2/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libxml2/ChangeLog?rev=1.292&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libxml2/ChangeLog?rev=1.292&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libxml2/ChangeLog?r1=1.291&r2=1.292
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libxml2/ChangeLog,v
retrieving revision 1.291
retrieving revision 1.292
diff -u -r1.291 -r1.292
--- ChangeLog 17 May 2010 20:19:40 -0000 1.291
+++ ChangeLog 30 May 2010 17:36:55 -0000 1.292
@@ -1,6 +1,9 @@
# ChangeLog for dev-libs/libxml2
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxml2/ChangeLog,v 1.291 2010/05/17 20:19:40 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxml2/ChangeLog,v 1.292 2010/05/30 17:36:55 armin76 Exp $
+
+ 30 May 2010; Raúl Porcel <armin76@gentoo.org> libxml2-2.7.7.ebuild:
+ alpha/arm/ia64/m68k/s390/sh/sparc stable wrt #317819
17 May 2010; Jeroen Roovers <jer@gentoo.org> libxml2-2.7.7.ebuild:
Stable for HPPA (bug #317819).
1.11 dev-libs/libxml2/libxml2-2.7.7.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libxml2/libxml2-2.7.7.ebuild?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libxml2/libxml2-2.7.7.ebuild?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libxml2/libxml2-2.7.7.ebuild?r1=1.10&r2=1.11
Index: libxml2-2.7.7.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libxml2/libxml2-2.7.7.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- libxml2-2.7.7.ebuild 17 May 2010 20:19:40 -0000 1.10
+++ libxml2-2.7.7.ebuild 30 May 2010 17:36:55 -0000 1.11
@@ -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-libs/libxml2/libxml2-2.7.7.ebuild,v 1.10 2010/05/17 20:19:40 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxml2/libxml2-2.7.7.ebuild,v 1.11 2010/05/30 17:36:55 armin76 Exp $
EAPI="2"
SUPPORT_PYTHON_ABIS="1"
@@ -13,7 +13,7 @@
LICENSE="MIT"
SLOT="2"
-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="debug doc examples ipv6 python readline test"
XSTS_HOME="http://www.w3.org/XML/2004/xml-schema-test-suite"
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-libs/libxml2: ChangeLog libxml2-2.7.7.ebuild
@ 2010-12-31 23:49 Arfrever Frehtes Taifersar Arahesis (arfrever)
0 siblings, 0 replies; 9+ messages in thread
From: Arfrever Frehtes Taifersar Arahesis (arfrever) @ 2010-12-31 23:49 UTC (permalink / raw
To: gentoo-commits
arfrever 10/12/31 23:49:15
Modified: ChangeLog libxml2-2.7.7.ebuild
Log:
Restrict Jython ABIs.
(Portage version: 2.2.0_alpha11_p1/cvs/Linux x86_64)
Revision Changes Path
1.295 dev-libs/libxml2/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libxml2/ChangeLog?rev=1.295&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libxml2/ChangeLog?rev=1.295&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libxml2/ChangeLog?r1=1.294&r2=1.295
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libxml2/ChangeLog,v
retrieving revision 1.294
retrieving revision 1.295
diff -u -r1.294 -r1.295
--- ChangeLog 9 Aug 2010 04:09:07 -0000 1.294
+++ ChangeLog 31 Dec 2010 23:49:15 -0000 1.295
@@ -1,6 +1,10 @@
# ChangeLog for dev-libs/libxml2
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxml2/ChangeLog,v 1.294 2010/08/09 04:09:07 zmedico Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxml2/ChangeLog,v 1.295 2010/12/31 23:49:15 arfrever Exp $
+
+ 31 Dec 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
+ libxml2-2.7.7.ebuild:
+ Restrict Jython ABIs.
09 Aug 2010; Zac Medico <zmedico@gentoo.org> libxml2-2.7.6.ebuild,
libxml2-2.7.7.ebuild:
1.14 dev-libs/libxml2/libxml2-2.7.7.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libxml2/libxml2-2.7.7.ebuild?rev=1.14&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libxml2/libxml2-2.7.7.ebuild?rev=1.14&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libxml2/libxml2-2.7.7.ebuild?r1=1.13&r2=1.14
Index: libxml2-2.7.7.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libxml2/libxml2-2.7.7.ebuild,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- libxml2-2.7.7.ebuild 9 Aug 2010 04:09:07 -0000 1.13
+++ libxml2-2.7.7.ebuild 31 Dec 2010 23:49:15 -0000 1.14
@@ -1,10 +1,10 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxml2/libxml2-2.7.7.ebuild,v 1.13 2010/08/09 04:09:07 zmedico Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxml2/libxml2-2.7.7.ebuild,v 1.14 2010/12/31 23:49:15 arfrever Exp $
EAPI="2"
SUPPORT_PYTHON_ABIS="1"
-RESTRICT_PYTHON_ABIS="3.*"
+RESTRICT_PYTHON_ABIS="3.* *-jython"
inherit libtool flag-o-matic eutils python
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2010-12-31 23:49 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-05-17 20:19 [gentoo-commits] gentoo-x86 commit in dev-libs/libxml2: ChangeLog libxml2-2.7.7.ebuild Jeroen Roovers (jer)
-- strict thread matches above, loose matches on Subject: below --
2010-12-31 23:49 Arfrever Frehtes Taifersar Arahesis (arfrever)
2010-05-30 17:36 Raul Porcel (armin76)
2010-05-14 4:00 Robin H. Johnson (robbat2)
2010-05-11 21:26 Brent Baude (ranger)
2010-05-11 13:17 PaweA Hajdan (phajdan.jr)
2010-05-10 18:51 Gysbert Wassenaar (nixnut)
2010-05-04 10:16 Christoph Mende (angelos)
2010-03-18 12:59 Samuli Suominen (ssuominen)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox