diff options
author | V3n3RiX <venerix@koprulu.sector> | 2023-06-27 13:35:02 +0100 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2023-06-27 13:35:02 +0100 |
commit | ef593d1ec529be89d755077eee3869006d8c18ae (patch) | |
tree | e17a9fcd71c371059f0168cbdfe109c563536c27 /dev-python/appdirs | |
parent | 61faa1ea0e8302df305bc281038fc00dc7eb1dd4 (diff) |
gentoo auto-resync : 27:06:2023 - 13:35:02
Diffstat (limited to 'dev-python/appdirs')
-rw-r--r-- | dev-python/appdirs/Manifest | 2 | ||||
-rw-r--r-- | dev-python/appdirs/appdirs-1.4.4-r2.ebuild | 37 |
2 files changed, 0 insertions, 39 deletions
diff --git a/dev-python/appdirs/Manifest b/dev-python/appdirs/Manifest index 18acaf58608d..693c98ac83a7 100644 --- a/dev-python/appdirs/Manifest +++ b/dev-python/appdirs/Manifest @@ -1,5 +1,3 @@ DIST appdirs-1.4.4.gh.tar.gz 9840 BLAKE2B cb9466f4a7f7c1d6f5b6d7ca031820ec4d3450afcaa8ba571e35387c3109ede4e2afbf2c1141a9d01d13798f55524d5efd3fa12546a9378abbda405353938d79 SHA512 4c0e1e8dcd3f91b8b2d215b3f1e2ffaa85137fe054d07d3a2d442b1419e3b44e96fdea1620bd000bd3f4744f71b71f07280094f073df0ff008fac902af614656 -DIST appdirs-1.4.4.tar.gz 9840 BLAKE2B cb9466f4a7f7c1d6f5b6d7ca031820ec4d3450afcaa8ba571e35387c3109ede4e2afbf2c1141a9d01d13798f55524d5efd3fa12546a9378abbda405353938d79 SHA512 4c0e1e8dcd3f91b8b2d215b3f1e2ffaa85137fe054d07d3a2d442b1419e3b44e96fdea1620bd000bd3f4744f71b71f07280094f073df0ff008fac902af614656 -EBUILD appdirs-1.4.4-r2.ebuild 1098 BLAKE2B b9077aaf04f32d40f0fecf776961edaed4e4ee02862985706878eb6214bbe8c387c27faab892b982da7fa6606ee9795b73848e2392e3579a9e016f8ff81b1a12 SHA512 37d4a9bd041ca916966b6daba1bccc95fecb2647991d5e0717088de07b214f215c48c3645ba52adf8e1eaf67c187863077e5dfc84ded5a39fe399db388c1d675 EBUILD appdirs-1.4.4-r3.ebuild 730 BLAKE2B 99fdca1ac06e37406ff73116dfe33440997256c10f774d8d381ca82de23caddf10b3d71abcef3e6317b2a000214703b542db86b15676d2f21528ca657baa9a70 SHA512 3ebe237ca4e739313ed5ca40fbe1dfb8dc10fabae818363b27f6272b2ce26087c860e6d24c885b2b773774f378bbf72e9471bb9a48ac223a87e3abd8cba097f0 MISC metadata.xml 616 BLAKE2B f7c2e8c06d7af1c1d9566581df4dd3063e8f2f3e3652fe67327fb3567cb9e74567118a02035edc93d7949708da4f4dff65c83c782ef27f591ff011647f7e13e6 SHA512 ad9e7e2937eaf911e68603134ca41f3cc724c3005d6ebcd420892456074364c916b32b914122015031a9c23f6caa1da99859eac01f5d84160509798676fa5fad 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}" -} |