Gentoo Archives: gentoo-commits

From: Nicola Smaniotto <smaniotto.nicola@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-python/srt/
Date: Mon, 24 Jan 2022 16:03:19
Message-Id: 1643040194.7fcdf48dfcf3fad7aac58b4ed19a46b4ce82f099.smaniotto.nicola@gentoo
1 commit: 7fcdf48dfcf3fad7aac58b4ed19a46b4ce82f099
2 Author: Nicola Smaniotto <smaniotto.nicola <AT> gmail <DOT> com>
3 AuthorDate: Mon Jan 24 16:02:52 2022 +0000
4 Commit: Nicola Smaniotto <smaniotto.nicola <AT> gmail <DOT> com>
5 CommitDate: Mon Jan 24 16:03:14 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=7fcdf48d
7
8 dev-python/srt: bump to 3.5.1
9
10 Package-Manager: Portage-3.0.28, Repoman-3.0.3
11 Signed-off-by: Nicola Smaniotto <smaniotto.nicola <AT> gmail.com>
12
13 dev-python/srt/Manifest | 1 +
14 dev-python/srt/srt-3.5.1.ebuild | 38 ++++++++++++++++++++++++++++++++++++++
15 2 files changed, 39 insertions(+)
16
17 diff --git a/dev-python/srt/Manifest b/dev-python/srt/Manifest
18 index 96f53df9c..d3539e688 100644
19 --- a/dev-python/srt/Manifest
20 +++ b/dev-python/srt/Manifest
21 @@ -1,2 +1,3 @@
22 DIST srt-3.4.1.tar.gz 23723 BLAKE2B 33445cb969db64e89978c06fcb0b8145047a1f40082500f507b8c70d42489dc083f7b2972868bf08a9f5fcb1b9a279df279f034455d0b326f3c03da086bd59c5 SHA512 bb214935203b4d3a8bc1dc7968ed318ed55709b880046dd070c3547e5c5e7df6d12f445e3be83a2e938096655008705a76461c404494a1c8eccee36f2ff465cd
23 DIST srt-3.5.0.tar.gz 24678 BLAKE2B c50704f7811e271116ab6531f4f63eb579b2e34c48e9ab81179d41d08ef803266f3ce7fb0332a9158591326f8a428dda80e3e641db3b4b73cec690cb93af404f SHA512 f5dac7995ce0eddb4da56084b1125200c861a0b21d5b4c8a75c4179a0ce840143abb75f306855ed68170d8c4ab913792c577e21e258ba18bac366c630803a7a5
24 +DIST srt-3.5.1.tar.gz 24003 BLAKE2B 0ba77727043090310d2db69d9569bde53fcd69a55715e9721a83ee148d382459b1d68b369eee52fc7f99ba5e8aca017128a2d999e44b5ae77dda027a23ecc8bc SHA512 0523b5b31d78db195911ea632adbd25e76d1270510cf9c7432a44bd96e44d4928196c7e4f2eed05bbd73c1d96dcbe99ecea2bd755d697ff659924773c3e6a05e
25
26 diff --git a/dev-python/srt/srt-3.5.1.ebuild b/dev-python/srt/srt-3.5.1.ebuild
27 new file mode 100644
28 index 000000000..e484b2fa6
29 --- /dev/null
30 +++ b/dev-python/srt/srt-3.5.1.ebuild
31 @@ -0,0 +1,38 @@
32 +# Copyright 2022 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=8
36 +
37 +PYTHON_COMPAT=( python3_{8..10} )
38 +
39 +inherit distutils-r1
40 +
41 +DESCRIPTION="A tiny library for parsing, modifying, and composing SRT files"
42 +HOMEPAGE="https://github.com/cdown/srt"
43 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
44 +
45 +LICENSE="MIT"
46 +SLOT="0"
47 +KEYWORDS="~amd64"
48 +
49 +distutils_enable_tests pytest
50 +
51 +DEPEND="
52 + test? (
53 + dev-python/hypothesis[${PYTHON_USEDEP}]
54 + )
55 +"
56 +
57 +src_prepare() {
58 + default
59 +
60 + mv "${S}"/srt_tools/srt "${S}"/srt_tools/srt-cdown || die "Cannot rename the file"
61 + sed -e 's|"srt_tools/srt"|"srt_tools/srt-cdown"|' \
62 + -i "${S}"/setup.py || die "Cannot update setup.py"
63 +
64 +}
65 +
66 +pkg_postinst() {
67 + ewarn "To avoid conflict with dev-python/pysrt::gentoo the binary has been"
68 + ewarn "renamed /usr/bin/srt-cdown. The python module is still called srt."
69 +}