add noiseprotocol-0.3.1

This commit is contained in:
Andreas Billmeier 2021-10-02 11:01:48 +02:00 committed by Andreas Billmeier
parent bb3b3102c6
commit 5ad2ed2f73
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 50 additions and 0 deletions

View File

@ -0,0 +1,3 @@
DIST noiseprotocol-0.3.1.tar.gz 16890 BLAKE2B c9cc26c56540ea29ed342f734fd0fc74f0ba91b6e785042c0d2a5b13801b18d8f49a61ad9ec4a3c6301b157ea7861c8a0e5bcbeb716c145d373b2f44ef9f1431 SHA512 dab72a3633549fc245c3f440da557879d148c7bc84167f79bcdb726dfc0896cc395b982af82d2a04457b09d8bc73f4daa24e7d8c648892ea603ab3e34f508094
EBUILD noiseprotocol-0.3.1.ebuild 754 BLAKE2B 554e4e02dd84ca78dde3b00e72999454c8f1abff9e845fef3920741d01c8508596c4dc2406b4cdd7eb565d2547085f87e235dbac3e3a8e77eff7cbc17cb0172b SHA512 a46406fae0d89cec3f37898ca9913127e6f001fc7e632e3b95e333bff9644b7da2c23c582273bd3aa367f49ef90b060686b90ee8b1cc1d0f92e14c7394ea957e
MISC metadata.xml 468 BLAKE2B 58459db832c173a3ad6b82badb330e4bccb6bd2c64dd7d21817e8c7553608c5ee86673ba97c82664a3b769ba08b2ee6795dc0d17188872bca3f9db66cc99a377 SHA512 55e7b32f214f3a88a258660025d24215df1b41fefe625fa1bfd39dcbef7ba4e66ee87a73ff13a72f794588646c8d5421756253f3990163aa39395fff03b64604

View File

@ -0,0 +1,15 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<upstream>
<remote-id type="pypi">noiseprotocol</remote-id>
<maintainer status="unknown">
<email>plizonczyk.public@gmail.com</email>
<name>Piotr Lizonczyk</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,32 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
DESCRIPTION="Implementation of Noise Protocol Framework"
HOMEPAGE="https://github.com/plizonczyk/noiseprotocol https://pypi.org/project/noiseprotocol/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
DOCS="README.md"
RDEPEND=">=dev-python/cryptography-2.8[${PYTHON_USEDEP}]"
BDEPEND="
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
}