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: Thu, 26 May 2022 18:54:51
Message-Id: 1653591282.37df2fe6c2c539a419765a2c87d7d358c39b2f02.mgorny@gentoo
1 commit: 37df2fe6c2c539a419765a2c87d7d358c39b2f02
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu May 26 18:46:54 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu May 26 18:54:42 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=37df2fe6
7
8 dev-python/semantic_version: Bump to 2.10.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/semantic_version/Manifest | 1 +
13 .../semantic_version-2.10.0.ebuild | 28 ++++++++++++++++++++++
14 2 files changed, 29 insertions(+)
15
16 diff --git a/dev-python/semantic_version/Manifest b/dev-python/semantic_version/Manifest
17 index e9b6e3e3b8bb..cec32216cef2 100644
18 --- a/dev-python/semantic_version/Manifest
19 +++ b/dev-python/semantic_version/Manifest
20 @@ -1 +1,2 @@
21 +DIST semantic_version-2.10.0.tar.gz 52289 BLAKE2B bb26ac31e71974376b40893cf000fe0d85e1e3e4c7c93372f2bfca841a5d760a99ca49d67f80c6e8707e60e313162b786300109f6f8cd1cfaa0001c343bc4702 SHA512 869a3901d4fc12acb285c94175011ed03dc00b35ab687c67dda458cffab5666cea21bc1b4bf75ef4edeb83b8080452a1c1470248eee54bbd269614a8cab132dc
22 DIST semantic_version-2.9.0.tar.gz 51123 BLAKE2B c487c49ad17e7ca224ca4b6602abb42d1406dad8d70a3f5d0c536160e5b2d706ff0e1497961e3b9e0391c6d773ab7d0e9699f171f5781cec1d36025450cb7019 SHA512 e08f8e83ad20e94ecd6393d88836e13703fec3c2f89dc7e44fae42d8a929b2460524053fd7440865fa136d22312501a1368b5c3e923997b02383c8227972aa74
23
24 diff --git a/dev-python/semantic_version/semantic_version-2.10.0.ebuild b/dev-python/semantic_version/semantic_version-2.10.0.ebuild
25 new file mode 100644
26 index 000000000000..e72be53b07fb
27 --- /dev/null
28 +++ b/dev-python/semantic_version/semantic_version-2.10.0.ebuild
29 @@ -0,0 +1,28 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +DISTUTILS_USE_PEP517=setuptools
36 +PYTHON_COMPAT=( python3_{8..11} pypy3 )
37 +
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="Python library providing a few tools handling SemVer in Python"
41 +HOMEPAGE="
42 + https://github.com/rbarrois/python-semanticversion/
43 + https://pypi.org/project/semantic-version/
44 +"
45 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
46 +
47 +LICENSE="BSD"
48 +SLOT="0"
49 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~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 +}