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 74565138359 for ; Sun, 2 Aug 2020 19:05:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 13C27E0990; Sun, 2 Aug 2020 19:05:36 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E0E68E0990 for ; Sun, 2 Aug 2020 19:05:35 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0C80934EFDC for ; Sun, 2 Aug 2020 19:05:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8548030D for ; Sun, 2 Aug 2020 19:05:31 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1596394741.4e4ffe217db49d10e5548718fdf324d0cf1070c5.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/subliminal/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-video/subliminal/subliminal-2.1.0-r1.ebuild media-video/subliminal/subliminal-9999.ebuild X-VCS-Directories: media-video/subliminal/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 4e4ffe217db49d10e5548718fdf324d0cf1070c5 X-VCS-Branch: master Date: Sun, 2 Aug 2020 19:05:31 +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: 70939277-696d-499f-b4fc-b464b4b609a2 X-Archives-Hash: 83307d9a98803e06d85f5b4261119fd4 commit: 4e4ffe217db49d10e5548718fdf324d0cf1070c5 Author: Sam James gentoo org> AuthorDate: Sun Aug 2 18:59:01 2020 +0000 Commit: Sam James gentoo org> CommitDate: Sun Aug 2 18:59:01 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e4ffe21 media-video/subliminal: add Python 3.8, 3.9 A revbump is required because of new versions being added of the dependencies to support 3.8+. Closes: https://bugs.gentoo.org/718410 Package-Manager: Portage-3.0.1, Repoman-2.3.23 Signed-off-by: Sam James gentoo.org> ...inal-9999.ebuild => subliminal-2.1.0-r1.ebuild} | 23 ++++++++++------------ media-video/subliminal/subliminal-9999.ebuild | 20 ++++++++----------- 2 files changed, 18 insertions(+), 25 deletions(-) diff --git a/media-video/subliminal/subliminal-9999.ebuild b/media-video/subliminal/subliminal-2.1.0-r1.ebuild similarity index 95% copy from media-video/subliminal/subliminal-9999.ebuild copy to media-video/subliminal/subliminal-2.1.0-r1.ebuild index 54ade49d622..4bba8befdc1 100644 --- a/media-video/subliminal/subliminal-9999.ebuild +++ b/media-video/subliminal/subliminal-2.1.0-r1.ebuild @@ -3,14 +3,12 @@ EAPI=7 -PYTHON_COMPAT=( python3_{6,7} ) +PYTHON_COMPAT=( python3_{7,8,9} ) PYTHON_REQ_USE='xml(+)' DISTUTILS_USE_SETUPTOOLS=rdepend inherit distutils-r1 -SRC_URI="" - if [[ ${PV} == 9999 ]] ; then inherit git-r3 EGIT_REPO_URI="https://github.com/Diaoul/${PN}.git" @@ -25,9 +23,15 @@ SRC_URI+=" test? ( mirror://sourceforge/matroska/test_files/matroska_test_w1_1.z LICENSE="MIT" SLOT="0" -IUSE="test" -RESTRICT="!test? ( test )" +KEYWORDS="~amd64 ~x86" +BDEPEND=" + test? ( + app-arch/unzip + dev-python/sympy[${PYTHON_USEDEP}] + >=dev-python/vcrpy-1.6.1[${PYTHON_USEDEP}] + ) +" RDEPEND=" >=dev-python/appdirs-1.3[${PYTHON_USEDEP}] >=dev-python/babelfish-0.5.2[${PYTHON_USEDEP}] @@ -45,16 +49,9 @@ RDEPEND=" >=dev-python/six-1.9.0[${PYTHON_USEDEP}] >=dev-python/stevedore-1.0.0[${PYTHON_USEDEP}] " -BDEPEND=" - test? ( - app-arch/unzip - dev-python/sympy[${PYTHON_USEDEP}] - >=dev-python/vcrpy-1.6.1[${PYTHON_USEDEP}] - ) -" PATCHES=( - "${FILESDIR}/${PN}-2.1.0-fix-pytest-warning.patch" + "${FILESDIR}/${P}-fix-pytest-warning.patch" ) distutils_enable_tests pytest diff --git a/media-video/subliminal/subliminal-9999.ebuild b/media-video/subliminal/subliminal-9999.ebuild index 54ade49d622..5baa2d5e19f 100644 --- a/media-video/subliminal/subliminal-9999.ebuild +++ b/media-video/subliminal/subliminal-9999.ebuild @@ -3,14 +3,12 @@ EAPI=7 -PYTHON_COMPAT=( python3_{6,7} ) +PYTHON_COMPAT=( python3_{7,8,9} ) PYTHON_REQ_USE='xml(+)' DISTUTILS_USE_SETUPTOOLS=rdepend inherit distutils-r1 -SRC_URI="" - if [[ ${PV} == 9999 ]] ; then inherit git-r3 EGIT_REPO_URI="https://github.com/Diaoul/${PN}.git" @@ -25,9 +23,14 @@ SRC_URI+=" test? ( mirror://sourceforge/matroska/test_files/matroska_test_w1_1.z LICENSE="MIT" SLOT="0" -IUSE="test" -RESTRICT="!test? ( test )" +BDEPEND=" + test? ( + app-arch/unzip + dev-python/sympy[${PYTHON_USEDEP}] + >=dev-python/vcrpy-1.6.1[${PYTHON_USEDEP}] + ) +" RDEPEND=" >=dev-python/appdirs-1.3[${PYTHON_USEDEP}] >=dev-python/babelfish-0.5.2[${PYTHON_USEDEP}] @@ -45,13 +48,6 @@ RDEPEND=" >=dev-python/six-1.9.0[${PYTHON_USEDEP}] >=dev-python/stevedore-1.0.0[${PYTHON_USEDEP}] " -BDEPEND=" - test? ( - app-arch/unzip - dev-python/sympy[${PYTHON_USEDEP}] - >=dev-python/vcrpy-1.6.1[${PYTHON_USEDEP}] - ) -" PATCHES=( "${FILESDIR}/${PN}-2.1.0-fix-pytest-warning.patch"