add pysha3-1.0.2

This commit is contained in:
2022-03-18 19:20:49 +01:00
committed by Andreas Billmeier
parent 3a1d264f64
commit fe5cd28f63
3 changed files with 50 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
DIST pysha3-1.0.2.tar.gz 829192 BLAKE2B ff0c0e1cc35f5e2efc0a7d3074022aaa1e05fa72cc151560180fe08958c8f83ec2b0f50f9e1bf772fd386647f3d44e8b4139f5593f6d0d678412eabe4829e939 SHA512 57476d24b9d399471cf56c8c1413f58dbc863c16d4fe9ebd2cf65df8092e139e2505252605e3fccd68978f5ee3fffdfeeedee6788aab38a54c918a452fc19720
EBUILD pysha3-1.0.2.ebuild 681 BLAKE2B 14d8af2f15b16e44172ab93b1f682798508b0ceba7cb2795f10fd572a4bef6c2dc885b32866b58f390121eefcb245e95ddebb0758019a174f9ea129e239d0fab SHA512 19da875311713c6d1e058eb0e288001be585f697911d4b85a4eba38f883a2c191db5cf282f14071f7eab148de6a09c111b7ff8d28bb23a49a479621498a88e8e
MISC metadata.xml 455 BLAKE2B df0782dbdf7870ce41f9f40cdb1b31091deb29a2f7cc4835c353cd341dbe6d39e55f21186951a1cf1d48d374f7143cc867b519026c4e3e88a58d6d04f81cb63e SHA512 65fa11207719317cfd02ed83e50e3fe100ceea4884e01fdb6f0179c03b28885ce43536c536527f888e7864260adefca493519383370886376f95bd980534e2cb

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">pysha3</remote-id>
<maintainer status="unknown">
<email>christian@python.org</email>
<name>Christian Heimes</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,32 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
DESCRIPTION="SHA-3 (Keccak) for Python 2.7 - 3.5"
HOMEPAGE="https://github.com/tiran/pysha3 https://pypi.org/project/pysha3/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="PSFL"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
DOCS="README.txt"
RDEPEND=""
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
}