From 0c3bb5222eab8064f5cac05e2ebd34bb1ae0acb8 Mon Sep 17 00:00:00 2001 From: Virgil Dupras Date: Thu, 2 Aug 2018 08:29:43 -0400 Subject: dev-python/invoke: Bump to 1.1.1 Also, fix broken tests dependencies Package-Manager: Portage-2.3.44, Repoman-2.3.10 --- dev-python/invoke/Manifest | 2 +- dev-python/invoke/invoke-1.1.0.ebuild | 34 ---------------------------------- dev-python/invoke/invoke-1.1.1.ebuild | 34 ++++++++++++++++++++++++++++++++++ 3 files changed, 35 insertions(+), 35 deletions(-) delete mode 100644 dev-python/invoke/invoke-1.1.0.ebuild create mode 100644 dev-python/invoke/invoke-1.1.1.ebuild (limited to 'dev-python/invoke') diff --git a/dev-python/invoke/Manifest b/dev-python/invoke/Manifest index 3d33426132ae..52ecb530a240 100644 --- a/dev-python/invoke/Manifest +++ b/dev-python/invoke/Manifest @@ -1 +1 @@ -DIST invoke-1.1.0.tar.gz 309811 BLAKE2B d1832d141a50d5ee9039614191cc02f266f440fd939463d572218a79ded9384ac8dc71798f716482021a0cc39611bc51b73973b67973d3cd5a3d208608091e17 SHA512 6b8ebee7d2dd68fe0134491b15a3b85fd6d1493c5b81f00ba577c6bcf3e4a264d74f68bdd0d40a4c5bdde18c021395ee335d10dde8e676bc9efb313e1ae9b55c +DIST invoke-1.1.1.tar.gz 311831 BLAKE2B 2918c1a03cccbd90be6aa495206a2714f45c9690d8ce1b063adc0cacfa4c7accd36dd94863a83e9cc0c05aaf889bd746c3f528fad5af0db9f64725438866f81a SHA512 2dabf88428a53f244cab45cbc073b3a91fea5dd97a7590a58701a32bfaa14a4afe5d6a2e4ff4ed03ae38e1dfecc5a7c0f811bb18313e0af1f4e116f56c5e9ba7 diff --git a/dev-python/invoke/invoke-1.1.0.ebuild b/dev-python/invoke/invoke-1.1.0.ebuild deleted file mode 100644 index 59e4a80b9830..000000000000 --- a/dev-python/invoke/invoke-1.1.0.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -PYTHON_COMPAT=( python{2_7,3_5,3_6,3_7} ) -inherit distutils-r1 - -DESCRIPTION="Pythonic task execution" -HOMEPAGE="https://pypi.org/project/invoke/" -SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" - -LICENSE="BSD-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="test" - -BDEPEND=" - dev-python/setuptools[${PYTHON_USEDEP}] - test? ( - dev-python/mock - >=dev-python/pytest-3.0 - dev-python/pytest-relaxed - )" -RDEPEND="" - -PATCHES=( - "${FILESDIR}/${PN}-1.1.0-skip-pty-tests.patch" -) - -python_test() { - # -s flag is important: tests fail when pytest isn't in "no capture" mode - # -p pytest_relaxed: this plugin has to be loaded explicitly - pytest -s -v -p pytest_relaxed.plugin || die "Tests failed" -} diff --git a/dev-python/invoke/invoke-1.1.1.ebuild b/dev-python/invoke/invoke-1.1.1.ebuild new file mode 100644 index 000000000000..ec7d500d93db --- /dev/null +++ b/dev-python/invoke/invoke-1.1.1.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +PYTHON_COMPAT=( python{2_7,3_5,3_6,3_7} ) +inherit distutils-r1 + +DESCRIPTION="Pythonic task execution" +HOMEPAGE="https://pypi.org/project/invoke/" +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +BDEPEND=" + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( + dev-python/mock + >=dev-python/pytest-3.0 + >=dev-python/pytest-relaxed-1.1.4 + )" +RDEPEND="" + +PATCHES=( + "${FILESDIR}/${PN}-1.1.0-skip-pty-tests.patch" +) + +python_test() { + # -s flag is important: tests fail when pytest isn't in "no capture" mode + # -p pytest_relaxed: this plugin has to be loaded explicitly + pytest -s -v -p pytest_relaxed.plugin || die "Tests failed" +} -- cgit v1.2.3-65-gdbad