[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,13 @@
config BR2_PACKAGE_PYTHON_POSIX_IPC
bool "python-posix-ipc"
depends on BR2_TOOLCHAIN_HAS_THREADS
help
The Python extension module posix_ipc gives access to POSIX
inter-process semaphores, shared memory and message queues
on systems that support the POSIX Realtime Extensions
a.k.a. POSIX 1003.1b-1993.
http://semanchuk.com/philip/posix_ipc/
comment "python-posix-ipc needs a toolchain w/ threads"
depends on !BR2_TOOLCHAIN_HAS_THREADS

View File

@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/posix-ipc/json
md5 8c9443859492ecf3aae9182aa6b5c78c posix_ipc-1.0.5.tar.gz
sha256 6cddb1ce2cf4aae383f2a0079c26c69bee257fe2720f372201ef047f8ceb8b97 posix_ipc-1.0.5.tar.gz
# Locally computed sha256 checksums
sha256 61f0669e70518e6d32f87e485965fe9309de60e4bef938b29cecd068b3db9a98 LICENSE

View File

@ -0,0 +1,14 @@
################################################################################
#
# python-posix-ipc
#
################################################################################
PYTHON_POSIX_IPC_VERSION = 1.0.5
PYTHON_POSIX_IPC_SOURCE = posix_ipc-$(PYTHON_POSIX_IPC_VERSION).tar.gz
PYTHON_POSIX_IPC_SITE = https://files.pythonhosted.org/packages/bc/2f/9a7901aa26fb0e02a671b989ba814d059a0f45af85cea31b9c9eef7e2dda
PYTHON_POSIX_IPC_LICENSE = BSD-3-Clause
PYTHON_POSIX_IPC_LICENSE_FILES = LICENSE
PYTHON_POSIX_IPC_SETUP_TYPE = setuptools
$(eval $(python-package))