From c8e8aae57916703b208a51d72a8259232f9b6693 Mon Sep 17 00:00:00 2001 From: Alexandru Ardelean Date: Thu, 14 Apr 2016 11:54:40 +0300 Subject: [PATCH] python: change $(STAGING_DIR)/host to $(STAGING_DIR_HOST) It seems that this can become an issue. Found when building python3-setuptools from packages/trunk in openwrt/15.05. python3-setuptools is not in packages/for-15.05 Signed-off-by: Alexandru Ardelean --- lang/python/Makefile | 18 +++++++++--------- lang/python/files/python-host.mk | 8 ++++---- lang/python/files/python-package-codecs.mk | 2 +- lang/python/files/python-package-compiler.mk | 2 +- lang/python/files/python-package-ctypes.mk | 2 +- lang/python/files/python-package-db.mk | 2 +- lang/python/files/python-package-decimal.mk | 2 +- lang/python/files/python-package-dev.mk | 2 +- lang/python/files/python-package-distutils.mk | 2 +- lang/python/files/python-package-email.mk | 2 +- lang/python/files/python-package-gdbm.mk | 2 +- lang/python/files/python-package-lib2to3.mk | 2 +- lang/python/files/python-package-logging.mk | 2 +- .../files/python-package-multiprocessing.mk | 2 +- lang/python/files/python-package-ncurses.mk | 2 +- lang/python/files/python-package-openssl.mk | 2 +- lang/python/files/python-package-pydoc.mk | 2 +- lang/python/files/python-package-sqlite3.mk | 2 +- lang/python/files/python-package-unittest.mk | 2 +- lang/python/files/python-package-xml.mk | 2 +- 20 files changed, 31 insertions(+), 31 deletions(-) diff --git a/lang/python/Makefile b/lang/python/Makefile index 63af64de5b..56e2716181 100644 --- a/lang/python/Makefile +++ b/lang/python/Makefile @@ -12,7 +12,7 @@ include ./files/python-package.mk PKG_NAME:=python PKG_VERSION:=$(PYTHON_VERSION).$(PYTHON_VERSION_MICRO) -PKG_RELEASE:=6 +PKG_RELEASE:=7 PKG_SOURCE:=Python-$(PKG_VERSION).tar.xz PKG_SOURCE_URL:=https://www.python.org/ftp/python/$(PKG_VERSION) @@ -144,13 +144,13 @@ define Build/InstallDev $(PKG_INSTALL_DIR)/usr/include/python$(PYTHON_VERSION) \ $(1)/usr/include/ $(CP) \ - $(STAGING_DIR)/host/lib/python$(PYTHON_VERSION) \ + $(STAGING_DIR_HOST)/lib/python$(PYTHON_VERSION) \ $(PKG_INSTALL_DIR)/usr/lib/libpython$(PYTHON_VERSION).so* \ $(1)/usr/lib/ $(CP) \ - $(STAGING_DIR)/host/lib/pkgconfig/python.pc \ - $(STAGING_DIR)/host/lib/pkgconfig/python2.pc \ - $(STAGING_DIR)/host/lib/pkgconfig/python-$(PYTHON_VERSION).pc \ + $(STAGING_DIR_HOST)/lib/pkgconfig/python.pc \ + $(STAGING_DIR_HOST)/lib/pkgconfig/python2.pc \ + $(STAGING_DIR_HOST)/lib/pkgconfig/python-$(PYTHON_VERSION).pc \ $(1)/usr/lib/pkgconfig $(CP) \ $(PKG_INSTALL_DIR)/usr/lib/python$(PYTHON_VERSION)/config \ @@ -221,16 +221,16 @@ HOST_CONFIGURE_ARGS+= \ --without-cxx-main \ --without-pymalloc \ --with-threads \ - --with-system-expat=$(STAGING_DIR)/host \ - --with-system-ffi="$(STAGING_DIR)/host" \ + --with-system-expat="$(STAGING_DIR_HOST)" \ + --with-system-ffi="$(STAGING_DIR_HOST)" \ --with-ensurepip=upgrade \ CONFIG_SITE= \ CFLAGS="$(HOST_CFLAGS)" define Host/Install - $(INSTALL_DIR) $(STAGING_DIR)/host/bin/ + $(INSTALL_DIR) $(STAGING_DIR_HOST)/bin/ $(MAKE) -C $(HOST_BUILD_DIR) install - $(INSTALL_BIN) $(HOST_BUILD_DIR)/Parser/pgen $(STAGING_DIR)/host/bin/pgen2 + $(INSTALL_BIN) $(HOST_BUILD_DIR)/Parser/pgen $(STAGING_DIR_HOST)/bin/pgen2 endef $(eval $(call HostBuild)) diff --git a/lang/python/files/python-host.mk b/lang/python/files/python-host.mk index 8736d29ad2..671189c32e 100644 --- a/lang/python/files/python-host.mk +++ b/lang/python/files/python-host.mk @@ -1,11 +1,11 @@ # -# Copyright (C) 2015-2016 OpenWrt.org +# Copyright (C) 2016-2016 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. # -HOST_PYTHON_DIR:=$(STAGING_DIR)/host +HOST_PYTHON_DIR:=$(STAGING_DIR_HOST) HOST_PYTHON_INC_DIR:=$(HOST_PYTHON_DIR)/include/python$(PYTHON_VERSION) HOST_PYTHON_LIB_DIR:=$(HOST_PYTHON_DIR)/lib/python$(PYTHON_VERSION) @@ -13,7 +13,7 @@ HOST_PYTHON_PKG_DIR:=/lib/python$(PYTHON_VERSION)/site-packages HOST_PYTHON_BIN:=$(HOST_PYTHON_DIR)/bin/python$(PYTHON_VERSION) -HOST_PYTHONPATH:=$(HOST_PYTHON_LIB_DIR):$(STAGING_DIR)/host/$(HOST_PYTHON_PKG_DIR) +HOST_PYTHONPATH:=$(HOST_PYTHON_LIB_DIR):$(STAGING_DIR_HOST)/$(HOST_PYTHON_PKG_DIR) define HostPython if [ "$(strip $(3))" == "HOST" ]; then \ @@ -44,7 +44,7 @@ define Build/Compile/HostPyMod LDSHARED="$(HOSTCC) -shared" \ CFLAGS="$(HOST_CFLAGS)" \ CPPFLAGS="$(HOST_CPPFLAGS) -I$(HOST_PYTHON_INC_DIR)" \ - LDFLAGS="$(HOST_LDFLAGS) -lpython$(PYTHON_VERSION) -Wl$(comma)-rpath=$(STAGING_DIR)/host/lib" \ + LDFLAGS="$(HOST_LDFLAGS) -lpython$(PYTHON_VERSION) -Wl$(comma)-rpath=$(STAGING_DIR_HOST)/lib" \ _PYTHON_HOST_PLATFORM=linux2 \ $(3) \ , \ diff --git a/lang/python/files/python-package-codecs.mk b/lang/python/files/python-package-codecs.mk index d6e183500e..7d3c615f32 100644 --- a/lang/python/files/python-package-codecs.mk +++ b/lang/python/files/python-package-codecs.mk @@ -1,5 +1,5 @@ # -# Copyright (C) 2006-2015 OpenWrt.org +# Copyright (C) 2006-2016 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. diff --git a/lang/python/files/python-package-compiler.mk b/lang/python/files/python-package-compiler.mk index fbe8bf2e60..c840ce103e 100644 --- a/lang/python/files/python-package-compiler.mk +++ b/lang/python/files/python-package-compiler.mk @@ -1,5 +1,5 @@ # -# Copyright (C) 2006-2015 OpenWrt.org +# Copyright (C) 2006-2016 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. diff --git a/lang/python/files/python-package-ctypes.mk b/lang/python/files/python-package-ctypes.mk index 66b3033106..5c34b7a7c3 100644 --- a/lang/python/files/python-package-ctypes.mk +++ b/lang/python/files/python-package-ctypes.mk @@ -1,5 +1,5 @@ # -# Copyright (C) 2006-2015 OpenWrt.org +# Copyright (C) 2006-2016 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. diff --git a/lang/python/files/python-package-db.mk b/lang/python/files/python-package-db.mk index 26f35d882d..a257820a3d 100644 --- a/lang/python/files/python-package-db.mk +++ b/lang/python/files/python-package-db.mk @@ -1,5 +1,5 @@ # -# Copyright (C) 2006-2015 OpenWrt.org +# Copyright (C) 2006-2016 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. diff --git a/lang/python/files/python-package-decimal.mk b/lang/python/files/python-package-decimal.mk index 33e3a21d23..578486d868 100644 --- a/lang/python/files/python-package-decimal.mk +++ b/lang/python/files/python-package-decimal.mk @@ -1,5 +1,5 @@ # -# Copyright (C) 2006-2015 OpenWrt.org +# Copyright (C) 2006-2016 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. diff --git a/lang/python/files/python-package-dev.mk b/lang/python/files/python-package-dev.mk index 2f807b2830..6a2b942f4f 100644 --- a/lang/python/files/python-package-dev.mk +++ b/lang/python/files/python-package-dev.mk @@ -1,5 +1,5 @@ # -# Copyright (C) 2006-2015 OpenWrt.org +# Copyright (C) 2006-2016 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. diff --git a/lang/python/files/python-package-distutils.mk b/lang/python/files/python-package-distutils.mk index f5119fac36..a139ddba07 100644 --- a/lang/python/files/python-package-distutils.mk +++ b/lang/python/files/python-package-distutils.mk @@ -1,5 +1,5 @@ # -# Copyright (C) 2006-2015 OpenWrt.org +# Copyright (C) 2006-2016 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. diff --git a/lang/python/files/python-package-email.mk b/lang/python/files/python-package-email.mk index 51fa8d12a0..8c15583dc6 100644 --- a/lang/python/files/python-package-email.mk +++ b/lang/python/files/python-package-email.mk @@ -1,5 +1,5 @@ # -# Copyright (C) 2006-2015 OpenWrt.org +# Copyright (C) 2006-2016 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. diff --git a/lang/python/files/python-package-gdbm.mk b/lang/python/files/python-package-gdbm.mk index 8e0b16f9ca..23c7a293cd 100644 --- a/lang/python/files/python-package-gdbm.mk +++ b/lang/python/files/python-package-gdbm.mk @@ -1,5 +1,5 @@ # -# Copyright (C) 2006-2015 OpenWrt.org +# Copyright (C) 2006-2016 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. diff --git a/lang/python/files/python-package-lib2to3.mk b/lang/python/files/python-package-lib2to3.mk index 5d6942d65d..925cfe2041 100644 --- a/lang/python/files/python-package-lib2to3.mk +++ b/lang/python/files/python-package-lib2to3.mk @@ -1,5 +1,5 @@ # -# Copyright (C) 2006-2015 OpenWrt.org +# Copyright (C) 2006-2016 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. diff --git a/lang/python/files/python-package-logging.mk b/lang/python/files/python-package-logging.mk index f45de35dc0..efef5314a8 100644 --- a/lang/python/files/python-package-logging.mk +++ b/lang/python/files/python-package-logging.mk @@ -1,5 +1,5 @@ # -# Copyright (C) 2006-2015 OpenWrt.org +# Copyright (C) 2006-2016 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. diff --git a/lang/python/files/python-package-multiprocessing.mk b/lang/python/files/python-package-multiprocessing.mk index 2a9f5b185a..ccb55f59b7 100644 --- a/lang/python/files/python-package-multiprocessing.mk +++ b/lang/python/files/python-package-multiprocessing.mk @@ -1,5 +1,5 @@ # -# Copyright (C) 2006-2015 OpenWrt.org +# Copyright (C) 2006-2016 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. diff --git a/lang/python/files/python-package-ncurses.mk b/lang/python/files/python-package-ncurses.mk index bab9415593..d952b5034f 100644 --- a/lang/python/files/python-package-ncurses.mk +++ b/lang/python/files/python-package-ncurses.mk @@ -1,5 +1,5 @@ # -# Copyright (C) 2006-2015 OpenWrt.org +# Copyright (C) 2006-2016 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. diff --git a/lang/python/files/python-package-openssl.mk b/lang/python/files/python-package-openssl.mk index 4d897eb812..dbf6fe1807 100644 --- a/lang/python/files/python-package-openssl.mk +++ b/lang/python/files/python-package-openssl.mk @@ -1,5 +1,5 @@ # -# Copyright (C) 2006-2015 OpenWrt.org +# Copyright (C) 2006-2016 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. diff --git a/lang/python/files/python-package-pydoc.mk b/lang/python/files/python-package-pydoc.mk index ca27f9b36b..1e3c385296 100644 --- a/lang/python/files/python-package-pydoc.mk +++ b/lang/python/files/python-package-pydoc.mk @@ -1,5 +1,5 @@ # -# Copyright (C) 2006-2015 OpenWrt.org +# Copyright (C) 2006-2016 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. diff --git a/lang/python/files/python-package-sqlite3.mk b/lang/python/files/python-package-sqlite3.mk index c5abb122e7..22a6fbcd26 100644 --- a/lang/python/files/python-package-sqlite3.mk +++ b/lang/python/files/python-package-sqlite3.mk @@ -1,5 +1,5 @@ # -# Copyright (C) 2006-2015 OpenWrt.org +# Copyright (C) 2006-2016 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. diff --git a/lang/python/files/python-package-unittest.mk b/lang/python/files/python-package-unittest.mk index 6e1ab552d8..3c93f5136d 100644 --- a/lang/python/files/python-package-unittest.mk +++ b/lang/python/files/python-package-unittest.mk @@ -1,5 +1,5 @@ # -# Copyright (C) 2006-2015 OpenWrt.org +# Copyright (C) 2006-2016 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. diff --git a/lang/python/files/python-package-xml.mk b/lang/python/files/python-package-xml.mk index bb82f01708..28e734ea4d 100644 --- a/lang/python/files/python-package-xml.mk +++ b/lang/python/files/python-package-xml.mk @@ -1,5 +1,5 @@ # -# Copyright (C) 2006-2015 OpenWrt.org +# Copyright (C) 2006-2016 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. -- 2.30.2