dev-python/python-zipstream: new package required by >=net-misc/gns3-server-1.5.1

This commit is contained in:
Aaron Bauman
2016-07-16 14:04:51 +09:00
parent bde8ed3d4b
commit 5114a52372
3 changed files with 38 additions and 0 deletions

View File

@@ -0,0 +1 @@
DIST python-zipstream-1.1.4.tar.gz 21376 SHA256 32a7a4bdb786914445589595273beffbbf9b6a0a3a3dc2cf19ea96114bd2abd7 SHA512 722c1d7db91dc47064fc51f1182417f46923b8f42a56e854f1fa125eaccfc7f86d3deab71709226a798a1caf5a84a8a7fa7d3564065ab91afbad434ed787ce32 WHIRLPOOL 153e6797cb88bcd1115f8678022061008073f0a33a309b9180e699273940956062ea1c69dd83b6a6a5f4b417405933670949ff09179beb59482866f340af1fd5

View File

@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>bman@gentoo.org</email>
<name>Aaron Bauman</name>
</maintainer>
<upstream>
<remote-id type="github">allanlei/python-zipstream</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,26 @@
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
PYTHON_COMPAT=( python3_4 )
inherit distutils-r1
DESCRIPTION="A zip archive generator"
HOMEPAGE="https://github.com/allanlei/python-zipstream"
SRC_URI="https://github.com/allanlei/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="test"
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
test? ( dev-python/nose[${PYTHON_USEDEP}] )"
RDEPEND=""
python_test() {
nosetests || die "tests failed under ${EPYTHON}"
}