Skip to content

Commit f07d7a5

Browse files
committed
Merge PRs ansible#734 and ansible#636 into devel
2 parents 468d346 + 016c13a commit f07d7a5

File tree

5 files changed

+13
-7
lines changed

5 files changed

+13
-7
lines changed

.github/workflows/build-manylinux-container-images.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
- _2_28
5151

5252
env:
53-
LIBSSH_VERSION: 0.9.6
53+
LIBSSH_VERSION: 0.11.1
5454
PYPA_MANYLINUX_TAG: >-
5555
manylinux${{ matrix.YEAR }}_${{ matrix.IMAGE.ARCH }}
5656
FULL_IMAGE_NAME: >-

build-scripts/manylinux-container-image/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
ARG RELEASE
22
FROM quay.io/pypa/${RELEASE}
33
ARG RELEASE
4-
ARG LIBSSH_VERSION=0.9.6
4+
ARG LIBSSH_VERSION=0.11.1
55
MAINTAINER Python Cryptographic Authority
66
WORKDIR /root
77

build-scripts/manylinux-container-image/install_libffi.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ MY_DIR=$(dirname "${BASH_SOURCE[0]}")
99
# Get build utilities
1010
source $MY_DIR/build_utils.sh
1111

12-
LIBFFI_SHA256="72fba7922703ddfa7a028d513ac15a85c8d54c8d67f55fa5a4802885dc652056"
13-
LIBFFI_VERSION="3.3"
12+
LIBFFI_SHA256="bc9842a18898bfacb0ed1252c4febcc7e78fa139fd27fdc7a3e30d9d9356119b"
13+
LIBFFI_VERSION="3.4.8"
1414

15-
fetch_source "libffi_${LIBFFI_VERSION}.orig.tar.gz" "https://mirrors.ocf.berkeley.edu/debian/pool/main/libf/libffi"
16-
check_sha256sum "libffi_${LIBFFI_VERSION}.orig.tar.gz" ${LIBFFI_SHA256}
17-
tar zxf libffi_${LIBFFI_VERSION}.orig.tar.gz
15+
fetch_source "libffi-${LIBFFI_VERSION}.tar.gz" "https://github.com/libffi/libffi/releases/download/v${LIBFFI_VERSION}/"
16+
check_sha256sum "libffi-${LIBFFI_VERSION}.tar.gz" ${LIBFFI_SHA256}
17+
tar zxf libffi-${LIBFFI_VERSION}.tar.gz
1818

1919
pushd libffi*/
2020
if [[ "$1" =~ '^manylinux1_.*$' ]]; then
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Updated the version of ``libssh`` to the latest release v0.11.1
2+
in the cached ``manylinux`` build environment container images
3+
-- by :user:`Jakuje`.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Updated the pre-built ``libffi`` version to 3.4.8 in the
2+
cached ``manylinux`` build environment container images
3+
-- by :user:`Jakuje`.

0 commit comments

Comments
 (0)