Skip to content

Commit b06198b

Browse files
committed
Rename python-portable -> python so this project works automagically with Briefcase.
1 parent 407c9ae commit b06198b

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.travis.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,21 +25,21 @@ script:
2525

2626
# Compress and upload it before touching it
2727
- cd "$PROJECT_DIR"
28-
- tar czf upload/python3-full.tar.gz python-portable/
28+
- tar czf upload/python3-full.tar.gz python/
2929
- curl --upload-file ./upload/python3-full.tar.gz https://transfer.sh/python3-full.tar.gz | tee -a output_urls.txt && echo "" >> output_urls.txt
3030

3131
# Check built Python
3232
- cd "$PROJECT_DIR"
33-
- du -sk python-portable/
34-
- cd python-portable
33+
- du -sk python/
34+
- cd python
3535
- otool -L bin/python3.6
3636
- ./bin/python3.6 -c 'import ssl; print(ssl.OPENSSL_VERSION)'
3737
- ./bin/python3.6 -m pip --version
3838

3939
# Reduce stand-alone Python and upload it
4040
- cd "$PROJECT_DIR"
41-
- python process_python_build.py "$PROJECT_DIR/python-portable"
42-
- tar czf upload/python3-reduced.tar.gz python-portable/
41+
- python process_python_build.py "$PROJECT_DIR/python"
42+
- tar czf upload/python3-reduced.tar.gz python/
4343
- curl --upload-file ./upload/python3-reduced.tar.gz https://transfer.sh/python3-reduced.tar.gz | tee -a output_urls.txt && echo "" >> output_urls.txt
4444

4545
# Print all uploaded files URLs

build_python.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ tar -zxvf Python-3.6.5.tgz &> /dev/null
1919

2020
cd Python-3.6.5
2121
large_echo "Configure Python"
22-
./configure MACOSX_DEPLOYMENT_TARGET=10.9 CPPFLAGS="-I$OPENSSL_ROOT/include" LDFLAGS="-L$OPENSSL_ROOT/lib" --prefix="$CURRENT_DIR/python-portable"
22+
./configure MACOSX_DEPLOYMENT_TARGET=10.9 CPPFLAGS="-I$OPENSSL_ROOT/include" LDFLAGS="-L$OPENSSL_ROOT/lib" --prefix="$CURRENT_DIR/python"
2323
large_echo "Build Python"
2424
make altinstall

0 commit comments

Comments
 (0)