public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-python/lxml: ChangeLog lxml-3.3.5.ebuild
@ 2014-04-25  5:03 Tim Harder (radhermit)
  0 siblings, 0 replies; 4+ messages in thread
From: Tim Harder (radhermit) @ 2014-04-25  5:03 UTC (permalink / raw
  To: gentoo-commits

radhermit    14/04/25 05:03:39

  Modified:             ChangeLog
  Added:                lxml-3.3.5.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)

Revision  Changes    Path
1.190                dev-python/lxml/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/lxml/ChangeLog?rev=1.190&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/lxml/ChangeLog?rev=1.190&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/lxml/ChangeLog?r1=1.189&r2=1.190

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/lxml/ChangeLog,v
retrieving revision 1.189
retrieving revision 1.190
diff -u -r1.189 -r1.190
--- ChangeLog	2 Apr 2014 21:15:29 -0000	1.189
+++ ChangeLog	25 Apr 2014 05:03:39 -0000	1.190
@@ -1,6 +1,11 @@
 # ChangeLog for dev-python/lxml
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/lxml/ChangeLog,v 1.189 2014/04/02 21:15:29 chutzpah Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/lxml/ChangeLog,v 1.190 2014/04/25 05:03:39 radhermit Exp $
+
+*lxml-3.3.5 (25 Apr 2014)
+
+  25 Apr 2014; Tim Harder <radhermit@gentoo.org> +lxml-3.3.5.ebuild:
+  Version bump.
 
   02 Apr 2014; Patrick McLean <chutzpah@gentoo.org> lxml-3.3.3.ebuild:
   Add python3_4 support.



1.1                  dev-python/lxml/lxml-3.3.5.ebuild

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

Index: lxml-3.3.5.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/lxml/lxml-3.3.5.ebuild,v 1.1 2014/04/25 05:03:39 radhermit Exp $

EAPI=5

PYTHON_COMPAT=( python{2_6,2_7,3_{2,3,4}} )
inherit distutils-r1 flag-o-matic

DESCRIPTION="A Pythonic binding for the libxml2 and libxslt libraries"
HOMEPAGE="http://lxml.de/ http://pypi.python.org/pypi/lxml/"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"

LICENSE="BSD ElementTree GPL-2 PSF-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="beautifulsoup3 doc examples +threads"

# Note: lib{xml2,xslt} are used as C libraries, not Python modules.
RDEPEND="
	>=dev-libs/libxml2-2.7.2
	>=dev-libs/libxslt-1.1.15
	beautifulsoup3? (
		python_targets_python2_6? ( dev-python/beautifulsoup:python-2[python_targets_python2_6] )
		python_targets_python2_7? ( dev-python/beautifulsoup:python-2[python_targets_python2_7] )
		python_targets_python3_2? ( dev-python/beautifulsoup:python-3[python_targets_python3_2] )
		python_targets_python3_3? ( dev-python/beautifulsoup:python-3[python_targets_python3_3] )
	)"
DEPEND="${RDEPEND}
	dev-python/setuptools[${PYTHON_USEDEP}]"
# lxml tarball contains files pregenerated by Cython.

DISTUTILS_IN_SOURCE_BUILD=1

python_prepare_all() {
	# avoid replacing PYTHONPATH in tests.
	sed -i -e '/sys\.path/d' test.py || die

	distutils-r1_python_prepare_all
}

python_compile() {
	if [[ ${EPYTHON} != python3* ]]; then
		local CFLAGS=${CFLAGS}
		append-cflags -fno-strict-aliasing
	fi
	distutils-r1_python_compile
}

python_test() {
	cp -r -l src/lxml/tests "${BUILD_DIR}"/lib/lxml/ || die
	cp -r -l src/lxml/html/tests "${BUILD_DIR}"/lib/lxml/html/ || die
	ln -s "${S}"/doc "${BUILD_DIR}"/ || die

	local test
	for test in test.py selftest.py selftest2.py; do
		einfo "Running ${test}"
		"${PYTHON}" ${test} || die "Test ${test} fails with ${EPYTHON}"
	done
}

python_install_all() {
	if use doc; then
		local DOCS=( *.txt doc/*.txt )
		local HTML_DOCS=( doc/html/. )
	fi
	use examples && local EXAMPLES=( samples/. )

	distutils-r1_python_install_all
}





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

* [gentoo-commits] gentoo-x86 commit in dev-python/lxml: ChangeLog lxml-3.3.5.ebuild
@ 2014-05-03  2:29 Ian Delaney (idella4)
  0 siblings, 0 replies; 4+ messages in thread
From: Ian Delaney (idella4) @ 2014-05-03  2:29 UTC (permalink / raw
  To: gentoo-commits

idella4     14/05/03 02:29:32

  Modified:             ChangeLog lxml-3.3.5.ebuild
  Log:
  Manifests
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)

Revision  Changes    Path
1.191                dev-python/lxml/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/lxml/ChangeLog?rev=1.191&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/lxml/ChangeLog?rev=1.191&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/lxml/ChangeLog?r1=1.190&r2=1.191

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/lxml/ChangeLog,v
retrieving revision 1.190
retrieving revision 1.191
diff -u -r1.190 -r1.191
--- ChangeLog	25 Apr 2014 05:03:39 -0000	1.190
+++ ChangeLog	3 May 2014 02:29:31 -0000	1.191
@@ -1,6 +1,10 @@
 # ChangeLog for dev-python/lxml
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/lxml/ChangeLog,v 1.190 2014/04/25 05:03:39 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/lxml/ChangeLog,v 1.191 2014/05/03 02:29:31 idella4 Exp $
+
+  03 May 2014; Ian Delaney <idella4@gentoo.org> lxml-3.3.3.ebuild,
+  lxml-3.3.5.ebuild:
+  drop py2.6
 
 *lxml-3.3.5 (25 Apr 2014)
 



1.2                  dev-python/lxml/lxml-3.3.5.ebuild

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

Index: lxml-3.3.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/lxml/lxml-3.3.5.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- lxml-3.3.5.ebuild	25 Apr 2014 05:03:39 -0000	1.1
+++ lxml-3.3.5.ebuild	3 May 2014 02:29:32 -0000	1.2
@@ -1,10 +1,10 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/lxml/lxml-3.3.5.ebuild,v 1.1 2014/04/25 05:03:39 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/lxml/lxml-3.3.5.ebuild,v 1.2 2014/05/03 02:29:32 idella4 Exp $
 
 EAPI=5
 
-PYTHON_COMPAT=( python{2_6,2_7,3_{2,3,4}} )
+PYTHON_COMPAT=( python{2_7,3_{2,3,4}} )
 inherit distutils-r1 flag-o-matic
 
 DESCRIPTION="A Pythonic binding for the libxml2 and libxslt libraries"
@@ -21,7 +21,6 @@
 	>=dev-libs/libxml2-2.7.2
 	>=dev-libs/libxslt-1.1.15
 	beautifulsoup3? (
-		python_targets_python2_6? ( dev-python/beautifulsoup:python-2[python_targets_python2_6] )
 		python_targets_python2_7? ( dev-python/beautifulsoup:python-2[python_targets_python2_7] )
 		python_targets_python3_2? ( dev-python/beautifulsoup:python-3[python_targets_python3_2] )
 		python_targets_python3_3? ( dev-python/beautifulsoup:python-3[python_targets_python3_3] )





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

* [gentoo-commits] gentoo-x86 commit in dev-python/lxml: ChangeLog lxml-3.3.5.ebuild
@ 2014-05-05 22:12 Jeroen Roovers (jer)
  0 siblings, 0 replies; 4+ messages in thread
From: Jeroen Roovers (jer) @ 2014-05-05 22:12 UTC (permalink / raw
  To: gentoo-commits

jer         14/05/05 22:12:00

  Modified:             ChangeLog lxml-3.3.5.ebuild
  Log:
  Stable for HPPA (bug #509134).
  
  (Portage version: 2.2.10/cvs/Linux x86_64, RepoMan options: --ignore-arches, signed Manifest commit with key A792A613)

Revision  Changes    Path
1.192                dev-python/lxml/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/lxml/ChangeLog?rev=1.192&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/lxml/ChangeLog?rev=1.192&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/lxml/ChangeLog?r1=1.191&r2=1.192

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/lxml/ChangeLog,v
retrieving revision 1.191
retrieving revision 1.192
diff -u -r1.191 -r1.192
--- ChangeLog	3 May 2014 02:29:31 -0000	1.191
+++ ChangeLog	5 May 2014 22:12:00 -0000	1.192
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/lxml
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/lxml/ChangeLog,v 1.191 2014/05/03 02:29:31 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/lxml/ChangeLog,v 1.192 2014/05/05 22:12:00 jer Exp $
+
+  05 May 2014; Jeroen Roovers <jer@gentoo.org> lxml-3.3.5.ebuild:
+  Stable for HPPA (bug #509134).
 
   03 May 2014; Ian Delaney <idella4@gentoo.org> lxml-3.3.3.ebuild,
   lxml-3.3.5.ebuild:



1.3                  dev-python/lxml/lxml-3.3.5.ebuild

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

Index: lxml-3.3.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/lxml/lxml-3.3.5.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- lxml-3.3.5.ebuild	3 May 2014 02:29:32 -0000	1.2
+++ lxml-3.3.5.ebuild	5 May 2014 22:12:00 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/lxml/lxml-3.3.5.ebuild,v 1.2 2014/05/03 02:29:32 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/lxml/lxml-3.3.5.ebuild,v 1.3 2014/05/05 22:12:00 jer Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE="BSD ElementTree GPL-2 PSF-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="beautifulsoup3 doc examples +threads"
 
 # Note: lib{xml2,xslt} are used as C libraries, not Python modules.





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

* [gentoo-commits] gentoo-x86 commit in dev-python/lxml: ChangeLog lxml-3.3.5.ebuild
@ 2014-05-15 20:03 Markus Meier (maekke)
  0 siblings, 0 replies; 4+ messages in thread
From: Markus Meier (maekke) @ 2014-05-15 20:03 UTC (permalink / raw
  To: gentoo-commits

maekke      14/05/15 20:03:34

  Modified:             ChangeLog lxml-3.3.5.ebuild
  Log:
  arm stable, bug #509134
  
  (Portage version: 2.2.10/cvs/Linux x86_64, RepoMan options: --include-arches="arm", signed Manifest commit with key 072AD062)

Revision  Changes    Path
1.199                dev-python/lxml/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/lxml/ChangeLog?rev=1.199&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/lxml/ChangeLog?rev=1.199&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/lxml/ChangeLog?r1=1.198&r2=1.199

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/lxml/ChangeLog,v
retrieving revision 1.198
retrieving revision 1.199
diff -u -r1.198 -r1.199
--- ChangeLog	14 May 2014 16:10:18 -0000	1.198
+++ ChangeLog	15 May 2014 20:03:33 -0000	1.199
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/lxml
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/lxml/ChangeLog,v 1.198 2014/05/14 16:10:18 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/lxml/ChangeLog,v 1.199 2014/05/15 20:03:33 maekke Exp $
+
+  15 May 2014; Markus Meier <maekke@gentoo.org> lxml-3.3.5.ebuild:
+  arm stable, bug #509134
 
   14 May 2014; Agostino Sarubbo <ago@gentoo.org> lxml-3.3.5.ebuild:
   Stable for sparc, wrt bug #509134



1.10                 dev-python/lxml/lxml-3.3.5.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/lxml/lxml-3.3.5.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/lxml/lxml-3.3.5.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/lxml/lxml-3.3.5.ebuild?r1=1.9&r2=1.10

Index: lxml-3.3.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/lxml/lxml-3.3.5.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- lxml-3.3.5.ebuild	14 May 2014 16:10:18 -0000	1.9
+++ lxml-3.3.5.ebuild	15 May 2014 20:03:33 -0000	1.10
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/lxml/lxml-3.3.5.ebuild,v 1.9 2014/05/14 16:10:18 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/lxml/lxml-3.3.5.ebuild,v 1.10 2014/05/15 20:03:33 maekke Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE="BSD ElementTree GPL-2 PSF-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="beautifulsoup3 doc examples +threads"
 
 # Note: lib{xml2,xslt} are used as C libraries, not Python modules.





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

end of thread, other threads:[~2014-05-15 20:03 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-05-03  2:29 [gentoo-commits] gentoo-x86 commit in dev-python/lxml: ChangeLog lxml-3.3.5.ebuild Ian Delaney (idella4)
  -- strict thread matches above, loose matches on Subject: below --
2014-05-15 20:03 Markus Meier (maekke)
2014-05-05 22:12 Jeroen Roovers (jer)
2014-04-25  5:03 Tim Harder (radhermit)

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