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 969B0139337 for ; Sat, 31 Jul 2021 00:18:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8C0FAE089A; Sat, 31 Jul 2021 00:18:38 +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 304F0E08C8 for ; Sat, 31 Jul 2021 00:18:38 +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 B9094343942 for ; Sat, 31 Jul 2021 00:18:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CDA0D7BD for ; Sat, 31 Jul 2021 00:18:34 +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: <1627690582.c93604372487864d93da1ecff1b51ed4852a7825.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-client/pybugz/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-client/pybugz/pybugz-0.13-r1.ebuild www-client/pybugz/pybugz-0.13.ebuild www-client/pybugz/pybugz-9999.ebuild X-VCS-Directories: www-client/pybugz/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: c93604372487864d93da1ecff1b51ed4852a7825 X-VCS-Branch: master Date: Sat, 31 Jul 2021 00:18:34 +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: f34b32a5-115c-4f3f-8167-2e6d2f20e519 X-Archives-Hash: 3e5a502be83c5d767606a78d2939c858 commit: c93604372487864d93da1ecff1b51ed4852a7825 Author: Sam James gentoo org> AuthorDate: Sun Jul 25 03:04:06 2021 +0000 Commit: Sam James gentoo org> CommitDate: Sat Jul 31 00:16:22 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9360437 www-client/pybugz: [QA] unconditionally install completion files QA policy [0] says that we don't conditionalise installation of small files. It's a wasteful rebuild and inconsistent across packages for when users desire completions to be available. [0] https://projects.gentoo.org/qa/policy-guide/installed-files.html#pg0301 Signed-off-by: Sam James gentoo.org> .../pybugz/{pybugz-0.13.ebuild => pybugz-0.13-r1.ebuild} | 11 +++++------ www-client/pybugz/pybugz-9999.ebuild | 11 +++++------ 2 files changed, 10 insertions(+), 12 deletions(-) diff --git a/www-client/pybugz/pybugz-0.13.ebuild b/www-client/pybugz/pybugz-0.13-r1.ebuild similarity index 83% rename from www-client/pybugz/pybugz-0.13.ebuild rename to www-client/pybugz/pybugz-0.13-r1.ebuild index 263a9fda68c..bdd2da64a75 100644 --- a/www-client/pybugz/pybugz-0.13.ebuild +++ b/www-client/pybugz/pybugz-0.13-r1.ebuild @@ -2,7 +2,8 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=7 -PYTHON_COMPAT=( python3_{7..9} ) + +PYTHON_COMPAT=( python3_{8..9} ) PYTHON_REQ_USE="readline(+)" if [ "${PV}" = "9999" ]; then @@ -17,9 +18,9 @@ inherit bash-completion-r1 distutils-r1 DESCRIPTION="Command line interface to (Gentoo) Bugzilla" HOMEPAGE="https://github.com/williamh/pybugz" + LICENSE="GPL-2" SLOT="0" -IUSE="zsh-completion" DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" @@ -28,8 +29,6 @@ python_install_all() { distutils-r1_python_install_all newbashcomp contrib/bash-completion bugz - if use zsh-completion ; then - insinto /usr/share/zsh/site-functions - newins contrib/zsh-completion _pybugz - fi + insinto /usr/share/zsh/site-functions + newins contrib/zsh-completion _pybugz } diff --git a/www-client/pybugz/pybugz-9999.ebuild b/www-client/pybugz/pybugz-9999.ebuild index 96ffebb7859..f95c65ea1b0 100644 --- a/www-client/pybugz/pybugz-9999.ebuild +++ b/www-client/pybugz/pybugz-9999.ebuild @@ -2,7 +2,8 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=7 -PYTHON_COMPAT=( python3_{7..9} ) + +PYTHON_COMPAT=( python3_{8..9} ) PYTHON_REQ_USE="readline(+)" if [ "${PV}" = "9999" ]; then @@ -17,9 +18,9 @@ inherit bash-completion-r1 distutils-r1 DESCRIPTION="Command line interface to (Gentoo) Bugzilla" HOMEPAGE="https://github.com/williamh/pybugz" + LICENSE="GPL-2" SLOT="0" -IUSE="zsh-completion" DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" @@ -28,8 +29,6 @@ python_install_all() { distutils-r1_python_install_all newbashcomp contrib/bash-completion bugz - if use zsh-completion ; then - insinto /usr/share/zsh/site-functions - newins contrib/zsh-completion _pybugz - fi + insinto /usr/share/zsh/site-functions + newins contrib/zsh-completion _pybugz }