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/limnoria/
Date: Fri, 26 Feb 2021 14:26:38
Message-Id: 1614349563.2e93a97f19e1cf4e7486934cca5ad21890f826a6.sam@gentoo
1 commit: 2e93a97f19e1cf4e7486934cca5ad21890f826a6
2 Author: Jakov Smolic <jakov.smolic <AT> sartura <DOT> hr>
3 AuthorDate: Thu Feb 25 17:57:22 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Fri Feb 26 14:26:03 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e93a97f
7
8 net-irc/limnoria: Remove old
9
10 Signed-off-by: Jakov Smolic <jakov.smolic <AT> sartura.hr>
11 Signed-off-by: Sam James <sam <AT> gentoo.org>
12
13 net-irc/limnoria/Manifest | 1 -
14 net-irc/limnoria/limnoria-20191123.ebuild | 85 -------------------------------
15 2 files changed, 86 deletions(-)
16
17 diff --git a/net-irc/limnoria/Manifest b/net-irc/limnoria/Manifest
18 index 755ca9043b7..863cbcd269d 100644
19 --- a/net-irc/limnoria/Manifest
20 +++ b/net-irc/limnoria/Manifest
21 @@ -1,2 +1 @@
22 -DIST limnoria-20191123.tar.gz 975077 BLAKE2B b5bc425013a30043c79a5dc53fc346e3b65cafbae154789f43634fc8beb4c7dcfaea34b0c1e22eae28e044eaa2801b0c29ef106fd6e2cc0095e6acbf4c4bf931 SHA512 5822f83a5d7fae0e45e526d9a72c1bbfd2acb7f625cff38e4d6e59222aca4c68204ae03069e991e274b108391cd4feff85783805657554771a7d24789589d14b
23 DIST limnoria-20200124.tar.gz 1034653 BLAKE2B 895a0820efcd58429e457e0cb8dbcb864e56a3bce9fab9546cf622aabc7711a015432812c4193d2dabe7a85043c623ce427504c1c8e78530499c8db2c589bd8e SHA512 828c4927e2ce00c012d17f8a2b2d629370c34915e7e4f71de6df67259e643448c33a60d9cf742b2d827e21e17326a8fc20be875eac826edf64406eda906567a4
24
25 diff --git a/net-irc/limnoria/limnoria-20191123.ebuild b/net-irc/limnoria/limnoria-20191123.ebuild
26 deleted file mode 100644
27 index 9374199261b..00000000000
28 --- a/net-irc/limnoria/limnoria-20191123.ebuild
29 +++ /dev/null
30 @@ -1,85 +0,0 @@
31 -# Copyright 1999-2020 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -PYTHON_COMPAT=( python3_7 )
36 -
37 -inherit distutils-r1
38 -
39 -MY_PV="${PV:0:4}-${PV:4:2}-${PV:6:2}"
40 -MY_PN="Limnoria"
41 -MY_P="${MY_PN}-${MY_PV}"
42 -
43 -if [[ ${PV} == "99999999" ]]; then
44 - EGIT_REPO_URI="https://github.com/ProgVal/${MY_PN}.git"
45 - EGIT_BRANCH="testing"
46 - inherit git-r3
47 - SRC_URI=""
48 -else
49 - SRC_URI="https://github.com/ProgVal/${MY_PN}/archive/master-${MY_PV}.tar.gz -> ${P}.tar.gz"
50 - KEYWORDS="~amd64 ~x86"
51 - S="${WORKDIR}/${MY_PN}-master-${MY_PV}"
52 -fi
53 -
54 -DESCRIPTION="Python based extensible IRC infobot and channel bot"
55 -HOMEPAGE="https://supybot.aperio.fr/"
56 -LICENSE="BSD"
57 -SLOT="0"
58 -IUSE="crypt ssl"
59 -
60 -RDEPEND="
61 - dev-python/chardet[${PYTHON_USEDEP}]
62 - dev-python/ecdsa[${PYTHON_USEDEP}]
63 - dev-python/feedparser[${PYTHON_USEDEP}]
64 - dev-python/python-dateutil[${PYTHON_USEDEP}]
65 - dev-python/pytz[${PYTHON_USEDEP}]
66 - dev-python/PySocks[${PYTHON_USEDEP}]
67 - dev-python/sqlalchemy[${PYTHON_USEDEP}]
68 - crypt? ( dev-python/python-gnupg[${PYTHON_USEDEP}] )
69 - ssl? ( dev-python/pyopenssl[${PYTHON_USEDEP}] )
70 - !net-irc/supybot
71 - !net-irc/supybot-plugins
72 - "
73 -DEPEND="${RDEPEND}"
74 -
75 -src_unpack() {
76 - if [[ ${PV} == "99999999" ]]; then
77 - git-r3_src_unpack
78 - else
79 - unpack ${P}.tar.gz
80 - fi
81 -}
82 -
83 -python_prepare() {
84 - einfo "Removing the RSS plugin because of clashes between libxml2's Python3"
85 - einfo "bindings and feedparser."
86 - rm -rf "plugins/RSS" || die
87 -}
88 -
89 -python_install_all() {
90 - distutils-r1_python_install_all
91 - doman man/*
92 -}
93 -
94 -python_test() {
95 - pushd "${T}" > /dev/null
96 - PLUGINS_DIR="${BUILD_DIR}/lib/supybot/plugins"
97 - EXCLUDE_PLUGINS=()
98 - # intermittent failure due to issues loading libsandbox.so from LD_PRELOAD
99 - # runs successfully when running the tests on the installed system
100 - EXCLUDE_PLUGINS+=( --exclude="${PLUGINS_DIR}/Unix" )
101 - # Runs despite --no-network (GH #1392)
102 - EXCLUDE_PLUGINS+=( --exclude="${PLUGINS_DIR}/Aka" )
103 - "${PYTHON}" "${BUILD_DIR}"/scripts/supybot-test "${BUILD_DIR}/../test" \
104 - --plugins-dir="${PLUGINS_DIR}" --no-network \
105 - --disable-multiprocessing "${EXCLUDE_PLUGINS[@]}" \
106 - || die "Tests failed under ${EPYTHON}"
107 - popd > /dev/null
108 -}
109 -
110 -pkg_postinst() {
111 - elog "Complete user documentation is available at https://limnoria-doc.readthedocs.org/"
112 - elog ""
113 - elog "Use supybot-wizard to create a configuration file."
114 - elog "Run supybot </path/to/config> to use the bot."
115 -}