summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2022-05-18 09:05:43 +0200
committerMichał Górny <mgorny@gentoo.org>2022-05-18 09:36:06 +0200
commitae33dc79c65a258c742abdb76b6e04a113c0175d (patch)
treeda366d701deaccc0aab20ac1e3990f6e1abb3de4 /app-portage/flaggie
parentapp-portage/diffmask: Enable py3.10 (diff)
downloadgentoo-ae33dc79c65a258c742abdb76b6e04a113c0175d.tar.gz
gentoo-ae33dc79c65a258c742abdb76b6e04a113c0175d.tar.bz2
gentoo-ae33dc79c65a258c742abdb76b6e04a113c0175d.zip
app-portage/flaggie: Remove the live ebuild
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'app-portage/flaggie')
-rw-r--r--app-portage/flaggie/flaggie-9999.ebuild38
1 files changed, 0 insertions, 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
-}