diff --git a/sdk_container/src/third_party/portage-stable/dev-python/lazy-object-proxy/Manifest b/sdk_container/src/third_party/portage-stable/dev-python/lazy-object-proxy/Manifest index 3e14f33ff6..923ac8a658 100644 --- a/sdk_container/src/third_party/portage-stable/dev-python/lazy-object-proxy/Manifest +++ b/sdk_container/src/third_party/portage-stable/dev-python/lazy-object-proxy/Manifest @@ -1,4 +1 @@ -DIST lazy-object-proxy-1.2.1.tar.gz 28860 SHA256 22ed751a2c63c6cf718674fd7461b1dfc45215bab4751ca32b6c9b8cb2734cb3 SHA512 60813fea51e14ccfa22974c547c7179593da25e4ba65380c39493d2b91558bfcdffa298fe0a043170414d897bd72fd22f0bc3bc3fbdc8202873fab6c2a8e45a8 WHIRLPOOL 3e6bad5e09407d2ff750ce2d1078aa65156d61224c8f04b90a535235cc4c12d2683844dc43eef1a18805b395eb8d47508cb11dfde4f9cec08907657cf73613c1 -EBUILD lazy-object-proxy-1.2.1.ebuild 967 SHA256 6acf62d8295475dd5b2de0f2cd4a822b163fadf347b63618b50f055a1a15104a SHA512 86597e8b1947672ea47f3abacbf0efd0e2eaaa229b97752141428e33a920ec0766bc32d8cb9d1f5b4ce10a8901c3eca93a5579f7774c1dc463be35ff801387f3 WHIRLPOOL e8e08402ec9d6f7ceb579fa2237a7cdedf2cdd60bd93d6bbbfea982e5498f6bdc92e8a7a9d5ffa11b5dfa2a8ff339bbcb42b0e671dfaee84abcdeafa458bd6e6 -MISC ChangeLog 1812 SHA256 a26df6d0999af29810272190cdc680f8dd26bcff397c360dc1268fb3b9e6b975 SHA512 97a6fa00cb18d14738e44495c59797942d7712a492ce63975acd345df50ab4e1a903f3d7ec3d460729978cdccec1ee4875896c6176c72c2c4858398a28cc3c48 WHIRLPOOL a8faf2abc695f71e7471ad66afd52ef66aa67d94b7ab356fbf968946ece2b01260b80e474feba97b031dac0c07d0f54a407a91bbdc9b9705f3a3e7e275e84a4a -MISC metadata.xml 539 SHA256 f6e08bffa1429652c15ed155f686fb75477608a9e5e2ad83fa1f5d2e3d4608d8 SHA512 7e5fa1513ed6a00183c3722f53b25062e35a3128dce6fd4e0d40fc10dcce8157eb902654b2f7606184378f81972f9bafc6e1ba578581ecf6d8e1b3ec09e1f473 WHIRLPOOL 8c3115e17fe666cb12c18a4eb500e2960b6adb81cc6539aeee3f01f0392d0154f7dc4dd009390f729e07dd1444d83a5c8bc3671a8645f2aa85a1930f6b4468de +DIST lazy-object-proxy-1.5.0.tar.gz 35938 BLAKE2B 11e091538f4bcddd5acb39963572e30535b01227481affcb160d55b39c5b4548fef2da316efe483d6b0450e204126b957884dfb7a96727b0a00209addd6097cc SHA512 8d594df743694f01b9710e55d8e88831d6ac2e81a925ad310f0c39d061f20115550c5adf1da40d0d7c4749eb3a7ffbbb6000ebbda3dbb445c9efa1d05ff37cc3 diff --git a/sdk_container/src/third_party/portage-stable/dev-python/lazy-object-proxy/lazy-object-proxy-1.2.1.ebuild b/sdk_container/src/third_party/portage-stable/dev-python/lazy-object-proxy/lazy-object-proxy-1.5.0.ebuild similarity index 57% rename from sdk_container/src/third_party/portage-stable/dev-python/lazy-object-proxy/lazy-object-proxy-1.2.1.ebuild rename to sdk_container/src/third_party/portage-stable/dev-python/lazy-object-proxy/lazy-object-proxy-1.5.0.ebuild index e18c82babf..7be3d86661 100644 --- a/sdk_container/src/third_party/portage-stable/dev-python/lazy-object-proxy/lazy-object-proxy-1.2.1.ebuild +++ b/sdk_container/src/third_party/portage-stable/dev-python/lazy-object-proxy/lazy-object-proxy-1.5.0.ebuild @@ -1,30 +1,28 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=7 -PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy ) +PYTHON_COMPAT=( python3_{7..10} pypy3 ) inherit distutils-r1 DESCRIPTION="A fast and thorough lazy object proxy" HOMEPAGE=" https://github.com/ionelmc/python-lazy-object-proxy - http://pypi.python.org/pypi/lazy-object-proxy + https://pypi.org/project/lazy-object-proxy/ https://python-lazy-object-proxy.readthedocs.org/" SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" LICENSE="BSD" SLOT="0" -KEYWORDS="alpha amd64 arm ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux" -IUSE="test" +KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos" -RDEPEND="" -DEPEND="${RDEPEND} - dev-python/setuptools[${PYTHON_USEDEP}] - test? ( - dev-python/pytest[${PYTHON_USEDEP}] - )" +BDEPEND=" + dev-python/setuptools_scm[${PYTHON_USEDEP}] +" + +distutils_enable_tests pytest python_prepare_all() { # No need to benchmark @@ -36,5 +34,5 @@ python_prepare_all() { } python_test() { - py.test -v -v --ignore=src || die "Fails for ${EPYTHON}" + pytest -v -v --ignore=src || die "Fails for ${EPYTHON}" } diff --git a/sdk_container/src/third_party/portage-stable/dev-python/lazy-object-proxy/metadata.xml b/sdk_container/src/third_party/portage-stable/dev-python/lazy-object-proxy/metadata.xml index 90b19b8141..d26f3b31b0 100644 --- a/sdk_container/src/third_party/portage-stable/dev-python/lazy-object-proxy/metadata.xml +++ b/sdk_container/src/third_party/portage-stable/dev-python/lazy-object-proxy/metadata.xml @@ -1,5 +1,5 @@ - + python@gentoo.org