diff --git a/php-fpm/.footprint b/php-fpm/.footprint index 7fe1187b1..e5b09c8a4 100644 --- a/php-fpm/.footprint +++ b/php-fpm/.footprint @@ -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/ diff --git a/php-fpm/.md5sum b/php-fpm/.md5sum index 39a41dec2..b69726c21 100644 --- a/php-fpm/.md5sum +++ b/php-fpm/.md5sum @@ -1,2 +1,2 @@ -dd28a659b88ad60797a7c102307f2edb php-5.6.34.tar.xz +8266120cf6500a96f1ba335d9ef1e01b php-7.2.4.tar.xz 954d95b7f645f3435815195aeeac6949 php-fpm diff --git a/php-fpm/.signature b/php-fpm/.signature index d361b919d..22c83ea96 100644 --- a/php-fpm/.signature +++ b/php-fpm/.signature @@ -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 diff --git a/php-fpm/Pkgfile b/php-fpm/Pkgfile index 3c4783dfa..eb18a0557 100644 --- a/php-fpm/Pkgfile +++ b/php-fpm/Pkgfile @@ -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 }