Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-portage/flaggie/
Date: Wed, 18 May 2022 07:36:19
Message-Id: 1652859366.ae33dc79c65a258c742abdb76b6e04a113c0175d.mgorny@gentoo
1 commit: ae33dc79c65a258c742abdb76b6e04a113c0175d
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed May 18 07:05:43 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed May 18 07:36:06 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae33dc79
7
8 app-portage/flaggie: Remove the live ebuild
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 app-portage/flaggie/flaggie-9999.ebuild | 38 ---------------------------------
13 1 file changed, 38 deletions(-)
14
15 diff --git a/app-portage/flaggie/flaggie-9999.ebuild b/app-portage/flaggie/flaggie-9999.ebuild
16 deleted file mode 100644
17 index 054c1c210325..000000000000
18 --- a/app-portage/flaggie/flaggie-9999.ebuild
19 +++ /dev/null
20 @@ -1,38 +0,0 @@
21 -# Copyright 1999-2021 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=7
25 -
26 -DISTUTILS_USE_SETUPTOOLS=no
27 -PYTHON_COMPAT=( python3_{7..9} )
28 -
29 -EGIT_REPO_URI="https://github.com/mgorny/flaggie.git"
30 -inherit bash-completion-r1 distutils-r1 git-r3
31 -
32 -DESCRIPTION="A smart CLI mangler for package.* files"
33 -HOMEPAGE="https://github.com/mgorny/flaggie/"
34 -SRC_URI=""
35 -
36 -LICENSE="BSD"
37 -SLOT="0"
38 -KEYWORDS=""
39 -IUSE=""
40 -
41 -RDEPEND="sys-apps/portage[${PYTHON_USEDEP}]"
42 -
43 -python_install_all() {
44 - newbashcomp contrib/bash-completion/${PN}.bash-completion ${PN}
45 - distutils-r1_python_install_all
46 -}
47 -
48 -pkg_postinst() {
49 - ewarn "Please note that flaggie creates backups of your package.* files"
50 - ewarn "before performing each change through appending a single '~'."
51 - ewarn "If you'd like to keep your own backup of them, please use another"
52 - ewarn "naming scheme (or even better some VCS)."
53 - if ! has_version app-shells/gentoo-bashcomp; then
54 - elog
55 - elog "If you want to use bash-completion, you need to install:"
56 - elog " app-shells/gentoo-bashcomp"
57 - fi
58 -}