[arch-commits] Commit in php/trunk (5 files)

2010-12-11 Thread Pierre Schmitz
Date: Saturday, December 11, 2010 @ 03:02:07
  Author: pierre
Revision: 102792

prepare PHP 5.3.4 update

Added:
  php/trunk/php-fpm.conf.in.patch
Modified:
  php/trunk/PKGBUILD
  php/trunk/php.ini.patch
Deleted:
  php/trunk/db4-test.patch
  php/trunk/php-fpm.conf

---+
 PKGBUILD  |   38 ++
 db4-test.patch|   11 -
 php-fpm.conf  |  274 
 php-fpm.conf.in.patch |   80 ++
 php.ini.patch |   29 ++---
 5 files changed, 109 insertions(+), 323 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2010-12-11 07:49:27 UTC (rev 102791)
+++ PKGBUILD2010-12-11 08:02:07 UTC (rev 102792)
@@ -23,28 +23,26 @@
  'php-sqlite'
  'php-tidy'
  'php-xsl')
-pkgver=5.3.3
-pkgrel=4
-_suhosinver=${pkgver}-0.9.10
+pkgver=5.3.4
+pkgrel=1
+#_suhosinver=${pkgver}-0.9.10
 arch=('i686' 'x86_64')
 license=('PHP')
 url='http://www.php.net'
 makedepends=('apache' 'imap' 'postgresql-libs' 'mysql' 'libldap' 'postfix'
  'sqlite3' 'unixodbc' 'net-snmp' 'libzip' 'enchant' 'file' 
'freetds'
  'libmcrypt' 'tidyhtml' 'aspell' 'libtool' 'libpng' 'libjpeg' 'icu'
- 'curl' 'libxslt' 'openssl' 'bzip2' 'db' 'gmp' 'libevent' 
'freetype2')
+ 'curl' 'libxslt' 'openssl' 'bzip2' 'db' 'gmp' 'freetype2')
 options=('!makeflags')
 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'
-'db4-test.patch')
-md5sums=('21ceeeb232813c10283a5ca1b4c87b48'
- 'b66b27c43b1332400ef8982944c3b95b'
- 'd6f94150f47047882c6716575e12e99b'
+#http://download.suhosin.org/suhosin-patch-${_suhosinver}.patch.gz;
+'php.ini.patch' 'apache.conf' 'rc.d.php-fpm' 'php-fpm.conf.in.patch')
+md5sums=('2c069d8f690933e3bf6a8741ed818150'
+# 'b66b27c43b1332400ef8982944c3b95b'
+ 'd36c4d1b9d33c1025521e23260f1dc29'
  '96ca078be6729b665be8a865535a97bf'
  'ff8346d57f0bd67c7a383c1561dcd7c1'
- '0ac88ff88ae951118201d6424eaa426a'
- 'e4e28c3b785975a09b6b7b2d3631faf6')
+ 'd50ff349da08110a7cc8c691ce2d0423')
 
 build() {
# ldap-sasl does not compile with --as-needed
@@ -141,14 +139,12 @@
 
cd ${srcdir}/${pkgbase}-${pkgver}
 
-   # Fix configure test which assumes db=4.x
-   patch -p0 -i ${srcdir}/db4-test.patch
-
# apply suhosin patch
-   patch -p1 -i ${srcdir}/suhosin-patch-${_suhosinver}.patch
+   #patch -p1 -i ${srcdir}/suhosin-patch-${_suhosinver}.patch
 
# adjust paths
patch -p0 -i ${srcdir}/php.ini.patch
+   patch -p0 -i ${srcdir}/php-fpm.conf.in.patch
 
# php
mkdir ${srcdir}/build-php
@@ -186,7 +182,6 @@
./configure ${phpconfig} \
--disable-cli \
--enable-fpm \
-   --with-libevent-dir=/usr \
--with-fpm-user=http \
--with-fpm-group=http \
${phpextensions}
@@ -224,8 +219,6 @@
cd ${srcdir}/build-php
make INSTALL_ROOT=${pkgdir} install
install -d -m755 ${pkgdir}/usr/share/pear
-   # fix broken link
-   ln -sf phar.phar $pkgdir/usr/bin/phar
# install php.ini
install -D -m644 ${srcdir}/${pkgbase}-${pkgver}/php.ini-production 
${pkgdir}/etc/php/php.ini
install -d -m755 ${pkgdir}/etc/php/conf.d/
@@ -254,14 +247,15 @@
 
 package_php-fpm() {
pkgdesc='FastCGI Process Manager for PHP'
-   depends=('php' 'libevent')
+   depends=('php')
backup=('etc/php/php-fpm.conf')
 
install -D -m755 ${srcdir}/build-fpm/sapi/fpm/php-fpm 
${pkgdir}/usr/sbin/php-fpm
-   install -D -m644 ${srcdir}/build-fpm/sapi/fpm/php-fpm.1 
${pkgdir}/usr/share/man/man1/php-fpm.1
-   install -D -m644 ${srcdir}/php-fpm.conf ${pkgdir}/etc/php/php-fpm.conf
+   install -D -m644 ${srcdir}/build-fpm/sapi/fpm/php-fpm.8 
${pkgdir}/usr/share/man/man8/php-fpm.8
+   install -D -m755 ${srcdir}/build-fpm/sapi/fpm/php-fpm.conf 
${pkgdir}/etc/php/php-fpm.conf
install -D -m755 ${srcdir}/rc.d.php-fpm ${pkgdir}/etc/rc.d/php-fpm
install -d -m755 ${pkgdir}/var/run/php-fpm
+   install -d -m755 ${pkgdir}/etc/php/fpm.d
 }
 
 package_php-embed() {

Deleted: db4-test.patch
===
--- db4-test.patch  2010-12-11 07:49:27 UTC (rev 102791)
+++ db4-test.patch  2010-12-11 08:02:07 UTC (rev 102792)
@@ -1,11 +0,0 @@
 configure  2010-07-21 12:53:06.0 +0200
-+++ configure  2010-10-22 09:21:54.077666560 +0200
-@@ -30742,7 +30742,7 @@
- #include confdefs.h
- 
- #include $THIS_INCLUDE
--#if DB_VERSION_MINOR != 1 || (DB_VERSION_MINOR == 1  DB_VERSION_PATCH = 25)
-+#if DB_VERSION_MAJOR == 5 || 

[arch-commits] Commit in man-pages/repos (core-any)

2010-12-11 Thread andyrtr
Date: Saturday, December 11, 2010 @ 03:09:55
  Author: andyrtr
Revision: 102793

db-move: man-pages removed by andyrtr for move to [core] (any)

Deleted:
  man-pages/repos/core-any/



[arch-commits] Commit in man-pages/repos (core-any testing-any)

2010-12-11 Thread andyrtr
Date: Saturday, December 11, 2010 @ 03:09:57
  Author: andyrtr
Revision: 102794

db-move: moved man-pages from [testing] to [core] (any)

Added:
  man-pages/repos/core-any/
Deleted:
  man-pages/repos/testing-any/



[arch-commits] Commit in diffutils/repos (core-i686)

2010-12-11 Thread Allan McRae
Date: Saturday, December 11, 2010 @ 04:10:49
  Author: allan
Revision: 102795

db-move: diffutils removed by allan for move to [core] (i686)

Deleted:
  diffutils/repos/core-i686/



[arch-commits] Commit in diffutils/repos (core-i686 testing-i686)

2010-12-11 Thread Allan McRae
Date: Saturday, December 11, 2010 @ 04:10:50
  Author: allan
Revision: 102796

db-move: moved diffutils from [testing] to [core] (i686)

Added:
  diffutils/repos/core-i686/
Deleted:
  diffutils/repos/testing-i686/



[arch-commits] Commit in diffutils/repos (core-x86_64)

2010-12-11 Thread Allan McRae
Date: Saturday, December 11, 2010 @ 04:10:50
  Author: allan
Revision: 102797

db-move: diffutils removed by allan for move to [core] (x86_64)

Deleted:
  diffutils/repos/core-x86_64/



[arch-commits] Commit in diffutils/repos (core-x86_64 testing-x86_64)

2010-12-11 Thread Allan McRae
Date: Saturday, December 11, 2010 @ 04:10:53
  Author: allan
Revision: 102798

db-move: moved diffutils from [testing] to [core] (x86_64)

Added:
  diffutils/repos/core-x86_64/
Deleted:
  diffutils/repos/testing-x86_64/



[arch-commits] Commit in heimdal/repos (core-i686)

2010-12-11 Thread Allan McRae
Date: Saturday, December 11, 2010 @ 04:33:56
  Author: allan
Revision: 102799

db-move: heimdal removed by allan for move to [core] (i686)

Deleted:
  heimdal/repos/core-i686/



[arch-commits] Commit in heimdal/repos (core-i686 testing-i686)

2010-12-11 Thread Allan McRae
Date: Saturday, December 11, 2010 @ 04:33:57
  Author: allan
Revision: 102800

db-move: moved heimdal from [testing] to [core] (i686)

Added:
  heimdal/repos/core-i686/
Deleted:
  heimdal/repos/testing-i686/



[arch-commits] Commit in heimdal/repos (core-x86_64)

2010-12-11 Thread Allan McRae
Date: Saturday, December 11, 2010 @ 04:33:58
  Author: allan
Revision: 102801

db-move: heimdal removed by allan for move to [core] (x86_64)

Deleted:
  heimdal/repos/core-x86_64/



[arch-commits] Commit in heimdal/repos (core-x86_64 testing-x86_64)

2010-12-11 Thread Allan McRae
Date: Saturday, December 11, 2010 @ 04:33:59
  Author: allan
Revision: 102802

db-move: moved heimdal from [testing] to [core] (x86_64)

Added:
  heimdal/repos/core-x86_64/
Deleted:
  heimdal/repos/testing-x86_64/



[arch-commits] Commit in pcre/trunk (ChangeLog PKGBUILD)

2010-12-11 Thread Allan McRae
Date: Saturday, December 11, 2010 @ 05:03:49
  Author: allan
Revision: 102803

upgpkg: pcre 8.11-1
upstream update

Modified:
  pcre/trunk/PKGBUILD
Deleted:
  pcre/trunk/ChangeLog

---+
 ChangeLog |   44 
 PKGBUILD  |8 
 2 files changed, 4 insertions(+), 48 deletions(-)

Deleted: ChangeLog
===
--- ChangeLog   2010-12-11 09:33:59 UTC (rev 102802)
+++ ChangeLog   2010-12-11 10:03:49 UTC (rev 102803)
@@ -1,44 +0,0 @@
-2010-11-19 Stéphane Gaudreault steph...@archlinux.org
-   * pcre 8.10-2
-   * rebuild of old package, tidy up PKGBUILD
-
-2010-03-24  Eric Belanger  e...@archlinux.org
-
-   * pcre 8.02-1
-   * Upstream update
-
-2010-01-23  Eric Belanger  e...@archlinux.org
-
-   * pcre 8.01-1
-   * Upstream update
-
-2009-10-26  Eric Belanger  e...@archlinux.org
-
-   * pcre 8.00-1
-   * Upstream update
-
-2009-04-13  Eric Belanger  e...@archlinux.org
-
-   * pcre 7.9-1
-   * Upstream update
-
-2008-10-19  Eric Belanger  e...@archlinux.org
-
-   * Updated url
-
-2008-09-05  Eric Belanger  e...@archlinux.org
-
-   * pcre 7.8-1
-   * Upstream update
-   * Fixed license
-
-2008-07-07  Eric Belanger  e...@archlinux.org
-
-   * pcre 7.7-2
-   * Added libpcre-7.7-buffer-overflow.patch to fix buffer overflow (close 
FS#10845)
-
-2008-05-10  Eric Belanger  e...@archlinux.org
-
-   * pcre 7.7-1
-   * Upstream update
-   * Added ChangeLog

Modified: PKGBUILD
===
--- PKGBUILD2010-12-11 09:33:59 UTC (rev 102802)
+++ PKGBUILD2010-12-11 10:03:49 UTC (rev 102803)
@@ -4,8 +4,8 @@
 # Contributor: John Proctor jproc...@prium.net
 
 pkgname=pcre
-pkgver=8.10
-pkgrel=2
+pkgver=8.11
+pkgrel=1
 pkgdesc=A library that implements Perl 5-style regular expressions
 arch=('i686' 'x86_64')
 url=http://www.pcre.org/;
@@ -13,8 +13,8 @@
 depends=('gcc-libs')
 options=('!libtool')
 
source=(ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('780867a700e9d4e4b9cb47aa5453e4b2')
-sha1sums=('8b345da0f835b2caabff071b0b5bab40564652be')
+md5sums=('ef907b8792ec7f90f0dcd773848f0b3b')
+sha1sums=('e9a9c2b2dfcf8606ad5c1fb5591801fa2cb771f5')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



[arch-commits] Commit in pcre/repos (testing-i686)

2010-12-11 Thread Allan McRae
Date: Saturday, December 11, 2010 @ 05:05:11
  Author: allan
Revision: 102804

archrelease: copy trunk to testing-i686

Added:
  pcre/repos/testing-i686/



[arch-commits] Commit in pcre/repos (testing-x86_64)

2010-12-11 Thread Allan McRae
Date: Saturday, December 11, 2010 @ 05:06:13
  Author: allan
Revision: 102805

archrelease: copy trunk to testing-x86_64

Added:
  pcre/repos/testing-x86_64/



[arch-commits] Commit in syslog-ng/repos (core-i686)

2010-12-11 Thread Allan McRae
Date: Saturday, December 11, 2010 @ 05:48:18
  Author: allan
Revision: 102806

db-move: syslog-ng removed by allan for move to [core] (i686)

Deleted:
  syslog-ng/repos/core-i686/



[arch-commits] Commit in syslog-ng/repos (core-i686 testing-i686)

2010-12-11 Thread Allan McRae
Date: Saturday, December 11, 2010 @ 05:48:19
  Author: allan
Revision: 102807

db-move: moved syslog-ng from [testing] to [core] (i686)

Added:
  syslog-ng/repos/core-i686/
Deleted:
  syslog-ng/repos/testing-i686/



[arch-commits] Commit in syslog-ng/repos (core-x86_64)

2010-12-11 Thread Allan McRae
Date: Saturday, December 11, 2010 @ 05:48:20
  Author: allan
Revision: 102808

db-move: syslog-ng removed by allan for move to [core] (x86_64)

Deleted:
  syslog-ng/repos/core-x86_64/



[arch-commits] Commit in syslog-ng/repos (core-x86_64 testing-x86_64)

2010-12-11 Thread Allan McRae
Date: Saturday, December 11, 2010 @ 05:48:23
  Author: allan
Revision: 102809

db-move: moved syslog-ng from [testing] to [core] (x86_64)

Added:
  syslog-ng/repos/core-x86_64/
Deleted:
  syslog-ng/repos/testing-x86_64/



[arch-commits] Commit in kernel26-lts/repos (core-i686)

2010-12-11 Thread andyrtr
Date: Saturday, December 11, 2010 @ 10:46:23
  Author: andyrtr
Revision: 102810

db-move: kernel26-lts removed by andyrtr for move to [core] (i686)

Deleted:
  kernel26-lts/repos/core-i686/



[arch-commits] Commit in kernel26-lts/repos (core-i686 testing-i686)

2010-12-11 Thread andyrtr
Date: Saturday, December 11, 2010 @ 10:46:23
  Author: andyrtr
Revision: 102811

db-move: moved kernel26-lts from [testing] to [core] (i686)

Added:
  kernel26-lts/repos/core-i686/
Deleted:
  kernel26-lts/repos/testing-i686/



[arch-commits] Commit in kernel26-lts/repos (core-x86_64)

2010-12-11 Thread andyrtr
Date: Saturday, December 11, 2010 @ 10:46:24
  Author: andyrtr
Revision: 102812

db-move: kernel26-lts removed by andyrtr for move to [core] (x86_64)

Deleted:
  kernel26-lts/repos/core-x86_64/



[arch-commits] Commit in kernel26-lts/repos (core-x86_64 testing-x86_64)

2010-12-11 Thread andyrtr
Date: Saturday, December 11, 2010 @ 10:46:25
  Author: andyrtr
Revision: 102813

db-move: moved kernel26-lts from [testing] to [core] (x86_64)

Added:
  kernel26-lts/repos/core-x86_64/
Deleted:
  kernel26-lts/repos/testing-x86_64/



[arch-commits] Commit in sqlite3/repos (core-i686)

2010-12-11 Thread andyrtr
Date: Saturday, December 11, 2010 @ 10:50:53
  Author: andyrtr
Revision: 102814

db-move: sqlite3 removed by andyrtr for move to [core] (i686)

Deleted:
  sqlite3/repos/core-i686/



[arch-commits] Commit in sqlite3/repos (core-i686 testing-i686)

2010-12-11 Thread andyrtr
Date: Saturday, December 11, 2010 @ 10:50:54
  Author: andyrtr
Revision: 102815

db-move: moved sqlite3 from [testing] to [core] (i686)

Added:
  sqlite3/repos/core-i686/
Deleted:
  sqlite3/repos/testing-i686/



[arch-commits] Commit in sqlite3/repos (core-x86_64)

2010-12-11 Thread andyrtr
Date: Saturday, December 11, 2010 @ 10:50:55
  Author: andyrtr
Revision: 102816

db-move: sqlite3 removed by andyrtr for move to [core] (x86_64)

Deleted:
  sqlite3/repos/core-x86_64/



[arch-commits] Commit in sqlite3/repos (core-x86_64 testing-x86_64)

2010-12-11 Thread andyrtr
Date: Saturday, December 11, 2010 @ 10:50:56
  Author: andyrtr
Revision: 102817

db-move: moved sqlite3 from [testing] to [core] (x86_64)

Added:
  sqlite3/repos/core-x86_64/
Deleted:
  sqlite3/repos/testing-x86_64/



[arch-commits] Commit in xulrunner/repos (extra-i686)

2010-12-11 Thread andyrtr
Date: Saturday, December 11, 2010 @ 10:51:08
  Author: andyrtr
Revision: 102818

db-move: xulrunner removed by andyrtr for move to [extra] (i686)

Deleted:
  xulrunner/repos/extra-i686/



[arch-commits] Commit in xulrunner/repos (extra-i686 testing-i686)

2010-12-11 Thread andyrtr
Date: Saturday, December 11, 2010 @ 10:51:09
  Author: andyrtr
Revision: 102819

db-move: moved xulrunner from [testing] to [extra] (i686)

Added:
  xulrunner/repos/extra-i686/
Deleted:
  xulrunner/repos/testing-i686/



[arch-commits] Commit in xulrunner/repos (extra-x86_64)

2010-12-11 Thread andyrtr
Date: Saturday, December 11, 2010 @ 10:51:10
  Author: andyrtr
Revision: 102820

db-move: xulrunner removed by andyrtr for move to [extra] (x86_64)

Deleted:
  xulrunner/repos/extra-x86_64/



[arch-commits] Commit in xulrunner/repos (extra-x86_64 testing-x86_64)

2010-12-11 Thread andyrtr
Date: Saturday, December 11, 2010 @ 10:51:11
  Author: andyrtr
Revision: 102821

db-move: moved xulrunner from [testing] to [extra] (x86_64)

Added:
  xulrunner/repos/extra-x86_64/
Deleted:
  xulrunner/repos/testing-x86_64/



[arch-commits] Commit in thunderbird/repos (extra-i686)

2010-12-11 Thread andyrtr
Date: Saturday, December 11, 2010 @ 10:51:12
  Author: andyrtr
Revision: 102822

db-move: thunderbird removed by andyrtr for move to [extra] (i686)

Deleted:
  thunderbird/repos/extra-i686/



[arch-commits] Commit in thunderbird/repos (extra-i686 testing-i686)

2010-12-11 Thread andyrtr
Date: Saturday, December 11, 2010 @ 10:51:15
  Author: andyrtr
Revision: 102823

db-move: moved thunderbird from [testing] to [extra] (i686)

Added:
  thunderbird/repos/extra-i686/
Deleted:
  thunderbird/repos/testing-i686/



[arch-commits] Commit in thunderbird/repos (extra-x86_64 testing-x86_64)

2010-12-11 Thread andyrtr
Date: Saturday, December 11, 2010 @ 10:51:17
  Author: andyrtr
Revision: 102825

db-move: moved thunderbird from [testing] to [extra] (x86_64)

Added:
  thunderbird/repos/extra-x86_64/
Deleted:
  thunderbird/repos/testing-x86_64/



[arch-commits] Commit in thunderbird/repos (extra-x86_64)

2010-12-11 Thread andyrtr
Date: Saturday, December 11, 2010 @ 10:51:16
  Author: andyrtr
Revision: 102824

db-move: thunderbird removed by andyrtr for move to [extra] (x86_64)

Deleted:
  thunderbird/repos/extra-x86_64/



[arch-commits] Commit in procinfo-ng/repos (core-i686)

2010-12-11 Thread Eric Bélanger
Date: Saturday, December 11, 2010 @ 17:27:27
  Author: eric
Revision: 102826

db-move: procinfo-ng removed by eric for move to [core] (i686)

Deleted:
  procinfo-ng/repos/core-i686/



[arch-commits] Commit in procinfo-ng/repos (core-i686 testing-i686)

2010-12-11 Thread Eric Bélanger
Date: Saturday, December 11, 2010 @ 17:27:28
  Author: eric
Revision: 102827

db-move: moved procinfo-ng from [testing] to [core] (i686)

Added:
  procinfo-ng/repos/core-i686/
Deleted:
  procinfo-ng/repos/testing-i686/



[arch-commits] Commit in procinfo-ng/repos (core-x86_64)

2010-12-11 Thread Eric Bélanger
Date: Saturday, December 11, 2010 @ 17:27:29
  Author: eric
Revision: 102828

db-move: procinfo-ng removed by eric for move to [core] (x86_64)

Deleted:
  procinfo-ng/repos/core-x86_64/



[arch-commits] Commit in procinfo-ng/repos (core-x86_64 testing-x86_64)

2010-12-11 Thread Eric Bélanger
Date: Saturday, December 11, 2010 @ 17:27:30
  Author: eric
Revision: 102829

db-move: moved procinfo-ng from [testing] to [core] (x86_64)

Added:
  procinfo-ng/repos/core-x86_64/
Deleted:
  procinfo-ng/repos/testing-x86_64/



[arch-commits] Commit in mpd/trunk (PKGBUILD)

2010-12-11 Thread Angel Velásquez
Date: Saturday, December 11, 2010 @ 23:55:19
  Author: angvp
Revision: 102830

upgpkg: mpd 0.16-1
Bump release to 0.16

Modified:
  mpd/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2010-12-11 22:27:30 UTC (rev 102829)
+++ PKGBUILD2010-12-12 04:55:19 UTC (rev 102830)
@@ -4,8 +4,8 @@
 # Contributor: Ben b...@benmazer.net
 
 pkgname=mpd
-pkgver=0.15.15
-pkgrel=2
+pkgver=0.16
+pkgrel=1
 pkgdesc=Music daemon that plays MP3, FLAC, and Ogg Vorbis files
 arch=('i686' 'x86_64')
 license=('GPL')
@@ -17,7 +17,7 @@
 install=${pkgname}.install
 source=(http://downloads.sourceforge.net/musicpd/${pkgname}-${pkgver}.tar.bz2;
 'mpd')
-md5sums=('af0972af6237771acc420d2452fa627a'
+md5sums=('3fc8ccc4488cbaadc1a10f415eada35f'
  'e5669c2bff4031928531e52475addeb1')
 
 build() {



[arch-commits] Commit in mpd/repos (testing-i686)

2010-12-11 Thread Angel Velásquez
Date: Saturday, December 11, 2010 @ 23:55:30
  Author: angvp
Revision: 102831

archrelease: copy trunk to testing-i686

Added:
  mpd/repos/testing-i686/



[arch-commits] Commit in mpd/repos (testing-x86_64)

2010-12-11 Thread Angel Velásquez
Date: Saturday, December 11, 2010 @ 23:55:42
  Author: angvp
Revision: 102832

archrelease: copy trunk to testing-x86_64

Added:
  mpd/repos/testing-x86_64/