dev-python/pyzstd: drop 0.16.2

Signed-off-by: Takuya Wakazono <pastalian46@gmail.com>
This commit is contained in:
Takuya Wakazono
2025-05-11 22:32:59 +09:00
parent 2f7887132b
commit 9b4aca8125
2 changed files with 0 additions and 40 deletions

View File

@@ -1,2 +1 @@
DIST pyzstd-0.16.2.tar.gz 789505 BLAKE2B 268e543ba14395d50351ca8ddd39aba829a910bd529ef50967e6b695ef9ffd7ea3ac879ecabeb369c53b02a7adec50018e0528765d78bed92d9d6761e8cd9690 SHA512 b5660248f86bc84bc9d64da20ca7f5f56ac0d831170292e71b475e06480b13074c3de92d796e0e1858adfa0dbd272c37b31e6dc772c2239011690429adb112e2
DIST pyzstd-0.17.0.tar.gz 1212160 BLAKE2B df758d02d4cb8df504538b0ff9de059a86d15ca1fe362879932f916db9ac057eaa34efb342fcca9c206a8f463201b8f774978727c209cd8799e51152b7ff90c0 SHA512 932bd4b7df026c40aa24c1548237b3decf44109897572b8933d4a2284036998d7bb320d355a71f9ab04509333204072ed78098f6e6c05b997a80f268763a4b28

View File

@@ -1,39 +0,0 @@
# Copyright 2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_EXT=1
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{11..13} )
inherit distutils-r1 pypi
DESCRIPTION="Python bindings to Zstandard (zstd) compression library"
HOMEPAGE="
https://github.com/Rogdham/pyzstd
https://pypi.org/project/pyzstd/
"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64"
RDEPEND="app-arch/zstd:="
DEPEND="${RDEPEND}"
distutils_enable_tests unittest
src_prepare() {
# we don't need the custom build backend
sed -i 's/pyzstd_pep517/setuptools.build_meta/' pyproject.toml || die
sed -i "s/'-g0', '-flto'//" setup.py || die
distutils-r1_src_prepare
}
python_configure_all() {
DISTUTILS_ARGS=( --dynamic-link-zstd )
}
python_test() {
eunittest tests
}