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/tempora/
Date: Sun, 09 Jan 2022 05:14:00
Message-Id: 1641705107.063ee66e1572a7b64364f969998275ca5fa8b707.mgorny@gentoo
1 commit: 063ee66e1572a7b64364f969998275ca5fa8b707
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jan 9 05:11:47 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Jan 9 05:11:47 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=063ee66e
7
8 dev-python/tempora: Bump to 5.0.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/tempora/Manifest | 1 +
13 dev-python/tempora/tempora-5.0.0.ebuild | 35 +++++++++++++++++++++++++++++++++
14 2 files changed, 36 insertions(+)
15
16 diff --git a/dev-python/tempora/Manifest b/dev-python/tempora/Manifest
17 index dc33abb2a5d1..70b7d517e2bb 100644
18 --- a/dev-python/tempora/Manifest
19 +++ b/dev-python/tempora/Manifest
20 @@ -1 +1,2 @@
21 DIST tempora-4.1.2.tar.gz 19243 BLAKE2B 4014fce1abf24231c79bfa80db7ecf80303bca43902aa68a880c3e0a29cb9d6f7bd1d9e02c4f93d43db2a7810f0fd7a26de31383057dcf63b5b8a42fe8e6810e SHA512 dc03db61af973645f8f89c13eb1a0b696275a7a2768f82cd61d1602891d4bb0d4b45725404f39da242362346eb0dc6c38892a117f150f32517a2ac8d3436f5db
22 +DIST tempora-5.0.0.tar.gz 18532 BLAKE2B f3d59b7d7d2974564b0c7cf25d5bf8716610aa09dd134e37289648e71c4dd6989bfecfafd258da01875de0560cef31fcb8ee0ec85e16d642ff56d10915da6132 SHA512 e95fff8c460329c8369f8f819a95341ec4e1641d2ecc88251c9681ac5e9678eded0f320aa1bff98a980fc552cb214ea3f40c249ea25b54d8fbe34849fffff7b6
23
24 diff --git a/dev-python/tempora/tempora-5.0.0.ebuild b/dev-python/tempora/tempora-5.0.0.ebuild
25 new file mode 100644
26 index 000000000000..5c4cc27982ef
27 --- /dev/null
28 +++ b/dev-python/tempora/tempora-5.0.0.ebuild
29 @@ -0,0 +1,35 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +PYTHON_COMPAT=( pypy3 python3_{8..10} )
36 +inherit distutils-r1
37 +
38 +MY_PN="${PN/-/.}"
39 +DESCRIPTION="Objects and routines pertaining to date and time"
40 +HOMEPAGE="https://github.com/jaraco/tempora"
41 +SRC_URI="mirror://pypi/${PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
42 +S="${WORKDIR}/${MY_PN}-${PV}"
43 +
44 +LICENSE="MIT"
45 +SLOT="0"
46 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86 ~x64-macos"
47 +
48 +RDEPEND="
49 + >=dev-python/jaraco-functools-1.20[${PYTHON_USEDEP}]
50 + dev-python/pytz[${PYTHON_USEDEP}]
51 +"
52 +BDEPEND="
53 + dev-python/setuptools_scm[${PYTHON_USEDEP}]
54 + dev-python/toml[${PYTHON_USEDEP}]
55 + test? (
56 + dev-python/freezegun[${PYTHON_USEDEP}]
57 + dev-python/pytest-freezegun[${PYTHON_USEDEP}]
58 + )
59 +"
60 +
61 +distutils_enable_tests pytest
62 +distutils_enable_sphinx docs \
63 + ">=dev-python/jaraco-packaging-3.2" \
64 + ">=dev-python/rst-linker-1.9"