Add buildroot 2018-02

This commit is contained in:
Pascal Vizeli
2018-03-17 23:47:00 +00:00
parent 3776c47f83
commit 67742041ad
10007 changed files with 405098 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
config BR2_PACKAGE_PYTHON_POSIX_IPC
bool "python-posix-ipc"
depends on BR2_PACKAGE_PYTHON
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,3 @@
# md5 from https://pypi.python.org/pypi/posix-ipc/json, sha256 locally computed
md5 85607a392087715ac3a3c7ded2492d06 posix_ipc-1.0.0.tar.gz
sha256 9c93070374ca672725575e5c9874930c8cde69367fb90378b2255e048e31efcb posix_ipc-1.0.0.tar.gz

View File

@@ -0,0 +1,14 @@
################################################################################
#
# python-posix-ipc
#
################################################################################
PYTHON_POSIX_IPC_VERSION = 1.0.0
PYTHON_POSIX_IPC_SOURCE = posix_ipc-$(PYTHON_POSIX_IPC_VERSION).tar.gz
PYTHON_POSIX_IPC_SITE = https://pypi.python.org/packages/f0/e6/bff62b62b2e75f695b737695951b7a4c1c6595369268a37868f5c34e1c12
PYTHON_POSIX_IPC_LICENSE = BSD-3-Clause
PYTHON_POSIX_IPC_LICENSE_FILES = LICENSE
PYTHON_POSIX_IPC_SETUP_TYPE = distutils
$(eval $(python-package))