Skip to content

Commit ce48717

Browse files
committed
Added initial cut at Python 3.5.1 support.
1 parent af3bfc4 commit ce48717

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
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

Lines changed: 5 additions & 3 deletions
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)" \

patch/Python/Setup.embedded

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@ resource resource.c
6060
select selectmodule.c
6161
syslog syslogmodule.c
6262
termios termios.c
63-
time timemodule.c
6463
unicodedata unicodedata.c
6564
zlib zlibmodule.c -I$(prefix)/include -lz
6665

0 commit comments

Comments
 (0)