diff options
author | V3n3RiX <venerix@koprulu.sector> | 2022-03-20 00:40:44 +0000 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2022-03-20 00:40:44 +0000 |
commit | 4cbcc855382a06088e2f016f62cafdbcb7e40665 (patch) | |
tree | 356496503d52354aa6d9f2d36126302fed5f3a73 /dev-python/incremental | |
parent | fcc5224904648a8e6eb528d7603154160a20022f (diff) |
gentoo resync : 20.03.2022
Diffstat (limited to 'dev-python/incremental')
-rw-r--r-- | dev-python/incremental/Manifest | 2 | ||||
-rw-r--r-- | dev-python/incremental/incremental-21.3.0-r1.ebuild (renamed from dev-python/incremental/incremental-21.3.0.ebuild) | 15 |
2 files changed, 8 insertions, 9 deletions
diff --git a/dev-python/incremental/Manifest b/dev-python/incremental/Manifest index dacd7fd1c627..88e39f692d1d 100644 --- a/dev-python/incremental/Manifest +++ b/dev-python/incremental/Manifest @@ -1,3 +1,3 @@ DIST incremental-21.3.0.tar.gz 17058 BLAKE2B a6c49d15eb73abbab129e675d937e795a47aca10f74a8d5fc80ebf6575ca996cc7dc16aac9ca02c7a206cf8f59b239f3fc04fc00b28827d0a3c76a88189dabf7 SHA512 b8b50151cd2467e552d9268decadbb839b047cf58a450b72e0437ffc5f9af7d78c20a24193c0668cf48dd6264b852d9cee68e59529018e0ca07825e0c185d1e8 -EBUILD incremental-21.3.0.ebuild 1003 BLAKE2B a3123bc0070411424a2f052262bd6432a0b24204023e8d8ea827e74536c6af1f467e8d36899a90ff11408eb93b2655f16f4efa5a578bbbcc42e5c7b642dfe36b SHA512 5fa74c6edf4ca3794bced1fea1d191f2396f821965862721081a87309f1d6687f2e2349536ec8ed4ca13668be012d2a1a56cd8498ffd67d59ea626fdee4e3389 +EBUILD incremental-21.3.0-r1.ebuild 864 BLAKE2B e15ad40fd464dfba9985e2ed065e00fb1065a3f5da1454032358248a8392b25f6257cc992b8427e9ad54d91dbc41d78422953e792bc9e143137b2ee6e0a06d25 SHA512 bbfe67e6142f85277b45af9482d9ea9c9b4490350f16a3d0c2f6a8bcded5bc86b20e8064168ab3b6370a47c852a9955418cdda0569e9d2f2c8826f4f5b32f9e1 MISC metadata.xml 501 BLAKE2B b83d40e36b124d2aedb279a12ac7d1e4f43d4bf289211491fbf1b37232c651df27e38869269fc5bf1960f9a0f04524920839a1595a6b5a7beed5a50a5219b4c1 SHA512 ec1f4c5ee87bd2ad6c247fa182c2ea1d8d0f544308fe64afa925aada1200e0c0bb4955971e0d7a3a9a4eb25486b0693c499b64a6de1cefba2868c58e319967cc diff --git a/dev-python/incremental/incremental-21.3.0.ebuild b/dev-python/incremental/incremental-21.3.0-r1.ebuild index b26924b94c32..db98e34e649e 100644 --- a/dev-python/incremental/incremental-21.3.0.ebuild +++ b/dev-python/incremental/incremental-21.3.0-r1.ebuild @@ -1,11 +1,10 @@ # Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 -PYTHON_COMPAT=( python3_{7..10} ) -# TODO: revert to rdepend once this has been merged: -# https://github.com/twisted/incremental/pull/59 -DISTUTILS_USE_SETUPTOOLS=manual +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{8..10} pypy3 ) inherit distutils-r1 @@ -22,10 +21,10 @@ RESTRICT="!test? ( test )" RDEPEND=" dev-python/click[${PYTHON_USEDEP}] dev-python/setuptools[${PYTHON_USEDEP}]" -BDEPEND="dev-python/setuptools[${PYTHON_USEDEP}] +BDEPEND=" test? ( dev-python/twisted[${PYTHON_USEDEP}] )" python_test() { - distutils_install_for_testing - trial incremental || die "Tests failed on ${EPYTHON}" + "${EPYTHON}" -m twisted.trial incremental || + die "Tests failed on ${EPYTHON}" } |