diff options
Diffstat (limited to 'dev-python/matrix-common')
-rw-r--r-- | dev-python/matrix-common/Manifest | 1 | ||||
-rw-r--r-- | dev-python/matrix-common/matrix-common-1.3.0-r1.ebuild | 31 |
2 files changed, 32 insertions, 0 deletions
diff --git a/dev-python/matrix-common/Manifest b/dev-python/matrix-common/Manifest index 8b6f0336a45c..f5042399de60 100644 --- a/dev-python/matrix-common/Manifest +++ b/dev-python/matrix-common/Manifest @@ -1,3 +1,4 @@ DIST matrix-common-1.3.0.gh.tar.gz 14143 BLAKE2B dd72a7c5558c2db0ab38f2f544f6ab6926fd037e99cbb774973f08bdc661c1587d3d6883ffc6a9cfcea6942284d4020814c02d56be3746279323fca17490f434 SHA512 d08fa11a4156a7c4596ea20709e0fddd1563ef1f4ba763e21a073ba53e1baf58d8de1b60cf0f69c846128cdd6f04788df49765704c8adfde187e8de1dc5ded4e +EBUILD matrix-common-1.3.0-r1.ebuild 653 BLAKE2B 624ceb858de65617421f069db24ef2ef05613effad2613f3ca335d8d8c5233d07cb33847f56e21c6ae8e1353aaa7a2fbe68e08c4bb87a3bc31b5dd17acaa3930 SHA512 f0d515b67ddf821f19264e40a72c395012b2c92548d135cb6b423953035b63306cd99593a0d21d7a9fe5c5c3be3243de2a35498f2e9e9e7d039a4d53d5e7f767 EBUILD matrix-common-1.3.0.ebuild 700 BLAKE2B 3a92c4c91d5c2042c3f816a6b3a019cf7721e2b2860e136be4f154fc32b6f873d1b8516cb1e05b2d8344ffcbc4039a69e822b85f11b4a6a4dbaf8003e2eb999a SHA512 899e58e3ce03c0ef2660f540e944b74e1bfa2773999ebc76dc80217f664d199a4ad3f289b9bbdb93f5106576d29f143b4e46e56c4eb1d0a912be37b6b5660bc4 MISC metadata.xml 562 BLAKE2B fa541a0975b17ed6cd5da5f2c2afe5c938e4e9d6bcb678ff73041d0868fd5c3f113b25a5e1ad9ff12179aa4ede1ecefbb74e92946e6fb142b1e1f3bd14aca4d3 SHA512 83588db4905f80df6c8d881e20753cd52de1ee828d3a8650cbe8806692483e54fa0a126dd5a69530d1f64e6abacf0c75e4b128a8162a9a76813c6b519c916795 diff --git a/dev-python/matrix-common/matrix-common-1.3.0-r1.ebuild b/dev-python/matrix-common/matrix-common-1.3.0-r1.ebuild new file mode 100644 index 000000000000..3fc65d970aa6 --- /dev/null +++ b/dev-python/matrix-common/matrix-common-1.3.0-r1.ebuild @@ -0,0 +1,31 @@ +# Copyright 2022-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{10..12} ) + +inherit distutils-r1 + +DESCRIPTION="Common code for Synapse, Sydent and Sygnal" +HOMEPAGE=" + https://github.com/matrix-org/matrix-python-common + https://pypi.org/project/matrix-common/ +" +SRC_URI=" + https://github.com/matrix-org/matrix-python-common/archive/v${PV}.tar.gz + -> ${P}.gh.tar.gz +" + +S="${WORKDIR}/matrix-python-common-${PV}" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~ppc64" + +RDEPEND=" + dev-python/attrs[${PYTHON_USEDEP}] +" + +distutils_enable_tests unittest |