diff options
author | Louis Sautier <sbraz@gentoo.org> | 2020-09-13 19:31:21 +0200 |
---|---|---|
committer | Louis Sautier <sbraz@gentoo.org> | 2020-09-13 19:55:56 +0200 |
commit | 3621249097d966682f3a204ea9f58aa8490a2942 (patch) | |
tree | 114a4068e335ab085c6649b7426b5b597e91758f /dev-python/doublex-expects | |
parent | dev-python/expects: bump to 0.9.0, add Python 3.9 support (diff) | |
download | gentoo-3621249097d966682f3a204ea9f58aa8490a2942.tar.gz gentoo-3621249097d966682f3a204ea9f58aa8490a2942.tar.bz2 gentoo-3621249097d966682f3a204ea9f58aa8490a2942.zip |
dev-python/doublex-expects: bump to 0.7.1, support Python 3.9
Also remove useless vcs-snapshot inherit.
Package-Manager: Portage-3.0.6, Repoman-3.0.1
Signed-off-by: Louis Sautier <sbraz@gentoo.org>
Diffstat (limited to 'dev-python/doublex-expects')
-rw-r--r-- | dev-python/doublex-expects/Manifest | 1 | ||||
-rw-r--r-- | dev-python/doublex-expects/doublex-expects-0.7.1.ebuild | 35 |
2 files changed, 36 insertions, 0 deletions
diff --git a/dev-python/doublex-expects/Manifest b/dev-python/doublex-expects/Manifest index ed9d022f70fa..031f897b7853 100644 --- a/dev-python/doublex-expects/Manifest +++ b/dev-python/doublex-expects/Manifest @@ -1 +1,2 @@ DIST doublex-expects-0.7.0_rc2.tar.gz 6151 BLAKE2B 34d385467fec24a5210dcad53ef768d23eb5117b14679b89bcef721bf90ea380da50c62233afe92abaaf3bd015dc1bb021adedaf98c463400af3ec4e462b7aaf SHA512 94e499f01fbdc73f3f97bbfb64f299d43e3b767f8eb00eecb7c05e062cedd8fa84569cc97ef48aeca24df5ff94b1bfbb330a786500641c857039c2e7d287e952 +DIST doublex-expects-0.7.1.tar.gz 6315 BLAKE2B 4af2832244578237821ba29baec54ffe1f226dfb1c92a5a03122c1a30c0e78d472ab8f75e6412a9014b97265120b5c60a8b5674cb42be58b46397a537bd534bf SHA512 2aaff2e58556ed9eb91ebb418e65058367411e011e843afb5adb08ab69705b6bdfb478d3052aae093ad1c1a1b49ba1e084e4c5510acde4874182a658330e3448 diff --git a/dev-python/doublex-expects/doublex-expects-0.7.1.ebuild b/dev-python/doublex-expects/doublex-expects-0.7.1.ebuild new file mode 100644 index 000000000000..6672dc2eac3d --- /dev/null +++ b/dev-python/doublex-expects/doublex-expects-0.7.1.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6,7,8,9} ) + +inherit distutils-r1 + +MY_PV=${PV/_/} + +DESCRIPTION="Expects matchers for Doublex test doubles assertions" +HOMEPAGE="https://github.com/jaimegildesagredo/doublex-expects" +SRC_URI="https://github.com/jaimegildesagredo/${PN}/archive/v${MY_PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~arm64" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND=" + dev-python/doublex[${PYTHON_USEDEP}] + >=dev-python/expects-0.8.0_rc1[${PYTHON_USEDEP}] +" +BDEPEND=" + test? ( + ${RDEPEND} + dev-python/mamba[${PYTHON_USEDEP}] + ) +" + +python_test() { + mamba || die "Tests failed under ${EPYTHON}" +} |