diff options
author | Alexandru Ardelean <ardeleanalex@gmail.com> | 2014-11-09 11:09:10 +0200 |
---|---|---|
committer | Alexandru Ardelean <ardeleanalex@gmail.com> | 2014-11-09 11:09:10 +0200 |
commit | cbc39a176fc489e3dded67c7f32cbc5c56bafe46 (patch) | |
tree | 215c0053d70f6508abc550d02e8f445d6928de12 /lang/python | |
parent | 5cf781f9983c33714ae57033ec204d1d22180093 (diff) |
python: final switch
Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
Diffstat (limited to 'lang/python')
-rw-r--r-- | lang/python/Makefile | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/lang/python/Makefile b/lang/python/Makefile index bbd0197fb..a92a31270 100644 --- a/lang/python/Makefile +++ b/lang/python/Makefile @@ -51,23 +51,23 @@ define Package/python/Default/description the development of higher quality, more maintainable code. endef -define Package/python +define Package/python-base $(call Package/python/Default) + TITLE:=Python $(PYTHON_VERSION) interpreter DEPENDS:=+libpthread +zlib +libffi +libopenssl endef -define Package/python/description +define Package/python-base/description This package contains only the interpreter and the bare minimum for the interpreter to start. endef -define Package/python-full +define Package/python $(call Package/python/Default) - TITLE:=Full install (minus a few libs) - DEPENDS:=@PACKAGE_python +PACKAGE_python:python +libncursesw + DEPENDS:=+python-base +libncursesw endef -define Package/python-full/description +define Package/python/description This package contains the (almost) full Python install. endef @@ -110,7 +110,7 @@ define Build/InstallDev $(INSTALL_DATA) ./files/python-package.mk $(STAGING_DIR)/mk/ endef -define PyPackage/python/filespec +define PyPackage/python-base/filespec +|/usr/bin/python$(PYTHON_VERSION) +|/usr/lib/python$(PYTHON_VERSION)/_abcoll.py +|/usr/lib/python$(PYTHON_VERSION)/_sysconfigdata.py @@ -134,7 +134,7 @@ define PyPackage/python/filespec +|/usr/lib/python$(PYTHON_VERSION)/warnings.py endef -define PyPackage/python-full/filespec +define PyPackage/python/filespec +|/usr/lib/python$(PYTHON_VERSION) -|/usr/lib/python$(PYTHON_VERSION)/config -|/usr/lib/python$(PYTHON_VERSION)/distutils @@ -149,7 +149,7 @@ define PyPackage/python-full/filespec -|/usr/lib/python$(PYTHON_VERSION)/*/tests endef -define PyPackage/python/install +define PyPackage/python-base/install $(LN) python$(PYTHON_VERSION) $(1)/usr/bin/python $(LN) python$(PYTHON_VERSION) $(1)/usr/bin/python2 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libpython$(PYTHON_VERSION).so* $(1)/usr/lib/ @@ -169,8 +169,8 @@ endef $(eval $(call HostBuild)) +$(eval $(call PyPackage,python-base)) $(eval $(call PyPackage,python)) -$(eval $(call PyPackage,python-full)) +$(eval $(call BuildPackage,python-base)) $(eval $(call BuildPackage,python)) -$(eval $(call BuildPackage,python-full)) |