diff options
author | Georgy Yakovlev <gyakovlev@gentoo.org> | 2020-11-11 11:58:56 -0800 |
---|---|---|
committer | Georgy Yakovlev <gyakovlev@gentoo.org> | 2020-11-11 12:15:52 -0800 |
commit | 7d5f631005a14439710614ac7d83de24c5de57cd (patch) | |
tree | 230a2801b4d450956454e9b58bd4ae25513b3bdc /net-irc | |
parent | net-irc/weechat: bump to 3.0, drop py3.6 support (diff) | |
download | gentoo-7d5f631005a14439710614ac7d83de24c5de57cd.tar.gz gentoo-7d5f631005a14439710614ac7d83de24c5de57cd.tar.bz2 gentoo-7d5f631005a14439710614ac7d83de24c5de57cd.zip |
net-irc/weechat: add py3.9, make tests verbose, unrestrict tests
Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Georgy Yakovlev <gyakovlev@gentoo.org>
Diffstat (limited to 'net-irc')
-rw-r--r-- | net-irc/weechat/weechat-3.0.ebuild | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/net-irc/weechat/weechat-3.0.ebuild b/net-irc/weechat/weechat-3.0.ebuild index de6b3bf7fba7..e1f5520395b0 100644 --- a/net-irc/weechat/weechat-3.0.ebuild +++ b/net-irc/weechat/weechat-3.0.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python{3_7,3_8} ) +PYTHON_COMPAT=( python3_{7..9} ) inherit cmake python-single-r1 xdg-utils @@ -27,7 +27,11 @@ PLUGINS="+alias +buflist +charset +exec +fifo +fset +logger +relay +scripts +spe SCRIPT_LANGS="guile lua +perl php +python ruby tcl" LANGS=" cs de es fr it ja pl ru" IUSE="doc man nls test ${SCRIPT_LANGS} ${PLUGINS} ${INTERFACES} ${NETWORKS}" -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" + +REQUIRED_USE=" + python? ( ${PYTHON_REQUIRED_USE} ) + test? ( nls ) +" RDEPEND=" dev-libs/libgcrypt:0= @@ -46,6 +50,7 @@ RDEPEND=" spell? ( app-text/aspell ) tcl? ( >=dev-lang/tcl-8.4.15:0= ) " + DEPEND="${RDEPEND} test? ( dev-util/cpputest ) " @@ -59,8 +64,7 @@ BDEPEND=" DOCS="AUTHORS.adoc ChangeLog.adoc Contributing.adoc ReleaseNotes.adoc README.adoc" -# tests need to be fixed to not use system plugins if weechat is already installed -RESTRICT="test" +RESTRICT="!test? ( test )" pkg_setup() { use python && python-single-r1_pkg_setup @@ -137,6 +141,10 @@ src_configure() { cmake_src_configure } +src_test() { + cmake_src_test -V +} + pkg_postinst() { xdg_desktop_database_update xdg_icon_cache_update |