Skip to content
This repository was archived by the owner on Mar 30, 2019. It is now read-only.

Commit da32c22

Browse files
committed
Added initial cut at Python 3.5.1 support.
1 parent a4be707 commit da32c22

File tree

4 files changed

+6553
-9962
lines changed

4 files changed

+6553
-9962
lines changed

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2014 Russell Keith-Magee.
1+
Copyright (c) 2014-2016 Russell Keith-Magee.
22

33
Permission is hereby granted, free of charge, to any person obtaining a copy
44
of this software and associated documentation files (the "Software"), to deal

Makefile

+5-3
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@
1515
# Current director
1616
PROJECT_DIR=$(shell pwd)
1717

18-
BUILD_NUMBER=4
18+
BUILD_NUMBER=1
1919

2020
# Version of packages that will be compiled by this meta-package
21-
PYTHON_VERSION=3.4.2
21+
PYTHON_VERSION=3.5.1
2222
PYTHON_VER= $(basename $(PYTHON_VERSION))
2323

2424
OPENSSL_VERSION_NUMBER=1.0.2
25-
OPENSSL_REVISION=e
25+
OPENSSL_REVISION=f
2626
OPENSSL_VERSION=$(OPENSSL_VERSION_NUMBER)$(OPENSSL_REVISION)
2727

2828
# Supported OS
@@ -175,6 +175,8 @@ $$(PYTHON_DIR-$1)/Makefile: downloads/Python-$(PYTHON_VERSION).tgz $(PYTHON_HOST
175175
# Apply target Python patches
176176
cd $$(PYTHON_DIR-$1) && patch -p1 <$(PROJECT_DIR)/patch/Python/Python.patch
177177
cp -f $(PROJECT_DIR)/patch/Python/Setup.embedded $$(PYTHON_DIR-$1)/Modules/Setup.embedded
178+
# Copy in the host _freeze_importlib
179+
cp $(PYTHON_DIR-host)/Programs/_freeze_importlib $$(PYTHON_DIR-$1)/iOS/_freeze_importlib
178180
# Configure target Python
179181
cd $$(PYTHON_DIR-$1) && PATH=$(PROJECT_DIR)/$(PYTHON_DIR-host)/dist/bin:$(PATH) ./configure \
180182
CC="$$(CC-$1)" LD="$$(CC-$1)" \

0 commit comments

Comments
 (0)