Skip to content

Commit d42b1db

Browse files
committed
feat(stacks): remove asc check
1 parent d8f2cf8 commit d42b1db

1 file changed

Lines changed: 0 additions & 7 deletions

File tree

stacks/python/make.sh

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,12 @@ install-packages \
1212
tk-dev \
1313
uuid-dev
1414

15-
export GPG_KEY=A035C8C19219BA821ECEA86B64E628F8D684696D
1615
export PYTHON_VERSION=${STACK_VERSION}
1716
export PATH=/opt/drycc/python/bin:$PATH
1817

1918
set -eux; \
2019
\
2120
wget -O python.tar.xz "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz"; \
22-
wget -O python.tar.xz.asc "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz.asc"; \
23-
GNUPGHOME="$(mktemp -d)"; export GNUPGHOME; \
24-
gpg --batch --keyserver hkps://keys.openpgp.org --recv-keys "$GPG_KEY"; \
25-
gpg --batch --verify python.tar.xz.asc python.tar.xz; \
26-
command -v gpgconf > /dev/null && gpgconf --kill all || :; \
27-
rm -rf "$GNUPGHOME" python.tar.xz.asc; \
2821
mkdir -p /usr/src/python; \
2922
tar --extract --directory /usr/src/python --strip-components=1 --file python.tar.xz; \
3023
rm python.tar.xz; \

0 commit comments

Comments
 (0)