php-fpm: update to 7.2.4

This commit is contained in:
Juergen Daubert 2018-03-30 12:49:31 +02:00
parent a773a00783
commit 2d7e666bfe
4 changed files with 13 additions and 8 deletions

View File

@ -1,6 +1,8 @@
drwxr-xr-x root/root etc/
drwxr-xr-x root/root etc/php/
-rw-r--r-- root/root etc/php/php-fpm.conf
drwxr-xr-x root/root etc/php/php-fpm.d/
-rw-r--r-- root/root etc/php/php-fpm.d/www.conf
drwxr-xr-x root/root etc/rc.d/
-rwxr-xr-x root/root etc/rc.d/php-fpm
drwxr-xr-x root/root usr/

View File

@ -1,2 +1,2 @@
dd28a659b88ad60797a7c102307f2edb php-5.6.34.tar.xz
8266120cf6500a96f1ba335d9ef1e01b php-7.2.4.tar.xz
954d95b7f645f3435815195aeeac6949 php-fpm

View File

@ -1,6 +1,6 @@
untrusted comment: verify with /etc/ports/opt.pub
RWSE3ohX2g5d/ZjUw5lG0Z7cRPMegDdAIyE3Lnzuv8OcgOAyQsYCKN/AlNzPapMyY7XdsRr4xHF0A9PhIMYU4z7elpH0lQnq2A4=
SHA256 (Pkgfile) = 8166eee043ac3a8a3be435d791a9e0fcaaafb71c082f5e63aa8a6e2eedac8f0e
SHA256 (.footprint) = 5b8ceed2150bdbf3d6cc01b0ef712a5c917367f58dd3181377af29ad11283be4
SHA256 (php-5.6.34.tar.xz) = 21453be3a045204cd2717543ef42771324f411f40962ecda4fe841930a933128
RWSE3ohX2g5d/eNtIB6IJ/YTLPIuCE1ZrqwDjKsCi1tFehyQb044tSdH29DIlesR8KXG+UQJGebTeZrdGvqrfLZfbOsDUCCulwg=
SHA256 (Pkgfile) = 4b10109d61e4787e548da45a137abd68ef643e2f2e2587b1c1d37f5b2cd77fb1
SHA256 (.footprint) = a26b7d8af42742c284dd40e96fb4c4d1ba451ac9bf4f714c8f12fb6975ffa5fe
SHA256 (php-7.2.4.tar.xz) = 7916b1bd148ddfd46d7f8f9a517d4b09cd8a8ad9248734e7c8dd91ef17057a88
SHA256 (php-fpm) = a1fde2295e819a33d492cfdeca8d4e0e8de08b8d051c95c4758ba01da38354b7

View File

@ -4,7 +4,7 @@
# Depends on: libpcre libxml2
name=php-fpm
version=5.6.34
version=7.2.4
release=1
source=(http://php.net/distributions/php-$version.tar.xz
php-fpm)
@ -34,11 +34,14 @@ build () {
make
install -d $PKG/{usr/{sbin,share/man/man8},etc/{rc.d,php}}
install -d $PKG/usr/{sbin,share/man/man8}
install -d $PKG/etc/{rc.d,php/php-fpm.d}
install -m 755 sapi/fpm/php-fpm $PKG/usr/sbin/
install -m 644 sapi/fpm/php-fpm.conf $PKG/etc/php/
install -m 644 sapi/fpm/www.conf $PKG/etc/php/php-fpm.d/
install -m 644 sapi/fpm/php-fpm.8 $PKG/usr/share/man/man8/
install -m 755 $SRC/php-fpm $PKG/etc/rc.d/
sed -i '/;pid =/s/;//' $PKG/etc/php/php-fpm.conf
sed '/;pid =/s/;//' -i $PKG/etc/php/php-fpm.conf
}