[arch-commits] Commit in php/repos (8 files)

2018-01-04 Thread Felix Yan via arch-commits
Date: Friday, January 5, 2018 @ 02:57:26
  Author: felixonmars
Revision: 314069

archrelease: copy trunk to staging-x86_64

Added:
  php/repos/staging-x86_64/
  php/repos/staging-x86_64/PKGBUILD
(from rev 314068, php/trunk/PKGBUILD)
  php/repos/staging-x86_64/apache.conf
(from rev 314068, php/trunk/apache.conf)
  php/repos/staging-x86_64/apache.patch
(from rev 314068, php/trunk/apache.patch)
  php/repos/staging-x86_64/generate_patches
(from rev 314068, php/trunk/generate_patches)
  php/repos/staging-x86_64/php-fpm.patch
(from rev 314068, php/trunk/php-fpm.patch)
  php/repos/staging-x86_64/php-fpm.tmpfiles
(from rev 314068, php/trunk/php-fpm.tmpfiles)
  php/repos/staging-x86_64/php.ini.patch
(from rev 314068, php/trunk/php.ini.patch)

--+
 PKGBUILD |  333 +
 apache.conf  |   13 ++
 apache.patch |   20 +++
 generate_patches |   48 +++
 php-fpm.patch|   74 +++
 php-fpm.tmpfiles |1 
 php.ini.patch|   78 
 7 files changed, 567 insertions(+)

Copied: php/repos/staging-x86_64/PKGBUILD (from rev 314068, php/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2018-01-05 02:57:26 UTC (rev 314069)
@@ -0,0 +1,333 @@
+# $Id$
+# Maintainer: Pierre Schmitz 
+
+pkgbase=php
+pkgname=('php'
+ 'php-cgi'
+ 'php-apache'
+ 'php-fpm'
+ 'php-embed'
+ 'php-phpdbg'
+ 'php-dblib'
+ 'php-enchant'
+ 'php-gd'
+ 'php-imap'
+ 'php-intl'
+ 'php-sodium'
+ 'php-odbc'
+ 'php-pgsql'
+ 'php-pspell'
+ 'php-snmp'
+ 'php-sqlite'
+ 'php-tidy'
+ 'php-xsl')
+pkgver=7.2.1
+pkgrel=2
+arch=('x86_64')
+license=('PHP')
+url='http://www.php.net'
+makedepends=('apache' 'aspell' 'c-client' 'db' 'enchant' 'gd' 'gmp' 'icu' 
'libsodium' 'libxslt' 'libzip' 'net-snmp'
+ 'postgresql-libs' 'sqlite' 'systemd' 'tidy' 'unixodbc' 'curl' 
'libtool' 'postfix' 'freetds' 'pcre')
+checkdepends=('procps-ng')
+source=("https://php.net/distributions/${pkgbase}-${pkgver}.tar.xz"{,.asc}
+'apache.patch' 'apache.conf' 'php-fpm.patch' 'php-fpm.tmpfiles' 
'php.ini.patch')
+sha512sums=('2445f2cff20214b521c48592e5ab42b770c291702178d7cb2a84912c81b7e5d2cc45948a3a4a7830194fa444708d544c73efbaa8e90c95ab77937f7feffb2ffc'
+'SKIP'
+
'65ea5cb38c1fc1874b2a4d08bc52443f9ed5dcc92cf99023a74292c78f9074516296f56c768f7efa8a1f0838feac47b356d3da6fdb1199419bebec3a93204ae6'
+
'eccbe1a0c7b2757ab3c982c871cc591a66ad70f085aaa0d44f93cacacedc7b8fd21b8d0c66471327ff070db1bab1ab83a802f6fa190f33bdd74c134975e3910e'
+
'87453c9f41204bc7a20cbf2a85ee44965f7754529e2c17fb60bdfe42ded7a894d6e7fcc30fe6c650ea5f92f95920161522ef3ce0f355686a2fed7f0857abdd5c'
+
'824e9a0d10063283357d49a81ab49bf834afd24f098482bdbaa9ab60bbad2b0dea6f5879259b73717d437626b02fb4f2d3ef68b7bcbb26bee274a7b61144720f'
+
'1606178f55dee8ca6a3cf47c7db486dca0c261bfffbaf4f69450a3497643910c65f8ee1543839ae4213d8b396afc6e5f86141accac553545c35fe234a50f56e6')
+validpgpkeys=('B1B44D8F021E4E2D6021E995DC9FF8D3EE5AF27F'
+  '1729F83938DA44E27BA0F4D3DBDB397470D12172')
+
+prepare() {
+   cd ${srcdir}/${pkgbase}-${pkgver}
+
+   patch -p0 -i ${srcdir}/apache.patch
+   patch -p0 -i ${srcdir}/php-fpm.patch
+   patch -p0 -i ${srcdir}/php.ini.patch
+
+   rm tests/output/stream_isatty_*.phpt
+}
+
+build() {
+   local _phpconfig="--srcdir=../${pkgbase}-${pkgver} \
+   --config-cache \
+   --prefix=/usr \
+   --sbindir=/usr/bin \
+   --sysconfdir=/etc/php \
+   --localstatedir=/var \
+   --with-layout=GNU \
+   --with-config-file-path=/etc/php \
+   --with-config-file-scan-dir=/etc/php/conf.d \
+   --disable-rpath \
+   --mandir=/usr/share/man \
+   --without-pear \
+   "
+
+   local _phpextensions="\
+   --enable-bcmath=shared \
+   --enable-calendar=shared \
+   --enable-dba=shared \
+   --enable-exif=shared \
+   --enable-ftp=shared \
+   --enable-intl=shared \
+   --enable-mbstring \
+   --enable-shmop=shared \
+   --enable-soap=shared \
+   --enable-sockets=shared \
+   --enable-sysvmsg=shared \
+   --enable-sysvsem=shared \
+   --enable-sysvshm=shared \
+   --enable-zip=shared \
+   --with-bz2=shared \
+   --with-curl=shared \
+   --with-db4=/usr \
+   --with-enchant=shared,/usr \
+   --with-freetype-dir=/usr \
+   

[arch-commits] Commit in php/repos (8 files)

2018-01-02 Thread Pierre Schmitz via arch-commits
Date: Wednesday, January 3, 2018 @ 05:04:39
  Author: pierre
Revision: 313938

archrelease: copy trunk to testing-x86_64

Added:
  php/repos/testing-x86_64/
  php/repos/testing-x86_64/PKGBUILD
(from rev 313937, php/trunk/PKGBUILD)
  php/repos/testing-x86_64/apache.conf
(from rev 313937, php/trunk/apache.conf)
  php/repos/testing-x86_64/apache.patch
(from rev 313937, php/trunk/apache.patch)
  php/repos/testing-x86_64/generate_patches
(from rev 313937, php/trunk/generate_patches)
  php/repos/testing-x86_64/php-fpm.patch
(from rev 313937, php/trunk/php-fpm.patch)
  php/repos/testing-x86_64/php-fpm.tmpfiles
(from rev 313937, php/trunk/php-fpm.tmpfiles)
  php/repos/testing-x86_64/php.ini.patch
(from rev 313937, php/trunk/php.ini.patch)

--+
 PKGBUILD |  333 +
 apache.conf  |   13 ++
 apache.patch |   20 +++
 generate_patches |   48 +++
 php-fpm.patch|   74 +++
 php-fpm.tmpfiles |1 
 php.ini.patch|   78 
 7 files changed, 567 insertions(+)

Copied: php/repos/testing-x86_64/PKGBUILD (from rev 313937, php/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2018-01-03 05:04:39 UTC (rev 313938)
@@ -0,0 +1,333 @@
+# $Id$
+# Maintainer: Pierre Schmitz 
+
+pkgbase=php
+pkgname=('php'
+ 'php-cgi'
+ 'php-apache'
+ 'php-fpm'
+ 'php-embed'
+ 'php-phpdbg'
+ 'php-dblib'
+ 'php-enchant'
+ 'php-gd'
+ 'php-imap'
+ 'php-intl'
+ 'php-sodium'
+ 'php-odbc'
+ 'php-pgsql'
+ 'php-pspell'
+ 'php-snmp'
+ 'php-sqlite'
+ 'php-tidy'
+ 'php-xsl')
+pkgver=7.2.1
+pkgrel=1
+arch=('x86_64')
+license=('PHP')
+url='http://www.php.net'
+makedepends=('apache' 'aspell' 'c-client' 'db' 'enchant' 'gd' 'gmp' 'icu' 
'libsodium' 'libxslt' 'libzip' 'net-snmp'
+ 'postgresql-libs' 'sqlite' 'systemd' 'tidy' 'unixodbc' 'curl' 
'libtool' 'postfix' 'freetds' 'pcre')
+checkdepends=('procps-ng')
+source=("https://php.net/distributions/${pkgbase}-${pkgver}.tar.xz"{,.asc}
+'apache.patch' 'apache.conf' 'php-fpm.patch' 'php-fpm.tmpfiles' 
'php.ini.patch')
+sha256sums=('6c6cf82fda6660ed963821eb0525214bb3547e8e29f447b9c15b2d8e6efd8822'
+'SKIP'
+'07acff660e194197cfbcc955c0d362d6de063e6475668f3df03bfff023af11ed'
+'ebc0af1ef3a6baccb013d0ccb29923895a7b22ff2d032e3bba802dc6328301ce'
+'d62ffe6a693336752d4decb2acba09b67bdf7cad19807eccf8795f9386303923'
+'640dba0d960bfeaae9ad38d2826d3f6b5d6c175a4d3e16664eefff29141faad5'
+'6725b16ecbf423ef105c2f5fd16bea6affc7c88b67c52f123cf767812d7dd5de')
+validpgpkeys=('B1B44D8F021E4E2D6021E995DC9FF8D3EE5AF27F'
+  '1729F83938DA44E27BA0F4D3DBDB397470D12172')
+
+prepare() {
+   cd ${srcdir}/${pkgbase}-${pkgver}
+
+   patch -p0 -i ${srcdir}/apache.patch
+   patch -p0 -i ${srcdir}/php-fpm.patch
+   patch -p0 -i ${srcdir}/php.ini.patch
+
+   rm tests/output/stream_isatty_*.phpt
+}
+
+build() {
+   local _phpconfig="--srcdir=../${pkgbase}-${pkgver} \
+   --config-cache \
+   --prefix=/usr \
+   --sbindir=/usr/bin \
+   --sysconfdir=/etc/php \
+   --localstatedir=/var \
+   --with-layout=GNU \
+   --with-config-file-path=/etc/php \
+   --with-config-file-scan-dir=/etc/php/conf.d \
+   --disable-rpath \
+   --mandir=/usr/share/man \
+   --without-pear \
+   "
+
+   local _phpextensions="\
+   --enable-bcmath=shared \
+   --enable-calendar=shared \
+   --enable-dba=shared \
+   --enable-exif=shared \
+   --enable-ftp=shared \
+   --enable-intl=shared \
+   --enable-mbstring \
+   --enable-shmop=shared \
+   --enable-soap=shared \
+   --enable-sockets=shared \
+   --enable-sysvmsg=shared \
+   --enable-sysvsem=shared \
+   --enable-sysvshm=shared \
+   --enable-zip=shared \
+   --with-bz2=shared \
+   --with-curl=shared \
+   --with-db4=/usr \
+   --with-enchant=shared,/usr \
+   --with-freetype-dir=/usr \
+   --with-gd=shared,/usr \
+   --with-gdbm \
+   --with-gettext=shared \
+   --with-gmp=shared \
+   --with-iconv=shared \
+   --with-imap-ssl \
+   --with-imap=shared \
+   --with-kerberos=/usr \
+   --with-ldap=shared \
+   --with-ldap-sasl \
+   --with-libzip \
+   

[arch-commits] Commit in php/repos (8 files)

2017-12-03 Thread Pierre Schmitz via arch-commits
Date: Sunday, December 3, 2017 @ 13:56:37
  Author: pierre
Revision: 311557

archrelease: copy trunk to staging-x86_64

Added:
  php/repos/staging-x86_64/
  php/repos/staging-x86_64/PKGBUILD
(from rev 311556, php/trunk/PKGBUILD)
  php/repos/staging-x86_64/apache.conf
(from rev 311556, php/trunk/apache.conf)
  php/repos/staging-x86_64/apache.patch
(from rev 311556, php/trunk/apache.patch)
  php/repos/staging-x86_64/generate_patches
(from rev 311556, php/trunk/generate_patches)
  php/repos/staging-x86_64/php-fpm.patch
(from rev 311556, php/trunk/php-fpm.patch)
  php/repos/staging-x86_64/php-fpm.tmpfiles
(from rev 311556, php/trunk/php-fpm.tmpfiles)
  php/repos/staging-x86_64/php.ini.patch
(from rev 311556, php/trunk/php.ini.patch)

--+
 PKGBUILD |  332 +
 apache.conf  |   13 ++
 apache.patch |   20 +++
 generate_patches |   48 +++
 php-fpm.patch|   74 +++
 php-fpm.tmpfiles |1 
 php.ini.patch|   78 
 7 files changed, 566 insertions(+)

Copied: php/repos/staging-x86_64/PKGBUILD (from rev 311556, php/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2017-12-03 13:56:37 UTC (rev 311557)
@@ -0,0 +1,332 @@
+# $Id$
+# Maintainer: Pierre Schmitz 
+
+pkgbase=php
+pkgname=('php'
+ 'php-cgi'
+ 'php-apache'
+ 'php-fpm'
+ 'php-embed'
+ 'php-phpdbg'
+ 'php-dblib'
+ 'php-enchant'
+ 'php-gd'
+ 'php-imap'
+ 'php-intl'
+ 'php-sodium'
+ 'php-odbc'
+ 'php-pgsql'
+ 'php-pspell'
+ 'php-snmp'
+ 'php-sqlite'
+ 'php-tidy'
+ 'php-xsl')
+pkgver=7.2.0
+pkgrel=1
+arch=('x86_64')
+license=('PHP')
+url='http://www.php.net'
+makedepends=('apache' 'aspell' 'c-client' 'db' 'enchant' 'gd' 'gmp' 'icu' 
'libsodium' 'libxslt' 'libzip' 'net-snmp'
+ 'postgresql-libs' 'sqlite' 'systemd' 'tidy' 'unixodbc' 'curl' 
'libtool' 'postfix' 'freetds' 'pcre')
+checkdepends=('procps-ng')
+source=("https://php.net/distributions/${pkgbase}-${pkgver}.tar.xz"{,.asc}
+'apache.patch' 'apache.conf' 'php-fpm.patch' 'php-fpm.tmpfiles' 
'php.ini.patch')
+sha256sums=('87572a6b924670a5d4aac276aaa4a94321936283df391d702c845ffc112db095'
+'SKIP'
+'07acff660e194197cfbcc955c0d362d6de063e6475668f3df03bfff023af11ed'
+'ebc0af1ef3a6baccb013d0ccb29923895a7b22ff2d032e3bba802dc6328301ce'
+'d62ffe6a693336752d4decb2acba09b67bdf7cad19807eccf8795f9386303923'
+'640dba0d960bfeaae9ad38d2826d3f6b5d6c175a4d3e16664eefff29141faad5'
+'6725b16ecbf423ef105c2f5fd16bea6affc7c88b67c52f123cf767812d7dd5de')
+validpgpkeys=('B1B44D8F021E4E2D6021E995DC9FF8D3EE5AF27F')
+
+prepare() {
+   cd ${srcdir}/${pkgbase}-${pkgver}
+
+   patch -p0 -i ${srcdir}/apache.patch
+   patch -p0 -i ${srcdir}/php-fpm.patch
+   patch -p0 -i ${srcdir}/php.ini.patch
+
+   rm tests/output/stream_isatty_*.phpt
+}
+
+build() {
+   local _phpconfig="--srcdir=../${pkgbase}-${pkgver} \
+   --config-cache \
+   --prefix=/usr \
+   --sbindir=/usr/bin \
+   --sysconfdir=/etc/php \
+   --localstatedir=/var \
+   --with-layout=GNU \
+   --with-config-file-path=/etc/php \
+   --with-config-file-scan-dir=/etc/php/conf.d \
+   --disable-rpath \
+   --mandir=/usr/share/man \
+   --without-pear \
+   "
+
+   local _phpextensions="\
+   --enable-bcmath=shared \
+   --enable-calendar=shared \
+   --enable-dba=shared \
+   --enable-exif=shared \
+   --enable-ftp=shared \
+   --enable-intl=shared \
+   --enable-mbstring \
+   --enable-shmop=shared \
+   --enable-soap=shared \
+   --enable-sockets=shared \
+   --enable-sysvmsg=shared \
+   --enable-sysvsem=shared \
+   --enable-sysvshm=shared \
+   --enable-zip=shared \
+   --with-bz2=shared \
+   --with-curl=shared \
+   --with-db4=/usr \
+   --with-enchant=shared,/usr \
+   --with-freetype-dir=/usr \
+   --with-gd=shared,/usr \
+   --with-gdbm \
+   --with-gettext=shared \
+   --with-gmp=shared \
+   --with-iconv=shared \
+   --with-imap-ssl \
+   --with-imap=shared \
+   --with-kerberos=/usr \
+   --with-ldap=shared \
+   --with-ldap-sasl \
+   --with-libzip \
+   --with-mhash \
+   

[arch-commits] Commit in php/repos (8 files)

2017-11-22 Thread Pierre Schmitz
Date: Wednesday, November 22, 2017 @ 15:25:27
  Author: pierre
Revision: 310622

archrelease: copy trunk to staging-x86_64

Added:
  php/repos/staging-x86_64/
  php/repos/staging-x86_64/PKGBUILD
(from rev 310621, php/trunk/PKGBUILD)
  php/repos/staging-x86_64/apache.conf
(from rev 310621, php/trunk/apache.conf)
  php/repos/staging-x86_64/apache.patch
(from rev 310621, php/trunk/apache.patch)
  php/repos/staging-x86_64/generate_patches
(from rev 310621, php/trunk/generate_patches)
  php/repos/staging-x86_64/php-fpm.patch
(from rev 310621, php/trunk/php-fpm.patch)
  php/repos/staging-x86_64/php-fpm.tmpfiles
(from rev 310621, php/trunk/php-fpm.tmpfiles)
  php/repos/staging-x86_64/php.ini.patch
(from rev 310621, php/trunk/php.ini.patch)

--+
 PKGBUILD |  332 +
 apache.conf  |   13 ++
 apache.patch |   20 +++
 generate_patches |   48 +++
 php-fpm.patch|   74 +++
 php-fpm.tmpfiles |1 
 php.ini.patch|   97 +++
 7 files changed, 585 insertions(+)

Copied: php/repos/staging-x86_64/PKGBUILD (from rev 310621, php/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2017-11-22 15:25:27 UTC (rev 310622)
@@ -0,0 +1,332 @@
+# $Id$
+# Maintainer: Pierre Schmitz 
+
+pkgbase=php
+pkgname=('php'
+ 'php-cgi'
+ 'php-apache'
+ 'php-fpm'
+ 'php-embed'
+ 'php-phpdbg'
+ 'php-dblib'
+ 'php-enchant'
+ 'php-gd'
+ 'php-imap'
+ 'php-intl'
+ 'php-mcrypt'
+ 'php-odbc'
+ 'php-pgsql'
+ 'php-pspell'
+ 'php-snmp'
+ 'php-sqlite'
+ 'php-tidy'
+ 'php-xsl')
+pkgver=7.1.11
+pkgrel=3
+arch=('x86_64')
+license=('PHP')
+url='http://www.php.net'
+makedepends=('apache' 'aspell' 'c-client' 'db' 'enchant' 'gd' 'gmp' 'icu' 
'libmcrypt' 'libxslt' 'libzip' 'net-snmp'
+ 'postgresql-libs' 'sqlite' 'systemd' 'tidy' 'unixodbc' 'curl' 
'libtool' 'postfix' 'freetds' 'pcre')
+checkdepends=('procps-ng')
+source=("https://php.net/distributions/${pkgbase}-${pkgver}.tar.xz"{,.asc}
+'apache.patch' 'apache.conf' 'php-fpm.patch' 'php-fpm.tmpfiles' 
'php.ini.patch')
+sha256sums=('074093e9d7d21afedc5106904218a80a47b854abe368d2728ed22184c884893e'
+'SKIP'
+'258b33b6531b1128d9804c8b608b6013423a421edcf764747042d07e79ec6df3'
+'ebc0af1ef3a6baccb013d0ccb29923895a7b22ff2d032e3bba802dc6328301ce'
+'7d982a3cefb3eaec0b3458340e4991c2959c10d1518ecb7c1d041884b14efc73'
+'640dba0d960bfeaae9ad38d2826d3f6b5d6c175a4d3e16664eefff29141faad5'
+'78f60b1d9f3a0ef8af77208feed76e303b3a13e93b80613c1e5a729004a5343c')
+validpgpkeys=('A917B1ECDA84AEC2B568FED6F50ABC807BD5DCD0'
+  '528995BFEDFBA7191D46839EF9BA0ADA31CBD89E')
+
+prepare() {
+   cd ${srcdir}/${pkgbase}-${pkgver}
+
+   patch -p0 -i ${srcdir}/apache.patch
+   patch -p0 -i ${srcdir}/php-fpm.patch
+   patch -p0 -i ${srcdir}/php.ini.patch
+}
+
+build() {
+   local _phpconfig="--srcdir=../${pkgbase}-${pkgver} \
+   --config-cache \
+   --prefix=/usr \
+   --sbindir=/usr/bin \
+   --sysconfdir=/etc/php \
+   --localstatedir=/var \
+   --with-layout=GNU \
+   --with-config-file-path=/etc/php \
+   --with-config-file-scan-dir=/etc/php/conf.d \
+   --disable-rpath \
+   --mandir=/usr/share/man \
+   --without-pear \
+   "
+
+   local _phpextensions="\
+   --enable-bcmath=shared \
+   --enable-calendar=shared \
+   --enable-dba=shared \
+   --enable-exif=shared \
+   --enable-ftp=shared \
+   --enable-gd-native-ttf \
+   --enable-intl=shared \
+   --enable-mbstring \
+   --enable-shmop=shared \
+   --enable-soap=shared \
+   --enable-sockets=shared \
+   --enable-sysvmsg=shared \
+   --enable-sysvsem=shared \
+   --enable-sysvshm=shared \
+   --enable-zip=shared \
+   --with-bz2=shared \
+   --with-curl=shared \
+   --with-db4=/usr \
+   --with-enchant=shared,/usr \
+   --with-freetype-dir=/usr \
+   --with-gd=shared,/usr \
+   --with-gdbm \
+   --with-gettext=shared \
+   --with-gmp=shared \
+   --with-iconv=shared \
+   --with-imap-ssl \
+   --with-imap=shared \
+   --with-kerberos=/usr \
+   --with-ldap=shared \
+   --with-ldap-sasl \
+   --with-libzip \
+   

[arch-commits] Commit in php/repos (8 files)

2017-11-12 Thread Evangelos Foutras
Date: Sunday, November 12, 2017 @ 13:40:55
  Author: foutrelis
Revision: 309630

archrelease: copy trunk to staging-x86_64

Added:
  php/repos/staging-x86_64/
  php/repos/staging-x86_64/PKGBUILD
(from rev 309629, php/trunk/PKGBUILD)
  php/repos/staging-x86_64/apache.conf
(from rev 309629, php/trunk/apache.conf)
  php/repos/staging-x86_64/apache.patch
(from rev 309629, php/trunk/apache.patch)
  php/repos/staging-x86_64/generate_patches
(from rev 309629, php/trunk/generate_patches)
  php/repos/staging-x86_64/php-fpm.patch
(from rev 309629, php/trunk/php-fpm.patch)
  php/repos/staging-x86_64/php-fpm.tmpfiles
(from rev 309629, php/trunk/php-fpm.tmpfiles)
  php/repos/staging-x86_64/php.ini.patch
(from rev 309629, php/trunk/php.ini.patch)

--+
 PKGBUILD |  332 +
 apache.conf  |   13 ++
 apache.patch |   20 +++
 generate_patches |   48 +++
 php-fpm.patch|   74 +++
 php-fpm.tmpfiles |1 
 php.ini.patch|   97 +++
 7 files changed, 585 insertions(+)

Copied: php/repos/staging-x86_64/PKGBUILD (from rev 309629, php/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2017-11-12 13:40:55 UTC (rev 309630)
@@ -0,0 +1,332 @@
+# $Id$
+# Maintainer: Pierre Schmitz 
+
+pkgbase=php
+pkgname=('php'
+ 'php-cgi'
+ 'php-apache'
+ 'php-fpm'
+ 'php-embed'
+ 'php-phpdbg'
+ 'php-dblib'
+ 'php-enchant'
+ 'php-gd'
+ 'php-imap'
+ 'php-intl'
+ 'php-mcrypt'
+ 'php-odbc'
+ 'php-pgsql'
+ 'php-pspell'
+ 'php-snmp'
+ 'php-sqlite'
+ 'php-tidy'
+ 'php-xsl')
+pkgver=7.1.11
+pkgrel=2
+arch=('i686' 'x86_64')
+license=('PHP')
+url='http://www.php.net'
+makedepends=('apache' 'aspell' 'c-client' 'db' 'enchant' 'gd' 'gmp' 'icu' 
'libmcrypt' 'libxslt' 'libzip' 'net-snmp'
+ 'postgresql-libs' 'sqlite' 'systemd' 'tidy' 'unixodbc' 'curl' 
'libtool' 'postfix' 'freetds' 'pcre')
+checkdepends=('procps-ng')
+source=("https://php.net/distributions/${pkgbase}-${pkgver}.tar.xz"{,.asc}
+'apache.patch' 'apache.conf' 'php-fpm.patch' 'php-fpm.tmpfiles' 
'php.ini.patch')
+sha256sums=('074093e9d7d21afedc5106904218a80a47b854abe368d2728ed22184c884893e'
+'SKIP'
+'258b33b6531b1128d9804c8b608b6013423a421edcf764747042d07e79ec6df3'
+'ebc0af1ef3a6baccb013d0ccb29923895a7b22ff2d032e3bba802dc6328301ce'
+'7d982a3cefb3eaec0b3458340e4991c2959c10d1518ecb7c1d041884b14efc73'
+'640dba0d960bfeaae9ad38d2826d3f6b5d6c175a4d3e16664eefff29141faad5'
+'78f60b1d9f3a0ef8af77208feed76e303b3a13e93b80613c1e5a729004a5343c')
+validpgpkeys=('A917B1ECDA84AEC2B568FED6F50ABC807BD5DCD0'
+  '528995BFEDFBA7191D46839EF9BA0ADA31CBD89E')
+
+prepare() {
+   cd ${srcdir}/${pkgbase}-${pkgver}
+
+   patch -p0 -i ${srcdir}/apache.patch
+   patch -p0 -i ${srcdir}/php-fpm.patch
+   patch -p0 -i ${srcdir}/php.ini.patch
+}
+
+build() {
+   local _phpconfig="--srcdir=../${pkgbase}-${pkgver} \
+   --config-cache \
+   --prefix=/usr \
+   --sbindir=/usr/bin \
+   --sysconfdir=/etc/php \
+   --localstatedir=/var \
+   --with-layout=GNU \
+   --with-config-file-path=/etc/php \
+   --with-config-file-scan-dir=/etc/php/conf.d \
+   --disable-rpath \
+   --mandir=/usr/share/man \
+   --without-pear \
+   "
+
+   local _phpextensions="\
+   --enable-bcmath=shared \
+   --enable-calendar=shared \
+   --enable-dba=shared \
+   --enable-exif=shared \
+   --enable-ftp=shared \
+   --enable-gd-native-ttf \
+   --enable-intl=shared \
+   --enable-mbstring \
+   --enable-shmop=shared \
+   --enable-soap=shared \
+   --enable-sockets=shared \
+   --enable-sysvmsg=shared \
+   --enable-sysvsem=shared \
+   --enable-sysvshm=shared \
+   --enable-zip=shared \
+   --with-bz2=shared \
+   --with-curl=shared \
+   --with-db4=/usr \
+   --with-enchant=shared,/usr \
+   --with-freetype-dir=/usr \
+   --with-gd=shared,/usr \
+   --with-gdbm \
+   --with-gettext=shared \
+   --with-gmp=shared \
+   --with-iconv=shared \
+   --with-imap-ssl \
+   --with-imap=shared \
+   --with-kerberos=/usr \
+   --with-ldap=shared \
+   --with-ldap-sasl \
+   --with-libzip \
+   

[arch-commits] Commit in php/repos (8 files)

2012-04-29 Thread Pierre Schmitz
Date: Sunday, April 29, 2012 @ 02:41:35
  Author: pierre
Revision: 157756

db-move: moved php from [staging] to [testing] (i686)

Added:
  php/repos/testing-i686/
  php/repos/testing-i686/PKGBUILD
(from rev 157751, php/repos/staging-i686/PKGBUILD)
  php/repos/testing-i686/apache.conf
(from rev 157751, php/repos/staging-i686/apache.conf)
  php/repos/testing-i686/logrotate.d.php-fpm
(from rev 157751, php/repos/staging-i686/logrotate.d.php-fpm)
  php/repos/testing-i686/php-fpm.conf.in.patch
(from rev 157751, php/repos/staging-i686/php-fpm.conf.in.patch)
  php/repos/testing-i686/php.ini.patch
(from rev 157751, php/repos/staging-i686/php.ini.patch)
  php/repos/testing-i686/rc.d.php-fpm
(from rev 157751, php/repos/staging-i686/rc.d.php-fpm)
Deleted:
  php/repos/staging-i686/

---+
 PKGBUILD  |  342 
 apache.conf   |   13 +
 logrotate.d.php-fpm   |6 
 php-fpm.conf.in.patch |   52 +++
 php.ini.patch |  122 +
 rc.d.php-fpm  |  158 ++
 6 files changed, 693 insertions(+)

Copied: php/repos/testing-i686/PKGBUILD (from rev 157751, 
php/repos/staging-i686/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2012-04-29 06:41:35 UTC (rev 157756)
@@ -0,0 +1,342 @@
+# $Id$
+# Maintainer: Pierre Schmitz pie...@archlinux.de
+
+pkgbase=php
+pkgname=('php'
+ 'php-cgi'
+ 'php-apache'
+ 'php-fpm'
+ 'php-embed'
+ 'php-pear'
+ 'php-enchant'
+ 'php-gd'
+ 'php-intl'
+ 'php-ldap'
+ 'php-mcrypt'
+ 'php-mssql'
+ 'php-odbc'
+ 'php-pgsql'
+ 'php-pspell'
+ 'php-snmp'
+ 'php-sqlite'
+ 'php-tidy'
+ 'php-xsl')
+pkgver=5.4.1
+pkgrel=2
+arch=('i686' 'x86_64')
+license=('PHP')
+url='http://www.php.net'
+makedepends=('apache' 'imap' 'postgresql-libs' 'libldap' 'postfix' 'libvpx'
+ 'sqlite' 'unixodbc' 'net-snmp' 'libzip' 'enchant' 'file' 'freetds'
+ 'libmcrypt' 'tidyhtml' 'aspell' 'libltdl' 'libpng' 'libjpeg' 'icu'
+ 'curl' 'libxslt' 'openssl' 'bzip2' 'db' 'gmp' 'freetype2')
+source=(http://www.php.net/distributions/${pkgbase}-${pkgver}.tar.bz2;
+'php.ini.patch' 'apache.conf' 'rc.d.php-fpm' 'php-fpm.conf.in.patch'
+'logrotate.d.php-fpm')
+md5sums=('5b9529ed89dbc48c498e9693d1af3caf'
+ '0b0bc7a917fc592bdf11dcd3c5c255e9'
+ 'dec2cbaad64e3abf4f0ec70e1de4e8e9'
+ 'b01be5f816988fcee7e78225836e5e27'
+ '59b3a25f9eb3afc02f1adf9ee699808c'
+ '07c4e412909ac65a44ec90e7a2c4bade')
+
+build() {
+   phpconfig=--srcdir=../${pkgbase}-${pkgver} \
+   --config-cache \
+   --prefix=/usr \
+   --sysconfdir=/etc/php \
+   --localstatedir=/var \
+   --with-layout=GNU \
+   --with-config-file-path=/etc/php \
+   --with-config-file-scan-dir=/etc/php/conf.d \
+   --disable-rpath \
+   --mandir=/usr/share/man \
+   --without-pear \
+   
+
+   phpextensions=--enable-bcmath=shared \
+   --enable-calendar=shared \
+   --enable-dba=shared \
+   --enable-exif=shared \
+   --enable-ftp=shared \
+   --enable-gd-native-ttf \
+   --enable-intl=shared \
+   --enable-mbstring \
+   --enable-phar=shared \
+   --enable-posix=shared \
+   --enable-shmop=shared \
+   --enable-soap=shared \
+   --enable-sockets=shared \
+   --enable-sysvmsg=shared \
+   --enable-sysvsem=shared \
+   --enable-sysvshm=shared \
+   --enable-zip=shared \
+   --with-bz2=shared \
+   --with-curl=shared \
+   --with-db4=/usr \
+   --with-enchant=shared,/usr \
+   --with-freetype-dir=/usr \
+   --with-gd=shared \
+   --with-gdbm \
+   --with-gettext=shared \
+   --with-gmp=shared \
+   --with-iconv=shared \
+   --with-icu-dir=/usr \
+   --with-imap-ssl \
+   --with-imap=shared \
+   --with-jpeg-dir=/usr \
+   --with-vpx-dir=/usr \
+   --with-ldap=shared \
+   --with-ldap-sasl \
+   --with-mcrypt=shared \
+   --with-mhash \
+   --with-mssql=shared \
+   --with-mysql-sock=/var/run/mysqld/mysqld.sock \
+   --with-mysql=shared,mysqlnd \
+   --with-mysqli=shared,mysqlnd \
+   --with-openssl=shared \
+   --with-pcre-regex=/usr \
+   --with-pdo-mysql=shared,mysqlnd \
+  

[arch-commits] Commit in php/repos (8 files)

2012-04-29 Thread Pierre Schmitz
Date: Sunday, April 29, 2012 @ 02:41:37
  Author: pierre
Revision: 157757

db-move: moved php from [staging] to [testing] (x86_64)

Added:
  php/repos/testing-x86_64/
  php/repos/testing-x86_64/PKGBUILD
(from rev 157751, php/repos/staging-x86_64/PKGBUILD)
  php/repos/testing-x86_64/apache.conf
(from rev 157751, php/repos/staging-x86_64/apache.conf)
  php/repos/testing-x86_64/logrotate.d.php-fpm
(from rev 157751, php/repos/staging-x86_64/logrotate.d.php-fpm)
  php/repos/testing-x86_64/php-fpm.conf.in.patch
(from rev 157751, php/repos/staging-x86_64/php-fpm.conf.in.patch)
  php/repos/testing-x86_64/php.ini.patch
(from rev 157751, php/repos/staging-x86_64/php.ini.patch)
  php/repos/testing-x86_64/rc.d.php-fpm
(from rev 157751, php/repos/staging-x86_64/rc.d.php-fpm)
Deleted:
  php/repos/staging-x86_64/

---+
 PKGBUILD  |  342 
 apache.conf   |   13 +
 logrotate.d.php-fpm   |6 
 php-fpm.conf.in.patch |   52 +++
 php.ini.patch |  122 +
 rc.d.php-fpm  |  158 ++
 6 files changed, 693 insertions(+)

Copied: php/repos/testing-x86_64/PKGBUILD (from rev 157751, 
php/repos/staging-x86_64/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2012-04-29 06:41:37 UTC (rev 157757)
@@ -0,0 +1,342 @@
+# $Id$
+# Maintainer: Pierre Schmitz pie...@archlinux.de
+
+pkgbase=php
+pkgname=('php'
+ 'php-cgi'
+ 'php-apache'
+ 'php-fpm'
+ 'php-embed'
+ 'php-pear'
+ 'php-enchant'
+ 'php-gd'
+ 'php-intl'
+ 'php-ldap'
+ 'php-mcrypt'
+ 'php-mssql'
+ 'php-odbc'
+ 'php-pgsql'
+ 'php-pspell'
+ 'php-snmp'
+ 'php-sqlite'
+ 'php-tidy'
+ 'php-xsl')
+pkgver=5.4.1
+pkgrel=2
+arch=('i686' 'x86_64')
+license=('PHP')
+url='http://www.php.net'
+makedepends=('apache' 'imap' 'postgresql-libs' 'libldap' 'postfix' 'libvpx'
+ 'sqlite' 'unixodbc' 'net-snmp' 'libzip' 'enchant' 'file' 'freetds'
+ 'libmcrypt' 'tidyhtml' 'aspell' 'libltdl' 'libpng' 'libjpeg' 'icu'
+ 'curl' 'libxslt' 'openssl' 'bzip2' 'db' 'gmp' 'freetype2')
+source=(http://www.php.net/distributions/${pkgbase}-${pkgver}.tar.bz2;
+'php.ini.patch' 'apache.conf' 'rc.d.php-fpm' 'php-fpm.conf.in.patch'
+'logrotate.d.php-fpm')
+md5sums=('5b9529ed89dbc48c498e9693d1af3caf'
+ '0b0bc7a917fc592bdf11dcd3c5c255e9'
+ 'dec2cbaad64e3abf4f0ec70e1de4e8e9'
+ 'b01be5f816988fcee7e78225836e5e27'
+ '59b3a25f9eb3afc02f1adf9ee699808c'
+ '07c4e412909ac65a44ec90e7a2c4bade')
+
+build() {
+   phpconfig=--srcdir=../${pkgbase}-${pkgver} \
+   --config-cache \
+   --prefix=/usr \
+   --sysconfdir=/etc/php \
+   --localstatedir=/var \
+   --with-layout=GNU \
+   --with-config-file-path=/etc/php \
+   --with-config-file-scan-dir=/etc/php/conf.d \
+   --disable-rpath \
+   --mandir=/usr/share/man \
+   --without-pear \
+   
+
+   phpextensions=--enable-bcmath=shared \
+   --enable-calendar=shared \
+   --enable-dba=shared \
+   --enable-exif=shared \
+   --enable-ftp=shared \
+   --enable-gd-native-ttf \
+   --enable-intl=shared \
+   --enable-mbstring \
+   --enable-phar=shared \
+   --enable-posix=shared \
+   --enable-shmop=shared \
+   --enable-soap=shared \
+   --enable-sockets=shared \
+   --enable-sysvmsg=shared \
+   --enable-sysvsem=shared \
+   --enable-sysvshm=shared \
+   --enable-zip=shared \
+   --with-bz2=shared \
+   --with-curl=shared \
+   --with-db4=/usr \
+   --with-enchant=shared,/usr \
+   --with-freetype-dir=/usr \
+   --with-gd=shared \
+   --with-gdbm \
+   --with-gettext=shared \
+   --with-gmp=shared \
+   --with-iconv=shared \
+   --with-icu-dir=/usr \
+   --with-imap-ssl \
+   --with-imap=shared \
+   --with-jpeg-dir=/usr \
+   --with-vpx-dir=/usr \
+   --with-ldap=shared \
+   --with-ldap-sasl \
+   --with-mcrypt=shared \
+   --with-mhash \
+   --with-mssql=shared \
+   --with-mysql-sock=/var/run/mysqld/mysqld.sock \
+   --with-mysql=shared,mysqlnd \
+   --with-mysqli=shared,mysqlnd \
+   --with-openssl=shared \
+   --with-pcre-regex=/usr \
+   

[arch-commits] Commit in php/repos (8 files)

2012-01-30 Thread Ionut Biru
Date: Monday, January 30, 2012 @ 13:49:21
  Author: ibiru
Revision: 148254

db-move: moved php from [staging] to [testing] (i686)

Added:
  php/repos/testing-i686/
  php/repos/testing-i686/PKGBUILD
(from rev 148047, php/repos/staging-i686/PKGBUILD)
  php/repos/testing-i686/apache.conf
(from rev 148047, php/repos/staging-i686/apache.conf)
  php/repos/testing-i686/logrotate.d.php-fpm
(from rev 148047, php/repos/staging-i686/logrotate.d.php-fpm)
  php/repos/testing-i686/php-fpm.conf.in.patch
(from rev 148047, php/repos/staging-i686/php-fpm.conf.in.patch)
  php/repos/testing-i686/php.ini.patch
(from rev 148047, php/repos/staging-i686/php.ini.patch)
  php/repos/testing-i686/rc.d.php-fpm
(from rev 148047, php/repos/staging-i686/rc.d.php-fpm)
Deleted:
  php/repos/staging-i686/

---+
 PKGBUILD  |  365 
 apache.conf   |   13 +
 logrotate.d.php-fpm   |6 
 php-fpm.conf.in.patch |   52 ++
 php.ini.patch |  126 
 rc.d.php-fpm  |  158 
 6 files changed, 720 insertions(+)

Copied: php/repos/testing-i686/PKGBUILD (from rev 148047, 
php/repos/staging-i686/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2012-01-30 18:49:21 UTC (rev 148254)
@@ -0,0 +1,365 @@
+# $Id$
+# Maintainer: Pierre Schmitz pie...@archlinux.de
+
+pkgbase=php
+pkgname=('php'
+ 'php-cgi'
+ 'php-apache'
+ 'php-fpm'
+ 'php-embed'
+ 'php-pear'
+ 'php-enchant'
+ 'php-gd'
+ 'php-intl'
+ 'php-ldap'
+ 'php-mcrypt'
+ 'php-mssql'
+ 'php-odbc'
+ 'php-pgsql'
+ 'php-pspell'
+ 'php-snmp'
+ 'php-sqlite'
+ 'php-tidy'
+ 'php-xsl')
+pkgver=5.3.9
+_suhosinver=5.3.9-0.9.10
+pkgrel=2
+arch=('i686' 'x86_64')
+license=('PHP')
+url='http://www.php.net'
+makedepends=('apache' 'imap' 'postgresql-libs' 'libldap' 'postfix'
+ 'sqlite3' 'unixodbc' 'net-snmp' 'libzip' 'enchant' 'file' 
'freetds'
+ 'libmcrypt' 'tidyhtml' 'aspell' 'libltdl' 'libpng' 'libjpeg' 'icu'
+ 'curl' 'libxslt' 'openssl' 'bzip2' 'db' 'gmp' 'freetype2')
+source=(http://www.php.net/distributions/${pkgbase}-${pkgver}.tar.bz2;
+http://download.suhosin.org/suhosin-patch-${_suhosinver}.patch.gz;
+http://download.suhosin.org/suhosin-patch-${_suhosinver}.patch.gz.sig;
+'php.ini.patch' 'apache.conf' 'rc.d.php-fpm' 'php-fpm.conf.in.patch'
+'logrotate.d.php-fpm')
+md5sums=('dd3288ed5c08cd61ac5bf619cb357521'
+ 'c099b3d7eac95018ababd41ded7f3066'
+ 'c15d18f846be1d69144a5d0056ee6506'
+ 'ffc338e8ce2a990f6f2a486355bbab65'
+ 'dec2cbaad64e3abf4f0ec70e1de4e8e9'
+ 'b01be5f816988fcee7e78225836e5e27'
+ '740ec5fe2ecfd9d7febd4081c90ec65b'
+ '07c4e412909ac65a44ec90e7a2c4bade')
+
+build() {
+   phpconfig=--srcdir=../${pkgbase}-${pkgver} \
+   --prefix=/usr \
+   --sysconfdir=/etc/php \
+   --localstatedir=/var \
+   --with-layout=GNU \
+   --with-config-file-path=/etc/php \
+   --with-config-file-scan-dir=/etc/php/conf.d \
+   --enable-inline-optimization \
+   --disable-debug \
+   --disable-rpath \
+   --disable-static \
+   --enable-shared \
+   --mandir=/usr/share/man \
+   --without-pear \
+   
+
+   phpextensions=--enable-bcmath=shared \
+   --enable-calendar=shared \
+   --enable-dba=shared \
+   --enable-exif=shared \
+   --enable-ftp=shared \
+   --enable-gd-native-ttf \
+   --enable-intl=shared \
+   --enable-json=shared \
+   --enable-mbregex \
+   --enable-mbstring \
+   --enable-pdo \
+   --enable-phar=shared \
+   --enable-posix=shared \
+   --enable-session \
+   --enable-shmop=shared \
+   --enable-soap=shared \
+   --enable-sockets=shared \
+   --enable-sqlite-utf8 \
+   --enable-sysvmsg=shared \
+   --enable-sysvsem=shared \
+   --enable-sysvshm=shared \
+   --enable-xml \
+   --enable-zip=shared \
+   --with-bz2=shared \
+   --with-curl=shared \
+   --with-db4=/usr \
+   --with-enchant=shared,/usr \
+   --with-freetype-dir=shared,/usr \
+   --with-gd=shared \
+   --with-gdbm=shared \
+   --with-gettext=shared \
+   --with-gmp=shared \
+   --with-iconv=shared \
+   --with-icu-dir=/usr \
+   

[arch-commits] Commit in php/repos (8 files)

2012-01-30 Thread Ionut Biru
Date: Monday, January 30, 2012 @ 13:49:23
  Author: ibiru
Revision: 148255

db-move: moved php from [staging] to [testing] (x86_64)

Added:
  php/repos/testing-x86_64/
  php/repos/testing-x86_64/PKGBUILD
(from rev 148047, php/repos/staging-x86_64/PKGBUILD)
  php/repos/testing-x86_64/apache.conf
(from rev 148047, php/repos/staging-x86_64/apache.conf)
  php/repos/testing-x86_64/logrotate.d.php-fpm
(from rev 148047, php/repos/staging-x86_64/logrotate.d.php-fpm)
  php/repos/testing-x86_64/php-fpm.conf.in.patch
(from rev 148047, php/repos/staging-x86_64/php-fpm.conf.in.patch)
  php/repos/testing-x86_64/php.ini.patch
(from rev 148047, php/repos/staging-x86_64/php.ini.patch)
  php/repos/testing-x86_64/rc.d.php-fpm
(from rev 148047, php/repos/staging-x86_64/rc.d.php-fpm)
Deleted:
  php/repos/staging-x86_64/

---+
 PKGBUILD  |  365 
 apache.conf   |   13 +
 logrotate.d.php-fpm   |6 
 php-fpm.conf.in.patch |   52 ++
 php.ini.patch |  126 
 rc.d.php-fpm  |  158 
 6 files changed, 720 insertions(+)

Copied: php/repos/testing-x86_64/PKGBUILD (from rev 148047, 
php/repos/staging-x86_64/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2012-01-30 18:49:23 UTC (rev 148255)
@@ -0,0 +1,365 @@
+# $Id$
+# Maintainer: Pierre Schmitz pie...@archlinux.de
+
+pkgbase=php
+pkgname=('php'
+ 'php-cgi'
+ 'php-apache'
+ 'php-fpm'
+ 'php-embed'
+ 'php-pear'
+ 'php-enchant'
+ 'php-gd'
+ 'php-intl'
+ 'php-ldap'
+ 'php-mcrypt'
+ 'php-mssql'
+ 'php-odbc'
+ 'php-pgsql'
+ 'php-pspell'
+ 'php-snmp'
+ 'php-sqlite'
+ 'php-tidy'
+ 'php-xsl')
+pkgver=5.3.9
+_suhosinver=5.3.9-0.9.10
+pkgrel=2
+arch=('i686' 'x86_64')
+license=('PHP')
+url='http://www.php.net'
+makedepends=('apache' 'imap' 'postgresql-libs' 'libldap' 'postfix'
+ 'sqlite3' 'unixodbc' 'net-snmp' 'libzip' 'enchant' 'file' 
'freetds'
+ 'libmcrypt' 'tidyhtml' 'aspell' 'libltdl' 'libpng' 'libjpeg' 'icu'
+ 'curl' 'libxslt' 'openssl' 'bzip2' 'db' 'gmp' 'freetype2')
+source=(http://www.php.net/distributions/${pkgbase}-${pkgver}.tar.bz2;
+http://download.suhosin.org/suhosin-patch-${_suhosinver}.patch.gz;
+http://download.suhosin.org/suhosin-patch-${_suhosinver}.patch.gz.sig;
+'php.ini.patch' 'apache.conf' 'rc.d.php-fpm' 'php-fpm.conf.in.patch'
+'logrotate.d.php-fpm')
+md5sums=('dd3288ed5c08cd61ac5bf619cb357521'
+ 'c099b3d7eac95018ababd41ded7f3066'
+ 'c15d18f846be1d69144a5d0056ee6506'
+ 'ffc338e8ce2a990f6f2a486355bbab65'
+ 'dec2cbaad64e3abf4f0ec70e1de4e8e9'
+ 'b01be5f816988fcee7e78225836e5e27'
+ '740ec5fe2ecfd9d7febd4081c90ec65b'
+ '07c4e412909ac65a44ec90e7a2c4bade')
+
+build() {
+   phpconfig=--srcdir=../${pkgbase}-${pkgver} \
+   --prefix=/usr \
+   --sysconfdir=/etc/php \
+   --localstatedir=/var \
+   --with-layout=GNU \
+   --with-config-file-path=/etc/php \
+   --with-config-file-scan-dir=/etc/php/conf.d \
+   --enable-inline-optimization \
+   --disable-debug \
+   --disable-rpath \
+   --disable-static \
+   --enable-shared \
+   --mandir=/usr/share/man \
+   --without-pear \
+   
+
+   phpextensions=--enable-bcmath=shared \
+   --enable-calendar=shared \
+   --enable-dba=shared \
+   --enable-exif=shared \
+   --enable-ftp=shared \
+   --enable-gd-native-ttf \
+   --enable-intl=shared \
+   --enable-json=shared \
+   --enable-mbregex \
+   --enable-mbstring \
+   --enable-pdo \
+   --enable-phar=shared \
+   --enable-posix=shared \
+   --enable-session \
+   --enable-shmop=shared \
+   --enable-soap=shared \
+   --enable-sockets=shared \
+   --enable-sqlite-utf8 \
+   --enable-sysvmsg=shared \
+   --enable-sysvsem=shared \
+   --enable-sysvshm=shared \
+   --enable-xml \
+   --enable-zip=shared \
+   --with-bz2=shared \
+   --with-curl=shared \
+   --with-db4=/usr \
+   --with-enchant=shared,/usr \
+   --with-freetype-dir=shared,/usr \
+   --with-gd=shared \
+   --with-gdbm=shared \
+   --with-gettext=shared \
+   --with-gmp=shared \
+   --with-iconv=shared \
+   

[arch-commits] Commit in php/repos (8 files)

2012-01-09 Thread Stéphane Gaudreault
Date: Monday, January 9, 2012 @ 13:52:57
  Author: stephane
Revision: 146354

db-move: moved php from [staging] to [testing] (i686)

Added:
  php/repos/testing-i686/
  php/repos/testing-i686/PKGBUILD
(from rev 146321, php/repos/staging-i686/PKGBUILD)
  php/repos/testing-i686/apache.conf
(from rev 146321, php/repos/staging-i686/apache.conf)
  php/repos/testing-i686/logrotate.d.php-fpm
(from rev 146321, php/repos/staging-i686/logrotate.d.php-fpm)
  php/repos/testing-i686/php-fpm.conf.in.patch
(from rev 146321, php/repos/staging-i686/php-fpm.conf.in.patch)
  php/repos/testing-i686/php.ini.patch
(from rev 146321, php/repos/staging-i686/php.ini.patch)
  php/repos/testing-i686/rc.d.php-fpm
(from rev 146321, php/repos/staging-i686/rc.d.php-fpm)
Deleted:
  php/repos/staging-i686/

---+
 PKGBUILD  |  365 
 apache.conf   |   13 +
 logrotate.d.php-fpm   |6 
 php-fpm.conf.in.patch |   80 ++
 php.ini.patch |  126 
 rc.d.php-fpm  |  158 
 6 files changed, 748 insertions(+)

Copied: php/repos/testing-i686/PKGBUILD (from rev 146321, 
php/repos/staging-i686/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2012-01-09 18:52:57 UTC (rev 146354)
@@ -0,0 +1,365 @@
+# $Id$
+# Maintainer: Pierre Schmitz pie...@archlinux.de
+
+pkgbase=php
+pkgname=('php'
+ 'php-cgi'
+ 'php-apache'
+ 'php-fpm'
+ 'php-embed'
+ 'php-pear'
+ 'php-enchant'
+ 'php-gd'
+ 'php-intl'
+ 'php-ldap'
+ 'php-mcrypt'
+ 'php-mssql'
+ 'php-odbc'
+ 'php-pgsql'
+ 'php-pspell'
+ 'php-snmp'
+ 'php-sqlite'
+ 'php-tidy'
+ 'php-xsl')
+pkgver=5.3.8
+_suhosinver=5.3.7-0.9.10
+pkgrel=7
+arch=('i686' 'x86_64')
+license=('PHP')
+url='http://www.php.net'
+makedepends=('apache' 'imap' 'postgresql-libs' 'libldap' 'postfix'
+ 'sqlite3' 'unixodbc' 'net-snmp' 'libzip' 'enchant' 'file' 
'freetds'
+ 'libmcrypt' 'tidyhtml' 'aspell' 'libltdl' 'libpng' 'libjpeg' 'icu'
+ 'curl' 'libxslt' 'openssl' 'bzip2' 'db' 'gmp' 'freetype2')
+source=(http://www.php.net/distributions/${pkgbase}-${pkgver}.tar.bz2;
+http://download.suhosin.org/suhosin-patch-${_suhosinver}.patch.gz;
+http://download.suhosin.org/suhosin-patch-${_suhosinver}.patch.gz.sig;
+'php.ini.patch' 'apache.conf' 'rc.d.php-fpm' 'php-fpm.conf.in.patch'
+'logrotate.d.php-fpm')
+md5sums=('704cd414a0565d905e1074ffdc1fadfb'
+ '08582e502fed8221c6577042ca45ddb8'
+ '5bf4473f658404aa9a97bf026ecef8e9'
+ '65606c606df97a0760dfe5aaf9893afc'
+ 'dec2cbaad64e3abf4f0ec70e1de4e8e9'
+ 'b01be5f816988fcee7e78225836e5e27'
+ '09005dabd90c48ddd392b3dbf05f8a82'
+ '07c4e412909ac65a44ec90e7a2c4bade')
+
+build() {
+   phpconfig=--srcdir=../${pkgbase}-${pkgver} \
+   --prefix=/usr \
+   --sysconfdir=/etc/php \
+   --localstatedir=/var \
+   --with-layout=GNU \
+   --with-config-file-path=/etc/php \
+   --with-config-file-scan-dir=/etc/php/conf.d \
+   --enable-inline-optimization \
+   --disable-debug \
+   --disable-rpath \
+   --disable-static \
+   --enable-shared \
+   --mandir=/usr/share/man \
+   --without-pear \
+   
+
+   phpextensions=--enable-bcmath=shared \
+   --enable-calendar=shared \
+   --enable-dba=shared \
+   --enable-exif=shared \
+   --enable-ftp=shared \
+   --enable-gd-native-ttf \
+   --enable-intl=shared \
+   --enable-json=shared \
+   --enable-mbregex \
+   --enable-mbstring \
+   --enable-pdo \
+   --enable-phar=shared \
+   --enable-posix=shared \
+   --enable-session \
+   --enable-shmop=shared \
+   --enable-soap=shared \
+   --enable-sockets=shared \
+   --enable-sqlite-utf8 \
+   --enable-sysvmsg=shared \
+   --enable-sysvsem=shared \
+   --enable-sysvshm=shared \
+   --enable-xml \
+   --enable-zip=shared \
+   --with-bz2=shared \
+   --with-curl=shared \
+   --with-db4=/usr \
+   --with-enchant=shared,/usr \
+   --with-freetype-dir=shared,/usr \
+   --with-gd=shared \
+   --with-gdbm=shared \
+   --with-gettext=shared \
+   --with-gmp=shared \
+   --with-iconv=shared \
+   --with-icu-dir=/usr \
+ 

[arch-commits] Commit in php/repos (8 files)

2012-01-09 Thread Stéphane Gaudreault
Date: Monday, January 9, 2012 @ 13:53:02
  Author: stephane
Revision: 146355

db-move: moved php from [staging] to [testing] (x86_64)

Added:
  php/repos/testing-x86_64/
  php/repos/testing-x86_64/PKGBUILD
(from rev 146321, php/repos/staging-x86_64/PKGBUILD)
  php/repos/testing-x86_64/apache.conf
(from rev 146321, php/repos/staging-x86_64/apache.conf)
  php/repos/testing-x86_64/logrotate.d.php-fpm
(from rev 146321, php/repos/staging-x86_64/logrotate.d.php-fpm)
  php/repos/testing-x86_64/php-fpm.conf.in.patch
(from rev 146321, php/repos/staging-x86_64/php-fpm.conf.in.patch)
  php/repos/testing-x86_64/php.ini.patch
(from rev 146321, php/repos/staging-x86_64/php.ini.patch)
  php/repos/testing-x86_64/rc.d.php-fpm
(from rev 146321, php/repos/staging-x86_64/rc.d.php-fpm)
Deleted:
  php/repos/staging-x86_64/

---+
 PKGBUILD  |  365 
 apache.conf   |   13 +
 logrotate.d.php-fpm   |6 
 php-fpm.conf.in.patch |   80 ++
 php.ini.patch |  126 
 rc.d.php-fpm  |  158 
 6 files changed, 748 insertions(+)

Copied: php/repos/testing-x86_64/PKGBUILD (from rev 146321, 
php/repos/staging-x86_64/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2012-01-09 18:53:02 UTC (rev 146355)
@@ -0,0 +1,365 @@
+# $Id$
+# Maintainer: Pierre Schmitz pie...@archlinux.de
+
+pkgbase=php
+pkgname=('php'
+ 'php-cgi'
+ 'php-apache'
+ 'php-fpm'
+ 'php-embed'
+ 'php-pear'
+ 'php-enchant'
+ 'php-gd'
+ 'php-intl'
+ 'php-ldap'
+ 'php-mcrypt'
+ 'php-mssql'
+ 'php-odbc'
+ 'php-pgsql'
+ 'php-pspell'
+ 'php-snmp'
+ 'php-sqlite'
+ 'php-tidy'
+ 'php-xsl')
+pkgver=5.3.8
+_suhosinver=5.3.7-0.9.10
+pkgrel=7
+arch=('i686' 'x86_64')
+license=('PHP')
+url='http://www.php.net'
+makedepends=('apache' 'imap' 'postgresql-libs' 'libldap' 'postfix'
+ 'sqlite3' 'unixodbc' 'net-snmp' 'libzip' 'enchant' 'file' 
'freetds'
+ 'libmcrypt' 'tidyhtml' 'aspell' 'libltdl' 'libpng' 'libjpeg' 'icu'
+ 'curl' 'libxslt' 'openssl' 'bzip2' 'db' 'gmp' 'freetype2')
+source=(http://www.php.net/distributions/${pkgbase}-${pkgver}.tar.bz2;
+http://download.suhosin.org/suhosin-patch-${_suhosinver}.patch.gz;
+http://download.suhosin.org/suhosin-patch-${_suhosinver}.patch.gz.sig;
+'php.ini.patch' 'apache.conf' 'rc.d.php-fpm' 'php-fpm.conf.in.patch'
+'logrotate.d.php-fpm')
+md5sums=('704cd414a0565d905e1074ffdc1fadfb'
+ '08582e502fed8221c6577042ca45ddb8'
+ '5bf4473f658404aa9a97bf026ecef8e9'
+ '65606c606df97a0760dfe5aaf9893afc'
+ 'dec2cbaad64e3abf4f0ec70e1de4e8e9'
+ 'b01be5f816988fcee7e78225836e5e27'
+ '09005dabd90c48ddd392b3dbf05f8a82'
+ '07c4e412909ac65a44ec90e7a2c4bade')
+
+build() {
+   phpconfig=--srcdir=../${pkgbase}-${pkgver} \
+   --prefix=/usr \
+   --sysconfdir=/etc/php \
+   --localstatedir=/var \
+   --with-layout=GNU \
+   --with-config-file-path=/etc/php \
+   --with-config-file-scan-dir=/etc/php/conf.d \
+   --enable-inline-optimization \
+   --disable-debug \
+   --disable-rpath \
+   --disable-static \
+   --enable-shared \
+   --mandir=/usr/share/man \
+   --without-pear \
+   
+
+   phpextensions=--enable-bcmath=shared \
+   --enable-calendar=shared \
+   --enable-dba=shared \
+   --enable-exif=shared \
+   --enable-ftp=shared \
+   --enable-gd-native-ttf \
+   --enable-intl=shared \
+   --enable-json=shared \
+   --enable-mbregex \
+   --enable-mbstring \
+   --enable-pdo \
+   --enable-phar=shared \
+   --enable-posix=shared \
+   --enable-session \
+   --enable-shmop=shared \
+   --enable-soap=shared \
+   --enable-sockets=shared \
+   --enable-sqlite-utf8 \
+   --enable-sysvmsg=shared \
+   --enable-sysvsem=shared \
+   --enable-sysvshm=shared \
+   --enable-xml \
+   --enable-zip=shared \
+   --with-bz2=shared \
+   --with-curl=shared \
+   --with-db4=/usr \
+   --with-enchant=shared,/usr \
+   --with-freetype-dir=shared,/usr \
+   --with-gd=shared \
+   --with-gdbm=shared \
+   --with-gettext=shared \
+   --with-gmp=shared \
+   --with-iconv=shared \
+ 

[arch-commits] Commit in php/repos (8 files)

2011-12-19 Thread Andrea Scarpino
Date: Monday, December 19, 2011 @ 13:04:14
  Author: andrea
Revision: 145226

db-move: moved php from [staging] to [testing] (i686)

Added:
  php/repos/testing-i686/
  php/repos/testing-i686/PKGBUILD
(from rev 145207, php/repos/staging-i686/PKGBUILD)
  php/repos/testing-i686/apache.conf
(from rev 145207, php/repos/staging-i686/apache.conf)
  php/repos/testing-i686/logrotate.d.php-fpm
(from rev 145207, php/repos/staging-i686/logrotate.d.php-fpm)
  php/repos/testing-i686/php-fpm.conf.in.patch
(from rev 145207, php/repos/staging-i686/php-fpm.conf.in.patch)
  php/repos/testing-i686/php.ini.patch
(from rev 145207, php/repos/staging-i686/php.ini.patch)
  php/repos/testing-i686/rc.d.php-fpm
(from rev 145207, php/repos/staging-i686/rc.d.php-fpm)
Deleted:
  php/repos/staging-i686/

---+
 PKGBUILD  |  365 
 apache.conf   |   13 +
 logrotate.d.php-fpm   |6 
 php-fpm.conf.in.patch |   80 ++
 php.ini.patch |  126 
 rc.d.php-fpm  |  158 
 6 files changed, 748 insertions(+)

Copied: php/repos/testing-i686/PKGBUILD (from rev 145207, 
php/repos/staging-i686/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2011-12-19 18:04:14 UTC (rev 145226)
@@ -0,0 +1,365 @@
+# $Id$
+# Maintainer: Pierre Schmitz pie...@archlinux.de
+
+pkgbase=php
+pkgname=('php'
+ 'php-cgi'
+ 'php-apache'
+ 'php-fpm'
+ 'php-embed'
+ 'php-pear'
+ 'php-enchant'
+ 'php-gd'
+ 'php-intl'
+ 'php-ldap'
+ 'php-mcrypt'
+ 'php-mssql'
+ 'php-odbc'
+ 'php-pgsql'
+ 'php-pspell'
+ 'php-snmp'
+ 'php-sqlite'
+ 'php-tidy'
+ 'php-xsl')
+pkgver=5.3.8
+_suhosinver=5.3.7-0.9.10
+pkgrel=6
+arch=('i686' 'x86_64')
+license=('PHP')
+url='http://www.php.net'
+makedepends=('apache' 'imap' 'postgresql-libs' 'libldap' 'postfix'
+ 'sqlite3' 'unixodbc' 'net-snmp' 'libzip' 'enchant' 'file' 
'freetds'
+ 'libmcrypt' 'tidyhtml' 'aspell' 'libltdl' 'libpng' 'libjpeg' 'icu'
+ 'curl' 'libxslt' 'openssl' 'bzip2' 'db' 'gmp' 'freetype2')
+source=(http://www.php.net/distributions/${pkgbase}-${pkgver}.tar.bz2;
+http://download.suhosin.org/suhosin-patch-${_suhosinver}.patch.gz;
+http://download.suhosin.org/suhosin-patch-${_suhosinver}.patch.gz.sig;
+'php.ini.patch' 'apache.conf' 'rc.d.php-fpm' 'php-fpm.conf.in.patch'
+'logrotate.d.php-fpm')
+md5sums=('704cd414a0565d905e1074ffdc1fadfb'
+ '08582e502fed8221c6577042ca45ddb8'
+ '5bf4473f658404aa9a97bf026ecef8e9'
+ '65606c606df97a0760dfe5aaf9893afc'
+ 'dec2cbaad64e3abf4f0ec70e1de4e8e9'
+ 'b01be5f816988fcee7e78225836e5e27'
+ '09005dabd90c48ddd392b3dbf05f8a82'
+ '07c4e412909ac65a44ec90e7a2c4bade')
+
+build() {
+   phpconfig=--srcdir=../${pkgbase}-${pkgver} \
+   --prefix=/usr \
+   --sysconfdir=/etc/php \
+   --localstatedir=/var \
+   --with-layout=GNU \
+   --with-config-file-path=/etc/php \
+   --with-config-file-scan-dir=/etc/php/conf.d \
+   --enable-inline-optimization \
+   --disable-debug \
+   --disable-rpath \
+   --disable-static \
+   --enable-shared \
+   --mandir=/usr/share/man \
+   --without-pear \
+   
+
+   phpextensions=--enable-bcmath=shared \
+   --enable-calendar=shared \
+   --enable-dba=shared \
+   --enable-exif=shared \
+   --enable-ftp=shared \
+   --enable-gd-native-ttf \
+   --enable-intl=shared \
+   --enable-json=shared \
+   --enable-mbregex \
+   --enable-mbstring \
+   --enable-pdo \
+   --enable-phar=shared \
+   --enable-posix=shared \
+   --enable-session \
+   --enable-shmop=shared \
+   --enable-soap=shared \
+   --enable-sockets=shared \
+   --enable-sqlite-utf8 \
+   --enable-sysvmsg=shared \
+   --enable-sysvsem=shared \
+   --enable-sysvshm=shared \
+   --enable-xml \
+   --enable-zip=shared \
+   --with-bz2=shared \
+   --with-curl=shared \
+   --with-db4=/usr \
+   --with-enchant=shared,/usr \
+   --with-freetype-dir=shared,/usr \
+   --with-gd=shared \
+   --with-gdbm=shared \
+   --with-gettext=shared \
+   --with-gmp=shared \
+   --with-iconv=shared \
+   --with-icu-dir=/usr \
+ 

[arch-commits] Commit in php/repos (8 files)

2011-12-19 Thread Andrea Scarpino
Date: Monday, December 19, 2011 @ 13:04:16
  Author: andrea
Revision: 145227

db-move: moved php from [staging] to [testing] (x86_64)

Added:
  php/repos/testing-x86_64/
  php/repos/testing-x86_64/PKGBUILD
(from rev 145207, php/repos/staging-x86_64/PKGBUILD)
  php/repos/testing-x86_64/apache.conf
(from rev 145207, php/repos/staging-x86_64/apache.conf)
  php/repos/testing-x86_64/logrotate.d.php-fpm
(from rev 145207, php/repos/staging-x86_64/logrotate.d.php-fpm)
  php/repos/testing-x86_64/php-fpm.conf.in.patch
(from rev 145207, php/repos/staging-x86_64/php-fpm.conf.in.patch)
  php/repos/testing-x86_64/php.ini.patch
(from rev 145207, php/repos/staging-x86_64/php.ini.patch)
  php/repos/testing-x86_64/rc.d.php-fpm
(from rev 145207, php/repos/staging-x86_64/rc.d.php-fpm)
Deleted:
  php/repos/staging-x86_64/

---+
 PKGBUILD  |  365 
 apache.conf   |   13 +
 logrotate.d.php-fpm   |6 
 php-fpm.conf.in.patch |   80 ++
 php.ini.patch |  126 
 rc.d.php-fpm  |  158 
 6 files changed, 748 insertions(+)

Copied: php/repos/testing-x86_64/PKGBUILD (from rev 145207, 
php/repos/staging-x86_64/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2011-12-19 18:04:16 UTC (rev 145227)
@@ -0,0 +1,365 @@
+# $Id$
+# Maintainer: Pierre Schmitz pie...@archlinux.de
+
+pkgbase=php
+pkgname=('php'
+ 'php-cgi'
+ 'php-apache'
+ 'php-fpm'
+ 'php-embed'
+ 'php-pear'
+ 'php-enchant'
+ 'php-gd'
+ 'php-intl'
+ 'php-ldap'
+ 'php-mcrypt'
+ 'php-mssql'
+ 'php-odbc'
+ 'php-pgsql'
+ 'php-pspell'
+ 'php-snmp'
+ 'php-sqlite'
+ 'php-tidy'
+ 'php-xsl')
+pkgver=5.3.8
+_suhosinver=5.3.7-0.9.10
+pkgrel=6
+arch=('i686' 'x86_64')
+license=('PHP')
+url='http://www.php.net'
+makedepends=('apache' 'imap' 'postgresql-libs' 'libldap' 'postfix'
+ 'sqlite3' 'unixodbc' 'net-snmp' 'libzip' 'enchant' 'file' 
'freetds'
+ 'libmcrypt' 'tidyhtml' 'aspell' 'libltdl' 'libpng' 'libjpeg' 'icu'
+ 'curl' 'libxslt' 'openssl' 'bzip2' 'db' 'gmp' 'freetype2')
+source=(http://www.php.net/distributions/${pkgbase}-${pkgver}.tar.bz2;
+http://download.suhosin.org/suhosin-patch-${_suhosinver}.patch.gz;
+http://download.suhosin.org/suhosin-patch-${_suhosinver}.patch.gz.sig;
+'php.ini.patch' 'apache.conf' 'rc.d.php-fpm' 'php-fpm.conf.in.patch'
+'logrotate.d.php-fpm')
+md5sums=('704cd414a0565d905e1074ffdc1fadfb'
+ '08582e502fed8221c6577042ca45ddb8'
+ '5bf4473f658404aa9a97bf026ecef8e9'
+ '65606c606df97a0760dfe5aaf9893afc'
+ 'dec2cbaad64e3abf4f0ec70e1de4e8e9'
+ 'b01be5f816988fcee7e78225836e5e27'
+ '09005dabd90c48ddd392b3dbf05f8a82'
+ '07c4e412909ac65a44ec90e7a2c4bade')
+
+build() {
+   phpconfig=--srcdir=../${pkgbase}-${pkgver} \
+   --prefix=/usr \
+   --sysconfdir=/etc/php \
+   --localstatedir=/var \
+   --with-layout=GNU \
+   --with-config-file-path=/etc/php \
+   --with-config-file-scan-dir=/etc/php/conf.d \
+   --enable-inline-optimization \
+   --disable-debug \
+   --disable-rpath \
+   --disable-static \
+   --enable-shared \
+   --mandir=/usr/share/man \
+   --without-pear \
+   
+
+   phpextensions=--enable-bcmath=shared \
+   --enable-calendar=shared \
+   --enable-dba=shared \
+   --enable-exif=shared \
+   --enable-ftp=shared \
+   --enable-gd-native-ttf \
+   --enable-intl=shared \
+   --enable-json=shared \
+   --enable-mbregex \
+   --enable-mbstring \
+   --enable-pdo \
+   --enable-phar=shared \
+   --enable-posix=shared \
+   --enable-session \
+   --enable-shmop=shared \
+   --enable-soap=shared \
+   --enable-sockets=shared \
+   --enable-sqlite-utf8 \
+   --enable-sysvmsg=shared \
+   --enable-sysvsem=shared \
+   --enable-sysvshm=shared \
+   --enable-xml \
+   --enable-zip=shared \
+   --with-bz2=shared \
+   --with-curl=shared \
+   --with-db4=/usr \
+   --with-enchant=shared,/usr \
+   --with-freetype-dir=shared,/usr \
+   --with-gd=shared \
+   --with-gdbm=shared \
+   --with-gettext=shared \
+   --with-gmp=shared \
+   --with-iconv=shared \
+ 

[arch-commits] Commit in php/repos (8 files)

2011-11-24 Thread Stéphane Gaudreault
Date: Thursday, November 24, 2011 @ 12:03:15
  Author: stephane
Revision: 143474

db-move: moved php from [staging] to [testing] (x86_64)

Added:
  php/repos/testing-x86_64/
  php/repos/testing-x86_64/PKGBUILD
(from rev 143456, php/repos/staging-x86_64/PKGBUILD)
  php/repos/testing-x86_64/apache.conf
(from rev 143456, php/repos/staging-x86_64/apache.conf)
  php/repos/testing-x86_64/logrotate.d.php-fpm
(from rev 143456, php/repos/staging-x86_64/logrotate.d.php-fpm)
  php/repos/testing-x86_64/php-fpm.conf.in.patch
(from rev 143456, php/repos/staging-x86_64/php-fpm.conf.in.patch)
  php/repos/testing-x86_64/php.ini.patch
(from rev 143456, php/repos/staging-x86_64/php.ini.patch)
  php/repos/testing-x86_64/rc.d.php-fpm
(from rev 143456, php/repos/staging-x86_64/rc.d.php-fpm)
Deleted:
  php/repos/staging-x86_64/

---+
 PKGBUILD  |  365 
 apache.conf   |   13 +
 logrotate.d.php-fpm   |6 
 php-fpm.conf.in.patch |   80 ++
 php.ini.patch |  126 
 rc.d.php-fpm  |  158 
 6 files changed, 748 insertions(+)

Copied: php/repos/testing-x86_64/PKGBUILD (from rev 143456, 
php/repos/staging-x86_64/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2011-11-24 17:03:15 UTC (rev 143474)
@@ -0,0 +1,365 @@
+# $Id$
+# Maintainer: Pierre Schmitz pie...@archlinux.de
+
+pkgbase=php
+pkgname=('php'
+ 'php-cgi'
+ 'php-apache'
+ 'php-fpm'
+ 'php-embed'
+ 'php-pear'
+ 'php-enchant'
+ 'php-gd'
+ 'php-intl'
+ 'php-ldap'
+ 'php-mcrypt'
+ 'php-mssql'
+ 'php-odbc'
+ 'php-pgsql'
+ 'php-pspell'
+ 'php-snmp'
+ 'php-sqlite'
+ 'php-tidy'
+ 'php-xsl')
+pkgver=5.3.8
+_suhosinver=5.3.7-0.9.10
+pkgrel=5
+arch=('i686' 'x86_64')
+license=('PHP')
+url='http://www.php.net'
+makedepends=('apache' 'imap' 'postgresql-libs' 'libldap' 'postfix'
+ 'sqlite3' 'unixodbc' 'net-snmp' 'libzip' 'enchant' 'file' 
'freetds'
+ 'libmcrypt' 'tidyhtml' 'aspell' 'libltdl' 'libpng' 'libjpeg' 'icu'
+ 'curl' 'libxslt' 'openssl' 'bzip2' 'db' 'gmp' 'freetype2')
+source=(http://www.php.net/distributions/${pkgbase}-${pkgver}.tar.bz2;
+http://download.suhosin.org/suhosin-patch-${_suhosinver}.patch.gz;
+http://download.suhosin.org/suhosin-patch-${_suhosinver}.patch.gz.sig;
+'php.ini.patch' 'apache.conf' 'rc.d.php-fpm' 'php-fpm.conf.in.patch'
+'logrotate.d.php-fpm')
+md5sums=('704cd414a0565d905e1074ffdc1fadfb'
+ '08582e502fed8221c6577042ca45ddb8'
+ '5bf4473f658404aa9a97bf026ecef8e9'
+ '65606c606df97a0760dfe5aaf9893afc'
+ 'dec2cbaad64e3abf4f0ec70e1de4e8e9'
+ 'b01be5f816988fcee7e78225836e5e27'
+ '09005dabd90c48ddd392b3dbf05f8a82'
+ '07c4e412909ac65a44ec90e7a2c4bade')
+
+build() {
+   phpconfig=--srcdir=../${pkgbase}-${pkgver} \
+   --prefix=/usr \
+   --sysconfdir=/etc/php \
+   --localstatedir=/var \
+   --with-layout=GNU \
+   --with-config-file-path=/etc/php \
+   --with-config-file-scan-dir=/etc/php/conf.d \
+   --enable-inline-optimization \
+   --disable-debug \
+   --disable-rpath \
+   --disable-static \
+   --enable-shared \
+   --mandir=/usr/share/man \
+   --without-pear \
+   
+
+   phpextensions=--enable-bcmath=shared \
+   --enable-calendar=shared \
+   --enable-dba=shared \
+   --enable-exif=shared \
+   --enable-ftp=shared \
+   --enable-gd-native-ttf \
+   --enable-intl=shared \
+   --enable-json=shared \
+   --enable-mbregex \
+   --enable-mbstring \
+   --enable-pdo \
+   --enable-phar=shared \
+   --enable-posix=shared \
+   --enable-session \
+   --enable-shmop=shared \
+   --enable-soap=shared \
+   --enable-sockets=shared \
+   --enable-sqlite-utf8 \
+   --enable-sysvmsg=shared \
+   --enable-sysvsem=shared \
+   --enable-sysvshm=shared \
+   --enable-xml \
+   --enable-zip=shared \
+   --with-bz2=shared \
+   --with-curl=shared \
+   --with-db4=/usr \
+   --with-enchant=shared,/usr \
+   --with-freetype-dir=shared,/usr \
+   --with-gd=shared \
+   --with-gdbm=shared \
+   --with-gettext=shared \
+   --with-gmp=shared \
+   --with-iconv=shared \
+ 

[arch-commits] Commit in php/repos (8 files)

2011-11-24 Thread Stéphane Gaudreault
Date: Thursday, November 24, 2011 @ 12:03:13
  Author: stephane
Revision: 143473

db-move: moved php from [staging] to [testing] (i686)

Added:
  php/repos/testing-i686/
  php/repos/testing-i686/PKGBUILD
(from rev 143456, php/repos/staging-i686/PKGBUILD)
  php/repos/testing-i686/apache.conf
(from rev 143456, php/repos/staging-i686/apache.conf)
  php/repos/testing-i686/logrotate.d.php-fpm
(from rev 143456, php/repos/staging-i686/logrotate.d.php-fpm)
  php/repos/testing-i686/php-fpm.conf.in.patch
(from rev 143456, php/repos/staging-i686/php-fpm.conf.in.patch)
  php/repos/testing-i686/php.ini.patch
(from rev 143456, php/repos/staging-i686/php.ini.patch)
  php/repos/testing-i686/rc.d.php-fpm
(from rev 143456, php/repos/staging-i686/rc.d.php-fpm)
Deleted:
  php/repos/staging-i686/

---+
 PKGBUILD  |  365 
 apache.conf   |   13 +
 logrotate.d.php-fpm   |6 
 php-fpm.conf.in.patch |   80 ++
 php.ini.patch |  126 
 rc.d.php-fpm  |  158 
 6 files changed, 748 insertions(+)

Copied: php/repos/testing-i686/PKGBUILD (from rev 143456, 
php/repos/staging-i686/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2011-11-24 17:03:13 UTC (rev 143473)
@@ -0,0 +1,365 @@
+# $Id$
+# Maintainer: Pierre Schmitz pie...@archlinux.de
+
+pkgbase=php
+pkgname=('php'
+ 'php-cgi'
+ 'php-apache'
+ 'php-fpm'
+ 'php-embed'
+ 'php-pear'
+ 'php-enchant'
+ 'php-gd'
+ 'php-intl'
+ 'php-ldap'
+ 'php-mcrypt'
+ 'php-mssql'
+ 'php-odbc'
+ 'php-pgsql'
+ 'php-pspell'
+ 'php-snmp'
+ 'php-sqlite'
+ 'php-tidy'
+ 'php-xsl')
+pkgver=5.3.8
+_suhosinver=5.3.7-0.9.10
+pkgrel=5
+arch=('i686' 'x86_64')
+license=('PHP')
+url='http://www.php.net'
+makedepends=('apache' 'imap' 'postgresql-libs' 'libldap' 'postfix'
+ 'sqlite3' 'unixodbc' 'net-snmp' 'libzip' 'enchant' 'file' 
'freetds'
+ 'libmcrypt' 'tidyhtml' 'aspell' 'libltdl' 'libpng' 'libjpeg' 'icu'
+ 'curl' 'libxslt' 'openssl' 'bzip2' 'db' 'gmp' 'freetype2')
+source=(http://www.php.net/distributions/${pkgbase}-${pkgver}.tar.bz2;
+http://download.suhosin.org/suhosin-patch-${_suhosinver}.patch.gz;
+http://download.suhosin.org/suhosin-patch-${_suhosinver}.patch.gz.sig;
+'php.ini.patch' 'apache.conf' 'rc.d.php-fpm' 'php-fpm.conf.in.patch'
+'logrotate.d.php-fpm')
+md5sums=('704cd414a0565d905e1074ffdc1fadfb'
+ '08582e502fed8221c6577042ca45ddb8'
+ '5bf4473f658404aa9a97bf026ecef8e9'
+ '65606c606df97a0760dfe5aaf9893afc'
+ 'dec2cbaad64e3abf4f0ec70e1de4e8e9'
+ 'b01be5f816988fcee7e78225836e5e27'
+ '09005dabd90c48ddd392b3dbf05f8a82'
+ '07c4e412909ac65a44ec90e7a2c4bade')
+
+build() {
+   phpconfig=--srcdir=../${pkgbase}-${pkgver} \
+   --prefix=/usr \
+   --sysconfdir=/etc/php \
+   --localstatedir=/var \
+   --with-layout=GNU \
+   --with-config-file-path=/etc/php \
+   --with-config-file-scan-dir=/etc/php/conf.d \
+   --enable-inline-optimization \
+   --disable-debug \
+   --disable-rpath \
+   --disable-static \
+   --enable-shared \
+   --mandir=/usr/share/man \
+   --without-pear \
+   
+
+   phpextensions=--enable-bcmath=shared \
+   --enable-calendar=shared \
+   --enable-dba=shared \
+   --enable-exif=shared \
+   --enable-ftp=shared \
+   --enable-gd-native-ttf \
+   --enable-intl=shared \
+   --enable-json=shared \
+   --enable-mbregex \
+   --enable-mbstring \
+   --enable-pdo \
+   --enable-phar=shared \
+   --enable-posix=shared \
+   --enable-session \
+   --enable-shmop=shared \
+   --enable-soap=shared \
+   --enable-sockets=shared \
+   --enable-sqlite-utf8 \
+   --enable-sysvmsg=shared \
+   --enable-sysvsem=shared \
+   --enable-sysvshm=shared \
+   --enable-xml \
+   --enable-zip=shared \
+   --with-bz2=shared \
+   --with-curl=shared \
+   --with-db4=/usr \
+   --with-enchant=shared,/usr \
+   --with-freetype-dir=shared,/usr \
+   --with-gd=shared \
+   --with-gdbm=shared \
+   --with-gettext=shared \
+   --with-gmp=shared \
+   --with-iconv=shared \
+   --with-icu-dir=/usr \
+ 

[arch-commits] Commit in php/repos (8 files)

2011-09-30 Thread Eric Bélanger
Date: Friday, September 30, 2011 @ 05:12:21
  Author: eric
Revision: 139146

db-move: moved php from [staging] to [testing] (i686)

Added:
  php/repos/testing-i686/
  php/repos/testing-i686/PKGBUILD
(from rev 139137, php/repos/staging-i686/PKGBUILD)
  php/repos/testing-i686/apache.conf
(from rev 139137, php/repos/staging-i686/apache.conf)
  php/repos/testing-i686/logrotate.d.php-fpm
(from rev 139137, php/repos/staging-i686/logrotate.d.php-fpm)
  php/repos/testing-i686/php-fpm.conf.in.patch
(from rev 139137, php/repos/staging-i686/php-fpm.conf.in.patch)
  php/repos/testing-i686/php.ini.patch
(from rev 139137, php/repos/staging-i686/php.ini.patch)
  php/repos/testing-i686/rc.d.php-fpm
(from rev 139137, php/repos/staging-i686/rc.d.php-fpm)
Deleted:
  php/repos/staging-i686/

---+
 PKGBUILD  |  363 
 apache.conf   |   13 +
 logrotate.d.php-fpm   |6 
 php-fpm.conf.in.patch |   80 ++
 php.ini.patch |  126 
 rc.d.php-fpm  |  158 
 6 files changed, 746 insertions(+)

Copied: php/repos/testing-i686/PKGBUILD (from rev 139137, 
php/repos/staging-i686/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2011-09-30 09:12:21 UTC (rev 139146)
@@ -0,0 +1,363 @@
+# $Id$
+# Maintainer: Pierre Schmitz pie...@archlinux.de
+
+pkgbase=php
+pkgname=('php'
+ 'php-cgi'
+ 'php-apache'
+ 'php-fpm'
+ 'php-embed'
+ 'php-pear'
+ 'php-enchant'
+ 'php-gd'
+ 'php-intl'
+ 'php-ldap'
+ 'php-mcrypt'
+ 'php-mssql'
+ 'php-odbc'
+ 'php-pgsql'
+ 'php-pspell'
+ 'php-snmp'
+ 'php-sqlite'
+ 'php-tidy'
+ 'php-xsl')
+pkgver=5.3.8
+_suhosinver=5.3.7-0.9.10
+pkgrel=4
+arch=('i686' 'x86_64')
+license=('PHP')
+url='http://www.php.net'
+makedepends=('apache' 'imap' 'postgresql-libs' 'libldap' 'postfix'
+ 'sqlite3' 'unixodbc' 'net-snmp' 'libzip' 'enchant' 'file' 
'freetds'
+ 'libmcrypt' 'tidyhtml' 'aspell' 'libltdl' 'libpng' 'libjpeg' 'icu'
+ 'curl' 'libxslt' 'openssl' 'bzip2' 'db' 'gmp' 'freetype2')
+source=(http://www.php.net/distributions/${pkgbase}-${pkgver}.tar.bz2;
+http://download.suhosin.org/suhosin-patch-${_suhosinver}.patch.gz;
+'php.ini.patch' 'apache.conf' 'rc.d.php-fpm' 'php-fpm.conf.in.patch'
+'logrotate.d.php-fpm')
+md5sums=('704cd414a0565d905e1074ffdc1fadfb'
+ '08582e502fed8221c6577042ca45ddb8'
+ '65606c606df97a0760dfe5aaf9893afc'
+ 'dec2cbaad64e3abf4f0ec70e1de4e8e9'
+ 'b01be5f816988fcee7e78225836e5e27'
+ '09005dabd90c48ddd392b3dbf05f8a82'
+ '07c4e412909ac65a44ec90e7a2c4bade')
+
+build() {
+   phpconfig=--srcdir=../${pkgbase}-${pkgver} \
+   --prefix=/usr \
+   --sysconfdir=/etc/php \
+   --localstatedir=/var \
+   --with-layout=GNU \
+   --with-config-file-path=/etc/php \
+   --with-config-file-scan-dir=/etc/php/conf.d \
+   --enable-inline-optimization \
+   --disable-debug \
+   --disable-rpath \
+   --disable-static \
+   --enable-shared \
+   --mandir=/usr/share/man \
+   --without-pear \
+   
+
+   phpextensions=--enable-bcmath=shared \
+   --enable-calendar=shared \
+   --enable-dba=shared \
+   --enable-exif=shared \
+   --enable-ftp=shared \
+   --enable-gd-native-ttf \
+   --enable-intl=shared \
+   --enable-json=shared \
+   --enable-mbregex \
+   --enable-mbstring \
+   --enable-pdo \
+   --enable-phar=shared \
+   --enable-posix=shared \
+   --enable-session \
+   --enable-shmop=shared \
+   --enable-soap=shared \
+   --enable-sockets=shared \
+   --enable-sqlite-utf8 \
+   --enable-sysvmsg=shared \
+   --enable-sysvsem=shared \
+   --enable-sysvshm=shared \
+   --enable-xml \
+   --enable-zip=shared \
+   --with-bz2=shared \
+   --with-curl=shared \
+   --with-db4=/usr \
+   --with-enchant=shared,/usr \
+   --with-freetype-dir=shared,/usr \
+   --with-gd=shared \
+   --with-gdbm=shared \
+   --with-gettext=shared \
+   --with-gmp=shared \
+   --with-iconv=shared \
+   --with-icu-dir=/usr \
+   --with-imap-ssl=shared \
+   --with-imap=shared \
+   --with-jpeg-dir=shared,/usr \
+   

[arch-commits] Commit in php/repos (8 files)

2011-09-30 Thread Eric Bélanger
Date: Friday, September 30, 2011 @ 05:12:23
  Author: eric
Revision: 139147

db-move: moved php from [staging] to [testing] (x86_64)

Added:
  php/repos/testing-x86_64/
  php/repos/testing-x86_64/PKGBUILD
(from rev 139137, php/repos/staging-x86_64/PKGBUILD)
  php/repos/testing-x86_64/apache.conf
(from rev 139137, php/repos/staging-x86_64/apache.conf)
  php/repos/testing-x86_64/logrotate.d.php-fpm
(from rev 139137, php/repos/staging-x86_64/logrotate.d.php-fpm)
  php/repos/testing-x86_64/php-fpm.conf.in.patch
(from rev 139137, php/repos/staging-x86_64/php-fpm.conf.in.patch)
  php/repos/testing-x86_64/php.ini.patch
(from rev 139137, php/repos/staging-x86_64/php.ini.patch)
  php/repos/testing-x86_64/rc.d.php-fpm
(from rev 139137, php/repos/staging-x86_64/rc.d.php-fpm)
Deleted:
  php/repos/staging-x86_64/

---+
 PKGBUILD  |  363 
 apache.conf   |   13 +
 logrotate.d.php-fpm   |6 
 php-fpm.conf.in.patch |   80 ++
 php.ini.patch |  126 
 rc.d.php-fpm  |  158 
 6 files changed, 746 insertions(+)

Copied: php/repos/testing-x86_64/PKGBUILD (from rev 139137, 
php/repos/staging-x86_64/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2011-09-30 09:12:23 UTC (rev 139147)
@@ -0,0 +1,363 @@
+# $Id$
+# Maintainer: Pierre Schmitz pie...@archlinux.de
+
+pkgbase=php
+pkgname=('php'
+ 'php-cgi'
+ 'php-apache'
+ 'php-fpm'
+ 'php-embed'
+ 'php-pear'
+ 'php-enchant'
+ 'php-gd'
+ 'php-intl'
+ 'php-ldap'
+ 'php-mcrypt'
+ 'php-mssql'
+ 'php-odbc'
+ 'php-pgsql'
+ 'php-pspell'
+ 'php-snmp'
+ 'php-sqlite'
+ 'php-tidy'
+ 'php-xsl')
+pkgver=5.3.8
+_suhosinver=5.3.7-0.9.10
+pkgrel=4
+arch=('i686' 'x86_64')
+license=('PHP')
+url='http://www.php.net'
+makedepends=('apache' 'imap' 'postgresql-libs' 'libldap' 'postfix'
+ 'sqlite3' 'unixodbc' 'net-snmp' 'libzip' 'enchant' 'file' 
'freetds'
+ 'libmcrypt' 'tidyhtml' 'aspell' 'libltdl' 'libpng' 'libjpeg' 'icu'
+ 'curl' 'libxslt' 'openssl' 'bzip2' 'db' 'gmp' 'freetype2')
+source=(http://www.php.net/distributions/${pkgbase}-${pkgver}.tar.bz2;
+http://download.suhosin.org/suhosin-patch-${_suhosinver}.patch.gz;
+'php.ini.patch' 'apache.conf' 'rc.d.php-fpm' 'php-fpm.conf.in.patch'
+'logrotate.d.php-fpm')
+md5sums=('704cd414a0565d905e1074ffdc1fadfb'
+ '08582e502fed8221c6577042ca45ddb8'
+ '65606c606df97a0760dfe5aaf9893afc'
+ 'dec2cbaad64e3abf4f0ec70e1de4e8e9'
+ 'b01be5f816988fcee7e78225836e5e27'
+ '09005dabd90c48ddd392b3dbf05f8a82'
+ '07c4e412909ac65a44ec90e7a2c4bade')
+
+build() {
+   phpconfig=--srcdir=../${pkgbase}-${pkgver} \
+   --prefix=/usr \
+   --sysconfdir=/etc/php \
+   --localstatedir=/var \
+   --with-layout=GNU \
+   --with-config-file-path=/etc/php \
+   --with-config-file-scan-dir=/etc/php/conf.d \
+   --enable-inline-optimization \
+   --disable-debug \
+   --disable-rpath \
+   --disable-static \
+   --enable-shared \
+   --mandir=/usr/share/man \
+   --without-pear \
+   
+
+   phpextensions=--enable-bcmath=shared \
+   --enable-calendar=shared \
+   --enable-dba=shared \
+   --enable-exif=shared \
+   --enable-ftp=shared \
+   --enable-gd-native-ttf \
+   --enable-intl=shared \
+   --enable-json=shared \
+   --enable-mbregex \
+   --enable-mbstring \
+   --enable-pdo \
+   --enable-phar=shared \
+   --enable-posix=shared \
+   --enable-session \
+   --enable-shmop=shared \
+   --enable-soap=shared \
+   --enable-sockets=shared \
+   --enable-sqlite-utf8 \
+   --enable-sysvmsg=shared \
+   --enable-sysvsem=shared \
+   --enable-sysvshm=shared \
+   --enable-xml \
+   --enable-zip=shared \
+   --with-bz2=shared \
+   --with-curl=shared \
+   --with-db4=/usr \
+   --with-enchant=shared,/usr \
+   --with-freetype-dir=shared,/usr \
+   --with-gd=shared \
+   --with-gdbm=shared \
+   --with-gettext=shared \
+   --with-gmp=shared \
+   --with-iconv=shared \
+   --with-icu-dir=/usr \
+   --with-imap-ssl=shared \
+   --with-imap=shared \
+