summaryrefslogtreecommitdiff
path: root/dev-python/backports-zstd/backports-zstd-1.0.0.ebuild
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2025-10-21 13:09:05 +0200
committerMichał Górny <mgorny@gentoo.org>2025-10-21 13:12:32 +0200
commitb843570b45d8c6cd508433f9abe6b7db55c6604a (patch)
treeb858fb194aedc767e8fea44045469c7c400c1c43 /dev-python/backports-zstd/backports-zstd-1.0.0.ebuild
parentdd5c251eddbef21abb15fef6834203bf25ae1366 (diff)
downloadgentoo-b843570b45d8c6cd508433f9abe6b7db55c6604a.tar.gz
gentoo-b843570b45d8c6cd508433f9abe6b7db55c6604a.tar.bz2
gentoo-b843570b45d8c6cd508433f9abe6b7db55c6604a.zip
dev-python/backports-zstd: Remove backports/__init__.py
Closes: https://bugs.gentoo.org/964779 Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/backports-zstd/backports-zstd-1.0.0.ebuild')
-rw-r--r--dev-python/backports-zstd/backports-zstd-1.0.0.ebuild51
1 files changed, 0 insertions, 51 deletions
diff --git a/dev-python/backports-zstd/backports-zstd-1.0.0.ebuild b/dev-python/backports-zstd/backports-zstd-1.0.0.ebuild
deleted file mode 100644
index 8a9d83682356..000000000000
--- a/dev-python/backports-zstd/backports-zstd-1.0.0.ebuild
+++ /dev/null
@@ -1,51 +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
-PYPI_PN=${PN/-/.}
-PYPI_VERIFY_REPO=https://github.com/Rogdham/backports.zstd
-PYTHON_COMPAT=( pypy3_11 python3_{11..13} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Backport of PEP-784: adding Zstandard to the standard library"
-HOMEPAGE="
- https://github.com/Rogdham/backports.zstd/
- https://pypi.org/project/backports.zstd/
-"
-
-LICENSE="PSF-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
-
-DEPEND="
- app-arch/zstd:=
-"
-RDEPEND="
- ${DEPEND}
-"
-
-distutils_enable_tests unittest
-
-src_prepare() {
- local PATCHES=(
- # https://github.com/Rogdham/backports.zstd/pull/54
- "${FILESDIR}/${P}-py313.patch"
- )
-
- distutils-r1_src_prepare
-
- # remove -flto and other forced cflags
- sed -i -e 's:kwargs\["extra.*:pass:' setup.py || die
-
- DISTUTILS_ARGS=(
- --system-zstd
- )
-}
-
-python_test() {
- eunittest tests
-}