Gentoo Archives: gentoo-commits

From: Haelwenn Monnier <contact@×××××××××.me>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-python/wheezy-template/
Date: Mon, 29 Aug 2022 22:51:07
Message-Id: 1661813368.05c3f807343685bc14c934faf9796bf348840514.lanodan@gentoo
1 commit: 05c3f807343685bc14c934faf9796bf348840514
2 Author: Haelwenn (lanodan) Monnier <contact <AT> hacktivis <DOT> me>
3 AuthorDate: Sun Aug 28 17:09:33 2022 +0000
4 Commit: Haelwenn Monnier <contact <AT> hacktivis <DOT> me>
5 CommitDate: Mon Aug 29 22:49:28 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=05c3f807
7
8 dev-python/wheezy-template: new package, add 3.1.0
9
10 Signed-off-by: Haelwenn (lanodan) Monnier <contact <AT> hacktivis.me>
11
12 dev-python/wheezy-template/Manifest | 1 +
13 .../wheezy-template/wheezy-template-3.1.0.ebuild | 26 ++++++++++++++++++++++
14 2 files changed, 27 insertions(+)
15
16 diff --git a/dev-python/wheezy-template/Manifest b/dev-python/wheezy-template/Manifest
17 new file mode 100644
18 index 000000000..adbbef0ea
19 --- /dev/null
20 +++ b/dev-python/wheezy-template/Manifest
21 @@ -0,0 +1 @@
22 +DIST wheezy.template-3.1.0.gh.tar.gz 66965 BLAKE2B 6cbaa6e5656a0b3bf417ed500770c97f2207f97822ccdf624c87cb0f3c0d2fa3b1a2269641325c6d6138568aeff3bcc417e6e4896186e2fe7c1b31a15e2d7365 SHA512 f73bb03c6c4d1d34f493ea4e97014a2bd2e14eba3fde5f7fc84a05036a0fdce35ebf4b0ab2ba9ead2a6bec73c416c2f477e44281a437fe776abb009293e1eab3
23
24 diff --git a/dev-python/wheezy-template/wheezy-template-3.1.0.ebuild b/dev-python/wheezy-template/wheezy-template-3.1.0.ebuild
25 new file mode 100644
26 index 000000000..0c8e99bd4
27 --- /dev/null
28 +++ b/dev-python/wheezy-template/wheezy-template-3.1.0.ebuild
29 @@ -0,0 +1,26 @@
30 +# Copyright 2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +# Tests aren't passing with PEP517
36 +#DISTUTILS_USE_PEP517="setuptools"
37 +PYTHON_COMPAT=( python3_{8,9,10} )
38 +
39 +inherit distutils-r1
40 +
41 +MY_PN="wheezy.template"
42 +MY_P="${MY_PN}-${PV}"
43 +
44 +DESCRIPTION="lightweight template library"
45 +HOMEPAGE="https://github.com/akornatskyy/wheezy.template"
46 +# as usual pypi doesn't contains tests
47 +SRC_URI="https://github.com/akornatskyy/wheezy.template/archive/refs/tags/${PV}.tar.gz -> ${MY_P}.gh.tar.gz"
48 +S="${WORKDIR}/${MY_P}"
49 +KEYWORDS="~amd64"
50 +LICENSE="MIT"
51 +SLOT="0"
52 +
53 +DEPEND="dev-python/cython[${PYTHON_USEDEP}]"
54 +
55 +distutils_enable_tests pytest