diff --git a/net-im/matrix-commander/Manifest b/net-im/matrix-commander/Manifest index 949178f..33f5eba 100644 --- a/net-im/matrix-commander/Manifest +++ b/net-im/matrix-commander/Manifest @@ -1 +1,2 @@ DIST matrix-commander-3.0.1.gh.tar.gz 1772532 BLAKE2B 27e4f6ece7c66d8b89a4793019c5fba405e67b5df707807a12cb796f08f58d71ceecd32eb60620c403e8c72bc4e3b1f9e6cfd5a43aa3af643746e5d70204234c SHA512 c68c053dfd52eaf8e1ee13c14a805992021d5cf9c00403aefafd03cb8fac8d2fbc43684671765038088acb34a0d08c316adece9ed05b90f7935d49933d0d637a +DIST matrix-commander-7.2.0.gh.tar.gz 1809085 BLAKE2B 8eac4465bd6b00c21fafe8fb09bc93b73dbb7d2af49d233e817a4801dd28e000d762a86dab3c3494917ba72617e68262abfe05e2c108c465a8abfb799ce75675 SHA512 65a377c6c9c7aae209c2df7444241612007a18f8e74407f59088a4f6de726815a6354bffd859d9d716bb89691f2b9d91913bfd417c40e16a2bd9557dd8e8b4cf diff --git a/net-im/matrix-commander/matrix-commander-7.2.0.ebuild b/net-im/matrix-commander/matrix-commander-7.2.0.ebuild new file mode 100644 index 0000000..ebd8c01 --- /dev/null +++ b/net-im/matrix-commander/matrix-commander-7.2.0.ebuild @@ -0,0 +1,42 @@ +# Copyright 2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_SINGLE_IMPL=1 +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{10..11} ) + +inherit distutils-r1 bash-completion-r1 + +DESCRIPTION="Simple but convenient CLI-based Matrix client app for sending and receiving" +HOMEPAGE="https://github.com/8go/matrix-commander" +SRC_URI="https://github.com/8go/matrix-commander/archive/refs/tags/v${PV}.tar.gz -> ${P}.gh.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64" + +# Tests are a bunch shell scripts and lone python script +# Not gonna bother +RESTRICT="test" + +RDEPEND=" + $(python_gen_cond_dep ' + >=dev-python/aiofiles-0.6.0[${PYTHON_USEDEP}] + dev-python/aiohttp[${PYTHON_USEDEP}] + dev-python/emoji[${PYTHON_USEDEP}] + dev-python/markdown[${PYTHON_USEDEP}] + >=dev-python/matrix-nio-0.14.1[e2e(+),${PYTHON_USEDEP}] + dev-python/notify2[${PYTHON_USEDEP}] + dev-python/pillow[${PYTHON_USEDEP}] + dev-python/python-magic[${PYTHON_USEDEP}] + dev-python/pyxdg[${PYTHON_USEDEP}] + ') +" + +src_install() { + distutils-r1_src_install + + dobashcomp auto-completion/bash/matrix-commander.bash +}