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 2D60C1580B9 for ; Sun, 22 Aug 2021 15:15:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 81FB0E0857; Sun, 22 Aug 2021 15:15:56 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 65904E0857 for ; Sun, 22 Aug 2021 15:15:56 +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 017B4340928 for ; Sun, 22 Aug 2021 15:15:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7AE3B7F3 for ; Sun, 22 Aug 2021 15:15:53 +0000 (UTC) From: "Louis Sautier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Louis Sautier" Message-ID: <1629645341.9a706014773eda5057cc0d219385af702a03773c.sbraz@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pycups/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pycups/pycups-2.0.1.ebuild X-VCS-Directories: dev-python/pycups/ X-VCS-Committer: sbraz X-VCS-Committer-Name: Louis Sautier X-VCS-Revision: 9a706014773eda5057cc0d219385af702a03773c X-VCS-Branch: master Date: Sun, 22 Aug 2021 15:15:53 +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: 87db3240-cb7e-4f18-a301-ed044a8e2df5 X-Archives-Hash: 42b1e9dd26f6ef8e62e0555b458ebb00 commit: 9a706014773eda5057cc0d219385af702a03773c Author: Louis Sautier gentoo org> AuthorDate: Sun Aug 22 15:14:54 2021 +0000 Commit: Louis Sautier gentoo org> CommitDate: Sun Aug 22 15:15:41 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a706014 dev-python/pycups: tidy up ebuild Signed-off-by: Louis Sautier gentoo.org> dev-python/pycups/pycups-2.0.1.ebuild | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/dev-python/pycups/pycups-2.0.1.ebuild b/dev-python/pycups/pycups-2.0.1.ebuild index b14f8c18b45..46c50c1509f 100644 --- a/dev-python/pycups/pycups-2.0.1.ebuild +++ b/dev-python/pycups/pycups-2.0.1.ebuild @@ -13,13 +13,18 @@ HOMEPAGE="https://github.com/OpenPrinting/pycups" SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="GPL-2" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" IUSE="examples" RDEPEND="net-print/cups" DEPEND="${RDEPEND}" +PATCHES=( + # https://github.com/OpenPrinting/pycups/commit/8cbf6d40a0132764ad51e7416aa7034966875091 + "${FILESDIR}/${P}-py3.10.patch" +) + python_install_all() { if use examples; then dodoc -r examples @@ -27,8 +32,3 @@ python_install_all() { fi distutils-r1_python_install_all } - -PATCHES=( - # https://github.com/OpenPrinting/pycups/commit/8cbf6d40a0132764ad51e7416aa7034966875091 - "${FILESDIR}/${P}-py3.10.patch" -)