Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/semantic_version/
Date: Sun, 06 Feb 2022 20:13:58
Message-Id: 1644178334.c74a92b163a7e554be093fa4351dcc0428b846fd.mgorny@gentoo
1 commit: c74a92b163a7e554be093fa4351dcc0428b846fd
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 6 20:10:37 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 6 20:12:14 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c74a92b1
7
8 dev-python/semantic_version: Bump to 2.9.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/semantic_version/Manifest | 1 +
13 .../semantic_version/semantic_version-2.9.0.ebuild | 27 ++++++++++++++++++++++
14 2 files changed, 28 insertions(+)
15
16 diff --git a/dev-python/semantic_version/Manifest b/dev-python/semantic_version/Manifest
17 index cd6cd538481b..9a016c5f5ab9 100644
18 --- a/dev-python/semantic_version/Manifest
19 +++ b/dev-python/semantic_version/Manifest
20 @@ -1,2 +1,3 @@
21 DIST python-semanticversion-81a4730778fba6b5c76242d3c8da6dace7e2ec0a.tar.gz 40289 BLAKE2B 3e41362b5905b69873b13aef3a5146f61991b9e7438c30351b45da420fe9acb41b03664c6c0981ae2e3e22b9f50c061da74742d999c1c5f87dbb2a365249f827 SHA512 db5bc2f40483f06ccebebbbfa14009a68e6d89ab7480d51a3cd26b10fbc9ab1b43def2ea402ceac9db16720d6226be91b04ecf34441b1d535819471007a02df6
22 DIST semantic_version-2.8.5.tar.gz 50009 BLAKE2B 5f966ca68358d4963b3a41574c100a8f78275445285aebbfa47d1febb0b7a2eb3a638254d4d1bd8e093acbef47a101ef0a0d7a86475313aefa211d2a0a3cfc19 SHA512 2ab59024c148239d78de062ff3a357f81a33fd066b6be8b6f9ef0753841a4945829b1c11899cfbda6c3ff09e00aa3b689e1fb6f8b9a92bbb3c2a62dd713b6049
23 +DIST semantic_version-2.9.0.tar.gz 51123 BLAKE2B c487c49ad17e7ca224ca4b6602abb42d1406dad8d70a3f5d0c536160e5b2d706ff0e1497961e3b9e0391c6d773ab7d0e9699f171f5781cec1d36025450cb7019 SHA512 e08f8e83ad20e94ecd6393d88836e13703fec3c2f89dc7e44fae42d8a929b2460524053fd7440865fa136d22312501a1368b5c3e923997b02383c8227972aa74
24
25 diff --git a/dev-python/semantic_version/semantic_version-2.9.0.ebuild b/dev-python/semantic_version/semantic_version-2.9.0.ebuild
26 new file mode 100644
27 index 000000000000..1f78f47ad99f
28 --- /dev/null
29 +++ b/dev-python/semantic_version/semantic_version-2.9.0.ebuild
30 @@ -0,0 +1,27 @@
31 +# Copyright 1999-2022 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +DISTUTILS_USE_PEP517=setuptools
37 +PYTHON_COMPAT=( python3_{8..10} pypy3 )
38 +
39 +inherit distutils-r1
40 +
41 +DESCRIPTION="Python library providing a few tools handling SemVer in Python"
42 +HOMEPAGE="https://pypi.org/project/semantic-version/"
43 +SRC_URI="
44 + https://github.com/rbarrois/python-semanticversion/archive/${PV}.tar.gz
45 + -> ${P}.tar.gz"
46 +
47 +LICENSE="BSD"
48 +SLOT="0"
49 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86"
50 +
51 +distutils_enable_sphinx docs \
52 + dev-python/sphinx_rtd_theme
53 +distutils_enable_tests pytest
54 +
55 +python_test() {
56 + epytest -p no:django
57 +}