diff options
author | Dirkjan Ochtman <djc@gentoo.org> | 2011-09-05 20:43:39 +0000 |
---|---|---|
committer | Dirkjan Ochtman <djc@gentoo.org> | 2011-09-05 20:43:39 +0000 |
commit | cb0da8f42394eb0e522a32ec4b689b6672fe408d (patch) | |
tree | 26250d18a1ccc1d2d267d5df94290e558f0124a3 /dev-python/pytz | |
parent | [app-emulation/xen-tools] Fix use doc #347942. Thanks to Ian Delaney aka idella4 (diff) | |
download | historical-cb0da8f42394eb0e522a32ec4b689b6672fe408d.tar.gz historical-cb0da8f42394eb0e522a32ec4b689b6672fe408d.tar.bz2 historical-cb0da8f42394eb0e522a32ec4b689b6672fe408d.zip |
Version bump pytz to 2011h.
Package-Manager: portage-2.1.10.13/cvs/Linux x86_64
Diffstat (limited to 'dev-python/pytz')
-rw-r--r-- | dev-python/pytz/ChangeLog | 7 | ||||
-rw-r--r-- | dev-python/pytz/pytz-2011h.ebuild | 46 |
2 files changed, 52 insertions, 1 deletions
diff --git a/dev-python/pytz/ChangeLog b/dev-python/pytz/ChangeLog index 8d24c226dd21..ae6ccb37daea 100644 --- a/dev-python/pytz/ChangeLog +++ b/dev-python/pytz/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-python/pytz # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pytz/ChangeLog,v 1.114 2011/07/17 11:47:43 xarthisius Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/pytz/ChangeLog,v 1.115 2011/09/05 20:43:39 djc Exp $ + +*pytz-2011h (05 Sep 2011) + + 05 Sep 2011; Dirkjan Ochtman <djc@gentoo.org> +pytz-2011h.ebuild: + Version bump to 2011h. 17 Jul 2011; Kacper Kowalik <xarthisius@gentoo.org> -pytz-2011d.ebuild, pytz-2011e.ebuild: diff --git a/dev-python/pytz/pytz-2011h.ebuild b/dev-python/pytz/pytz-2011h.ebuild new file mode 100644 index 000000000000..644312b90479 --- /dev/null +++ b/dev-python/pytz/pytz-2011h.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pytz/pytz-2011h.ebuild,v 1.1 2011/09/05 20:43:39 djc Exp $ + +EAPI="3" +SUPPORT_PYTHON_ABIS="1" + +inherit distutils eutils + +DESCRIPTION="World timezone definitions for Python" +HOMEPAGE="http://pypi.python.org/pypi/pytz http://pytz.sourceforge.net/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.bz2" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" +IUSE="" + +DEPEND="dev-python/setuptools + >=sys-libs/timezone-data-${PV}" +RDEPEND="${DEPEND}" + +DOCS="CHANGES.txt" + +src_prepare() { + distutils_src_prepare + + # Use timezone-data zoneinfo. + epatch "${FILESDIR}/${PN}-2009j-zoneinfo.patch" +} + +src_test() { + testing() { + PYTHONPATH="build-${PYTHON_ABI}/lib" "$(PYTHON)" pytz/tests/test_tzinfo.py + } + python_execute_function testing +} + +src_install() { + distutils_src_install + + delete_zoneinfo() { + rm -fr "${ED}$(python_get_sitedir)/pytz/zoneinfo" + } + python_execute_function -q delete_zoneinfo +} |