[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,7 @@
config BR2_PACKAGE_PYTHON_PYCUPS
bool "python-pycups"
depends on BR2_PACKAGE_CUPS
help
Python bindings for libcups.
https://github.com/zdohnal/pycups

View File

@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/pycups/json
md5 41eef188b86d01ccfdbaaa05cf0f6ca4 pycups-2.0.1.tar.gz
sha256 57434ce5f62548eb12949ca8217f066f4eeb21a5d6ab8b13471dce350e380c90 pycups-2.0.1.tar.gz
# Locally computed sha256 checksums
sha256 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643 COPYING

View File

@ -0,0 +1,15 @@
################################################################################
#
# python-pycups
#
################################################################################
PYTHON_PYCUPS_VERSION = 2.0.1
PYTHON_PYCUPS_SOURCE = pycups-$(PYTHON_PYCUPS_VERSION).tar.gz
PYTHON_PYCUPS_SITE = https://files.pythonhosted.org/packages/0c/bb/82546806a86dc16f5eeb76f62ffdc42cce3d43aacd4e25a8b5300eec0263
PYTHON_PYCUPS_SETUP_TYPE = distutils
PYTHON_PYCUPS_LICENSE = GPL-2.0+
PYTHON_PYCUPS_LICENSE_FILES = COPYING
PYTHON_PYCUPS_DEPENDENCIES = cups
$(eval $(python-package))