diff options
author | Dirkjan Ochtman <djc@gentoo.org> | 2011-09-14 07:48:45 +0000 |
---|---|---|
committer | Dirkjan Ochtman <djc@gentoo.org> | 2011-09-14 07:48:45 +0000 |
commit | 2b951b749d1a4a414fff941a10beadf8603d77f1 (patch) | |
tree | 7b39fd907eb834841a27d4d91389d0b808e0c37a /dev-python/pyparsing | |
parent | New ebuild (diff) | |
download | gentoo-2-2b951b749d1a4a414fff941a10beadf8603d77f1.tar.gz gentoo-2-2b951b749d1a4a414fff941a10beadf8603d77f1.tar.bz2 gentoo-2-2b951b749d1a4a414fff941a10beadf8603d77f1.zip |
Version bump pyparsing to 1.5.6.
(Portage version: 2.1.10.15/cvs/Linux x86_64)
Diffstat (limited to 'dev-python/pyparsing')
-rw-r--r-- | dev-python/pyparsing/ChangeLog | 7 | ||||
-rw-r--r-- | dev-python/pyparsing/pyparsing-1.5.6.ebuild | 41 |
2 files changed, 47 insertions, 1 deletions
diff --git a/dev-python/pyparsing/ChangeLog b/dev-python/pyparsing/ChangeLog index 6dbab6790c58..966c05bc1757 100644 --- a/dev-python/pyparsing/ChangeLog +++ b/dev-python/pyparsing/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-python/pyparsing # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pyparsing/ChangeLog,v 1.70 2011/08/14 18:31:14 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyparsing/ChangeLog,v 1.71 2011/09/14 07:48:45 djc Exp $ + +*pyparsing-1.5.6 (14 Sep 2011) + + 14 Sep 2011; Dirkjan Ochtman <djc@gentoo.org> +pyparsing-1.5.6.ebuild: + Version bump to 1.5.6. 14 Aug 2011; Markus Meier <maekke@gentoo.org> pyparsing-1.5.5.ebuild: arm stable, bug #355085 diff --git a/dev-python/pyparsing/pyparsing-1.5.6.ebuild b/dev-python/pyparsing/pyparsing-1.5.6.ebuild new file mode 100644 index 000000000000..17e3b2225bf8 --- /dev/null +++ b/dev-python/pyparsing/pyparsing-1.5.6.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyparsing/pyparsing-1.5.6.ebuild,v 1.1 2011/09/14 07:48:45 djc Exp $ + +EAPI="3" +SUPPORT_PYTHON_ABIS="1" + +inherit distutils eutils + +DESCRIPTION="pyparsing is an easy-to-use Python module for text parsing" +HOMEPAGE="http://pyparsing.wikispaces.com/ http://pypi.python.org/pypi/pyparsing" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos" +IUSE="doc examples" + +DEPEND="" +RDEPEND="" + +DISTUTILS_USE_SEPARATE_SOURCE_DIRECTORIES="1" +PYTHON_MODNAME="pyparsing.py" + +src_install() { + distutils_src_install + + dohtml HowToUsePyparsing.html + dodoc CHANGES + + if use doc; then + dohtml -r htmldoc/* + insinto /usr/share/doc/${PF} + doins docs/*.pdf + fi + + if use examples; then + insinto /usr/share/doc/${PF} + doins -r examples + fi +} |