summaryrefslogtreecommitdiffhomepage
path: root/vars/python2_host.vars
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2018-12-10 09:19:00 -0500
committerLucio Andrés Illanes Albornoz <lucio@lucioillanes.de>2018-12-10 14:55:32 +0000
commit4397349ecf7f970ace089238c42e45cfca7c952d (patch)
treedc313ab18de8084c69510bacbc4826793a17bf8d /vars/python2_host.vars
parenta435c8698427d5b62d9cbd8302a857b4830015d8 (diff)
downloadmidipix_build-4397349ecf7f970ace089238c42e45cfca7c952d.tar.bz2
midipix_build-4397349ecf7f970ace089238c42e45cfca7c952d.tar.xz
python2_host: use sbpython2 to build an --all-static python2.
Signed-off-by: Lucio Andrés Illanes Albornoz <lucio@lucioillanes.de>
Diffstat (limited to 'vars/python2_host.vars')
-rw-r--r--vars/python2_host.vars17
1 files changed, 4 insertions, 13 deletions
diff --git a/vars/python2_host.vars b/vars/python2_host.vars
index 6bdfa9e1..99f79636 100644
--- a/vars/python2_host.vars
+++ b/vars/python2_host.vars
@@ -2,19 +2,10 @@
# set -o errexit -o noglob are assumed.
#
-pkg_python2_host_clean() {
- return 0;
-};
-
-pkg_python2_host_install_make_post() {
- if ex_rtl_fileop test "${PKG_DESTDIR}/bin/python2.7.wrapper"; then
- ex_rtl_fileop rm "${PKG_DESTDIR}/bin/python2.7.wrapper";
- fi;
- cat > "${PKG_DESTDIR}/bin/python2.7.wrapper" <<EOF
-#!/bin/sh
-env LD_LIBRARY_PATH="${PREFIX}/lib" "${PREFIX}/bin/python2.7" "\${@}";
-EOF
- chmod +x "${PKG_DESTDIR}/bin/python2.7.wrapper";
+pkg_python2_host_fetch_git() {
+ ex_rtl_fileop rm "${PKG_BASE_DIR}/sbpython2";
+ ex_rtl_fetch_urls_git "${PKG_BASE_DIR}/build" "sbpython2=${DEFAULT_GITROOT}/python/sbpython2@main";
+ ex_pkg_state_set "${PKG_NAME}" fetch -extract;
};
# vim:filetype=sh