summaryrefslogtreecommitdiff
path: root/dev-python/blake3-py-c/blake3-py-c-0.3.2.ebuild
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2023-01-27 21:05:15 +0100
committerMichał Górny <mgorny@gentoo.org>2023-01-27 21:09:11 +0100
commit180780d3c13bae2d513f414eef3cc69c1db73afd (patch)
tree9daf11a399bb4686e0fdf6071a9e517716291427 /dev-python/blake3-py-c/blake3-py-c-0.3.2.ebuild
parentf7fb5fa1e7771aaeccd138718d69a6a7ef862e1b (diff)
downloadgentoo-180780d3c13bae2d513f414eef3cc69c1db73afd.tar.gz
gentoo-180780d3c13bae2d513f414eef3cc69c1db73afd.tar.bz2
gentoo-180780d3c13bae2d513f414eef3cc69c1db73afd.zip
dev-python/blake3-py-c: Remove old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/blake3-py-c/blake3-py-c-0.3.2.ebuild')
-rw-r--r--dev-python/blake3-py-c/blake3-py-c-0.3.2.ebuild38
1 files changed, 0 insertions, 38 deletions
diff --git a/dev-python/blake3-py-c/blake3-py-c-0.3.2.ebuild b/dev-python/blake3-py-c/blake3-py-c-0.3.2.ebuild
deleted file mode 100644
index 860470324d40..000000000000
--- a/dev-python/blake3-py-c/blake3-py-c-0.3.2.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 2022-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..11} )
-
-inherit distutils-r1
-
-MY_P=${P/-c}
-DESCRIPTION="Python bindings for the BLAKE3 cryptographic hash function"
-HOMEPAGE="https://github.com/oconnor663/blake3-py/"
-SRC_URI="
- https://github.com/oconnor663/blake3-py/archive/${PV}.tar.gz
- -> ${MY_P}.gh.tar.gz
-"
-S=${WORKDIR}/${MY_P}/c_impl
-
-LICENSE="|| ( CC0-1.0 Apache-2.0 )"
-SLOT="0"
-KEYWORDS="~amd64"
-
-RDEPEND="
- !dev-python/blake3-py[${PYTHON_USEDEP}]
-"
-BDEPEND="
- test? (
- dev-python/numpy[${PYTHON_USEDEP}]
- )
-"
-
-distutils_enable_tests pytest
-
-python_test() {
- cd .. || die
- epytest
-}