summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlookshe <github@lookshe.org>2021-04-22 22:47:54 +0200
committerlookshe <github@lookshe.org>2021-04-22 22:47:54 +0200
commitda17a49af2150340682b7746af9cea4a92231016 (patch)
tree058480b80667ae7889f5716ae96e08996af0329d
parentd24457baa02afc52573f3343e2e6f0e699f12e92 (diff)
update php and modules
-rw-r--r--php-7.4-opt/build.Dockerfile39
-rw-r--r--php-7.4-opt/copy.Dockerfile24
-rw-r--r--php-7.4-opt/out/php-7.4.12-opt-apcu_5.1.19-1_amd64.debbin52326 -> 0 bytes
-rw-r--r--php-7.4-opt/out/php-7.4.12-opt-imagick_3.4.4-1_amd64.debbin126154 -> 0 bytes
-rw-r--r--php-7.4-opt/out/php-7.4.12-opt-krb5_1-1_amd64.debbin4279132 -> 0 bytes
-rw-r--r--php-7.4-opt/out/php-7.4.12-opt-libgd_2.1.1-1_amd64.debbin711014 -> 0 bytes
-rw-r--r--php-7.4-opt/out/php-7.4.12-opt-libjpeg-turbo_1-1_amd64.debbin600690 -> 0 bytes
-rw-r--r--php-7.4-opt/out/php-7.4.12-opt-libsodium_1.0.18-1_amd64.debbin1171262 -> 0 bytes
-rw-r--r--php-7.4-opt/out/php-7.4.12-opt-libzip_0.11.2-1_amd64.debbin348478 -> 0 bytes
-rw-r--r--php-7.4-opt/out/php-7.4.12-opt-memcached_3.1.5-1_amd64.debbin49340 -> 0 bytes
-rw-r--r--php-7.4-opt/out/php-7.4.12-opt-oniguruma_6.9.6-1_amd64.debbin922652 -> 0 bytes
-rw-r--r--php-7.4-opt/out/php-7.4.12-opt-redis_5.3.3-1_amd64.debbin211150 -> 0 bytes
-rw-r--r--php-7.4-opt/out/php-7.4.16-opt-apcu_5.1.20-1_amd64.debbin0 -> 52750 bytes
-rw-r--r--php-7.4-opt/out/php-7.4.16-opt-icu_1-1_amd64.deb (renamed from php-7.4-opt/out/php-7.4.12-opt-icu_1-1_amd64.deb)bin11069150 -> 11069112 bytes
-rw-r--r--php-7.4-opt/out/php-7.4.16-opt-imagick_3.4.4-1_amd64.debbin0 -> 126138 bytes
-rw-r--r--php-7.4-opt/out/php-7.4.16-opt-krb5_1-1_amd64.debbin0 -> 4279134 bytes
-rw-r--r--php-7.4-opt/out/php-7.4.16-opt-libgd_2.1.1-1_amd64.debbin0 -> 711016 bytes
-rw-r--r--php-7.4-opt/out/php-7.4.16-opt-libjpeg-turbo_1-1_amd64.debbin0 -> 600704 bytes
-rw-r--r--php-7.4-opt/out/php-7.4.16-opt-libsodium_1.0.18-1_amd64.debbin0 -> 1171252 bytes
-rw-r--r--php-7.4-opt/out/php-7.4.16-opt-libzip_0.11.2-1_amd64.debbin0 -> 348490 bytes
-rw-r--r--php-7.4-opt/out/php-7.4.16-opt-memcached_3.1.5-1_amd64.debbin0 -> 49334 bytes
-rw-r--r--php-7.4-opt/out/php-7.4.16-opt-oniguruma_6.9.6-1_amd64.debbin0 -> 922664 bytes
-rw-r--r--php-7.4-opt/out/php-7.4.16-opt-redis_5.3.4-1_amd64.debbin0 -> 211138 bytes
-rw-r--r--php-7.4-opt/out/php-7.4.16-opt_7.4.16-1_amd64.deb (renamed from php-7.4-opt/out/php-7.4.12-opt_7.4.12-1_amd64.deb)bin20146884 -> 20188620 bytes
24 files changed, 32 insertions, 31 deletions
diff --git a/php-7.4-opt/build.Dockerfile b/php-7.4-opt/build.Dockerfile
index dc125d5..3c156c3 100644
--- a/php-7.4-opt/build.Dockerfile
+++ b/php-7.4-opt/build.Dockerfile
@@ -3,7 +3,8 @@ FROM debian/eol:wheezy
ENV MAIN_PREFIX_NO_ROOT opt/php-7.4
ENV MAIN_PREFIX /$MAIN_PREFIX_NO_ROOT
ENV DEP_PREFIX $MAIN_PREFIX/dependencies
-ENV PACKAGE_NAME php-7.4.12-opt
+ENV PHP_VERSION php-7.4.16
+ENV PACKAGE_NAME $PHP_VERSION-opt
RUN apt-get update \
&& apt-get install -y \
@@ -88,9 +89,9 @@ RUN cd libsodium-1.0.18 \
&& ./configure --prefix=$DEP_PREFIX \
&& make \
&& checkinstall -y --pkgname $PACKAGE_NAME-libsodium
-RUN wget https://www.php.net/distributions/php-7.4.12.tar.gz
-RUN tar xzf php-7.4.12.tar.gz
-RUN cd php-7.4.12 \
+RUN wget https://www.php.net/distributions/$PHP_VERSION.tar.gz
+RUN tar xzf $PHP_VERSION.tar.gz
+RUN cd $PHP_VERSION \
&& PKG_CONFIG_PATH=$DEP_PREFIX/lib/pkgconfig ./configure \
--prefix=$MAIN_PREFIX \
#--with-libdir=/lib/x86_64-linux-gnu \
@@ -141,7 +142,7 @@ RUN cd php-7.4.12 \
--with-zip \
--with-zlib \
&& make
-RUN cd php-7.4.12 \
+RUN cd $PHP_VERSION \
&& mkdir -p $MAIN_PREFIX_NO_ROOT/etc/conf.d \
&& cp php.ini-production $MAIN_PREFIX_NO_ROOT/etc/php.ini \
&& sed -i -E 's/^short_open_tag =.+$/short_open_tag = On/' $MAIN_PREFIX_NO_ROOT/etc/php.ini \
@@ -153,50 +154,50 @@ RUN cd php-7.4.12 \
&& echo $MAIN_PREFIX_NO_ROOT/etc/php.ini >> files_to_add \
&& echo $MAIN_PREFIX_NO_ROOT/etc/conf.d/opcache.ini >> files_to_add \
&& checkinstall -y --pkgname $PACKAGE_NAME --include files_to_add
-RUN cd /php-7.4.12/ext \
+RUN cd /$PHP_VERSION/ext \
&& wget https://github.com/Imagick/imagick/archive/3.4.4.tar.gz \
&& tar xzf 3.4.4.tar.gz \
&& cd imagick-3.4.4 \
&& $MAIN_PREFIX/bin/phpize \
&& ./configure --with-php-config=$MAIN_PREFIX/bin/php-config \
&& make
-RUN cd /php-7.4.12/ext/imagick-3.4.4 \
+RUN cd /$PHP_VERSION/ext/imagick-3.4.4 \
&& mkdir -p $MAIN_PREFIX_NO_ROOT/etc/conf.d \
&& echo extension=imagick.so > $MAIN_PREFIX_NO_ROOT/etc/conf.d/imagick.ini \
&& echo $MAIN_PREFIX_NO_ROOT/etc/conf.d/imagick.ini >> files_to_add \
&& checkinstall -y --pkgname $PACKAGE_NAME-imagick --include files_to_add
-RUN cd /php-7.4.12/ext \
- && wget https://github.com/krakjoe/apcu/archive/v5.1.19.tar.gz \
- && tar xzf v5.1.19.tar.gz \
- && cd apcu-5.1.19 \
+RUN cd /$PHP_VERSION/ext \
+ && wget https://github.com/krakjoe/apcu/archive/v5.1.20.tar.gz \
+ && tar xzf v5.1.20.tar.gz \
+ && cd apcu-5.1.20 \
&& $MAIN_PREFIX/bin/phpize \
&& ./configure --with-php-config=$MAIN_PREFIX/bin/php-config \
&& make
-RUN cd /php-7.4.12/ext/apcu-5.1.19 \
+RUN cd /$PHP_VERSION/ext/apcu-5.1.20 \
&& mkdir -p $MAIN_PREFIX_NO_ROOT/etc/conf.d \
&& echo extension=apcu.so > $MAIN_PREFIX_NO_ROOT/etc/conf.d/apcu.ini \
&& echo $MAIN_PREFIX_NO_ROOT/etc/conf.d/apcu.ini >> files_to_add \
&& checkinstall -y --pkgname $PACKAGE_NAME-apcu --include files_to_add
-RUN cd /php-7.4.12/ext \
+RUN cd /$PHP_VERSION/ext \
&& wget https://github.com/php-memcached-dev/php-memcached/archive/v3.1.5.tar.gz \
&& tar xzf v3.1.5.tar.gz \
&& cd php-memcached-3.1.5 \
&& $MAIN_PREFIX/bin/phpize \
&& ./configure --with-php-config=$MAIN_PREFIX/bin/php-config --disable-memcached-sasl \
&& make
-RUN cd /php-7.4.12/ext/php-memcached-3.1.5 \
+RUN cd /$PHP_VERSION/ext/php-memcached-3.1.5 \
&& mkdir -p $MAIN_PREFIX_NO_ROOT/etc/conf.d \
&& echo extension=memcached.so > $MAIN_PREFIX_NO_ROOT/etc/conf.d/memcached.ini \
&& echo $MAIN_PREFIX_NO_ROOT/etc/conf.d/memcached.ini >> files_to_add \
&& checkinstall -y --pkgname $PACKAGE_NAME-memcached --include files_to_add
-RUN cd /php-7.4.12/ext \
- && wget https://github.com/phpredis/phpredis/archive/5.3.3.tar.gz \
- && tar xzf 5.3.3.tar.gz \
- && cd phpredis-5.3.3 \
+RUN cd /$PHP_VERSION/ext \
+ && wget https://github.com/phpredis/phpredis/archive/5.3.4.tar.gz \
+ && tar xzf 5.3.4.tar.gz \
+ && cd phpredis-5.3.4 \
&& $MAIN_PREFIX/bin/phpize \
&& ./configure --with-php-config=$MAIN_PREFIX/bin/php-config \
&& make
-RUN cd /php-7.4.12/ext/phpredis-5.3.3 \
+RUN cd /$PHP_VERSION/ext/phpredis-5.3.4 \
&& mkdir -p $MAIN_PREFIX_NO_ROOT/etc/conf.d \
&& echo extension=redis.so > $MAIN_PREFIX_NO_ROOT/etc/conf.d/redis.ini \
&& echo $MAIN_PREFIX_NO_ROOT/etc/conf.d/redis.ini >> files_to_add \
diff --git a/php-7.4-opt/copy.Dockerfile b/php-7.4-opt/copy.Dockerfile
index 8bc77d0..9da3561 100644
--- a/php-7.4-opt/copy.Dockerfile
+++ b/php-7.4-opt/copy.Dockerfile
@@ -1,16 +1,16 @@
FROM lookshe/php-7.4-opt-build AS build-stage
FROM scratch AS export-stage
-COPY --from=build-stage /php-7.4.12/php-7.4.12-opt_7.4.12-1_amd64.deb .
-COPY --from=build-stage /libzip-0.11.2/php-7.4.12-opt-libzip_0.11.2-1_amd64.deb .
-COPY --from=build-stage /icu/source/php-7.4.12-opt-icu_1-1_amd64.deb .
-COPY --from=build-stage /oniguruma-6.9.6/php-7.4.12-opt-oniguruma_6.9.6-1_amd64.deb .
-COPY --from=build-stage /libgd-2.1.1/php-7.4.12-opt-libgd_2.1.1-1_amd64.deb .
-COPY --from=build-stage /libjpeg-turbo-2.0.6/build/php-7.4.12-opt-libjpeg-turbo_1-1_amd64.deb .
-COPY --from=build-stage /krb5-1.17.2/src/php-7.4.12-opt-krb5_1-1_amd64.deb .
-COPY --from=build-stage /php-7.4.12/ext/imagick-3.4.4/php-7.4.12-opt-imagick_3.4.4-1_amd64.deb .
-COPY --from=build-stage /php-7.4.12/ext/apcu-5.1.19/php-7.4.12-opt-apcu_5.1.19-1_amd64.deb .
-COPY --from=build-stage /libsodium-1.0.18/php-7.4.12-opt-libsodium_1.0.18-1_amd64.deb .
-COPY --from=build-stage /php-7.4.12/ext/php-memcached-3.1.5/php-7.4.12-opt-memcached_3.1.5-1_amd64.deb .
-COPY --from=build-stage /php-7.4.12/ext/phpredis-5.3.3/php-7.4.12-opt-redis_5.3.3-1_amd64.deb .
+COPY --from=build-stage /php-7.4.16/php-7.4.16-opt_7.4.16-1_amd64.deb .
+COPY --from=build-stage /libzip-0.11.2/php-7.4.16-opt-libzip_0.11.2-1_amd64.deb .
+COPY --from=build-stage /icu/source/php-7.4.16-opt-icu_1-1_amd64.deb .
+COPY --from=build-stage /oniguruma-6.9.6/php-7.4.16-opt-oniguruma_6.9.6-1_amd64.deb .
+COPY --from=build-stage /libgd-2.1.1/php-7.4.16-opt-libgd_2.1.1-1_amd64.deb .
+COPY --from=build-stage /libjpeg-turbo-2.0.6/build/php-7.4.16-opt-libjpeg-turbo_1-1_amd64.deb .
+COPY --from=build-stage /krb5-1.17.2/src/php-7.4.16-opt-krb5_1-1_amd64.deb .
+COPY --from=build-stage /php-7.4.16/ext/imagick-3.4.4/php-7.4.16-opt-imagick_3.4.4-1_amd64.deb .
+COPY --from=build-stage /php-7.4.16/ext/apcu-5.1.20/php-7.4.16-opt-apcu_5.1.20-1_amd64.deb .
+COPY --from=build-stage /libsodium-1.0.18/php-7.4.16-opt-libsodium_1.0.18-1_amd64.deb .
+COPY --from=build-stage /php-7.4.16/ext/php-memcached-3.1.5/php-7.4.16-opt-memcached_3.1.5-1_amd64.deb .
+COPY --from=build-stage /php-7.4.16/ext/phpredis-5.3.4/php-7.4.16-opt-redis_5.3.4-1_amd64.deb .
diff --git a/php-7.4-opt/out/php-7.4.12-opt-apcu_5.1.19-1_amd64.deb b/php-7.4-opt/out/php-7.4.12-opt-apcu_5.1.19-1_amd64.deb
deleted file mode 100644
index 343c2c3..0000000
--- a/php-7.4-opt/out/php-7.4.12-opt-apcu_5.1.19-1_amd64.deb
+++ /dev/null
Binary files differ
diff --git a/php-7.4-opt/out/php-7.4.12-opt-imagick_3.4.4-1_amd64.deb b/php-7.4-opt/out/php-7.4.12-opt-imagick_3.4.4-1_amd64.deb
deleted file mode 100644
index f48c7b3..0000000
--- a/php-7.4-opt/out/php-7.4.12-opt-imagick_3.4.4-1_amd64.deb
+++ /dev/null
Binary files differ
diff --git a/php-7.4-opt/out/php-7.4.12-opt-krb5_1-1_amd64.deb b/php-7.4-opt/out/php-7.4.12-opt-krb5_1-1_amd64.deb
deleted file mode 100644
index e727e2a..0000000
--- a/php-7.4-opt/out/php-7.4.12-opt-krb5_1-1_amd64.deb
+++ /dev/null
Binary files differ
diff --git a/php-7.4-opt/out/php-7.4.12-opt-libgd_2.1.1-1_amd64.deb b/php-7.4-opt/out/php-7.4.12-opt-libgd_2.1.1-1_amd64.deb
deleted file mode 100644
index bb1b572..0000000
--- a/php-7.4-opt/out/php-7.4.12-opt-libgd_2.1.1-1_amd64.deb
+++ /dev/null
Binary files differ
diff --git a/php-7.4-opt/out/php-7.4.12-opt-libjpeg-turbo_1-1_amd64.deb b/php-7.4-opt/out/php-7.4.12-opt-libjpeg-turbo_1-1_amd64.deb
deleted file mode 100644
index ead45ba..0000000
--- a/php-7.4-opt/out/php-7.4.12-opt-libjpeg-turbo_1-1_amd64.deb
+++ /dev/null
Binary files differ
diff --git a/php-7.4-opt/out/php-7.4.12-opt-libsodium_1.0.18-1_amd64.deb b/php-7.4-opt/out/php-7.4.12-opt-libsodium_1.0.18-1_amd64.deb
deleted file mode 100644
index 54c792c..0000000
--- a/php-7.4-opt/out/php-7.4.12-opt-libsodium_1.0.18-1_amd64.deb
+++ /dev/null
Binary files differ
diff --git a/php-7.4-opt/out/php-7.4.12-opt-libzip_0.11.2-1_amd64.deb b/php-7.4-opt/out/php-7.4.12-opt-libzip_0.11.2-1_amd64.deb
deleted file mode 100644
index f002586..0000000
--- a/php-7.4-opt/out/php-7.4.12-opt-libzip_0.11.2-1_amd64.deb
+++ /dev/null
Binary files differ
diff --git a/php-7.4-opt/out/php-7.4.12-opt-memcached_3.1.5-1_amd64.deb b/php-7.4-opt/out/php-7.4.12-opt-memcached_3.1.5-1_amd64.deb
deleted file mode 100644
index 99d19ea..0000000
--- a/php-7.4-opt/out/php-7.4.12-opt-memcached_3.1.5-1_amd64.deb
+++ /dev/null
Binary files differ
diff --git a/php-7.4-opt/out/php-7.4.12-opt-oniguruma_6.9.6-1_amd64.deb b/php-7.4-opt/out/php-7.4.12-opt-oniguruma_6.9.6-1_amd64.deb
deleted file mode 100644
index a8abefc..0000000
--- a/php-7.4-opt/out/php-7.4.12-opt-oniguruma_6.9.6-1_amd64.deb
+++ /dev/null
Binary files differ
diff --git a/php-7.4-opt/out/php-7.4.12-opt-redis_5.3.3-1_amd64.deb b/php-7.4-opt/out/php-7.4.12-opt-redis_5.3.3-1_amd64.deb
deleted file mode 100644
index a00f57d..0000000
--- a/php-7.4-opt/out/php-7.4.12-opt-redis_5.3.3-1_amd64.deb
+++ /dev/null
Binary files differ
diff --git a/php-7.4-opt/out/php-7.4.16-opt-apcu_5.1.20-1_amd64.deb b/php-7.4-opt/out/php-7.4.16-opt-apcu_5.1.20-1_amd64.deb
new file mode 100644
index 0000000..7321e75
--- /dev/null
+++ b/php-7.4-opt/out/php-7.4.16-opt-apcu_5.1.20-1_amd64.deb
Binary files differ
diff --git a/php-7.4-opt/out/php-7.4.12-opt-icu_1-1_amd64.deb b/php-7.4-opt/out/php-7.4.16-opt-icu_1-1_amd64.deb
index ccfecc3..ff88c11 100644
--- a/php-7.4-opt/out/php-7.4.12-opt-icu_1-1_amd64.deb
+++ b/php-7.4-opt/out/php-7.4.16-opt-icu_1-1_amd64.deb
Binary files differ
diff --git a/php-7.4-opt/out/php-7.4.16-opt-imagick_3.4.4-1_amd64.deb b/php-7.4-opt/out/php-7.4.16-opt-imagick_3.4.4-1_amd64.deb
new file mode 100644
index 0000000..3e7f29e
--- /dev/null
+++ b/php-7.4-opt/out/php-7.4.16-opt-imagick_3.4.4-1_amd64.deb
Binary files differ
diff --git a/php-7.4-opt/out/php-7.4.16-opt-krb5_1-1_amd64.deb b/php-7.4-opt/out/php-7.4.16-opt-krb5_1-1_amd64.deb
new file mode 100644
index 0000000..24fd0fb
--- /dev/null
+++ b/php-7.4-opt/out/php-7.4.16-opt-krb5_1-1_amd64.deb
Binary files differ
diff --git a/php-7.4-opt/out/php-7.4.16-opt-libgd_2.1.1-1_amd64.deb b/php-7.4-opt/out/php-7.4.16-opt-libgd_2.1.1-1_amd64.deb
new file mode 100644
index 0000000..66327f3
--- /dev/null
+++ b/php-7.4-opt/out/php-7.4.16-opt-libgd_2.1.1-1_amd64.deb
Binary files differ
diff --git a/php-7.4-opt/out/php-7.4.16-opt-libjpeg-turbo_1-1_amd64.deb b/php-7.4-opt/out/php-7.4.16-opt-libjpeg-turbo_1-1_amd64.deb
new file mode 100644
index 0000000..5f72378
--- /dev/null
+++ b/php-7.4-opt/out/php-7.4.16-opt-libjpeg-turbo_1-1_amd64.deb
Binary files differ
diff --git a/php-7.4-opt/out/php-7.4.16-opt-libsodium_1.0.18-1_amd64.deb b/php-7.4-opt/out/php-7.4.16-opt-libsodium_1.0.18-1_amd64.deb
new file mode 100644
index 0000000..e8f0ef4
--- /dev/null
+++ b/php-7.4-opt/out/php-7.4.16-opt-libsodium_1.0.18-1_amd64.deb
Binary files differ
diff --git a/php-7.4-opt/out/php-7.4.16-opt-libzip_0.11.2-1_amd64.deb b/php-7.4-opt/out/php-7.4.16-opt-libzip_0.11.2-1_amd64.deb
new file mode 100644
index 0000000..51ddedb
--- /dev/null
+++ b/php-7.4-opt/out/php-7.4.16-opt-libzip_0.11.2-1_amd64.deb
Binary files differ
diff --git a/php-7.4-opt/out/php-7.4.16-opt-memcached_3.1.5-1_amd64.deb b/php-7.4-opt/out/php-7.4.16-opt-memcached_3.1.5-1_amd64.deb
new file mode 100644
index 0000000..0b3ee39
--- /dev/null
+++ b/php-7.4-opt/out/php-7.4.16-opt-memcached_3.1.5-1_amd64.deb
Binary files differ
diff --git a/php-7.4-opt/out/php-7.4.16-opt-oniguruma_6.9.6-1_amd64.deb b/php-7.4-opt/out/php-7.4.16-opt-oniguruma_6.9.6-1_amd64.deb
new file mode 100644
index 0000000..51a4565
--- /dev/null
+++ b/php-7.4-opt/out/php-7.4.16-opt-oniguruma_6.9.6-1_amd64.deb
Binary files differ
diff --git a/php-7.4-opt/out/php-7.4.16-opt-redis_5.3.4-1_amd64.deb b/php-7.4-opt/out/php-7.4.16-opt-redis_5.3.4-1_amd64.deb
new file mode 100644
index 0000000..c498a89
--- /dev/null
+++ b/php-7.4-opt/out/php-7.4.16-opt-redis_5.3.4-1_amd64.deb
Binary files differ
diff --git a/php-7.4-opt/out/php-7.4.12-opt_7.4.12-1_amd64.deb b/php-7.4-opt/out/php-7.4.16-opt_7.4.16-1_amd64.deb
index 33cb30c..93f7d74 100644
--- a/php-7.4-opt/out/php-7.4.12-opt_7.4.12-1_amd64.deb
+++ b/php-7.4-opt/out/php-7.4.16-opt_7.4.16-1_amd64.deb
Binary files differ