summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2021-01-01 01:42:52 +0100
committerMichał Górny <mgorny@gentoo.org>2021-01-01 01:46:02 +0100
commitd837232141f5f6ac4348cca6a8e0d481849a7ca5 (patch)
tree386e6f9162c6a60b8a85d42e75d7bd75299da68e /app-misc/grc
parentapp-misc/anki: Remove old (py3.6) (diff)
downloadgentoo-d837232141f5f6ac4348cca6a8e0d481849a7ca5.tar.gz
gentoo-d837232141f5f6ac4348cca6a8e0d481849a7ca5.tar.bz2
gentoo-d837232141f5f6ac4348cca6a8e0d481849a7ca5.zip
app-misc/grc: Remove old (py3.6)
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'app-misc/grc')
-rw-r--r--app-misc/grc/Manifest1
-rw-r--r--app-misc/grc/grc-1.11-r1.ebuild61
2 files changed, 0 insertions, 62 deletions
diff --git a/app-misc/grc/Manifest b/app-misc/grc/Manifest
index 9dc3f54dfb2b..bb840e7488af 100644
--- a/app-misc/grc/Manifest
+++ b/app-misc/grc/Manifest
@@ -1,2 +1 @@
DIST grc-1.11.3.tar.gz 45205 BLAKE2B 852f58145fe11ceab3e6222b61c18cdb18a09f0666f28df4b8b8a8bc42a22dd01ae7e2bcf6232a6aa0d1f42ac233148f694a0eafbd995fbd5d147e06480f7abf SHA512 abc756a21e039c136bbf9be1ef7c1890aa2415ac21e87fb7377c90ced1def2dcaf9ce5cce22edeac68db20f6d6ccea31a2ec57044a37ba200ff79273bf11d8cf
-DIST grc-1.11.tar.gz 43224 BLAKE2B 40fe050f1198dadd039ad91fedf279ad5e913e803a669335ee21158f7f9702f3fd65ee5876595b9a4ce46da2f7f3c2cc589bf7ea3e10d84c37b5f20677ed626b SHA512 abaa18aeebf9858369b639975ae6c9a33f3111beb783b4e86463ace70de1d660efc6c17b05020862c3b2f467310f0974443f96d4f91cd322a90731c4be49206c
diff --git a/app-misc/grc/grc-1.11-r1.ebuild b/app-misc/grc/grc-1.11-r1.ebuild
deleted file mode 100644
index 230957f48d84..000000000000
--- a/app-misc/grc/grc-1.11-r1.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python3_6 )
-
-inherit eutils 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"
-IUSE=""
-
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-RDEPEND="${PYTHON_DEPS}"
-DEPEND="${RDEPEND}"
-
-src_prepare() {
- sed \
- -e 's:#! :#!:g' \
- -e 's:3$::g' \
- -i grc grcat || die
- default
-}
-
-src_install() {
- python_foreach_impl python_doscript grc grcat
-
- insinto /usr/share/grc
- doins \
- contrib/mrsmith/conf.* \
- colourfiles/conf.* \
- grc.bashrc \
- grc.fish \
- grc.zsh
-
- insinto /etc
- doins grc.conf
-
- dodoc README.markdown INSTALL TODO debian/changelog CREDITS Regexp.txt
- 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.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
-}