diff options
author | Tim Harder <radhermit@gentoo.org> | 2013-06-16 22:20:52 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2013-06-16 22:20:52 +0000 |
commit | 830a9eefdb3dadf50c54169bc376d5590da91771 (patch) | |
tree | 3e078272a440569008b43565f253e232c7665ca8 /dev-python/werkzeug | |
parent | Unmask networkmanager USE flag - it has been keyworded since February 2013. (diff) | |
download | gentoo-2-830a9eefdb3dadf50c54169bc376d5590da91771.tar.gz gentoo-2-830a9eefdb3dadf50c54169bc376d5590da91771.tar.bz2 gentoo-2-830a9eefdb3dadf50c54169bc376d5590da91771.zip |
Version bump.
(Portage version: 2.2.0_alpha179/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
Diffstat (limited to 'dev-python/werkzeug')
-rw-r--r-- | dev-python/werkzeug/ChangeLog | 7 | ||||
-rw-r--r-- | dev-python/werkzeug/werkzeug-0.9.1.ebuild | 30 |
2 files changed, 36 insertions, 1 deletions
diff --git a/dev-python/werkzeug/ChangeLog b/dev-python/werkzeug/ChangeLog index e3c48ad163c0..46f7c1c64a3a 100644 --- a/dev-python/werkzeug/ChangeLog +++ b/dev-python/werkzeug/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-python/werkzeug # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/werkzeug/ChangeLog,v 1.37 2013/03/19 16:43:30 idella4 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/werkzeug/ChangeLog,v 1.38 2013/06/16 22:20:52 radhermit Exp $ + +*werkzeug-0.9.1 (16 Jun 2013) + + 16 Jun 2013; Tim Harder <radhermit@gentoo.org> +werkzeug-0.9.1.ebuild: + Version bump. *werkzeug-0.8.3-r1 (19 Mar 2013) diff --git a/dev-python/werkzeug/werkzeug-0.9.1.ebuild b/dev-python/werkzeug/werkzeug-0.9.1.ebuild new file mode 100644 index 000000000000..6e3390c63b64 --- /dev/null +++ b/dev-python/werkzeug/werkzeug-0.9.1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/werkzeug/werkzeug-0.9.1.ebuild,v 1.1 2013/06/16 22:20:52 radhermit Exp $ + +EAPI="5" +PYTHON_COMPAT=( python{2_6,2_7,3_3} ) + +inherit distutils-r1 + +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 ~arm ~ppc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" +IUSE="test" + +RDEPEND="dev-python/simplejson[${PYTHON_USEDEP}]" +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] + test? ( dev-python/lxml[${PYTHON_USEDEP}] )" + +S="${WORKDIR}/${MY_P}" + +python_test() { + esetup.py test +} |