[Alpine] Update libgearman from v1.1.19.1 to v1.1.20 (#661)

pull/669/head 1.5.49
Michele Locati 2022-11-24 16:23:32 +01:00 committed by GitHub
parent ef69c94206
commit f43000a9fe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 4 deletions

View File

@ -2638,7 +2638,7 @@ installRemoteModule() {
case "$DISTRO" in case "$DISTRO" in
alpine) alpine)
if ! test -e /usr/local/include/libgearman/gearman.h || ! test -e /usr/local/lib/libgearman.so; then if ! test -e /usr/local/include/libgearman/gearman.h || ! test -e /usr/local/lib/libgearman.so; then
installRemoteModule_src="$(getPackageSource https://github.com/gearman/gearmand/releases/download/1.1.19.1/gearmand-1.1.19.1.tar.gz)" installRemoteModule_src="$(getPackageSource https://github.com/gearman/gearmand/releases/download/1.1.20/gearmand-1.1.20.tar.gz)"
cd -- "$installRemoteModule_src" cd -- "$installRemoteModule_src"
./configure ./configure
make -j$(getProcessorCount) install-binPROGRAMS make -j$(getProcessorCount) install-binPROGRAMS

View File

@ -6,7 +6,5 @@ set -o nounset
if grep -q 'VERSION="8 (jessie)"' /etc/os-release; then if grep -q 'VERSION="8 (jessie)"' /etc/os-release; then
echo 'Fix Debian Jessie keyring' echo 'Fix Debian Jessie keyring'
curl -o /tmp/debian-archive-keyring.deb -sSLf http://ftp.debian.org/debian/pool/main/d/debian-archive-keyring/debian-archive-keyring_2019.1+deb10u1_all.deb echo 'APT::Get::AllowUnauthenticated "true";' >/etc/apt/apt.conf.d/99-install-php-extensions
dpkg -i /tmp/debian-archive-keyring.deb
rm -rf /tmp/debian-archive-keyring.deb
fi fi