[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [xen staging] build: Drop openssl as a build dependency
commit cb3a371469a266ed0b4ac4aef8822cf3d08c51df Author: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> AuthorDate: Wed Jul 3 20:25:22 2024 +0100 Commit: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> CommitDate: Tue Jul 9 18:10:24 2024 +0100 build: Drop openssl as a build dependency The final user was blktap1, removed in Xen 4.6. Fixes: f6bcc035084a ("tools: remove blktap1") Signed-off-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> Acked-by: Roger Pau Monné <roger.pau@xxxxxxxxxx> Release-Acked-by: Oleksii Kurochko <oleksii.kurochko@xxxxxxxxx> --- README | 1 - automation/build/debian/bookworm-arm64v8.dockerfile | 1 - automation/build/debian/bookworm-i386.dockerfile | 1 - automation/build/debian/bookworm.dockerfile | 1 - automation/build/debian/jessie-i386.dockerfile | 1 - automation/build/debian/jessie.dockerfile | 1 - automation/build/debian/stretch-i386.dockerfile | 1 - automation/build/debian/stretch.dockerfile | 1 - automation/build/fedora/29.dockerfile | 1 - automation/build/ubuntu/bionic.dockerfile | 1 - automation/build/ubuntu/focal.dockerfile | 1 - automation/build/ubuntu/trusty.dockerfile | 1 - automation/build/ubuntu/xenial.dockerfile | 1 - automation/tests-artifacts/kernel/5.19-arm64v8.dockerfile | 1 - automation/tests-artifacts/kernel/6.1.19.dockerfile | 1 - 15 files changed, 15 deletions(-) diff --git a/README b/README index 428e45549a..bf6b8cd4d6 100644 --- a/README +++ b/README @@ -52,7 +52,6 @@ provided by your OS distributor: * Development install of zlib (e.g., zlib-dev) * Development install of Python 2.7 or later (e.g., python-dev) * Development install of curses (e.g., libncurses-dev) - * Development install of openssl (e.g., openssl-dev) * Development install of x11 (e.g. xorg-x11-dev) * Development install of uuid (e.g. uuid-dev) * Development install of yajl (e.g. libyajl-dev) diff --git a/automation/build/debian/bookworm-arm64v8.dockerfile b/automation/build/debian/bookworm-arm64v8.dockerfile index 3ab426a082..a36b04e75e 100644 --- a/automation/build/debian/bookworm-arm64v8.dockerfile +++ b/automation/build/debian/bookworm-arm64v8.dockerfile @@ -15,7 +15,6 @@ RUN apt-get update && \ build-essential \ zlib1g-dev \ libncurses5-dev \ - libssl-dev \ python3-dev \ python3-setuptools \ xorg-dev \ diff --git a/automation/build/debian/bookworm-i386.dockerfile b/automation/build/debian/bookworm-i386.dockerfile index 9a54bd7293..2ccf32193f 100644 --- a/automation/build/debian/bookworm-i386.dockerfile +++ b/automation/build/debian/bookworm-i386.dockerfile @@ -17,7 +17,6 @@ RUN apt-get update && \ build-essential \ zlib1g-dev \ libncurses5-dev \ - libssl-dev \ python3-dev \ python3-setuptools \ xorg-dev \ diff --git a/automation/build/debian/bookworm.dockerfile b/automation/build/debian/bookworm.dockerfile index bef44dd753..d02e3df61f 100644 --- a/automation/build/debian/bookworm.dockerfile +++ b/automation/build/debian/bookworm.dockerfile @@ -15,7 +15,6 @@ RUN apt-get update && \ build-essential \ zlib1g-dev \ libncurses5-dev \ - libssl-dev \ python3-dev \ python3-setuptools \ xorg-dev \ diff --git a/automation/build/debian/jessie-i386.dockerfile b/automation/build/debian/jessie-i386.dockerfile index 1eb7ff11c7..d66d069202 100644 --- a/automation/build/debian/jessie-i386.dockerfile +++ b/automation/build/debian/jessie-i386.dockerfile @@ -24,7 +24,6 @@ RUN apt-get update && \ build-essential \ zlib1g-dev \ libncurses5-dev \ - libssl-dev \ python-dev \ xorg-dev \ uuid-dev \ diff --git a/automation/build/debian/jessie.dockerfile b/automation/build/debian/jessie.dockerfile index 4c0ffe66f8..53c3bb28f1 100644 --- a/automation/build/debian/jessie.dockerfile +++ b/automation/build/debian/jessie.dockerfile @@ -22,7 +22,6 @@ RUN apt-get update && \ build-essential \ zlib1g-dev \ libncurses5-dev \ - libssl-dev \ python-dev \ xorg-dev \ uuid-dev \ diff --git a/automation/build/debian/stretch-i386.dockerfile b/automation/build/debian/stretch-i386.dockerfile index 8ec9c3a246..36108335e5 100644 --- a/automation/build/debian/stretch-i386.dockerfile +++ b/automation/build/debian/stretch-i386.dockerfile @@ -24,7 +24,6 @@ RUN apt-get update && \ build-essential \ zlib1g-dev \ libncurses5-dev \ - libssl-dev \ python-dev \ python3-dev \ xorg-dev \ diff --git a/automation/build/debian/stretch.dockerfile b/automation/build/debian/stretch.dockerfile index 2db4552662..c5339d3c83 100644 --- a/automation/build/debian/stretch.dockerfile +++ b/automation/build/debian/stretch.dockerfile @@ -22,7 +22,6 @@ RUN apt-get update && \ build-essential \ zlib1g-dev \ libncurses5-dev \ - libssl-dev \ python-dev \ python3-dev \ xorg-dev \ diff --git a/automation/build/fedora/29.dockerfile b/automation/build/fedora/29.dockerfile index 08edf70838..d5f017ac72 100644 --- a/automation/build/fedora/29.dockerfile +++ b/automation/build/fedora/29.dockerfile @@ -10,7 +10,6 @@ RUN dnf -y install \ gcc-c++ \ ncurses-devel \ zlib-devel \ - openssl-devel \ python-devel \ python3-devel \ libuuid-devel \ diff --git a/automation/build/ubuntu/bionic.dockerfile b/automation/build/ubuntu/bionic.dockerfile index cc43fc4ade..c83624e8ca 100644 --- a/automation/build/ubuntu/bionic.dockerfile +++ b/automation/build/ubuntu/bionic.dockerfile @@ -15,7 +15,6 @@ RUN apt-get update && \ build-essential \ zlib1g-dev \ libncurses5-dev \ - libssl-dev \ python-dev \ python3-dev \ xorg-dev \ diff --git a/automation/build/ubuntu/focal.dockerfile b/automation/build/ubuntu/focal.dockerfile index cb8bb2f6fa..cabbebf377 100644 --- a/automation/build/ubuntu/focal.dockerfile +++ b/automation/build/ubuntu/focal.dockerfile @@ -15,7 +15,6 @@ RUN apt-get update && \ build-essential \ zlib1g-dev \ libncurses5-dev \ - libssl-dev \ python3-dev \ python3-setuptools \ xorg-dev \ diff --git a/automation/build/ubuntu/trusty.dockerfile b/automation/build/ubuntu/trusty.dockerfile index e2a1bda7c3..ecbcb71b1c 100644 --- a/automation/build/ubuntu/trusty.dockerfile +++ b/automation/build/ubuntu/trusty.dockerfile @@ -15,7 +15,6 @@ RUN apt-get update && \ build-essential \ zlib1g-dev \ libncurses5-dev \ - libssl-dev \ python-dev \ python3-dev \ xorg-dev \ diff --git a/automation/build/ubuntu/xenial.dockerfile b/automation/build/ubuntu/xenial.dockerfile index 168bc70ffa..13ecae7a0b 100644 --- a/automation/build/ubuntu/xenial.dockerfile +++ b/automation/build/ubuntu/xenial.dockerfile @@ -15,7 +15,6 @@ RUN apt-get update && \ build-essential \ zlib1g-dev \ libncurses5-dev \ - libssl-dev \ python-dev \ python3-dev \ xorg-dev \ diff --git a/automation/tests-artifacts/kernel/5.19-arm64v8.dockerfile b/automation/tests-artifacts/kernel/5.19-arm64v8.dockerfile index 22359c9066..8e33995ba3 100644 --- a/automation/tests-artifacts/kernel/5.19-arm64v8.dockerfile +++ b/automation/tests-artifacts/kernel/5.19-arm64v8.dockerfile @@ -14,7 +14,6 @@ WORKDIR /build RUN apt-get update && \ apt-get --quiet --yes install \ build-essential \ - libssl-dev \ bc \ curl \ flex \ diff --git a/automation/tests-artifacts/kernel/6.1.19.dockerfile b/automation/tests-artifacts/kernel/6.1.19.dockerfile index 5cf53d290c..073eaa0e11 100644 --- a/automation/tests-artifacts/kernel/6.1.19.dockerfile +++ b/automation/tests-artifacts/kernel/6.1.19.dockerfile @@ -14,7 +14,6 @@ WORKDIR /build RUN apt-get update && \ apt-get --quiet --yes install \ build-essential \ - libssl-dev \ bc \ curl \ flex \ -- generated by git-patchbot for /home/xen/git/xen.git#staging
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |