diff options
author | 2015-01-04 04:13:09 +0000 | |
---|---|---|
committer | 2015-01-04 04:13:09 +0000 | |
commit | bae10ca6ec1ae6f305384d37c728a362a8b5dd12 (patch) | |
tree | 75e3d25670cedb0f1f3dea38054fb21d8bea8500 /dev-python/netlib | |
parent | Version bump (diff) | |
download | gentoo-2-bae10ca6ec1ae6f305384d37c728a362a8b5dd12.tar.gz gentoo-2-bae10ca6ec1ae6f305384d37c728a362a8b5dd12.tar.bz2 gentoo-2-bae10ca6ec1ae6f305384d37c728a362a8b5dd12.zip |
Version bump.
(Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
Diffstat (limited to 'dev-python/netlib')
-rw-r--r-- | dev-python/netlib/ChangeLog | 9 | ||||
-rw-r--r-- | dev-python/netlib/netlib-0.11.2.ebuild | 31 |
2 files changed, 38 insertions, 2 deletions
diff --git a/dev-python/netlib/ChangeLog b/dev-python/netlib/ChangeLog index 22f2f77f8e75..16bf158932d9 100644 --- a/dev-python/netlib/ChangeLog +++ b/dev-python/netlib/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-python/netlib -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/netlib/ChangeLog,v 1.9 2014/11/22 02:34:22 radhermit Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/netlib/ChangeLog,v 1.10 2015/01/04 04:13:09 radhermit Exp $ + +*netlib-0.11.2 (04 Jan 2015) + + 04 Jan 2015; Tim Harder <radhermit@gentoo.org> +netlib-0.11.2.ebuild: + Version bump. *netlib-0.11.1 (22 Nov 2014) diff --git a/dev-python/netlib/netlib-0.11.2.ebuild b/dev-python/netlib/netlib-0.11.2.ebuild new file mode 100644 index 000000000000..8a0b556dc845 --- /dev/null +++ b/dev-python/netlib/netlib-0.11.2.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/netlib/netlib-0.11.2.ebuild,v 1.1 2015/01/04 04:13:09 radhermit Exp $ + +EAPI=5 +PYTHON_COMPAT=( python2_7 ) + +inherit distutils-r1 versionator + +DESCRIPTION="Collection of network utility classes used by pathod and mitmproxy" +HOMEPAGE="https://github.com/cortesi/netlib/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +RDEPEND=">=dev-python/pyasn1-0.1.7[${PYTHON_USEDEP}] + >=dev-python/pyopenssl-0.14[${PYTHON_USEDEP}] + >=dev-python/passlib-1.6.2[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND} + test? ( + >=dev-python/mock-1.0.1[${PYTHON_USEDEP}] + >=dev-python/nose-1.3.0[${PYTHON_USEDEP}] + =www-servers/pathod-$(get_version_component_range 1-2)*[${PYTHON_USEDEP}] + )" + +python_test() { + nosetests -v || die "Tests fail with ${EPYTHON}" +} |