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-misc/grc/
Date: Fri, 01 Jan 2021 00:47:08
Message-Id: 1609461962.d837232141f5f6ac4348cca6a8e0d481849a7ca5.mgorny@gentoo
1 commit: d837232141f5f6ac4348cca6a8e0d481849a7ca5
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jan 1 00:42:52 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 1 00:46:02 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8372321
7
8 app-misc/grc: Remove old (py3.6)
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 app-misc/grc/Manifest | 1 -
13 app-misc/grc/grc-1.11-r1.ebuild | 61 -----------------------------------------
14 2 files changed, 62 deletions(-)
15
16 diff --git a/app-misc/grc/Manifest b/app-misc/grc/Manifest
17 index 9dc3f54dfb2..bb840e7488a 100644
18 --- a/app-misc/grc/Manifest
19 +++ b/app-misc/grc/Manifest
20 @@ -1,2 +1 @@
21 DIST grc-1.11.3.tar.gz 45205 BLAKE2B 852f58145fe11ceab3e6222b61c18cdb18a09f0666f28df4b8b8a8bc42a22dd01ae7e2bcf6232a6aa0d1f42ac233148f694a0eafbd995fbd5d147e06480f7abf SHA512 abc756a21e039c136bbf9be1ef7c1890aa2415ac21e87fb7377c90ced1def2dcaf9ce5cce22edeac68db20f6d6ccea31a2ec57044a37ba200ff79273bf11d8cf
22 -DIST grc-1.11.tar.gz 43224 BLAKE2B 40fe050f1198dadd039ad91fedf279ad5e913e803a669335ee21158f7f9702f3fd65ee5876595b9a4ce46da2f7f3c2cc589bf7ea3e10d84c37b5f20677ed626b SHA512 abaa18aeebf9858369b639975ae6c9a33f3111beb783b4e86463ace70de1d660efc6c17b05020862c3b2f467310f0974443f96d4f91cd322a90731c4be49206c
23
24 diff --git a/app-misc/grc/grc-1.11-r1.ebuild b/app-misc/grc/grc-1.11-r1.ebuild
25 deleted file mode 100644
26 index 230957f48d8..00000000000
27 --- a/app-misc/grc/grc-1.11-r1.ebuild
28 +++ /dev/null
29 @@ -1,61 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -
35 -PYTHON_COMPAT=( python3_6 )
36 -
37 -inherit eutils python-r1
38 -
39 -DESCRIPTION="Generic Colouriser beautifies your logfiles or output of commands"
40 -HOMEPAGE="http://kassiopeia.juls.savba.sk/~garabik/software/grc.html"
41 -SRC_URI="https://github.com/garabik/grc/archive/v${PV}.tar.gz -> ${P}.tar.gz"
42 -
43 -LICENSE="GPL-2"
44 -SLOT="0"
45 -KEYWORDS="~amd64 ~ppc ~x86"
46 -IUSE=""
47 -
48 -REQUIRED_USE="${PYTHON_REQUIRED_USE}"
49 -
50 -RDEPEND="${PYTHON_DEPS}"
51 -DEPEND="${RDEPEND}"
52 -
53 -src_prepare() {
54 - sed \
55 - -e 's:#! :#!:g' \
56 - -e 's:3$::g' \
57 - -i grc grcat || die
58 - default
59 -}
60 -
61 -src_install() {
62 - python_foreach_impl python_doscript grc grcat
63 -
64 - insinto /usr/share/grc
65 - doins \
66 - contrib/mrsmith/conf.* \
67 - colourfiles/conf.* \
68 - grc.bashrc \
69 - grc.fish \
70 - grc.zsh
71 -
72 - insinto /etc
73 - doins grc.conf
74 -
75 - dodoc README.markdown INSTALL TODO debian/changelog CREDITS Regexp.txt
76 - doman *.1
77 -}
78 -
79 -pkg_postinst() {
80 - elog
81 - elog "Shell specific configurations can be found in ${ROOT}usr/share/grc"
82 - elog "Be sure to symlink one to use grc globally:"
83 - elog
84 - elog " ln -s ${ROOT}usr/share/grc.SHELL ${ROOT}etc/profile.d/grc.sh"
85 - elog
86 - elog "Replace 'SHELL' in the above command with one of: bashrc, fish, zsh."
87 - elog "Afterwards, use '. ${ROOT}etc/profile' to activate grc in existing"
88 - elog "shell sessions."
89 - elog
90 -}