python-netifaces: convert to the Python package infrastructure

Also, remove the "select BR2_PACKAGE_PYTHON_SETUPTOOLS", since
setuptools is a host dependency (needed to built the package), not a
target dependency.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
Thomas Petazzoni 2013-12-11 21:26:54 +01:00 committed by Peter Korsgaard
parent a69b2d3926
commit 8fd5a94562
2 changed files with 2 additions and 18 deletions

View File

@ -1,7 +1,6 @@
config BR2_PACKAGE_PYTHON_NETIFACES
bool "python-netifaces"
depends on BR2_PACKAGE_PYTHON
select BR2_PACKAGE_PYTHON_SETUPTOOLS
help
Portable access to network interfaces from Python.

View File

@ -7,21 +7,6 @@
PYTHON_NETIFACES_VERSION = 0.7
PYTHON_NETIFACES_SOURCE = netifaces-$(PYTHON_NETIFACES_VERSION).tar.gz
PYTHON_NETIFACES_SITE = http://alastairs-place.net/projects/netifaces
PYTHON_NETIFACES_SETUP_TYPE = setuptools
PYTHON_NETIFACES_DEPENDENCIES = python host-python-setuptools host-python-distutilscross
define PYTHON_NETIFACES_BUILD_CMDS
(cd $(@D); \
PYTHONXCPREFIX="$(STAGING_DIR)/usr/" \
LDFLAGS="-L$(STAGING_DIR)/lib -L$(STAGING_DIR)/usr/lib" \
$(HOST_DIR)/usr/bin/python setup.py build -x)
endef
define PYTHON_NETIFACES_INSTALL_TARGET_CMDS
(cd $(@D); \
PYTHONPATH=$(TARGET_DIR)/usr/lib/python$(PYTHON_VERSION_MAJOR)/site-packages \
$(HOST_DIR)/usr/bin/python setup.py install \
--single-version-externally-managed --root=/ --prefix=$(TARGET_DIR)/usr)
endef
$(eval $(generic-package))
$(eval $(python-package))