Gentoo Archives: gentoo-commits

From: Andrew Ammerlaan <andrewammerlaan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pytest-codeblocks/
Date: Mon, 21 Feb 2022 19:09:17
Message-Id: 1645470550.a0dcb9c9dac8fdc02c107d614d83a970081efc1f.andrewammerlaan@gentoo
1 commit: a0dcb9c9dac8fdc02c107d614d83a970081efc1f
2 Author: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 21 19:08:47 2022 +0000
4 Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 21 19:09:10 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a0dcb9c9
7
8 dev-python/pytest-codeblocks: add version 0.14.0
9
10 Package-Manager: Portage-3.0.30, Repoman-3.0.3
11 Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>
12
13 dev-python/pytest-codeblocks/Manifest | 1 +
14 .../pytest-codeblocks-0.14.0.ebuild | 28 ++++++++++++++++++++++
15 2 files changed, 29 insertions(+)
16
17 diff --git a/dev-python/pytest-codeblocks/Manifest b/dev-python/pytest-codeblocks/Manifest
18 index f04daed0cced..cfdb18e1c945 100644
19 --- a/dev-python/pytest-codeblocks/Manifest
20 +++ b/dev-python/pytest-codeblocks/Manifest
21 @@ -1,3 +1,4 @@
22 DIST pytest-codeblocks-0.12.2.tar.gz 8547 BLAKE2B d5bfea250aa2fc955eab5b8e96bb942c119b44367fa2f9e8cab8350409a7dbf697c16e3193ad18e629d7f4ccbb2ddc1f4fbce4cead96167cf16d1b6a922fdd91 SHA512 d69819106b389ce3cd2d04a1385e49f2bdf4eb70ea334175e6ba5e2921d77266ac2e69b22ce5a42880846555dd271e5b7dc25bda838b9238ad5d14add9389681
23 DIST pytest-codeblocks-0.13.0.tar.gz 8407 BLAKE2B 5ba3c41f7b4af908172799036331c6605fcd7d9c0fb0bdfc5cf3697e97181ec099b580a30d9dcd83ed568a5ee8fe736843d26b7d39163581adeb5d75a9a321f6 SHA512 092035e5cf3d1d35fedbc6f867ff77a40751df5b4a3b922d5f960fdaa5d1ca9e599c7b813ae60a4da3cd43e3e7884f38260f77bc466e234422480b5edebee24a
24 +DIST pytest-codeblocks-0.14.0.tar.gz 8432 BLAKE2B cb63d68e61a909bd199240470be6f09a0e48a6ef7ab4f2360940030a384919939e2274a604499bbeaf533cbf5e15b7402fd2294841ca21bc9d65c54977353549 SHA512 740b6a74a3451cee25e37969706d7b603f258c76bb8b1cd608eaf63021aaaed99136a41885b453a2708302f53e8d9516a3487dc3f5cc8ad39ca6c3ab9721ae86
25 DIST pytest-codeblocks-0.9.0.tar.gz 6590 BLAKE2B 34d1c72a891d2f2f1d98c4238322d888a48b286d628e3738043d16a59a75b3bd15b29e31c554a83508d9af31caf1b526e3c535a243bcf77c8d77f9bf5be69f5b SHA512 834002c4e9c8ad36baa9a4ed494fe28cf09460e0ee5a0a3d8d111cb0bd8ca4ed3c784a047901bc67984e7892f931b5644c1ea68112e4d9dda514a20e048b3d11
26
27 diff --git a/dev-python/pytest-codeblocks/pytest-codeblocks-0.14.0.ebuild b/dev-python/pytest-codeblocks/pytest-codeblocks-0.14.0.ebuild
28 new file mode 100644
29 index 000000000000..675979cdf569
30 --- /dev/null
31 +++ b/dev-python/pytest-codeblocks/pytest-codeblocks-0.14.0.ebuild
32 @@ -0,0 +1,28 @@
33 +# Copyright 2019-2022 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=8
37 +
38 +DISTUTILS_USE_PEP517=flit
39 +PYTHON_COMPAT=( python3_{8..10} )
40 +
41 +inherit distutils-r1
42 +
43 +DESCRIPTION="Extract code blocks from markdown"
44 +HOMEPAGE="https://github.com/nschloe/pytest-codeblocks/"
45 +SRC_URI="
46 + https://github.com/nschloe/pytest-codeblocks/archive/v${PV}.tar.gz
47 + -> ${P}.tar.gz"
48 +
49 +LICENSE="MIT"
50 +SLOT="0"
51 +KEYWORDS="~amd64 ~x86"
52 +
53 +BDEPEND="
54 + >=dev-python/pytest-7.0.0[${PYTHON_USEDEP}]"
55 +
56 +distutils_enable_tests pytest
57 +
58 +python_test() {
59 + epytest -p pytester
60 +}