diff options
author | 2013-01-27 06:40:51 +0000 | |
---|---|---|
committer | 2013-01-27 06:40:51 +0000 | |
commit | 07dbb7bdd5422d0643137f42c2871474df7631c7 (patch) | |
tree | a64a7f71bb08c37e1a20b964c25aff207d22feab /dev-python/pyparsing | |
parent | version bump (bug #452256) (diff) | |
download | gentoo-2-07dbb7bdd5422d0643137f42c2871474df7631c7.tar.gz gentoo-2-07dbb7bdd5422d0643137f42c2871474df7631c7.tar.bz2 gentoo-2-07dbb7bdd5422d0643137f42c2871474df7631c7.zip |
revbump; drop pypy1_8, add pypy2_0
(Portage version: 2.1.11.40/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
Diffstat (limited to 'dev-python/pyparsing')
-rw-r--r-- | dev-python/pyparsing/ChangeLog | 8 | ||||
-rw-r--r-- | dev-python/pyparsing/pyparsing-1.5.7-r1.ebuild | 28 |
2 files changed, 35 insertions, 1 deletions
diff --git a/dev-python/pyparsing/ChangeLog b/dev-python/pyparsing/ChangeLog index b781af0b3eb3..31fda74f0c6a 100644 --- a/dev-python/pyparsing/ChangeLog +++ b/dev-python/pyparsing/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-python/pyparsing # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pyparsing/ChangeLog,v 1.87 2013/01/01 14:07:30 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyparsing/ChangeLog,v 1.88 2013/01/27 06:40:51 idella4 Exp $ + +*pyparsing-1.5.7-r1 (27 Jan 2013) + + 27 Jan 2013; Ian Delaney <idella4@gentoo.org> +pyparsing-1.5.7-r1.ebuild, + pyparsing-1.5.7.ebuild: + revbump; drop pypy1_8, add pypy2_0 *pyparsing-1.5.7 (01 Jan 2013) *pyparsing-2.0.0 (01 Jan 2013) diff --git a/dev-python/pyparsing/pyparsing-1.5.7-r1.ebuild b/dev-python/pyparsing/pyparsing-1.5.7-r1.ebuild new file mode 100644 index 000000000000..0de0f52e089c --- /dev/null +++ b/dev-python/pyparsing/pyparsing-1.5.7-r1.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyparsing/pyparsing-1.5.7-r1.ebuild,v 1.1 2013/01/27 06:40:51 idella4 Exp $ + +EAPI=5 +PYTHON_COMPAT=( python{2_5,2_6,2_7} pypy{1_9,2_0} ) + +inherit distutils-r1 + +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="py2" +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 ~sparc64-solaris ~x64-solaris ~x86-solaris" +IUSE="doc examples" + +RDEPEND="!dev-python/pyparsing:0" + +python_install_all() { + local HTML_DOCS=( HowToUsePyparsing.html ) + + distutils-r1_python_install_all + + use doc && dodoc docs/*.pdf + use examples && dodoc -r examples +} |