From 8b4ace9c50842c5b83401ea7b179dcab940387e1 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Wed, 23 Sep 2020 10:22:15 +0100 Subject: gentoo resync : 23.09.2020 --- dev-python/fixtures/Manifest | 2 +- dev-python/fixtures/fixtures-3.0.0-r1.ebuild | 39 ++++++++++++++++++++++++++++ dev-python/fixtures/fixtures-3.0.0.ebuild | 39 ---------------------------- 3 files changed, 40 insertions(+), 40 deletions(-) create mode 100644 dev-python/fixtures/fixtures-3.0.0-r1.ebuild delete mode 100644 dev-python/fixtures/fixtures-3.0.0.ebuild (limited to 'dev-python/fixtures') diff --git a/dev-python/fixtures/Manifest b/dev-python/fixtures/Manifest index 7031f618b191..467f92b0fc42 100644 --- a/dev-python/fixtures/Manifest +++ b/dev-python/fixtures/Manifest @@ -1,3 +1,3 @@ DIST fixtures-3.0.0.tar.gz 56629 BLAKE2B 949c67c428f5e5ca0afc2f875dd4e2a212922415762a2528c185794e4ae2b74d32873aaf7132d97dec95a681bb4d87d85b11a39c43c64cd531dd4bf2fce75f87 SHA512 e52ba864c42d15a8baa60583761006b2dd78e3cd5f3f043f5702346aef428b933d62e8fa5889b7cb4196e4072acc5df3b7ffa39702a1b782887bdc109299b695 -EBUILD fixtures-3.0.0.ebuild 1153 BLAKE2B f697e124fc8b4df9faa1b33d0fed5941b5d3ed11b1f92ba55d0132640ab7be0ae2a25430f65cca46858d94c405e3b02aae2ce24e55a3dc2a0413c358f5e8e7e1 SHA512 75139b3e324ca6efa813b97302baa275d40e90e15a7fc42e3459afc15b586bd25afaa57c3a29053d782ca656413abdf92aa27ae1f4c29e2c01e1b97ead85e12a +EBUILD fixtures-3.0.0-r1.ebuild 1143 BLAKE2B 74e1e4647021530af2ef0379ba59f128e2898124a116c3c59f28ef692c3aaafa3af69bcaaf831859faaa03346c90213f41e3b7c725eaaa8af32b37bf3601fa65 SHA512 7acc2564d369ee7915062eceba44e82b2338eec283694b641bb877834361c7e6b821da3807653cf0674adafccb50fd790de617c89046c785e1fd8ef880eed75a MISC metadata.xml 913 BLAKE2B 716897e147898c78b273f4277b5b280ef0b210364bbe2cc2cf722394c33c65c45538c941575ebae6a5636411d38ed74bafce550d5f36a470670108b5f1aa3fee SHA512 e836e15989ce8d5a4af3678e949f6f7dea9bcb69ecd1fc0c41cd768a03842304dcd50679213e1034e460d5fb7a213c118417707b8ca620d316b99659733a39ec diff --git a/dev-python/fixtures/fixtures-3.0.0-r1.ebuild b/dev-python/fixtures/fixtures-3.0.0-r1.ebuild new file mode 100644 index 000000000000..f73b73f73f96 --- /dev/null +++ b/dev-python/fixtures/fixtures-3.0.0-r1.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6..9} pypy3 ) + +inherit distutils-r1 + +DESCRIPTION="Fixtures, reusable state for writing clean tests and more" +HOMEPAGE="https://launchpad.net/python-fixtures https://pypi.org/project/fixtures/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="|| ( Apache-2.0 BSD )" +SLOT="0" +KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 s390 sparc x86 ~amd64-linux ~x86-linux" +IUSE="test" +RESTRICT="!test? ( test )" + +# nose not listed but provides coverage output of tests +# run of test files by python lacks any output except on fail +RDEPEND=" + >=dev-python/pbr-0.11[${PYTHON_USEDEP}] + dev-python/six[${PYTHON_USEDEP}] + >=dev-python/testtools-0.9.22[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND} + test? ( dev-python/mock[${PYTHON_USEDEP}] )" + +src_prepare() { + # broken on py3.9 + # https://github.com/testing-cabal/fixtures/issues/44 + sed -i -e 's:test_patch_classmethod_with:_&:' \ + fixtures/tests/_fixtures/test_monkeypatch.py || die + distutils-r1_src_prepare +} + +python_test() { + emake check +} diff --git a/dev-python/fixtures/fixtures-3.0.0.ebuild b/dev-python/fixtures/fixtures-3.0.0.ebuild deleted file mode 100644 index 0f6eb5d60dcc..000000000000 --- a/dev-python/fixtures/fixtures-3.0.0.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python2_7 python3_{6..9} pypy3 ) - -inherit distutils-r1 - -DESCRIPTION="Fixtures, reusable state for writing clean tests and more" -HOMEPAGE="https://launchpad.net/python-fixtures https://pypi.org/project/fixtures/" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="|| ( Apache-2.0 BSD )" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 s390 sparc x86 ~amd64-linux ~x86-linux" -IUSE="test" -RESTRICT="!test? ( test )" - -# nose not listed but provides coverage output of tests -# run of test files by python lacks any output except on fail -RDEPEND=" - >=dev-python/pbr-0.11[${PYTHON_USEDEP}] - dev-python/six[${PYTHON_USEDEP}] - >=dev-python/testtools-0.9.22[${PYTHON_USEDEP}]" -DEPEND="${RDEPEND} - test? ( dev-python/mock[${PYTHON_USEDEP}] )" - -src_prepare() { - # broken on py3.9 - # https://github.com/testing-cabal/fixtures/issues/44 - sed -i -e 's:test_patch_classmethod_with:_&:' \ - fixtures/tests/_fixtures/test_monkeypatch.py || die - distutils-r1_src_prepare -} - -python_test() { - emake check -} -- cgit v1.2.3