1
0
mirror of https://github.com/gryf/gryf-overlay.git synced 2026-03-26 22:53:32 +01:00

Compare commits

...

2 Commits

Author SHA1 Message Date
86a37de680 Added ebuild for pdbpp 2023-09-06 18:28:19 +02:00
275e37eec1 Added fancycompleter - python lib for tab completion 2023-09-06 18:25:21 +02:00
4 changed files with 51 additions and 0 deletions

View File

@@ -0,0 +1,2 @@
DIST fancycompleter-0.9.1.tar.gz 10866 BLAKE2B 0fb22e35e22f822c0a3671d17bf3b590bf300483036f013ae9c2bf3c31d0bf1d6f5dbccd5dd4927821b2fc62c2a3cfe6057a155fa1120759e8aecfee5f24b1cf SHA512 31be34a14be23cbc158665ca044d9aa126852fe68db697cce4734e8928ae2b36155ba2da3b4d9e8999d5144dfa23fb0823fe75f515c28871da136e00b8e16b6a
EBUILD fancycompleter-0.9.1.ebuild 435 BLAKE2B de678d36552a4e57ef9185106c46de34ac1d040eefc529c6b058cb9cb1089c7039cf3d215427a9b5f21076ce097e8136ea78b3f72a6b7f71fe66de7494f88e45 SHA512 39b54f7566301828002e23e6c1a8ef3015eb0983f700780f5cb967295322c22de9804c4c29d2678f3afb6abeaa11c1bc10307d18f4aa70a408082c8c5a178e55

View File

@@ -0,0 +1,20 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYPI_NO_NORMALIZE=1
PYTHON_COMPAT=( python3_{10..12} )
inherit distutils-r1 pypi
DESCRIPTION="fancycompleter: colorful Python TAB completion"
HOMEPAGE="
https://github.com/pdbpp/fancycompleter/
https://pypi.org/project/fancycompleter/
"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~arm64"

View File

@@ -0,0 +1,2 @@
DIST pdbpp-0.10.3.tar.gz 68116 BLAKE2B 8bad431f11cbdc9bc3e373490f14252b6342ddebf8fbe869dca8a798bd9781a253e84139b3c4832c3c9a0f0644e8167fdde42bf7e709d26967ea0436ea1ccf45 SHA512 4076c64bf53698c801b5311ad6174eae65b24fd611b585b3e7866a539e44dfc6cb954026e319d2e3de610c50f08128015ea5038888d5412fc2d3da1f27bbc76c
EBUILD pdbpp-0.10.3.ebuild 511 BLAKE2B 2ee18ca89e2fcd7dbc4715aa815043d25685cf1344642bf0431ba5eceeaa2aa98ff7ebbfafca8c212e8cb63bb06de94c1b4b9407640ef8ccad5a2f46cfe12d92 SHA512 b0898072153bd1ae93b9ba72d0239e92f3ecdb1923037fad9dc29bf0ba885a61ef733b568c66595c750b5b5c501057cc137004b4ac5dc564d20d94ed640a63ea

View File

@@ -0,0 +1,27 @@
# Copyright 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 pypi
DESCRIPTION="pdb++, a drop-in replacement for pdb (the Python debugger)"
HOMEPAGE="
https://github.com/pdbpp/pdbpp/
https://pypi.org/project/pdbpp/
"
LICENSE="BSD-3"
SLOT="0"
KEYWORDS="~amd64"
RDEPEND="
dev-python/pygments
dev-python/fancycompleter
"
DEPEND="${RDEPEND}"
distutils_enable_tests pytest