diff options
author | Tiziano Müller <dev-zero@gentoo.org> | 2007-12-31 08:08:57 +0000 |
---|---|---|
committer | Tiziano Müller <dev-zero@gentoo.org> | 2007-12-31 08:08:57 +0000 |
commit | 9fea7eef0b3d58335ac47c65ea508e6c63b2b8e1 (patch) | |
tree | 042c923d73c566139d95c5dde97be0abb30ffd3c /dev-python/python-dateutil | |
parent | Fix dspam-web graphs by correcting 14_all_cgi-fixes patch. (diff) | |
download | gentoo-2-9fea7eef0b3d58335ac47c65ea508e6c63b2b8e1.tar.gz gentoo-2-9fea7eef0b3d58335ac47c65ea508e6c63b2b8e1.tar.bz2 gentoo-2-9fea7eef0b3d58335ac47c65ea508e6c63b2b8e1.zip |
Version bump (bug #203827). Fixed tests.
(Portage version: 2.1.4_rc11)
Diffstat (limited to 'dev-python/python-dateutil')
4 files changed, 39 insertions, 5 deletions
diff --git a/dev-python/python-dateutil/ChangeLog b/dev-python/python-dateutil/ChangeLog index 781d8f593962..ae28596603e0 100644 --- a/dev-python/python-dateutil/ChangeLog +++ b/dev-python/python-dateutil/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-python/python-dateutil # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/python-dateutil/ChangeLog,v 1.11 2007/12/16 10:00:28 drac Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/python-dateutil/ChangeLog,v 1.12 2007/12/31 08:08:57 dev-zero Exp $ + +*python-dateutil-1.3 (31 Dec 2007) + + 31 Dec 2007; Tiziano Müller <dev-zero@gentoo.org> + python-dateutil-1.2.ebuild, +python-dateutil-1.3.ebuild: + Version bump (bug #203827). Fixed tests. 16 Dec 2007; Samuli Suominen <drac@gentoo.org> python-dateutil-1.2.ebuild: amd64 stable diff --git a/dev-python/python-dateutil/files/digest-python-dateutil-1.3 b/dev-python/python-dateutil/files/digest-python-dateutil-1.3 new file mode 100644 index 000000000000..c63cc17097e3 --- /dev/null +++ b/dev-python/python-dateutil/files/digest-python-dateutil-1.3 @@ -0,0 +1,3 @@ +MD5 23ee74f85bf96ed3da3fb8bf88b4db04 python-dateutil-1.3.tar.bz2 222794 +RMD160 22614171f95d57703a8f615364f952e8d2d84991 python-dateutil-1.3.tar.bz2 222794 +SHA256 5b93f48d3ed05738c35ae05b68684d752206eb90e310d9bb3d291a93e410400f python-dateutil-1.3.tar.bz2 222794 diff --git a/dev-python/python-dateutil/python-dateutil-1.2.ebuild b/dev-python/python-dateutil/python-dateutil-1.2.ebuild index af9f860d07ed..4cd1dbadbe0a 100644 --- a/dev-python/python-dateutil/python-dateutil-1.2.ebuild +++ b/dev-python/python-dateutil/python-dateutil-1.2.ebuild @@ -1,24 +1,25 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/python-dateutil/python-dateutil-1.2.ebuild,v 1.2 2007/12/16 10:00:28 drac Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/python-dateutil/python-dateutil-1.2.ebuild,v 1.3 2007/12/31 08:08:57 dev-zero Exp $ NEED_PYTHON=2.3 inherit distutils -DESCRIPTION="dateutil datetime math and logic library for python" +DESCRIPTION="datetime math and logic library for python" HOMEPAGE="http://labix.org/python-dateutil" SRC_URI="http://labix.org/download/python-dateutil/${P}.tar.bz2" LICENSE="PSF-2.3" SLOT="0" -KEYWORDS="amd64 ~ia64 ~ppc ~x86" +KEYWORDS="~amd64 ~ia64 ~ppc ~x86" IUSE="" DEPEND="!<=dev-python/matplotlib-0.82" +RDEPEND="${DEPEND}" DOCS="NEWS example.py sandbox/rrulewrapper.py sandbox/scheduler.py" src_test() { - "${python}" test.py + PYTHONPATH="." "${python}" test.py || die "tests failed" } diff --git a/dev-python/python-dateutil/python-dateutil-1.3.ebuild b/dev-python/python-dateutil/python-dateutil-1.3.ebuild new file mode 100644 index 000000000000..d0e464ea5997 --- /dev/null +++ b/dev-python/python-dateutil/python-dateutil-1.3.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/python-dateutil/python-dateutil-1.3.ebuild,v 1.1 2007/12/31 08:08:57 dev-zero Exp $ + +NEED_PYTHON=2.3 + +inherit distutils + +DESCRIPTION="dateutil datetime math and logic library for python" +HOMEPAGE="http://labix.org/python-dateutil" +SRC_URI="http://labix.org/download/python-dateutil/${P}.tar.bz2" + +LICENSE="PSF-2.3" +SLOT="0" +KEYWORDS="~amd64 ~ia64 ~ppc ~x86" +IUSE="" + +DEPEND="!<=dev-python/matplotlib-0.82" + +DOCS="NEWS example.py sandbox/rrulewrapper.py sandbox/scheduler.py" + +src_test() { + "${python}" test.py +} |