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 B1902158090 for ; Wed, 18 May 2022 07:36:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8F455E0898; Wed, 18 May 2022 07:36:17 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 730F8E0898 for ; Wed, 18 May 2022 07:36:17 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 2894E3415A1 for ; Wed, 18 May 2022 07:36:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 82ED7477 for ; Wed, 18 May 2022 07:36:14 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1652859366.ae33dc79c65a258c742abdb76b6e04a113c0175d.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-portage/flaggie/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-portage/flaggie/flaggie-9999.ebuild X-VCS-Directories: app-portage/flaggie/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: ae33dc79c65a258c742abdb76b6e04a113c0175d X-VCS-Branch: master Date: Wed, 18 May 2022 07:36:14 +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: 118698cf-961f-425a-bc40-125dce8b0752 X-Archives-Hash: 40f0870b0384566051da9bbd6de7229e commit: ae33dc79c65a258c742abdb76b6e04a113c0175d Author: Michał Górny gentoo org> AuthorDate: Wed May 18 07:05:43 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed May 18 07:36:06 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae33dc79 app-portage/flaggie: Remove the live ebuild Signed-off-by: Michał Górny gentoo.org> app-portage/flaggie/flaggie-9999.ebuild | 38 --------------------------------- 1 file changed, 38 deletions(-) diff --git a/app-portage/flaggie/flaggie-9999.ebuild b/app-portage/flaggie/flaggie-9999.ebuild deleted file mode 100644 index 054c1c210325..000000000000 --- a/app-portage/flaggie/flaggie-9999.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DISTUTILS_USE_SETUPTOOLS=no -PYTHON_COMPAT=( python3_{7..9} ) - -EGIT_REPO_URI="https://github.com/mgorny/flaggie.git" -inherit bash-completion-r1 distutils-r1 git-r3 - -DESCRIPTION="A smart CLI mangler for package.* files" -HOMEPAGE="https://github.com/mgorny/flaggie/" -SRC_URI="" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="" -IUSE="" - -RDEPEND="sys-apps/portage[${PYTHON_USEDEP}]" - -python_install_all() { - newbashcomp contrib/bash-completion/${PN}.bash-completion ${PN} - distutils-r1_python_install_all -} - -pkg_postinst() { - ewarn "Please note that flaggie creates backups of your package.* files" - ewarn "before performing each change through appending a single '~'." - ewarn "If you'd like to keep your own backup of them, please use another" - ewarn "naming scheme (or even better some VCS)." - if ! has_version app-shells/gentoo-bashcomp; then - elog - elog "If you want to use bash-completion, you need to install:" - elog " app-shells/gentoo-bashcomp" - fi -}