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

2013-10-13 Thread Tobias Powalowski
Date: Monday, October 14, 2013 @ 08:57:44
  Author: tpowa
Revision: 196460

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

Added:
  nvidia/repos/testing-i686/
  nvidia/repos/testing-i686/PKGBUILD
(from rev 196459, nvidia/trunk/PKGBUILD)
  nvidia/repos/testing-i686/nvidia-linux-3.11.patch
(from rev 196459, nvidia/trunk/nvidia-linux-3.11.patch)
  nvidia/repos/testing-i686/nvidia.install
(from rev 196459, nvidia/trunk/nvidia.install)
  nvidia/repos/testing-x86_64/
  nvidia/repos/testing-x86_64/PKGBUILD
(from rev 196459, nvidia/trunk/PKGBUILD)
  nvidia/repos/testing-x86_64/nvidia-linux-3.11.patch
(from rev 196459, nvidia/trunk/nvidia-linux-3.11.patch)
  nvidia/repos/testing-x86_64/nvidia.install
(from rev 196459, nvidia/trunk/nvidia.install)

+
 testing-i686/PKGBUILD  |   48 +++
 testing-i686/nvidia-linux-3.11.patch   |   25 
 testing-i686/nvidia.install|   18 +++
 testing-x86_64/PKGBUILD|   48 +++
 testing-x86_64/nvidia-linux-3.11.patch |   25 
 testing-x86_64/nvidia.install  |   18 +++
 6 files changed, 182 insertions(+)

Copied: nvidia/repos/testing-i686/PKGBUILD (from rev 196459, 
nvidia/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-10-14 06:57:44 UTC (rev 196460)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer : Thomas Baechler 
+
+pkgname=nvidia
+pkgver=325.15
+_extramodules=extramodules-3.11-ARCH
+pkgrel=10
+pkgdesc="NVIDIA drivers for linux"
+arch=('i686' 'x86_64')
+url="http://www.nvidia.com/";
+depends=('linux>=3.11' 'linux<3.12' "nvidia-libgl" "nvidia-utils=${pkgver}")
+makedepends=('linux-headers>=3.11' 'linux-headers<3.12')
+conflicts=('nvidia-96xx' 'nvidia-173xx')
+license=('custom')
+install=nvidia.install
+options=(!strip)
+source=('nvidia-linux-3.11.patch')
+md5sums=('5c962760de069ed4ad34e64d5988686a')
+
+if [ "$CARCH" = "i686" ]; then
+_arch='x86'
+_pkg="NVIDIA-Linux-${_arch}-${pkgver}"
+
source+=("ftp://download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run";)
+md5sums+=('528fc538584de6446384b9cec3099d6c')
+elif [ "$CARCH" = "x86_64" ]; then
+_arch='x86_64'
+   _pkg="NVIDIA-Linux-${_arch}-${pkgver}-no-compat32"
+
source+=("ftp://download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run";)
+md5sums+=('63b2caa0cb128efa1a7808d7bddb2074')
+fi
+
+build() {
+_kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+cd "${srcdir}"
+sh "${_pkg}.run" --extract-only
+cd "${_pkg}/kernel"
+patch -Np2 -i ${srcdir}/nvidia-linux-3.11.patch
+make SYSSRC=/usr/lib/modules/"${_kernver}/build" module
+}
+
+package() {
+install -D -m644 "${srcdir}/${_pkg}/kernel/nvidia.ko" \
+"${pkgdir}/usr/lib/modules/${_extramodules}/nvidia.ko"
+install -d -m755 "${pkgdir}/usr/lib/modprobe.d"
+echo "blacklist nouveau" >> "${pkgdir}/usr/lib/modprobe.d/nvidia.conf"
+sed -i -e "s/EXTRAMODULES='.*'/EXTRAMODULES='${_extramodules}'/" 
"${startdir}/nvidia.install"
+gzip "${pkgdir}/usr/lib/modules/${_extramodules}/nvidia.ko"
+}

Copied: nvidia/repos/testing-i686/nvidia-linux-3.11.patch (from rev 196459, 
nvidia/trunk/nvidia-linux-3.11.patch)
===
--- testing-i686/nvidia-linux-3.11.patch(rev 0)
+++ testing-i686/nvidia-linux-3.11.patch2013-10-14 06:57:44 UTC (rev 
196460)
@@ -0,0 +1,25 @@
+From 8a8647ad942c8ac5161e1335f7f3e9dbb34dbf9e Mon Sep 17 00:00:00 2001
+From: Lukas Elsner 
+Date: Wed, 17 Jul 2013 01:16:04 +0200
+Subject: [PATCH] replace num_physpages with totalram_pages
+
+---
+ kernel/nv-linux.h | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/kernel/nv-linux.h b/kernel/nv-linux.h
+index 4e5ed89..46c51ec 100644
+--- a/kernel/nv-linux.h
 b/kernel/nv-linux.h
+@@ -957,7 +957,7 @@ static inline int nv_execute_on_all_cpus(void (*func)(void 
*info), void *info)
+ #endif
+ 
+ #if !defined(NV_VMWARE)
+-#define NV_NUM_PHYSPAGESnum_physpages
++#define NV_NUM_PHYSPAGEStotalram_pages
+ #define NV_GET_CURRENT_PROCESS()current->tgid
+ #define NV_IN_ATOMIC()  in_atomic()
+ #define NV_LOCAL_BH_DISABLE()   local_bh_disable()
+-- 
+1.8.3.2
+

Copied: nvidia/repos/testing-i686/nvidia.install (from rev 196459, 
nvidia/trunk/nvidia.install)
===
--- testing-i686/nvidia.install (rev 0)
+++ testing-i686/nvidia.install 2013-10-14 06:57:44 UTC (rev 196460)
@@ -0,0 +1,18 @@
+post_install() {
+EXTRAMODULES='extramodules-3.11-ARCH'
+depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
+echo 'In order to use nvidia 

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

2013-10-13 Thread Tobias Powalowski
Date: Monday, October 14, 2013 @ 08:57:23
  Author: tpowa
Revision: 196459

upgpkg: nvidia 325.15-10

rebuild against 3.11.5

Modified:
  nvidia/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-10-14 06:56:24 UTC (rev 196458)
+++ PKGBUILD2013-10-14 06:57:23 UTC (rev 196459)
@@ -4,7 +4,7 @@
 pkgname=nvidia
 pkgver=325.15
 _extramodules=extramodules-3.11-ARCH
-pkgrel=9
+pkgrel=10
 pkgdesc="NVIDIA drivers for linux"
 arch=('i686' 'x86_64')
 url="http://www.nvidia.com/";



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

2013-10-13 Thread Jan de Groot
Date: Monday, October 14, 2013 @ 08:56:17
  Author: jgc
Revision: 196457

upgpkg: upower 0.9.22-1

Modified:
  upower/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-10-14 06:53:58 UTC (rev 196456)
+++ PKGBUILD2013-10-14 06:56:17 UTC (rev 196457)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot 
 
 pkgname=upower
-pkgver=0.9.21
+pkgver=0.9.22
 pkgrel=1
 pkgdesc="Abstraction for enumerating power devices, listening to device events 
and querying history and statistics"
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 makedepends=('intltool' 'docbook-xsl' 'gobject-introspection' 'systemd')
 options=('!libtool')
 source=($url/releases/$pkgname-$pkgver.tar.xz)
-md5sums=('1aa2b9e6fd757cd151bbaa4991eacc18')
+md5sums=('22b0b13c16ceb1516b5edf5cf0e99d6d')
 
 build() {
   cd "$pkgname-$pkgver"



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

2013-10-13 Thread Jan de Groot
Date: Monday, October 14, 2013 @ 08:56:24
  Author: jgc
Revision: 196458

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

Added:
  upower/repos/testing-i686/PKGBUILD
(from rev 196457, upower/trunk/PKGBUILD)
  upower/repos/testing-x86_64/PKGBUILD
(from rev 196457, upower/trunk/PKGBUILD)
Deleted:
  upower/repos/testing-i686/PKGBUILD
  upower/repos/testing-x86_64/PKGBUILD

-+
 /PKGBUILD   |   60 ++
 testing-i686/PKGBUILD   |   30 ---
 testing-x86_64/PKGBUILD |   30 ---
 3 files changed, 60 insertions(+), 60 deletions(-)

Deleted: testing-i686/PKGBUILD
===
--- testing-i686/PKGBUILD   2013-10-14 06:56:17 UTC (rev 196457)
+++ testing-i686/PKGBUILD   2013-10-14 06:56:24 UTC (rev 196458)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=upower
-pkgver=0.9.21
-pkgrel=1
-pkgdesc="Abstraction for enumerating power devices, listening to device events 
and querying history and statistics"
-arch=('i686' 'x86_64')
-url="http://upower.freedesktop.org";
-license=('GPL')
-depends=('systemd-tools' 'libsystemd' 'libusb' 'polkit' 'dbus-glib' 
'libimobiledevice')
-makedepends=('intltool' 'docbook-xsl' 'gobject-introspection' 'systemd')
-options=('!libtool')
-source=($url/releases/$pkgname-$pkgver.tar.xz)
-md5sums=('1aa2b9e6fd757cd151bbaa4991eacc18')
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  ./configure --prefix=/usr --sysconfdir=/etc \
---localstatedir=/var \
---libexecdir=/usr/lib/$pkgname \
---disable-static
-  make
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}

Copied: upower/repos/testing-i686/PKGBUILD (from rev 196457, 
upower/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-10-14 06:56:24 UTC (rev 196458)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=upower
+pkgver=0.9.22
+pkgrel=1
+pkgdesc="Abstraction for enumerating power devices, listening to device events 
and querying history and statistics"
+arch=('i686' 'x86_64')
+url="http://upower.freedesktop.org";
+license=('GPL')
+depends=('systemd-tools' 'libsystemd' 'libusb' 'polkit' 'dbus-glib' 
'libimobiledevice')
+makedepends=('intltool' 'docbook-xsl' 'gobject-introspection' 'systemd')
+options=('!libtool')
+source=($url/releases/$pkgname-$pkgver.tar.xz)
+md5sums=('22b0b13c16ceb1516b5edf5cf0e99d6d')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure --prefix=/usr --sysconfdir=/etc \
+--localstatedir=/var \
+--libexecdir=/usr/lib/$pkgname \
+--disable-static
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}

Deleted: testing-x86_64/PKGBUILD
===
--- testing-x86_64/PKGBUILD 2013-10-14 06:56:17 UTC (rev 196457)
+++ testing-x86_64/PKGBUILD 2013-10-14 06:56:24 UTC (rev 196458)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=upower
-pkgver=0.9.21
-pkgrel=1
-pkgdesc="Abstraction for enumerating power devices, listening to device events 
and querying history and statistics"
-arch=('i686' 'x86_64')
-url="http://upower.freedesktop.org";
-license=('GPL')
-depends=('systemd-tools' 'libsystemd' 'libusb' 'polkit' 'dbus-glib' 
'libimobiledevice')
-makedepends=('intltool' 'docbook-xsl' 'gobject-introspection' 'systemd')
-options=('!libtool')
-source=($url/releases/$pkgname-$pkgver.tar.xz)
-md5sums=('1aa2b9e6fd757cd151bbaa4991eacc18')
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  ./configure --prefix=/usr --sysconfdir=/etc \
---localstatedir=/var \
---libexecdir=/usr/lib/$pkgname \
---disable-static
-  make
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}

Copied: upower/repos/testing-x86_64/PKGBUILD (from rev 196457, 
upower/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-10-14 06:56:24 UTC (rev 196458)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=upower
+pkgver=0.9.22
+pkgrel=1
+pkgdesc="Abstraction for enumerating power devices, listening to device events 
and querying history and statistics"
+arch=('i686' 'x86_64')
+url="http://upower.freedesktop.org";
+license=('GPL')
+depends=('systemd-tools' 'libsystemd' 'libusb' 'polkit' 'dbus-glib' 
'libimobiledevice')
+makedepends=('intltool' 'docbook-xsl' 'gobject-introspection' 'systemd')
+options=('!libtool')
+source=($url/releases/$pkgname-$pkgver.tar.xz)
+md5sums=('22b0b13c16ceb1516b5edf5cf0e99d6d')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure --prefix=/usr --sysconfdir=/etc \
+--localstatedir=/var \
+--libexecdir=/usr/lib/$pkgname \
+--disable-static
+  make
+}
+

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

2013-10-13 Thread Tobias Powalowski
Date: Monday, October 14, 2013 @ 08:53:58
  Author: tpowa
Revision: 196456

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

Added:
  linux/repos/testing-i686/
  linux/repos/testing-i686/3.11-haswell-intel_pstate.patch
(from rev 196455, linux/trunk/3.11-haswell-intel_pstate.patch)
  linux/repos/testing-i686/PKGBUILD
(from rev 196455, linux/trunk/PKGBUILD)
  linux/repos/testing-i686/change-default-console-loglevel.patch
(from rev 196455, linux/trunk/change-default-console-loglevel.patch)
  linux/repos/testing-i686/config
(from rev 196455, linux/trunk/config)
  linux/repos/testing-i686/config.3.12
(from rev 196455, linux/trunk/config.3.12)
  linux/repos/testing-i686/config.x86_64
(from rev 196455, linux/trunk/config.x86_64)
  linux/repos/testing-i686/config.x86_64.3.12
(from rev 196455, linux/trunk/config.x86_64.3.12)
  linux/repos/testing-i686/criu-no-expert.patch
(from rev 196455, linux/trunk/criu-no-expert.patch)
  linux/repos/testing-i686/linux.install
(from rev 196455, linux/trunk/linux.install)
  linux/repos/testing-i686/linux.preset
(from rev 196455, linux/trunk/linux.preset)
  linux/repos/testing-x86_64/
  linux/repos/testing-x86_64/3.11-haswell-intel_pstate.patch
(from rev 196455, linux/trunk/3.11-haswell-intel_pstate.patch)
  linux/repos/testing-x86_64/PKGBUILD
(from rev 196455, linux/trunk/PKGBUILD)
  linux/repos/testing-x86_64/change-default-console-loglevel.patch
(from rev 196455, linux/trunk/change-default-console-loglevel.patch)
  linux/repos/testing-x86_64/config
(from rev 196455, linux/trunk/config)
  linux/repos/testing-x86_64/config.3.12
(from rev 196455, linux/trunk/config.3.12)
  linux/repos/testing-x86_64/config.x86_64
(from rev 196455, linux/trunk/config.x86_64)
  linux/repos/testing-x86_64/config.x86_64.3.12
(from rev 196455, linux/trunk/config.x86_64.3.12)
  linux/repos/testing-x86_64/criu-no-expert.patch
(from rev 196455, linux/trunk/criu-no-expert.patch)
  linux/repos/testing-x86_64/linux.install
(from rev 196455, linux/trunk/linux.install)
  linux/repos/testing-x86_64/linux.preset
(from rev 196455, linux/trunk/linux.preset)

--+
 testing-i686/3.11-haswell-intel_pstate.patch |   32 
 testing-i686/PKGBUILD|  343 
 testing-i686/change-default-console-loglevel.patch   |   12 
 testing-i686/config  | 6432 
 testing-i686/config.3.12 | 6475 +
 testing-i686/config.x86_64   | 6235 
 testing-i686/config.x86_64.3.12  | 6275 
 testing-i686/criu-no-expert.patch|   22 
 testing-i686/linux.install   |   31 
 testing-i686/linux.preset|   14 
 testing-x86_64/3.11-haswell-intel_pstate.patch   |   32 
 testing-x86_64/PKGBUILD  |  343 
 testing-x86_64/change-default-console-loglevel.patch |   12 
 testing-x86_64/config| 6432 
 testing-x86_64/config.3.12   | 6475 +
 testing-x86_64/config.x86_64 | 6235 
 testing-x86_64/config.x86_64.3.12| 6275 
 testing-x86_64/criu-no-expert.patch  |   22 
 testing-x86_64/linux.install |   31 
 testing-x86_64/linux.preset  |   14 
 20 files changed, 51742 insertions(+)

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


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

2013-10-13 Thread Tobias Powalowski
Date: Monday, October 14, 2013 @ 08:53:31
  Author: tpowa
Revision: 196455

upgpkg: linux 3.11.5-1

bump to latest version, module breaker

Modified:
  linux/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-10-14 06:12:15 UTC (rev 196454)
+++ PKGBUILD2013-10-14 06:53:31 UTC (rev 196455)
@@ -5,7 +5,7 @@
 pkgbase=linux   # Build stock -ARCH kernel
 #pkgbase=linux-custom   # Build kernel with a different name
 _srcname=linux-3.11
-pkgver=3.11.4
+pkgver=3.11.5
 pkgrel=1
 arch=('i686' 'x86_64')
 url="http://www.kernel.org/";
@@ -22,9 +22,9 @@
 'criu-no-expert.patch'
 '3.11-haswell-intel_pstate.patch')
 md5sums=('fea363551ff45fbe4cb88497b863b261'
- '5147e7f82600452c5438f8309c07eccd'
- '673c43306099ea6c671ee95983a12154'
- 'aa76dd87358464718b697d9dd71296d8'
+ '628876a432c0d4090013b383abac20e4'
+ '77cf04eba30f625d46b5097b036ae138'
+ '98d1e9862f555e5c56e95aae1f149789'
  'eb14dcfd80c00852ef81ded6e826826a'
  '98beb36f9b8cf16e58de2483ea9985e3'
  'd50c1ac47394e9aec637002ef3392bd1'
@@ -34,9 +34,10 @@
 
 # module.symbols md5sums
 # x86_64
-# 44169a8e457641f2d8f83e9cde6e22f8  /lib/modules/3.11.4-1-ARCH/modules.symbols
+# ec2540e9486c8a2c9026a40b8fe551c5  /lib/modules/3.11.5-1-ARCH/modules.symbols
 # i686
-# 9294a0246b8975295f4fdf2d22b431d9  /lib/modules/3.11.4-1-ARCH/modules.symbols
+# e9c1ae7203f65cdd073257640f61505e  /lib/modules/3.11.5-1-ARCH/modules.symbols
+
 prepare() {
   cd "${srcdir}/${_srcname}"
 



[arch-commits] Commit in (pyxml)

2013-10-13 Thread Jan de Groot
Date: Monday, October 14, 2013 @ 08:12:15
  Author: jgc
Revision: 196454

Kill package (FS#37151)

Deleted:
  pyxml/



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

2013-10-13 Thread Jan de Groot
Date: Monday, October 14, 2013 @ 08:09:56
  Author: jgc
Revision: 98561

upgpkg: gcompris 12.11-2

Remove pyxml dependency (FS#37277)

Modified:
  gcompris/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-10-14 05:55:05 UTC (rev 98560)
+++ PKGBUILD2013-10-14 06:09:56 UTC (rev 98561)
@@ -4,13 +4,12 @@
 
 pkgname=gcompris
 pkgver=12.11
-pkgrel=1
+pkgrel=2
 pkgdesc="Educational software suite comprising of numerous activities for 
children aged 2 to 10"
 arch=('i686' 'x86_64')
 url="http://gcompris.net/";
 license=('GPL3')
-depends=('pygtk' 'pyxml' 'librsvg' 'python2-pysqlite'
- 'gstreamer0.10-base-plugins')
+depends=('pygtk' 'librsvg' 'python2-pysqlite' 'gstreamer0.10-base-plugins')
 optdepends=('gnucap: for computer simulation within the electricity activity'
 'tuxpaint: for the painting activity'
 'gnuchess: for the chess activity')
@@ -20,7 +19,7 @@
 sha256sums=('97b688497963cc907e3d91f844483fb006a07b22010528dafb09ae5380523b20')
 
 build() {
-  cd "$srcdir/$pkgname-$pkgver"
+  cd $pkgname-$pkgver
 
   ./configure --prefix=/usr
   make
@@ -29,7 +28,7 @@
 package() {
   depends+=('gcompris-data')
 
-  cd "$srcdir/$pkgname-$pkgver"
+  cd $pkgname-$pkgver
   make DESTDIR="$pkgdir" install-exec
 }
 



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

2013-10-13 Thread Jan de Groot
Date: Monday, October 14, 2013 @ 08:10:05
  Author: jgc
Revision: 98562

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

Added:
  gcompris/repos/community-i686/PKGBUILD
(from rev 98561, gcompris/trunk/PKGBUILD)
  gcompris/repos/community-x86_64/PKGBUILD
(from rev 98561, gcompris/trunk/PKGBUILD)
Deleted:
  gcompris/repos/community-i686/PKGBUILD
  gcompris/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   70 
 community-i686/PKGBUILD   |   36 --
 community-x86_64/PKGBUILD |   36 --
 3 files changed, 70 insertions(+), 72 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-10-14 06:09:56 UTC (rev 98561)
+++ community-i686/PKGBUILD 2013-10-14 06:10:05 UTC (rev 98562)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Evangelos Foutras 
-# Contributor: Daniel Isenmann 
-
-pkgname=gcompris
-pkgver=12.11
-pkgrel=1
-pkgdesc="Educational software suite comprising of numerous activities for 
children aged 2 to 10"
-arch=('i686' 'x86_64')
-url="http://gcompris.net/";
-license=('GPL3')
-depends=('pygtk' 'pyxml' 'librsvg' 'python2-pysqlite'
- 'gstreamer0.10-base-plugins')
-optdepends=('gnucap: for computer simulation within the electricity activity'
-'tuxpaint: for the painting activity'
-'gnuchess: for the chess activity')
-makedepends=('texinfo' 'texi2html' 'intltool' 'gettext' 'gnuchess')
-options=('!libtool')
-source=(http://downloads.sourceforge.net/project/$pkgname/$pkgver/$pkgname-$pkgver.tar.bz2)
-sha256sums=('97b688497963cc907e3d91f844483fb006a07b22010528dafb09ae5380523b20')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  depends+=('gcompris-data')
-
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install-exec
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gcompris/repos/community-i686/PKGBUILD (from rev 98561, 
gcompris/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-10-14 06:10:05 UTC (rev 98562)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Evangelos Foutras 
+# Contributor: Daniel Isenmann 
+
+pkgname=gcompris
+pkgver=12.11
+pkgrel=2
+pkgdesc="Educational software suite comprising of numerous activities for 
children aged 2 to 10"
+arch=('i686' 'x86_64')
+url="http://gcompris.net/";
+license=('GPL3')
+depends=('pygtk' 'librsvg' 'python2-pysqlite' 'gstreamer0.10-base-plugins')
+optdepends=('gnucap: for computer simulation within the electricity activity'
+'tuxpaint: for the painting activity'
+'gnuchess: for the chess activity')
+makedepends=('texinfo' 'texi2html' 'intltool' 'gettext' 'gnuchess')
+options=('!libtool')
+source=(http://downloads.sourceforge.net/project/$pkgname/$pkgver/$pkgname-$pkgver.tar.bz2)
+sha256sums=('97b688497963cc907e3d91f844483fb006a07b22010528dafb09ae5380523b20')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  depends+=('gcompris-data')
+
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install-exec
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2013-10-14 06:09:56 UTC (rev 98561)
+++ community-x86_64/PKGBUILD   2013-10-14 06:10:05 UTC (rev 98562)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Evangelos Foutras 
-# Contributor: Daniel Isenmann 
-
-pkgname=gcompris
-pkgver=12.11
-pkgrel=1
-pkgdesc="Educational software suite comprising of numerous activities for 
children aged 2 to 10"
-arch=('i686' 'x86_64')
-url="http://gcompris.net/";
-license=('GPL3')
-depends=('pygtk' 'pyxml' 'librsvg' 'python2-pysqlite'
- 'gstreamer0.10-base-plugins')
-optdepends=('gnucap: for computer simulation within the electricity activity'
-'tuxpaint: for the painting activity'
-'gnuchess: for the chess activity')
-makedepends=('texinfo' 'texi2html' 'intltool' 'gettext' 'gnuchess')
-options=('!libtool')
-source=(http://downloads.sourceforge.net/project/$pkgname/$pkgver/$pkgname-$pkgver.tar.bz2)
-sha256sums=('97b688497963cc907e3d91f844483fb006a07b22010528dafb09ae5380523b20')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  depends+=('gcompris-data')
-
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install-exec
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gcompris/repos/community-x86_64/PKGBUILD (from rev 98561, 
gcompris/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2013-10-14 06:10:05 UTC (rev 98562)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: 

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

2013-10-13 Thread Jan de Groot
Date: Monday, October 14, 2013 @ 07:54:59
  Author: jgc
Revision: 98559

upgpkg: freevo 1.9.0-13

Use prepare() function
Drop pyxml (FS#37276)

Modified:
  freevo/trunk/PKGBUILD

--+
 PKGBUILD |   20 
 1 file changed, 12 insertions(+), 8 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-10-14 02:55:13 UTC (rev 98558)
+++ PKGBUILD2013-10-14 05:54:59 UTC (rev 98559)
@@ -3,13 +3,13 @@
 
 pkgname=freevo
 pkgver=1.9.0
-pkgrel=12
+pkgrel=13
 pkgdesc="An open-source home theatre PC platform"
 url="http://freevo.sourceforge.net/";
 license=('GPL2')
 arch=('any')
 depends=('lame' 'flac' 'faad2' 'cdparanoia' 'vorbis-tools' 'fbset' 
- 'smpeg' 'python2-pillow' 'python2-pysqlite-legacy' 'pyxml' 'lsdvd' 
+ 'smpeg' 'python2-pillow' 'python2-pysqlite-legacy' 'lsdvd' 
  'twisted' 'python2-numpy' 'python2-pygame' 'kaa-metadata' 
  'kaa-imlib2' 'python2-beautifulsoup3' 'python2-html5lib')
 optdepends=('mplayer: most features' 
@@ -25,22 +25,26 @@
   '5f6e76dc58496f072aca29257c24be5ffa9c6c7d'
   '57e1099527603500c594fbffa2cb7233b636eed1')
 
-package() {
-  cd "${srcdir}"/${pkgname}-${pkgver}
+prepare() {
+  cd $pkgname-$pkgver
 
   # patch from 
http://sourceforge.net/tracker/index.php?func=detail&aid=2924872&group_id=46652&atid=446895
-  patch -p0 < "${srcdir}"/imdb-html5lib.patch
+  patch -Np0 -i ../imdb-html5lib.patch
 
   # remove check for python-imaging
-  sed -i "/'Image'/d" "${srcdir}"/${pkgname}-${pkgver}/setup.py
+  sed -i "/'Image'/d" setup.py
+}
+package() {
+  cd $pkgname-$pkgver
+
   python2 setup.py install --prefix="${pkgdir}"/usr
   
   install -Dm644 local_conf.py.example 
"${pkgdir}"/usr/share/doc/freevo/local_conf.py.example
 
   # install .desktop file and icon
-  install -Dm644 
"${srcdir}"/${pkgname}-${pkgver}/share/icons/misc/freevo_app.png \
+  install -Dm644 share/icons/misc/freevo_app.png \
 "${pkgdir}"/usr/share/pixmaps/freevo.png
-  install -Dm644 "${srcdir}"/freevo.desktop \
+  install -Dm644 ../freevo.desktop \
 "${pkgdir}"/usr/share/applications/freevo.desktop
 
   # fix executable for python 2.7



[arch-commits] Commit in freevo/repos/community-any (8 files)

2013-10-13 Thread Jan de Groot
Date: Monday, October 14, 2013 @ 07:55:05
  Author: jgc
Revision: 98560

archrelease: copy trunk to community-any

Added:
  freevo/repos/community-any/PKGBUILD
(from rev 98559, freevo/trunk/PKGBUILD)
  freevo/repos/community-any/freevo.desktop
(from rev 98559, freevo/trunk/freevo.desktop)
  freevo/repos/community-any/freevo.install
(from rev 98559, freevo/trunk/freevo.install)
  freevo/repos/community-any/imdb-html5lib.patch
(from rev 98559, freevo/trunk/imdb-html5lib.patch)
Deleted:
  freevo/repos/community-any/PKGBUILD
  freevo/repos/community-any/freevo.desktop
  freevo/repos/community-any/freevo.install
  freevo/repos/community-any/imdb-html5lib.patch

-+
 PKGBUILD|  106 
 freevo.desktop  |   22 -
 freevo.install  |   50 ++--
 imdb-html5lib.patch |  602 +-
 4 files changed, 392 insertions(+), 388 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2013-10-14 05:54:59 UTC (rev 98559)
+++ PKGBUILD2013-10-14 05:55:05 UTC (rev 98560)
@@ -1,51 +0,0 @@
-# $Id$
-# Maintainer: Ronald van Haren  
-
-pkgname=freevo
-pkgver=1.9.0
-pkgrel=12
-pkgdesc="An open-source home theatre PC platform"
-url="http://freevo.sourceforge.net/";
-license=('GPL2')
-arch=('any')
-depends=('lame' 'flac' 'faad2' 'cdparanoia' 'vorbis-tools' 'fbset' 
- 'smpeg' 'python2-pillow' 'python2-pysqlite-legacy' 'pyxml' 'lsdvd' 
- 'twisted' 'python2-numpy' 'python2-pygame' 'kaa-metadata' 
- 'kaa-imlib2' 'python2-beautifulsoup3' 'python2-html5lib')
-optdepends=('mplayer: most features' 
-'xine-lib: can be used instead of mplayer' 
-'tvtime: watching tv' 
-'xmltv: parsing online tv guides')
-install=freevo.install
-options=('docs')
-source=("http://downloads.sourceforge.net/freevo/$pkgname-$pkgver.tar.gz";
-'freevo.desktop'
-'imdb-html5lib.patch')
-sha1sums=('0533a2d4ff8a7b09b3b233fdf303ff56bda22d16'
-  '5f6e76dc58496f072aca29257c24be5ffa9c6c7d'
-  '57e1099527603500c594fbffa2cb7233b636eed1')
-
-package() {
-  cd "${srcdir}"/${pkgname}-${pkgver}
-
-  # patch from 
http://sourceforge.net/tracker/index.php?func=detail&aid=2924872&group_id=46652&atid=446895
-  patch -p0 < "${srcdir}"/imdb-html5lib.patch
-
-  # remove check for python-imaging
-  sed -i "/'Image'/d" "${srcdir}"/${pkgname}-${pkgver}/setup.py
-  python2 setup.py install --prefix="${pkgdir}"/usr
-  
-  install -Dm644 local_conf.py.example 
"${pkgdir}"/usr/share/doc/freevo/local_conf.py.example
-
-  # install .desktop file and icon
-  install -Dm644 
"${srcdir}"/${pkgname}-${pkgver}/share/icons/misc/freevo_app.png \
-"${pkgdir}"/usr/share/pixmaps/freevo.png
-  install -Dm644 "${srcdir}"/freevo.desktop \
-"${pkgdir}"/usr/share/applications/freevo.desktop
-
-  # fix executable for python 2.7
-  sed -i -e 's:\(#!/usr/bin/env[ ]\+python$\|#!/usr/bin/python$\):\12:g' \
-$(find "${pkgdir}" -regex ".*.py\|.*.recipe")
-  sed -i "s:python:python2:g" "${pkgdir}"/usr/share/freevo/htdocs/downloadurl
-  sed -i "s|search = ('python', 'python2')|search = ('python2', 'python2.7')|" 
"${pkgdir}"/usr/bin/freevo
-}

Copied: freevo/repos/community-any/PKGBUILD (from rev 98559, 
freevo/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-10-14 05:55:05 UTC (rev 98560)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Ronald van Haren  
+
+pkgname=freevo
+pkgver=1.9.0
+pkgrel=13
+pkgdesc="An open-source home theatre PC platform"
+url="http://freevo.sourceforge.net/";
+license=('GPL2')
+arch=('any')
+depends=('lame' 'flac' 'faad2' 'cdparanoia' 'vorbis-tools' 'fbset' 
+ 'smpeg' 'python2-pillow' 'python2-pysqlite-legacy' 'lsdvd' 
+ 'twisted' 'python2-numpy' 'python2-pygame' 'kaa-metadata' 
+ 'kaa-imlib2' 'python2-beautifulsoup3' 'python2-html5lib')
+optdepends=('mplayer: most features' 
+'xine-lib: can be used instead of mplayer' 
+'tvtime: watching tv' 
+'xmltv: parsing online tv guides')
+install=freevo.install
+options=('docs')
+source=("http://downloads.sourceforge.net/freevo/$pkgname-$pkgver.tar.gz";
+'freevo.desktop'
+'imdb-html5lib.patch')
+sha1sums=('0533a2d4ff8a7b09b3b233fdf303ff56bda22d16'
+  '5f6e76dc58496f072aca29257c24be5ffa9c6c7d'
+  '57e1099527603500c594fbffa2cb7233b636eed1')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  # patch from 
http://sourceforge.net/tracker/index.php?func=detail&aid=2924872&group_id=46652&atid=446895
+  patch -Np0 -i ../imdb-html5lib.patch
+
+  # remove check for python-imaging
+  sed -i "/'Image'/d" setup.py
+}
+package() {
+  cd $pkgname-$pkgver
+
+  python2 setup.py install --prefix="${pkgdir}"/usr
+  
+  install -Dm644 local_conf.py.example 
"${pkgdir}"/usr/share/doc/freevo/local_conf.py.example
+
+  #

[arch-commits] Commit in glibc/trunk (PKGBUILD glibc.install)

2013-10-13 Thread Allan McRae
Date: Monday, October 14, 2013 @ 07:21:25
  Author: allan
Revision: 196451

only regenerate locales when (possibly) needed

Modified:
  glibc/trunk/PKGBUILD
  glibc/trunk/glibc.install

---+
 PKGBUILD  |2 ++
 glibc.install |5 -
 2 files changed, 6 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-10-14 05:14:39 UTC (rev 196450)
+++ PKGBUILD2013-10-14 05:21:25 UTC (rev 196451)
@@ -4,6 +4,8 @@
 # toolchain build order: 
linux-api-headers->glibc->binutils->gcc->binutils->glibc
 # NOTE: valgrind requires rebuilt with each major glibc version
 
+# NOTE: adjust version in install script when locale files are updated
+
 pkgname=glibc
 pkgver=2.18
 pkgrel=5

Modified: glibc.install
===
--- glibc.install   2013-10-14 05:14:39 UTC (rev 196450)
+++ glibc.install   2013-10-14 05:21:25 UTC (rev 196451)
@@ -3,8 +3,11 @@
 
 post_upgrade() {
   ldconfig -r .
-  locale-gen
   
+  if [[ $(vercmp 2.18 $2) = 1 ]]; then
+locale-gen
+  fi
+  
   [[ -x usr/bin/install-info ]] || return 0
   for file in ${filelist[@]}; do
 install-info $infodir/$file.gz $infodir/dir 2> /dev/null



[arch-commits] Commit in glibc/trunk (locale-gen)

2013-10-13 Thread Allan McRae
Date: Monday, October 14, 2013 @ 07:14:39
  Author: allan
Revision: 196450

limit parallel generation of locales

Modified:
  glibc/trunk/locale-gen

+
 locale-gen |7 +++
 1 file changed, 7 insertions(+)

Modified: locale-gen
===
--- locale-gen  2013-10-14 00:53:21 UTC (rev 196449)
+++ locale-gen  2013-10-14 05:14:39 UTC (rev 196450)
@@ -35,6 +35,7 @@
localedef -i "$input" -c -f "$charset" -A 
/usr/share/locale/locale.alias "$locale"
 }
 
+maxjobs=$(grep -qc processor /proc/cpuinfo 2>/dev/null || echo 1)
 echo "Generating locales..."
 while read locale charset; do \
case $locale in
@@ -43,6 +44,12 @@
;;
esac
gen "$locale" "$charset" &
+
+   # keep no more than $maxjobs jobs in flight
+   while [ $(jobs | wc -l) -ge $maxjobs ]; do
+   sleep 0.25
+   jobs >/dev/null
+   done
 done < $LOCALEGEN
 wait
 



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

2013-10-13 Thread Felix Yan
Date: Monday, October 14, 2013 @ 04:55:13
  Author: fyan
Revision: 98558

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

Added:
  python-pymongo/repos/community-i686/PKGBUILD
(from rev 98557, python-pymongo/trunk/PKGBUILD)
  python-pymongo/repos/community-x86_64/PKGBUILD
(from rev 98557, python-pymongo/trunk/PKGBUILD)
Deleted:
  python-pymongo/repos/community-i686/PKGBUILD
  python-pymongo/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   78 
 community-i686/PKGBUILD   |   39 --
 community-x86_64/PKGBUILD |   39 --
 3 files changed, 78 insertions(+), 78 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-10-14 02:53:27 UTC (rev 98557)
+++ community-i686/PKGBUILD 2013-10-14 02:55:13 UTC (rev 98558)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth 
-# Maintainer: Felix Yan 
-# Contributor: Thomas S Hatch 
-# Contributor: Jelle van der Waa 
-
-pkgbase=python-pymongo
-pkgname=('python-pymongo' 'python2-pymongo')
-pkgver=2.6.2
-pkgrel=1
-pkgdesc='Python driver for MongoDB'
-arch=('x86_64' 'i686')
-license=('APACHE')
-url='http://pypi.python.org/pypi/pymongo/'
-makedepends=('python-setuptools' 'python2-setuptools')
-source=("http://pypi.python.org/packages/source/p/pymongo/pymongo-$pkgver.tar.gz";)
-sha256sums=('091d584f7b5d8de60bf6152d9269ec9a29ae7fa34415862b2f092af393233c4e')
-
-build() {
-  cd "$srcdir"
-
-  cp -a "pymongo-$pkgver" "pymongo2-$pkgver"
-}
-
-package_python2-pymongo() {
-  depends=('python2')
-
-  cd "$srcdir/pymongo2-$pkgver"
-  python2 setup.py install --root="$pkgdir" --optimize=1
-}
-
-package_python-pymongo() {
-  depends=('python')
-
-  cd "$srcdir/pymongo-$pkgver"
-  python setup.py install --root="$pkgdir" --optimize=1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-pymongo/repos/community-i686/PKGBUILD (from rev 98557, 
python-pymongo/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-10-14 02:55:13 UTC (rev 98558)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Maintainer: Felix Yan 
+# Contributor: Thomas S Hatch 
+# Contributor: Jelle van der Waa 
+
+pkgbase=python-pymongo
+pkgname=('python-pymongo' 'python2-pymongo')
+pkgver=2.6.3
+pkgrel=1
+pkgdesc='Python driver for MongoDB'
+arch=('x86_64' 'i686')
+license=('APACHE')
+url='http://pypi.python.org/pypi/pymongo/'
+makedepends=('python-setuptools' 'python2-setuptools')
+source=("http://pypi.python.org/packages/source/p/pymongo/pymongo-$pkgver.tar.gz";)
+
+build() {
+  cd "$srcdir"
+
+  cp -a "pymongo-$pkgver" "pymongo2-$pkgver"
+}
+
+package_python2-pymongo() {
+  depends=('python2')
+
+  cd "$srcdir/pymongo2-$pkgver"
+  python2 setup.py install --root="$pkgdir" --optimize=1
+}
+
+package_python-pymongo() {
+  depends=('python')
+
+  cd "$srcdir/pymongo-$pkgver"
+  python setup.py install --root="$pkgdir" --optimize=1
+}
+
+# vim:set ts=2 sw=2 et:
+sha512sums=('6da3cbf035b52379c24df37b76e1eb743b12c1026116e28e4e7b6450e2674d730f9c8c2dd85f352c6ee4c9f604decaffc2dbc57fe64268bd7522d8ce155cca9e')

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2013-10-14 02:53:27 UTC (rev 98557)
+++ community-x86_64/PKGBUILD   2013-10-14 02:55:13 UTC (rev 98558)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth 
-# Maintainer: Felix Yan 
-# Contributor: Thomas S Hatch 
-# Contributor: Jelle van der Waa 
-
-pkgbase=python-pymongo
-pkgname=('python-pymongo' 'python2-pymongo')
-pkgver=2.6.2
-pkgrel=1
-pkgdesc='Python driver for MongoDB'
-arch=('x86_64' 'i686')
-license=('APACHE')
-url='http://pypi.python.org/pypi/pymongo/'
-makedepends=('python-setuptools' 'python2-setuptools')
-source=("http://pypi.python.org/packages/source/p/pymongo/pymongo-$pkgver.tar.gz";)
-sha256sums=('091d584f7b5d8de60bf6152d9269ec9a29ae7fa34415862b2f092af393233c4e')
-
-build() {
-  cd "$srcdir"
-
-  cp -a "pymongo-$pkgver" "pymongo2-$pkgver"
-}
-
-package_python2-pymongo() {
-  depends=('python2')
-
-  cd "$srcdir/pymongo2-$pkgver"
-  python2 setup.py install --root="$pkgdir" --optimize=1
-}
-
-package_python-pymongo() {
-  depends=('python')
-
-  cd "$srcdir/pymongo-$pkgver"
-  python setup.py install --root="$pkgdir" --optimize=1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-pymongo/repos/community-x86_64/PKGBUILD (from rev 98557, 
python-pymongo/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2013-10-14 02:55:13 UTC (rev 98558)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Maintainer: Felix Yan 
+# Contributor: Thomas S Hatch 
+# Contribut

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

2013-10-13 Thread Felix Yan
Date: Monday, October 14, 2013 @ 04:53:27
  Author: fyan
Revision: 98557

upgpkg: python-pymongo 2.6.3-1

Modified:
  python-pymongo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-10-13 21:55:37 UTC (rev 98556)
+++ PKGBUILD2013-10-14 02:53:27 UTC (rev 98557)
@@ -6,7 +6,7 @@
 
 pkgbase=python-pymongo
 pkgname=('python-pymongo' 'python2-pymongo')
-pkgver=2.6.2
+pkgver=2.6.3
 pkgrel=1
 pkgdesc='Python driver for MongoDB'
 arch=('x86_64' 'i686')
@@ -14,7 +14,6 @@
 url='http://pypi.python.org/pypi/pymongo/'
 makedepends=('python-setuptools' 'python2-setuptools')
 
source=("http://pypi.python.org/packages/source/p/pymongo/pymongo-$pkgver.tar.gz";)
-sha256sums=('091d584f7b5d8de60bf6152d9269ec9a29ae7fa34415862b2f092af393233c4e')
 
 build() {
   cd "$srcdir"
@@ -37,3 +36,4 @@
 }
 
 # vim:set ts=2 sw=2 et:
+sha512sums=('6da3cbf035b52379c24df37b76e1eb743b12c1026116e28e4e7b6450e2674d730f9c8c2dd85f352c6ee4c9f604decaffc2dbc57fe64268bd7522d8ce155cca9e')



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

2013-10-13 Thread Jan Steffens
Date: Monday, October 14, 2013 @ 02:53:21
  Author: heftig
Revision: 196449

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

Added:
  gnome-chess/repos/extra-i686/PKGBUILD
(from rev 196448, gnome-chess/trunk/PKGBUILD)
  gnome-chess/repos/extra-i686/gnome-chess.install
(from rev 196448, gnome-chess/trunk/gnome-chess.install)
  gnome-chess/repos/extra-x86_64/PKGBUILD
(from rev 196448, gnome-chess/trunk/PKGBUILD)
  gnome-chess/repos/extra-x86_64/gnome-chess.install
(from rev 196448, gnome-chess/trunk/gnome-chess.install)
Deleted:
  gnome-chess/repos/extra-i686/PKGBUILD
  gnome-chess/repos/extra-i686/gnome-chess.install
  gnome-chess/repos/extra-x86_64/PKGBUILD
  gnome-chess/repos/extra-x86_64/gnome-chess.install

--+
 /PKGBUILD|   66 +
 /gnome-chess.install |   26 ++
 extra-i686/PKGBUILD  |   33 --
 extra-i686/gnome-chess.install   |   13 ---
 extra-x86_64/PKGBUILD|   33 --
 extra-x86_64/gnome-chess.install |   13 ---
 6 files changed, 92 insertions(+), 92 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-10-14 00:51:49 UTC (rev 196448)
+++ extra-i686/PKGBUILD 2013-10-14 00:53:21 UTC (rev 196449)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-
-pkgname=gnome-chess
-pkgver=3.10.1
-pkgrel=1
-pkgdesc="Play the classic two-player boardgame of chess"
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('desktop-file-utils' 'hicolor-icon-theme' 'gtk3' 'librsvg' 'sqlite')
-makedepends=('intltool' 'itstool' 'gobject-introspection')
-optdepends=('gnuchess: Play against computer')
-conflicts=('gnome-games')
-replaces=('gnome-games')
-options=('!emptydirs' '!libtool')
-install=gnome-chess.install
-url="https://live.gnome.org/Chess";
-groups=('gnome-extra')
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('6541db85d2ca5b843fce61bd3be9c08733cf456c6fdf9bbc02ad78d043ca71fd')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
-  --disable-schemas-compile
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: gnome-chess/repos/extra-i686/PKGBUILD (from rev 196448, 
gnome-chess/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-10-14 00:53:21 UTC (rev 196449)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+
+pkgname=gnome-chess
+pkgver=3.10.1.1
+pkgrel=1
+pkgdesc="Play the classic two-player boardgame of chess"
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('desktop-file-utils' 'hicolor-icon-theme' 'gtk3' 'librsvg' 'sqlite')
+makedepends=('intltool' 'itstool' 'gobject-introspection')
+optdepends=('gnuchess: Play against computer')
+conflicts=('gnome-games')
+replaces=('gnome-games')
+options=('!emptydirs' '!libtool')
+install=gnome-chess.install
+url="https://live.gnome.org/Chess";
+groups=('gnome-extra')
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('abdee96eaf56689c4c2bd78cd115a0e30d302e16a8f42dfcb39520c9a33c6eec')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+  --disable-schemas-compile
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-i686/gnome-chess.install
===
--- extra-i686/gnome-chess.install  2013-10-14 00:51:49 UTC (rev 196448)
+++ extra-i686/gnome-chess.install  2013-10-14 00:53:21 UTC (rev 196449)
@@ -1,13 +0,0 @@
-post_install() {
-  glib-compile-schemas usr/share/glib-2.0/schemas
-  update-desktop-database -q
-  gtk-update-icon-cache -f -q usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: gnome-chess/repos/extra-i686/gnome-chess.install (from rev 196448, 
gnome-chess/trunk/gnome-chess.install)
===
--- extra-i686/gnome-chess.install  (rev 0)
+++ extra-i686/gnome-chess.install  2013-10-14 00:53:21 UTC (rev 196449)
@@ -0,0 +1,13 @@
+post_install() {
+  glib-compile-schemas usr/share/glib-2.0/schemas
+  update-desktop-database -q
+  gtk-update-icon-cache -f -q usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-10-14 00:51:49 UTC (rev 196448)
+++ extra-x8

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

2013-10-13 Thread Jan Steffens
Date: Monday, October 14, 2013 @ 02:51:49
  Author: heftig
Revision: 196448

3.10.1.1

Modified:
  gnome-chess/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-10-14 00:16:43 UTC (rev 196447)
+++ PKGBUILD2013-10-14 00:51:49 UTC (rev 196448)
@@ -3,7 +3,7 @@
 # Contributor: Jan de Groot 
 
 pkgname=gnome-chess
-pkgver=3.10.1
+pkgver=3.10.1.1
 pkgrel=1
 pkgdesc="Play the classic two-player boardgame of chess"
 arch=('i686' 'x86_64')
@@ -17,8 +17,8 @@
 install=gnome-chess.install
 url="https://live.gnome.org/Chess";
 groups=('gnome-extra')
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('6541db85d2ca5b843fce61bd3be9c08733cf456c6fdf9bbc02ad78d043ca71fd')
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('abdee96eaf56689c4c2bd78cd115a0e30d302e16a8f42dfcb39520c9a33c6eec')
 
 build() {
   cd $pkgname-$pkgver



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

2013-10-13 Thread Dave Reisner
Date: Monday, October 14, 2013 @ 02:16:43
  Author: dreisner
Revision: 196447

remove +x bit from license file (FS#37326)

Modified:
  systemd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-10-13 21:34:11 UTC (rev 196446)
+++ PKGBUILD2013-10-14 00:16:43 UTC (rev 196447)
@@ -120,7 +120,7 @@
  "$srcdir"/_sysvcompat/usr/share/man/man8
 
   # include MIT license, since it's technically custom
-  install -Dm755 "$srcdir/$pkgname-$pkgver/LICENSE.MIT" \
+  install -Dm644 "$srcdir/$pkgname-$pkgver/LICENSE.MIT" \
   "$pkgdir/usr/share/licenses/systemd/LICENSE.MIT"
 }
 



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

2013-10-13 Thread Florian Pritz
Date: Sunday, October 13, 2013 @ 23:55:34
  Author: bluewind
Revision: 98555

upgpkg: python-ansi2html 1.0.4-1

upstream update

Modified:
  python-ansi2html/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-10-13 12:27:34 UTC (rev 98554)
+++ PKGBUILD2013-10-13 21:55:34 UTC (rev 98555)
@@ -1,7 +1,7 @@
 # Maintainer: Florian Pritz 
 
 pkgname=python-ansi2html
-pkgver=1.0.2
+pkgver=1.0.4
 pkgrel=1
 pkgdesc="Convert text with ANSI color codes to HTML"
 arch=('any')
@@ -10,7 +10,7 @@
 depends=('python-six')
 makedepends=('python-distribute')
 
source=("http://pypi.python.org/packages/source/a/ansi2html/ansi2html-${pkgver}.tar.gz";)
-md5sums=('3401edcf9e89d201ceb9ae35a496618e')
+md5sums=('ae26086a4c6623e3f53745269ac87d7e')
 
 package() {
   cd ansi2html-$pkgver



[arch-commits] Commit in python-ansi2html/repos/community-any (PKGBUILD PKGBUILD)

2013-10-13 Thread Florian Pritz
Date: Sunday, October 13, 2013 @ 23:55:37
  Author: bluewind
Revision: 98556

archrelease: copy trunk to community-any

Added:
  python-ansi2html/repos/community-any/PKGBUILD
(from rev 98555, python-ansi2html/trunk/PKGBUILD)
Deleted:
  python-ansi2html/repos/community-any/PKGBUILD

--+
 PKGBUILD |   38 +++---
 1 file changed, 19 insertions(+), 19 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2013-10-13 21:55:34 UTC (rev 98555)
+++ PKGBUILD2013-10-13 21:55:37 UTC (rev 98556)
@@ -1,19 +0,0 @@
-# Maintainer: Florian Pritz 
-
-pkgname=python-ansi2html
-pkgver=1.0.2
-pkgrel=1
-pkgdesc="Convert text with ANSI color codes to HTML"
-arch=('any')
-url="http://pypi.python.org/pypi/ansi2html";
-license=('GPL')
-depends=('python-six')
-makedepends=('python-distribute')
-source=("http://pypi.python.org/packages/source/a/ansi2html/ansi2html-${pkgver}.tar.gz";)
-md5sums=('3401edcf9e89d201ceb9ae35a496618e')
-
-package() {
-  cd ansi2html-$pkgver
-
-  python setup.py install --root="$pkgdir"  --optimize=1
-}

Copied: python-ansi2html/repos/community-any/PKGBUILD (from rev 98555, 
python-ansi2html/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-10-13 21:55:37 UTC (rev 98556)
@@ -0,0 +1,19 @@
+# Maintainer: Florian Pritz 
+
+pkgname=python-ansi2html
+pkgver=1.0.4
+pkgrel=1
+pkgdesc="Convert text with ANSI color codes to HTML"
+arch=('any')
+url="http://pypi.python.org/pypi/ansi2html";
+license=('GPL')
+depends=('python-six')
+makedepends=('python-distribute')
+source=("http://pypi.python.org/packages/source/a/ansi2html/ansi2html-${pkgver}.tar.gz";)
+md5sums=('ae26086a4c6623e3f53745269ac87d7e')
+
+package() {
+  cd ansi2html-$pkgver
+
+  python setup.py install --root="$pkgdir"  --optimize=1
+}



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

2013-10-13 Thread Jan Steffens
Date: Sunday, October 13, 2013 @ 23:34:11
  Author: heftig
Revision: 196446

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

Added:
  bijiben/repos/extra-i686/PKGBUILD
(from rev 196445, bijiben/trunk/PKGBUILD)
  bijiben/repos/extra-i686/bijiben.install
(from rev 196445, bijiben/trunk/bijiben.install)
  bijiben/repos/extra-x86_64/PKGBUILD
(from rev 196445, bijiben/trunk/PKGBUILD)
  bijiben/repos/extra-x86_64/bijiben.install
(from rev 196445, bijiben/trunk/bijiben.install)
Deleted:
  bijiben/repos/extra-i686/PKGBUILD
  bijiben/repos/extra-i686/bijiben.install
  bijiben/repos/extra-x86_64/PKGBUILD
  bijiben/repos/extra-x86_64/bijiben.install

--+
 /PKGBUILD|   58 +
 /bijiben.install |   28 +++
 extra-i686/PKGBUILD  |   28 ---
 extra-i686/bijiben.install   |   14 -
 extra-x86_64/PKGBUILD|   28 ---
 extra-x86_64/bijiben.install |   14 -
 6 files changed, 86 insertions(+), 84 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-10-13 21:33:09 UTC (rev 196445)
+++ extra-i686/PKGBUILD 2013-10-13 21:34:11 UTC (rev 196446)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=bijiben
-pkgver=3.10.0
-pkgrel=1
-pkgdesc="Write out notes, every detail matters"
-arch=(i686 x86_64)
-url="https://live.gnome.org/Bijiben";
-license=(GPL)
-depends=(tracker clutter-gtk zeitgeist webkitgtk hicolor-icon-theme 
desktop-file-utils gnome-online-accounts)
-makedepends=(intltool itstool)
-options=(!emptydirs)
-install=bijiben.install
-source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz)
-sha256sums=('82817151d7a6919097bcc7cd12306160c2edce2d0e2ddbfd15ae2d2a6d10')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---libexecdir=/usr/lib/$pkgname --disable-update-mimedb
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: bijiben/repos/extra-i686/PKGBUILD (from rev 196445, 
bijiben/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-10-13 21:34:11 UTC (rev 196446)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=bijiben
+pkgver=3.10.1
+pkgrel=1
+pkgdesc="Write out notes, every detail matters"
+arch=(i686 x86_64)
+url="https://live.gnome.org/Bijiben";
+license=(GPL)
+depends=(tracker clutter-gtk zeitgeist webkitgtk hicolor-icon-theme 
desktop-file-utils gnome-online-accounts)
+makedepends=(intltool itstool)
+options=(!emptydirs)
+groups=(gnome-extra)
+install=bijiben.install
+source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz)
+sha256sums=('ad32057baa58bf236e8f04cf7746e0d917927f8af5c49cc5a0910fc0078f775c')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--libexecdir=/usr/lib/$pkgname --disable-update-mimedb
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-i686/bijiben.install
===
--- extra-i686/bijiben.install  2013-10-13 21:33:09 UTC (rev 196445)
+++ extra-i686/bijiben.install  2013-10-13 21:34:11 UTC (rev 196446)
@@ -1,14 +0,0 @@
-post_install() {
-glib-compile-schemas /usr/share/glib-2.0/schemas
-update-desktop-database -q
-gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
-update-mime-database /usr/share/mime
-}
-
-post_upgrade() {
-post_install
-}
-
-post_remove() {
-post_install
-}

Copied: bijiben/repos/extra-i686/bijiben.install (from rev 196445, 
bijiben/trunk/bijiben.install)
===
--- extra-i686/bijiben.install  (rev 0)
+++ extra-i686/bijiben.install  2013-10-13 21:34:11 UTC (rev 196446)
@@ -0,0 +1,14 @@
+post_install() {
+glib-compile-schemas /usr/share/glib-2.0/schemas
+update-desktop-database -q
+gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+update-mime-database /usr/share/mime
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-10-13 21:33:09 UTC (rev 196445)
+++ extra-x86_64/PKGBUILD   2013-10-13 21:34:11 UTC (rev 196446)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=bijiben
-pkgver=3.10.0
-pkgrel=1
-pkgdesc="Write out notes, every detail matters"
-arch=(i686 x86_64)
-url="https://live.gnome.org/Bijiben";
-license=(GPL)
-depends=(tracker

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

2013-10-13 Thread Jan Steffens
Date: Sunday, October 13, 2013 @ 23:33:09
  Author: heftig
Revision: 196445

3.10.1

Modified:
  bijiben/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-10-13 20:06:09 UTC (rev 196444)
+++ PKGBUILD2013-10-13 21:33:09 UTC (rev 196445)
@@ -2,7 +2,7 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgname=bijiben
-pkgver=3.10.0
+pkgver=3.10.1
 pkgrel=1
 pkgdesc="Write out notes, every detail matters"
 arch=(i686 x86_64)
@@ -14,7 +14,7 @@
 groups=(gnome-extra)
 install=bijiben.install
 
source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz)
-sha256sums=('82817151d7a6919097bcc7cd12306160c2edce2d0e2ddbfd15ae2d2a6d10')
+sha256sums=('ad32057baa58bf236e8f04cf7746e0d917927f8af5c49cc5a0910fc0078f775c')
 
 build() {
   cd $pkgname-$pkgver



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

2013-10-13 Thread Andreas Radke
Date: Sunday, October 13, 2013 @ 22:06:09
  Author: andyrtr
Revision: 196444

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

Added:
  hplip/repos/extra-i686/PKGBUILD
(from rev 196443, hplip/trunk/PKGBUILD)
  hplip/repos/extra-i686/hp-mkuri.patch
(from rev 196443, hplip/trunk/hp-mkuri.patch)
  hplip/repos/extra-i686/hplip-CVE-2013-4325.patch
(from rev 196443, hplip/trunk/hplip-CVE-2013-4325.patch)
  hplip/repos/extra-i686/hplip.install
(from rev 196443, hplip/trunk/hplip.install)
  hplip/repos/extra-x86_64/PKGBUILD
(from rev 196443, hplip/trunk/PKGBUILD)
  hplip/repos/extra-x86_64/hp-mkuri.patch
(from rev 196443, hplip/trunk/hp-mkuri.patch)
  hplip/repos/extra-x86_64/hplip-CVE-2013-4325.patch
(from rev 196443, hplip/trunk/hplip-CVE-2013-4325.patch)
  hplip/repos/extra-x86_64/hplip.install
(from rev 196443, hplip/trunk/hplip.install)
Deleted:
  hplip/repos/extra-i686/PKGBUILD
  hplip/repos/extra-i686/hp-mkuri.patch
  hplip/repos/extra-i686/hplip.install
  hplip/repos/extra-x86_64/PKGBUILD
  hplip/repos/extra-x86_64/hp-mkuri.patch
  hplip/repos/extra-x86_64/hplip.install

+
 /PKGBUILD  |  210 +++
 /hp-mkuri.patch|   22 +++
 /hplip.install |   36 +
 extra-i686/PKGBUILD|   93 -
 extra-i686/hp-mkuri.patch  |   11 -
 extra-i686/hplip-CVE-2013-4325.patch   |   22 +++
 extra-i686/hplip.install   |   18 --
 extra-x86_64/PKGBUILD  |   93 -
 extra-x86_64/hp-mkuri.patch|   11 -
 extra-x86_64/hplip-CVE-2013-4325.patch |   22 +++
 extra-x86_64/hplip.install |   18 --
 11 files changed, 312 insertions(+), 244 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-10-13 20:05:28 UTC (rev 196443)
+++ extra-i686/PKGBUILD 2013-10-13 20:06:09 UTC (rev 196444)
@@ -1,93 +0,0 @@
-# $Id$
-# Maintainer: Tom Gundersen 
-# Contributor : Rémy Oudompheng 
-# Contributor: Morgan LEFIEUX 
-
-pkgname=hplip
-pkgver=3.13.9
-pkgrel=2
-pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
-arch=('i686' 'x86_64')
-url="http://hplipopensource.com";
-license=('GPL')
-depends=('python2' 'ghostscript>=8.64-6' 'foomatic-db' 'foomatic-db-engine'
-'net-snmp>=5.7.1' 'wget')
-makedepends=('python2-pyqt' 'python2-gobject2' 'sane' 'rpcbind' 'cups' 
'libusbx')
-optdepends=('cups: for printing support'
-'python2-dbus: for dbus support'
-'sane: for scanner support'
-'python2-pillow: for commandline scanning support'
-'python2-notify: for Desktop notification support'
-'rpcbind: for network support'
-'python2-pyqt: for running hp-toolbox'
-'python2-gobject2: for running hp-toolbox'
-'hplip-plugin: binary blobs for specific devices'
-'libusbx: for advanced usb support')
-options=('!libtool')
-install=hplip.install
-source=(http://downloads.sourceforge.net/${pkgname}/$pkgname-$pkgver.tar.gz{,.asc}
-hp-mkuri.patch)
-md5sums=('8fcbbd0d3a0b76550f325bd6cf46d9d9'
- 'SKIP'
- '0bd7779fdbc4d7a9386df04dce2cb8d4')
-
-build() {
- cd "$srcdir/$pkgname-$pkgver"
-
- # fix linking libnotify, FS#34283
- patch -Np0 -i ${srcdir}/hp-mkuri.patch
- 
- export PYTHON=python2
- 
- find . -type f -exec sed -i 's~^#.*env python~#!/usr/bin/env python2~' {} +
- sed -i '1s|#!/usr/bin/python|#!/usr/bin/python2|' doctor.py setup.py 
makeuri.py logcapture.py base/magic.py
- sed -i '1s|#!/usr/bin/python|#!/usr/bin/python2|' ui/upgradeform.py 
uninstall.py upgrade.py config_usb_printer.py
- sed -i 's|python ./print.py|python2 ./print.py|' scan.py
- sed -i 's|python ./testpage.py|python2 ./testpage.py|' setup.py
- sed -i 's|python ./setup.py|python2 ./setup.py|' ui4/devmgr5.py 
ui4/nodevicesdialog.py 
- sed -i 's|python %HOME%|python2 %HOME%|' base/utils.py
- sed -i 's|python ./plugin.py|python2 ./plugin.py|' base/pkit.py
- 
- # https://bugs.archlinux.org/task/30085 - hack found in Gentoo
- # Use system foomatic-rip for hpijs driver instead of foomatic-rip-hplip
- # The hpcups driver does not use foomatic-rip
-   local i
-   for i in ppd/hpijs/*.ppd.gz ; do
-   rm -f ${i}.temp
-   gunzip -c ${i} | sed 's/foomatic-rip-hplip/foomatic-rip/g' | \
-   gzip > ${i}.temp || return 1
-   mv ${i}.temp ${i}
-   done
-   
- export AUTOMAKE='automake --foreign'
- autoreconf --force --install
-
- ./configure --prefix=/usr \
- --enable-qt4 \
- --disable-foomatic-rip-hplip-install \
- --enable-foomatic-ppd-install \
- --enable-hpcups-install \
- --enable-new-hpcups \
- --enable-cups-ppd-install \
- --enable-cup

[arch-commits] Commit in hplip/trunk (PKGBUILD hplip-CVE-2013-4325.patch)

2013-10-13 Thread Andreas Radke
Date: Sunday, October 13, 2013 @ 22:05:28
  Author: andyrtr
Revision: 196443

upgpkg: hplip 3.13.9-3

add patch for CVE-2013-4325; FS#37168

Added:
  hplip/trunk/hplip-CVE-2013-4325.patch
Modified:
  hplip/trunk/PKGBUILD

---+
 PKGBUILD  |   26 +++---
 hplip-CVE-2013-4325.patch |   22 ++
 2 files changed, 41 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-10-13 19:45:46 UTC (rev 196442)
+++ PKGBUILD2013-10-13 20:05:28 UTC (rev 196443)
@@ -5,7 +5,7 @@
 
 pkgname=hplip
 pkgver=3.13.9
-pkgrel=2
+pkgrel=3
 pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
 arch=('i686' 'x86_64')
 url="http://hplipopensource.com";
@@ -26,17 +26,22 @@
 options=('!libtool')
 install=hplip.install
 
source=(http://downloads.sourceforge.net/${pkgname}/$pkgname-$pkgver.tar.gz{,.asc}
-hp-mkuri.patch)
+hp-mkuri.patch
+hplip-CVE-2013-4325.patch)
 md5sums=('8fcbbd0d3a0b76550f325bd6cf46d9d9'
  'SKIP'
- '0bd7779fdbc4d7a9386df04dce2cb8d4')
+ '0bd7779fdbc4d7a9386df04dce2cb8d4'
+ '947db41ee8556c78dd027a2f107957e6')
 
-build() {
- cd "$srcdir/$pkgname-$pkgver"
+prepare() {
+ cd $pkgname-$pkgver
 
  # fix linking libnotify, FS#34283
  patch -Np0 -i ${srcdir}/hp-mkuri.patch
  
+ # https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2013-4325
+ patch -Np1 -i ${srcdir}/hplip-CVE-2013-4325.patch
+ 
  export PYTHON=python2
  
  find . -type f -exec sed -i 's~^#.*env python~#!/usr/bin/env python2~' {} +
@@ -61,7 +66,10 @@

  export AUTOMAKE='automake --foreign'
  autoreconf --force --install
+}
 
+build() {
+ cd $pkgname-$pkgver
  ./configure --prefix=/usr \
  --enable-qt4 \
  --disable-foomatic-rip-hplip-install \
@@ -79,15 +87,19 @@
 }
 
 package() {
- #cd "$srcdir/$pkgname-$pkgver"
- cd "$srcdir/$pkgname-${pkgver/.a/a}"
+ #cd $pkgname-$pkgver
+ cd $pkgname-${pkgver/.a/a}
  make rulesdir=/usr/lib/udev/rules.d DESTDIR="$pkgdir/" install
+ 
  # remove config provided by sane and autostart of hp-daemon
  rm -rf "$pkgdir"/etc/{sane.d,xdg}
+ 
  # remove HAL .fdi file because HAL is no longer used
  rm -rf "$pkgdir"/usr/share/hal
+ 
  # log dir should not be world writeable
  chmod 775 "$pkgdir"/var/log/hp{,/tmp}
+ 
  # remove rc script
  rm -rf "$pkgdir"/etc/init.d
 }

Added: hplip-CVE-2013-4325.patch
===
--- hplip-CVE-2013-4325.patch   (rev 0)
+++ hplip-CVE-2013-4325.patch   2013-10-13 20:05:28 UTC (rev 196443)
@@ -0,0 +1,22 @@
+diff -up hplip-3.13.7/base/pkit.py.CVE-2013-4325 hplip-3.13.7/base/pkit.py
+--- hplip-3.13.7/base/pkit.py.CVE-2013-43252013-07-23 06:18:29.0 
+0100
 hplip-3.13.7/base/pkit.py  2013-09-11 10:54:13.252419283 +0100
+@@ -176,15 +176,10 @@ class PolicyKitService(dbus.service.Obje
+ "/org/freedesktop/PolicyKit1/Authority",
+ "org.freedesktop.PolicyKit1.Authority")
+ policy_kit = dbus.Interface(obj, 
"org.freedesktop.PolicyKit1.Authority")
+-info = dbus.Interface(connection.get_object("org.freedesktop.DBus",
+-
"/org/freedesktop/DBus/Bus",
+-False),
+-  "org.freedesktop.DBus")
+-pid = info.GetConnectionUnixProcessID(sender)
+ 
+ subject = (
+-'unix-process',
+-{ 'pid' : dbus.UInt32(pid, variant_level = 1) }
++'system-bus-name',
++{ 'name' : dbus.String(sender, variant_level = 1) }
+ )
+ details = { '' : '' }
+ flags = dbus.UInt32(1) # AllowUserInteraction = 0x0001
+



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

2013-10-13 Thread Jan Steffens
Date: Sunday, October 13, 2013 @ 21:45:46
  Author: heftig
Revision: 196442

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

Added:
  rhythmbox/repos/extra-i686/PKGBUILD
(from rev 196441, rhythmbox/trunk/PKGBUILD)
  rhythmbox/repos/extra-i686/rhythmbox.install
(from rev 196441, rhythmbox/trunk/rhythmbox.install)
  rhythmbox/repos/extra-x86_64/PKGBUILD
(from rev 196441, rhythmbox/trunk/PKGBUILD)
  rhythmbox/repos/extra-x86_64/rhythmbox.install
(from rev 196441, rhythmbox/trunk/rhythmbox.install)
Deleted:
  rhythmbox/repos/extra-i686/PKGBUILD
  rhythmbox/repos/extra-i686/rhythmbox.install
  rhythmbox/repos/extra-x86_64/PKGBUILD
  rhythmbox/repos/extra-x86_64/rhythmbox.install

+
 /PKGBUILD  |   84 +++
 /rhythmbox.install |   26 
 extra-i686/PKGBUILD|   42 ---
 extra-i686/rhythmbox.install   |   13 --
 extra-x86_64/PKGBUILD  |   42 ---
 extra-x86_64/rhythmbox.install |   13 --
 6 files changed, 110 insertions(+), 110 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-10-13 19:42:19 UTC (rev 196441)
+++ extra-i686/PKGBUILD 2013-10-13 19:45:46 UTC (rev 196442)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-# Contributor: Giovanni Scafora 
-
-pkgname=rhythmbox
-pkgver=3.0
-pkgrel=2
-pkgdesc="An iTunes-like music playback and management application"
-arch=(i686 x86_64)
-license=(GPL)
-url="http://www.rhythmbox.org";
-depends=(dconf desktop-file-utils gst-plugins-base gst-plugins-good libsoup 
json-glib libnotify libpeas media-player-info totem-plparser tdb webkitgtk3 
python-gobject)
-makedepends=(itstool intltool brasero gobject-introspection vala grilo 
libdmapsharing lirc-utils libgpod libmtp)
-optdepends=('gst-plugins-ugly: Extra media codecs'
-'gst-plugins-bad: Extra media codecs'
-'gst-libav: Extra media codecs'
-'brasero: Audio CD Recorder plugin'
-'libdmapsharing: DAAP Music Sharing plugin'
-'grilo-plugins: Grilo media browser plugin'
-'lirc-utils: LIRC plugin'
-'libgpod: Portable Players - iPod plugin'
-'libmtp: Portable Players - MTP plugin'
-'zeitgeist: Zeitgeist plugin')
-options=('!libtool' '!emptydirs')
-install=rhythmbox.install
-source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver::4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('bf6f35c1a46867d16e45969f97f01630d936bfa92baf940c442f3a19fb6820e4')
-
-build() {
-  cd "$pkgname-$pkgver"
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --libexecdir=/usr/lib/rhythmbox \
-  --localstatedir=/var --disable-static \
-  --enable-daap --enable-python --enable-vala
-  make
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-  rm -r "$pkgdir/usr/lib/rhythmbox/sample-plugins"
-}

Copied: rhythmbox/repos/extra-i686/PKGBUILD (from rev 196441, 
rhythmbox/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-10-13 19:45:46 UTC (rev 196442)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Giovanni Scafora 
+
+pkgname=rhythmbox
+pkgver=3.0.1
+pkgrel=1
+pkgdesc="An iTunes-like music playback and management application"
+arch=(i686 x86_64)
+license=(GPL)
+url="http://www.rhythmbox.org";
+depends=(dconf desktop-file-utils gst-plugins-base gst-plugins-good libsoup 
json-glib libnotify libpeas media-player-info totem-plparser tdb webkitgtk3 
python-gobject gnome-icon-theme)
+makedepends=(itstool intltool brasero gobject-introspection vala grilo 
libdmapsharing lirc-utils libgpod libmtp)
+optdepends=('gst-plugins-ugly: Extra media codecs'
+'gst-plugins-bad: Extra media codecs'
+'gst-libav: Extra media codecs'
+'brasero: Audio CD Recorder plugin'
+'libdmapsharing: DAAP Music Sharing plugin'
+'grilo-plugins: Grilo media browser plugin'
+'lirc-utils: LIRC plugin'
+'libgpod: Portable Players - iPod plugin'
+'libmtp: Portable Players - MTP plugin'
+'zeitgeist: Zeitgeist plugin')
+options=('!libtool' '!emptydirs')
+install=rhythmbox.install
+source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver::3}/$pkgname-$pkgver.tar.xz)
+sha256sums=('75072b093284e9f5696fbb590d719a9e16340a5a91d73e3ccd876ce21329bdcf')
+
+build() {
+  cd "$pkgname-$pkgver"
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --libexecdir=/usr/lib/rhythmbox \
+  --localstatedir=/var --disable-static \
+  --enable-daap --enable-python --enable-vala
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+  rm -r "$pkgdir/usr/lib/rhythmbox/sample-plugins"
+}

Deleted: extra-i686/rhythmbo

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

2013-10-13 Thread Jan Steffens
Date: Sunday, October 13, 2013 @ 21:42:19
  Author: heftig
Revision: 196441

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

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

---+
 /PKGBUILD |   52 
 extra-i686/PKGBUILD   |   26 
 extra-x86_64/PKGBUILD |   26 
 3 files changed, 52 insertions(+), 52 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-10-13 19:40:37 UTC (rev 196440)
+++ extra-i686/PKGBUILD 2013-10-13 19:42:19 UTC (rev 196441)
@@ -1,26 +0,0 @@
-# $Id$
-#Maintainer: Ionut Biru 
-
-pkgname=libdmapsharing
-pkgver=2.9.17
-pkgrel=1
-pkgdesc="A library that implements the DMAP family of protocols"
-arch=('i686' 'x86_64')
-url="http://www.flyn.org/projects/libdmapsharing/index.html";
-license=('LGPL2.1')
-depends=('libsoup' 'avahi' 'gst-plugins-base-libs' 'gdk-pixbuf2')
-options=('!libtool')
-source=(http://www.flyn.org/projects/libdmapsharing/$pkgname-$pkgver.tar.gz)
-md5sums=('089e70ed4fb3b92dcd956b80dbf3ffc9')
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./configure --prefix=/usr --with-mdns=avahi
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: libdmapsharing/repos/extra-i686/PKGBUILD (from rev 196440, 
libdmapsharing/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-10-13 19:42:19 UTC (rev 196441)
@@ -0,0 +1,26 @@
+# $Id$
+#Maintainer: Ionut Biru 
+
+pkgname=libdmapsharing
+pkgver=2.9.23
+pkgrel=1
+pkgdesc="A library that implements the DMAP family of protocols"
+arch=('i686' 'x86_64')
+url="http://www.flyn.org/projects/libdmapsharing/index.html";
+license=('LGPL2.1')
+depends=('libsoup' 'avahi' 'gst-plugins-base-libs' 'gdk-pixbuf2')
+options=('!libtool')
+source=(http://www.flyn.org/projects/libdmapsharing/$pkgname-$pkgver.tar.gz)
+md5sums=('7e6bb71f614392e340cac782586072a7')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr --with-mdns=avahi
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-10-13 19:40:37 UTC (rev 196440)
+++ extra-x86_64/PKGBUILD   2013-10-13 19:42:19 UTC (rev 196441)
@@ -1,26 +0,0 @@
-# $Id$
-#Maintainer: Ionut Biru 
-
-pkgname=libdmapsharing
-pkgver=2.9.17
-pkgrel=1
-pkgdesc="A library that implements the DMAP family of protocols"
-arch=('i686' 'x86_64')
-url="http://www.flyn.org/projects/libdmapsharing/index.html";
-license=('LGPL2.1')
-depends=('libsoup' 'avahi' 'gst-plugins-base-libs' 'gdk-pixbuf2')
-options=('!libtool')
-source=(http://www.flyn.org/projects/libdmapsharing/$pkgname-$pkgver.tar.gz)
-md5sums=('089e70ed4fb3b92dcd956b80dbf3ffc9')
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./configure --prefix=/usr --with-mdns=avahi
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: libdmapsharing/repos/extra-x86_64/PKGBUILD (from rev 196440, 
libdmapsharing/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2013-10-13 19:42:19 UTC (rev 196441)
@@ -0,0 +1,26 @@
+# $Id$
+#Maintainer: Ionut Biru 
+
+pkgname=libdmapsharing
+pkgver=2.9.23
+pkgrel=1
+pkgdesc="A library that implements the DMAP family of protocols"
+arch=('i686' 'x86_64')
+url="http://www.flyn.org/projects/libdmapsharing/index.html";
+license=('LGPL2.1')
+depends=('libsoup' 'avahi' 'gst-plugins-base-libs' 'gdk-pixbuf2')
+options=('!libtool')
+source=(http://www.flyn.org/projects/libdmapsharing/$pkgname-$pkgver.tar.gz)
+md5sums=('7e6bb71f614392e340cac782586072a7')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr --with-mdns=avahi
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}



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

2013-10-13 Thread Jan Steffens
Date: Sunday, October 13, 2013 @ 21:40:37
  Author: heftig
Revision: 196440

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

Added:
  evolution-ews/repos/extra-i686/PKGBUILD
(from rev 196439, evolution-ews/trunk/PKGBUILD)
  evolution-ews/repos/extra-x86_64/PKGBUILD
(from rev 196439, evolution-ews/trunk/PKGBUILD)
Deleted:
  evolution-ews/repos/extra-i686/PKGBUILD
  evolution-ews/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |   54 
 extra-i686/PKGBUILD   |   27 
 extra-x86_64/PKGBUILD |   27 
 3 files changed, 54 insertions(+), 54 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-10-13 19:39:01 UTC (rev 196439)
+++ extra-i686/PKGBUILD 2013-10-13 19:40:37 UTC (rev 196440)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru 
-
-pkgname=evolution-ews
-pkgver=3.10.0
-pkgrel=1
-pkgdesc="MS Exchange integration through Exchange Web Services"
-arch=('i686' 'x86_64')
-license=('LGPL2.1')
-url="http://www.gnome.org";
-depends=('evolution-data-server' 'gtkhtml4' 'libmspack')
-makedepends=('intltool' 'evolution')
-options=('!libtool' '!emptydirs')
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('689ad1908d750a6004ee7ce997543a1b5481849aafeb923edebe3f766efa4b46')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
-  --libexecdir=/usr/lib/evolution --disable-static --with-krb5
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: evolution-ews/repos/extra-i686/PKGBUILD (from rev 196439, 
evolution-ews/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-10-13 19:40:37 UTC (rev 196440)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Ionut Biru 
+
+pkgname=evolution-ews
+pkgver=3.10.1
+pkgrel=1
+pkgdesc="MS Exchange integration through Exchange Web Services"
+arch=('i686' 'x86_64')
+license=('LGPL2.1')
+url="http://www.gnome.org";
+depends=('evolution-data-server' 'gtkhtml4' 'libmspack')
+makedepends=('intltool' 'evolution')
+options=('!libtool' '!emptydirs')
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('018bf22f5fd88bb80f88c8f1feb696c7a7c216ab1367b7b50d02b4e313d858c9')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+  --libexecdir=/usr/lib/evolution --disable-static --with-krb5
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-10-13 19:39:01 UTC (rev 196439)
+++ extra-x86_64/PKGBUILD   2013-10-13 19:40:37 UTC (rev 196440)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru 
-
-pkgname=evolution-ews
-pkgver=3.10.0
-pkgrel=1
-pkgdesc="MS Exchange integration through Exchange Web Services"
-arch=('i686' 'x86_64')
-license=('LGPL2.1')
-url="http://www.gnome.org";
-depends=('evolution-data-server' 'gtkhtml4' 'libmspack')
-makedepends=('intltool' 'evolution')
-options=('!libtool' '!emptydirs')
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('689ad1908d750a6004ee7ce997543a1b5481849aafeb923edebe3f766efa4b46')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
-  --libexecdir=/usr/lib/evolution --disable-static --with-krb5
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: evolution-ews/repos/extra-x86_64/PKGBUILD (from rev 196439, 
evolution-ews/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2013-10-13 19:40:37 UTC (rev 196440)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Ionut Biru 
+
+pkgname=evolution-ews
+pkgver=3.10.1
+pkgrel=1
+pkgdesc="MS Exchange integration through Exchange Web Services"
+arch=('i686' 'x86_64')
+license=('LGPL2.1')
+url="http://www.gnome.org";
+depends=('evolution-data-server' 'gtkhtml4' 'libmspack')
+makedepends=('intltool' 'evolution')
+options=('!libtool' '!emptydirs')
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('018bf22f5fd88bb80f88c8f1feb696c7a7c216ab1367b7b50d02b4e313d858c9')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+  --libexecdir=/usr/lib/evolution --disable-static --with-krb5
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}



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

2013-10-13 Thread Jan Steffens
Date: Sunday, October 13, 2013 @ 21:38:59
  Author: heftig
Revision: 196438

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

Added:
  evolution/repos/extra-i686/PKGBUILD
(from rev 196437, evolution/trunk/PKGBUILD)
  evolution/repos/extra-i686/evolution.install
(from rev 196437, evolution/trunk/evolution.install)
  evolution/repos/extra-x86_64/PKGBUILD
(from rev 196437, evolution/trunk/PKGBUILD)
  evolution/repos/extra-x86_64/evolution.install
(from rev 196437, evolution/trunk/evolution.install)
Deleted:
  evolution/repos/extra-i686/PKGBUILD
  evolution/repos/extra-i686/evolution.install
  evolution/repos/extra-x86_64/PKGBUILD
  evolution/repos/extra-x86_64/evolution.install

+
 /PKGBUILD  |   88 +++
 /evolution.install |   38 
 extra-i686/PKGBUILD|   44 ---
 extra-i686/evolution.install   |   19 
 extra-x86_64/PKGBUILD  |   44 ---
 extra-x86_64/evolution.install |   19 
 6 files changed, 126 insertions(+), 126 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-10-13 19:32:48 UTC (rev 196437)
+++ extra-i686/PKGBUILD 2013-10-13 19:38:59 UTC (rev 196438)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-
-pkgname=evolution
-pkgver=3.10.0
-pkgrel=1
-pkgdesc="Manage your email, contacts and schedule"
-arch=(i686 x86_64)
-license=(GPL)
-depends=(gnome-desktop evolution-data-server gtkhtml4 libcanberra libpst 
libytnef psmisc
- desktop-file-utils hicolor-icon-theme dconf)
-makedepends=(intltool itstool docbook-xsl networkmanager bogofilter 
spamassassin highlight)
-optdepends=('bogofilter: possible junk filter plugin'
-'spamassassin: possible junk filter plugin'
-'highlight: text highlight plugin')
-groups=('gnome-extra')
-options=('!libtool' '!emptydirs')
-install=evolution.install
-url=http://www.gnome.org/projects/evolution/
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('e64fabc07e1126b80ef8354411d8232aee6e45cfece040a99d494d77df040064')
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var \
-  --libexecdir=/usr/lib \
-  --enable-nss=yes \
-  --with-openldap=yes \
-  --enable-smime=yes \
-  --with-krb5=/usr \
-  --disable-schemas-compile
-  
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0 /g' -e 's/if test 
"$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then/  
func_append compile_command " -Wl,-O1,--as-needed"\n  func_append 
finalize_command " -Wl,-O1,--as-needed"\n\0/' libtool
-
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: evolution/repos/extra-i686/PKGBUILD (from rev 196437, 
evolution/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-10-13 19:38:59 UTC (rev 196438)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+
+pkgname=evolution
+pkgver=3.10.1
+pkgrel=1
+pkgdesc="Manage your email, contacts and schedule"
+arch=(i686 x86_64)
+license=(GPL)
+depends=(gnome-desktop evolution-data-server gtkhtml4 libcanberra libpst 
libytnef psmisc
+ desktop-file-utils hicolor-icon-theme dconf)
+makedepends=(intltool itstool docbook-xsl networkmanager bogofilter 
spamassassin highlight)
+optdepends=('bogofilter: possible junk filter plugin'
+'spamassassin: possible junk filter plugin'
+'highlight: text highlight plugin')
+groups=('gnome-extra')
+options=('!libtool' '!emptydirs')
+install=evolution.install
+url=http://www.gnome.org/projects/evolution/
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('da1aacab365f27feed74cb89d03c2f4847fef7c5370d0fd84b04ab24ada83546')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var \
+  --libexecdir=/usr/lib \
+  --enable-nss=yes \
+  --with-openldap=yes \
+  --enable-smime=yes \
+  --with-krb5=/usr \
+  --disable-schemas-compile
+  
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0 /g' -e 's/if test 
"$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then/  
func_append compile_command " -Wl,-O1,--as-needed"\n  func_append 
finalize_command " -Wl,-O1,--as-needed"\n\0/' libtool
+
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-i686/evolution.install
===
--- extra-i686/evolution.install2013-10-1

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

2013-10-13 Thread Jan Steffens
Date: Sunday, October 13, 2013 @ 21:39:01
  Author: heftig
Revision: 196439

3.0.1

Modified:
  rhythmbox/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-10-13 19:38:59 UTC (rev 196438)
+++ PKGBUILD2013-10-13 19:39:01 UTC (rev 196439)
@@ -3,8 +3,8 @@
 # Contributor: Giovanni Scafora 
 
 pkgname=rhythmbox
-pkgver=3.0
-pkgrel=2
+pkgver=3.0.1
+pkgrel=1
 pkgdesc="An iTunes-like music playback and management application"
 arch=(i686 x86_64)
 license=(GPL)
@@ -23,8 +23,8 @@
 'zeitgeist: Zeitgeist plugin')
 options=('!libtool' '!emptydirs')
 install=rhythmbox.install
-source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver::4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('bf6f35c1a46867d16e45969f97f01630d936bfa92baf940c442f3a19fb6820e4')
+source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver::3}/$pkgname-$pkgver.tar.xz)
+sha256sums=('75072b093284e9f5696fbb590d719a9e16340a5a91d73e3ccd876ce21329bdcf')
 
 build() {
   cd "$pkgname-$pkgver"



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

2013-10-13 Thread Jan Steffens
Date: Sunday, October 13, 2013 @ 21:32:42
  Author: heftig
Revision: 196436

2.9.23

Modified:
  libdmapsharing/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-10-13 19:30:25 UTC (rev 196435)
+++ PKGBUILD2013-10-13 19:32:42 UTC (rev 196436)
@@ -2,7 +2,7 @@
 #Maintainer: Ionut Biru 
 
 pkgname=libdmapsharing
-pkgver=2.9.17
+pkgver=2.9.23
 pkgrel=1
 pkgdesc="A library that implements the DMAP family of protocols"
 arch=('i686' 'x86_64')
@@ -11,7 +11,7 @@
 depends=('libsoup' 'avahi' 'gst-plugins-base-libs' 'gdk-pixbuf2')
 options=('!libtool')
 source=(http://www.flyn.org/projects/libdmapsharing/$pkgname-$pkgver.tar.gz)
-md5sums=('089e70ed4fb3b92dcd956b80dbf3ffc9')
+md5sums=('7e6bb71f614392e340cac782586072a7')
 
 build() {
   cd $pkgname-$pkgver



[arch-commits] Commit in evolution-data-server/repos (16 files)

2013-10-13 Thread Jan Steffens
Date: Sunday, October 13, 2013 @ 21:32:48
  Author: heftig
Revision: 196437

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

Added:
  evolution-data-server/repos/extra-i686/PKGBUILD
(from rev 196435, evolution-data-server/trunk/PKGBUILD)
  evolution-data-server/repos/extra-i686/evolution-data-server.install
(from rev 196435, evolution-data-server/trunk/evolution-data-server.install)
  evolution-data-server/repos/extra-x86_64/PKGBUILD
(from rev 196435, evolution-data-server/trunk/PKGBUILD)
  evolution-data-server/repos/extra-x86_64/evolution-data-server.install
(from rev 196435, evolution-data-server/trunk/evolution-data-server.install)
Deleted:
  evolution-data-server/repos/extra-i686/PKGBUILD
  evolution-data-server/repos/extra-i686/evolution-data-server.install
  evolution-data-server/repos/extra-i686/fix-google-2fa-1.patch
  evolution-data-server/repos/extra-i686/fix-google-2fa-2.patch
  evolution-data-server/repos/extra-i686/fix-google-2fa-3.patch
  evolution-data-server/repos/extra-i686/fix-google-2fa-4.patch
  evolution-data-server/repos/extra-x86_64/PKGBUILD
  evolution-data-server/repos/extra-x86_64/evolution-data-server.install
  evolution-data-server/repos/extra-x86_64/fix-google-2fa-1.patch
  evolution-data-server/repos/extra-x86_64/fix-google-2fa-2.patch
  evolution-data-server/repos/extra-x86_64/fix-google-2fa-3.patch
  evolution-data-server/repos/extra-x86_64/fix-google-2fa-4.patch

+
 /PKGBUILD  |   64 
 /evolution-data-server.install |   22 +
 extra-i686/PKGBUILD|   32 --
 extra-i686/evolution-data-server.install   |   11 
 extra-i686/fix-google-2fa-1.patch  |  402 ---
 extra-i686/fix-google-2fa-2.patch  |   86 -
 extra-i686/fix-google-2fa-3.patch  |   48 ---
 extra-i686/fix-google-2fa-4.patch  |  159 --
 extra-x86_64/PKGBUILD  |   32 --
 extra-x86_64/evolution-data-server.install |   11 
 extra-x86_64/fix-google-2fa-1.patch|  402 ---
 extra-x86_64/fix-google-2fa-2.patch|   86 -
 extra-x86_64/fix-google-2fa-3.patch|   48 ---
 extra-x86_64/fix-google-2fa-4.patch|  159 --
 14 files changed, 86 insertions(+), 1476 deletions(-)

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


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

2013-10-13 Thread Jan Steffens
Date: Sunday, October 13, 2013 @ 21:30:25
  Author: heftig
Revision: 196435

3.10.1

Modified:
  evolution-ews/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-10-13 19:30:20 UTC (rev 196434)
+++ PKGBUILD2013-10-13 19:30:25 UTC (rev 196435)
@@ -2,7 +2,7 @@
 # Maintainer: Ionut Biru 
 
 pkgname=evolution-ews
-pkgver=3.10.0
+pkgver=3.10.1
 pkgrel=1
 pkgdesc="MS Exchange integration through Exchange Web Services"
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 makedepends=('intltool' 'evolution')
 options=('!libtool' '!emptydirs')
 
source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('689ad1908d750a6004ee7ce997543a1b5481849aafeb923edebe3f766efa4b46')
+sha256sums=('018bf22f5fd88bb80f88c8f1feb696c7a7c216ab1367b7b50d02b4e313d858c9')
 
 build() {
   cd $pkgname-$pkgver



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

2013-10-13 Thread Jan Steffens
Date: Sunday, October 13, 2013 @ 21:30:20
  Author: heftig
Revision: 196434

3.10.1

Modified:
  evolution/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-10-13 19:19:09 UTC (rev 196433)
+++ PKGBUILD2013-10-13 19:30:20 UTC (rev 196434)
@@ -3,7 +3,7 @@
 # Contributor: Jan de Groot 
 
 pkgname=evolution
-pkgver=3.10.0
+pkgver=3.10.1
 pkgrel=1
 pkgdesc="Manage your email, contacts and schedule"
 arch=(i686 x86_64)
@@ -19,7 +19,7 @@
 install=evolution.install
 url=http://www.gnome.org/projects/evolution/
 
source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('e64fabc07e1126b80ef8354411d8232aee6e45cfece040a99d494d77df040064')
+sha256sums=('da1aacab365f27feed74cb89d03c2f4847fef7c5370d0fd84b04ab24ada83546')
 
 build() {
   cd $pkgname-$pkgver



[arch-commits] Commit in evolution-data-server/trunk (5 files)

2013-10-13 Thread Jan Steffens
Date: Sunday, October 13, 2013 @ 21:19:09
  Author: heftig
Revision: 196433

3.10.1

Modified:
  evolution-data-server/trunk/PKGBUILD
Deleted:
  evolution-data-server/trunk/fix-google-2fa-1.patch
  evolution-data-server/trunk/fix-google-2fa-2.patch
  evolution-data-server/trunk/fix-google-2fa-3.patch
  evolution-data-server/trunk/fix-google-2fa-4.patch

+
 PKGBUILD   |4 
 fix-google-2fa-1.patch |  402 ---
 fix-google-2fa-2.patch |   86 --
 fix-google-2fa-3.patch |   48 -
 fix-google-2fa-4.patch |  159 --
 5 files changed, 2 insertions(+), 697 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-10-13 18:21:26 UTC (rev 196432)
+++ PKGBUILD2013-10-13 19:19:09 UTC (rev 196433)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot 
 
 pkgname=evolution-data-server
-pkgver=3.10.0
+pkgver=3.10.1
 pkgrel=1
 pkgdesc="Centralized access to appointments and contacts"
 arch=(i686 x86_64)
@@ -13,7 +13,7 @@
 url="http://www.gnome.org";
 license=(GPL)
 
source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('1c47a0e138e9a5ed630d6e3ab30761e74e5f26ed7bbc31debfe76c2bac058b27')
+sha256sums=('a6b5acbd21767b685d58ebfd4c152baa693387f5654fb738b3645ee39e82f9f5')
 
 build() {
   cd "$pkgname-$pkgver"

Deleted: fix-google-2fa-1.patch
===
--- fix-google-2fa-1.patch  2013-10-13 18:21:26 UTC (rev 196432)
+++ fix-google-2fa-1.patch  2013-10-13 19:19:09 UTC (rev 196433)
@@ -1,402 +0,0 @@
-From fa0d18fcf2d8084d2a41f24f50f689eed8e3e241 Mon Sep 17 00:00:00 2001
-From: Matthew Barnes 
-Date: Tue, 09 Jul 2013 18:23:04 +
-Subject: Add ESoupAuthBearer.
-
-SoupAuth subclass for use with OAuth 2.0 HTTP authentication.
-
-See http://tools.ietf.org/html/rfc6750
-
-EBackends should use e_source_get_oauth2_access_token() to obtain
-the access token and token expiry for an ESource, then pass them to
-e_soup_auth_bearer_set_access_token().

-diff --git a/docs/reference/libebackend/libebackend-docs.xml 
b/docs/reference/libebackend/libebackend-docs.xml
-index fa9ab92..f54d3d6 100644
 a/docs/reference/libebackend/libebackend-docs.xml
-+++ b/docs/reference/libebackend/libebackend-docs.xml
-@@ -34,6 +34,7 @@
- Miscellaneous Utilities
- 
- 
-+
- 
- 
- 
-diff --git a/docs/reference/libebackend/libebackend-sections.txt 
b/docs/reference/libebackend/libebackend-sections.txt
-index 6c604bf..189f002 100644
 a/docs/reference/libebackend/libebackend-sections.txt
-+++ b/docs/reference/libebackend/libebackend-sections.txt
-@@ -397,6 +397,24 @@ EServerSideSourcePrivate
- 
- 
- 
-+e-soup-auth-bearer
-+ESoupAuthBearer
-+ESoupAuthBearer
-+e_soup_auth_bearer_set_access_token
-+
-+E_SOUP_AUTH_BEARER
-+E_IS_SOUP_AUTH_BEARER
-+E_TYPE_SOUP_AUTH_BEARER
-+E_SOUP_AUTH_BEARER_CLASS
-+E_IS_SOUP_AUTH_BEARER_CLASS
-+E_SOUP_AUTH_BEARER_GET_CLASS
-+ESoupAuthBearerClass
-+e_soup_auth_bearer_get_type
-+
-+ESoupAuthBearerPrivate
-+
-+
-+
- e-source-registry-server
- ESourceRegistryServer
- E_SOURCE_REGISTRY_SERVER_OBJECT_PATH
-diff --git a/docs/reference/libebackend/libebackend.types 
b/docs/reference/libebackend/libebackend.types
-index aeb38dc..1d7fe96 100644
 a/docs/reference/libebackend/libebackend.types
-+++ b/docs/reference/libebackend/libebackend.types
-@@ -15,6 +15,7 @@ e_module_get_type
- e_oauth2_support_get_type
- e_offline_listener_get_type
- e_server_side_source_get_type
-+e_soup_auth_bearer_get_type
- e_source_registry_server_get_type
- e_user_prompter_get_type
- e_user_prompter_server_get_type
-diff --git a/libebackend/Makefile.am b/libebackend/Makefile.am
-index c77b470..783732e 100644
 a/libebackend/Makefile.am
-+++ b/libebackend/Makefile.am
-@@ -35,6 +35,7 @@ libebackend_1_2_la_CPPFLAGS = \
-   $(E_BACKEND_CFLAGS) \
-   $(GCR_BASE_CFLAGS)  \
-   $(GIO_UNIX_CFLAGS)  \
-+  $(SOUP_CFLAGS)  \
-   $(CODE_COVERAGE_CFLAGS) \
-   $(NULL)
- 
-@@ -56,6 +57,7 @@ libebackend_1_2_la_SOURCES = \
-   e-db3-utils.c   \
-   e-module.c  \
-   e-server-side-source.c  \
-+  e-soup-auth-bearer.c\
-   e-source-registry-server.c  \
-   e-sqlite3-vfs.c \
-   e-user-prompter.c   \
-@@ -71,6 +73,7 @@ libebackend_1_2_la_LIBADD =  \
-   $(SQLITE3_LIBS) \
-   $(GCR_BASE_LIBS)\
-   $(GIO_UNIX_LIBS)\
-+  $(SOUP_LIBS)\
-   $(DB_LIBS)
- 
- libebackend_1_2_l

[arch-commits] Commit in linux-lts/trunk (config config.x86_64)

2013-10-13 Thread Tobias Powalowski
Date: Sunday, October 13, 2013 @ 20:21:26
  Author: tpowa
Revision: 196432

set SCSI_SCAN_ASYNC=y

Modified:
  linux-lts/trunk/config
  linux-lts/trunk/config.x86_64

---+
 config|2 +-
 config.x86_64 |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

Modified: config
===
--- config  2013-10-13 18:20:39 UTC (rev 196431)
+++ config  2013-10-13 18:21:26 UTC (rev 196432)
@@ -1721,7 +1721,7 @@
 CONFIG_SCSI_MULTI_LUN=y
 # CONFIG_SCSI_CONSTANTS is not set
 # CONFIG_SCSI_LOGGING is not set
-# CONFIG_SCSI_SCAN_ASYNC is not set
+CONFIG_SCSI_SCAN_ASYNC=y 
 
 #
 # SCSI Transports

Modified: config.x86_64
===
--- config.x86_64   2013-10-13 18:20:39 UTC (rev 196431)
+++ config.x86_64   2013-10-13 18:21:26 UTC (rev 196432)
@@ -1672,7 +1672,7 @@
 CONFIG_SCSI_MULTI_LUN=y
 # CONFIG_SCSI_CONSTANTS is not set
 # CONFIG_SCSI_LOGGING is not set
-# CONFIG_SCSI_SCAN_ASYNC is not set
+CONFIG_SCSI_SCAN_ASYNC=y 
 
 #
 # SCSI Transports



[arch-commits] Commit in linux/trunk (config config.x86_64)

2013-10-13 Thread Tobias Powalowski
Date: Sunday, October 13, 2013 @ 20:20:39
  Author: tpowa
Revision: 196431

set SCSI_SCAN_ASYNC=y

Modified:
  linux/trunk/config
  linux/trunk/config.x86_64

---+
 config|2 +-
 config.x86_64 |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

Modified: config
===
--- config  2013-10-13 18:19:49 UTC (rev 196430)
+++ config  2013-10-13 18:20:39 UTC (rev 196431)
@@ -1738,7 +1738,7 @@
 CONFIG_SCSI_MULTI_LUN=y
 # CONFIG_SCSI_CONSTANTS is not set
 # CONFIG_SCSI_LOGGING is not set
-# CONFIG_SCSI_SCAN_ASYNC is not set
+CONFIG_SCSI_SCAN_ASYNC=y 
 
 #
 # SCSI Transports

Modified: config.x86_64
===
--- config.x86_64   2013-10-13 18:19:49 UTC (rev 196430)
+++ config.x86_64   2013-10-13 18:20:39 UTC (rev 196431)
@@ -1692,7 +1692,7 @@
 CONFIG_SCSI_MULTI_LUN=y
 # CONFIG_SCSI_CONSTANTS is not set
 # CONFIG_SCSI_LOGGING is not set
-# CONFIG_SCSI_SCAN_ASYNC is not set
+CONFIG_SCSI_SCAN_ASYNC=y 
 
 #
 # SCSI Transports



[arch-commits] Commit in linux/trunk (config.3.12 config.x86_64.3.12)

2013-10-13 Thread Tobias Powalowski
Date: Sunday, October 13, 2013 @ 20:19:49
  Author: tpowa
Revision: 196430

revert builtin scsi modules

Modified:
  linux/trunk/config.3.12
  linux/trunk/config.x86_64.3.12

+
 config.3.12|   10 +-
 config.x86_64.3.12 |   10 +-
 2 files changed, 10 insertions(+), 10 deletions(-)

Modified: config.3.12
===
--- config.3.12 2013-10-13 15:46:02 UTC (rev 196429)
+++ config.3.12 2013-10-13 18:19:49 UTC (rev 196430)
@@ -1722,9 +1722,9 @@
 #
 # SCSI device support
 #
-CONFIG_SCSI_MOD=y
+CONFIG_SCSI_MOD=m
 CONFIG_RAID_ATTRS=m
-CONFIG_SCSI=y
+CONFIG_SCSI=m
 CONFIG_SCSI_DMA=y
 CONFIG_SCSI_TGT=m
 CONFIG_SCSI_NETLINK=y
@@ -1733,7 +1733,7 @@
 #
 # SCSI support type (disk, tape, CD-ROM)
 #
-CONFIG_BLK_DEV_SD=y
+CONFIG_BLK_DEV_SD=m
 CONFIG_CHR_DEV_ST=m
 CONFIG_CHR_DEV_OSST=m
 CONFIG_BLK_DEV_SR=m
@@ -1744,7 +1744,7 @@
 CONFIG_SCSI_MULTI_LUN=y
 # CONFIG_SCSI_CONSTANTS is not set
 # CONFIG_SCSI_LOGGING is not set
-CONFIG_SCSI_SCAN_ASYNC=y
+CONFIG_SCSI_SCAN_ASYNC=y 
 
 #
 # SCSI Transports
@@ -1892,7 +1892,7 @@
 CONFIG_SCSI_OSD_ULD=m
 CONFIG_SCSI_OSD_DPRINT_SENSE=0
 # CONFIG_SCSI_OSD_DEBUG is not set
-CONFIG_ATA=y
+CONFIG_ATA=m
 # CONFIG_ATA_NONSTANDARD is not set
 CONFIG_ATA_VERBOSE_ERROR=y
 CONFIG_ATA_ACPI=y

Modified: config.x86_64.3.12
===
--- config.x86_64.3.12  2013-10-13 15:46:02 UTC (rev 196429)
+++ config.x86_64.3.12  2013-10-13 18:19:49 UTC (rev 196430)
@@ -1677,9 +1677,9 @@
 #
 # SCSI device support
 #
-CONFIG_SCSI_MOD=y
+CONFIG_SCSI_MOD=m
 CONFIG_RAID_ATTRS=m
-CONFIG_SCSI=y
+CONFIG_SCSI=m
 CONFIG_SCSI_DMA=y
 CONFIG_SCSI_TGT=m
 CONFIG_SCSI_NETLINK=y
@@ -1688,7 +1688,7 @@
 #
 # SCSI support type (disk, tape, CD-ROM)
 #
-CONFIG_BLK_DEV_SD=y
+CONFIG_BLK_DEV_SD=m
 CONFIG_CHR_DEV_ST=m
 CONFIG_CHR_DEV_OSST=m
 CONFIG_BLK_DEV_SR=m
@@ -1699,7 +1699,7 @@
 CONFIG_SCSI_MULTI_LUN=y
 # CONFIG_SCSI_CONSTANTS is not set
 # CONFIG_SCSI_LOGGING is not set
-CONFIG_SCSI_SCAN_ASYNC=y
+CONFIG_SCSI_SCAN_ASYNC=y 
 
 #
 # SCSI Transports
@@ -1827,7 +1827,7 @@
 CONFIG_SCSI_OSD_ULD=m
 CONFIG_SCSI_OSD_DPRINT_SENSE=0
 # CONFIG_SCSI_OSD_DEBUG is not set
-CONFIG_ATA=y
+CONFIG_ATA=m
 # CONFIG_ATA_NONSTANDARD is not set
 CONFIG_ATA_VERBOSE_ERROR=y
 CONFIG_ATA_ACPI=y



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

2013-10-13 Thread Eric Bélanger
Date: Sunday, October 13, 2013 @ 17:46:02
  Author: eric
Revision: 196429

Fix svn Id tag

Modified:
  lua51/trunk/PKGBUILD  (contents, properties)

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

Modified: PKGBUILD
===
--- PKGBUILD2013-10-13 13:54:12 UTC (rev 196428)
+++ PKGBUILD2013-10-13 15:46:02 UTC (rev 196429)
@@ -1,4 +1,4 @@
-# $Id $
+# $Id$
 # Maintainer: Sébastien Luttringer 
 # Contributor: Juergen Hoetzel 
 # Contributor: Damir Perisa 


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


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

2013-10-13 Thread Andreas Radke
Date: Sunday, October 13, 2013 @ 15:53:48
  Author: andyrtr
Revision: 196427

upgpkg: brltty 4.5-5

rebuild for icu 52.1

Modified:
  brltty/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-10-13 13:32:18 UTC (rev 196426)
+++ PKGBUILD2013-10-13 13:53:48 UTC (rev 196427)
@@ -5,7 +5,7 @@
 
 pkgname=brltty
 pkgver=4.5
-pkgrel=4
+pkgrel=5
 pkgdesc="Braille display driver for Linux/Unix"
 arch=(i686 x86_64)
 url="http://mielke.cc/brltty";



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

2013-10-13 Thread Andreas Radke
Date: Sunday, October 13, 2013 @ 15:54:12
  Author: andyrtr
Revision: 196428

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

Added:
  brltty/repos/staging-i686/
  brltty/repos/staging-i686/PKGBUILD
(from rev 196427, brltty/trunk/PKGBUILD)
  brltty/repos/staging-i686/brltty.install
(from rev 196427, brltty/trunk/brltty.install)
  brltty/repos/staging-i686/brltty.service
(from rev 196427, brltty/trunk/brltty.service)
  brltty/repos/staging-x86_64/
  brltty/repos/staging-x86_64/PKGBUILD
(from rev 196427, brltty/trunk/PKGBUILD)
  brltty/repos/staging-x86_64/brltty.install
(from rev 196427, brltty/trunk/brltty.install)
  brltty/repos/staging-x86_64/brltty.service
(from rev 196427, brltty/trunk/brltty.service)

---+
 staging-i686/PKGBUILD |   44 
 staging-i686/brltty.install   |   20 ++
 staging-i686/brltty.service   |   12 ++
 staging-x86_64/PKGBUILD   |   44 
 staging-x86_64/brltty.install |   20 ++
 staging-x86_64/brltty.service |   12 ++
 6 files changed, 152 insertions(+)

Copied: brltty/repos/staging-i686/PKGBUILD (from rev 196427, 
brltty/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-10-13 13:54:12 UTC (rev 196428)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Tom Gundersen 
+# Contributor: Jan de Groot 
+# Contributor: Giovanni Scafora 
+
+pkgname=brltty
+pkgver=4.5
+pkgrel=5
+pkgdesc="Braille display driver for Linux/Unix"
+arch=(i686 x86_64)
+url="http://mielke.cc/brltty";
+license=(GPL LGPL)
+depends=(libxaw gpm icu tcl cython)
+makedepends=(bluez-libs at-spi2-core)
+optdepends=('bluez-libs: bluetooth support'
+   'at-spi2-core: X11/GNOME Apps accessibility'
+   'atk: ATK bridge for X11/GNOME accessibility')
+backup=(etc/brltty.conf)
+options=('!emptydirs')
+install=brltty.install
+source=(http://mielke.cc/$pkgname/releases/$pkgname-$pkgver.tar.gz
+brltty.service)
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--mandir=/usr/share/man \
+--with-tables-directory=/usr/share/brltty \
+--with-screen-driver=lx \
+--enable-gpm \
+--disable-java-bindings \
+--disable-static
+
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make INSTALL_ROOT="$pkgdir" install
+  install -Dm644 Documents/brltty.conf "$pkgdir/etc/brltty.conf"
+  install -Dm644 ../brltty.service 
"$pkgdir/usr/lib/systemd/system/brltty.service"
+}
+md5sums=('7b52fa7746fed41ed344a1f75ce55951'
+ '0cad54bb5470122535f5e3a11d5ca123')

Copied: brltty/repos/staging-i686/brltty.install (from rev 196427, 
brltty/trunk/brltty.install)
===
--- staging-i686/brltty.install (rev 0)
+++ staging-i686/brltty.install 2013-10-13 13:54:12 UTC (rev 196428)
@@ -0,0 +1,20 @@
+post_install () {
+ getent group brlapi  &>/dev/null || groupadd -r brlapi
+ if [ ! -e /etc/brlapi.key ]; then
+ mcookie >/etc/brlapi.key
+ chmod 0640 /etc/brlapi.key
+ chgrp brlapi /etc/brlapi.key
+ echo "Please add your user to the brlapi group."
+ fi
+}
+
+post_upgrade () {
+post_install
+}
+
+post_remove () {
+getent group brlapi >/dev/null 2>&1 && groupdel brlapi
+if [ -e /etc/brlapi.key ]; then
+rm -f /etc/brlapi.key
+fi
+}

Copied: brltty/repos/staging-i686/brltty.service (from rev 196427, 
brltty/trunk/brltty.service)
===
--- staging-i686/brltty.service (rev 0)
+++ staging-i686/brltty.service 2013-10-13 13:54:12 UTC (rev 196428)
@@ -0,0 +1,12 @@
+[Unit]
+Description=Braille Console Driver
+DefaultDependencies=no
+Before=sysinit.target
+
+[Service]
+ExecStart=/usr/bin/brltty --pid-file=/run/brltty.pid
+Type=forking
+PIDFile=/run/brltty.pid
+
+[Install]
+WantedBy=sysinit.target

Copied: brltty/repos/staging-x86_64/PKGBUILD (from rev 196427, 
brltty/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2013-10-13 13:54:12 UTC (rev 196428)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Tom Gundersen 
+# Contributor: Jan de Groot 
+# Contributor: Giovanni Scafora 
+
+pkgname=brltty
+pkgver=4.5
+pkgrel=5
+pkgdesc="Braille display driver for Linux/Unix"
+arch=(i686 x86_64)
+url="http://mielke.cc/brltty";
+license=(GPL LGPL)
+depends=(libxaw gpm icu tcl cython)
+makedepends=(bluez-libs at-spi2-core)
+optdepends=('bluez-libs: bluetooth support'
+   'at-spi2-core: X11/GNOME Apps accessibility'
+   'atk: ATK bridge for X11/GNOME accessibility')
+backup=(etc/brltty.conf)
+options=

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

2013-10-13 Thread Andreas Radke
Date: Sunday, October 13, 2013 @ 15:32:18
  Author: andyrtr
Revision: 196426

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

Added:
  texlive-bin/repos/staging-i686/
  texlive-bin/repos/staging-i686/PKGBUILD
(from rev 196425, texlive-bin/trunk/PKGBUILD)
  texlive-bin/repos/staging-i686/fix-fontforge-encoding.patch
(from rev 196425, texlive-bin/trunk/fix-fontforge-encoding.patch)
  texlive-bin/repos/staging-i686/texlive.install
(from rev 196425, texlive-bin/trunk/texlive.install)
  texlive-bin/repos/staging-x86_64/
  texlive-bin/repos/staging-x86_64/PKGBUILD
(from rev 196425, texlive-bin/trunk/PKGBUILD)
  texlive-bin/repos/staging-x86_64/fix-fontforge-encoding.patch
(from rev 196425, texlive-bin/trunk/fix-fontforge-encoding.patch)
  texlive-bin/repos/staging-x86_64/texlive.install
(from rev 196425, texlive-bin/trunk/texlive.install)

-+
 staging-i686/PKGBUILD   |  310 ++
 staging-i686/fix-fontforge-encoding.patch   |   12 +
 staging-i686/texlive.install|   50 
 staging-x86_64/PKGBUILD |  310 ++
 staging-x86_64/fix-fontforge-encoding.patch |   12 +
 staging-x86_64/texlive.install  |   50 
 6 files changed, 744 insertions(+)

Copied: texlive-bin/repos/staging-i686/PKGBUILD (from rev 196425, 
texlive-bin/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-10-13 13:32:18 UTC (rev 196426)
@@ -0,0 +1,310 @@
+# $Id$
+# Maintainer: Rémy Oudompheng 
+# Contributor: francois 
+
+pkgname=texlive-bin
+pkgver=2013.30973
+pkgrel=5
+_biber_ver=1.7 # for biblatex 2.7 only.
+pkgdesc="TeX Live binaries"
+license=('GPL')
+arch=('i686' 'x86_64')
+depends=('cairo' 'pixman' 'graphite' 't1lib' 'gd' 'poppler>=0.24.0'
+ 'libsigsegv' 'zziplib' 'libpng' 'libjpeg' 'freetype2'
+ 'icu' 'harfbuzz' 'harfbuzz-icu')
+makedepends=('perl' 'clisp' 'ffcall')
+optdepends=('ed: for texconfig')
+provides=('lcdf-typetools' 'kpathsea' 'xindy' 'pdfjam')
+conflicts=('pdfjam')
+options=('!libtool' '!strip')
+url='http://tug.org/texlive/'
+install="texlive.install"
+source=('fix-fontforge-encoding.patch'
+
"http://mirrors.kernel.org/archlinux/other/texlive/texlive-bin-source-${pkgver}.tar.xz";
+
"http://downloads.sourceforge.net/project/biblatex-biber/biblatex-biber/${_biber_ver}/binaries/Linux/biber-linux_x86_64.tar.gz";
+
"http://downloads.sourceforge.net/project/biblatex-biber/biblatex-biber/${_biber_ver}/binaries/Linux/biber-linux_x86_32.tar.gz";
+)
+noextract=(biber-linux_x86_64.tar.gz
+   biber-linux_x86_32.tar.gz)
+md5sums=('bfb9716aa00c86c08cd31e5b32edeb98'
+ '0a8ffd5c0002a080a4202057b1f106c6'
+ 'e9764676c37b820caaba5d3270567e18'
+ '92cd2a292a27c40ea09f77d135d850ad')
+
+build() {
+   cd "$srcdir"
+
+   if [ "${CARCH}" = "x86_64" ]; then
+ export CFLAGS="${CFLAGS} -fPIC"
+ export CXXFLAGS="${CXXFLAGS} -fPIC"
+ tar xf biber-linux_x86_64.tar.gz 
+   else
+ tar xf biber-linux_x86_32.tar.gz
+   fi
+
+   # this patch removes spurious error message with locale "xx_YY.utf8"
+   #patch -Np0 -i fix-fontforge-encoding.patch
+   # t4ht expects to be un /usr/share/texmf/bin/t4ht (FS#27251)
+   sed -i s/SELFAUTOPARENT/TEXMFROOT/ source/texk/tex4htk/t4ht.c
+   #
+   ### configure
+   cd source
+   ## prevent compiling Xdvi with libXp
+   sed -i~ 's|-lXp ||' texk/xdvik/configure
+   test ! -d Work && mkdir Work
+   cd Work
+   echo "--> Initial configuration..."
+   # we use temporary prefix to avoid messing the existing
+   # $pkgdir/usr/share/texmf tree
+   # system zlib is disabled due to issues with zlib 1.2.6 (FS#28221)
+   ../configure --prefix=/usr -C \
+ --sysconfdir=/etc \
+ --datarootdir=/usr/share \
+ --datadir=/usr/share \
+ --mandir=/usr/share/man \
+ --disable-native-texlive-build \
+ --with-banner-add="/Arch Linux" \
+ --disable-multiplatform \
+ --disable-dialog \
+ --disable-psutils \
+ --disable-t1utils \
+ --disable-bibtexu \
+ --disable-xz \
+ --with-system-zlib \
+ --with-system-zziplib \
+ --with-system-pnglib \
+ --with-system-ncurses \
+ --with-system-t1lib \
+ --with-system-gd \
+ --with-system-poppler \
+ --with-system-xpdf \
+ --with-system-freetype2 \
+ --with-system-pixman \
+ --with-system-cairo \
+ --with-system-harfbuzz \
+ --with-system-graphite \
+ --with-system-icu \
+ --with-freetype2-libdir=/usr/lib \
+ --with-freetype2-include=/usr/include/freetype2 \
+ --with-xdvi-x-toolkit=xaw \
+ --disable-dump-share \
+ --disable-aleph \
+ --enable-luatex \
+ --with-clisp-runtime=default \
+ --enable-xindy --disable-xindy

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

2013-10-13 Thread Andreas Radke
Date: Sunday, October 13, 2013 @ 15:31:56
  Author: andyrtr
Revision: 196425

upgpkg: texlive-bin 2013.30973-5

rebuild for icu 52.1

Modified:
  texlive-bin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-10-13 12:34:50 UTC (rev 196424)
+++ PKGBUILD2013-10-13 13:31:56 UTC (rev 196425)
@@ -4,7 +4,7 @@
 
 pkgname=texlive-bin
 pkgver=2013.30973
-pkgrel=4
+pkgrel=5
 _biber_ver=1.7 # for biblatex 2.7 only.
 pkgdesc="TeX Live binaries"
 license=('GPL')



[arch-commits] Commit in qt5/repos (18 files)

2013-10-13 Thread Andreas Radke
Date: Sunday, October 13, 2013 @ 14:34:50
  Author: andyrtr
Revision: 196424

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

Added:
  qt5/repos/staging-i686/
  qt5/repos/staging-i686/PKGBUILD
(from rev 196423, qt5/trunk/PKGBUILD)
  qt5/repos/staging-i686/assistant.desktop
(from rev 196423, qt5/trunk/assistant.desktop)
  qt5/repos/staging-i686/bison3.patch
(from rev 196423, qt5/trunk/bison3.patch)
  qt5/repos/staging-i686/designer.desktop
(from rev 196423, qt5/trunk/designer.desktop)
  qt5/repos/staging-i686/linguist.desktop
(from rev 196423, qt5/trunk/linguist.desktop)
  qt5/repos/staging-i686/qdbusviewer.desktop
(from rev 196423, qt5/trunk/qdbusviewer.desktop)
  qt5/repos/staging-i686/qt5-tools.install
(from rev 196423, qt5/trunk/qt5-tools.install)
  qt5/repos/staging-i686/use-python2.patch
(from rev 196423, qt5/trunk/use-python2.patch)
  qt5/repos/staging-x86_64/
  qt5/repos/staging-x86_64/PKGBUILD
(from rev 196423, qt5/trunk/PKGBUILD)
  qt5/repos/staging-x86_64/assistant.desktop
(from rev 196423, qt5/trunk/assistant.desktop)
  qt5/repos/staging-x86_64/bison3.patch
(from rev 196423, qt5/trunk/bison3.patch)
  qt5/repos/staging-x86_64/designer.desktop
(from rev 196423, qt5/trunk/designer.desktop)
  qt5/repos/staging-x86_64/linguist.desktop
(from rev 196423, qt5/trunk/linguist.desktop)
  qt5/repos/staging-x86_64/qdbusviewer.desktop
(from rev 196423, qt5/trunk/qdbusviewer.desktop)
  qt5/repos/staging-x86_64/qt5-tools.install
(from rev 196423, qt5/trunk/qt5-tools.install)
  qt5/repos/staging-x86_64/use-python2.patch
(from rev 196423, qt5/trunk/use-python2.patch)

+
 staging-i686/PKGBUILD  |  386 +++
 staging-i686/assistant.desktop |8 
 staging-i686/bison3.patch  |   38 +++
 staging-i686/designer.desktop  |   10 
 staging-i686/linguist.desktop  |9 
 staging-i686/qdbusviewer.desktop   |9 
 staging-i686/qt5-tools.install |   12 +
 staging-i686/use-python2.patch |  118 ++
 staging-x86_64/PKGBUILD|  386 +++
 staging-x86_64/assistant.desktop   |8 
 staging-x86_64/bison3.patch|   38 +++
 staging-x86_64/designer.desktop|   10 
 staging-x86_64/linguist.desktop|9 
 staging-x86_64/qdbusviewer.desktop |9 
 staging-x86_64/qt5-tools.install   |   12 +
 staging-x86_64/use-python2.patch   |  118 ++
 16 files changed, 1180 insertions(+)

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


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

2013-10-13 Thread Andreas Radke
Date: Sunday, October 13, 2013 @ 14:33:58
  Author: andyrtr
Revision: 196423

upgpkg: qt5 5.1.1-2

rebuild for icu 52.1

Modified:
  qt5/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-10-13 11:11:32 UTC (rev 196422)
+++ PKGBUILD2013-10-13 12:33:58 UTC (rev 196423)
@@ -21,7 +21,7 @@
  'qt5-x11extras'
  'qt5-xmlpatterns')
 pkgver=5.1.1
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 url='http://qt-project.org/'
 license=('GPL3' 'LGPL' 'FDL' 'custom')



[arch-commits] Commit in xcb-util-cursor/trunk (PKGBUILD)

2013-10-13 Thread Sébastien Luttringer
Date: Sunday, October 13, 2013 @ 14:27:24
  Author: seblu
Revision: 98553

upgpkg: xcb-util-cursor 0.1.0-3

Use a released tarball, and so, drop makedeps.
Thanks to Uli Schlachter to pointing this to me.

Modified:
  xcb-util-cursor/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-10-13 10:52:56 UTC (rev 98552)
+++ PKGBUILD2013-10-13 12:27:24 UTC (rev 98553)
@@ -4,7 +4,7 @@
 
 pkgname=xcb-util-cursor
 pkgver=0.1.0
-pkgrel=2
+pkgrel=3
 pkgdesc='XCB cursor library'
 arch=('i686' 'x86_64')
 url='http://cgit.freedesktop.org/xcb/util-cursor'
@@ -11,20 +11,17 @@
 license=('custom:MIT')
 options=('!libtool')
 depends=('libxcb' 'xcb-util-renderutil' 'xcb-util-image')
-makedepends=('git' 'xorg-util-macros' 'gperf')
-# we use git bease snapshot tarball lack of the submodule m4 stuff
-source=("$pkgname::git+http://anongit.freedesktop.org/git/xcb/util-cursor.git#tag=$pkgver";)
-md5sums=('SKIP')
+source=("http://xcb.freedesktop.org/dist/xcb-util-cursor-$pkgver.tar.bz2";)
+md5sums=('40e913aae6fb30a72d423e6bae9a93e9')
 
 build() {
-  cd $pkgname
-  git submodule update --init
-  ./autogen.sh --prefix=/usr
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
   make
 }
 
 package() {
-  cd $pkgname
+  cd $pkgname-$pkgver
   make DESTDIR="$pkgdir" install
   install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
 }



[arch-commits] Commit in xcb-util-cursor/repos (4 files)

2013-10-13 Thread Sébastien Luttringer
Date: Sunday, October 13, 2013 @ 14:27:34
  Author: seblu
Revision: 98554

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

Added:
  xcb-util-cursor/repos/community-testing-i686/PKGBUILD
(from rev 98553, xcb-util-cursor/trunk/PKGBUILD)
  xcb-util-cursor/repos/community-testing-x86_64/PKGBUILD
(from rev 98553, xcb-util-cursor/trunk/PKGBUILD)
Deleted:
  xcb-util-cursor/repos/community-testing-i686/PKGBUILD
  xcb-util-cursor/repos/community-testing-x86_64/PKGBUILD

---+
 /PKGBUILD |   58 
 community-testing-i686/PKGBUILD   |   32 ---
 community-testing-x86_64/PKGBUILD |   32 ---
 3 files changed, 58 insertions(+), 64 deletions(-)

Deleted: community-testing-i686/PKGBUILD
===
--- community-testing-i686/PKGBUILD 2013-10-13 12:27:24 UTC (rev 98553)
+++ community-testing-i686/PKGBUILD 2013-10-13 12:27:34 UTC (rev 98554)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Luttringer 
-# Contributor: Bastien Dejean 
-
-pkgname=xcb-util-cursor
-pkgver=0.1.0
-pkgrel=2
-pkgdesc='XCB cursor library'
-arch=('i686' 'x86_64')
-url='http://cgit.freedesktop.org/xcb/util-cursor'
-license=('custom:MIT')
-options=('!libtool')
-depends=('libxcb' 'xcb-util-renderutil' 'xcb-util-image')
-makedepends=('git' 'xorg-util-macros' 'gperf')
-# we use git bease snapshot tarball lack of the submodule m4 stuff
-source=("$pkgname::git+http://anongit.freedesktop.org/git/xcb/util-cursor.git#tag=$pkgver";)
-md5sums=('SKIP')
-
-build() {
-  cd $pkgname
-  git submodule update --init
-  ./autogen.sh --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: xcb-util-cursor/repos/community-testing-i686/PKGBUILD (from rev 98553, 
xcb-util-cursor/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2013-10-13 12:27:34 UTC (rev 98554)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Sébastien Luttringer 
+# Contributor: Bastien Dejean 
+
+pkgname=xcb-util-cursor
+pkgver=0.1.0
+pkgrel=3
+pkgdesc='XCB cursor library'
+arch=('i686' 'x86_64')
+url='http://cgit.freedesktop.org/xcb/util-cursor'
+license=('custom:MIT')
+options=('!libtool')
+depends=('libxcb' 'xcb-util-renderutil' 'xcb-util-image')
+source=("http://xcb.freedesktop.org/dist/xcb-util-cursor-$pkgver.tar.bz2";)
+md5sums=('40e913aae6fb30a72d423e6bae9a93e9')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-testing-x86_64/PKGBUILD
===
--- community-testing-x86_64/PKGBUILD   2013-10-13 12:27:24 UTC (rev 98553)
+++ community-testing-x86_64/PKGBUILD   2013-10-13 12:27:34 UTC (rev 98554)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Luttringer 
-# Contributor: Bastien Dejean 
-
-pkgname=xcb-util-cursor
-pkgver=0.1.0
-pkgrel=2
-pkgdesc='XCB cursor library'
-arch=('i686' 'x86_64')
-url='http://cgit.freedesktop.org/xcb/util-cursor'
-license=('custom:MIT')
-options=('!libtool')
-depends=('libxcb' 'xcb-util-renderutil' 'xcb-util-image')
-makedepends=('git' 'xorg-util-macros' 'gperf')
-# we use git bease snapshot tarball lack of the submodule m4 stuff
-source=("$pkgname::git+http://anongit.freedesktop.org/git/xcb/util-cursor.git#tag=$pkgver";)
-md5sums=('SKIP')
-
-build() {
-  cd $pkgname
-  git submodule update --init
-  ./autogen.sh --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: xcb-util-cursor/repos/community-testing-x86_64/PKGBUILD (from rev 
98553, xcb-util-cursor/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2013-10-13 12:27:34 UTC (rev 98554)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Sébastien Luttringer 
+# Contributor: Bastien Dejean 
+
+pkgname=xcb-util-cursor
+pkgver=0.1.0
+pkgrel=3
+pkgdesc='XCB cursor library'
+arch=('i686' 'x86_64')
+url='http://cgit.freedesktop.org/xcb/util-cursor'
+license=('custom:MIT')
+options=('!libtool')
+depends=('libxcb' 'xcb-util-renderutil' 'xcb-util-image')
+source=("http://xcb.freedesktop.org/dist/xcb-util-cursor-$pkgver.tar.bz2";)
+md5sums=('40e913aae6fb30a72d423e6bae9a93e9')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkg

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

2013-10-13 Thread Andreas Radke
Date: Sunday, October 13, 2013 @ 13:11:32
  Author: andyrtr
Revision: 196422

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

Added:
  php/repos/staging-i686/
  php/repos/staging-i686/PKGBUILD
(from rev 196421, php/trunk/PKGBUILD)
  php/repos/staging-i686/apache.conf
(from rev 196421, php/trunk/apache.conf)
  php/repos/staging-i686/logrotate.d.php-fpm
(from rev 196421, php/trunk/logrotate.d.php-fpm)
  php/repos/staging-i686/php-fpm.conf.in.patch
(from rev 196421, php/trunk/php-fpm.conf.in.patch)
  php/repos/staging-i686/php-fpm.install
(from rev 196421, php/trunk/php-fpm.install)
  php/repos/staging-i686/php-fpm.service
(from rev 196421, php/trunk/php-fpm.service)
  php/repos/staging-i686/php-fpm.tmpfiles
(from rev 196421, php/trunk/php-fpm.tmpfiles)
  php/repos/staging-i686/php.ini.patch
(from rev 196421, php/trunk/php.ini.patch)
  php/repos/staging-x86_64/
  php/repos/staging-x86_64/PKGBUILD
(from rev 196421, php/trunk/PKGBUILD)
  php/repos/staging-x86_64/apache.conf
(from rev 196421, php/trunk/apache.conf)
  php/repos/staging-x86_64/logrotate.d.php-fpm
(from rev 196421, php/trunk/logrotate.d.php-fpm)
  php/repos/staging-x86_64/php-fpm.conf.in.patch
(from rev 196421, php/trunk/php-fpm.conf.in.patch)
  php/repos/staging-x86_64/php-fpm.install
(from rev 196421, php/trunk/php-fpm.install)
  php/repos/staging-x86_64/php-fpm.service
(from rev 196421, php/trunk/php-fpm.service)
  php/repos/staging-x86_64/php-fpm.tmpfiles
(from rev 196421, php/trunk/php-fpm.tmpfiles)
  php/repos/staging-x86_64/php.ini.patch
(from rev 196421, php/trunk/php.ini.patch)

--+
 staging-i686/PKGBUILD|  351 +
 staging-i686/apache.conf |   13 +
 staging-i686/logrotate.d.php-fpm |8 
 staging-i686/php-fpm.conf.in.patch   |   52 
 staging-i686/php-fpm.install |9 
 staging-i686/php-fpm.service |   13 +
 staging-i686/php-fpm.tmpfiles|1 
 staging-i686/php.ini.patch   |  122 +++
 staging-x86_64/PKGBUILD  |  351 +
 staging-x86_64/apache.conf   |   13 +
 staging-x86_64/logrotate.d.php-fpm   |8 
 staging-x86_64/php-fpm.conf.in.patch |   52 
 staging-x86_64/php-fpm.install   |9 
 staging-x86_64/php-fpm.service   |   13 +
 staging-x86_64/php-fpm.tmpfiles  |1 
 staging-x86_64/php.ini.patch |  122 +++
 16 files changed, 1138 insertions(+)

Copied: php/repos/staging-i686/PKGBUILD (from rev 196421, php/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-10-13 11:11:32 UTC (rev 196422)
@@ -0,0 +1,351 @@
+# $Id$
+# Maintainer: Pierre Schmitz 
+
+pkgbase=php
+pkgname=('php'
+ 'php-cgi'
+ 'php-apache'
+ 'php-fpm'
+ 'php-embed'
+ 'php-pear'
+ 'php-enchant'
+ 'php-gd'
+ 'php-intl'
+ 'php-ldap'
+ 'php-mcrypt'
+ 'php-mssql'
+ 'php-odbc'
+ 'php-pgsql'
+ 'php-pspell'
+ 'php-snmp'
+ 'php-sqlite'
+ 'php-tidy'
+ 'php-xsl')
+pkgver=5.5.4
+pkgrel=2
+arch=('i686' 'x86_64')
+license=('PHP')
+url='http://www.php.net'
+makedepends=('apache' 'imap' 'postgresql-libs' 'libldap' 'postfix' 'libvpx'
+ 'sqlite' 'unixodbc' 'net-snmp' 'libzip' 'enchant' 'file' 'freetds'
+ 'libmcrypt' 'tidyhtml' 'aspell' 'libltdl' 'libpng' 'libjpeg' 'icu'
+ 'curl' 'libxslt' 'openssl' 'bzip2' 'db' 'gmp' 'freetype2' 
'systemd')
+source=("http://www.php.net/distributions/${pkgbase}-${pkgver}.tar.xz";
+'php.ini.patch' 'apache.conf' 'php-fpm.conf.in.patch'
+'logrotate.d.php-fpm' 'php-fpm.service' 'php-fpm.tmpfiles')
+md5sums=('32c1dc56701d21def91a39a312392b54'
+ 'f9ee638591aaf1526767db7976d95847'
+ 'dec2cbaad64e3abf4f0ec70e1de4e8e9'
+ '880afea327bb00c47082d22c507e6bfc'
+ 'e036c721e5ad927cd1613c7475a58b3a'
+ 'cc2940f5312ba42e7aa1ddfab74b84c4'
+ 'c60343df74f8e1afb13b084d5c0e47ed')
+
+prepare() {
+   cd ${srcdir}/${pkgbase}-${pkgver}
+
+   patch -p0 -i ${srcdir}/php.ini.patch
+   patch -p0 -i ${srcdir}/php-fpm.conf.in.patch
+}
+
+build() {
+   local _phpconfig="--srcdir=../${pkgbase}-${pkgver} \
+   --config-cache \
+   --prefix=/usr \
+   --sbindir=/usr/bin \
+   --sysconfdir=/etc/php \
+   --localstatedir=/var \
+   --with-layout=GNU \
+   --with-config-file-path=/etc/php \
+   --with-config-file-scan-dir=/etc/php/conf.d \
+   --disable-rpath \
+   --mandir=/usr/share/man \
+   --without-pear \
+   "
+
+   local _phpextensions="--enable-bcmath=shared

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

2013-10-13 Thread Andreas Radke
Date: Sunday, October 13, 2013 @ 13:10:50
  Author: andyrtr
Revision: 196421

upgpkg: php 5.5.4-2

rebuild for icu 52.1

Modified:
  php/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-10-13 10:53:50 UTC (rev 196420)
+++ PKGBUILD2013-10-13 11:10:50 UTC (rev 196421)
@@ -22,7 +22,7 @@
  'php-tidy'
  'php-xsl')
 pkgver=5.5.4
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 license=('PHP')
 url='http://www.php.net'



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

2013-10-13 Thread Andreas Radke
Date: Sunday, October 13, 2013 @ 12:53:33
  Author: andyrtr
Revision: 196419

upgpkg: gptfdisk 0.8.7-2

rebuild for icu 52.1

Modified:
  gptfdisk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-10-13 10:33:44 UTC (rev 196418)
+++ PKGBUILD2013-10-13 10:53:33 UTC (rev 196419)
@@ -5,7 +5,7 @@
 
 pkgname=gptfdisk
 pkgver=0.8.7
-pkgrel=1
+pkgrel=2
 pkgdesc="A text-mode partitioning tool that works on Globally Unique 
Identifier (GUID) Partition Table (GPT) disks"
 arch=('i686' 'x86_64')
 url="http://www.rodsbooks.com/gdisk/";
@@ -18,13 +18,12 @@
 sha256sums=('39e61d9f3701e95db1bcb83ce8fb211b22f33548e3c75b17f22067c6968e91e3')
 
 build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
+  cd $pkgname-$pkgver
   make
 }
 
 package () {
-  cd "$srcdir/$pkgname-$pkgver"
+  cd $pkgname-$pkgver
 
   install -d "$pkgdir"/usr/{bin,share/{doc/gdisk,man/man8}}
   install -t "$pkgdir/usr/bin" {,c,s}gdisk fixparts
@@ -31,5 +30,3 @@
   install -m644 -t "$pkgdir/usr/share/man/man8" {{,c,s}gdisk,fixparts}.8
   install -m644 -t "$pkgdir/usr/share/doc/gdisk" README NEWS
 }
-
-# vim:set ts=2 sw=2 et:



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

2013-10-13 Thread Andreas Radke
Date: Sunday, October 13, 2013 @ 12:53:50
  Author: andyrtr
Revision: 196420

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

Added:
  gptfdisk/repos/staging-i686/
  gptfdisk/repos/staging-i686/PKGBUILD
(from rev 196419, gptfdisk/trunk/PKGBUILD)
  gptfdisk/repos/staging-x86_64/
  gptfdisk/repos/staging-x86_64/PKGBUILD
(from rev 196419, gptfdisk/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   32 
 staging-x86_64/PKGBUILD |   32 
 2 files changed, 64 insertions(+)

Copied: gptfdisk/repos/staging-i686/PKGBUILD (from rev 196419, 
gptfdisk/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-10-13 10:53:50 UTC (rev 196420)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Evangelos Foutras 
+# Contributor: Tobias Powalowski 
+# Contributor: Hokum 
+
+pkgname=gptfdisk
+pkgver=0.8.7
+pkgrel=2
+pkgdesc="A text-mode partitioning tool that works on Globally Unique 
Identifier (GUID) Partition Table (GPT) disks"
+arch=('i686' 'x86_64')
+url="http://www.rodsbooks.com/gdisk/";
+license=('GPL2')
+depends=('gcc-libs' 'util-linux' 'popt' 'icu')
+provides=("gdisk=$pkgver")
+conflicts=('gdisk')
+replaces=('gdisk')
+source=(http://downloads.sourceforge.net/project/$pkgname/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz)
+sha256sums=('39e61d9f3701e95db1bcb83ce8fb211b22f33548e3c75b17f22067c6968e91e3')
+
+build() {
+  cd $pkgname-$pkgver
+  make
+}
+
+package () {
+  cd $pkgname-$pkgver
+
+  install -d "$pkgdir"/usr/{bin,share/{doc/gdisk,man/man8}}
+  install -t "$pkgdir/usr/bin" {,c,s}gdisk fixparts
+  install -m644 -t "$pkgdir/usr/share/man/man8" {{,c,s}gdisk,fixparts}.8
+  install -m644 -t "$pkgdir/usr/share/doc/gdisk" README NEWS
+}

Copied: gptfdisk/repos/staging-x86_64/PKGBUILD (from rev 196419, 
gptfdisk/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2013-10-13 10:53:50 UTC (rev 196420)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Evangelos Foutras 
+# Contributor: Tobias Powalowski 
+# Contributor: Hokum 
+
+pkgname=gptfdisk
+pkgver=0.8.7
+pkgrel=2
+pkgdesc="A text-mode partitioning tool that works on Globally Unique 
Identifier (GUID) Partition Table (GPT) disks"
+arch=('i686' 'x86_64')
+url="http://www.rodsbooks.com/gdisk/";
+license=('GPL2')
+depends=('gcc-libs' 'util-linux' 'popt' 'icu')
+provides=("gdisk=$pkgver")
+conflicts=('gdisk')
+replaces=('gdisk')
+source=(http://downloads.sourceforge.net/project/$pkgname/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz)
+sha256sums=('39e61d9f3701e95db1bcb83ce8fb211b22f33548e3c75b17f22067c6968e91e3')
+
+build() {
+  cd $pkgname-$pkgver
+  make
+}
+
+package () {
+  cd $pkgname-$pkgver
+
+  install -d "$pkgdir"/usr/{bin,share/{doc/gdisk,man/man8}}
+  install -t "$pkgdir/usr/bin" {,c,s}gdisk fixparts
+  install -m644 -t "$pkgdir/usr/share/man/man8" {{,c,s}gdisk,fixparts}.8
+  install -m644 -t "$pkgdir/usr/share/doc/gdisk" README NEWS
+}



[arch-commits] Commit in cairo-dock-plugins/repos (6 files)

2013-10-13 Thread Maxime Gauduin
Date: Sunday, October 13, 2013 @ 12:52:56
  Author: alucryd
Revision: 98552

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

Added:
  cairo-dock-plugins/repos/community-i686/PKGBUILD
(from rev 98551, cairo-dock-plugins/trunk/PKGBUILD)
  cairo-dock-plugins/repos/community-x86_64/PKGBUILD
(from rev 98551, cairo-dock-plugins/trunk/PKGBUILD)
Deleted:
  cairo-dock-plugins/repos/community-i686/PKGBUILD
  cairo-dock-plugins/repos/community-i686/python.patch
  cairo-dock-plugins/repos/community-x86_64/PKGBUILD
  cairo-dock-plugins/repos/community-x86_64/python.patch

---+
 /PKGBUILD |  116 
 community-i686/PKGBUILD   |   66 --
 community-i686/python.patch   |   49 
 community-x86_64/PKGBUILD |   66 --
 community-x86_64/python.patch |   49 
 5 files changed, 116 insertions(+), 230 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-10-13 10:52:39 UTC (rev 98551)
+++ community-i686/PKGBUILD 2013-10-13 10:52:56 UTC (rev 98552)
@@ -1,66 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin 
-# Contributor: Tofe 
-# Contributor: zhuqin 
-# Contributor: tri1976 
-# Contributor: snoopy33 
-
-pkgname=cairo-dock-plugins
-pkgver=3.2.1
-pkgrel=4
-pkgdesc="Plugins for Cairo-Dock"
-url="https://launchpad.net/cairo-dock";
-license=('GPL')
-arch=('i686' 'x86_64')
-depends=('cairo-dock')
-makedepends=('cmake' 'alsa-lib' 'fftw' 'gnome-menus' 'gtk-sharp-2' 'gvfs' 
'libetpan' 'libexif' 'libical' 'libpulse' 'libxklavier' 'libzeitgeist' 
'lm_sensors' 'ndesk-dbus-glib' 'python' 'python2' 'ruby' 'upower' 'vala' 'vte3' 
'webkitgtk3')
-optdepends=('alsa-lib: Sound Control, Sound Effects applets'
-'fftw: Impulse applet'
-'gnome-menus: Applications Menu applet'
-'gtk-sharp-2: Mono API'
-'gvfs: GVFS integration'
-'libetpan: Mail applet'
-'libexif: Slider applet'
-'libical: Clock applet'
-'libpulse: Impulse applet'
-'libxklavier: Keyboard Indicator applet'
-'libzeitgeist: Recent Events applet'
-'lm_sensors: System Monitor applet'
-'ndesk-dbus-glib: Mono API'
-'python: Python 3 API'
-'python2: Python 2 API'
-'ruby: Ruby API'
-'upower: Logout, PowerManager applets'
-'vte3: Terminal applet'
-'webkitgtk3: Weblets applet')
-options=('!libtool')
-source=("http://launchpad.net/cairo-dock-plug-ins/3.2/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz";
-'python.patch')
-sha256sums=('11b4433e40bbb1507757b23e167c521d620827576c2f30bb1a9642e0bff57e01'
-'f33ff6f2b93936c5050ae369d1b08c41bd17f5a2fb4ce46da5436d78d0b3fa8e')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-
-  patch -Np1 -i ../python.patch
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-
-  if [[ -d build ]]; then
-rm -rf build
-  fi
-  mkdir build && cd build
-
-  cmake .. -DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}/build
-
-  make DESTDIR="${pkgdir}" install
-}
-
-# vim: ts=2 sw=2 et:

Copied: cairo-dock-plugins/repos/community-i686/PKGBUILD (from rev 98551, 
cairo-dock-plugins/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-10-13 10:52:56 UTC (rev 98552)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: Tofe 
+# Contributor: zhuqin 
+# Contributor: tri1976 
+# Contributor: snoopy33 
+
+pkgname=cairo-dock-plugins
+pkgver=3.3.1
+pkgrel=1
+pkgdesc="Plugins for Cairo-Dock"
+url="https://launchpad.net/cairo-dock";
+license=('GPL')
+arch=('i686' 'x86_64')
+depends=('cairo-dock')
+makedepends=('cmake' 'alsa-lib' 'fftw' 'gnome-menus' 'gtk-sharp-2' 'gvfs' 
'libetpan' 'libexif' 'libical' 'libpulse' 'libxklavier' 'libzeitgeist' 
'lm_sensors' 'ndesk-dbus-glib' 'python' 'python2' 'ruby' 'upower' 'vala' 'vte3' 
'webkitgtk3')
+optdepends=('alsa-lib: Sound Control, Sound Effects applets'
+'fftw: Impulse applet'
+'gnome-menus: Applications Menu applet'
+'gtk-sharp-2: Mono API'
+'gvfs: GVFS integration'
+'libetpan: Mail applet'
+'libexif: Slider applet'
+'libical: Clock applet'
+'libpulse: Impulse applet'
+'libxklavier: Keyboard Indicator applet'
+'libzeitgeist: Recent Events applet'
+'lm_sensors: System Monitor applet'
+'ndesk-dbus-glib: Mono API'
+'python: Python 3 API'
+'python2: Python 2 API'
+'ruby: Ruby API'
+'upower: Logout, PowerManager applets'
+'vte3: Terminal applet'
+'webkitgtk3: Weble

[arch-commits] Commit in cairo-dock-plugins/trunk (PKGBUILD python.patch)

2013-10-13 Thread Maxime Gauduin
Date: Sunday, October 13, 2013 @ 12:52:39
  Author: alucryd
Revision: 98551

upgpkg: cairo-dock-plugins 3.3.1-1

Modified:
  cairo-dock-plugins/trunk/PKGBUILD
Deleted:
  cairo-dock-plugins/trunk/python.patch

--+
 PKGBUILD |   18 +-
 python.patch |   49 -
 2 files changed, 5 insertions(+), 62 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-10-13 10:48:27 UTC (rev 98550)
+++ PKGBUILD2013-10-13 10:52:39 UTC (rev 98551)
@@ -6,8 +6,8 @@
 # Contributor: snoopy33 
 
 pkgname=cairo-dock-plugins
-pkgver=3.2.1
-pkgrel=4
+pkgver=3.3.1
+pkgrel=1
 pkgdesc="Plugins for Cairo-Dock"
 url="https://launchpad.net/cairo-dock";
 license=('GPL')
@@ -34,17 +34,9 @@
 'vte3: Terminal applet'
 'webkitgtk3: Weblets applet')
 options=('!libtool')
-source=("http://launchpad.net/cairo-dock-plug-ins/3.2/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz";
-'python.patch')
-sha256sums=('11b4433e40bbb1507757b23e167c521d620827576c2f30bb1a9642e0bff57e01'
-'f33ff6f2b93936c5050ae369d1b08c41bd17f5a2fb4ce46da5436d78d0b3fa8e')
+source=("http://launchpad.net/cairo-dock-plug-ins/${pkgver%.?}/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz";)
+sha256sums=('21d41ffeac6848dced05280641d764709445cad4c4e19082404b74ecd6436fd4')
 
-prepare() {
-  cd ${pkgname}-${pkgver}
-
-  patch -Np1 -i ../python.patch
-}
-
 build() {
   cd ${pkgname}-${pkgver}
 
@@ -53,7 +45,7 @@
   fi
   mkdir build && cd build
 
-  cmake .. -DCMAKE_INSTALL_PREFIX=/usr
+  cmake .. -DCMAKE_INSTALL_PREFIX='/usr'
   make
 }
 

Deleted: python.patch
===
--- python.patch2013-10-13 10:48:27 UTC (rev 98550)
+++ python.patch2013-10-13 10:52:39 UTC (rev 98551)
@@ -1,49 +0,0 @@
-diff -rupN 
cairo-dock-plugins-3.2.1.orig/Dbus/interfaces/bash/BashInstall.cmake.in 
cairo-dock-plugins-3.2.1/Dbus/interfaces/bash/BashInstall.cmake.in
 cairo-dock-plugins-3.2.1.orig/Dbus/interfaces/bash/BashInstall.cmake.in
2013-07-11 17:09:45.165345967 +0200
-+++ cairo-dock-plugins-3.2.1/Dbus/interfaces/bash/BashInstall.cmake.in 
2013-07-11 17:10:22.238469121 +0200
-@@ -2,7 +2,7 @@ IF ("@PYTHON2_FOUND@" STREQUAL "TRUE")
-   IF("@ROOT_PREFIX@" STREQUAL "")
-   EXEC_PROGRAM("@PYTHON2_EXECUTABLE@" 
"${CMAKE_CURRENT_BINARY_DIR}" ARGS
-   "setup.py" "install"
--  
"--prefix=${CMAKE_INSTALL_PREFIX}"
-+  
"--prefix=$DESTDIR${CMAKE_INSTALL_PREFIX}"
-   "@DEBIAN_INSTALL_LAYOUT@")
-   ELSEIF(NOT "@ROOT_PREFIX@" STREQUAL "" AND "@python_no_deb_layout@" 
STREQUAL "")
-   EXEC_PROGRAM("@PYTHON2_EXECUTABLE@" 
"${CMAKE_CURRENT_BINARY_DIR}" ARGS
-@@ -20,7 +20,7 @@ IF ("@PYTHON3_FOUND@" STREQUAL "TRUE")
-   IF("@ROOT_PREFIX@" STREQUAL "")
-   EXEC_PROGRAM("@PYTHON3_EXECUTABLE@" 
"${CMAKE_CURRENT_BINARY_DIR}" ARGS
-   "setup.py" "install"
--  
"--prefix=${CMAKE_INSTALL_PREFIX}"
-+  
"--prefix=$DESTDIR${CMAKE_INSTALL_PREFIX}"
-   "@DEBIAN_INSTALL_LAYOUT@")
-   ELSEIF(NOT "@ROOT_PREFIX@" STREQUAL "" AND "@python_no_deb_layout@" 
STREQUAL "")
-   EXEC_PROGRAM("@PYTHON3_EXECUTABLE@" 
"${CMAKE_CURRENT_BINARY_DIR}" ARGS
-diff -rupN 
cairo-dock-plugins-3.2.1.orig/Dbus/interfaces/python/PythonInstall.cmake.in 
cairo-dock-plugins-3.2.1/Dbus/interfaces/python/PythonInstall.cmake.in
 
cairo-dock-plugins-3.2.1.orig/Dbus/interfaces/python/PythonInstall.cmake.in 
   2013-07-11 17:09:45.162012653 +0200
-+++ cairo-dock-plugins-3.2.1/Dbus/interfaces/python/PythonInstall.cmake.in 
2013-07-11 17:10:56.581607933 +0200
-@@ -2,7 +2,7 @@ if ("@PYTHON2_FOUND@" STREQUAL "TRUE")
-   IF("@ROOT_PREFIX@" STREQUAL "")
-   EXEC_PROGRAM("@PYTHON2_EXECUTABLE@" 
"${CMAKE_CURRENT_BINARY_DIR}" ARGS
-   "setup.py" "install"
--  
"--prefix=${CMAKE_INSTALL_PREFIX}"
-+  
"--prefix=$DESTDIR${CMAKE_INSTALL_PREFIX}"
-   "@DEBIAN_INSTALL_LAYOUT@")
-   ELSEIF(NOT "@ROOT_PREFIX@" STREQUAL "" AND "@python_no_deb_layout@" 
STREQUAL "")
-   EXEC_PROGRAM("@PYTHON2_EXECUTABLE@" 
"${CMAKE_CURRENT_BINARY_DIR}" ARGS
-@@ -20,7 +20,7 @@ if ("@PYTHON3_FOUND@" STREQUAL "TRUE")
-   IF("@ROOT_PREFIX@" STREQUAL "")
-   EXEC_PROGRAM("@PYTHON3_EXECUTABLE@" 
"${CMAKE_CURRENT_BINARY_DIR}" ARGS
-   "setup.py" "install"
--  

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

2013-10-13 Thread Maxime Gauduin
Date: Sunday, October 13, 2013 @ 12:48:27
  Author: alucryd
Revision: 98550

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

Added:
  cairo-dock/repos/community-i686/PKGBUILD
(from rev 98549, cairo-dock/trunk/PKGBUILD)
  cairo-dock/repos/community-i686/gldit-rpath.patch
(from rev 98549, cairo-dock/trunk/gldit-rpath.patch)
  cairo-dock/repos/community-x86_64/PKGBUILD
(from rev 98549, cairo-dock/trunk/PKGBUILD)
  cairo-dock/repos/community-x86_64/gldit-rpath.patch
(from rev 98549, cairo-dock/trunk/gldit-rpath.patch)
Deleted:
  cairo-dock/repos/community-i686/PKGBUILD
  cairo-dock/repos/community-i686/gldit-rpath.patch
  cairo-dock/repos/community-x86_64/PKGBUILD
  cairo-dock/repos/community-x86_64/gldit-rpath.patch

+
 /PKGBUILD  |   76 +++
 /gldit-rpath.patch |   26 +++
 community-i686/PKGBUILD|   45 
 community-i686/gldit-rpath.patch   |   13 -
 community-x86_64/PKGBUILD  |   45 
 community-x86_64/gldit-rpath.patch |   13 -
 6 files changed, 102 insertions(+), 116 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-10-13 10:48:12 UTC (rev 98549)
+++ community-i686/PKGBUILD 2013-10-13 10:48:27 UTC (rev 98550)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin 
-# Contributor: Tofe 
-# Contributor: erm67 
-
-pkgname=cairo-dock
-pkgver=3.2.1
-pkgrel=3
-pkgdesc="Light eye-candy fully themable animated dock"
-arch=('i686' 'x86_64')
-url="https://launchpad.net/cairo-dock-core";
-license=('GPL')
-depends=('curl' 'dbus-glib' 'gtk3' 'librsvg')
-makedepends=('cmake')
-optdepends=('cairo-dock-plugins: Plugins for Cairo-Dock')
-options=('!libtool')
-source=("http://launchpad.net/${pkgname}-core/3.2/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz";
 'gldit-rpath.patch')
-sha256sums=('441e407f92138dc604c796b0455777b765e298ecb8f3120104f521d0e0b34543'
-'5a5fbc67aaa210387ef4410701747fe741942c99c4bd84ae771b96a3bdd1c4cc')
-
-prepare() {
-  cd "${srcdir}"/${pkgname}-${pkgver}
-
-  patch -Np1 -i ../gldit-rpath.patch
-}
-
-build() {
-  cd "${srcdir}"/${pkgname}-${pkgver}
-
-  if [[ -d build ]]; then
-rm -rf build
-  fi
-  mkdir build && cd build
-
-  cmake .. -DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}"/${pkgname}-${pkgver}/build
-
-  make DESTDIR="${pkgdir}" install
-}
-
-# vim: ts=2 sw=2 et:

Copied: cairo-dock/repos/community-i686/PKGBUILD (from rev 98549, 
cairo-dock/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-10-13 10:48:27 UTC (rev 98550)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: Tofe 
+# Contributor: erm67 
+
+pkgname=cairo-dock
+pkgver=3.3.1
+pkgrel=1
+pkgdesc="Light eye-candy fully themable animated dock"
+arch=('i686' 'x86_64')
+url="https://launchpad.net/cairo-dock-core";
+license=('GPL')
+depends=('curl' 'dbus-glib' 'gtk3' 'librsvg')
+makedepends=('cmake')
+optdepends=('cairo-dock-plugins: Plugins for Cairo-Dock')
+options=('!libtool')
+source=("http://launchpad.net/${pkgname}-core/${pkgver%.?}/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz";)
+sha256sums=('4d7c5c58606ac1e22dcbe6d80404e38d747c2c846102df09f25d5b97943f0459')
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  if [[ -d build ]]; then
+rm -rf build
+  fi
+  mkdir build && cd build
+
+  cmake .. -DCMAKE_INSTALL_PREFIX='/usr'
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}/build
+
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et:

Deleted: community-i686/gldit-rpath.patch
===
--- community-i686/gldit-rpath.patch2013-10-13 10:48:12 UTC (rev 98549)
+++ community-i686/gldit-rpath.patch2013-10-13 10:48:27 UTC (rev 98550)
@@ -1,13 +0,0 @@
 a/src/gldit/CMakeLists.txt 2013-03-23 16:55:12.0 +0100
-+++ b/src/gldit/CMakeLists.txt 2013-03-26 11:57:14.159200918 +0100
-@@ -82,9 +82,7 @@ link_directories(
-   ${GTK_LIBRARY_DIRS}
-   ${XEXTEND_LIBRARY_DIRS}
-   ${XINERAMA_LIBRARY_DIRS}
--  ${CMAKE_SOURCE_DIR}/src/gldit
--  ${CMAKE_SOURCE_DIR}/src/icon-factory
--  ${CMAKE_SOURCE_DIR}/src/implementations)
-+  )
- 
- # Define the library
- add_library ("gldi" SHARED ${core_lib_SRCS})

Copied: cairo-dock/repos/community-i686/gldit-rpath.patch (from rev 98549, 
cairo-dock/trunk/gldit-rpath.patch)
===
--- community-i686/gldit-rpath.patch(rev 0)
+++ community-i686/gldit-rpath.patch2013-10-13 10:48:27 UTC (rev 98550)
@@ -0,0 +1,13 @@
+--- a/src/gldit/CMakeLists.txt 2013-03-23 16:55:12.0 +0100
 b/src/gldit/CMakeLists.t

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

2013-10-13 Thread Maxime Gauduin
Date: Sunday, October 13, 2013 @ 12:48:12
  Author: alucryd
Revision: 98549

upgpkg: cairo-dock 3.3.1-1

Modified:
  cairo-dock/trunk/PKGBUILD

--+
 PKGBUILD |   21 +++--
 1 file changed, 7 insertions(+), 14 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-10-13 06:10:36 UTC (rev 98548)
+++ PKGBUILD2013-10-13 10:48:12 UTC (rev 98549)
@@ -4,8 +4,8 @@
 # Contributor: erm67 
 
 pkgname=cairo-dock
-pkgver=3.2.1
-pkgrel=3
+pkgver=3.3.1
+pkgrel=1
 pkgdesc="Light eye-candy fully themable animated dock"
 arch=('i686' 'x86_64')
 url="https://launchpad.net/cairo-dock-core";
@@ -14,18 +14,11 @@
 makedepends=('cmake')
 optdepends=('cairo-dock-plugins: Plugins for Cairo-Dock')
 options=('!libtool')
-source=("http://launchpad.net/${pkgname}-core/3.2/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz";
 'gldit-rpath.patch')
-sha256sums=('441e407f92138dc604c796b0455777b765e298ecb8f3120104f521d0e0b34543'
-'5a5fbc67aaa210387ef4410701747fe741942c99c4bd84ae771b96a3bdd1c4cc')
+source=("http://launchpad.net/${pkgname}-core/${pkgver%.?}/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz";)
+sha256sums=('4d7c5c58606ac1e22dcbe6d80404e38d747c2c846102df09f25d5b97943f0459')
 
-prepare() {
-  cd "${srcdir}"/${pkgname}-${pkgver}
-
-  patch -Np1 -i ../gldit-rpath.patch
-}
-
 build() {
-  cd "${srcdir}"/${pkgname}-${pkgver}
+  cd ${pkgname}-${pkgver}
 
   if [[ -d build ]]; then
 rm -rf build
@@ -32,12 +25,12 @@
   fi
   mkdir build && cd build
 
-  cmake .. -DCMAKE_INSTALL_PREFIX=/usr
+  cmake .. -DCMAKE_INSTALL_PREFIX='/usr'
   make
 }
 
 package() {
-  cd "${srcdir}"/${pkgname}-${pkgver}/build
+  cd ${pkgname}-${pkgver}/build
 
   make DESTDIR="${pkgdir}" install
 }



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

2013-10-13 Thread Andreas Radke
Date: Sunday, October 13, 2013 @ 12:33:44
  Author: andyrtr
Revision: 196418

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

Added:
  calligra/repos/staging-i686/
  calligra/repos/staging-i686/PKGBUILD
(from rev 196417, calligra/trunk/PKGBUILD)
  calligra/repos/staging-i686/calligra-braindump.install
(from rev 196417, calligra/trunk/calligra-braindump.install)
  calligra/repos/staging-i686/calligra-extras.install
(from rev 196417, calligra/trunk/calligra-extras.install)
  calligra/repos/staging-i686/calligra-filters.install
(from rev 196417, calligra/trunk/calligra-filters.install)
  calligra/repos/staging-i686/calligra-flow.install
(from rev 196417, calligra/trunk/calligra-flow.install)
  calligra/repos/staging-i686/calligra-karbon.install
(from rev 196417, calligra/trunk/calligra-karbon.install)
  calligra/repos/staging-i686/calligra-kexi.install
(from rev 196417, calligra/trunk/calligra-kexi.install)
  calligra/repos/staging-i686/calligra-krita.install
(from rev 196417, calligra/trunk/calligra-krita.install)
  calligra/repos/staging-i686/calligra-plan.install
(from rev 196417, calligra/trunk/calligra-plan.install)
  calligra/repos/staging-i686/calligra-plugins.install
(from rev 196417, calligra/trunk/calligra-plugins.install)
  calligra/repos/staging-i686/calligra-sheets.install
(from rev 196417, calligra/trunk/calligra-sheets.install)
  calligra/repos/staging-i686/calligra-stage.install
(from rev 196417, calligra/trunk/calligra-stage.install)
  calligra/repos/staging-i686/calligra-words.install
(from rev 196417, calligra/trunk/calligra-words.install)
  calligra/repos/staging-i686/calligra.install
(from rev 196417, calligra/trunk/calligra.install)
  calligra/repos/staging-x86_64/
  calligra/repos/staging-x86_64/PKGBUILD
(from rev 196417, calligra/trunk/PKGBUILD)
  calligra/repos/staging-x86_64/calligra-braindump.install
(from rev 196417, calligra/trunk/calligra-braindump.install)
  calligra/repos/staging-x86_64/calligra-extras.install
(from rev 196417, calligra/trunk/calligra-extras.install)
  calligra/repos/staging-x86_64/calligra-filters.install
(from rev 196417, calligra/trunk/calligra-filters.install)
  calligra/repos/staging-x86_64/calligra-flow.install
(from rev 196417, calligra/trunk/calligra-flow.install)
  calligra/repos/staging-x86_64/calligra-karbon.install
(from rev 196417, calligra/trunk/calligra-karbon.install)
  calligra/repos/staging-x86_64/calligra-kexi.install
(from rev 196417, calligra/trunk/calligra-kexi.install)
  calligra/repos/staging-x86_64/calligra-krita.install
(from rev 196417, calligra/trunk/calligra-krita.install)
  calligra/repos/staging-x86_64/calligra-plan.install
(from rev 196417, calligra/trunk/calligra-plan.install)
  calligra/repos/staging-x86_64/calligra-plugins.install
(from rev 196417, calligra/trunk/calligra-plugins.install)
  calligra/repos/staging-x86_64/calligra-sheets.install
(from rev 196417, calligra/trunk/calligra-sheets.install)
  calligra/repos/staging-x86_64/calligra-stage.install
(from rev 196417, calligra/trunk/calligra-stage.install)
  calligra/repos/staging-x86_64/calligra-words.install
(from rev 196417, calligra/trunk/calligra-words.install)
  calligra/repos/staging-x86_64/calligra.install
(from rev 196417, calligra/trunk/calligra.install)

---+
 staging-i686/PKGBUILD |  229 
 staging-i686/calligra-braindump.install   |   12 +
 staging-i686/calligra-extras.install  |   11 +
 staging-i686/calligra-filters.install |   11 +
 staging-i686/calligra-flow.install|   12 +
 staging-i686/calligra-karbon.install  |   12 +
 staging-i686/calligra-kexi.install|   12 +
 staging-i686/calligra-krita.install   |   13 +
 staging-i686/calligra-plan.install|   12 +
 staging-i686/calligra-plugins.install |   11 +
 staging-i686/calligra-sheets.install  |   12 +
 staging-i686/calligra-stage.install   |   12 +
 staging-i686/calligra-words.install   |   12 +
 staging-i686/calligra.install |   11 +
 staging-x86_64/PKGBUILD   |  229 
 staging-x86_64/calligra-braindump.install |   12 +
 staging-x86_64/calligra-extras.install|   11 +
 staging-x86_64/calligra-filters.install   |   11 +
 staging-x86_64/calligra-flow.install  |   12 +
 staging-x86_64/calligra-karbon.install|   12 +
 staging-x86_64/calligra-kexi.install  |   12 +
 staging-x86_64/calligra-krita.install |   13 +
 staging-x86_64/calligra-plan.install  |   12 +
 staging-x86_64/calligra-plugins.install   |   11 +
 staging-x86_64/calligra-sheets.install|   12 +
 staging-x86_64/calligra-stage.install |   12 +
 staging-x86_64/calligra-words.install |   12 +
 staging-x86_64/calligra.install   |   11 +
 28 files changed, 764 insertions(+)

Copied: calligra/repos/

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

2013-10-13 Thread Andreas Radke
Date: Sunday, October 13, 2013 @ 12:32:42
  Author: andyrtr
Revision: 196417

upgpkg: calligra 2.7.3-2

rebuild for icu 52.1

Modified:
  calligra/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-10-13 09:18:09 UTC (rev 196416)
+++ PKGBUILD2013-10-13 10:32:42 UTC (rev 196417)
@@ -18,7 +18,7 @@
  'calligra-stage'
  'calligra-words')
 pkgver=2.7.3
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 url='http://www.calligra-suite.org/'
 license=('FDL1.2' 'GPL2' 'LGPL')



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

2013-10-13 Thread Andreas Radke
Date: Sunday, October 13, 2013 @ 11:18:09
  Author: andyrtr
Revision: 196416

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

Added:
  claws-mail/repos/extra-i686/PKGBUILD
(from rev 196415, claws-mail/trunk/PKGBUILD)
  claws-mail/repos/extra-i686/claws-mail.install
(from rev 196415, claws-mail/trunk/claws-mail.install)
  claws-mail/repos/extra-x86_64/PKGBUILD
(from rev 196415, claws-mail/trunk/PKGBUILD)
  claws-mail/repos/extra-x86_64/claws-mail.install
(from rev 196415, claws-mail/trunk/claws-mail.install)
Deleted:
  claws-mail/repos/extra-i686/PKGBUILD
  claws-mail/repos/extra-i686/claws-mail.install
  claws-mail/repos/extra-x86_64/PKGBUILD
  claws-mail/repos/extra-x86_64/claws-mail.install

-+
 /PKGBUILD   |  148 ++
 /claws-mail.install |   32 
 extra-i686/PKGBUILD |   75 ---
 extra-i686/claws-mail.install   |   16 
 extra-x86_64/PKGBUILD   |   75 ---
 extra-x86_64/claws-mail.install |   16 
 6 files changed, 180 insertions(+), 182 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-10-13 09:17:50 UTC (rev 196415)
+++ extra-i686/PKGBUILD 2013-10-13 09:18:09 UTC (rev 196416)
@@ -1,75 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke 
-
-pkgname=claws-mail
-pkgver=3.9.2
-pkgrel=3
-pkgdesc="A GTK+ based e-mail client."
-arch=('i686' 'x86_64')
-license=('GPL3')
-url="http://www.claws-mail.org";
-depends=('gtk2' 'gnutls' 'startup-notification' 'pilot-link' 'enchant'
- 'gpgme' 'libetpan>=1.1-4' 'libsm' 'dbus-glib' 'hicolor-icon-theme' 
'desktop-file-utils')
-makedepends=('compface' 'spamassassin' 'bogofilter' 'valgrind' 
- # dependencies for plugins
- 'libsoup' 'libgdata' 'webkitgtk2' 'libnotify' 'libcanberra' 
'poppler-glib' 'pygtk') 
- #'libchamplain' needed for geolocation plugin, disabled for now - 
most time it's not compatible with current gnome releases
-optdepends=('python2:   needed for some tools and python plugin'
-'perl:  needed for some tools and perl plugin'
-'spamassassin:  adds support for spamfiltering'
-'bogofilter:adds support for spamfiltering'
-'libnotify: for notification plugin'
-'libcanberra:   for notification plugin'
-'dbus:  for notification plugin'
-'libxml2:   for gtkhtml2_viewer and rssyl plugins'
-'curl:  for gtkhtml2_viewer, vcalendar, rssyl and 
spamreport plugins'
-'libarchive:for archive plugin and various other plugins'
-'libytnef:  for tnef_parse plugin'
-'webkitgtk2:for the fancy webkit html plugin'
-'libsoup:   for the fancy webkit html plugin'
-   'libgdata:  for gdata plugin'
-   'poppler-glib:  for pdf viewer plugin'
-   'ghostscript:   for pdf viewer plugin')
-replaces=('sylpheed-claws' 'claws-mail-extra-plugins')
-conflicts=('claws-mail-extra-plugins')
-provides=('claws')
-options=(!libtool)
-install=claws-mail.install
-source=(http://downloads.sourceforge.net/sourceforge/sylpheed-claws/${pkgname}-${pkgver}.tar.bz2{,.asc})
-md5sums=('90de2a265e65fbd9dffdbf428bb0ee28'
- 'SKIP')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  # fixes for python2
-  export PYTHON="/usr/bin/python2"
-  sed -i 's@^#!.*python.*@#!/usr/bin/python2@' tools/*.py
-  sed -i 's:python -c:python2 -c:g' configure
-  
-  ./configure --prefix=/usr --disable-static \
---enable-enchant \
---enable-gnutls \
---enable-ldap \
---enable-crash-dialog \
---enable-pgpmime-plugin \
---enable-spamassassin-plugin \
---enable-bogofilter-plugin \
---enable-jpilot \
-#--help
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-
-  # build and install extra tools
-  cd tools
-  make
-   # all executables and .conf files ; only top directory
-  find -maxdepth 1 -type f -and -perm /111 -or -name '*.conf' | while read i ; 
do
-  install -D -m755 ${i} \
-${pkgdir}/usr/lib/claws-mail/tools/${i}
-  done
-}

Copied: claws-mail/repos/extra-i686/PKGBUILD (from rev 196415, 
claws-mail/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-10-13 09:18:09 UTC (rev 196416)
@@ -0,0 +1,74 @@
+# $Id$
+# Maintainer: Andreas Radke 
+
+pkgname=claws-mail
+pkgver=3.9.2
+pkgrel=4
+pkgdesc="A GTK+ based e-mail client."
+arch=('i686' 'x86_64')
+license=('GPL3')
+url="http://www.claws-mail.org";
+depends=('gtk2' 'gnutls' 'startup-notification' 'enchant' 'gpgme' 
'libetpan>=1.1-4' 
+ 'libsm' 'dbus

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

2013-10-13 Thread Andreas Radke
Date: Sunday, October 13, 2013 @ 11:17:50
  Author: andyrtr
Revision: 196415

upgpkg: claws-mail 3.9.2-4

drop support for Palm OS devices; FS#36960

Modified:
  claws-mail/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-10-13 09:02:33 UTC (rev 196414)
+++ PKGBUILD2013-10-13 09:17:50 UTC (rev 196415)
@@ -3,13 +3,13 @@
 
 pkgname=claws-mail
 pkgver=3.9.2
-pkgrel=3
+pkgrel=4
 pkgdesc="A GTK+ based e-mail client."
 arch=('i686' 'x86_64')
 license=('GPL3')
 url="http://www.claws-mail.org";
-depends=('gtk2' 'gnutls' 'startup-notification' 'pilot-link' 'enchant'
- 'gpgme' 'libetpan>=1.1-4' 'libsm' 'dbus-glib' 'hicolor-icon-theme' 
'desktop-file-utils')
+depends=('gtk2' 'gnutls' 'startup-notification' 'enchant' 'gpgme' 
'libetpan>=1.1-4' 
+ 'libsm' 'dbus-glib' 'hicolor-icon-theme' 'desktop-file-utils')
 makedepends=('compface' 'spamassassin' 'bogofilter' 'valgrind' 
  # dependencies for plugins
  'libsoup' 'libgdata' 'webkitgtk2' 'libnotify' 'libcanberra' 
'poppler-glib' 'pygtk') 
@@ -40,7 +40,7 @@
  'SKIP')
 
 build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
+  cd ${pkgname}-${pkgver}
 
   # fixes for python2
   export PYTHON="/usr/bin/python2"
@@ -55,13 +55,12 @@
 --enable-pgpmime-plugin \
 --enable-spamassassin-plugin \
 --enable-bogofilter-plugin \
---enable-jpilot \
 #--help
   make
 }
 
 package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
+  cd ${pkgname}-${pkgver}
   make DESTDIR=${pkgdir} install
 
   # build and install extra tools