2013-06-06 01:53:30 +02:00
|
|
|
################################################################################
|
2012-11-07 06:01:21 +01:00
|
|
|
#
|
|
|
|
# python3
|
|
|
|
#
|
2013-06-06 01:53:30 +02:00
|
|
|
################################################################################
|
2013-06-06 01:53:25 +02:00
|
|
|
|
2014-02-18 21:40:01 +01:00
|
|
|
PYTHON3_VERSION_MAJOR = 3.4
|
2014-07-08 12:42:39 +02:00
|
|
|
PYTHON3_VERSION = $(PYTHON3_VERSION_MAJOR).1
|
2014-03-26 23:22:06 +01:00
|
|
|
PYTHON3_SOURCE = Python-$(PYTHON3_VERSION).tar.xz
|
|
|
|
PYTHON3_SITE = http://python.org/ftp/python/$(PYTHON3_VERSION)
|
2012-11-07 06:01:21 +01:00
|
|
|
|
|
|
|
# Python needs itself and a "pgen" program to build itself, both being
|
|
|
|
# provided in the Python sources. So in order to cross-compile Python,
|
|
|
|
# we need to build a host Python first. This host Python is also
|
|
|
|
# installed in $(HOST_DIR), as it is needed when cross-compiling
|
|
|
|
# third-party Python modules.
|
|
|
|
|
|
|
|
HOST_PYTHON3_CONF_OPT += \
|
2014-02-18 21:40:01 +01:00
|
|
|
--without-ensurepip \
|
2012-11-07 06:01:21 +01:00
|
|
|
--without-cxx-main \
|
|
|
|
--disable-sqlite3 \
|
|
|
|
--disable-tk \
|
|
|
|
--with-expat=system \
|
|
|
|
--disable-curses \
|
|
|
|
--disable-codecs-cjk \
|
|
|
|
--disable-nis \
|
2014-02-18 21:40:05 +01:00
|
|
|
--enable-unicodedata \
|
2012-11-07 06:01:21 +01:00
|
|
|
--disable-test-modules \
|
2014-02-18 21:40:01 +01:00
|
|
|
--disable-idle3 \
|
|
|
|
--disable-pyo-build
|
2012-11-07 06:01:21 +01:00
|
|
|
|
2014-03-05 00:29:49 +01:00
|
|
|
# Make sure that LD_LIBRARY_PATH overrides -rpath.
|
|
|
|
# This is needed because libpython may be installed at the same time that
|
|
|
|
# python is called.
|
|
|
|
HOST_PYTHON3_CONF_ENV += \
|
|
|
|
LDFLAGS="$(HOST_LDFLAGS) -Wl,--enable-new-dtags"
|
|
|
|
|
2012-11-07 06:01:21 +01:00
|
|
|
PYTHON3_DEPENDENCIES = host-python3 libffi
|
|
|
|
|
|
|
|
HOST_PYTHON3_DEPENDENCIES = host-expat host-zlib
|
|
|
|
|
|
|
|
PYTHON3_INSTALL_STAGING = YES
|
|
|
|
|
|
|
|
ifeq ($(BR2_PACKAGE_PYTHON3_READLINE),y)
|
|
|
|
PYTHON3_DEPENDENCIES += readline
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(BR2_PACKAGE_PYTHON3_CURSES),y)
|
|
|
|
PYTHON3_DEPENDENCIES += ncurses
|
2013-05-29 10:36:57 +02:00
|
|
|
else
|
|
|
|
PYTHON3_CONF_OPT += --disable-curses
|
2012-11-07 06:01:21 +01:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(BR2_PACKAGE_PYTHON3_PYEXPAT),y)
|
|
|
|
PYTHON3_DEPENDENCIES += expat
|
|
|
|
PYTHON3_CONF_OPT += --with-expat=system
|
|
|
|
else
|
|
|
|
PYTHON3_CONF_OPT += --with-expat=none
|
|
|
|
endif
|
|
|
|
|
2013-01-27 16:38:56 +01:00
|
|
|
ifeq ($(BR2_PACKAGE_PYTHON3_PYC_ONLY),y)
|
|
|
|
PYTHON3_CONF_OPT += --enable-old-stdlib-cache
|
|
|
|
endif
|
|
|
|
|
2014-02-18 21:40:01 +01:00
|
|
|
ifeq ($(BR2_PACKAGE_PYTHON3_PY_ONLY),y)
|
|
|
|
PYTHON3_CONF_OPT += --disable-pyc-build
|
|
|
|
endif
|
|
|
|
|
2012-11-07 06:01:21 +01:00
|
|
|
ifeq ($(BR2_PACKAGE_PYTHON3_SQLITE),y)
|
|
|
|
PYTHON3_DEPENDENCIES += sqlite
|
2013-05-29 10:36:57 +02:00
|
|
|
else
|
|
|
|
PYTHON3_CONF_OPT += --disable-sqlite3
|
2012-11-07 06:01:21 +01:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(BR2_PACKAGE_PYTHON3_SSL),y)
|
2013-05-29 10:36:57 +02:00
|
|
|
PYTHON3_DEPENDENCIES += openssl
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifneq ($(BR2_PACKAGE_PYTHON3_CODECSCJK),y)
|
|
|
|
PYTHON3_CONF_OPT += --disable-codecs-cjk
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifneq ($(BR2_PACKAGE_PYTHON3_UNICODEDATA),y)
|
|
|
|
PYTHON3_CONF_OPT += --disable-unicodedata
|
2012-11-07 06:01:21 +01:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(BR2_PACKAGE_PYTHON3_BZIP2),y)
|
2013-05-29 10:36:57 +02:00
|
|
|
PYTHON3_DEPENDENCIES += bzip2
|
2012-11-07 06:01:21 +01:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(BR2_PACKAGE_PYTHON3_ZLIB),y)
|
|
|
|
PYTHON3_DEPENDENCIES += zlib
|
|
|
|
endif
|
|
|
|
|
|
|
|
PYTHON3_CONF_ENV += \
|
|
|
|
ac_cv_have_long_long_format=yes \
|
|
|
|
ac_cv_file__dev_ptmx=yes \
|
|
|
|
ac_cv_file__dev_ptc=yes \
|
2014-07-09 12:38:59 +02:00
|
|
|
ac_cv_working_tzset=yes
|
2012-11-07 06:01:21 +01:00
|
|
|
|
|
|
|
PYTHON3_CONF_OPT += \
|
2014-02-18 21:40:01 +01:00
|
|
|
--without-ensurepip \
|
2012-11-07 06:01:21 +01:00
|
|
|
--without-cxx-main \
|
|
|
|
--with-system-ffi \
|
|
|
|
--disable-pydoc \
|
|
|
|
--disable-test-modules \
|
|
|
|
--disable-lib2to3 \
|
|
|
|
--disable-tk \
|
|
|
|
--disable-nis \
|
2014-02-18 21:40:01 +01:00
|
|
|
--disable-idle3 \
|
|
|
|
--disable-pyo-build
|
|
|
|
|
|
|
|
# This is needed to make sure the Python build process doesn't try to
|
|
|
|
# regenerate those files with the pgen program. Otherwise, it builds
|
|
|
|
# pgen for the target, and tries to run it on the host.
|
|
|
|
|
|
|
|
define PYTHON3_TOUCH_GRAMMAR_FILES
|
|
|
|
touch $(@D)/Include/graminit.h $(@D)/Python/graminit.c
|
2012-11-07 06:01:21 +01:00
|
|
|
endef
|
|
|
|
|
2014-02-18 21:40:01 +01:00
|
|
|
PYTHON3_POST_PATCH_HOOKS += PYTHON3_TOUCH_GRAMMAR_FILES
|
2012-11-07 06:01:21 +01:00
|
|
|
|
|
|
|
#
|
|
|
|
# Remove useless files. In the config/ directory, only the Makefile
|
|
|
|
# and the pyconfig.h files are needed at runtime.
|
|
|
|
#
|
|
|
|
define PYTHON3_REMOVE_USELESS_FILES
|
2013-06-30 21:29:08 +02:00
|
|
|
rm -f $(TARGET_DIR)/usr/bin/python$(PYTHON3_VERSION_MAJOR)-config
|
|
|
|
rm -f $(TARGET_DIR)/usr/bin/python$(PYTHON3_VERSION_MAJOR)m-config
|
|
|
|
rm -f $(TARGET_DIR)/usr/bin/python3-config
|
2013-07-10 20:39:18 +02:00
|
|
|
rm -f $(TARGET_DIR)/usr/bin/smtpd.py.3
|
2014-02-18 21:40:00 +01:00
|
|
|
for i in `find $(TARGET_DIR)/usr/lib/python$(PYTHON3_VERSION_MAJOR)/config-$(PYTHON3_VERSION_MAJOR)m/ \
|
2012-11-07 06:01:21 +01:00
|
|
|
-type f -not -name pyconfig.h -a -not -name Makefile` ; do \
|
|
|
|
rm -f $$i ; \
|
|
|
|
done
|
|
|
|
endef
|
|
|
|
|
|
|
|
PYTHON3_POST_INSTALL_TARGET_HOOKS += PYTHON3_REMOVE_USELESS_FILES
|
|
|
|
|
2014-02-18 21:40:07 +01:00
|
|
|
#
|
|
|
|
# Make sure libpython gets stripped out on target
|
|
|
|
#
|
|
|
|
define PYTHON3_ENSURE_LIBPYTHON_STRIPPED
|
|
|
|
chmod u+w $(TARGET_DIR)/usr/lib/libpython$(PYTHON3_VERSION_MAJOR)*.so
|
|
|
|
endef
|
|
|
|
|
|
|
|
PYTHON3_POST_INSTALL_TARGET_HOOKS += PYTHON3_ENSURE_LIBPYTHON_STRIPPED
|
|
|
|
|
2012-11-07 06:01:21 +01:00
|
|
|
PYTHON3_AUTORECONF = YES
|
|
|
|
|
2013-01-18 05:06:12 +01:00
|
|
|
define PYTHON3_INSTALL_SYMLINK
|
|
|
|
ln -fs python3 $(TARGET_DIR)/usr/bin/python
|
|
|
|
endef
|
|
|
|
|
|
|
|
ifneq ($(BR2_PACKAGE_PYTHON),y)
|
|
|
|
PYTHON3_POST_INSTALL_TARGET_HOOKS += PYTHON3_INSTALL_SYMLINK
|
|
|
|
endif
|
2013-01-18 05:06:14 +01:00
|
|
|
|
2014-03-05 23:04:41 +01:00
|
|
|
# Some packages may have build scripts requiring python3, whatever is the
|
|
|
|
# python version chosen for the target.
|
|
|
|
# Only install the python symlink in the host tree if python3 is enabled
|
|
|
|
# for the target.
|
|
|
|
ifeq ($(BR2_PACKAGE_PYTHON3),y)
|
2014-02-18 21:39:58 +01:00
|
|
|
define HOST_PYTHON3_INSTALL_SYMLINK
|
|
|
|
ln -fs python3 $(HOST_DIR)/usr/bin/python
|
2014-03-05 23:04:41 +01:00
|
|
|
ln -fs python3-config $(HOST_DIR)/usr/bin/python-config
|
2013-01-18 05:06:14 +01:00
|
|
|
endef
|
|
|
|
|
2014-02-18 21:39:58 +01:00
|
|
|
HOST_PYTHON3_POST_INSTALL_HOOKS += HOST_PYTHON3_INSTALL_SYMLINK
|
2014-03-05 23:04:41 +01:00
|
|
|
endif
|
2013-01-18 05:06:14 +01:00
|
|
|
|
2014-02-18 21:40:02 +01:00
|
|
|
# Provided to other packages
|
2014-04-12 23:03:10 +02:00
|
|
|
PYTHON3_PATH = $(TARGET_DIR)/usr/lib/python$(PYTHON3_VERSION_MAJOR)/sysconfigdata/:$(TARGET_DIR)/usr/lib/python$(PYTHON3_VERSION_MAJOR)/site-packages/
|
2013-01-18 05:06:14 +01:00
|
|
|
|
2012-11-07 06:01:21 +01:00
|
|
|
$(eval $(autotools-package))
|
|
|
|
$(eval $(host-autotools-package))
|