diff options
author | Sam James <sam@gentoo.org> | 2022-07-26 05:24:13 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-07-26 05:25:25 +0100 |
commit | 75a1ac18fd40bd6b93569d33c4ca0bbf93cf4a43 (patch) | |
tree | 60facdb3786763c9080f49a571eec77fbbaa454a /net-irc | |
parent | net-analyzer/termshark: drop 2.3.0 (diff) | |
download | gentoo-75a1ac18fd40bd6b93569d33c4ca0bbf93cf4a43.tar.gz gentoo-75a1ac18fd40bd6b93569d33c4ca0bbf93cf4a43.tar.bz2 gentoo-75a1ac18fd40bd6b93569d33c4ca0bbf93cf4a43.zip |
net-irc/irker: drop 2.22
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'net-irc')
-rw-r--r-- | net-irc/irker/irker-2.22.ebuild | 64 |
1 files changed, 0 insertions, 64 deletions
diff --git a/net-irc/irker/irker-2.22.ebuild b/net-irc/irker/irker-2.22.ebuild deleted file mode 100644 index 5227a14bc99d..000000000000 --- a/net-irc/irker/irker-2.22.ebuild +++ /dev/null @@ -1,64 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{8..10} ) -PYTHON_REQ_USE="ssl" - -inherit optfeature python-single-r1 systemd - -DESCRIPTION="Submission tools for IRC notifications" -HOMEPAGE="http://www.catb.org/esr/irker/ https://gitlab.com/esr/irker" -SRC_URI="http://www.catb.org/esr/${PN}/${P}.tar.gz" - -LICENSE="BSD-2" -SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86" -REQUIRED_USE="${PYTHON_REQUIRED_USE}" - -# Dependency notes: -# NOTE: No pkgconfig dep here because of the systemd sed below -# NOTE: No need for asciidoc here as it's only used for the -# 'release' makefile target. -BDEPEND=" - app-text/docbook-xml-dtd:4.1.2 - app-text/xmlto - ${PYTHON_DEPS} -" -RDEPEND="${PYTHON_DEPS}" - -DOCS=( NEWS README hacking.adoc security.adoc ) -HTML_DOCS=( irkerd.html irkerhook.html ) - -src_prepare() { - default - - # Rely on systemd eclass for systemd service install - sed -i -e "/^SYSTEMDSYSTEMUNITDIR/d" Makefile \ - || die "sed failed" - - # Prefix support - sed -i -e "/^ExecStart=/ s:=/:=${EPREFIX}/:" irkerd.service \ - || die "sed failed" -} - -src_install() { - default - - python_doscript "${ED}"/usr/bin/irkerd - # Not installed with the default Makefile - python_doscript irk irkerhook.py - - newinitd "${FILESDIR}"/irkerd.initd irkerd - newconfd "${FILESDIR}"/irkerd.confd irkerd - - systemd_dounit irkerd.service - - docinto examples - dodoc filter-example.py filter-test.py -} - -pkg_postinst() { - optfeature "SOCKS5 proxy support" dev-python/PySocks -} |