Skip to content

Commit 532b36f

Browse files
committed
Merge pull request heroku#194 from thruflo/secure-urls
http: update all external links to use secure protocol.
2 parents 4b57be0 + abe3401 commit 532b36f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+60
-60
lines changed

bin/steps/cryptography

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
# This script is invoked by [`bin/compile`](/).
1111

1212
# The location of the pre-compiled cryptography binary.
13-
VENDORED_LIBFFI="http://lang-python.s3.amazonaws.com/$STACK/libraries/vendor/libffi.tar.gz"
13+
VENDORED_LIBFFI="https://lang-python.s3.amazonaws.com/$STACK/libraries/vendor/libffi.tar.gz"
1414

1515
PKG_CONFIG_PATH="/app/.heroku/vendor/lib/pkgconfig:$PKG_CONFIG_PATH"
1616

bin/steps/pylibmc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
# This script is invoked by [`bin/compile`](/).
1111

1212
# The location of the pre-compiled libmemcached binary.
13-
VENDORED_MEMCACHED="http://lang-python.s3.amazonaws.com/$STACK/libraries/vendor/libmemcache.tar.gz"
13+
VENDORED_MEMCACHED="https://lang-python.s3.amazonaws.com/$STACK/libraries/vendor/libmemcache.tar.gz"
1414

1515
# Syntax sugar.
1616
source $BIN_DIR/utils

bin/steps/python

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ if [ ! "$SKIP_INSTALL" ]; then
2929
# Prepare destination directory.
3030
mkdir -p .heroku/python
3131

32-
curl http://lang-python.s3.amazonaws.com/$STACK/runtimes/$PYTHON_VERSION.tar.gz -s | tar zxv -C .heroku/python &> /dev/null
32+
curl https://lang-python.s3.amazonaws.com/$STACK/runtimes/$PYTHON_VERSION.tar.gz -s | tar zxv -C .heroku/python &> /dev/null
3333
if [[ $? != 0 ]] ; then
3434
puts-warn "Requested runtime ($PYTHON_VERSION) is not available for this stack ($STACK)."
3535
puts-warn "Aborting. More info: https://devcenter.heroku.com/articles/python-support"

builds/libraries/autoconf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ OUT_PREFIX=$1
66
echo "Building autoconf..."
77

88

9-
SOURCE_TARBALL='http://ftp.gnu.org/gnu/autoconf/autoconf-2.68.tar.gz'
9+
SOURCE_TARBALL='https://ftp.gnu.org/gnu/autoconf/autoconf-2.68.tar.gz'
1010
curl -L $SOURCE_TARBALL | tar xz
1111

1212
cd autoconf-2.68

builds/libraries/libffi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ hash -r
1010

1111
echo "Building libffi..."
1212

13-
SOURCE_TARBALL='http://cl.ly/2s1t1u3v0N0I/download/libffi-3.1.tar'
13+
SOURCE_TARBALL='https://cl.ly/2s1t1u3v0N0I/download/libffi-3.1.tar'
1414

1515
curl -L $SOURCE_TARBALL | tar x
1616

builds/libraries/sqlite

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ OUT_PREFIX=$1
66
echo "Building SQLite..."
77

88

9-
SOURCE_TARBALL='http://www.sqlite.org/sqlite-autoconf-3070900.tar.gz'
9+
SOURCE_TARBALL='https://www.sqlite.org/sqlite-autoconf-3070900.tar.gz'
1010

1111
curl $SOURCE_TARBALL | tar xz
1212
# jx

builds/runtimes/python-2.4.4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ OUT_PREFIX=$1
88
unset LANG PYTHONHOME PYTHONPATH
99

1010
echo "Building Python..."
11-
SOURCE_TARBALL='http://python.org/ftp/python/2.4.4/Python-2.4.4.tgz'
11+
SOURCE_TARBALL='https://python.org/ftp/python/2.4.4/Python-2.4.4.tgz'
1212
curl -L $SOURCE_TARBALL | tar xz
1313
mv Python-2.4.4 src
1414
cd src

builds/runtimes/python-2.4.5

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ OUT_PREFIX=$1
88
unset LANG PYTHONHOME PYTHONPATH
99

1010
echo "Building Python..."
11-
SOURCE_TARBALL='http://python.org/ftp/python/2.4.5/Python-2.4.5.tgz'
11+
SOURCE_TARBALL='https://python.org/ftp/python/2.4.5/Python-2.4.5.tgz'
1212
curl -L $SOURCE_TARBALL | tar xz
1313
mv Python-2.4.5 src
1414
cd src

builds/runtimes/python-2.4.6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ OUT_PREFIX=$1
88
unset LANG PYTHONHOME PYTHONPATH
99

1010
echo "Building Python..."
11-
SOURCE_TARBALL='http://python.org/ftp/python/2.4.6/Python-2.4.6.tgz'
11+
SOURCE_TARBALL='https://python.org/ftp/python/2.4.6/Python-2.4.6.tgz'
1212
curl -L $SOURCE_TARBALL | tar xz
1313
mv Python-2.4.6 src
1414
cd src

builds/runtimes/python-2.5.0

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ OUT_PREFIX=$1
88
unset LANG PYTHONHOME PYTHONPATH
99

1010
echo "Building Python..."
11-
SOURCE_TARBALL='http://python.org/ftp/python/2.5/Python-2.5.tgz'
11+
SOURCE_TARBALL='https://python.org/ftp/python/2.5/Python-2.5.tgz'
1212
curl -L $SOURCE_TARBALL | tar xz
1313
mv Python-2.5 src
1414
cd src

0 commit comments

Comments
 (0)