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 63B5C13933E for ; Tue, 6 Jul 2021 09:20:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5E228E0C07; Tue, 6 Jul 2021 09:20:09 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 47800E0C07 for ; Tue, 6 Jul 2021 09:20:09 +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 8D574342A6D for ; Tue, 6 Jul 2021 09:20:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 008957C7 for ; Tue, 6 Jul 2021 09:20:06 +0000 (UTC) From: "Ionen Wolkens" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ionen Wolkens" Message-ID: <1625563129.e0ecef1033d8515af06250124672f586efce40ac.ionen@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/gallery-dl/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/gallery-dl/gallery-dl-9999.ebuild X-VCS-Directories: net-misc/gallery-dl/ X-VCS-Committer: ionen X-VCS-Committer-Name: Ionen Wolkens X-VCS-Revision: e0ecef1033d8515af06250124672f586efce40ac X-VCS-Branch: master Date: Tue, 6 Jul 2021 09:20: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: 8ef07391-9a4c-4f54-9ab1-d5ef70090a0a X-Archives-Hash: 5d47d1c1b19290797fd2b4d19bc0526f commit: e0ecef1033d8515af06250124672f586efce40ac Author: Maciej Barć riseup net> AuthorDate: Tue Jul 6 09:05:39 2021 +0000 Commit: Ionen Wolkens gentoo org> CommitDate: Tue Jul 6 09:18:49 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0ecef10 net-misc/gallery-dl: sync live Package-Manager: Portage-3.0.20, Repoman-3.0.2 Signed-off-by: Maciej Barć riseup.net> Closes: https://github.com/gentoo/gentoo/pull/21111 Signed-off-by: Ionen Wolkens gentoo.org> net-misc/gallery-dl/gallery-dl-9999.ebuild | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/net-misc/gallery-dl/gallery-dl-9999.ebuild b/net-misc/gallery-dl/gallery-dl-9999.ebuild index c0680f91535..fec914ad2ce 100644 --- a/net-misc/gallery-dl/gallery-dl-9999.ebuild +++ b/net-misc/gallery-dl/gallery-dl-9999.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=(python3_{7..9}) +PYTHON_COMPAT=(python3_{8,9}) PYTHON_REQ_USE="sqlite,ssl,xml" DISTUTILS_USE_SETUPTOOLS=rdepend @@ -12,7 +12,7 @@ inherit distutils-r1 optfeature DESCRIPTION="Download image galleries and collections from several image hosting sites" HOMEPAGE="https://github.com/mikf/gallery-dl" -if [[ ${PV} == *9999 ]]; then +if [[ ${PV} == 9999 ]]; then inherit git-r3 EGIT_REPO_URI="https://github.com/mikf/${PN}.git" else @@ -20,19 +20,18 @@ else KEYWORDS="~amd64" fi -# tests require network access -RESTRICT="test" LICENSE="GPL-2" SLOT="0" +# tests require network access +RESTRICT="test" RDEPEND=">=dev-python/requests-2.11.0[${PYTHON_USEDEP}]" distutils_enable_tests setup.py src_compile() { - emake data/completion/gallery-dl - emake data/completion/_gallery-dl - emake man + emake data/completion/{,_}gallery-dl man + distutils-r1_src_compile }