diff options
author | Patrick Lauer <patrick@gentoo.org> | 2013-09-02 05:10:52 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2013-09-02 05:10:52 +0000 |
commit | 21ec32360371e1429eafbd7475765cd9d6d6ca26 (patch) | |
tree | aec040be4695307b4e465d1e92d7c6d77b7ea5f6 /dev-python/netlib | |
parent | Bump (diff) | |
download | gentoo-2-21ec32360371e1429eafbd7475765cd9d6d6ca26.tar.gz gentoo-2-21ec32360371e1429eafbd7475765cd9d6d6ca26.tar.bz2 gentoo-2-21ec32360371e1429eafbd7475765cd9d6d6ca26.zip |
Bump
(Portage version: 2.2.0/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'dev-python/netlib')
-rw-r--r-- | dev-python/netlib/ChangeLog | 8 | ||||
-rw-r--r-- | dev-python/netlib/netlib-0.9.2.ebuild | 31 |
2 files changed, 37 insertions, 2 deletions
diff --git a/dev-python/netlib/ChangeLog b/dev-python/netlib/ChangeLog index b64b2bcf15f8..6fa38bfb6e8c 100644 --- a/dev-python/netlib/ChangeLog +++ b/dev-python/netlib/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-python/netlib # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/netlib/ChangeLog,v 1.3 2013/06/17 06:47:54 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/netlib/ChangeLog,v 1.4 2013/09/02 05:10:52 patrick Exp $ + +*netlib-0.9.2 (02 Sep 2013) + + 02 Sep 2013; Patrick Lauer <patrick@gentoo.org> +netlib-0.9.2.ebuild: + Bump *netlib-0.9.1 (17 Jun 2013) @@ -15,4 +20,3 @@ 16 May 2013; Tim Harder <radhermit@gentoo.org> +netlib-0.9.ebuild, +metadata.xml: Initial import. - diff --git a/dev-python/netlib/netlib-0.9.2.ebuild b/dev-python/netlib/netlib-0.9.2.ebuild new file mode 100644 index 000000000000..95657c9704f5 --- /dev/null +++ b/dev-python/netlib/netlib-0.9.2.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/netlib/netlib-0.9.2.ebuild,v 1.1 2013/09/02 05:10:52 patrick Exp $ + +EAPI=5 +PYTHON_COMPAT=( python{2_6,2_7} ) + +inherit distutils-r1 + +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.2[${PYTHON_USEDEP}] + >=dev-python/pyopenssl-0.12[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND} + test? ( + dev-python/nose[${PYTHON_USEDEP}] + www-servers/pathod[${PYTHON_USEDEP}] + )" + +RESTRICT="test" + +python_test() { + nosetests -v || die "Tests fail with ${EPYTHON}" +} |