[Mod] First commit

This commit is contained in:
2022-10-31 22:18:58 +08:00
commit 1c8a3d9709
13090 changed files with 526733 additions and 0 deletions

View File

@ -0,0 +1,11 @@
config BR2_PACKAGE_PYTHON_PUDB
bool "python-pudb"
select BR2_PACKAGE_PYTHON_URWID # runtime
select BR2_PACKAGE_PYTHON_JEDI # runtime
select BR2_PACKAGE_PYTHON_PYGMENTS # runtime
select BR2_PACKAGE_PYTHON_SETUPTOOLS # runtime
select BR2_PACKAGE_PYTHON3_CURSES # runtime
help
A full-screen, console-based Python debugger.
https://github.com/inducer/pudb

View File

@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/pudb/json
md5 100b955e103b72279604420bbdcd07a5 pudb-2021.1.tar.gz
sha256 309ee82b45a0ffca0bc4c7f521fd3e357589c764f339bdf9dcabb7ad40692d6e pudb-2021.1.tar.gz
# Locally computed sha256 checksums
sha256 a95343fffff49cde3d9bf33cf6bb71cb3bf0ed83f47d98a7ba04b175d29c79ab LICENSE

View File

@ -0,0 +1,14 @@
################################################################################
#
# python-pudb
#
################################################################################
PYTHON_PUDB_VERSION = 2021.1
PYTHON_PUDB_SOURCE = pudb-$(PYTHON_PUDB_VERSION).tar.gz
PYTHON_PUDB_SITE = https://files.pythonhosted.org/packages/c7/69/813e93519fc28744457ff68fa2eaac3b4ea30dda1e6994e969fe9d3008d9
PYTHON_PUDB_SETUP_TYPE = setuptools
PYTHON_PUDB_LICENSE = MIT
PYTHON_PUDB_LICENSE_FILES = LICENSE
$(eval $(python-package))