diff --git a/lang/python/Makefile b/lang/python3/Makefile similarity index 93% rename from lang/python/Makefile rename to lang/python3/Makefile index 51268773f..8edc19d18 100644 --- a/lang/python/Makefile +++ b/lang/python3/Makefile @@ -10,7 +10,7 @@ include $(TOPDIR)/rules.mk # The file included below defines PYTHON_VERSION -include $(if $(DUMP),,./files/python-package.mk) -PKG_NAME:=python +PKG_NAME:=python3 PKG_RELEASE:=1 PKG_VERSION:=$(PYTHON_VERSION).$(PYTHON_VERSION_MICRO) @@ -28,12 +28,12 @@ HOST_BUILD_PARALLEL:=1 PKG_BUILD_DIR:=$(BUILD_DIR)/Python-$(PKG_VERSION) HOST_BUILD_DIR:=$(BUILD_DIR_HOST)/Python-$(PKG_VERSION) -PKG_BUILD_DEPENDS:=python/host +PKG_BUILD_DEPENDS:=python3/host include $(INCLUDE_DIR)/host-build.mk include $(INCLUDE_DIR)/package.mk -define Package/python/Default +define Package/python3/Default SUBMENU:=Python SECTION:=lang CATEGORY:=Languages @@ -42,7 +42,7 @@ define Package/python/Default MAINTAINER:=Alexandru Ardelean endef -define Package/python/Default/description +define Package/python3/Default/description Python is a dynamic object-oriented programming language that can be used for many kinds of software development. It offers strong support for integration with other languages and tools, comes with extensive standard @@ -51,13 +51,13 @@ define Package/python/Default/description the development of higher quality, more maintainable code. endef -define Package/python -$(call Package/python/Default) +define Package/python3 +$(call Package/python3/Default) DEPENDS:=+libpthread +zlib +libffi endef -define Package/python/description -$(call Package/python/Default/description) +define Package/python3/description +$(call Package/python3/Default/description) . This package contains only the interpreter and the bare minimum for the interpreter to start. endef @@ -137,7 +137,7 @@ define Build/InstallDev ln -sf python$(PYTHON_VERSION)-config python-config;) endef -define PyPackage/python/filespec +define PyPackage/python3/filespec +|/usr/bin/python$(PYTHON_VERSION) +|/usr/lib/python$(PYTHON_VERSION)/encodings +|/usr/lib/python$(PYTHON_VERSION)/_collections_abc.py @@ -155,7 +155,7 @@ define PyPackage/python/filespec +|/usr/lib/python$(PYTHON_VERSION)/stat.py endef -define PyPackage/python/install +define PyPackage/python3/install # Adding the lib-dynload folder (even just empty) suppresses 2 warnings when starting Python $(INSTALL_DIR) $(1)/usr/lib/python$(PYTHON_VERSION)/lib-dynload/ ln -sf python$(PYTHON_VERSION) $(1)/usr/bin/python @@ -194,6 +194,6 @@ endef $(eval $(call HostBuild)) -$(eval $(call PyPackage,python)) +$(eval $(call PyPackage,python3)) -$(eval $(call BuildPackage,python)) +$(eval $(call BuildPackage,python3)) diff --git a/lang/python/files/config.site b/lang/python3/files/config.site similarity index 100% rename from lang/python/files/config.site rename to lang/python3/files/config.site diff --git a/lang/python/files/python-package.mk b/lang/python3/files/python3-package.mk similarity index 100% rename from lang/python/files/python-package.mk rename to lang/python3/files/python3-package.mk diff --git a/lang/python/patches/110-enable-zlib.patch b/lang/python3/patches/110-enable-zlib.patch similarity index 100% rename from lang/python/patches/110-enable-zlib.patch rename to lang/python3/patches/110-enable-zlib.patch