diff options
author | Dirkjan Ochtman <djc@gentoo.org> | 2012-03-02 09:19:53 +0000 |
---|---|---|
committer | Dirkjan Ochtman <djc@gentoo.org> | 2012-03-02 09:19:53 +0000 |
commit | 4e10437c4909602ebaf6c2b7970b08961da26717 (patch) | |
tree | 96ddf0793906bd6ac68c7848e22776622e4a798e | |
parent | Version bump xlwt to 0.7.3. (diff) | |
download | historical-4e10437c4909602ebaf6c2b7970b08961da26717.tar.gz historical-4e10437c4909602ebaf6c2b7970b08961da26717.tar.bz2 historical-4e10437c4909602ebaf6c2b7970b08961da26717.zip |
Version bump werkzeug to 0.8.3.
Package-Manager: portage-2.1.10.49/cvs/Linux x86_64
-rw-r--r-- | dev-python/werkzeug/ChangeLog | 8 | ||||
-rw-r--r-- | dev-python/werkzeug/werkzeug-0.6.2.ebuild | 39 | ||||
-rw-r--r-- | dev-python/werkzeug/werkzeug-0.8.3.ebuild | 38 |
3 files changed, 45 insertions, 40 deletions
diff --git a/dev-python/werkzeug/ChangeLog b/dev-python/werkzeug/ChangeLog index c4e93900c80e..14c9dcd9df11 100644 --- a/dev-python/werkzeug/ChangeLog +++ b/dev-python/werkzeug/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-python/werkzeug # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/werkzeug/ChangeLog,v 1.31 2012/02/24 14:41:06 phajdan.jr Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/werkzeug/ChangeLog,v 1.32 2012/03/02 09:19:53 djc Exp $ + +*werkzeug-0.8.3 (02 Mar 2012) + + 02 Mar 2012; Dirkjan Ochtman <djc@gentoo.org> -werkzeug-0.6.2.ebuild, + +werkzeug-0.8.3.ebuild: + Version bump to 0.8.3, remove old version. 24 Feb 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org> werkzeug-0.8.2.ebuild: x86 stable wrt bug #404721 diff --git a/dev-python/werkzeug/werkzeug-0.6.2.ebuild b/dev-python/werkzeug/werkzeug-0.6.2.ebuild deleted file mode 100644 index 12e2b303b2d1..000000000000 --- a/dev-python/werkzeug/werkzeug-0.6.2.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/werkzeug/werkzeug-0.6.2.ebuild,v 1.6 2010/12/26 15:51:48 arfrever Exp $ - -EAPI="3" -PYTHON_DEPEND="2" -SUPPORT_PYTHON_ABIS="1" -RESTRICT_PYTHON_ABIS="3.*" -DISTUTILS_SRC_TEST="nosetests" - -inherit distutils - -MY_P="Werkzeug-${PV}" - -DESCRIPTION="Collection of various utilities for WSGI applications" -HOMEPAGE="http://werkzeug.pocoo.org/ http://pypi.python.org/pypi/Werkzeug" -SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" -IUSE="test" - -RDEPEND="" -DEPEND="dev-python/setuptools - app-arch/unzip - test? ( - dev-python/lxml - dev-python/pytest - dev-python/simplejson - )" - -S="${WORKDIR}/${MY_P}" - -DOCS="CHANGES" - -src_test() { - distutils_src_test -e '^test_app$' -} diff --git a/dev-python/werkzeug/werkzeug-0.8.3.ebuild b/dev-python/werkzeug/werkzeug-0.8.3.ebuild new file mode 100644 index 000000000000..f26d75c1fd09 --- /dev/null +++ b/dev-python/werkzeug/werkzeug-0.8.3.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/werkzeug/werkzeug-0.8.3.ebuild,v 1.1 2012/03/02 09:19:53 djc Exp $ + +EAPI="3" +PYTHON_DEPEND="2:2.5" +SUPPORT_PYTHON_ABIS="1" +RESTRICT_PYTHON_ABIS="2.4 3.*" +DISTUTILS_SRC_TEST="setup.py" + +inherit distutils eutils + +MY_PN="Werkzeug" +MY_P="${MY_PN}-${PV}" + +DESCRIPTION="Collection of various utilities for WSGI applications" +HOMEPAGE="http://werkzeug.pocoo.org/ http://pypi.python.org/pypi/Werkzeug" +SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" +IUSE="test" + +RDEPEND="dev-python/simplejson" +DEPEND="dev-python/setuptools + test? ( dev-python/lxml )" +S="${WORKDIR}/${MY_P}" + +DOCS="CHANGES" + +src_prepare() { + distutils_src_prepare + + # Disable redis-related tests. + # https://github.com/mitsuhiko/werkzeug/issues/120 + sed -e "s/import redis/redis = None/" -i werkzeug/testsuite/contrib/cache.py +} |