diff options
author | V3n3RiX <venerix@koprulu.sector> | 2024-09-22 14:47:12 +0100 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2024-09-22 14:47:12 +0100 |
commit | 1802160f23e91c618b3c7379fd99127682cfce19 (patch) | |
tree | 094c5349b2f0bd88633709f2f1ad322398475815 /dev-python/thrift | |
parent | 439c34b3917f0757b9c83eb64a687cac0d477140 (diff) |
gentoo auto-resync : 22:09:2024 - 14:47:12
Diffstat (limited to 'dev-python/thrift')
-rw-r--r-- | dev-python/thrift/Manifest | 2 | ||||
-rw-r--r-- | dev-python/thrift/thrift-0.21.0.ebuild | 35 |
2 files changed, 37 insertions, 0 deletions
diff --git a/dev-python/thrift/Manifest b/dev-python/thrift/Manifest index a9bdcd911249..dcfaaafa2537 100644 --- a/dev-python/thrift/Manifest +++ b/dev-python/thrift/Manifest @@ -1,3 +1,5 @@ DIST thrift-0.20.0.tar.gz 4397667 BLAKE2B 23422fdcdf7e0dbce8bc0f8017f54b5848594e2da21de56834152c17c74da7d1c4df23c5b57cf3ba811bb03f1a8588ddf1c2a05222bb726aceda4292a15af21e SHA512 8dc77f666e60141a6b3cf7ee1407b08a0e80d176f8ccfee69317d7df89ab87aea2c7b3ba3e59d4561835edf1ce23762443ad5aeed0099bf075b010853d5eb1cd +DIST thrift-0.21.0.tar.gz 4398072 BLAKE2B 1cbbecd0a4ecfe1a14b657d2a87286ad821e821894efde226aa96b23c62250c6bb032e703e0031990328b263593d92024f28b907e8dc27c217d475f6f3b90932 SHA512 0ffca1232305c07f803adb7239b5d22ee5c766a2809703c127b45a80b820c677e05a2d5b82852af5e1e923abe07ff1d9eb2f3fa4f2aa8732c9a81d8b0daa1f35 EBUILD thrift-0.20.0.ebuild 805 BLAKE2B 3dc168b5a9b5eace00dab6fa52ec890a78c36d6d81449e90166c37b9fb1750369af05290756dddfb8bd718da92407996c2d915aeeb7a1fde873c30c76547e845 SHA512 2c84e4bf96ebdb6865440f7cbd8de85d07ff45054d4d82d5166262cfd69e44857fd3a11929f7c59c6ed1eb134d34ad460b916138761c2a0b1f0611ae4313dfaa +EBUILD thrift-0.21.0.ebuild 807 BLAKE2B 860a905f00e520bf7b8bc3e1f68bda01dcdf716ecfd1ef66de498cac873eb6b3e5268052e181b45b623a08fee40493db728e987d06ab534bf205cc2c334692a4 SHA512 d4e5e166e0fda3344afe8fb4d56cf0dcd092af6dd6222e15e95801f58b6e4db9d407247004c9201fe1536ee3d4c31be2666370223f4de4684b2d16f605257ece MISC metadata.xml 297 BLAKE2B 9d609f1b246d9318981195394bdc6304f6593eb03cc4e292186ea97ef8e2fd9883f642fefedb594dbe4682bdc042ee02f00a1e853303bbb8038d7db8b7f96860 SHA512 5ae389822c24ea799ac748a7834157d192b4aa9dc8a4a0433c2f0d7cb04480508b097cba8687557a56b84239665d66efd9a501e11751b715de2f24cef505041f diff --git a/dev-python/thrift/thrift-0.21.0.ebuild b/dev-python/thrift/thrift-0.21.0.ebuild new file mode 100644 index 000000000000..34265a0ba6a1 --- /dev/null +++ b/dev-python/thrift/thrift-0.21.0.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +DISTUTILS_EXT=1 +PYTHON_COMPAT=( python3_{10..13} ) +inherit distutils-r1 + +DESCRIPTION="Python implementation of Thrift" +HOMEPAGE=" + https://pypi.org/project/thrift/ + https://thrift.apache.org/ + https://github.com/apache/thrift +" +SRC_URI="https://downloads.apache.org/${PN}/${PV}/${P}.tar.gz" +S="${WORKDIR}/${P}/lib/py" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~riscv ~x86 ~amd64-linux ~x86-linux" + +distutils_enable_tests unittest + +python_test() { + eunittest test +} + +src_install() { + distutils-r1_src_install + # avoid file collision with dev-libs/thrift (bug #933272) + mv "${D}"/usr/share/doc/${P}/README.md \ + "${D}"/usr/share/doc/${P}/ReadMe.md || die +} |