diff options
author | 2014-12-07 05:11:27 +0000 | |
---|---|---|
committer | 2014-12-07 05:11:27 +0000 | |
commit | df0b4e2d9d0f20e8dd4ea622c457aefdc9c9fe4d (patch) | |
tree | 02dff800603cb981d2eb03cd1944b1970b216ea3 /dev-python/python-dateutil | |
parent | add update to HOMEPAGE in Changelog entry (diff) | |
download | gentoo-2-df0b4e2d9d0f20e8dd4ea622c457aefdc9c9fe4d.tar.gz gentoo-2-df0b4e2d9d0f20e8dd4ea622c457aefdc9c9fe4d.tar.bz2 gentoo-2-df0b4e2d9d0f20e8dd4ea622c457aefdc9c9fe4d.zip |
Version bump.
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
Diffstat (limited to 'dev-python/python-dateutil')
-rw-r--r-- | dev-python/python-dateutil/ChangeLog | 7 | ||||
-rw-r--r-- | dev-python/python-dateutil/python-dateutil-2.3.ebuild | 33 |
2 files changed, 39 insertions, 1 deletions
diff --git a/dev-python/python-dateutil/ChangeLog b/dev-python/python-dateutil/ChangeLog index 26fb892751da..1e3715569d55 100644 --- a/dev-python/python-dateutil/ChangeLog +++ b/dev-python/python-dateutil/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-python/python-dateutil # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/python-dateutil/ChangeLog,v 1.62 2014/10/26 16:15:17 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/python-dateutil/ChangeLog,v 1.63 2014/12/07 05:11:27 radhermit Exp $ + +*python-dateutil-2.3 (07 Dec 2014) + + 07 Dec 2014; Tim Harder <radhermit@gentoo.org> +python-dateutil-2.3.ebuild: + Version bump. 26 Oct 2014; Tim Harder <radhermit@gentoo.org> python-dateutil-2.2.ebuild: Add pypi page to HOMEPAGE. diff --git a/dev-python/python-dateutil/python-dateutil-2.3.ebuild b/dev-python/python-dateutil/python-dateutil-2.3.ebuild new file mode 100644 index 000000000000..d9e19da40433 --- /dev/null +++ b/dev-python/python-dateutil/python-dateutil-2.3.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/python-dateutil/python-dateutil-2.3.ebuild,v 1.1 2014/12/07 05:11:27 radhermit Exp $ + +EAPI=5 +PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy ) + +inherit distutils-r1 + +DESCRIPTION="Extensions to the standard Python datetime module" +HOMEPAGE="https://dateutil.readthedocs.org/ https://pypi.python.org/pypi/python-dateutil https://github.com/dateutil/dateutil/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" +IUSE="" + +RDEPEND="dev-python/six[${PYTHON_USEDEP}] + sys-libs/timezone-data" +DEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}]" + +python_prepare_all() { + # don't install zoneinfo tarball + sed -i '/package_data=/d' setup.py || die + + distutils-r1_python_prepare_all +} + +python_test() { + esetup.py test +} |