mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-27 21:26:36 +00:00
libsemanage: cleanup python use and license definition
The original package supported python on target, now we just use it as part of the host tools. The license was also mis-assigned. [Thomas: add removed option to Config.in.legacy.] Signed-off-by: Matthew Weber <matthew.weber@rockwellcollins.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
parent
797a3414b9
commit
7742abe048
@ -107,6 +107,13 @@ endif
|
|||||||
###############################################################################
|
###############################################################################
|
||||||
comment "Legacy options removed in 2015.08"
|
comment "Legacy options removed in 2015.08"
|
||||||
|
|
||||||
|
config BR2_PACKAGE_LIBSEMANAGE_PYTHON_BINDINGS
|
||||||
|
depends on BR2_PACKAGE_PYTHON
|
||||||
|
bool "libsemanage python bindings removed"
|
||||||
|
help
|
||||||
|
This option has been removed, since the libsemanage Python
|
||||||
|
bindings on the target were not useful.
|
||||||
|
|
||||||
config BR2_TARGET_UBOOT_NETWORK
|
config BR2_TARGET_UBOOT_NETWORK
|
||||||
bool "U-Boot custom network settings removed"
|
bool "U-Boot custom network settings removed"
|
||||||
select BR2_LEGACY
|
select BR2_LEGACY
|
||||||
|
@ -16,15 +16,5 @@ config BR2_PACKAGE_LIBSEMANAGE
|
|||||||
|
|
||||||
http://selinuxproject.org/page/Main_Page
|
http://selinuxproject.org/page/Main_Page
|
||||||
|
|
||||||
if BR2_PACKAGE_LIBSEMANAGE
|
|
||||||
|
|
||||||
config BR2_PACKAGE_LIBSEMANAGE_PYTHON_BINDINGS
|
|
||||||
depends on BR2_PACKAGE_PYTHON
|
|
||||||
bool "python bindings"
|
|
||||||
help
|
|
||||||
Enable building python bindings
|
|
||||||
|
|
||||||
endif
|
|
||||||
|
|
||||||
comment "libsemanage needs a toolchain w/ threads, dynamic library"
|
comment "libsemanage needs a toolchain w/ threads, dynamic library"
|
||||||
depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS
|
depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS
|
||||||
|
@ -6,66 +6,56 @@
|
|||||||
|
|
||||||
LIBSEMANAGE_VERSION = 2.1.10
|
LIBSEMANAGE_VERSION = 2.1.10
|
||||||
LIBSEMANAGE_SITE = https://raw.githubusercontent.com/wiki/SELinuxProject/selinux/files/releases/20130423
|
LIBSEMANAGE_SITE = https://raw.githubusercontent.com/wiki/SELinuxProject/selinux/files/releases/20130423
|
||||||
LIBSEPOL_LICENSE = LGPLv2.1+
|
LIBSEMANAGE_LICENSE = LGPLv2.1+
|
||||||
LIBSEPOL_LICENSE_FILES = COPYING
|
LIBSEMANAGE_LICENSE_FILES = COPYING
|
||||||
|
|
||||||
LIBSEMANAGE_DEPENDENCIES = host-bison host-flex libselinux ustr bzip2
|
LIBSEMANAGE_DEPENDENCIES = host-bison host-flex libselinux ustr bzip2
|
||||||
|
|
||||||
LIBSEMANAGE_INSTALL_STAGING = YES
|
LIBSEMANAGE_INSTALL_STAGING = YES
|
||||||
|
|
||||||
LIBSEMANAGE_MAKE_OPTS = $(TARGET_CONFIGURE_OPTS)
|
LIBSEMANAGE_MAKE_OPTS = $(TARGET_CONFIGURE_OPTS)
|
||||||
|
|
||||||
ifeq ($(BR2_PACKAGE_LIBSEMANAGE_PYTHON_BINDINGS),y)
|
|
||||||
|
|
||||||
LIBSEMANAGE_DEPENDENCIES += python host-swig
|
|
||||||
LIBSEMANAGE_MAKE_OPTS += \
|
|
||||||
PYINC="-I$(STAGING_DIR)/usr/include/python$(PYTHON_VERSION_MAJOR)/" \
|
|
||||||
PYTHONLIBDIR="-L$(STAGING_DIR)/usr/lib/python$(PYTHON_VERSION_MAJOR)/" \
|
|
||||||
PYLIBVER="python$(PYTHON_VERSION_MAJOR)" \
|
|
||||||
SWIG_LIB="$(HOST_DIR)/usr/share/swig/$(SWIG_VERSION)/"
|
|
||||||
|
|
||||||
define LIBSEMANAGE_PYTHON_BUILD_CMDS
|
|
||||||
$(MAKE) -C $(@D) $(LIBSEMANAGE_MAKE_OPTS) DESTDIR=$(STAGING_DIR) swigify pywrap
|
|
||||||
endef
|
|
||||||
|
|
||||||
define LIBSEMANAGE_PYTHON_INSTALL_STAGING_CMDS
|
|
||||||
$(MAKE) -C $(@D) $(LIBSEMANAGE_MAKE_OPTS) DESTDIR=$(STAGING_DIR) install-pywrap
|
|
||||||
endef
|
|
||||||
|
|
||||||
define LIBSEMANAGE_PYTHON_INSTALL_TARGET_CMDS
|
|
||||||
$(MAKE) -C $(@D) $(LIBSEMANAGE_MAKE_OPTS) DESTDIR=$(TARGET_DIR) install-pywrap
|
|
||||||
endef
|
|
||||||
|
|
||||||
endif # End of BR2_PACKAGE_PYTHON
|
|
||||||
|
|
||||||
define LIBSEMANAGE_BUILD_CMDS
|
define LIBSEMANAGE_BUILD_CMDS
|
||||||
# DESTDIR is needed during the compile to compute library and
|
# DESTDIR is needed during the compile to compute library and
|
||||||
# header paths.
|
# header paths.
|
||||||
$(MAKE) -C $(@D) $(LIBSEMANAGE_MAKE_OPTS) DESTDIR=$(STAGING_DIR) all
|
$(MAKE) -C $(@D) $(LIBSEMANAGE_MAKE_OPTS) DESTDIR=$(STAGING_DIR) all
|
||||||
$(LIBSEMANAGE_PYTHON_BUILD_CMDS)
|
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define LIBSEMANAGE_INSTALL_STAGING_CMDS
|
define LIBSEMANAGE_INSTALL_STAGING_CMDS
|
||||||
$(MAKE) -C $(@D) $(LIBSEMANAGE_MAKE_OPTS) DESTDIR=$(STAGING_DIR) install
|
$(MAKE) -C $(@D) $(LIBSEMANAGE_MAKE_OPTS) DESTDIR=$(STAGING_DIR) install
|
||||||
$(LIBSEMANAGE_PYTHON_INSTALL_STAGING_CMDS)
|
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define LIBSEMANAGE_INSTALL_TARGET_CMDS
|
define LIBSEMANAGE_INSTALL_TARGET_CMDS
|
||||||
$(MAKE) -C $(@D) $(LIBSEMANAGE_MAKE_OPTS) DESTDIR=$(TARGET_DIR) install
|
$(MAKE) -C $(@D) $(LIBSEMANAGE_MAKE_OPTS) DESTDIR=$(TARGET_DIR) install
|
||||||
$(LIBSEMANAGE_PYTHON_INSTALL_TARGET_CMDS)
|
|
||||||
endef
|
endef
|
||||||
|
|
||||||
HOST_LIBSEMANAGE_DEPENDENCIES = host-bison host-libsepol \
|
HOST_LIBSEMANAGE_DEPENDENCIES = host-bison host-libsepol host-libselinux \
|
||||||
host-libselinux host-ustr host-bzip2
|
host-ustr host-bzip2 host-swig
|
||||||
|
HOST_LIBSEMANAGE_MAKE_OPTS += $(HOST_CONFIGURE_OPTS) \
|
||||||
|
SWIG_LIB="$(HOST_DIR)/usr/share/swig/$(SWIG_VERSION)/"
|
||||||
|
|
||||||
|
ifeq ($(BR2_PACKAGE_PYTHON3),y)
|
||||||
|
HOST_LIBSEMANAGE_DEPENDENCIES += host-python3
|
||||||
|
HOST_LIBSEMANAGE_MAKE_OPTS += \
|
||||||
|
PYINC="-I$(HOST_DIR)/usr/include/python$(PYTHON3_VERSION_MAJOR)m/" \
|
||||||
|
PYTHONLIBDIR="-L$(HOST_DIR)/usr/lib/python$(PYTHON3_VERSION_MAJOR)/" \
|
||||||
|
PYLIBVER="python$(PYTHON3_VERSION_MAJOR)"
|
||||||
|
else
|
||||||
|
HOST_LIBSEMANAGE_DEPENDENCIES += host-python
|
||||||
|
HOST_LIBSEMANAGE_MAKE_OPTS += \
|
||||||
|
PYINC="-I$(HOST_DIR)/usr/include/python$(PYTHON_VERSION_MAJOR)/" \
|
||||||
|
PYTHONLIBDIR="-L$(HOST_DIR)/usr/lib/python$(PYTHON_VERSION_MAJOR)/" \
|
||||||
|
PYLIBVER="python$(PYTHON_VERSION_MAJOR)"
|
||||||
|
endif
|
||||||
|
|
||||||
define HOST_LIBSEMANAGE_BUILD_CMDS
|
define HOST_LIBSEMANAGE_BUILD_CMDS
|
||||||
# DESTDIR is needed during the compile to compute library and
|
# DESTDIR is needed during the compile to compute library and
|
||||||
# header paths.
|
# header paths.
|
||||||
$(MAKE) -C $(@D) $(HOST_CONFIGURE_OPTS) DESTDIR=$(HOST_DIR) all
|
$(MAKE) -C $(@D) $(HOST_CONFIGURE_OPTS) DESTDIR=$(HOST_DIR) all
|
||||||
|
$(MAKE) -C $(@D) $(HOST_LIBSEMANAGE_MAKE_OPTS) DESTDIR=$(HOST_DIR) swigify pywrap
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define HOST_LIBSEMANAGE_INSTALL_CMDS
|
define HOST_LIBSEMANAGE_INSTALL_CMDS
|
||||||
$(MAKE) -C $(@D) $(HOST_CONFIGURE_OPTS) DESTDIR=$(HOST_DIR) install
|
$(MAKE) -C $(@D) $(HOST_CONFIGURE_OPTS) DESTDIR=$(HOST_DIR) install
|
||||||
|
$(MAKE) -C $(@D) $(HOST_LIBSEMANAGE_MAKE_OPTS) DESTDIR=$(HOST_DIR) install-pywrap
|
||||||
endef
|
endef
|
||||||
|
|
||||||
$(eval $(generic-package))
|
$(eval $(generic-package))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user