From f29d630ddf7c0f29cf882a5da728eaed5cef47f6 Mon Sep 17 00:00:00 2001 From: Sadie Powell Date: Fri, 6 Sep 2024 11:05:07 +0100 Subject: [PATCH] Drop CentOS 7 as the package mirrors are all dead. --- .github/workflows/build-packages.yml | 2 -- rpm/platforms/centos-7.sh | 46 ---------------------------- 2 files changed, 48 deletions(-) delete mode 100644 rpm/platforms/centos-7.sh diff --git a/.github/workflows/build-packages.yml b/.github/workflows/build-packages.yml index e3c7853..6bf20c3 100644 --- a/.github/workflows/build-packages.yml +++ b/.github/workflows/build-packages.yml @@ -39,8 +39,6 @@ jobs: platform: ubuntu-22-04 - package: deb platform: ubuntu-24-04 - - package: rpm - platform: centos-7 - package: rpm platform: rocky-8 - package: rpm diff --git a/rpm/platforms/centos-7.sh b/rpm/platforms/centos-7.sh deleted file mode 100644 index 2144643..0000000 --- a/rpm/platforms/centos-7.sh +++ /dev/null @@ -1,46 +0,0 @@ -if [ -z "${INSPIRCD_ROOT_DIR}" ] -then - >&2 echo 'This script should not be used directly!' - exit 1 -fi - -export PLATFORM_NAME="CentOS 7" -export PLATFORM_CONTAINER="centos:7" - -declare -Ax MODULE_BUILD_DEPS=( - ["geo_maxmind"]="libmaxminddb-devel pkgconfig" - ["ldap"]="openldap-devel" - ["mysql"]="mariadb-devel" - ["pgsql"]="postgresql-devel" - ["regex_pcre"]="pcre-devel" - ["regex_pcre2"]="pcre2-devel" - ["regex_posix"]="" - ["sqlite3"]="pkgconfig sqlite-devel" - ["ssl_gnutls"]="gnutls-devel pkgconfig" - ["ssl_openssl"]="openssl-devel pkgconfig" - ["sslrehashsignal"]="" -) - -declare -Ax MODULE_RUNTIME_DEPS=( - ["geo_maxmind"]="libmaxminddb" - ["ldap"]="openldap" - ["mysql"]="mariadb-libs" - ["pgsql"]="postgresql-libs" - ["regex_pcre"]="pcre" - ["regex_pcre2"]="pcre2" - ["regex_posix"]="" - ["sqlite3"]="sqlite" - ["ssl_gnutls"]="gnutls perl-IO-Socket-SSL" - ["ssl_openssl"]="openssl perl-IO-Socket-SSL" - ["sslrehashsignal"]="" -) - -declare -Ax MODULE_ERRORS=( - ["argon2"]="Argon2 is not packaged by CentOS 7" - ["regex_re2"]="RE2 is not is not packaged by CentOS 7" - ["regex_stdlib"]="GCC 4.9 is required for std::regex support" - ["regex_tre"]="TRE is not is not packaged by CentOS 7" - ["ssl_mbedtls"]="mbedTLS is not packaged by CentOS 7" -) - -declare -Ax MODULE_WARNINGS=()