add websockets-7.0

This commit is contained in:
Andreas Billmeier 2019-04-18 19:23:46 +02:00
parent 9837901749
commit 2cc4578c4c
3 changed files with 49 additions and 0 deletions

View File

@ -0,0 +1,3 @@
DIST websockets-7.0.tar.gz 49257 BLAKE2B dc27ea2c80f530e11a1e811da02b548eb0bf404cf5a2f916d3d2112f0e8174d6f9f44f511d898ba20487eb99142eb235a6990d4ec815ae0d6e0f89387994eddf SHA512 3f3493c920ca3e07c143fdc443a2b1da142dda52ca6291566a3042daee6f5f702a9b091411a915da3896fe0f48cf174d9ef6fd40cf09483bc90928ee67ebd438
EBUILD websockets-7.0.ebuild 737 BLAKE2B fd3a8dfac6cbccf53c2fb38c78a50ead075f64d2aa107a02263855dcb5503a6a5df732858faa8333805eb3875d8b25fe8f81ef054d5b3ac4bcfcbd6c3332e7df SHA512 cd5dc96b4e95206e40a95a19794959711c9346232ab28915be2acf1225bc791832777a35969853e79e6b4c573d70d0abcd4f519218a9ede748aec3028d834375
MISC metadata.xml 470 BLAKE2B 124b9a2d449ef7e20037d15e471af103919768a8847394b825fa6ed3d3f61ed7c6668b59b7068fbdf0ae39e7088e5cb0b6aec19a9214cb53c25514766460c4ae SHA512 eb18228897040d74e7362424ac10efe771a8aa781fb2ff26f6cc5bd2feda99c68b6dd18390c6034c0d66d335ebeffff930f6b276a7d07f22798cf1d15599cc9e

View File

@ -0,0 +1,16 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer>
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<herd>python</herd>
<upstream>
<remote-id type="pypi">websockets</remote-id>
<maintainer status="unknown">
<email>aymeric.augustin@m4x.org</email>
<name>Aymeric Augustin</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,30 @@
# Copyright 1999-2019 Gentoo Authors Andreas Billmeier b (at) edevau.net
# Distributed under the terms of the GNU General Public License v3.0
EAPI="7"
PYTHON_COMPAT=( python3_{5,6,7} )
inherit distutils-r1
DESCRIPTION="An implementation of the WebSocket Protocol (RFC 6455 & 7692)"
HOMEPAGE="https://github.com/aaugustin/websockets https://pypi.org/project/websockets/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=""
DEPEND="${REDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}