Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-irc/irker/
Date: Wed, 29 Jul 2020 19:11:30
Message-Id: 1596049876.6ccf2c449da2f0a56c5198cb758cb53c1964bf26.sam@gentoo
1 commit: 6ccf2c449da2f0a56c5198cb758cb53c1964bf26
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jul 29 19:11:16 2020 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Wed Jul 29 19:11:16 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ccf2c44
7
8 net-irc/irker: cleanup old Python 2 version
9
10 Package-Manager: Portage-3.0.1, Repoman-2.3.23
11 Signed-off-by: Sam James <sam <AT> gentoo.org>
12
13 net-irc/irker/Manifest | 1 -
14 net-irc/irker/irker-2.18-r2.ebuild | 59 --------------------------------------
15 2 files changed, 60 deletions(-)
16
17 diff --git a/net-irc/irker/Manifest b/net-irc/irker/Manifest
18 index acb711d9e3a..4b8b5f10205 100644
19 --- a/net-irc/irker/Manifest
20 +++ b/net-irc/irker/Manifest
21 @@ -1,2 +1 @@
22 -DIST irker-2.18.tar.gz 44284 BLAKE2B 355d9004c77c7635e5ee068d6521b2d1b8c3e0ae4b0d2fa39e71c16a4ecc2272c5a487dafd296a3d02aa5072c734f454875939b99f66c4321ab2970da78216ef SHA512 215f0ab3be03b615f2bb24e04a5e5f6688634c4fb994b5384106b7f3eae62967ac45b2a14d08eee8dbed886dbb0578e077fa19597db599ea9562a67797f75606
23 DIST irker-2.19.tar.gz 44502 BLAKE2B d777ed3b4308dca7f6bb2483bc03ba8ba50a55574da3e4de63138fe88483ae6d3ac46f414a94801d7f27c740e38ddcde494cea4c846fbc59d736441b692747f4 SHA512 7516ebe8adc74902eacc657f0a1d421c285a72f4ce08b84fd93b22635d49ba52acf7aedd03dde9012bc16496be3162bda9fa8486af3df1657af4cabf8719d7c7
24
25 diff --git a/net-irc/irker/irker-2.18-r2.ebuild b/net-irc/irker/irker-2.18-r2.ebuild
26 deleted file mode 100644
27 index b31d9dfc80f..00000000000
28 --- a/net-irc/irker/irker-2.18-r2.ebuild
29 +++ /dev/null
30 @@ -1,59 +0,0 @@
31 -# Copyright 1999-2020 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -PYTHON_COMPAT=( python2_7 ) # Doesn't work with python3 bug #619700
36 -PYTHON_REQ_USE="ssl"
37 -
38 -inherit python-single-r1 systemd
39 -
40 -DESCRIPTION="Submission tools for IRC notifications"
41 -HOMEPAGE="http://www.catb.org/esr/irker/"
42 -SRC_URI="http://www.catb.org/esr/${PN}/${P}.tar.gz"
43 -
44 -LICENSE="BSD-2"
45 -SLOT="0"
46 -KEYWORDS="~amd64 ~arm ~x86"
47 -IUSE="socks5"
48 -REQUIRED_USE="${PYTHON_REQUIRED_USE}"
49 -
50 -RDEPEND="${PYTHON_DEPS}"
51 -DEPEND="${RDEPEND}
52 - app-text/docbook-xml-dtd:4.1.2
53 - app-text/xmlto
54 - socks5? (
55 - $(python_gen_cond_dep '
56 - dev-python/PySocks[${PYTHON_MULTI_USEDEP}]
57 - ')
58 - )"
59 -
60 -DOCS=( NEWS README hacking.txt security.txt )
61 -HTML_DOCS=( irkerd.html irkerhook.html )
62 -
63 -src_prepare() {
64 - default
65 -
66 - # Rely on systemd eclass for systemd service install
67 - sed -i -e "/^SYSTEMDSYSTEMUNITDIR/d" Makefile \
68 - || die "sed failed"
69 -
70 - # Prefix support
71 - sed -i -e "/^ExecStart=/ s:=/:=${EPREFIX}:" irkerd.service \
72 - || die "sed failed"
73 -}
74 -
75 -src_install() {
76 - default
77 -
78 - python_doscript "${ED%/}/usr/bin/irkerd"
79 - # Not installed with the default Makefile
80 - python_doscript irk irkerhook.py
81 -
82 - newinitd "${FILESDIR}/irkerd.initd" irkerd
83 - newconfd "${FILESDIR}/irkerd.confd" irkerd
84 -
85 - systemd_dounit irkerd.service
86 -
87 - docinto examples
88 - dodoc filter-example.py filter-test.py
89 -}