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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id AB4AB15808B for ; Wed, 16 Mar 2022 15:15:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 98FB5E0898; Wed, 16 Mar 2022 15:15:12 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 75B92E0898 for ; Wed, 16 Mar 2022 15:15:12 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 440B43435C8 for ; Wed, 16 Mar 2022 15:15:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9B55DAF for ; Wed, 16 Mar 2022 15:15:06 +0000 (UTC) From: "Maciej Barć" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Maciej Barć" Message-ID: <1647443697.bdcd8b9b3b92d100f27da8433aec0b09bfbc4e5a.xgqt@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/system-config-printer/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-admin/system-config-printer/system-config-printer-1.5.16-r1.ebuild app-admin/system-config-printer/system-config-printer-1.5.16.ebuild X-VCS-Directories: app-admin/system-config-printer/ X-VCS-Committer: xgqt X-VCS-Committer-Name: Maciej Barć X-VCS-Revision: bdcd8b9b3b92d100f27da8433aec0b09bfbc4e5a X-VCS-Branch: master Date: Wed, 16 Mar 2022 15:15: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: f989541d-f585-442b-9848-b16eca97401a X-Archives-Hash: 8d089eba4896dd6f8175f23859328da9 commit: bdcd8b9b3b92d100f27da8433aec0b09bfbc4e5a Author: Maciej Barć gentoo org> AuthorDate: Wed Mar 16 15:14:38 2022 +0000 Commit: Maciej Barć gentoo org> CommitDate: Wed Mar 16 15:14:57 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bdcd8b9b app-admin/system-config-printer: install cupshelpers module Closes: https://bugs.gentoo.org/833199 Signed-off-by: Maciej Barć gentoo.org> ...inter-1.5.16.ebuild => system-config-printer-1.5.16-r1.ebuild} | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/app-admin/system-config-printer/system-config-printer-1.5.16.ebuild b/app-admin/system-config-printer/system-config-printer-1.5.16-r1.ebuild similarity index 95% rename from app-admin/system-config-printer/system-config-printer-1.5.16.ebuild rename to app-admin/system-config-printer/system-config-printer-1.5.16-r1.ebuild index b253a7a4f49b..c8b20534951d 100644 --- a/app-admin/system-config-printer/system-config-printer-1.5.16.ebuild +++ b/app-admin/system-config-printer/system-config-printer-1.5.16-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 PYTHON_COMPAT=( python3_{8..10} ) PYTHON_REQ_USE="xml" @@ -70,8 +70,14 @@ src_configure() { econf "${myeconfargs[@]}" } +src_compile() { + default + python_optimize cupshelpers +} + src_install() { default python_fix_shebang "${ED}" python_optimize + python_domodule cupshelpers }