diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2020-09-23 10:22:15 +0100 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2020-09-23 10:22:15 +0100 |
commit | 8b4ace9c50842c5b83401ea7b179dcab940387e1 (patch) | |
tree | 230f3135ceaace633cf93e9838b185c4a6664c2e /dev-python/pysha3 | |
parent | 9ee6d97c2883d42f204a533a8bc1f4562df778fb (diff) |
gentoo resync : 23.09.2020
Diffstat (limited to 'dev-python/pysha3')
-rw-r--r-- | dev-python/pysha3/Manifest | 3 | ||||
-rw-r--r-- | dev-python/pysha3/metadata.xml | 15 | ||||
-rw-r--r-- | dev-python/pysha3/pysha3-1.0.2-r1.ebuild | 32 |
3 files changed, 0 insertions, 50 deletions
diff --git a/dev-python/pysha3/Manifest b/dev-python/pysha3/Manifest deleted file mode 100644 index 4e8660cec6ae..000000000000 --- a/dev-python/pysha3/Manifest +++ /dev/null @@ -1,3 +0,0 @@ -DIST pysha3-1.0.2.tar.gz 829192 BLAKE2B ff0c0e1cc35f5e2efc0a7d3074022aaa1e05fa72cc151560180fe08958c8f83ec2b0f50f9e1bf772fd386647f3d44e8b4139f5593f6d0d678412eabe4829e939 SHA512 57476d24b9d399471cf56c8c1413f58dbc863c16d4fe9ebd2cf65df8092e139e2505252605e3fccd68978f5ee3fffdfeeedee6788aab38a54c918a452fc19720 -EBUILD pysha3-1.0.2-r1.ebuild 995 BLAKE2B 11f8ec2450fabdd847f15984f17f757a25e31818448300be7bcd1e0f90352e380d09814f3d226914ef0b4392d7bfad260ae48e77cbfb2b14a0a270ee44cdf6ad SHA512 a26be6e3b778f81848c9cf8c299488822f486752662ef6630a3b31f8ee921533a3a08e8be4d9d1fb3136e1561fc34b530662c2b1e8a5fd11198e821b31f3e5ec -MISC metadata.xml 447 BLAKE2B b29243faa53b7068fce5b86ff8ffeaef920340c92bee35620fb2977b02a1f543fb6cfbd5509fbe784753d9e1b123bb1ed594dfd59e2ba611b9ce0e1df6319174 SHA512 e29bf7eb65b03e9190be49df6e924da2e8a6d30eb74bad5cd5b3551df5184c720c9666a11c0cf4afe4626a3d433edd0989507583d97aa24cf5b8bb9ffb535b9d diff --git a/dev-python/pysha3/metadata.xml b/dev-python/pysha3/metadata.xml deleted file mode 100644 index 410617d33dce..000000000000 --- a/dev-python/pysha3/metadata.xml +++ /dev/null @@ -1,15 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="person"> - <email>mgorny@gentoo.org</email> - <name>Michał Górny</name> - </maintainer> - <maintainer type="project"> - <email>python@gentoo.org</email> - </maintainer> - <upstream> - <remote-id type="github">tiran/pysha3</remote-id> - <remote-id type="pypi">pysha3</remote-id> - </upstream> -</pkgmetadata> diff --git a/dev-python/pysha3/pysha3-1.0.2-r1.ebuild b/dev-python/pysha3/pysha3-1.0.2-r1.ebuild deleted file mode 100644 index 791d4c5a4c99..000000000000 --- a/dev-python/pysha3/pysha3-1.0.2-r1.ebuild +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python{3_6,3_7} ) -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/${PN::1}/${PN}/${P}.tar.gz" - -LICENSE="CC0-1.0 PSF-2" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 s390 sparc x86 ~x64-cygwin ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="" - -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" - -python_prepare_all() { - # Remove meaningless AttributeError checks. They don't really test - # the implementation but Python implementation behavior, and they - # fail with PyPy. Oh yes, and this doesn't affect correctly written - # programs. - sed -i -e '/AttributeError/d' tests.py || die - - distutils-r1_python_prepare_all -} - -python_test() { - esetup.py test -} |