Merge branch '3.1' into 3.2

This commit is contained in:
Juergen Daubert 2015-08-07 16:41:04 +02:00
commit 77e0ce0ed3
24 changed files with 152 additions and 12 deletions

View File

@ -1 +1 @@
2efe7c087d7073bffa64e5d538f22711 php-5.5.27.tar.xz
d0caf908b129f2538d942d756c4cb04e php-5.5.28.tar.xz

View File

@ -4,7 +4,7 @@
# Depends on: xz apache libxml2
name=mod_php
version=5.5.27
version=5.5.28
release=1
source=(http://php.net/distributions/php-$version.tar.xz)

View File

@ -1,2 +1,2 @@
2efe7c087d7073bffa64e5d538f22711 php-5.5.27.tar.xz
d0caf908b129f2538d942d756c4cb04e php-5.5.28.tar.xz
cdaab91680ba17cbf31b21d1b64dcd6a php-fcgi

View File

@ -4,7 +4,7 @@
# Depends on: xz libpcre libxml2
name=php-fcgi
version=5.5.27
version=5.5.28
release=1
source=(http://php.net/distributions/php-$version.tar.xz
php-fcgi)

View File

@ -1,2 +1,2 @@
2efe7c087d7073bffa64e5d538f22711 php-5.5.27.tar.xz
d0caf908b129f2538d942d756c4cb04e php-5.5.28.tar.xz
954d95b7f645f3435815195aeeac6949 php-fpm

View File

@ -4,7 +4,7 @@
# Depends on: xz libpcre libxml2
name=php-fpm
version=5.5.27
version=5.5.28
release=1
source=(http://php.net/distributions/php-$version.tar.xz
php-fpm)

9
php-ftp/.footprint Normal file
View File

@ -0,0 +1,9 @@
drwxr-xr-x root/root etc/
drwxr-xr-x root/root etc/php/
drwxr-xr-x root/root etc/php/conf.d/
-rw-r--r-- root/root etc/php/conf.d/ftp.ini
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/lib/
drwxr-xr-x root/root usr/lib/php/
drwxr-xr-x root/root usr/lib/php/extensions/
-rwxr-xr-x root/root usr/lib/php/extensions/ftp.so

1
php-ftp/.md5sum Normal file
View File

@ -0,0 +1 @@
d0caf908b129f2538d942d756c4cb04e php-5.5.28.tar.xz

25
php-ftp/Pkgfile Normal file
View File

@ -0,0 +1,25 @@
# Description: FTP module for PHP
# URL: http://www.php.net
# Maintainer: Alan Mizrahi, alan at mizrahi dot com dot ve
# Depends on:
name=php-ftp
version=5.5.28
release=1
source=(http://www.php.net/distributions/php-$version.tar.xz)
build() {
cd php-$version
./configure \
--disable-all \
--enable-${name#php-}=shared
make build-modules
install -d $PKG/etc/php/conf.d
for i in modules/*.so; do
install -D -m755 $i $PKG/usr/lib/php/extensions/${i##*/}
echo extension=/usr/lib/php/extensions/${i##*/} >> $PKG/etc/php/conf.d/${name#php-}.ini
done
}

9
php-gd/.footprint Normal file
View File

@ -0,0 +1,9 @@
drwxr-xr-x root/root etc/
drwxr-xr-x root/root etc/php/
drwxr-xr-x root/root etc/php/conf.d/
-rw-r--r-- root/root etc/php/conf.d/gd.ini
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/lib/
drwxr-xr-x root/root usr/lib/php/
drwxr-xr-x root/root usr/lib/php/extensions/
-rwxr-xr-x root/root usr/lib/php/extensions/gd.so

1
php-gd/.md5sum Normal file
View File

@ -0,0 +1 @@
d0caf908b129f2538d942d756c4cb04e php-5.5.28.tar.xz

25
php-gd/Pkgfile Normal file
View File

@ -0,0 +1,25 @@
# Description: GD module for PHP
# URL: http://www.php.net
# Maintainer: Alan Mizrahi, alan at mizrahi dot com dot ve
# Depends on: libgd
name=php-gd
version=5.5.28
release=1
source=(http://www.php.net/distributions/php-$version.tar.xz)
build() {
cd php-$version
./configure \
--disable-all \
--with-${name#*-}=shared,/usr
make build-modules
install -d $PKG/etc/php/conf.d
for i in modules/*.so; do
install -D -m755 $i $PKG/usr/lib/php/extensions/${i##*/}
echo extension=/usr/lib/php/extensions/${i##*/} >> $PKG/etc/php/conf.d/${name#php-}.ini
done
}

9
php-gettext/.footprint Normal file
View File

@ -0,0 +1,9 @@
drwxr-xr-x root/root etc/
drwxr-xr-x root/root etc/php/
drwxr-xr-x root/root etc/php/conf.d/
-rw-r--r-- root/root etc/php/conf.d/gettext.ini
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/lib/
drwxr-xr-x root/root usr/lib/php/
drwxr-xr-x root/root usr/lib/php/extensions/
-rwxr-xr-x root/root usr/lib/php/extensions/gettext.so

1
php-gettext/.md5sum Normal file
View File

@ -0,0 +1 @@
d0caf908b129f2538d942d756c4cb04e php-5.5.28.tar.xz

25
php-gettext/Pkgfile Normal file
View File

@ -0,0 +1,25 @@
# Description: Gettext module for PHP
# URL: http://www.php.net
# Maintainer: Alan Mizrahi, alan at mizrahi dot com dot ve
# Depends on:
name=php-gettext
version=5.5.28
release=1
source=(http://www.php.net/distributions/php-$version.tar.xz)
build() {
cd php-$version
./configure \
--disable-all \
--with-${name#*-}=shared,/usr
make build-modules
install -d $PKG/etc/php/conf.d
for i in modules/*.so; do
install -D -m755 $i $PKG/usr/lib/php/extensions/${i##*/}
echo extension=/usr/lib/php/extensions/${i##*/} >> $PKG/etc/php/conf.d/${name#php-}.ini
done
}

View File

@ -1 +1 @@
2efe7c087d7073bffa64e5d538f22711 php-5.5.27.tar.xz
d0caf908b129f2538d942d756c4cb04e php-5.5.28.tar.xz

View File

@ -4,7 +4,7 @@
# Depends on: mysql
name=php-mysql
version=5.5.27
version=5.5.28
release=1
source=(http://php.net/distributions/php-$version.tar.xz)

9
php-sockets/.footprint Normal file
View File

@ -0,0 +1,9 @@
drwxr-xr-x root/root etc/
drwxr-xr-x root/root etc/php/
drwxr-xr-x root/root etc/php/conf.d/
-rw-r--r-- root/root etc/php/conf.d/sockets.ini
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/lib/
drwxr-xr-x root/root usr/lib/php/
drwxr-xr-x root/root usr/lib/php/extensions/
-rwxr-xr-x root/root usr/lib/php/extensions/sockets.so

1
php-sockets/.md5sum Normal file
View File

@ -0,0 +1 @@
d0caf908b129f2538d942d756c4cb04e php-5.5.28.tar.xz

25
php-sockets/Pkgfile Normal file
View File

@ -0,0 +1,25 @@
# Description: Socket module for PHP
# URL: http://www.php.net
# Maintainer: Alan Mizrahi, alan at mizrahi dot com dot ve
# Depends on:
name=php-sockets
version=5.5.28
release=1
source=(http://www.php.net/distributions/php-$version.tar.xz)
build() {
cd php-$version
./configure \
--disable-all \
--enable-${name#php-}=shared
make build-modules
install -d $PKG/etc/php/conf.d
for i in modules/*.so; do
install -D -m755 $i $PKG/usr/lib/php/extensions/${i##*/}
echo extension=/usr/lib/php/extensions/${i##*/} >> $PKG/etc/php/conf.d/${name#php-}.ini
done
}

View File

@ -1 +1 @@
2efe7c087d7073bffa64e5d538f22711 php-5.5.27.tar.xz
d0caf908b129f2538d942d756c4cb04e php-5.5.28.tar.xz

View File

@ -4,7 +4,7 @@
# Depends on: sqlite3
name=php-sqlite3
version=5.5.27
version=5.5.28
release=1
source=(http://php.net/distributions/php-$version.tar.xz)

View File

@ -1 +1 @@
2efe7c087d7073bffa64e5d538f22711 php-5.5.27.tar.xz
d0caf908b129f2538d942d756c4cb04e php-5.5.28.tar.xz

View File

@ -4,7 +4,7 @@
# Depends on: readline libpcre libxml2 curl db gdbm xz
name=php
version=5.5.27
version=5.5.28
release=1
source=(http://php.net/distributions/php-$version.tar.xz)