summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2023-04-02 17:50:23 +0100
committerSam James <sam@gentoo.org>2023-04-02 18:33:13 +0100
commit963ffe380b07d3c2051910148751e405dde4ed28 (patch)
treefab4156f33647032faf64b9ea03f00854b580dc5 /app-misc/grc
parentapp-text/xapers: enable py3.11 (diff)
downloadgentoo-963ffe380b07d3c2051910148751e405dde4ed28.tar.gz
gentoo-963ffe380b07d3c2051910148751e405dde4ed28.tar.bz2
gentoo-963ffe380b07d3c2051910148751e405dde4ed28.zip
app-misc/grc: drop 1.12
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'app-misc/grc')
-rw-r--r--app-misc/grc/Manifest1
-rw-r--r--app-misc/grc/grc-1.12.ebuild61
2 files changed, 0 insertions, 62 deletions
diff --git a/app-misc/grc/Manifest b/app-misc/grc/Manifest
index def22e6ac65e..2aa518cd83cb 100644
--- a/app-misc/grc/Manifest
+++ b/app-misc/grc/Manifest
@@ -1,2 +1 @@
-DIST grc-1.12.tar.gz 48744 BLAKE2B dd7ab01739dfe637c4bf8b1d877e606869f9d11fed33112b499f72714ebb383e7dcbf80f160ac87d07bdc079ff7d589b9ad10b2f005c801fd13bb305466f1f8c SHA512 37ada5c7293bd0240c18b60cd7c60990e26e91b93fe9fb3ba1198c9d665647570191e985ab29de2b6554166ef703d81f449b486e83178b35df302836b5abb8c7
DIST grc-1.13.tar.gz 49224 BLAKE2B d2c32d42ad1bd20c7d2b2aa68da114410e625463d30f0b93644cec4ddc69241d7f3c7a5f7edaed9fe42a1d21e8a0e5668403491d09679995558c94649b9d6fa8 SHA512 d8a7e78f84f5cb925a0205a81a9564ffe3d688eaa1f90d335a6f40e17757866374b6927f223e888a358586830b3feb4779f60faa01097b0c9703793ceea3de43
diff --git a/app-misc/grc/grc-1.12.ebuild b/app-misc/grc/grc-1.12.ebuild
deleted file mode 100644
index 0b344cf94d1b..000000000000
--- a/app-misc/grc/grc-1.12.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{9..10} )
-inherit python-r1
-
-DESCRIPTION="Generic Colouriser beautifies your logfiles or output of commands"
-HOMEPAGE="http://kassiopeia.juls.savba.sk/~garabik/software/grc.html"
-SRC_URI="https://github.com/garabik/grc/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-RDEPEND="${PYTHON_DEPS}"
-DEPEND="${RDEPEND}"
-
-DOCS=( README.markdown INSTALL TODO debian/changelog CREDITS Regexp.txt )
-
-src_prepare() {
- sed \
- -e 's:#! :#!:g' \
- -e 's:3$::g' \
- -i grc grcat || die
- default
-}
-
-src_install() {
- python_foreach_impl python_doscript grc grcat
-
- einstalldocs
-
- insinto /usr/share/grc
- doins \
- contrib/mrsmith/conf.* \
- colourfiles/conf.* \
- grc.sh \
- grc.fish \
- grc.zsh
-
- insinto /etc
- doins grc.conf
- doman *.1
-}
-
-pkg_postinst() {
- elog
- elog "Shell specific configurations can be found in ${ROOT}/usr/share/grc"
- elog "Be sure to symlink one to use grc globally:"
- elog
- elog " ln -s ${ROOT}/usr/share/grc/grc.SHELL ${ROOT}/etc/profile.d/grc.sh"
- elog
- elog "Replace 'SHELL' in the above command with one of: bashrc, fish, zsh."
- elog "Afterwards, use '. ${ROOT}/etc/profile' to activate grc in existing"
- elog "shell sessions."
- elog
-}