Import buildroot 2016.02.01
This commit is contained in:
18
firmware/buildroot/package/dbus-python/Config.in
Normal file
18
firmware/buildroot/package/dbus-python/Config.in
Normal file
@@ -0,0 +1,18 @@
|
||||
config BR2_PACKAGE_DBUS_PYTHON
|
||||
bool "dbus-python"
|
||||
depends on BR2_USE_WCHAR # glib2
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS # glib2
|
||||
depends on BR2_PACKAGE_DBUS
|
||||
depends on BR2_PACKAGE_PYTHON || BR2_PACKAGE_PYTHON3
|
||||
select BR2_PACKAGE_DBUS_GLIB
|
||||
# pyexpat: runtime dependency only
|
||||
select BR2_PACKAGE_PYTHON_PYEXPAT if BR2_PACKAGE_PYTHON
|
||||
select BR2_PACKAGE_PYTHON3_PYEXPAT if BR2_PACKAGE_PYTHON3
|
||||
help
|
||||
Python bindings for D-Bus
|
||||
|
||||
http://dbus.freedesktop.org/doc/dbus-python/
|
||||
|
||||
comment "dbus-python needs a toolchain w/ wchar, threads"
|
||||
depends on BR2_PACKAGE_DBUS && (BR2_PACKAGE_PYTHON || BR2_PACKAGE_PYTHON3)
|
||||
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
|
||||
2
firmware/buildroot/package/dbus-python/dbus-python.hash
Normal file
2
firmware/buildroot/package/dbus-python/dbus-python.hash
Normal file
@@ -0,0 +1,2 @@
|
||||
# Locally calculated after checking pgp signature
|
||||
sha256 e12c6c8b2bf3a9302f75166952cbe41d6b38c3441bbc6767dbd498942316c6df dbus-python-1.2.0.tar.gz
|
||||
31
firmware/buildroot/package/dbus-python/dbus-python.mk
Normal file
31
firmware/buildroot/package/dbus-python/dbus-python.mk
Normal file
@@ -0,0 +1,31 @@
|
||||
################################################################################
|
||||
#
|
||||
# dbus-python
|
||||
#
|
||||
################################################################################
|
||||
|
||||
DBUS_PYTHON_VERSION = 1.2.0
|
||||
DBUS_PYTHON_SITE = http://dbus.freedesktop.org/releases/dbus-python
|
||||
DBUS_PYTHON_INSTALL_STAGING = YES
|
||||
DBUS_PYTHON_LICENSE = MIT
|
||||
DBUS_PYTHON_LICENSE_FILES = COPYING
|
||||
DBUS_PYTHON_DEPENDENCIES = dbus-glib
|
||||
DBUS_PYTHON_CONF_OPTS = --disable-html-docs --disable-api-docs
|
||||
|
||||
ifeq ($(BR2_PACKAGE_PYTHON),y)
|
||||
DBUS_PYTHON_DEPENDENCIES += python host-python
|
||||
|
||||
DBUS_PYTHON_CONF_ENV += \
|
||||
PYTHON=$(HOST_DIR)/usr/bin/python2 \
|
||||
PYTHON_INCLUDES="`$(STAGING_DIR)/usr/bin/python2-config --includes`" \
|
||||
PYTHON_LIBS="`$(STAGING_DIR)/usr/bin/python2-config --ldflags`"
|
||||
else
|
||||
DBUS_PYTHON_DEPENDENCIES += python3 host-python3
|
||||
|
||||
DBUS_PYTHON_CONF_ENV += \
|
||||
PYTHON=$(HOST_DIR)/usr/bin/python3 \
|
||||
PYTHON_INCLUDES="`$(STAGING_DIR)/usr/bin/python3-config --includes`" \
|
||||
PYTHON_LIBS="`$(STAGING_DIR)/usr/bin/python3-config --ldflags`"
|
||||
endif
|
||||
|
||||
$(eval $(autotools-package))
|
||||
Reference in New Issue
Block a user