summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2022-08-10 16:18:30 +0200
committerMichał Górny <mgorny@gentoo.org>2022-08-10 16:18:30 +0200
commitd0d644ad31b621fc06ac08a2491e5f0c0690d6a6 (patch)
treec51f25d76a400bc4ebcb6981276b2a2f307badb8 /app-portage/flaggie
parentapp-portage/flaggie: Update URLs (diff)
downloadgentoo-d0d644ad31b621fc06ac08a2491e5f0c0690d6a6.tar.gz
gentoo-d0d644ad31b621fc06ac08a2491e5f0c0690d6a6.tar.bz2
gentoo-d0d644ad31b621fc06ac08a2491e5f0c0690d6a6.zip
app-portage/flaggie: Remove old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'app-portage/flaggie')
-rw-r--r--app-portage/flaggie/flaggie-0.2.1-r1.ebuild37
1 files changed, 0 insertions, 37 deletions
diff --git a/app-portage/flaggie/flaggie-0.2.1-r1.ebuild b/app-portage/flaggie/flaggie-0.2.1-r1.ebuild
deleted file mode 100644
index 745c3dbf05bf..000000000000
--- a/app-portage/flaggie/flaggie-0.2.1-r1.ebuild
+++ /dev/null
@@ -1,37 +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} )
-
-inherit bash-completion-r1 distutils-r1
-
-DESCRIPTION="A smart CLI mangler for package.* files"
-HOMEPAGE="https://github.com/projg2/flaggie/"
-SRC_URI="https://github.com/projg2/flaggie/releases/download/${P}/${P}.tar.bz2"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 arm arm64 ~hppa ~mips ~ppc64 ~riscv x86 ~amd64-linux ~x86-linux"
-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
-}