1
0

dev-python/pytmx: enable PEP 517

This commit is contained in:
Ryan Fox 2022-08-07 18:42:20 -07:00
parent 7313f82d46
commit daf0092e71
Signed by: flewkey
GPG Key ID: 94F56ADFD848851E
3 changed files with 16 additions and 16 deletions

View File

@ -7,6 +7,6 @@ EBUILD pytmx-3.24.ebuild 523 BLAKE2B 1ec4ea586ba53d5c59893964dac692c673bdde0aa5b
EBUILD pytmx-3.25.ebuild 523 BLAKE2B 1ec4ea586ba53d5c59893964dac692c673bdde0aa5b66484b9809818c7ac5e648f2c8db5977d9857e06dabf5e5be5f0bdc6f7d372a783c2f250c66a7da5c2fa6 SHA512 5874da96a59b8887aca060c24f44d89689ee0a33035ec90d911fcf232a72cde815a799a49c7188edcfc8ad7e4a7a63e41b656f44479664007d3408f95543c499
EBUILD pytmx-3.26.ebuild 523 BLAKE2B 1ec4ea586ba53d5c59893964dac692c673bdde0aa5b66484b9809818c7ac5e648f2c8db5977d9857e06dabf5e5be5f0bdc6f7d372a783c2f250c66a7da5c2fa6 SHA512 5874da96a59b8887aca060c24f44d89689ee0a33035ec90d911fcf232a72cde815a799a49c7188edcfc8ad7e4a7a63e41b656f44479664007d3408f95543c499
EBUILD pytmx-3.30.ebuild 625 BLAKE2B 1f64b4d8a1bfa5a98d6d970458fb89be4a2c359e09a181cef6676818dd802563c36823451d92a10f26e9fd1bea27eff61bac82b45cbe00ddb2ec9a99742f479b SHA512 64fc77417e78139580ed9d5d0ef370063de60e8a3bbeeaf701db5b2fb1138e0826576537d9527beb25707b27544cfdb2880086439a9444c7295f7168a39f17e2
EBUILD pytmx-3.31.ebuild 626 BLAKE2B 029ff45b2588571932a46c9b3c6d8d17e580b311b7e3e3b4e1450ae4baf14d7a23723a1e712d952f4dae8c3ffb45ce848c95e55c3dad545404b456d58de7231b SHA512 8a9167dfe12faaefb46e6095b5d274bf8552b3db19956e77bc674bbd8c8a36f770e2403382d01ca9c34f8a615b6f016e14110e526724bbf5acb2e2699aa400d2
EBUILD pytmx-9999.ebuild 626 BLAKE2B 029ff45b2588571932a46c9b3c6d8d17e580b311b7e3e3b4e1450ae4baf14d7a23723a1e712d952f4dae8c3ffb45ce848c95e55c3dad545404b456d58de7231b SHA512 8a9167dfe12faaefb46e6095b5d274bf8552b3db19956e77bc674bbd8c8a36f770e2403382d01ca9c34f8a615b6f016e14110e526724bbf5acb2e2699aa400d2
EBUILD pytmx-3.31.ebuild 623 BLAKE2B f26158290d7eb1521cffb153061e193910263bb348f37e29b3a37350bd692e698bf701fcfe054894a3c45c227ee2797b2340312eef7e086d41590b9a54c6139a SHA512 bc27c31deb97d34e3cdb75d96f6f49ac9820650ac64aff8abf49de6819b6546b6f5ae0bb68177508f1b1025d2155c3da83f3e5e6005d5e69f2c70dc456f91c8b
EBUILD pytmx-9999.ebuild 623 BLAKE2B f26158290d7eb1521cffb153061e193910263bb348f37e29b3a37350bd692e698bf701fcfe054894a3c45c227ee2797b2340312eef7e086d41590b9a54c6139a SHA512 bc27c31deb97d34e3cdb75d96f6f49ac9820650ac64aff8abf49de6819b6546b6f5ae0bb68177508f1b1025d2155c3da83f3e5e6005d5e69f2c70dc456f91c8b
MISC metadata.xml 236 BLAKE2B fdb34c66e3059efc0efb2328ffedb24c495be95dfeb68b7adcdf5ab1a88eee6788294d07ec032238de7d9127cffd50a1598b42aa8f99d3d11f54a761c79a9482 SHA512 43add4c2db3d06110521dea982cfcbddc98d63bb1e1b89952511654d54f09746e0d76ac1e0f0e70d2832357f44fe11fc4653500b856c7b29d05a55bb70535e80

View File

@ -1,19 +1,19 @@
# Copyright 1999-2021 Gentoo Authors
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{3..10} )
DISTUTILS_USE_SETUPTOOLS=bdepend
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{8..11} )
inherit distutils-r1
if [[ ${PV} != *9999* ]]; then
SRC_URI="https://github.com/bitcraft/pytmx/archive/v${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64"
else
if [[ ${PV} == 9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/bitcraft/pytmx.git"
else
SRC_URI="https://github.com/bitcraft/pytmx/archive/v${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64"
fi
DESCRIPTION="Python library to read Tiled Map Editor's TMX maps"

View File

@ -1,19 +1,19 @@
# Copyright 1999-2021 Gentoo Authors
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{3..10} )
DISTUTILS_USE_SETUPTOOLS=bdepend
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{8..11} )
inherit distutils-r1
if [[ ${PV} != *9999* ]]; then
SRC_URI="https://github.com/bitcraft/pytmx/archive/v${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64"
else
if [[ ${PV} == 9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/bitcraft/pytmx.git"
else
SRC_URI="https://github.com/bitcraft/pytmx/archive/v${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64"
fi
DESCRIPTION="Python library to read Tiled Map Editor's TMX maps"