diff options
author | 2014-04-22 18:05:02 +0000 | |
---|---|---|
committer | 2014-04-22 18:05:02 +0000 | |
commit | 1f0503ada1dad59078c754214e2d4b7a2c23343f (patch) | |
tree | 39401e1fe370ef7dde946554dd3a90f504b63bde /dev-python/pyparsing | |
parent | Version bump, bug#508360 (diff) | |
download | gentoo-2-1f0503ada1dad59078c754214e2d4b7a2c23343f.tar.gz gentoo-2-1f0503ada1dad59078c754214e2d4b7a2c23343f.tar.bz2 gentoo-2-1f0503ada1dad59078c754214e2d4b7a2c23343f.zip |
Version bump.
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
Diffstat (limited to 'dev-python/pyparsing')
-rw-r--r-- | dev-python/pyparsing/ChangeLog | 7 | ||||
-rw-r--r-- | dev-python/pyparsing/pyparsing-2.0.2.ebuild | 29 |
2 files changed, 35 insertions, 1 deletions
diff --git a/dev-python/pyparsing/ChangeLog b/dev-python/pyparsing/ChangeLog index 8f069e2b2522..896a942acd35 100644 --- a/dev-python/pyparsing/ChangeLog +++ b/dev-python/pyparsing/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-python/pyparsing # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pyparsing/ChangeLog,v 1.104 2014/04/03 17:49:41 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyparsing/ChangeLog,v 1.105 2014/04/22 18:05:02 radhermit Exp $ + +*pyparsing-2.0.2 (22 Apr 2014) + + 22 Apr 2014; Tim Harder <radhermit@gentoo.org> +pyparsing-2.0.2.ebuild: + Version bump. 03 Apr 2014; Tim Harder <radhermit@gentoo.org> pyparsing-2.0.1.ebuild: Add python3_4 support. diff --git a/dev-python/pyparsing/pyparsing-2.0.2.ebuild b/dev-python/pyparsing/pyparsing-2.0.2.ebuild new file mode 100644 index 000000000000..3cf744078828 --- /dev/null +++ b/dev-python/pyparsing/pyparsing-2.0.2.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyparsing/pyparsing-2.0.2.ebuild,v 1.1 2014/04/22 18:05:02 radhermit Exp $ + +EAPI=5 +PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3,3_4} pypy pypy2_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="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 ~sparc64-solaris ~x64-solaris ~x86-solaris" +IUSE="doc examples" + +RDEPEND="!dev-python/pyparsing:py2 !dev-python/pyparsing:py3" + +python_install_all() { + local HTML_DOCS=( HowToUsePyparsing.html ) + use doc && HTML_DOCS+=( htmldoc/ ) + + distutils-r1_python_install_all + + use doc && dodoc docs/*.pdf + use examples && dodoc -r examples +} |