-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Andreas Billmeier <b@edevau.net>
- Loading branch information
Showing
4 changed files
with
29 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
DIST asyncclick-8.0.1.3.tar.gz 337340 BLAKE2B 74901b5c65a1818e405dce79d4e224925a9e5e20f37f2a0fcef5c88289a4e248efb89b85c6390c40aa5f76c24f207e903973bad560740168045e9201cab49923 SHA512 4bd451bd3472a614551143b17c56dd78f0328514719d078a1d6d8a1af25676558a46fe5c3a49e166693ca7b7ec6eea8d487fa6dbc5bc474c62b64cbe49f07e6b | ||
EBUILD asyncclick-8.0.1.3.ebuild 697 BLAKE2B 1824fe00f2458f38fa0321988350070b12fccb9dda8281f2e1d8cd5eef1745e1fddcb720b7a6436f73e9fb336d92817f27fefeae26236c60442d91210002e197 SHA512 9033997858fc17e5dcf1b109066ea12a215e3fe2bacfd0932a960428790b2cd3185d7bf8f74b70357a76fcd358c6c64a299d9711e86d13e87ee2a61f1164f989 | ||
DIST asyncclick-8.1.7.2.tar.gz 349073 BLAKE2B ab90438e0a2bfe701c32e7ef66955699711842a8ee60e0a71b4df04d1209d141cc9f08fa28b3827232142572bfe2d23182dd29dd2e139f99ce88b114ea55755e SHA512 e707481eec64d9ddcfb731ad2671a7afc42ecc481ed64954e298b4f5948540c4dadbd027576f95dcd3e6dfdd4df0fb7e0a6939b7e0239d8f88f9b76033a944b3 | ||
EBUILD asyncclick-8.0.1.3.ebuild 697 BLAKE2B 442c572fdc9ec861d7ccc692e6b49047e79713e55b6ca97c23a16c921f75a9d8db759860b0931525ba19721e67539466f4ddf66e5aea7ae8a3f68e29bbf6bfc3 SHA512 1bca1a2773a05a081cea64285f44c38b3d8df8a9b262bdb4fadc984826543481a6df10382752706bda8b47e9c1661d8fbba231b36674ed5e768aa2bbb5d1e0bf | ||
EBUILD asyncclick-8.1.7.2.ebuild 595 BLAKE2B 050695a8f384256702f10e0fe22af4dea8271d6c9dac003d255f5442fa4ef93d2760b24da283fcaba498e659d4fb29e0a011cd3b1ad9804a5db624dbf1a46d7b SHA512 5d992769d467a5cd8fdeabbc769ed239e25af27122ef9101603da5bc0cb5e9fe31ada2b0f738bc4207533762e2e23f8b4605efb1a0125d8db1ebd63ab7d619ec | ||
MISC metadata.xml 530 BLAKE2B dc94859e5df23e9d3a9e752709815634aad05a1c7c8a07076f60c39384c94fd3881c29182cf1553d6e46eea72ba558cb4a68951df5b892fabfbcf1be9d031cfb SHA512 75a2689f558477c813adaf1963bdcab1e5c0e38943c42b832da1cca2fe9c47f7ffe38384e54bc8ae9c54c371ff8c299605b6e9f9f4ad94206a542f3965a96c55 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Copyright 1999-2024 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
|
||
PYTHON_COMPAT=( python3_{11..13} ) | ||
DISTUTILS_USE_PEP517=setuptools | ||
inherit distutils-r1 pypi | ||
DESCRIPTION="Composable command line interface toolkit, async version" | ||
HOMEPAGE="https://github.com/python-trio/asyncclick/ https://palletsprojects.com/p/click/ https://pypi.org/project/asyncclick/" | ||
|
||
LICENSE="BSD" | ||
SLOT="0" | ||
KEYWORDS="amd64 arm arm64 x86" | ||
IUSE="test" | ||
RESTRICT="!test? ( test )" | ||
|
||
DOCS="README.rst" | ||
|
||
RDEPEND="dev-python/anyio[${PYTHON_USEDEP}]" | ||
|
||
distutils_enable_tests pytest |