[arch-commits] Commit in gtkhtml4/trunk (2 files)

2012-05-09 Thread Jan de Groot
Date: Wednesday, May 9, 2012 @ 03:42:48
  Author: jgc
Revision: 158751

upgpkg: gtkhtml4 4.4.1-2

Fix selection behaviour in iframes, fixes issues with HTML mails in Evolution

Added:
  gtkhtml4/trunk/fix-selection-behaviour-in-iframe.patch
Modified:
  gtkhtml4/trunk/PKGBUILD

-+
 PKGBUILD|9 +--
 fix-selection-behaviour-in-iframe.patch |   35 ++
 2 files changed, 41 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-05-09 01:14:11 UTC (rev 158750)
+++ PKGBUILD2012-05-09 07:42:48 UTC (rev 158751)
@@ -4,7 +4,7 @@
 pkgname=gtkhtml4
 _pkgbasename=gtkhtml
 pkgver=4.4.1
-pkgrel=1
+pkgrel=2
 pkgdesc=A lightweight HTML renderer/editor widget for GTK3
 arch=(i686 x86_64)
 license=('GPL')
@@ -12,11 +12,14 @@
 makedepends=('intltool')
 url=http://www.gnome.org;
 options=('!libtool')
-source=(http://ftp.gnome.org/pub/gnome/sources/$_pkgbasename/${pkgver%.*}/$_pkgbasename-$pkgver.tar.xz)
-sha256sums=('2fb3286c5ab8b6349a694156f803e1162c5a234d30548eb0afdf82e139923236')
+source=(http://ftp.gnome.org/pub/gnome/sources/$_pkgbasename/${pkgver%.*}/$_pkgbasename-$pkgver.tar.xz
+fix-selection-behaviour-in-iframe.patch)
+sha256sums=('2fb3286c5ab8b6349a694156f803e1162c5a234d30548eb0afdf82e139923236'
+'ed1d9a4515f9137aaa94511f421b610af04091c56573ff9b74ba104a2ca1b207')
 
 build() {
 cd $_pkgbasename-$pkgver
+patch -Np1 -i ${srcdir}/fix-selection-behaviour-in-iframe.patch
 ./configure --prefix=/usr --sysconfdir=/etc \
 --libexecdir=/usr/lib/gtkhtml4 \
 --localstatedir=/var --disable-static

Added: fix-selection-behaviour-in-iframe.patch
===
--- fix-selection-behaviour-in-iframe.patch (rev 0)
+++ fix-selection-behaviour-in-iframe.patch 2012-05-09 07:42:48 UTC (rev 
158751)
@@ -0,0 +1,35 @@
+From 9ec36544203d4c1b98aa843c2c3ff0a4f725da68 Mon Sep 17 00:00:00 2001
+From: Sam Thursfield sam.thursfi...@codethink.co.uk
+Date: Thu, 03 May 2012 19:04:20 +
+Subject: Bug 672582 - Fix selection behavior inside iframe
+
+Since kinetic scrolling was introduced in Gtk+, GtkScrolledWindow
+has had its own GdkWindow. This means we need to use the allocation
+of the GtkScrolledWindow rather than its child GtkHTML widget when we
+want to translate pointer coordinates relative to the iframe, because
+a widget's GtkAllocation is relative to the parent GdkWindow.
+
+(cherry picked from commit 7b7b37745d2f46914be314e4d7aef7a575529345)
+---
+diff --git a/gtkhtml/gtkhtml.c b/gtkhtml/gtkhtml.c
+index 697b16e..6284855 100644
+--- a/gtkhtml/gtkhtml.c
 b/gtkhtml/gtkhtml.c
+@@ -1823,9 +1823,14 @@ shift_to_iframe_parent (GtkWidget *widget,
+ gint *y)
+ {
+   while (GTK_HTML (widget)-iframe_parent) {
++  GtkWidget *scrolled_window;
+   GtkAllocation allocation;
+ 
+-  gtk_widget_get_allocation (widget, allocation);
++  scrolled_window = gtk_widget_get_parent (widget);
++
++  g_return_val_if_fail (GTK_IS_SCROLLED_WINDOW (scrolled_window), 
widget);
++
++  gtk_widget_get_allocation (scrolled_window, allocation);
+ 
+   if (x)
+   *x += allocation.x - GTK_HTML 
(widget)-engine-x_offset;
+--
+cgit v0.9.0.2



[arch-commits] Commit in gtkhtml4/repos (6 files)

2012-05-09 Thread Jan de Groot
Date: Wednesday, May 9, 2012 @ 03:43:11
  Author: jgc
Revision: 158752

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  gtkhtml4/repos/extra-i686/PKGBUILD
(from rev 158751, gtkhtml4/trunk/PKGBUILD)
  gtkhtml4/repos/extra-i686/fix-selection-behaviour-in-iframe.patch
(from rev 158751, gtkhtml4/trunk/fix-selection-behaviour-in-iframe.patch)
  gtkhtml4/repos/extra-x86_64/PKGBUILD
(from rev 158751, gtkhtml4/trunk/PKGBUILD)
  gtkhtml4/repos/extra-x86_64/fix-selection-behaviour-in-iframe.patch
(from rev 158751, gtkhtml4/trunk/fix-selection-behaviour-in-iframe.patch)
Deleted:
  gtkhtml4/repos/extra-i686/PKGBUILD
  gtkhtml4/repos/extra-x86_64/PKGBUILD

--+
 extra-i686/PKGBUILD  |   61 -
 extra-i686/fix-selection-behaviour-in-iframe.patch   |   35 +
 extra-x86_64/PKGBUILD|   61 -
 extra-x86_64/fix-selection-behaviour-in-iframe.patch |   35 +
 4 files changed, 134 insertions(+), 58 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-05-09 07:42:48 UTC (rev 158751)
+++ extra-i686/PKGBUILD 2012-05-09 07:43:11 UTC (rev 158752)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru ib...@archlinux.org
-
-pkgname=gtkhtml4
-_pkgbasename=gtkhtml
-pkgver=4.4.1
-pkgrel=1
-pkgdesc=A lightweight HTML renderer/editor widget for GTK3
-arch=(i686 x86_64)
-license=('GPL')
-depends=('gtk3' 'enchant' 'iso-codes' 'gnome-icon-theme' 'libsoup')
-makedepends=('intltool')
-url=http://www.gnome.org;
-options=('!libtool')
-source=(http://ftp.gnome.org/pub/gnome/sources/$_pkgbasename/${pkgver%.*}/$_pkgbasename-$pkgver.tar.xz)
-sha256sums=('2fb3286c5ab8b6349a694156f803e1162c5a234d30548eb0afdf82e139923236')
-
-build() {
-cd $_pkgbasename-$pkgver
-./configure --prefix=/usr --sysconfdir=/etc \
---libexecdir=/usr/lib/gtkhtml4 \
---localstatedir=/var --disable-static
-make
-}
-
-package() {
-cd $_pkgbasename-$pkgver
-make DESTDIR=$pkgdir install
-}

Copied: gtkhtml4/repos/extra-i686/PKGBUILD (from rev 158751, 
gtkhtml4/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-05-09 07:43:11 UTC (rev 158752)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Ionut Biru ib...@archlinux.org
+
+pkgname=gtkhtml4
+_pkgbasename=gtkhtml
+pkgver=4.4.1
+pkgrel=2
+pkgdesc=A lightweight HTML renderer/editor widget for GTK3
+arch=(i686 x86_64)
+license=('GPL')
+depends=('gtk3' 'enchant' 'iso-codes' 'gnome-icon-theme' 'libsoup')
+makedepends=('intltool')
+url=http://www.gnome.org;
+options=('!libtool')
+source=(http://ftp.gnome.org/pub/gnome/sources/$_pkgbasename/${pkgver%.*}/$_pkgbasename-$pkgver.tar.xz
+fix-selection-behaviour-in-iframe.patch)
+sha256sums=('2fb3286c5ab8b6349a694156f803e1162c5a234d30548eb0afdf82e139923236'
+'ed1d9a4515f9137aaa94511f421b610af04091c56573ff9b74ba104a2ca1b207')
+
+build() {
+cd $_pkgbasename-$pkgver
+patch -Np1 -i ${srcdir}/fix-selection-behaviour-in-iframe.patch
+./configure --prefix=/usr --sysconfdir=/etc \
+--libexecdir=/usr/lib/gtkhtml4 \
+--localstatedir=/var --disable-static
+make
+}
+
+package() {
+cd $_pkgbasename-$pkgver
+make DESTDIR=$pkgdir install
+}

Copied: gtkhtml4/repos/extra-i686/fix-selection-behaviour-in-iframe.patch (from 
rev 158751, gtkhtml4/trunk/fix-selection-behaviour-in-iframe.patch)
===
--- extra-i686/fix-selection-behaviour-in-iframe.patch  
(rev 0)
+++ extra-i686/fix-selection-behaviour-in-iframe.patch  2012-05-09 07:43:11 UTC 
(rev 158752)
@@ -0,0 +1,35 @@
+From 9ec36544203d4c1b98aa843c2c3ff0a4f725da68 Mon Sep 17 00:00:00 2001
+From: Sam Thursfield sam.thursfi...@codethink.co.uk
+Date: Thu, 03 May 2012 19:04:20 +
+Subject: Bug 672582 - Fix selection behavior inside iframe
+
+Since kinetic scrolling was introduced in Gtk+, GtkScrolledWindow
+has had its own GdkWindow. This means we need to use the allocation
+of the GtkScrolledWindow rather than its child GtkHTML widget when we
+want to translate pointer coordinates relative to the iframe, because
+a widget's GtkAllocation is relative to the parent GdkWindow.
+
+(cherry picked from commit 7b7b37745d2f46914be314e4d7aef7a575529345)
+---
+diff --git a/gtkhtml/gtkhtml.c b/gtkhtml/gtkhtml.c
+index 697b16e..6284855 100644
+--- a/gtkhtml/gtkhtml.c
 b/gtkhtml/gtkhtml.c
+@@ -1823,9 +1823,14 @@ shift_to_iframe_parent (GtkWidget *widget,
+ gint *y)
+ {
+   while (GTK_HTML (widget)-iframe_parent) {
++  GtkWidget *scrolled_window;
+   GtkAllocation allocation;
+ 
+-  gtk_widget_get_allocation (widget, allocation);
++  

[arch-commits] Commit in linux/repos (19 files)

2012-05-09 Thread Tobias Powalowski
Date: Wednesday, May 9, 2012 @ 04:12:44
  Author: tpowa
Revision: 158753

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

Added:
  linux/repos/core-i686/PKGBUILD
(from rev 158752, linux/repos/testing-i686/PKGBUILD)
  linux/repos/core-i686/change-default-console-loglevel.patch
(from rev 158752, 
linux/repos/testing-i686/change-default-console-loglevel.patch)
  linux/repos/core-i686/config
(from rev 158752, linux/repos/testing-i686/config)
  linux/repos/core-i686/config.x86_64
(from rev 158752, linux/repos/testing-i686/config.x86_64)
  linux/repos/core-i686/ext4-options.patch
(from rev 158752, linux/repos/testing-i686/ext4-options.patch)
  linux/repos/core-i686/fix-acerhdf-1810T-bios.patch
(from rev 158752, linux/repos/testing-i686/fix-acerhdf-1810T-bios.patch)
  linux/repos/core-i686/i915-fix-ghost-tv-output.patch
(from rev 158752, linux/repos/testing-i686/i915-fix-ghost-tv-output.patch)
  linux/repos/core-i686/linux.install
(from rev 158752, linux/repos/testing-i686/linux.install)
  linux/repos/core-i686/linux.preset
(from rev 158752, linux/repos/testing-i686/linux.preset)
Deleted:
  linux/repos/core-i686/PKGBUILD
  linux/repos/core-i686/change-default-console-loglevel.patch
  linux/repos/core-i686/config
  linux/repos/core-i686/config.x86_64
  linux/repos/core-i686/ext4-options.patch
  linux/repos/core-i686/fix-acerhdf-1810T-bios.patch
  linux/repos/core-i686/i915-fix-ghost-tv-output.patch
  linux/repos/core-i686/linux.install
  linux/repos/core-i686/linux.preset
  linux/repos/testing-i686/

---+
 PKGBUILD  |  608 -
 change-default-console-loglevel.patch |   24 
 config|11536 
 config.x86_64 |11080 +++---
 ext4-options.patch|  100 
 fix-acerhdf-1810T-bios.patch  |   20 
 i915-fix-ghost-tv-output.patch|   52 
 linux.install |  124 
 linux.preset  |   28 
 9 files changed, 11786 insertions(+), 11786 deletions(-)

The diff is longer than the limit of 200KB.
Use svn diff -r 158752:158753 to see the changes.


[arch-commits] Commit in linux/repos (19 files)

2012-05-09 Thread Tobias Powalowski
Date: Wednesday, May 9, 2012 @ 04:12:45
  Author: tpowa
Revision: 158754

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

Added:
  linux/repos/core-x86_64/PKGBUILD
(from rev 158752, linux/repos/testing-x86_64/PKGBUILD)
  linux/repos/core-x86_64/change-default-console-loglevel.patch
(from rev 158752, 
linux/repos/testing-x86_64/change-default-console-loglevel.patch)
  linux/repos/core-x86_64/config
(from rev 158752, linux/repos/testing-x86_64/config)
  linux/repos/core-x86_64/config.x86_64
(from rev 158752, linux/repos/testing-x86_64/config.x86_64)
  linux/repos/core-x86_64/ext4-options.patch
(from rev 158752, linux/repos/testing-x86_64/ext4-options.patch)
  linux/repos/core-x86_64/fix-acerhdf-1810T-bios.patch
(from rev 158752, linux/repos/testing-x86_64/fix-acerhdf-1810T-bios.patch)
  linux/repos/core-x86_64/i915-fix-ghost-tv-output.patch
(from rev 158752, linux/repos/testing-x86_64/i915-fix-ghost-tv-output.patch)
  linux/repos/core-x86_64/linux.install
(from rev 158752, linux/repos/testing-x86_64/linux.install)
  linux/repos/core-x86_64/linux.preset
(from rev 158752, linux/repos/testing-x86_64/linux.preset)
Deleted:
  linux/repos/core-x86_64/PKGBUILD
  linux/repos/core-x86_64/change-default-console-loglevel.patch
  linux/repos/core-x86_64/config
  linux/repos/core-x86_64/config.x86_64
  linux/repos/core-x86_64/ext4-options.patch
  linux/repos/core-x86_64/fix-acerhdf-1810T-bios.patch
  linux/repos/core-x86_64/i915-fix-ghost-tv-output.patch
  linux/repos/core-x86_64/linux.install
  linux/repos/core-x86_64/linux.preset
  linux/repos/testing-x86_64/

---+
 PKGBUILD  |  608 -
 change-default-console-loglevel.patch |   24 
 config|11536 
 config.x86_64 |11080 +++---
 ext4-options.patch|  100 
 fix-acerhdf-1810T-bios.patch  |   20 
 i915-fix-ghost-tv-output.patch|   52 
 linux.install |  124 
 linux.preset  |   28 
 9 files changed, 11786 insertions(+), 11786 deletions(-)

The diff is longer than the limit of 200KB.
Use svn diff -r 158753:158754 to see the changes.


[arch-commits] Commit in linux-lts/repos (19 files)

2012-05-09 Thread Tobias Powalowski
Date: Wednesday, May 9, 2012 @ 04:13:20
  Author: tpowa
Revision: 158755

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

Added:
  linux-lts/repos/core-i686/CVE-2012-0056.patch
(from rev 158754, linux-lts/repos/testing-i686/CVE-2012-0056.patch)
  linux-lts/repos/core-i686/PKGBUILD
(from rev 158754, linux-lts/repos/testing-i686/PKGBUILD)
  linux-lts/repos/core-i686/change-default-console-loglevel.patch
(from rev 158754, 
linux-lts/repos/testing-i686/change-default-console-loglevel.patch)
  linux-lts/repos/core-i686/config
(from rev 158754, linux-lts/repos/testing-i686/config)
  linux-lts/repos/core-i686/config.x86_64
(from rev 158754, linux-lts/repos/testing-i686/config.x86_64)
  linux-lts/repos/core-i686/ext4-options.patch
(from rev 158754, linux-lts/repos/testing-i686/ext4-options.patch)
  linux-lts/repos/core-i686/i915-fix-ghost-tv-output.patch
(from rev 158754, 
linux-lts/repos/testing-i686/i915-fix-ghost-tv-output.patch)
  linux-lts/repos/core-i686/linux-lts.install
(from rev 158754, linux-lts/repos/testing-i686/linux-lts.install)
  linux-lts/repos/core-i686/linux-lts.preset
(from rev 158754, linux-lts/repos/testing-i686/linux-lts.preset)
Deleted:
  linux-lts/repos/core-i686/CVE-2012-0056.patch
  linux-lts/repos/core-i686/PKGBUILD
  linux-lts/repos/core-i686/change-default-console-loglevel.patch
  linux-lts/repos/core-i686/config
  linux-lts/repos/core-i686/config.x86_64
  linux-lts/repos/core-i686/ext4-options.patch
  linux-lts/repos/core-i686/i915-fix-ghost-tv-output.patch
  linux-lts/repos/core-i686/linux-lts.install
  linux-lts/repos/core-i686/linux-lts.preset
  linux-lts/repos/testing-i686/

---+
 CVE-2012-0056.patch   |  538 -
 PKGBUILD  |  558 -
 change-default-console-loglevel.patch |   24 
 config|11294 
 config.x86_64 |10770 +++---
 ext4-options.patch|   98 
 i915-fix-ghost-tv-output.patch|   52 
 linux-lts.install |  124 
 linux-lts.preset  |   28 
 9 files changed, 11743 insertions(+), 11743 deletions(-)

The diff is longer than the limit of 200KB.
Use svn diff -r 158754:158755 to see the changes.


[arch-commits] Commit in linux-lts/repos (19 files)

2012-05-09 Thread Tobias Powalowski
Date: Wednesday, May 9, 2012 @ 04:13:22
  Author: tpowa
Revision: 158756

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

Added:
  linux-lts/repos/core-x86_64/CVE-2012-0056.patch
(from rev 158754, linux-lts/repos/testing-x86_64/CVE-2012-0056.patch)
  linux-lts/repos/core-x86_64/PKGBUILD
(from rev 158754, linux-lts/repos/testing-x86_64/PKGBUILD)
  linux-lts/repos/core-x86_64/change-default-console-loglevel.patch
(from rev 158754, 
linux-lts/repos/testing-x86_64/change-default-console-loglevel.patch)
  linux-lts/repos/core-x86_64/config
(from rev 158754, linux-lts/repos/testing-x86_64/config)
  linux-lts/repos/core-x86_64/config.x86_64
(from rev 158754, linux-lts/repos/testing-x86_64/config.x86_64)
  linux-lts/repos/core-x86_64/ext4-options.patch
(from rev 158754, linux-lts/repos/testing-x86_64/ext4-options.patch)
  linux-lts/repos/core-x86_64/i915-fix-ghost-tv-output.patch
(from rev 158754, 
linux-lts/repos/testing-x86_64/i915-fix-ghost-tv-output.patch)
  linux-lts/repos/core-x86_64/linux-lts.install
(from rev 158754, linux-lts/repos/testing-x86_64/linux-lts.install)
  linux-lts/repos/core-x86_64/linux-lts.preset
(from rev 158754, linux-lts/repos/testing-x86_64/linux-lts.preset)
Deleted:
  linux-lts/repos/core-x86_64/CVE-2012-0056.patch
  linux-lts/repos/core-x86_64/PKGBUILD
  linux-lts/repos/core-x86_64/change-default-console-loglevel.patch
  linux-lts/repos/core-x86_64/config
  linux-lts/repos/core-x86_64/config.x86_64
  linux-lts/repos/core-x86_64/ext4-options.patch
  linux-lts/repos/core-x86_64/i915-fix-ghost-tv-output.patch
  linux-lts/repos/core-x86_64/linux-lts.install
  linux-lts/repos/core-x86_64/linux-lts.preset
  linux-lts/repos/testing-x86_64/

---+
 CVE-2012-0056.patch   |  538 -
 PKGBUILD  |  558 -
 change-default-console-loglevel.patch |   24 
 config|11294 
 config.x86_64 |10770 +++---
 ext4-options.patch|   98 
 i915-fix-ghost-tv-output.patch|   52 
 linux-lts.install |  124 
 linux-lts.preset  |   28 
 9 files changed, 11743 insertions(+), 11743 deletions(-)

The diff is longer than the limit of 200KB.
Use svn diff -r 158755:158756 to see the changes.


[arch-commits] Commit in kdebase-workspace/trunk (PKGBUILD fix-krunner-crash.patch)

2012-05-09 Thread Andrea Scarpino
Date: Wednesday, May 9, 2012 @ 04:39:14
  Author: andrea
Revision: 158757

upgpkg: kdebase-workspace 4.8.3-2

Fix krunner crash with glibc 2.15 (FS#29467)

Added:
  kdebase-workspace/trunk/fix-krunner-crash.patch
Modified:
  kdebase-workspace/trunk/PKGBUILD

-+
 PKGBUILD|   10 +++---
 fix-krunner-crash.patch |   13 +
 2 files changed, 20 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-05-09 08:13:22 UTC (rev 158756)
+++ PKGBUILD2012-05-09 08:39:14 UTC (rev 158757)
@@ -5,7 +5,7 @@
 pkgname=kdebase-workspace
 _pkgname=kde-workspace
 pkgver=4.8.3
-pkgrel=1
+pkgrel=2
 pkgdesc=KDE Base Workspace
 arch=('i686' 'x86_64')
 url='http://www.kde.org'
@@ -29,7 +29,8 @@
 options=('emptydirs')
 
source=(http://download.kde.org/stable/${pkgver}/src/${_pkgname}-${pkgver}.tar.xz;
 'kdm' 'kde.pam' 'kde-np.pam' 'kscreensaver.pam'
-'fixpath.patch' 'terminate-server.patch' 'kdm-xinitrd.patch')
+'fixpath.patch' 'terminate-server.patch' 'kdm-xinitrd.patch'
+'fix-krunner-crash.patch')
 sha1sums=('23dbd023f76769ba6ea77dbc11314eca504ad3d2'
   '5db3a245201bd4a50e65aa2ef583cf5490e4f646'
   '712a90999bd429883dcef5dcaf288aace332ced8'
@@ -37,13 +38,16 @@
   '106635aa1aae51d6f0668b1853f6c49a4fe9d3d8'
   'd7b5883f7e65c6839b1f65f94d58026673dd0226'
   'ac7bc292c865bc1ab8c02e6341aa7aeaf1a3'
-  'd509dac592bd8b310df27991b208c95b6d907514')
+  'd509dac592bd8b310df27991b208c95b6d907514'
+  'f898561d2b32dead8195f0610141edf7d423d46c')
 
 build() {
cd ${srcdir}/${_pkgname}-${pkgver}
patch -p1 -i ${srcdir}/kdm-xinitrd.patch
patch -p0 -i ${srcdir}/fixpath.patch
patch -p0 -i ${srcdir}/terminate-server.patch
+   
+patch -p1 -i ${srcdir}/fix-krunner-crash.patch
 
cd ${srcdir}
mkdir build

Added: fix-krunner-crash.patch
===
--- fix-krunner-crash.patch (rev 0)
+++ fix-krunner-crash.patch 2012-05-09 08:39:14 UTC (rev 158757)
@@ -0,0 +1,13 @@
+diff --git a/libs/plasmagenericshell/panelshadows.cpp 
b/libs/plasmagenericshell/panelshadows.cpp
+index ee55571..2f45153 100644
+--- a/libs/plasmagenericshell/panelshadows.cpp
 b/libs/plasmagenericshell/panelshadows.cpp
+@@ -122,7 +122,7 @@ void PanelShadows::Private::initPixmap(const QString 
element)
+ {
+ #ifdef Q_WS_X11
+ QPixmap pix = q-pixmap(element);
+-if (pix.handle() == 0) {
++if (!pix.isNull()  pix.handle() == 0) {
+ Pixmap xPix = XCreatePixmap(QX11Info::display(), 
QX11Info::appRootWindow(), pix.width(), pix.height(), 32);
+ QPixmap tempPix = QPixmap::fromX11Pixmap(xPix, 
QPixmap::ExplicitlyShared);
+ tempPix.fill(Qt::transparent);



[arch-commits] Commit in glib2/repos (9 files)

2012-05-09 Thread Ionut Biru
Date: Wednesday, May 9, 2012 @ 04:41:44
  Author: ibiru
Revision: 158758

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

Added:
  glib2/repos/core-i686/PKGBUILD
(from rev 158757, glib2/repos/testing-i686/PKGBUILD)
  glib2/repos/core-i686/glib2.csh
(from rev 158757, glib2/repos/testing-i686/glib2.csh)
  glib2/repos/core-i686/glib2.sh
(from rev 158757, glib2/repos/testing-i686/glib2.sh)
  glib2/repos/core-i686/revert-warn-glib-compile-schemas.patch
(from rev 158757, 
glib2/repos/testing-i686/revert-warn-glib-compile-schemas.patch)
Deleted:
  glib2/repos/core-i686/PKGBUILD
  glib2/repos/core-i686/glib2.csh
  glib2/repos/core-i686/glib2.sh
  glib2/repos/core-i686/revert-warn-glib-compile-schemas.patch
  glib2/repos/testing-i686/

+
 PKGBUILD   |   92 +++
 glib2.csh  |2 
 glib2.sh   |2 
 revert-warn-glib-compile-schemas.patch |   66 +++---
 4 files changed, 81 insertions(+), 81 deletions(-)

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2012-05-09 08:39:14 UTC (rev 158757)
+++ core-i686/PKGBUILD  2012-05-09 08:41:44 UTC (rev 158758)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=glib2
-pkgver=2.32.1
-pkgrel=3
-pkgdesc=Common C routines used by GTK+ and other libs
-url=http://www.gtk.org/;
-arch=(i686 x86_64)
-license=('LGPL')
-depends=('pcre' 'libffi')
-makedepends=('pkg-config' 'python2')
-optdepends=('python2: for gdbus-codegen')
-options=('!libtool' '!docs' '!emptydirs')
-source=(http://ftp.gnome.org/pub/GNOME/sources/glib/${pkgver%.*}/glib-$pkgver.tar.xz
-glib2.sh
-glib2.csh
-revert-warn-glib-compile-schemas.patch)
-sha256sums=('484d5b7fc09f3fa398355adaf74b369768f5859866c299f229c99721990f8398'
-'9456872cdedcc639fb679448d74b85b0facf81033e27157d2861b991823b5a2a'
-'8d5626ffa361304ad3696493c0ef041d0ab10c857f6ef32116b3e2878ecf89e3'
-'049240975cd2f1c88fbe7deb28af14d4ec7d2640495f7ca8980d873bb710cc97')
-
-build() {
-  cd glib-$pkgver
-  patch -Rp1 -i $srcdir/revert-warn-glib-compile-schemas.patch
-  PYTHON=/usr/bin/python2 ./configure --prefix=/usr \
-  --sysconfdir=/etc \
-  --with-pcre=system \
-  --disable-fam
-  make
-}
-
-package() {
-  cd glib-$pkgver
-  make DESTDIR=$pkgdir install
-
-  install -d $pkgdir/etc/profile.d
-  install -m755 $srcdir/glib2.sh $pkgdir/etc/profile.d/
-  install -m755 $srcdir/glib2.csh $pkgdir/etc/profile.d/
-
-  for _i in $pkgdir/etc/bash_completion.d/*; do
-  chmod -x $_i
-  done
-  sed -i s|#!/usr/bin/env python|#!/usr/bin/env python2| 
$pkgdir/usr/bin/gdbus-codegen
-}

Copied: glib2/repos/core-i686/PKGBUILD (from rev 158757, 
glib2/repos/testing-i686/PKGBUILD)
===
--- core-i686/PKGBUILD  (rev 0)
+++ core-i686/PKGBUILD  2012-05-09 08:41:44 UTC (rev 158758)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=glib2
+pkgver=2.32.2
+pkgrel=2
+pkgdesc=Common C routines used by GTK+ and other libs
+url=http://www.gtk.org/;
+arch=(i686 x86_64)
+license=('LGPL')
+depends=('pcre' 'libffi')
+makedepends=('pkg-config' 'python2')
+optdepends=('python2: for gdbus-codegen')
+options=('!libtool' '!docs' '!emptydirs')
+source=(http://ftp.gnome.org/pub/GNOME/sources/glib/${pkgver%.*}/glib-$pkgver.tar.xz
+glib2.sh
+glib2.csh
+revert-warn-glib-compile-schemas.patch)
+sha256sums=('b1764abf00bac96e0e93e29fb9715ce75f3583579acac40648e18771d43d6136'
+'9456872cdedcc639fb679448d74b85b0facf81033e27157d2861b991823b5a2a'
+'8d5626ffa361304ad3696493c0ef041d0ab10c857f6ef32116b3e2878ecf89e3'
+'049240975cd2f1c88fbe7deb28af14d4ec7d2640495f7ca8980d873bb710cc97')
+
+build() {
+  cd glib-$pkgver
+  patch -Rp1 -i $srcdir/revert-warn-glib-compile-schemas.patch
+  PYTHON=/usr/bin/python2 ./configure --prefix=/usr --libdir=/usr/lib \
+  --sysconfdir=/etc \
+  --with-pcre=system \
+  --disable-fam
+  make
+}
+
+package() {
+  cd glib-$pkgver
+  make DESTDIR=$pkgdir install
+
+  install -d $pkgdir/etc/profile.d
+  install -m755 $srcdir/glib2.sh $pkgdir/etc/profile.d/
+  install -m755 $srcdir/glib2.csh $pkgdir/etc/profile.d/
+
+  for _i in $pkgdir/etc/bash_completion.d/*; do
+  chmod -x $_i
+  done
+  sed -i s|#!/usr/bin/env python|#!/usr/bin/env python2| 
$pkgdir/usr/bin/gdbus-codegen
+}

Deleted: core-i686/glib2.csh
===
--- core-i686/glib2.csh 2012-05-09 08:39:14 UTC (rev 158757)
+++ core-i686/glib2.csh 2012-05-09 08:41:44 UTC (rev 158758)
@@ -1 +0,0 @@
-setenv G_BROKEN_FILENAMES 1

Copied: glib2/repos/core-i686/glib2.csh (from rev 158757, 
glib2/repos/testing-i686/glib2.csh)

[arch-commits] Commit in glib2/repos (9 files)

2012-05-09 Thread Ionut Biru
Date: Wednesday, May 9, 2012 @ 04:41:45
  Author: ibiru
Revision: 158759

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

Added:
  glib2/repos/core-x86_64/PKGBUILD
(from rev 158757, glib2/repos/testing-x86_64/PKGBUILD)
  glib2/repos/core-x86_64/glib2.csh
(from rev 158757, glib2/repos/testing-x86_64/glib2.csh)
  glib2/repos/core-x86_64/glib2.sh
(from rev 158757, glib2/repos/testing-x86_64/glib2.sh)
  glib2/repos/core-x86_64/revert-warn-glib-compile-schemas.patch
(from rev 158757, 
glib2/repos/testing-x86_64/revert-warn-glib-compile-schemas.patch)
Deleted:
  glib2/repos/core-x86_64/PKGBUILD
  glib2/repos/core-x86_64/glib2.csh
  glib2/repos/core-x86_64/glib2.sh
  glib2/repos/core-x86_64/revert-warn-glib-compile-schemas.patch
  glib2/repos/testing-x86_64/

+
 PKGBUILD   |   92 +++
 glib2.csh  |2 
 glib2.sh   |2 
 revert-warn-glib-compile-schemas.patch |   66 +++---
 4 files changed, 81 insertions(+), 81 deletions(-)

Deleted: core-x86_64/PKGBUILD
===
--- core-x86_64/PKGBUILD2012-05-09 08:41:44 UTC (rev 158758)
+++ core-x86_64/PKGBUILD2012-05-09 08:41:45 UTC (rev 158759)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=glib2
-pkgver=2.32.1
-pkgrel=3
-pkgdesc=Common C routines used by GTK+ and other libs
-url=http://www.gtk.org/;
-arch=(i686 x86_64)
-license=('LGPL')
-depends=('pcre' 'libffi')
-makedepends=('pkg-config' 'python2')
-optdepends=('python2: for gdbus-codegen')
-options=('!libtool' '!docs' '!emptydirs')
-source=(http://ftp.gnome.org/pub/GNOME/sources/glib/${pkgver%.*}/glib-$pkgver.tar.xz
-glib2.sh
-glib2.csh
-revert-warn-glib-compile-schemas.patch)
-sha256sums=('484d5b7fc09f3fa398355adaf74b369768f5859866c299f229c99721990f8398'
-'9456872cdedcc639fb679448d74b85b0facf81033e27157d2861b991823b5a2a'
-'8d5626ffa361304ad3696493c0ef041d0ab10c857f6ef32116b3e2878ecf89e3'
-'049240975cd2f1c88fbe7deb28af14d4ec7d2640495f7ca8980d873bb710cc97')
-
-build() {
-  cd glib-$pkgver
-  patch -Rp1 -i $srcdir/revert-warn-glib-compile-schemas.patch
-  PYTHON=/usr/bin/python2 ./configure --prefix=/usr \
-  --sysconfdir=/etc \
-  --with-pcre=system \
-  --disable-fam
-  make
-}
-
-package() {
-  cd glib-$pkgver
-  make DESTDIR=$pkgdir install
-
-  install -d $pkgdir/etc/profile.d
-  install -m755 $srcdir/glib2.sh $pkgdir/etc/profile.d/
-  install -m755 $srcdir/glib2.csh $pkgdir/etc/profile.d/
-
-  for _i in $pkgdir/etc/bash_completion.d/*; do
-  chmod -x $_i
-  done
-  sed -i s|#!/usr/bin/env python|#!/usr/bin/env python2| 
$pkgdir/usr/bin/gdbus-codegen
-}

Copied: glib2/repos/core-x86_64/PKGBUILD (from rev 158757, 
glib2/repos/testing-x86_64/PKGBUILD)
===
--- core-x86_64/PKGBUILD(rev 0)
+++ core-x86_64/PKGBUILD2012-05-09 08:41:45 UTC (rev 158759)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=glib2
+pkgver=2.32.2
+pkgrel=2
+pkgdesc=Common C routines used by GTK+ and other libs
+url=http://www.gtk.org/;
+arch=(i686 x86_64)
+license=('LGPL')
+depends=('pcre' 'libffi')
+makedepends=('pkg-config' 'python2')
+optdepends=('python2: for gdbus-codegen')
+options=('!libtool' '!docs' '!emptydirs')
+source=(http://ftp.gnome.org/pub/GNOME/sources/glib/${pkgver%.*}/glib-$pkgver.tar.xz
+glib2.sh
+glib2.csh
+revert-warn-glib-compile-schemas.patch)
+sha256sums=('b1764abf00bac96e0e93e29fb9715ce75f3583579acac40648e18771d43d6136'
+'9456872cdedcc639fb679448d74b85b0facf81033e27157d2861b991823b5a2a'
+'8d5626ffa361304ad3696493c0ef041d0ab10c857f6ef32116b3e2878ecf89e3'
+'049240975cd2f1c88fbe7deb28af14d4ec7d2640495f7ca8980d873bb710cc97')
+
+build() {
+  cd glib-$pkgver
+  patch -Rp1 -i $srcdir/revert-warn-glib-compile-schemas.patch
+  PYTHON=/usr/bin/python2 ./configure --prefix=/usr --libdir=/usr/lib \
+  --sysconfdir=/etc \
+  --with-pcre=system \
+  --disable-fam
+  make
+}
+
+package() {
+  cd glib-$pkgver
+  make DESTDIR=$pkgdir install
+
+  install -d $pkgdir/etc/profile.d
+  install -m755 $srcdir/glib2.sh $pkgdir/etc/profile.d/
+  install -m755 $srcdir/glib2.csh $pkgdir/etc/profile.d/
+
+  for _i in $pkgdir/etc/bash_completion.d/*; do
+  chmod -x $_i
+  done
+  sed -i s|#!/usr/bin/env python|#!/usr/bin/env python2| 
$pkgdir/usr/bin/gdbus-codegen
+}

Deleted: core-x86_64/glib2.csh
===
--- core-x86_64/glib2.csh   2012-05-09 08:41:44 UTC (rev 158758)
+++ core-x86_64/glib2.csh   2012-05-09 08:41:45 UTC (rev 158759)
@@ -1 +0,0 @@
-setenv G_BROKEN_FILENAMES 1

Copied: 

[arch-commits] Commit in kdebase-workspace/repos/extra-i686 (19 files)

2012-05-09 Thread Andrea Scarpino
Date: Wednesday, May 9, 2012 @ 04:46:04
  Author: andrea
Revision: 158760

archrelease: copy trunk to extra-i686

Added:
  kdebase-workspace/repos/extra-i686/PKGBUILD
(from rev 158759, kdebase-workspace/trunk/PKGBUILD)
  kdebase-workspace/repos/extra-i686/fix-krunner-crash.patch
(from rev 158759, kdebase-workspace/trunk/fix-krunner-crash.patch)
  kdebase-workspace/repos/extra-i686/fixpath.patch
(from rev 158759, kdebase-workspace/trunk/fixpath.patch)
  kdebase-workspace/repos/extra-i686/kde-np.pam
(from rev 158759, kdebase-workspace/trunk/kde-np.pam)
  kdebase-workspace/repos/extra-i686/kde.pam
(from rev 158759, kdebase-workspace/trunk/kde.pam)
  kdebase-workspace/repos/extra-i686/kdebase-workspace.install
(from rev 158759, kdebase-workspace/trunk/kdebase-workspace.install)
  kdebase-workspace/repos/extra-i686/kdm
(from rev 158759, kdebase-workspace/trunk/kdm)
  kdebase-workspace/repos/extra-i686/kdm-xinitrd.patch
(from rev 158759, kdebase-workspace/trunk/kdm-xinitrd.patch)
  kdebase-workspace/repos/extra-i686/kscreensaver.pam
(from rev 158759, kdebase-workspace/trunk/kscreensaver.pam)
  kdebase-workspace/repos/extra-i686/terminate-server.patch
(from rev 158759, kdebase-workspace/trunk/terminate-server.patch)
Deleted:
  kdebase-workspace/repos/extra-i686/PKGBUILD
  kdebase-workspace/repos/extra-i686/fixpath.patch
  kdebase-workspace/repos/extra-i686/kde-np.pam
  kdebase-workspace/repos/extra-i686/kde.pam
  kdebase-workspace/repos/extra-i686/kdebase-workspace.install
  kdebase-workspace/repos/extra-i686/kdm
  kdebase-workspace/repos/extra-i686/kdm-xinitrd.patch
  kdebase-workspace/repos/extra-i686/kscreensaver.pam
  kdebase-workspace/repos/extra-i686/terminate-server.patch

---+
 PKGBUILD  |  158 ++--
 fix-krunner-crash.patch   |   13 +++
 fixpath.patch |   68 +-
 kde-np.pam|   18 ++---
 kde.pam   |   18 ++---
 kdebase-workspace.install |   50 ++---
 kdm   |   72 ++--
 kdm-xinitrd.patch |   36 +-
 kscreensaver.pam  |2 
 terminate-server.patch|   22 +++---
 10 files changed, 237 insertions(+), 220 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2012-05-09 08:41:45 UTC (rev 158759)
+++ PKGBUILD2012-05-09 08:46:04 UTC (rev 158760)
@@ -1,77 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-# Contributor: Pierre Schmitz pie...@archlinux.de
-
-pkgname=kdebase-workspace
-_pkgname=kde-workspace
-pkgver=4.8.3
-pkgrel=1
-pkgdesc=KDE Base Workspace
-arch=('i686' 'x86_64')
-url='http://www.kde.org'
-license=('GPL' 'LGPL' 'FDL')
-groups=('kde')
-# note on libxdamage:
-#  not detected by namcap because libgl depends on it
-#  but nvidia providing libgl does not depend on libxdamage
-depends=('kdepim-runtime' 'lm_sensors' 'libraw1394' 'libqalculate'
- 'qimageblitz' 'polkit-kde' 'consolekit' 'xorg-xprop' 'libxdamage'
- 'libxklavier' 'xorg-xsetroot' 'libxcomposite' 'libxinerama'
- 'xorg-xrdb' 'libgles' 'libegl' 'kactivities' 'libxres' 'libxtst'
- 'xorg-xrandr' 'xorg-xmessage')
-makedepends=('cmake' 'automoc4' 'boost' 'kdebindings-python2' 'networkmanager')
-optdepends=('kde-wallpapers: wallpapers for KDE Plasma Workspaces')
-install=${pkgname}.install
-backup=('usr/share/config/kdm/kdmrc'
-'etc/pam.d/kde'
-'etc/pam.d/kde-np'
-'etc/pam.d/kscreensaver')
-options=('emptydirs')
-source=(http://download.kde.org/stable/${pkgver}/src/${_pkgname}-${pkgver}.tar.xz;
-'kdm' 'kde.pam' 'kde-np.pam' 'kscreensaver.pam'
-'fixpath.patch' 'terminate-server.patch' 'kdm-xinitrd.patch')
-sha1sums=('23dbd023f76769ba6ea77dbc11314eca504ad3d2'
-  '5db3a245201bd4a50e65aa2ef583cf5490e4f646'
-  '712a90999bd429883dcef5dcaf288aace332ced8'
-  'b321b5e613b60231330e606fdf1e124646148388'
-  '106635aa1aae51d6f0668b1853f6c49a4fe9d3d8'
-  'd7b5883f7e65c6839b1f65f94d58026673dd0226'
-  'ac7bc292c865bc1ab8c02e6341aa7aeaf1a3'
-  'd509dac592bd8b310df27991b208c95b6d907514')
-
-build() {
-   cd ${srcdir}/${_pkgname}-${pkgver}
-   patch -p1 -i ${srcdir}/kdm-xinitrd.patch
-   patch -p0 -i ${srcdir}/fixpath.patch
-   patch -p0 -i ${srcdir}/terminate-server.patch
-
-   cd ${srcdir}
-   mkdir build
-   cd build
-   cmake ../${_pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_Xmms=OFF \
--DWITH_Googlegadgets=OFF \
--DWITH_libgps=OFF \
--DWITH_OpenGLES=ON \
--DKWIN_BUILD_WITH_OPENGLES=ON \
--DPYTHON_EXECUTABLE=/usr/bin/python2
-   make
-}
-
-package() {
-   cd ${srcdir}/build
-   make DESTDIR=${pkgdir} install
-

[arch-commits] Commit in kdebase-workspace/repos/extra-x86_64 (19 files)

2012-05-09 Thread Andrea Scarpino
Date: Wednesday, May 9, 2012 @ 04:46:41
  Author: andrea
Revision: 158761

archrelease: copy trunk to extra-x86_64

Added:
  kdebase-workspace/repos/extra-x86_64/PKGBUILD
(from rev 158760, kdebase-workspace/trunk/PKGBUILD)
  kdebase-workspace/repos/extra-x86_64/fix-krunner-crash.patch
(from rev 158760, kdebase-workspace/trunk/fix-krunner-crash.patch)
  kdebase-workspace/repos/extra-x86_64/fixpath.patch
(from rev 158760, kdebase-workspace/trunk/fixpath.patch)
  kdebase-workspace/repos/extra-x86_64/kde-np.pam
(from rev 158760, kdebase-workspace/trunk/kde-np.pam)
  kdebase-workspace/repos/extra-x86_64/kde.pam
(from rev 158760, kdebase-workspace/trunk/kde.pam)
  kdebase-workspace/repos/extra-x86_64/kdebase-workspace.install
(from rev 158760, kdebase-workspace/trunk/kdebase-workspace.install)
  kdebase-workspace/repos/extra-x86_64/kdm
(from rev 158760, kdebase-workspace/trunk/kdm)
  kdebase-workspace/repos/extra-x86_64/kdm-xinitrd.patch
(from rev 158760, kdebase-workspace/trunk/kdm-xinitrd.patch)
  kdebase-workspace/repos/extra-x86_64/kscreensaver.pam
(from rev 158760, kdebase-workspace/trunk/kscreensaver.pam)
  kdebase-workspace/repos/extra-x86_64/terminate-server.patch
(from rev 158760, kdebase-workspace/trunk/terminate-server.patch)
Deleted:
  kdebase-workspace/repos/extra-x86_64/PKGBUILD
  kdebase-workspace/repos/extra-x86_64/fixpath.patch
  kdebase-workspace/repos/extra-x86_64/kde-np.pam
  kdebase-workspace/repos/extra-x86_64/kde.pam
  kdebase-workspace/repos/extra-x86_64/kdebase-workspace.install
  kdebase-workspace/repos/extra-x86_64/kdm
  kdebase-workspace/repos/extra-x86_64/kdm-xinitrd.patch
  kdebase-workspace/repos/extra-x86_64/kscreensaver.pam
  kdebase-workspace/repos/extra-x86_64/terminate-server.patch

---+
 PKGBUILD  |  158 ++--
 fix-krunner-crash.patch   |   13 +++
 fixpath.patch |   68 +-
 kde-np.pam|   18 ++---
 kde.pam   |   18 ++---
 kdebase-workspace.install |   50 ++---
 kdm   |   72 ++--
 kdm-xinitrd.patch |   36 +-
 kscreensaver.pam  |2 
 terminate-server.patch|   22 +++---
 10 files changed, 237 insertions(+), 220 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2012-05-09 08:46:04 UTC (rev 158760)
+++ PKGBUILD2012-05-09 08:46:41 UTC (rev 158761)
@@ -1,77 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-# Contributor: Pierre Schmitz pie...@archlinux.de
-
-pkgname=kdebase-workspace
-_pkgname=kde-workspace
-pkgver=4.8.3
-pkgrel=1
-pkgdesc=KDE Base Workspace
-arch=('i686' 'x86_64')
-url='http://www.kde.org'
-license=('GPL' 'LGPL' 'FDL')
-groups=('kde')
-# note on libxdamage:
-#  not detected by namcap because libgl depends on it
-#  but nvidia providing libgl does not depend on libxdamage
-depends=('kdepim-runtime' 'lm_sensors' 'libraw1394' 'libqalculate'
- 'qimageblitz' 'polkit-kde' 'consolekit' 'xorg-xprop' 'libxdamage'
- 'libxklavier' 'xorg-xsetroot' 'libxcomposite' 'libxinerama'
- 'xorg-xrdb' 'libgles' 'libegl' 'kactivities' 'libxres' 'libxtst'
- 'xorg-xrandr' 'xorg-xmessage')
-makedepends=('cmake' 'automoc4' 'boost' 'kdebindings-python2' 'networkmanager')
-optdepends=('kde-wallpapers: wallpapers for KDE Plasma Workspaces')
-install=${pkgname}.install
-backup=('usr/share/config/kdm/kdmrc'
-'etc/pam.d/kde'
-'etc/pam.d/kde-np'
-'etc/pam.d/kscreensaver')
-options=('emptydirs')
-source=(http://download.kde.org/stable/${pkgver}/src/${_pkgname}-${pkgver}.tar.xz;
-'kdm' 'kde.pam' 'kde-np.pam' 'kscreensaver.pam'
-'fixpath.patch' 'terminate-server.patch' 'kdm-xinitrd.patch')
-sha1sums=('23dbd023f76769ba6ea77dbc11314eca504ad3d2'
-  '5db3a245201bd4a50e65aa2ef583cf5490e4f646'
-  '712a90999bd429883dcef5dcaf288aace332ced8'
-  'b321b5e613b60231330e606fdf1e124646148388'
-  '106635aa1aae51d6f0668b1853f6c49a4fe9d3d8'
-  'd7b5883f7e65c6839b1f65f94d58026673dd0226'
-  'ac7bc292c865bc1ab8c02e6341aa7aeaf1a3'
-  'd509dac592bd8b310df27991b208c95b6d907514')
-
-build() {
-   cd ${srcdir}/${_pkgname}-${pkgver}
-   patch -p1 -i ${srcdir}/kdm-xinitrd.patch
-   patch -p0 -i ${srcdir}/fixpath.patch
-   patch -p0 -i ${srcdir}/terminate-server.patch
-
-   cd ${srcdir}
-   mkdir build
-   cd build
-   cmake ../${_pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_Xmms=OFF \
--DWITH_Googlegadgets=OFF \
--DWITH_libgps=OFF \
--DWITH_OpenGLES=ON \
--DKWIN_BUILD_WITH_OPENGLES=ON \
--DPYTHON_EXECUTABLE=/usr/bin/python2
-   make
-}
-
-package() {
-   cd ${srcdir}/build
- 

[arch-commits] Commit in chromium/trunk (2 files)

2012-05-09 Thread Evangelos Foutras
Date: Wednesday, May 9, 2012 @ 06:01:13
  Author: foutrelis
Revision: 158762

upgpkg: chromium 18.0.1025.168-2

Rebuild using GCC 4.7; include patch for FS#29309.

Added:
  chromium/trunk/sqlite-3.7.6.3-fix-out-of-scope-memory-reference.patch
Modified:
  chromium/trunk/PKGBUILD

+
 PKGBUILD   |   24 -
 sqlite-3.7.6.3-fix-out-of-scope-memory-reference.patch |   26 +++
 2 files changed, 40 insertions(+), 10 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-05-09 08:46:41 UTC (rev 158761)
+++ PKGBUILD2012-05-09 10:01:13 UTC (rev 158762)
@@ -10,7 +10,7 @@
 
 pkgname=chromium
 pkgver=18.0.1025.168
-pkgrel=1
+pkgrel=2
 pkgdesc=The open-source project behind Google Chrome, an attempt at creating 
a safer, faster, and more stable browser
 arch=('i686' 'x86_64')
 url=http://www.chromium.org/;
@@ -18,12 +18,8 @@
 depends=('gtk2' 'dbus-glib' 'nss' 'alsa-lib' 'xdg-utils' 'bzip2' 'libevent'
  'libxss' 'libgcrypt' 'ttf-dejavu' 'desktop-file-utils'
  'hicolor-icon-theme')
-# Building with GCC 4.7 causes segfaults; build with 4.6 for the time being
-# https://bugs.archlinux.org/task/29309
-# Mirror snapshop before GCC 4.7 moved to [core]:
-# Server = http://arm.konnichi.com/2012/04/02/$repo/os/$arch
 makedepends=('python2' 'perl' 'gperf' 'yasm' 'mesa' 'libgnome-keyring'
- 'elfutils' 'gcc4.7')
+ 'elfutils')
 optdepends=('kdebase-kdialog: needed for file dialogs in KDE')
 # Needed for the NaCl toolchain
 [[ $CARCH == x86_64 ]]  makedepends+=('lib32-zlib')
@@ -35,6 +31,7 @@
 chromium.desktop
 chromium.sh
 chromium-gcc47.patch
+sqlite-3.7.6.3-fix-out-of-scope-memory-reference.patch
 chromium-media-no-sse-r0.patch
 chromium-revert-jpeg-swizzle-r2.patch)
 sha256sums=('1f1fc7bd8066835844a465f9d60c49c21173ff559c40e5d113fe9c4627fc18b9'
@@ -42,6 +39,7 @@
 '09bfac44104f4ccda4c228053f689c947b3e97da9a4ab6fa34ce061ee83d0322'
 'c53bfc4db9dde684fbaed6a4bbecb207e3e7a0a2703233426fe076a6d3c557f3'
 'f607347ba8477d3c8e60eb3803d26f3c9869f77fd49986c60887c59a6aa7d30d'
+'a700aa054800d1b21d84eaba27c38a703dfa023e9226d11a942690c2a0630aff'
 '71751bf5913da1eec3c88c433044224c869b0abd5a29172cf239bddbb4eff761'
 'd99162aa6bae562f116a42347254bbec3752464f0a3e4d8675e2b287b2a838a2')
 
@@ -49,11 +47,11 @@
   cd $srcdir/chromium-$pkgver
 
   # Fix build with gcc 4.7 (patch from openSUSE)
-  #patch -Np2 -i $srcdir/chromium-gcc47.patch
+  patch -Np2 -i $srcdir/chromium-gcc47.patch
   # Add missing include that defines OS_POSIX
-  #sed -i '1 i\
-  #  #include build/build_config.h' \
-  #  chrome/browser/diagnostics/diagnostics_main.cc
+  sed -i '1 i\
+#include build/build_config.h' \
+chrome/browser/diagnostics/diagnostics_main.cc
 
   # http://code.google.com/p/chromium/issues/detail?id=109527
   sed -i 's|glib/gutils.h|glib.h|' ui/base/l10n/l10n_util.cc
@@ -64,6 +62,12 @@
   # Fix JPEG image rendering problem (patch from Gentoo bug #393471)
   patch -Np0 -i $srcdir/chromium-revert-jpeg-swizzle-r2.patch
 
+  # SQLite: Fix a problem in fts3_write.c causing stack memory to be referenced
+  # after it is out of scope (http://www.sqlite.org/src/info/f9c4a7c8f4)
+  # (http://code.google.com/p/chromium/issues/detail?id=122525)
+  patch -i $srcdir/sqlite-3.7.6.3-fix-out-of-scope-memory-reference.patch \
+third_party/sqlite/amalgamation/sqlite3.c
+
   # Use Python 2
   find . -type f -exec sed -i -r \
 -e 's|/usr/bin/python$|2|g' \

Added: sqlite-3.7.6.3-fix-out-of-scope-memory-reference.patch
===
--- sqlite-3.7.6.3-fix-out-of-scope-memory-reference.patch  
(rev 0)
+++ sqlite-3.7.6.3-fix-out-of-scope-memory-reference.patch  2012-05-09 
10:01:13 UTC (rev 158762)
@@ -0,0 +1,26 @@
+--- ext/fts3/fts3_write.c.orig 2012-05-08 21:05:03.0 +0300
 ext/fts3/fts3_write.c  2012-05-08 21:07:08.0 +0300
+@@ -1238,13 +1238,13 @@ int sqlite3Fts3SegReaderPending(
+   Fts3SegReader **ppReader/* OUT: SegReader for pending-terms */
+ ){
+   Fts3SegReader *pReader = 0; /* Fts3SegReader object to return */
++  Fts3HashElem *pE;   /* Iterator variable */
+   Fts3HashElem **aElem = 0;   /* Array of term hash entries to scan */
+   int nElem = 0;  /* Size of array at aElem */
+   int rc = SQLITE_OK; /* Return Code */
+ 
+   if( isPrefix ){
+ int nAlloc = 0;   /* Size of allocated array at aElem */
+-Fts3HashElem *pE = 0; /* Iterator variable */
+ 
+ for(pE=fts3HashFirst(p-pendingTerms); pE; pE=fts3HashNext(pE)){
+   char *zKey = (char *)fts3HashKey(pE);
+@@ -1276,7 +1276,7 @@ int sqlite3Fts3SegReaderPending(
+ }

[arch-commits] Commit in chromium/repos (30 files)

2012-05-09 Thread Evangelos Foutras
Date: Wednesday, May 9, 2012 @ 06:02:05
  Author: foutrelis
Revision: 158763

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  chromium/repos/extra-i686/PKGBUILD
(from rev 158762, chromium/trunk/PKGBUILD)
  chromium/repos/extra-i686/chromium-gcc47.patch
(from rev 158762, chromium/trunk/chromium-gcc47.patch)
  chromium/repos/extra-i686/chromium-media-no-sse-r0.patch
(from rev 158762, chromium/trunk/chromium-media-no-sse-r0.patch)
  chromium/repos/extra-i686/chromium-revert-jpeg-swizzle-r2.patch
(from rev 158762, chromium/trunk/chromium-revert-jpeg-swizzle-r2.patch)
  chromium/repos/extra-i686/chromium.desktop
(from rev 158762, chromium/trunk/chromium.desktop)
  chromium/repos/extra-i686/chromium.install
(from rev 158762, chromium/trunk/chromium.install)
  chromium/repos/extra-i686/chromium.sh
(from rev 158762, chromium/trunk/chromium.sh)
  
chromium/repos/extra-i686/sqlite-3.7.6.3-fix-out-of-scope-memory-reference.patch
(from rev 158762, 
chromium/trunk/sqlite-3.7.6.3-fix-out-of-scope-memory-reference.patch)
  chromium/repos/extra-x86_64/PKGBUILD
(from rev 158762, chromium/trunk/PKGBUILD)
  chromium/repos/extra-x86_64/chromium-gcc47.patch
(from rev 158762, chromium/trunk/chromium-gcc47.patch)
  chromium/repos/extra-x86_64/chromium-media-no-sse-r0.patch
(from rev 158762, chromium/trunk/chromium-media-no-sse-r0.patch)
  chromium/repos/extra-x86_64/chromium-revert-jpeg-swizzle-r2.patch
(from rev 158762, chromium/trunk/chromium-revert-jpeg-swizzle-r2.patch)
  chromium/repos/extra-x86_64/chromium.desktop
(from rev 158762, chromium/trunk/chromium.desktop)
  chromium/repos/extra-x86_64/chromium.install
(from rev 158762, chromium/trunk/chromium.install)
  chromium/repos/extra-x86_64/chromium.sh
(from rev 158762, chromium/trunk/chromium.sh)
  
chromium/repos/extra-x86_64/sqlite-3.7.6.3-fix-out-of-scope-memory-reference.patch
(from rev 158762, 
chromium/trunk/sqlite-3.7.6.3-fix-out-of-scope-memory-reference.patch)
Deleted:
  chromium/repos/extra-i686/PKGBUILD
  chromium/repos/extra-i686/chromium-gcc47.patch
  chromium/repos/extra-i686/chromium-media-no-sse-r0.patch
  chromium/repos/extra-i686/chromium-revert-jpeg-swizzle-r2.patch
  chromium/repos/extra-i686/chromium.desktop
  chromium/repos/extra-i686/chromium.install
  chromium/repos/extra-i686/chromium.sh
  chromium/repos/extra-x86_64/PKGBUILD
  chromium/repos/extra-x86_64/chromium-gcc47.patch
  chromium/repos/extra-x86_64/chromium-media-no-sse-r0.patch
  chromium/repos/extra-x86_64/chromium-revert-jpeg-swizzle-r2.patch
  chromium/repos/extra-x86_64/chromium.desktop
  chromium/repos/extra-x86_64/chromium.install
  chromium/repos/extra-x86_64/chromium.sh

-+
 extra-i686/PKGBUILD |  296 
+-
 extra-i686/chromium-gcc47.patch |  106 +--
 extra-i686/chromium-media-no-sse-r0.patch   |   34 -
 extra-i686/chromium-revert-jpeg-swizzle-r2.patch|  122 ++--
 extra-i686/chromium.desktop |  226 
+++
 extra-i686/chromium.install |   24 
 extra-i686/chromium.sh  |8 
 extra-i686/sqlite-3.7.6.3-fix-out-of-scope-memory-reference.patch   |   26 
 extra-x86_64/PKGBUILD   |  296 
+-
 extra-x86_64/chromium-gcc47.patch   |  106 +--
 extra-x86_64/chromium-media-no-sse-r0.patch |   34 -
 extra-x86_64/chromium-revert-jpeg-swizzle-r2.patch  |  122 ++--
 extra-x86_64/chromium.desktop   |  226 
+++
 extra-x86_64/chromium.install   |   24 
 extra-x86_64/chromium.sh|8 
 extra-x86_64/sqlite-3.7.6.3-fix-out-of-scope-memory-reference.patch |   26 
 16 files changed, 872 insertions(+), 812 deletions(-)

The diff is longer than the limit of 200KB.
Use svn diff -r 158762:158763 to see the changes.


[arch-commits] Commit in grml-zsh-config/trunk (PKGBUILD)

2012-05-09 Thread Pierre Schmitz
Date: Wednesday, May 9, 2012 @ 08:21:00
  Author: pierre
Revision: 158764

upgpkg: grml-zsh-config 0.6.0-1

upstream update

Modified:
  grml-zsh-config/trunk/PKGBUILD

--+
 PKGBUILD |   10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-05-09 10:02:05 UTC (rev 158763)
+++ PKGBUILD2012-05-09 12:21:00 UTC (rev 158764)
@@ -2,25 +2,25 @@
 # Maintainer: Pierre Schmitz pie...@archlinux.de
 
 pkgname=grml-zsh-config
-pkgver=0.5.5
+pkgver=0.6.0
 pkgrel=1
 pkgdesc=grml's zsh setup
 arch=('any')
 url='http://grml.org/zsh/'
 license=('GPL2')
 provides=('grmlzshrc')
-depends=('zsh')
+depends=('zsh' 'coreutils' 'inetutils' 'grep' 'sed' 'procps')
 makedepends=('txt2tags')
 
source=(http://deb.grml.org/pool/main/g/grml-etc-core/grml-etc-core_${pkgver}.tar.gz;)
-sha256sums=('8c55883ad27f67ae25c86dba175b8917a2c0345520fb03ae941b39eacd365d04')
+sha256sums=('94cd55c16f62dd849cf20644eb6d183b078f8b67d2ba33887743a69542a09629')
 
 build() {
-   cd ${srcdir}/grml-etc-core/doc
+   cd ${srcdir}/grml-etc-core-${pkgver}/doc
make
 }
 
 package() {
-   cd ${srcdir}/grml-etc-core
+   cd ${srcdir}/grml-etc-core-${pkgver}
install -D -m644 etc/skel/.zshrc ${pkgdir}/etc/skel/.zshrc
install -D -m644 etc/zsh/keephack ${pkgdir}/etc/zsh/keephack
install -D -m644 etc/zsh/zshrc ${pkgdir}/etc/zsh/zshrc



[arch-commits] Commit in grml-zsh-config/repos/extra-any (PKGBUILD PKGBUILD)

2012-05-09 Thread Pierre Schmitz
Date: Wednesday, May 9, 2012 @ 08:21:18
  Author: pierre
Revision: 158765

archrelease: copy trunk to extra-any

Added:
  grml-zsh-config/repos/extra-any/PKGBUILD
(from rev 158764, grml-zsh-config/trunk/PKGBUILD)
Deleted:
  grml-zsh-config/repos/extra-any/PKGBUILD

--+
 PKGBUILD |   60 ++--
 1 file changed, 30 insertions(+), 30 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2012-05-09 12:21:00 UTC (rev 158764)
+++ PKGBUILD2012-05-09 12:21:18 UTC (rev 158765)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Pierre Schmitz pie...@archlinux.de
-
-pkgname=grml-zsh-config
-pkgver=0.5.5
-pkgrel=1
-pkgdesc=grml's zsh setup
-arch=('any')
-url='http://grml.org/zsh/'
-license=('GPL2')
-provides=('grmlzshrc')
-depends=('zsh')
-makedepends=('txt2tags')
-source=(http://deb.grml.org/pool/main/g/grml-etc-core/grml-etc-core_${pkgver}.tar.gz;)
-sha256sums=('8c55883ad27f67ae25c86dba175b8917a2c0345520fb03ae941b39eacd365d04')
-
-build() {
-   cd ${srcdir}/grml-etc-core/doc
-   make
-}
-
-package() {
-   cd ${srcdir}/grml-etc-core
-   install -D -m644 etc/skel/.zshrc ${pkgdir}/etc/skel/.zshrc
-   install -D -m644 etc/zsh/keephack ${pkgdir}/etc/zsh/keephack
-   install -D -m644 etc/zsh/zshrc ${pkgdir}/etc/zsh/zshrc
-
-   install -D -m644 doc/grmlzshrc.5 
${pkgdir}/usr/share/man/man5/grmlzshrc.5
-   ln -sf grmlzshrc.5.gz ${pkgdir}/usr/share/man/man5/grml-zsh-config.5.gz
-}

Copied: grml-zsh-config/repos/extra-any/PKGBUILD (from rev 158764, 
grml-zsh-config/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2012-05-09 12:21:18 UTC (rev 158765)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Pierre Schmitz pie...@archlinux.de
+
+pkgname=grml-zsh-config
+pkgver=0.6.0
+pkgrel=1
+pkgdesc=grml's zsh setup
+arch=('any')
+url='http://grml.org/zsh/'
+license=('GPL2')
+provides=('grmlzshrc')
+depends=('zsh' 'coreutils' 'inetutils' 'grep' 'sed' 'procps')
+makedepends=('txt2tags')
+source=(http://deb.grml.org/pool/main/g/grml-etc-core/grml-etc-core_${pkgver}.tar.gz;)
+sha256sums=('94cd55c16f62dd849cf20644eb6d183b078f8b67d2ba33887743a69542a09629')
+
+build() {
+   cd ${srcdir}/grml-etc-core-${pkgver}/doc
+   make
+}
+
+package() {
+   cd ${srcdir}/grml-etc-core-${pkgver}
+   install -D -m644 etc/skel/.zshrc ${pkgdir}/etc/skel/.zshrc
+   install -D -m644 etc/zsh/keephack ${pkgdir}/etc/zsh/keephack
+   install -D -m644 etc/zsh/zshrc ${pkgdir}/etc/zsh/zshrc
+
+   install -D -m644 doc/grmlzshrc.5 
${pkgdir}/usr/share/man/man5/grmlzshrc.5
+   ln -sf grmlzshrc.5.gz ${pkgdir}/usr/share/man/man5/grml-zsh-config.5.gz
+}



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

2012-05-09 Thread Ionut Biru
Date: Wednesday, May 9, 2012 @ 12:23:27
  Author: ibiru
Revision: 158766

db-remove: mail-notification removed by ibiru

Deleted:
  mail-notification/repos/extra-i686/



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

2012-05-09 Thread Ionut Biru
Date: Wednesday, May 9, 2012 @ 12:23:41
  Author: ibiru
Revision: 158767

db-remove: mail-notification removed by ibiru

Deleted:
  mail-notification/repos/extra-x86_64/



[arch-commits] Commit in (mail-notification)

2012-05-09 Thread Ionut Biru
Date: Wednesday, May 9, 2012 @ 12:27:43
  Author: ibiru
Revision: 158768

moved in aur

Deleted:
  mail-notification/



[arch-commits] Commit in squirrelmail/repos (extra-any)

2012-05-09 Thread Pierre Schmitz
Date: Wednesday, May 9, 2012 @ 12:39:34
  Author: pierre
Revision: 158769

db-remove: squirrelmail removed by pierre

Deleted:
  squirrelmail/repos/extra-any/



[arch-commits] Commit in (squirrelmail)

2012-05-09 Thread Pierre Schmitz
Date: Wednesday, May 9, 2012 @ 12:40:47
  Author: pierre
Revision: 158770

removing squirrelmail

Deleted:
  squirrelmail/



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

2012-05-09 Thread Pierre Schmitz
Date: Wednesday, May 9, 2012 @ 12:50:32
  Author: pierre
Revision: 158771

db-remove: php-suhosin removed by pierre

Deleted:
  php-suhosin/repos/extra-i686/



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

2012-05-09 Thread Pierre Schmitz
Date: Wednesday, May 9, 2012 @ 12:50:51
  Author: pierre
Revision: 158772

db-remove: php-suhosin removed by pierre

Deleted:
  php-suhosin/repos/extra-x86_64/



[arch-commits] Commit in (php-suhosin)

2012-05-09 Thread Pierre Schmitz
Date: Wednesday, May 9, 2012 @ 12:51:28
  Author: pierre
Revision: 158773

removing suhosin

Deleted:
  php-suhosin/



[arch-commits] Commit in (5 files)

2012-05-09 Thread Pierre Schmitz
Date: Wednesday, May 9, 2012 @ 12:55:21
  Author: pierre
Revision: 158774

adding xcache

Added:
  php-xcache/
  php-xcache/repos/
  php-xcache/trunk/
  php-xcache/trunk/PKGBUILD
  php-xcache/trunk/xcache.ini

+
 PKGBUILD   |   40 
 xcache.ini |3 +++
 2 files changed, 43 insertions(+)

Added: php-xcache/trunk/PKGBUILD
===
--- php-xcache/trunk/PKGBUILD   (rev 0)
+++ php-xcache/trunk/PKGBUILD   2012-05-09 16:55:21 UTC (rev 158774)
@@ -0,0 +1,40 @@
+# $Id: $
+# Maintainer: Pierre Schmitz pie...@archlinux.de
+
+pkgname=php-xcache
+pkgver=2.0.0
+pkgrel=3
+arch=('i686' 'x86_64')
+pkgdesc='A PHP opcode cacher'
+url='http://xcache.lighttpd.net/'
+depends=('php')
+license=('custom')
+source=(http://xcache.lighttpd.net/pub/Releases/${pkgver}/xcache-${pkgver}.tar.bz2;
+'xcache.ini')
+backup=('etc/php/conf.d/xcache.ini')
+md5sums=('0e30cdff075c635e475d70a5c37d0252'
+ 'bba7ead3e592a7980aa91a8600973587')
+
+build() {
+   cd $srcdir/xcache-$pkgver
+   phpize
+   ./configure --prefix=/usr
+   make
+}
+
+# check() {
+#  cd $srcdir/xcache-$pkgver
+#  make test
+# }
+
+package() {
+   cd $srcdir/xcache-$pkgver
+   make INSTALL_ROOT=$pkgdir install
+
+   install -Dm644 $srcdir/xcache.ini $pkgdir/etc/php/conf.d/xcache.ini
+
+   install -dm755 $pkgdir/usr/share/php-xcache/admin
+   install -m644 admin/* $pkgdir/usr/share/php-xcache/admin/
+
+   install -Dm644 COPYING $pkgdir/usr/share/licenses/php-xcache/COPYING
+}

Added: php-xcache/trunk/xcache.ini
===
--- php-xcache/trunk/xcache.ini (rev 0)
+++ php-xcache/trunk/xcache.ini 2012-05-09 16:55:21 UTC (rev 158774)
@@ -0,0 +1,3 @@
+;zend_extension=/usr/lib/php/modules/xcache.so
+xcache.size=64M
+xcache.var_size=64M



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

2012-05-09 Thread Pierre Schmitz
Date: Wednesday, May 9, 2012 @ 12:57:00
  Author: pierre
Revision: 158775

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  php-xcache/repos/testing-i686/
  php-xcache/repos/testing-i686/PKGBUILD
(from rev 158774, php-xcache/trunk/PKGBUILD)
  php-xcache/repos/testing-i686/xcache.ini
(from rev 158774, php-xcache/trunk/xcache.ini)
  php-xcache/repos/testing-x86_64/
  php-xcache/repos/testing-x86_64/PKGBUILD
(from rev 158774, php-xcache/trunk/PKGBUILD)
  php-xcache/repos/testing-x86_64/xcache.ini
(from rev 158774, php-xcache/trunk/xcache.ini)

---+
 testing-i686/PKGBUILD |   40 
 testing-i686/xcache.ini   |3 +++
 testing-x86_64/PKGBUILD   |   40 
 testing-x86_64/xcache.ini |3 +++
 4 files changed, 86 insertions(+)

Copied: php-xcache/repos/testing-i686/PKGBUILD (from rev 158774, 
php-xcache/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2012-05-09 16:57:00 UTC (rev 158775)
@@ -0,0 +1,40 @@
+# $Id: $
+# Maintainer: Pierre Schmitz pie...@archlinux.de
+
+pkgname=php-xcache
+pkgver=2.0.0
+pkgrel=3
+arch=('i686' 'x86_64')
+pkgdesc='A PHP opcode cacher'
+url='http://xcache.lighttpd.net/'
+depends=('php')
+license=('custom')
+source=(http://xcache.lighttpd.net/pub/Releases/${pkgver}/xcache-${pkgver}.tar.bz2;
+'xcache.ini')
+backup=('etc/php/conf.d/xcache.ini')
+md5sums=('0e30cdff075c635e475d70a5c37d0252'
+ 'bba7ead3e592a7980aa91a8600973587')
+
+build() {
+   cd $srcdir/xcache-$pkgver
+   phpize
+   ./configure --prefix=/usr
+   make
+}
+
+# check() {
+#  cd $srcdir/xcache-$pkgver
+#  make test
+# }
+
+package() {
+   cd $srcdir/xcache-$pkgver
+   make INSTALL_ROOT=$pkgdir install
+
+   install -Dm644 $srcdir/xcache.ini $pkgdir/etc/php/conf.d/xcache.ini
+
+   install -dm755 $pkgdir/usr/share/php-xcache/admin
+   install -m644 admin/* $pkgdir/usr/share/php-xcache/admin/
+
+   install -Dm644 COPYING $pkgdir/usr/share/licenses/php-xcache/COPYING
+}

Copied: php-xcache/repos/testing-i686/xcache.ini (from rev 158774, 
php-xcache/trunk/xcache.ini)
===
--- testing-i686/xcache.ini (rev 0)
+++ testing-i686/xcache.ini 2012-05-09 16:57:00 UTC (rev 158775)
@@ -0,0 +1,3 @@
+;zend_extension=/usr/lib/php/modules/xcache.so
+xcache.size=64M
+xcache.var_size=64M

Copied: php-xcache/repos/testing-x86_64/PKGBUILD (from rev 158774, 
php-xcache/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2012-05-09 16:57:00 UTC (rev 158775)
@@ -0,0 +1,40 @@
+# $Id: $
+# Maintainer: Pierre Schmitz pie...@archlinux.de
+
+pkgname=php-xcache
+pkgver=2.0.0
+pkgrel=3
+arch=('i686' 'x86_64')
+pkgdesc='A PHP opcode cacher'
+url='http://xcache.lighttpd.net/'
+depends=('php')
+license=('custom')
+source=(http://xcache.lighttpd.net/pub/Releases/${pkgver}/xcache-${pkgver}.tar.bz2;
+'xcache.ini')
+backup=('etc/php/conf.d/xcache.ini')
+md5sums=('0e30cdff075c635e475d70a5c37d0252'
+ 'bba7ead3e592a7980aa91a8600973587')
+
+build() {
+   cd $srcdir/xcache-$pkgver
+   phpize
+   ./configure --prefix=/usr
+   make
+}
+
+# check() {
+#  cd $srcdir/xcache-$pkgver
+#  make test
+# }
+
+package() {
+   cd $srcdir/xcache-$pkgver
+   make INSTALL_ROOT=$pkgdir install
+
+   install -Dm644 $srcdir/xcache.ini $pkgdir/etc/php/conf.d/xcache.ini
+
+   install -dm755 $pkgdir/usr/share/php-xcache/admin
+   install -m644 admin/* $pkgdir/usr/share/php-xcache/admin/
+
+   install -Dm644 COPYING $pkgdir/usr/share/licenses/php-xcache/COPYING
+}

Copied: php-xcache/repos/testing-x86_64/xcache.ini (from rev 158774, 
php-xcache/trunk/xcache.ini)
===
--- testing-x86_64/xcache.ini   (rev 0)
+++ testing-x86_64/xcache.ini   2012-05-09 16:57:00 UTC (rev 158775)
@@ -0,0 +1,3 @@
+;zend_extension=/usr/lib/php/modules/xcache.so
+xcache.size=64M
+xcache.var_size=64M



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

2012-05-09 Thread Pierre Schmitz
Date: Wednesday, May 9, 2012 @ 13:05:27
  Author: pierre
Revision: 158776

add svn id

Modified:
  php-xcache/trunk/PKGBUILD (contents, properties)

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-05-09 16:57:00 UTC (rev 158775)
+++ PKGBUILD2012-05-09 17:05:27 UTC (rev 158776)
@@ -1,4 +1,4 @@
-# $Id: $
+# $Id$
 # Maintainer: Pierre Schmitz pie...@archlinux.de
 
 pkgname=php-xcache


Property changes on: php-xcache/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


[arch-commits] Commit in telepathy-rakia/trunk (2 files)

2012-05-09 Thread Ionut Biru
Date: Wednesday, May 9, 2012 @ 13:39:22
  Author: ibiru
Revision: 158777

update to 0.7.4

Added:
  telepathy-rakia/trunk/0001-Check-for-gio-to-avoid-linking-issue.patch
Modified:
  telepathy-rakia/trunk/PKGBUILD

-+
 0001-Check-for-gio-to-avoid-linking-issue.patch |   29 ++
 PKGBUILD|   16 +++-
 2 files changed, 39 insertions(+), 6 deletions(-)

Added: 0001-Check-for-gio-to-avoid-linking-issue.patch
===
--- 0001-Check-for-gio-to-avoid-linking-issue.patch 
(rev 0)
+++ 0001-Check-for-gio-to-avoid-linking-issue.patch 2012-05-09 17:39:22 UTC 
(rev 158777)
@@ -0,0 +1,29 @@
+From 797d2b3792a0d4c4260075c2b05a1aba63715363 Mon Sep 17 00:00:00 2001
+From: Ionut Biru ib...@archlinux.org
+Date: Wed, 9 May 2012 17:34:10 +
+Subject: [PATCH] Check for gio to avoid linking issue
+
+/usr/bin/ld: note: 'g_inet_address_new_from_string' is defined in DSO
+/usr/lib/libgio-2.0.so.0 so try adding it to the linker command line
+
+Signed-off-by: Ionut Biru ib...@archlinux.org
+---
+ configure.ac |2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/configure.ac b/configure.ac
+index 2a6cb2a..461d464 100644
+--- a/configure.ac
 b/configure.ac
+@@ -62,7 +62,7 @@ dnl GTK docs
+ GTK_DOC_CHECK
+ 
+ dnl Check for Glib 
+-PKG_CHECK_MODULES(GLIB, gobject-2.0 = 2.30, have_glib=yes, have_glib=no)
++PKG_CHECK_MODULES(GLIB, [gobject-2.0 = 2.30, gio-2.0 = 2.30], 
have_glib=yes, have_glib=no)
+ 
+ if test x$have_glib = xno ; then
+ AC_MSG_ERROR([GLib development libraries not found])
+-- 
+1.7.10.1
+

Modified: PKGBUILD
===
--- PKGBUILD2012-05-09 17:05:27 UTC (rev 158776)
+++ PKGBUILD2012-05-09 17:39:22 UTC (rev 158777)
@@ -2,7 +2,7 @@
 # Maintainer : Ionut Biru ib...@archlinux.org
 
 pkgname=telepathy-rakia
-pkgver=0.7.3
+pkgver=0.7.4
 pkgrel=1
 pkgdesc=SIP connection manager for Telepathy
 arch=('i686' 'x86_64')
@@ -13,16 +13,20 @@
 install=telepathy-rakia.install
 groups=('telepathy')
 replaces=('telepathy-sofiasip')
-source=(http://telepathy.freedesktop.org/releases/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('dea76f93fe6234d18c6c7746c9ce0d6e')
+source=(http://telepathy.freedesktop.org/releases/$pkgname/$pkgname-$pkgver.tar.gz
+0001-Check-for-gio-to-avoid-linking-issue.patch)
+md5sums=('f9f47f18db033afe29fd6963c7748e37'
+ '6d0372c4c8a22bf9682e4b45ee614d5c')
 
 build() {
-  cd $srcdir/$pkgname-$pkgver
+  cd $pkgname-$pkgver
+  patch -Np1 -i $srcdir/0001-Check-for-gio-to-avoid-linking-issue.patch
+  autoreconf -fi
   ./configure --prefix=/usr --libexecdir=/usr/lib/telepathy
   make
 }
 
 package() {
-  cd $srcdir/$pkgname-$pkgver
-  make DESTDIR=${pkgdir} install
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
 }



[arch-commits] Commit in telepathy-rakia/repos (10 files)

2012-05-09 Thread Ionut Biru
Date: Wednesday, May 9, 2012 @ 13:40:49
  Author: ibiru
Revision: 158778

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  
telepathy-rakia/repos/extra-i686/0001-Check-for-gio-to-avoid-linking-issue.patch
(from rev 158777, 
telepathy-rakia/trunk/0001-Check-for-gio-to-avoid-linking-issue.patch)
  telepathy-rakia/repos/extra-i686/PKGBUILD
(from rev 158777, telepathy-rakia/trunk/PKGBUILD)
  telepathy-rakia/repos/extra-i686/telepathy-rakia.install
(from rev 158777, telepathy-rakia/trunk/telepathy-rakia.install)
  
telepathy-rakia/repos/extra-x86_64/0001-Check-for-gio-to-avoid-linking-issue.patch
(from rev 158777, 
telepathy-rakia/trunk/0001-Check-for-gio-to-avoid-linking-issue.patch)
  telepathy-rakia/repos/extra-x86_64/PKGBUILD
(from rev 158777, telepathy-rakia/trunk/PKGBUILD)
  telepathy-rakia/repos/extra-x86_64/telepathy-rakia.install
(from rev 158777, telepathy-rakia/trunk/telepathy-rakia.install)
Deleted:
  telepathy-rakia/repos/extra-i686/PKGBUILD
  telepathy-rakia/repos/extra-i686/telepathy-rakia.install
  telepathy-rakia/repos/extra-x86_64/PKGBUILD
  telepathy-rakia/repos/extra-x86_64/telepathy-rakia.install

--+
 extra-i686/0001-Check-for-gio-to-avoid-linking-issue.patch   |   29 
 extra-i686/PKGBUILD  |   60 +-
 extra-i686/telepathy-rakia.install   |   26 ++--
 extra-x86_64/0001-Check-for-gio-to-avoid-linking-issue.patch |   29 
 extra-x86_64/PKGBUILD|   60 +-
 extra-x86_64/telepathy-rakia.install |   26 ++--
 6 files changed, 148 insertions(+), 82 deletions(-)

Copied: 
telepathy-rakia/repos/extra-i686/0001-Check-for-gio-to-avoid-linking-issue.patch
 (from rev 158777, 
telepathy-rakia/trunk/0001-Check-for-gio-to-avoid-linking-issue.patch)
===
--- extra-i686/0001-Check-for-gio-to-avoid-linking-issue.patch  
(rev 0)
+++ extra-i686/0001-Check-for-gio-to-avoid-linking-issue.patch  2012-05-09 
17:40:49 UTC (rev 158778)
@@ -0,0 +1,29 @@
+From 797d2b3792a0d4c4260075c2b05a1aba63715363 Mon Sep 17 00:00:00 2001
+From: Ionut Biru ib...@archlinux.org
+Date: Wed, 9 May 2012 17:34:10 +
+Subject: [PATCH] Check for gio to avoid linking issue
+
+/usr/bin/ld: note: 'g_inet_address_new_from_string' is defined in DSO
+/usr/lib/libgio-2.0.so.0 so try adding it to the linker command line
+
+Signed-off-by: Ionut Biru ib...@archlinux.org
+---
+ configure.ac |2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/configure.ac b/configure.ac
+index 2a6cb2a..461d464 100644
+--- a/configure.ac
 b/configure.ac
+@@ -62,7 +62,7 @@ dnl GTK docs
+ GTK_DOC_CHECK
+ 
+ dnl Check for Glib 
+-PKG_CHECK_MODULES(GLIB, gobject-2.0 = 2.30, have_glib=yes, have_glib=no)
++PKG_CHECK_MODULES(GLIB, [gobject-2.0 = 2.30, gio-2.0 = 2.30], 
have_glib=yes, have_glib=no)
+ 
+ if test x$have_glib = xno ; then
+ AC_MSG_ERROR([GLib development libraries not found])
+-- 
+1.7.10.1
+

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-05-09 17:39:22 UTC (rev 158777)
+++ extra-i686/PKGBUILD 2012-05-09 17:40:49 UTC (rev 158778)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer : Ionut Biru ib...@archlinux.org
-
-pkgname=telepathy-rakia
-pkgver=0.7.3
-pkgrel=1
-pkgdesc=SIP connection manager for Telepathy
-arch=('i686' 'x86_64')
-url=http://telepathy.freedesktop.org;
-license=('LGPL')
-depends=('telepathy-glib' 'sofia-sip')
-makedepends=('libxslt' 'python2')
-install=telepathy-rakia.install
-groups=('telepathy')
-replaces=('telepathy-sofiasip')
-source=(http://telepathy.freedesktop.org/releases/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('dea76f93fe6234d18c6c7746c9ce0d6e')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  ./configure --prefix=/usr --libexecdir=/usr/lib/telepathy
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make DESTDIR=${pkgdir} install
-}

Copied: telepathy-rakia/repos/extra-i686/PKGBUILD (from rev 158777, 
telepathy-rakia/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-05-09 17:40:49 UTC (rev 158778)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer : Ionut Biru ib...@archlinux.org
+
+pkgname=telepathy-rakia
+pkgver=0.7.4
+pkgrel=1
+pkgdesc=SIP connection manager for Telepathy
+arch=('i686' 'x86_64')
+url=http://telepathy.freedesktop.org;
+license=('LGPL')
+depends=('telepathy-glib' 'sofia-sip')
+makedepends=('libxslt' 'python2')
+install=telepathy-rakia.install
+groups=('telepathy')
+replaces=('telepathy-sofiasip')
+source=(http://telepathy.freedesktop.org/releases/$pkgname/$pkgname-$pkgver.tar.gz
+0001-Check-for-gio-to-avoid-linking-issue.patch)

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

2012-05-09 Thread Ionut Biru
Date: Wednesday, May 9, 2012 @ 13:42:29
  Author: ibiru
Revision: 158779

update to 3.18

Modified:
  openconnect/trunk/PKGBUILD

--+
 PKGBUILD |   10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-05-09 17:40:49 UTC (rev 158778)
+++ PKGBUILD2012-05-09 17:42:29 UTC (rev 158779)
@@ -2,27 +2,27 @@
 # Maintainer: Ionut Biru ib...@archlinux.org
 
 pkgname=openconnect
-pkgver=3.15
+pkgver=3.18
 pkgrel=1
 epoch=1
 pkgdesc=Open client for Cisco AnyConnect VPN
 arch=('i686' 'x86_64')
 license=('GPL')
 url=http://www.infradead.org/openconnect.html;
-depends=('libxml2' 'openssl' 'libproxy')
+depends=('libxml2' 'openssl' 'libproxy' 'vpnc')
 makedepends=('intltool')
 options=('!libtool' '!emptydirs')
 source=(ftp://ftp.infradead.org/pub/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('94245f4bac42a288100becab0b4ca29a')
+md5sums=('5a440ad946cfec0f1ee7ee5519081cf1')
 
 build() {
-  cd $srcdir/$pkgname-$pkgver
+  cd $pkgname-$pkgver
   ./configure --prefix=/usr \
   --disable-static
   make
 }
 
 package() {
-  cd $srcdir/$pkgname-$pkgver
+  cd $pkgname-$pkgver
   make DESTDIR=$pkgdir install
 }



[arch-commits] Commit in openconnect/repos (4 files)

2012-05-09 Thread Ionut Biru
Date: Wednesday, May 9, 2012 @ 13:43:27
  Author: ibiru
Revision: 158780

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  openconnect/repos/extra-i686/PKGBUILD
(from rev 158779, openconnect/trunk/PKGBUILD)
  openconnect/repos/extra-x86_64/PKGBUILD
(from rev 158779, openconnect/trunk/PKGBUILD)
Deleted:
  openconnect/repos/extra-i686/PKGBUILD
  openconnect/repos/extra-x86_64/PKGBUILD

---+
 extra-i686/PKGBUILD   |   56 
 extra-x86_64/PKGBUILD |   56 
 2 files changed, 56 insertions(+), 56 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-05-09 17:42:29 UTC (rev 158779)
+++ extra-i686/PKGBUILD 2012-05-09 17:43:27 UTC (rev 158780)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru ib...@archlinux.org
-
-pkgname=openconnect
-pkgver=3.15
-pkgrel=1
-epoch=1
-pkgdesc=Open client for Cisco AnyConnect VPN
-arch=('i686' 'x86_64')
-license=('GPL')
-url=http://www.infradead.org/openconnect.html;
-depends=('libxml2' 'openssl' 'libproxy')
-makedepends=('intltool')
-options=('!libtool' '!emptydirs')
-source=(ftp://ftp.infradead.org/pub/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('94245f4bac42a288100becab0b4ca29a')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  ./configure --prefix=/usr \
-  --disable-static
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: openconnect/repos/extra-i686/PKGBUILD (from rev 158779, 
openconnect/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-05-09 17:43:27 UTC (rev 158780)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Ionut Biru ib...@archlinux.org
+
+pkgname=openconnect
+pkgver=3.18
+pkgrel=1
+epoch=1
+pkgdesc=Open client for Cisco AnyConnect VPN
+arch=('i686' 'x86_64')
+license=('GPL')
+url=http://www.infradead.org/openconnect.html;
+depends=('libxml2' 'openssl' 'libproxy' 'vpnc')
+makedepends=('intltool')
+options=('!libtool' '!emptydirs')
+source=(ftp://ftp.infradead.org/pub/$pkgname/$pkgname-$pkgver.tar.gz)
+md5sums=('5a440ad946cfec0f1ee7ee5519081cf1')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr \
+  --disable-static
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-05-09 17:42:29 UTC (rev 158779)
+++ extra-x86_64/PKGBUILD   2012-05-09 17:43:27 UTC (rev 158780)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru ib...@archlinux.org
-
-pkgname=openconnect
-pkgver=3.15
-pkgrel=1
-epoch=1
-pkgdesc=Open client for Cisco AnyConnect VPN
-arch=('i686' 'x86_64')
-license=('GPL')
-url=http://www.infradead.org/openconnect.html;
-depends=('libxml2' 'openssl' 'libproxy')
-makedepends=('intltool')
-options=('!libtool' '!emptydirs')
-source=(ftp://ftp.infradead.org/pub/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('94245f4bac42a288100becab0b4ca29a')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  ./configure --prefix=/usr \
-  --disable-static
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: openconnect/repos/extra-x86_64/PKGBUILD (from rev 158779, 
openconnect/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-05-09 17:43:27 UTC (rev 158780)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Ionut Biru ib...@archlinux.org
+
+pkgname=openconnect
+pkgver=3.18
+pkgrel=1
+epoch=1
+pkgdesc=Open client for Cisco AnyConnect VPN
+arch=('i686' 'x86_64')
+license=('GPL')
+url=http://www.infradead.org/openconnect.html;
+depends=('libxml2' 'openssl' 'libproxy' 'vpnc')
+makedepends=('intltool')
+options=('!libtool' '!emptydirs')
+source=(ftp://ftp.infradead.org/pub/$pkgname/$pkgname-$pkgver.tar.gz)
+md5sums=('5a440ad946cfec0f1ee7ee5519081cf1')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr \
+  --disable-static
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}



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

2012-05-09 Thread Ionut Biru
Date: Wednesday, May 9, 2012 @ 13:54:04
  Author: ibiru
Revision: 158781

update to a new snapshot echivalent to 0.10.3

Modified:
  ffmpeg/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-05-09 17:43:27 UTC (rev 158780)
+++ PKGBUILD2012-05-09 17:54:04 UTC (rev 158781)
@@ -4,7 +4,7 @@
 # Contributor: Paul Mattal p...@archlinux.org
 
 pkgname=ffmpeg
-pkgver=20120317
+pkgver=20120509
 pkgrel=1
 pkgdesc=Complete and free Internet live audio and video broadcasting solution 
for Linux/Unix
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 makedepends=('yasm' 'git' 'libvdpau')
 #git clone git://git.videolan.org/ffmpeg.git
 source=(ftp://ftp.archlinux.org/other/ffmpeg/$pkgname-$pkgver.tar.xz)
-md5sums=('2a2ef83ae73713fcef6bba8c430665ce')
+md5sums=('a35359e424608f369d380f03e4dc9966')
 
 build() {
   cd $pkgname



[arch-commits] Commit in ffmpeg/repos (4 files)

2012-05-09 Thread Ionut Biru
Date: Wednesday, May 9, 2012 @ 13:58:43
  Author: ibiru
Revision: 158782

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  ffmpeg/repos/extra-i686/PKGBUILD
(from rev 158781, ffmpeg/trunk/PKGBUILD)
  ffmpeg/repos/extra-x86_64/PKGBUILD
(from rev 158781, ffmpeg/trunk/PKGBUILD)
Deleted:
  ffmpeg/repos/extra-i686/PKGBUILD
  ffmpeg/repos/extra-x86_64/PKGBUILD

---+
 extra-i686/PKGBUILD   |  116 
 extra-x86_64/PKGBUILD |  116 
 2 files changed, 116 insertions(+), 116 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-05-09 17:54:04 UTC (rev 158781)
+++ extra-i686/PKGBUILD 2012-05-09 17:58:43 UTC (rev 158782)
@@ -1,58 +0,0 @@
-# $Id$
-# Maintainer : Ionut Biru ib...@archlinux.org
-# Contributor: Tom Newsom jeeps...@gmx.co.uk
-# Contributor: Paul Mattal p...@archlinux.org
-
-pkgname=ffmpeg
-pkgver=20120317
-pkgrel=1
-pkgdesc=Complete and free Internet live audio and video broadcasting solution 
for Linux/Unix
-arch=('i686' 'x86_64')
-url=http://ffmpeg.org/;
-license=('GPL')
-depends=(alsa-lib bzip2 gsm lame libpulse libtheora libva libvorbis libvpx 
opencore-amr openjpeg rtmpdump schroedinger sdl speex x264 xvidcore zlib)
-makedepends=('yasm' 'git' 'libvdpau')
-#git clone git://git.videolan.org/ffmpeg.git
-source=(ftp://ftp.archlinux.org/other/ffmpeg/$pkgname-$pkgver.tar.xz)
-md5sums=('2a2ef83ae73713fcef6bba8c430665ce')
-
-build() {
-  cd $pkgname
-
-  ./configure \
---prefix=/usr \
---enable-libmp3lame \
---enable-libvorbis \
---enable-libxvid \
---enable-libx264 \
---enable-libvpx \
---enable-libtheora \
---enable-libgsm \
---enable-libspeex \
---enable-postproc \
---enable-shared \
---enable-x11grab \
---enable-libopencore_amrnb \
---enable-libopencore_amrwb \
---enable-libschroedinger \
---enable-libopenjpeg \
---enable-librtmp \
---enable-libpulse \
---enable-gpl \
---enable-version3 \
---enable-runtime-cpudetect \
---disable-debug \
---disable-static
-
-  make
-  make tools/qt-faststart
-  make doc/ff{mpeg,play,server}.1
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR=$pkgdir install install-man
-  install -D -m755 tools/qt-faststart $pkgdir/usr/bin/qt-faststart
-}
-
-# vim:set ts=2 sw=2 et:

Copied: ffmpeg/repos/extra-i686/PKGBUILD (from rev 158781, 
ffmpeg/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-05-09 17:58:43 UTC (rev 158782)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer : Ionut Biru ib...@archlinux.org
+# Contributor: Tom Newsom jeeps...@gmx.co.uk
+# Contributor: Paul Mattal p...@archlinux.org
+
+pkgname=ffmpeg
+pkgver=20120509
+pkgrel=1
+pkgdesc=Complete and free Internet live audio and video broadcasting solution 
for Linux/Unix
+arch=('i686' 'x86_64')
+url=http://ffmpeg.org/;
+license=('GPL')
+depends=(alsa-lib bzip2 gsm lame libpulse libtheora libva libvorbis libvpx 
opencore-amr openjpeg rtmpdump schroedinger sdl speex x264 xvidcore zlib)
+makedepends=('yasm' 'git' 'libvdpau')
+#git clone git://git.videolan.org/ffmpeg.git
+source=(ftp://ftp.archlinux.org/other/ffmpeg/$pkgname-$pkgver.tar.xz)
+md5sums=('a35359e424608f369d380f03e4dc9966')
+
+build() {
+  cd $pkgname
+
+  ./configure \
+--prefix=/usr \
+--enable-libmp3lame \
+--enable-libvorbis \
+--enable-libxvid \
+--enable-libx264 \
+--enable-libvpx \
+--enable-libtheora \
+--enable-libgsm \
+--enable-libspeex \
+--enable-postproc \
+--enable-shared \
+--enable-x11grab \
+--enable-libopencore_amrnb \
+--enable-libopencore_amrwb \
+--enable-libschroedinger \
+--enable-libopenjpeg \
+--enable-librtmp \
+--enable-libpulse \
+--enable-gpl \
+--enable-version3 \
+--enable-runtime-cpudetect \
+--disable-debug \
+--disable-static
+
+  make
+  make tools/qt-faststart
+  make doc/ff{mpeg,play,server}.1
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR=$pkgdir install install-man
+  install -D -m755 tools/qt-faststart $pkgdir/usr/bin/qt-faststart
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-05-09 17:54:04 UTC (rev 158781)
+++ extra-x86_64/PKGBUILD   2012-05-09 17:58:43 UTC (rev 158782)
@@ -1,58 +0,0 @@
-# $Id$
-# Maintainer : Ionut Biru ib...@archlinux.org
-# Contributor: Tom Newsom jeeps...@gmx.co.uk
-# Contributor: Paul Mattal p...@archlinux.org
-
-pkgname=ffmpeg
-pkgver=20120317
-pkgrel=1
-pkgdesc=Complete and free Internet live audio and video broadcasting solution 
for Linux/Unix
-arch=('i686' 'x86_64')
-url=http://ffmpeg.org/;
-license=('GPL')
-depends=(alsa-lib bzip2 gsm lame libpulse libtheora libva

[arch-commits] Commit in cups/repos (25 files)

2012-05-09 Thread Pierre Schmitz
Date: Wednesday, May 9, 2012 @ 14:48:19
  Author: pierre
Revision: 158783

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

Added:
  cups/repos/extra-i686/PKGBUILD
(from rev 158782, cups/repos/testing-i686/PKGBUILD)
  cups/repos/extra-i686/cups
(from rev 158782, cups/repos/testing-i686/cups)
  cups/repos/extra-i686/cups-avahi-1-config.patch
(from rev 158782, cups/repos/testing-i686/cups-avahi-1-config.patch)
  cups/repos/extra-i686/cups-avahi-2-backend.patch
(from rev 158782, cups/repos/testing-i686/cups-avahi-2-backend.patch)
  cups/repos/extra-i686/cups-avahi-3-timeouts.patch
(from rev 158782, cups/repos/testing-i686/cups-avahi-3-timeouts.patch)
  cups/repos/extra-i686/cups-avahi-4-poll.patch
(from rev 158782, cups/repos/testing-i686/cups-avahi-4-poll.patch)
  cups/repos/extra-i686/cups-avahi-5-services.patch
(from rev 158782, cups/repos/testing-i686/cups-avahi-5-services.patch)
  cups/repos/extra-i686/cups-no-export-ssllibs.patch
(from rev 158782, cups/repos/testing-i686/cups-no-export-ssllibs.patch)
  cups/repos/extra-i686/cups-no-gcrypt.patch
(from rev 158782, cups/repos/testing-i686/cups-no-gcrypt.patch)
  cups/repos/extra-i686/cups.install
(from rev 158782, cups/repos/testing-i686/cups.install)
  cups/repos/extra-i686/cups.logrotate
(from rev 158782, cups/repos/testing-i686/cups.logrotate)
  cups/repos/extra-i686/cups.pam
(from rev 158782, cups/repos/testing-i686/cups.pam)
Deleted:
  cups/repos/extra-i686/PKGBUILD
  cups/repos/extra-i686/cups
  cups/repos/extra-i686/cups-avahi-1-config.patch
  cups/repos/extra-i686/cups-avahi-2-backend.patch
  cups/repos/extra-i686/cups-avahi-3-timeouts.patch
  cups/repos/extra-i686/cups-avahi-4-poll.patch
  cups/repos/extra-i686/cups-avahi-5-services.patch
  cups/repos/extra-i686/cups-no-export-ssllibs.patch
  cups/repos/extra-i686/cups-no-gcrypt.patch
  cups/repos/extra-i686/cups.install
  cups/repos/extra-i686/cups.logrotate
  cups/repos/extra-i686/cups.pam
  cups/repos/testing-i686/

--+
 PKGBUILD |  314 ++---
 cups |  136 +-
 cups-avahi-1-config.patch|   84 -
 cups-avahi-2-backend.patch   | 2234 +++---
 cups-avahi-3-timeouts.patch  |  762 ++---
 cups-avahi-4-poll.patch  | 1058 +-
 cups-avahi-5-services.patch  | 2382 -
 cups-no-export-ssllibs.patch |   24 
 cups-no-gcrypt.patch |   76 -
 cups.install |   52 
 cups.logrotate   |   16 
 cups.pam |6 
 12 files changed, 3572 insertions(+), 3572 deletions(-)

The diff is longer than the limit of 200KB.
Use svn diff -r 158782:158783 to see the changes.


[arch-commits] Commit in cups/repos (25 files)

2012-05-09 Thread Pierre Schmitz
Date: Wednesday, May 9, 2012 @ 14:48:21
  Author: pierre
Revision: 158784

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

Added:
  cups/repos/extra-x86_64/PKGBUILD
(from rev 158782, cups/repos/testing-x86_64/PKGBUILD)
  cups/repos/extra-x86_64/cups
(from rev 158782, cups/repos/testing-x86_64/cups)
  cups/repos/extra-x86_64/cups-avahi-1-config.patch
(from rev 158782, cups/repos/testing-x86_64/cups-avahi-1-config.patch)
  cups/repos/extra-x86_64/cups-avahi-2-backend.patch
(from rev 158782, cups/repos/testing-x86_64/cups-avahi-2-backend.patch)
  cups/repos/extra-x86_64/cups-avahi-3-timeouts.patch
(from rev 158782, cups/repos/testing-x86_64/cups-avahi-3-timeouts.patch)
  cups/repos/extra-x86_64/cups-avahi-4-poll.patch
(from rev 158782, cups/repos/testing-x86_64/cups-avahi-4-poll.patch)
  cups/repos/extra-x86_64/cups-avahi-5-services.patch
(from rev 158782, cups/repos/testing-x86_64/cups-avahi-5-services.patch)
  cups/repos/extra-x86_64/cups-no-export-ssllibs.patch
(from rev 158782, cups/repos/testing-x86_64/cups-no-export-ssllibs.patch)
  cups/repos/extra-x86_64/cups-no-gcrypt.patch
(from rev 158782, cups/repos/testing-x86_64/cups-no-gcrypt.patch)
  cups/repos/extra-x86_64/cups.install
(from rev 158782, cups/repos/testing-x86_64/cups.install)
  cups/repos/extra-x86_64/cups.logrotate
(from rev 158782, cups/repos/testing-x86_64/cups.logrotate)
  cups/repos/extra-x86_64/cups.pam
(from rev 158782, cups/repos/testing-x86_64/cups.pam)
Deleted:
  cups/repos/extra-x86_64/PKGBUILD
  cups/repos/extra-x86_64/cups
  cups/repos/extra-x86_64/cups-avahi-1-config.patch
  cups/repos/extra-x86_64/cups-avahi-2-backend.patch
  cups/repos/extra-x86_64/cups-avahi-3-timeouts.patch
  cups/repos/extra-x86_64/cups-avahi-4-poll.patch
  cups/repos/extra-x86_64/cups-avahi-5-services.patch
  cups/repos/extra-x86_64/cups-no-export-ssllibs.patch
  cups/repos/extra-x86_64/cups-no-gcrypt.patch
  cups/repos/extra-x86_64/cups.install
  cups/repos/extra-x86_64/cups.logrotate
  cups/repos/extra-x86_64/cups.pam
  cups/repos/testing-x86_64/

--+
 PKGBUILD |  314 ++---
 cups |  136 +-
 cups-avahi-1-config.patch|   84 -
 cups-avahi-2-backend.patch   | 2234 +++---
 cups-avahi-3-timeouts.patch  |  762 ++---
 cups-avahi-4-poll.patch  | 1058 +-
 cups-avahi-5-services.patch  | 2382 -
 cups-no-export-ssllibs.patch |   24 
 cups-no-gcrypt.patch |   76 -
 cups.install |   52 
 cups.logrotate   |   16 
 cups.pam |6 
 12 files changed, 3572 insertions(+), 3572 deletions(-)

The diff is longer than the limit of 200KB.
Use svn diff -r 158783:158784 to see the changes.


[arch-commits] Commit in graphviz/repos (7 files)

2012-05-09 Thread Pierre Schmitz
Date: Wednesday, May 9, 2012 @ 14:48:23
  Author: pierre
Revision: 158785

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

Added:
  graphviz/repos/extra-i686/LICENSE
(from rev 158782, graphviz/repos/testing-i686/LICENSE)
  graphviz/repos/extra-i686/PKGBUILD
(from rev 158782, graphviz/repos/testing-i686/PKGBUILD)
  graphviz/repos/extra-i686/install
(from rev 158782, graphviz/repos/testing-i686/install)
Deleted:
  graphviz/repos/extra-i686/LICENSE
  graphviz/repos/extra-i686/PKGBUILD
  graphviz/repos/extra-i686/install
  graphviz/repos/testing-i686/

--+
 LICENSE  |  174 ++---
 PKGBUILD |  110 +++---
 install  |   24 
 3 files changed, 154 insertions(+), 154 deletions(-)

Deleted: extra-i686/LICENSE
===
--- extra-i686/LICENSE  2012-05-09 18:48:21 UTC (rev 158784)
+++ extra-i686/LICENSE  2012-05-09 18:48:23 UTC (rev 158785)
@@ -1,87 +0,0 @@
-Eclipse Public License - v 1.0
-
-THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC 
LICENSE (AGREEMENT). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM 
CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.
-
-1. DEFINITIONS
-
-Contribution means:
-
-a) in the case of the initial Contributor, the initial code and documentation 
distributed under this Agreement, and
-
-b) in the case of each subsequent Contributor:
-
-i) changes to the Program, and
-
-ii) additions to the Program;
-
-where such changes and/or additions to the Program originate from and are 
distributed by that particular Contributor. A Contribution 'originates' from a 
Contributor if it was added to the Program by such Contributor itself or anyone 
acting on such Contributor's behalf. Contributions do not include additions to 
the Program which: (i) are separate modules of software distributed in 
conjunction with the Program under their own license agreement, and (ii) are 
not derivative works of the Program.
-
-Contributor means any person or entity that distributes the Program.
-
-Licensed Patents mean patent claims licensable by a Contributor which are 
necessarily infringed by the use or sale of its Contribution alone or when 
combined with the Program.
-
-Program means the Contributions distributed in accordance with this 
Agreement.
-
-Recipient means anyone who receives the Program under this Agreement, 
including all Contributors.
-
-2. GRANT OF RIGHTS
-
-a) Subject to the terms of this Agreement, each Contributor hereby grants 
Recipient a non-exclusive, worldwide, royalty-free copyright license to 
reproduce, prepare derivative works of, publicly display, publicly perform, 
distribute and sublicense the Contribution of such Contributor, if any, and 
such derivative works, in source code and object code form.
-
-b) Subject to the terms of this Agreement, each Contributor hereby grants 
Recipient a non-exclusive, worldwide, royalty-free patent license under 
Licensed Patents to make, use, sell, offer to sell, import and otherwise 
transfer the Contribution of such Contributor, if any, in source code and 
object code form. This patent license shall apply to the combination of the 
Contribution and the Program if, at the time the Contribution is added by the 
Contributor, such addition of the Contribution causes such combination to be 
covered by the Licensed Patents. The patent license shall not apply to any 
other combinations which include the Contribution. No hardware per se is 
licensed hereunder.
-
-c) Recipient understands that although each Contributor grants the licenses to 
its Contributions set forth herein, no assurances are provided by any 
Contributor that the Program does not infringe the patent or other intellectual 
property rights of any other entity. Each Contributor disclaims any liability 
to Recipient for claims brought by any other entity based on infringement of 
intellectual property rights or otherwise. As a condition to exercising the 
rights and licenses granted hereunder, each Recipient hereby assumes sole 
responsibility to secure any other intellectual property rights needed, if any. 
For example, if a third party patent license is required to allow Recipient to 
distribute the Program, it is Recipient's responsibility to acquire that 
license before distributing the Program.
-
-d) Each Contributor represents that to its knowledge it has sufficient 
copyright rights in its Contribution, if any, to grant the copyright license 
set forth in this Agreement.
-
-3. REQUIREMENTS
-
-A Contributor may choose to distribute the Program in object code form under 
its own license agreement, provided that:
-
-a) it complies with the terms and conditions of this Agreement; and
-
-b) its license agreement:
-
-i) effectively disclaims on behalf of all Contributors all warranties and 
conditions, express and implied, including warranties or conditions of title 

[arch-commits] Commit in graphviz/repos (7 files)

2012-05-09 Thread Pierre Schmitz
Date: Wednesday, May 9, 2012 @ 14:48:24
  Author: pierre
Revision: 158786

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

Added:
  graphviz/repos/extra-x86_64/LICENSE
(from rev 158782, graphviz/repos/testing-x86_64/LICENSE)
  graphviz/repos/extra-x86_64/PKGBUILD
(from rev 158782, graphviz/repos/testing-x86_64/PKGBUILD)
  graphviz/repos/extra-x86_64/install
(from rev 158782, graphviz/repos/testing-x86_64/install)
Deleted:
  graphviz/repos/extra-x86_64/LICENSE
  graphviz/repos/extra-x86_64/PKGBUILD
  graphviz/repos/extra-x86_64/install
  graphviz/repos/testing-x86_64/

--+
 LICENSE  |  174 ++---
 PKGBUILD |  110 +++---
 install  |   24 
 3 files changed, 154 insertions(+), 154 deletions(-)

Deleted: extra-x86_64/LICENSE
===
--- extra-x86_64/LICENSE2012-05-09 18:48:23 UTC (rev 158785)
+++ extra-x86_64/LICENSE2012-05-09 18:48:24 UTC (rev 158786)
@@ -1,87 +0,0 @@
-Eclipse Public License - v 1.0
-
-THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC 
LICENSE (AGREEMENT). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM 
CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.
-
-1. DEFINITIONS
-
-Contribution means:
-
-a) in the case of the initial Contributor, the initial code and documentation 
distributed under this Agreement, and
-
-b) in the case of each subsequent Contributor:
-
-i) changes to the Program, and
-
-ii) additions to the Program;
-
-where such changes and/or additions to the Program originate from and are 
distributed by that particular Contributor. A Contribution 'originates' from a 
Contributor if it was added to the Program by such Contributor itself or anyone 
acting on such Contributor's behalf. Contributions do not include additions to 
the Program which: (i) are separate modules of software distributed in 
conjunction with the Program under their own license agreement, and (ii) are 
not derivative works of the Program.
-
-Contributor means any person or entity that distributes the Program.
-
-Licensed Patents mean patent claims licensable by a Contributor which are 
necessarily infringed by the use or sale of its Contribution alone or when 
combined with the Program.
-
-Program means the Contributions distributed in accordance with this 
Agreement.
-
-Recipient means anyone who receives the Program under this Agreement, 
including all Contributors.
-
-2. GRANT OF RIGHTS
-
-a) Subject to the terms of this Agreement, each Contributor hereby grants 
Recipient a non-exclusive, worldwide, royalty-free copyright license to 
reproduce, prepare derivative works of, publicly display, publicly perform, 
distribute and sublicense the Contribution of such Contributor, if any, and 
such derivative works, in source code and object code form.
-
-b) Subject to the terms of this Agreement, each Contributor hereby grants 
Recipient a non-exclusive, worldwide, royalty-free patent license under 
Licensed Patents to make, use, sell, offer to sell, import and otherwise 
transfer the Contribution of such Contributor, if any, in source code and 
object code form. This patent license shall apply to the combination of the 
Contribution and the Program if, at the time the Contribution is added by the 
Contributor, such addition of the Contribution causes such combination to be 
covered by the Licensed Patents. The patent license shall not apply to any 
other combinations which include the Contribution. No hardware per se is 
licensed hereunder.
-
-c) Recipient understands that although each Contributor grants the licenses to 
its Contributions set forth herein, no assurances are provided by any 
Contributor that the Program does not infringe the patent or other intellectual 
property rights of any other entity. Each Contributor disclaims any liability 
to Recipient for claims brought by any other entity based on infringement of 
intellectual property rights or otherwise. As a condition to exercising the 
rights and licenses granted hereunder, each Recipient hereby assumes sole 
responsibility to secure any other intellectual property rights needed, if any. 
For example, if a third party patent license is required to allow Recipient to 
distribute the Program, it is Recipient's responsibility to acquire that 
license before distributing the Program.
-
-d) Each Contributor represents that to its knowledge it has sufficient 
copyright rights in its Contribution, if any, to grant the copyright license 
set forth in this Agreement.
-
-3. REQUIREMENTS
-
-A Contributor may choose to distribute the Program in object code form under 
its own license agreement, provided that:
-
-a) it complies with the terms and conditions of this Agreement; and
-
-b) its license agreement:
-
-i) effectively disclaims on behalf of all Contributors all warranties and 
conditions, express and implied, 

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

2012-05-09 Thread Pierre Schmitz
Date: Wednesday, May 9, 2012 @ 14:48:26
  Author: pierre
Revision: 158787

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

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

---+
 PKGBUILD  |  711 +++-
 apache.conf   |   26 -
 logrotate.d.php-fpm   |   12 
 php-fpm.conf.in.patch |  104 +++
 php.ini.patch |  248 
 rc.d.php-fpm  |  316 ++---
 suhosin.patch |   13 
 7 files changed, 693 insertions(+), 737 deletions(-)

The diff is longer than the limit of 200KB.
Use svn diff -r 158786:158787 to see the changes.


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

2012-05-09 Thread Pierre Schmitz
Date: Wednesday, May 9, 2012 @ 14:48:29
  Author: pierre
Revision: 158788

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

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

---+
 PKGBUILD  |  711 +++-
 apache.conf   |   26 -
 logrotate.d.php-fpm   |   12 
 php-fpm.conf.in.patch |  104 +++
 php.ini.patch |  248 
 rc.d.php-fpm  |  316 ++---
 suhosin.patch |   13 
 7 files changed, 693 insertions(+), 737 deletions(-)

The diff is longer than the limit of 200KB.
Use svn diff -r 158787:158788 to see the changes.


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

2012-05-09 Thread Pierre Schmitz
Date: Wednesday, May 9, 2012 @ 14:48:30
  Author: pierre
Revision: 158789

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

Added:
  php-apc/repos/extra-i686/PKGBUILD
(from rev 158782, php-apc/repos/testing-i686/PKGBUILD)
Deleted:
  php-apc/repos/extra-i686/PKGBUILD
  php-apc/repos/testing-i686/

--+
 PKGBUILD |   70 ++---
 1 file changed, 35 insertions(+), 35 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-05-09 18:48:29 UTC (rev 158788)
+++ extra-i686/PKGBUILD 2012-05-09 18:48:30 UTC (rev 158789)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Pierre Schmitz pie...@archlinux.de
-
-pkgname=php-apc
-pkgver=3.1.10
-pkgrel=1
-arch=('i686' 'x86_64')
-pkgdesc='A free, open, and robust framework for caching and optimizing PHP 
intermediate code'
-url='http://pecl.php.net/package/APC'
-depends=('php')
-license=('PHP')
-source=(http://pecl.php.net/get/APC-${pkgver}.tgz;)
-backup=('etc/php/conf.d/apc.ini')
-md5sums=('f4a6b91903d6ba9dce89fc87bb6f26c9')
-
-build() {
-   cd $srcdir/APC-$pkgver
-   phpize
-   ./configure --prefix=/usr
-   make
-}
-
-# check() {
-#  cd $srcdir/APC-$pkgver
-#  make test
-# }
-
-package() {
-   cd $srcdir/APC-$pkgver
-   make INSTALL_ROOT=$pkgdir install
-   echo ';extension=apc.so'  apc.ini
-   install -D -m644 apc.ini $pkgdir/etc/php/conf.d/apc.ini
-   install -D -m644 apc.php $pkgdir/usr/share/php-apc/apc.php
-   install -D -m644 INSTALL $pkgdir/usr/share/doc/php-apc/install.txt
-}

Copied: php-apc/repos/extra-i686/PKGBUILD (from rev 158782, 
php-apc/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-05-09 18:48:30 UTC (rev 158789)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Pierre Schmitz pie...@archlinux.de
+
+pkgname=php-apc
+pkgver=3.1.10
+pkgrel=2
+arch=('i686' 'x86_64')
+pkgdesc='A free, open, and robust framework for caching and optimizing PHP 
intermediate code'
+url='http://pecl.php.net/package/APC'
+depends=('php')
+license=('PHP')
+source=(http://pecl.php.net/get/APC-${pkgver}.tgz;)
+backup=('etc/php/conf.d/apc.ini')
+md5sums=('f4a6b91903d6ba9dce89fc87bb6f26c9')
+
+build() {
+   cd $srcdir/APC-$pkgver
+   phpize
+   ./configure --prefix=/usr
+   make
+}
+
+# check() {
+#  cd $srcdir/APC-$pkgver
+#  make test
+# }
+
+package() {
+   cd $srcdir/APC-$pkgver
+   make INSTALL_ROOT=$pkgdir install
+   echo ';extension=apc.so'  apc.ini
+   install -D -m644 apc.ini $pkgdir/etc/php/conf.d/apc.ini
+   install -D -m644 apc.php $pkgdir/usr/share/php-apc/apc.php
+   install -D -m644 INSTALL $pkgdir/usr/share/doc/php-apc/install.txt
+}



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

2012-05-09 Thread Pierre Schmitz
Date: Wednesday, May 9, 2012 @ 14:48:32
  Author: pierre
Revision: 158790

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

Added:
  php-apc/repos/extra-x86_64/PKGBUILD
(from rev 158782, php-apc/repos/testing-x86_64/PKGBUILD)
Deleted:
  php-apc/repos/extra-x86_64/PKGBUILD
  php-apc/repos/testing-x86_64/

--+
 PKGBUILD |   70 ++---
 1 file changed, 35 insertions(+), 35 deletions(-)

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-05-09 18:48:30 UTC (rev 158789)
+++ extra-x86_64/PKGBUILD   2012-05-09 18:48:32 UTC (rev 158790)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Pierre Schmitz pie...@archlinux.de
-
-pkgname=php-apc
-pkgver=3.1.10
-pkgrel=1
-arch=('i686' 'x86_64')
-pkgdesc='A free, open, and robust framework for caching and optimizing PHP 
intermediate code'
-url='http://pecl.php.net/package/APC'
-depends=('php')
-license=('PHP')
-source=(http://pecl.php.net/get/APC-${pkgver}.tgz;)
-backup=('etc/php/conf.d/apc.ini')
-md5sums=('f4a6b91903d6ba9dce89fc87bb6f26c9')
-
-build() {
-   cd $srcdir/APC-$pkgver
-   phpize
-   ./configure --prefix=/usr
-   make
-}
-
-# check() {
-#  cd $srcdir/APC-$pkgver
-#  make test
-# }
-
-package() {
-   cd $srcdir/APC-$pkgver
-   make INSTALL_ROOT=$pkgdir install
-   echo ';extension=apc.so'  apc.ini
-   install -D -m644 apc.ini $pkgdir/etc/php/conf.d/apc.ini
-   install -D -m644 apc.php $pkgdir/usr/share/php-apc/apc.php
-   install -D -m644 INSTALL $pkgdir/usr/share/doc/php-apc/install.txt
-}

Copied: php-apc/repos/extra-x86_64/PKGBUILD (from rev 158782, 
php-apc/repos/testing-x86_64/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-05-09 18:48:32 UTC (rev 158790)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Pierre Schmitz pie...@archlinux.de
+
+pkgname=php-apc
+pkgver=3.1.10
+pkgrel=2
+arch=('i686' 'x86_64')
+pkgdesc='A free, open, and robust framework for caching and optimizing PHP 
intermediate code'
+url='http://pecl.php.net/package/APC'
+depends=('php')
+license=('PHP')
+source=(http://pecl.php.net/get/APC-${pkgver}.tgz;)
+backup=('etc/php/conf.d/apc.ini')
+md5sums=('f4a6b91903d6ba9dce89fc87bb6f26c9')
+
+build() {
+   cd $srcdir/APC-$pkgver
+   phpize
+   ./configure --prefix=/usr
+   make
+}
+
+# check() {
+#  cd $srcdir/APC-$pkgver
+#  make test
+# }
+
+package() {
+   cd $srcdir/APC-$pkgver
+   make INSTALL_ROOT=$pkgdir install
+   echo ';extension=apc.so'  apc.ini
+   install -D -m644 apc.ini $pkgdir/etc/php/conf.d/apc.ini
+   install -D -m644 apc.php $pkgdir/usr/share/php-apc/apc.php
+   install -D -m644 INSTALL $pkgdir/usr/share/doc/php-apc/install.txt
+}



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

2012-05-09 Thread Pierre Schmitz
Date: Wednesday, May 9, 2012 @ 14:48:34
  Author: pierre
Revision: 158791

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

Added:
  php-xcache/repos/extra-i686/
  php-xcache/repos/extra-i686/PKGBUILD
(from rev 158782, php-xcache/repos/testing-i686/PKGBUILD)
  php-xcache/repos/extra-i686/xcache.ini
(from rev 158782, php-xcache/repos/testing-i686/xcache.ini)
Deleted:
  php-xcache/repos/testing-i686/

+
 PKGBUILD   |   40 
 xcache.ini |3 +++
 2 files changed, 43 insertions(+)

Copied: php-xcache/repos/extra-i686/PKGBUILD (from rev 158782, 
php-xcache/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-05-09 18:48:34 UTC (rev 158791)
@@ -0,0 +1,40 @@
+# $Id: $
+# Maintainer: Pierre Schmitz pie...@archlinux.de
+
+pkgname=php-xcache
+pkgver=2.0.0
+pkgrel=3
+arch=('i686' 'x86_64')
+pkgdesc='A PHP opcode cacher'
+url='http://xcache.lighttpd.net/'
+depends=('php')
+license=('custom')
+source=(http://xcache.lighttpd.net/pub/Releases/${pkgver}/xcache-${pkgver}.tar.bz2;
+'xcache.ini')
+backup=('etc/php/conf.d/xcache.ini')
+md5sums=('0e30cdff075c635e475d70a5c37d0252'
+ 'bba7ead3e592a7980aa91a8600973587')
+
+build() {
+   cd $srcdir/xcache-$pkgver
+   phpize
+   ./configure --prefix=/usr
+   make
+}
+
+# check() {
+#  cd $srcdir/xcache-$pkgver
+#  make test
+# }
+
+package() {
+   cd $srcdir/xcache-$pkgver
+   make INSTALL_ROOT=$pkgdir install
+
+   install -Dm644 $srcdir/xcache.ini $pkgdir/etc/php/conf.d/xcache.ini
+
+   install -dm755 $pkgdir/usr/share/php-xcache/admin
+   install -m644 admin/* $pkgdir/usr/share/php-xcache/admin/
+
+   install -Dm644 COPYING $pkgdir/usr/share/licenses/php-xcache/COPYING
+}

Copied: php-xcache/repos/extra-i686/xcache.ini (from rev 158782, 
php-xcache/repos/testing-i686/xcache.ini)
===
--- extra-i686/xcache.ini   (rev 0)
+++ extra-i686/xcache.ini   2012-05-09 18:48:34 UTC (rev 158791)
@@ -0,0 +1,3 @@
+;zend_extension=/usr/lib/php/modules/xcache.so
+xcache.size=64M
+xcache.var_size=64M



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

2012-05-09 Thread Pierre Schmitz
Date: Wednesday, May 9, 2012 @ 14:48:35
  Author: pierre
Revision: 158792

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

Added:
  php-xcache/repos/extra-x86_64/
  php-xcache/repos/extra-x86_64/PKGBUILD
(from rev 158782, php-xcache/repos/testing-x86_64/PKGBUILD)
  php-xcache/repos/extra-x86_64/xcache.ini
(from rev 158782, php-xcache/repos/testing-x86_64/xcache.ini)
Deleted:
  php-xcache/repos/testing-x86_64/

+
 PKGBUILD   |   40 
 xcache.ini |3 +++
 2 files changed, 43 insertions(+)

Copied: php-xcache/repos/extra-x86_64/PKGBUILD (from rev 158782, 
php-xcache/repos/testing-x86_64/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-05-09 18:48:35 UTC (rev 158792)
@@ -0,0 +1,40 @@
+# $Id: $
+# Maintainer: Pierre Schmitz pie...@archlinux.de
+
+pkgname=php-xcache
+pkgver=2.0.0
+pkgrel=3
+arch=('i686' 'x86_64')
+pkgdesc='A PHP opcode cacher'
+url='http://xcache.lighttpd.net/'
+depends=('php')
+license=('custom')
+source=(http://xcache.lighttpd.net/pub/Releases/${pkgver}/xcache-${pkgver}.tar.bz2;
+'xcache.ini')
+backup=('etc/php/conf.d/xcache.ini')
+md5sums=('0e30cdff075c635e475d70a5c37d0252'
+ 'bba7ead3e592a7980aa91a8600973587')
+
+build() {
+   cd $srcdir/xcache-$pkgver
+   phpize
+   ./configure --prefix=/usr
+   make
+}
+
+# check() {
+#  cd $srcdir/xcache-$pkgver
+#  make test
+# }
+
+package() {
+   cd $srcdir/xcache-$pkgver
+   make INSTALL_ROOT=$pkgdir install
+
+   install -Dm644 $srcdir/xcache.ini $pkgdir/etc/php/conf.d/xcache.ini
+
+   install -dm755 $pkgdir/usr/share/php-xcache/admin
+   install -m644 admin/* $pkgdir/usr/share/php-xcache/admin/
+
+   install -Dm644 COPYING $pkgdir/usr/share/licenses/php-xcache/COPYING
+}

Copied: php-xcache/repos/extra-x86_64/xcache.ini (from rev 158782, 
php-xcache/repos/testing-x86_64/xcache.ini)
===
--- extra-x86_64/xcache.ini (rev 0)
+++ extra-x86_64/xcache.ini 2012-05-09 18:48:35 UTC (rev 158792)
@@ -0,0 +1,3 @@
+;zend_extension=/usr/lib/php/modules/xcache.so
+xcache.size=64M
+xcache.var_size=64M



[arch-commits] Commit in amd-ucode/repos (5 files)

2012-05-09 Thread Allan McRae
Date: Wednesday, May 9, 2012 @ 21:15:36
  Author: allan
Revision: 158793

db-move: moved amd-ucode from [core] to [extra] (any)

Added:
  amd-ucode/repos/extra-any/PKGBUILD
(from rev 158792, amd-ucode/repos/core-any/PKGBUILD)
  amd-ucode/repos/extra-any/amd-ucode.install
(from rev 158792, amd-ucode/repos/core-any/amd-ucode.install)
Deleted:
  amd-ucode/repos/core-any/
  amd-ucode/repos/extra-any/PKGBUILD
  amd-ucode/repos/extra-any/amd-ucode.install

---+
 PKGBUILD  |   44 ++--
 amd-ucode.install |   14 +++---
 2 files changed, 29 insertions(+), 29 deletions(-)

Deleted: extra-any/PKGBUILD
===
--- extra-any/PKGBUILD  2012-05-09 18:48:35 UTC (rev 158792)
+++ extra-any/PKGBUILD  2012-05-10 01:15:36 UTC (rev 158793)
@@ -1,22 +0,0 @@
-# $Id$
-# Maintainer: Thomas Bächler tho...@archlinux.org
-
-pkgname=amd-ucode
-_realver=2012-01-17
-pkgver=${_realver//-/\.}
-pkgrel=1
-pkgdesc=Microcode update files for AMD family 10h, 11h, and 14h CPUs
-arch=('any')
-license=('custom')
-url=http://www.amd64.org/support/microcode.html;
-install=${pkgname}.install
-source=(http://www.amd64.org/pub/microcode/amd-ucode-${_realver}.tar
-http://www.amd64.org/pub/microcode/amd-ucode-${_realver}.tar.asc)
-sha256sums=('87589ad8e61532c2e0f7f418cd452aec9188964dce2f460eba66c379905e1657'
-'c4e15129f943178fe136a3a54134dc89e50081e8e70088a4bc315157111aecdf')
-
-package() {
-  cd ${srcdir}/${pkgname}-${_realver}
-  install -D -m644 microcode_amd.bin 
${pkgdir}/lib/firmware/amd-ucode/microcode_amd.bin
-  install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: amd-ucode/repos/extra-any/PKGBUILD (from rev 158792, 
amd-ucode/repos/core-any/PKGBUILD)
===
--- extra-any/PKGBUILD  (rev 0)
+++ extra-any/PKGBUILD  2012-05-10 01:15:36 UTC (rev 158793)
@@ -0,0 +1,22 @@
+# $Id$
+# Maintainer: Thomas Bächler tho...@archlinux.org
+
+pkgname=amd-ucode
+_realver=2012-01-17
+pkgver=${_realver//-/\.}
+pkgrel=2
+pkgdesc=Microcode update files for AMD family 10h, 11h, and 14h CPUs
+arch=('any')
+license=('custom')
+url=http://www.amd64.org/support/microcode.html;
+install=${pkgname}.install
+source=(http://www.amd64.org/pub/microcode/amd-ucode-${_realver}.tar
+http://www.amd64.org/pub/microcode/amd-ucode-${_realver}.tar.asc)
+sha256sums=('87589ad8e61532c2e0f7f418cd452aec9188964dce2f460eba66c379905e1657'
+'c4e15129f943178fe136a3a54134dc89e50081e8e70088a4bc315157111aecdf')
+
+package() {
+  cd ${srcdir}/${pkgname}-${_realver}
+  install -D -m644 microcode_amd.bin 
${pkgdir}/usr/lib/firmware/amd-ucode/microcode_amd.bin
+  install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}

Deleted: extra-any/amd-ucode.install
===
--- extra-any/amd-ucode.install 2012-05-09 18:48:35 UTC (rev 158792)
+++ extra-any/amd-ucode.install 2012-05-10 01:15:36 UTC (rev 158793)
@@ -1,7 +0,0 @@
-post_install() {
-  echo
-  echo == To apply the microcode update on boot, load the 'microcode' module
-  echo == by adding it to the MODULES array in rc.conf:
-  echo ==  MODULES=(... microcode)
-  echo
-}

Copied: amd-ucode/repos/extra-any/amd-ucode.install (from rev 158792, 
amd-ucode/repos/core-any/amd-ucode.install)
===
--- extra-any/amd-ucode.install (rev 0)
+++ extra-any/amd-ucode.install 2012-05-10 01:15:36 UTC (rev 158793)
@@ -0,0 +1,7 @@
+post_install() {
+  echo
+  echo == To apply the microcode update on boot, load the 'microcode' module
+  echo == by adding it to the MODULES array in rc.conf:
+  echo ==  MODULES=(... microcode)
+  echo
+}



[arch-commits] Commit in intel-ucode/repos (9 files)

2012-05-09 Thread Allan McRae
Date: Wednesday, May 9, 2012 @ 21:15:37
  Author: allan
Revision: 158794

db-move: moved intel-ucode from [core] to [extra] (any)

Added:
  intel-ucode/repos/extra-any/LICENSE
(from rev 158792, intel-ucode/repos/core-any/LICENSE)
  intel-ucode/repos/extra-any/PKGBUILD
(from rev 158792, intel-ucode/repos/core-any/PKGBUILD)
  intel-ucode/repos/extra-any/intel-microcode2ucode.c
(from rev 158792, intel-ucode/repos/core-any/intel-microcode2ucode.c)
  intel-ucode/repos/extra-any/intel-ucode.install
(from rev 158792, intel-ucode/repos/core-any/intel-ucode.install)
Deleted:
  intel-ucode/repos/core-any/
  intel-ucode/repos/extra-any/LICENSE
  intel-ucode/repos/extra-any/PKGBUILD
  intel-ucode/repos/extra-any/intel-microcode2ucode.c
  intel-ucode/repos/extra-any/intel-ucode.install

-+
 LICENSE |  246 +-
 PKGBUILD|   62 
 intel-microcode2ucode.c |  326 +++---
 intel-ucode.install |   16 +-
 4 files changed, 325 insertions(+), 325 deletions(-)

Deleted: extra-any/LICENSE
===
--- extra-any/LICENSE   2012-05-10 01:15:36 UTC (rev 158793)
+++ extra-any/LICENSE   2012-05-10 01:15:37 UTC (rev 158794)
@@ -1,123 +0,0 @@
-INTEL SOFTWARE LICENSE AGREEMENT
-
-IMPORTANT - READ BEFORE COPYING, INSTALLING OR USING.
-Do not use or load this software and any associated materials (collectively,
-the Software) until you have carefully read the following terms and
-conditions. By loading or using the Software, you agree to the terms of this
-Agreement. If you do not wish to so agree, do not install or use the Software.
-
-LICENSES: Please Note:
-- If you are a network administrator, the Site License below shall
-apply to you.
-- If you are an end user, the Single User License shall apply to you.
-- If you are an original equipment manufacturer (OEM), the OEM License
-shall apply to you.
-
-SITE LICENSE. You may copy the Software onto your organization's computers
-for your organization's use, and you may make a reasonable number of
-back-up copies of the Software, subject to these conditions:
-
-1. This Software is licensed for use only in conjunction with Intel
-component products. Use of the Software in conjunction with non-Intel
-component products is not licensed hereunder.
-2. You may not copy, modify, rent, sell, distribute or transfer any part
-of the Software except as provided in this Agreement, and you agree to
-prevent unauthorized copying of the Software.
-3. You may not reverse engineer, decompile, or disassemble the Software.
-4. You may not sublicense or permit simultaneous use of the Software by
-more than one user.
-5. The Software may include portions offered on terms in addition to those
-set out here, as set out in a license accompanying those portions.
-
-SINGLE USER LICENSE. You may copy the Software onto a single computer for
-your personal, noncommercial use, and you may make one back-up copy of the
-Software, subject to these conditions:
-
-1. This Software is licensed for use only in conjunction with Intel
-component products. Use of the Software in conjunction with non-Intel
-component products is not licensed hereunder.
-2. You may not copy, modify, rent, sell, distribute or transfer any part
-of the Software except as provided in this Agreement, and you agree to
-prevent unauthorized copying of the Software.
-3. You may not reverse engineer, decompile, or disassemble the Software.
-4. You may not sublicense or permit simultaneous use of the Software by
-more than one user.
-5. The Software may include portions offered on terms in addition to those
-set out here, as set out in a license accompanying those portions.
-
-OEM LICENSE: You may reproduce and distribute the Software only as an
-integral part of or incorporated in Your product or as a standalone
-Software maintenance update for existing end users of Your products,
-excluding any other standalone products, subject to these conditions:
-
-1. This Software is licensed for use only in conjunction with Intel
-component products. Use of the Software in conjunction with non-Intel
-component products is not licensed hereunder.
-2. You may not copy, modify, rent, sell, distribute or transfer any part
-of the Software except as provided in this Agreement, and you agree to
-prevent unauthorized copying of the Software.
-3. You may not reverse engineer, decompile, or disassemble the Software.
-4. You may only distribute the Software to your customers pursuant to a
-written license agreement. Such license agreement may be a break-the-
-seal license agreement. At a minimum such license shall safeguard
-Intel's ownership rights to the Software.
-5. The Software may include portions offered on terms in addition to those
-set out here, as set out in a license accompanying those portions.
-
-NO OTHER RIGHTS. No rights or licenses are granted by