diff options
author | Ali Polatel <hawking@gentoo.org> | 2008-06-25 09:46:05 +0000 |
---|---|---|
committer | Ali Polatel <hawking@gentoo.org> | 2008-06-25 09:46:05 +0000 |
commit | 373f652b1f1709e2897775bbadcde3181dd7ecc9 (patch) | |
tree | 6ca96578bc09e61b5b2ba1dcb84842dbfe54bb1f /dev-python/beautifulsoup | |
parent | games herd (diff) | |
download | gentoo-2-373f652b1f1709e2897775bbadcde3181dd7ecc9.tar.gz gentoo-2-373f652b1f1709e2897775bbadcde3181dd7ecc9.tar.bz2 gentoo-2-373f652b1f1709e2897775bbadcde3181dd7ecc9.zip |
Version bump.
(Portage version: 2.2_rc1/cvs/Linux 2.6.25-gentoo-r1 x86_64)
Diffstat (limited to 'dev-python/beautifulsoup')
-rw-r--r-- | dev-python/beautifulsoup/ChangeLog | 7 | ||||
-rw-r--r-- | dev-python/beautifulsoup/beautifulsoup-3.0.7.ebuild | 24 |
2 files changed, 30 insertions, 1 deletions
diff --git a/dev-python/beautifulsoup/ChangeLog b/dev-python/beautifulsoup/ChangeLog index 4c3f87c6eb1d..e8e2b4237ba5 100644 --- a/dev-python/beautifulsoup/ChangeLog +++ b/dev-python/beautifulsoup/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-python/beautifulsoup # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/beautifulsoup/ChangeLog,v 1.12 2008/03/12 17:46:44 phreak Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/beautifulsoup/ChangeLog,v 1.13 2008/06/25 09:46:05 hawking Exp $ + +*beautifulsoup-3.0.7 (25 Jun 2008) + + 25 Jun 2008; Ali Polatel <hawking@gentoo.org> +beautifulsoup-3.0.7.ebuild: + Version bump. 12 Mar 2008; Christian Heim <phreak@gentoo.org> metadata.xml: Removing Marien Zwart (marienz, #107204) from metadata.xml. diff --git a/dev-python/beautifulsoup/beautifulsoup-3.0.7.ebuild b/dev-python/beautifulsoup/beautifulsoup-3.0.7.ebuild new file mode 100644 index 000000000000..e2a884eeddbb --- /dev/null +++ b/dev-python/beautifulsoup/beautifulsoup-3.0.7.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/beautifulsoup/beautifulsoup-3.0.7.ebuild,v 1.1 2008/06/25 09:46:05 hawking Exp $ + +NEED_PYTHON="2.3" + +inherit distutils + +MY_PN=BeautifulSoup +MY_P=${MY_PN}-${PV} + +DESCRIPTION="HTML/XML parser for quick-turnaround applications like screen-scraping." +HOMEPAGE="http://www.crummy.com/software/BeautifulSoup/" +SRC_URI="http://www.crummy.com/software/${MY_PN}/download/${MY_P}.tar.gz" +LICENSE="PSF-2.3" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~x86-fbsd" +IUSE="" + +S=${WORKDIR}/${MY_P} + +src_test() { + PYTHONPATH="." "${python}" BeautifulSoupTests.py || die "tests failed" +} |