diff options
author | NP-Hardass <NP-Hardass@gentoo.org> | 2019-12-02 09:48:09 -0500 |
---|---|---|
committer | Göktürk Yüksek <gokturk@gentoo.org> | 2019-12-02 12:21:41 -0500 |
commit | 7be52f52d69834fb3d5b59fd75df09bf2b64aee3 (patch) | |
tree | 1466b4f4b0d0f7aee8c0f236804a521ce3ddb9e4 /net-irc/limnoria/limnoria-99999999.ebuild | |
parent | x11-drivers/xf86-input-wacom: Update remote id to github (diff) | |
download | gentoo-7be52f52d69834fb3d5b59fd75df09bf2b64aee3.tar.gz gentoo-7be52f52d69834fb3d5b59fd75df09bf2b64aee3.tar.bz2 gentoo-7be52f52d69834fb3d5b59fd75df09bf2b64aee3.zip |
net-irc/limnoria: Bump to 20191123 & EAPI 7, update PYCOMPAT
CVE: CVE-2019-19010
Bug: https://bugs.gentoo.org/701756
Package-Manager: Portage-2.3.80, Repoman-2.3.16
Signed-off-by: NP-Hardass <NP-Hardass@gentoo.org>
Signed-off-by: Göktürk Yüksek <gokturk@gentoo.org>
Diffstat (limited to 'net-irc/limnoria/limnoria-99999999.ebuild')
-rw-r--r-- | net-irc/limnoria/limnoria-99999999.ebuild | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/net-irc/limnoria/limnoria-99999999.ebuild b/net-irc/limnoria/limnoria-99999999.ebuild index 0c64a0acb20e..3b1067c7a695 100644 --- a/net-irc/limnoria/limnoria-99999999.ebuild +++ b/net-irc/limnoria/limnoria-99999999.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI="5" -PYTHON_COMPAT=( python{2_7,3_5,3_6} ) +EAPI=7 +PYTHON_COMPAT=( python{2_7,3_5,3_6,3_7} ) inherit distutils-r1 @@ -52,7 +52,6 @@ src_unpack() { } python_prepare(){ - distutils-r1_python_prepare if python_is_python3; then einfo "Removing the RSS plugin because of clashes between libxml2's Python3" einfo "bindings and feedparser." @@ -68,13 +67,12 @@ python_install_all() { python_test() { pushd "${T}" > /dev/null PLUGINS_DIR="${BUILD_DIR}/lib/supybot/plugins" - # recommended by upstream, unknown random failure - EXCLUDE_PLUGINS=( --exclude="${PLUGINS_DIR}/Scheduler" ) - # recommended by upstream, unknown random failure - EXCLUDE_PLUGINS+=( --exclude="${PLUGINS_DIR}/Filter" ) + EXCLUDE_PLUGINS=() # intermittent failure due to issues loading libsandbox.so from LD_PRELOAD # runs successfully when running the tests on the installed system EXCLUDE_PLUGINS+=( --exclude="${PLUGINS_DIR}/Unix" ) + # Runs despite --no-network (GH #1392) + EXCLUDE_PLUGINS+=( --exclude="${PLUGINS_DIR}/Aka" ) "${PYTHON}" "${BUILD_DIR}"/scripts/supybot-test "${BUILD_DIR}/../test" \ --plugins-dir="${PLUGINS_DIR}" --no-network \ --disable-multiprocessing "${EXCLUDE_PLUGINS[@]}" \ |