From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9762F158012 for ; Fri, 24 Sep 2021 11:58:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 47CFFE092E; Fri, 24 Sep 2021 11:58:09 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D6B92E092E for ; Fri, 24 Sep 2021 11:58:08 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B0B1134100B for ; Fri, 24 Sep 2021 11:58:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 13FBFE5 for ; Fri, 24 Sep 2021 11:58:06 +0000 (UTC) From: "Nicola Smaniotto" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Nicola Smaniotto" Message-ID: <1632484684.dfd6428e99c7828fc05827469cc01f578817a975.smaniotto.nicola@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-python/srt/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-python/srt/Manifest dev-python/srt/srt-3.5.0.ebuild X-VCS-Directories: dev-python/srt/ X-VCS-Committer: smaniotto.nicola X-VCS-Committer-Name: Nicola Smaniotto X-VCS-Revision: dfd6428e99c7828fc05827469cc01f578817a975 X-VCS-Branch: dev Date: Fri, 24 Sep 2021 11:58:06 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 465276ff-876a-46c6-9ec7-bb4b125b91a6 X-Archives-Hash: faf35855845adb7184fbe0dd930fefa2 commit: dfd6428e99c7828fc05827469cc01f578817a975 Author: Nicola Smaniotto gmail com> AuthorDate: Fri Sep 24 11:57:08 2021 +0000 Commit: Nicola Smaniotto gmail com> CommitDate: Fri Sep 24 11:58:04 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=dfd6428e dev-python/srt: bump to 3.5.0 Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Nicola Smaniotto gmail.com> dev-python/srt/Manifest | 1 + dev-python/srt/srt-3.5.0.ebuild | 38 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 39 insertions(+) diff --git a/dev-python/srt/Manifest b/dev-python/srt/Manifest index 57a8d4a7d..96f53df9c 100644 --- a/dev-python/srt/Manifest +++ b/dev-python/srt/Manifest @@ -1 +1,2 @@ DIST srt-3.4.1.tar.gz 23723 BLAKE2B 33445cb969db64e89978c06fcb0b8145047a1f40082500f507b8c70d42489dc083f7b2972868bf08a9f5fcb1b9a279df279f034455d0b326f3c03da086bd59c5 SHA512 bb214935203b4d3a8bc1dc7968ed318ed55709b880046dd070c3547e5c5e7df6d12f445e3be83a2e938096655008705a76461c404494a1c8eccee36f2ff465cd +DIST srt-3.5.0.tar.gz 24678 BLAKE2B c50704f7811e271116ab6531f4f63eb579b2e34c48e9ab81179d41d08ef803266f3ce7fb0332a9158591326f8a428dda80e3e641db3b4b73cec690cb93af404f SHA512 f5dac7995ce0eddb4da56084b1125200c861a0b21d5b4c8a75c4179a0ce840143abb75f306855ed68170d8c4ab913792c577e21e258ba18bac366c630803a7a5 diff --git a/dev-python/srt/srt-3.5.0.ebuild b/dev-python/srt/srt-3.5.0.ebuild new file mode 100644 index 000000000..b6159b07a --- /dev/null +++ b/dev-python/srt/srt-3.5.0.ebuild @@ -0,0 +1,38 @@ +# Copyright 2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..9} ) + +inherit distutils-r1 + +DESCRIPTION="A tiny library for parsing, modifying, and composing SRT files" +HOMEPAGE="https://github.com/cdown/srt" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="public-domain" +SLOT="0" +KEYWORDS="~amd64" + +distutils_enable_tests pytest + +DEPEND=" + test? ( + dev-python/hypothesis[${PYTHON_USEDEP}] + ) + " + +src_prepare() { + default + + mv "${S}"/srt_tools/srt "${S}"/srt_tools/srt-cdown || die "Cannot rename the file" + sed -e 's|"srt_tools/srt"|"srt_tools/srt-cdown"|' \ + -i "${S}"/setup.py || die "Cannot update setup.py" + +} + +pkg_postinst() { + ewarn "To avoid conflict with dev-python/pysrt::gentoo the binary has been" + ewarn "renamed /usr/bin/srt-cdown. The python module is still called srt." +}