summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2023-06-27 13:45:53 +0200
committerMichał Górny <mgorny@gentoo.org>2023-06-27 13:50:16 +0200
commit5c482ad134b6e500b76d881d6d7e2c3a3c2fcd49 (patch)
tree65c663c5419a0fcf8e18a5c21960274e33c7581f /dev-python/appdirs/appdirs-1.4.4-r2.ebuild
parentdev-python/numpy: Stabilize 1.24.4 arm64, #909296 (diff)
downloadgentoo-5c482ad134b6e500b76d881d6d7e2c3a3c2fcd49.tar.gz
gentoo-5c482ad134b6e500b76d881d6d7e2c3a3c2fcd49.tar.bz2
gentoo-5c482ad134b6e500b76d881d6d7e2c3a3c2fcd49.zip
dev-python/appdirs: Remove old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/appdirs/appdirs-1.4.4-r2.ebuild')
-rw-r--r--dev-python/appdirs/appdirs-1.4.4-r2.ebuild37
1 files changed, 0 insertions, 37 deletions
diff --git a/dev-python/appdirs/appdirs-1.4.4-r2.ebuild b/dev-python/appdirs/appdirs-1.4.4-r2.ebuild
deleted file mode 100644
index bf510753e848..000000000000
--- a/dev-python/appdirs/appdirs-1.4.4-r2.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-# please keep this ebuild at EAPI 7 -- sys-apps/portage dep
-EAPI=7
-
-DISTUTILS_USE_PEP517=flit
-PYTHON_COMPAT=( python3_{9..11} pypy3 )
-
-inherit distutils-r1
-
-DESCRIPTION="Module for determining appropriate platform-specific dirs"
-HOMEPAGE="https://github.com/ActiveState/appdirs"
-SRC_URI="https://github.com/ActiveState/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
-
-src_configure() {
- [[ -e pyproject.toml ]] &&
- die "Upstream added pyproject.toml, recheck"
- # write a custom pyproject.toml to ease setuptools bootstrap
- cat > pyproject.toml <<-EOF || die
- [build-system]
- requires = ["flit_core >=3.2,<4"]
- build-backend = "flit_core.buildapi"
-
- [project]
- name = "appdirs"
- dynamic = ["version", "description"]
- EOF
-}
-
-python_test() {
- "${EPYTHON}" test/test_api.py -v || die "Tests fail with ${EPYTHON}"
-}