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

2013-12-05 Thread Jelle van der Waa
Date: Friday, December 6, 2013 @ 08:51:07
  Author: jelle
Revision: 102151

upgpkg: python-apsw 3.8.1-1

Modified:
  python-apsw/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-05 21:53:38 UTC (rev 102150)
+++ PKGBUILD2013-12-06 07:51:07 UTC (rev 102151)
@@ -4,26 +4,25 @@
 
 pkgbase=python-apsw
 pkgname=('python-apsw' 'python2-apsw')
-pkgver=3.7.17_r1
+pkgver=3.8.1
 pkgrel=1
 arch=('i686' 'x86_64')
 url="http://code.google.com/p/apsw/";
 license=('MIT')
 makedepends=('python' 'python2')
-source=("http://apsw.googlecode.com/files/apsw-${pkgver//_/-}.zip"; 'LICENSE')
-
-md5sums=('5393765e7ef55def11dae08149133136'
+source=("http://apsw.googlecode.com/files/apsw-${pkgver}-r1.zip"; 'LICENSE')
+md5sums=('83ffdbda803f9ea2091705d35ca6b0e5'
  'efc704d50cb39441d00f9dc76cbe6665')
 
 build() {
   cd $srcdir
-  cp -rf apsw-${pkgver//_/-} apsw2
+  cp -rf apsw-${pkgver}-r1 apsw2
 }
 
 package_python-apsw() {
 depends=('python' 'sqlite3>=3.7.5')
 pkgdesc="Python wrapper for SQLite"
-  cd $srcdir/apsw-${pkgver//_/-}
+  cd $srcdir/apsw-${pkgver}-r1
   python setup.py install --root=$pkgdir/
 
   install -D -m644 $srcdir/LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE



[arch-commits] Commit in python-apsw/repos/community-x86_64 (4 files)

2013-12-05 Thread Jelle van der Waa
Date: Friday, December 6, 2013 @ 08:51:15
  Author: jelle
Revision: 102152

archrelease: copy trunk to community-x86_64

Added:
  python-apsw/repos/community-x86_64/LICENSE
(from rev 102151, python-apsw/trunk/LICENSE)
  python-apsw/repos/community-x86_64/PKGBUILD
(from rev 102151, python-apsw/trunk/PKGBUILD)
Deleted:
  python-apsw/repos/community-x86_64/LICENSE
  python-apsw/repos/community-x86_64/PKGBUILD

--+
 LICENSE  |   30 +++---
 PKGBUILD |   81 ++---
 2 files changed, 55 insertions(+), 56 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2013-12-06 07:51:07 UTC (rev 102151)
+++ LICENSE 2013-12-06 07:51:15 UTC (rev 102152)
@@ -1,15 +0,0 @@
-Copyright (C) 2004-2009 Roger Binns
-
-This software is provided ‘as-is’, without any express or implied warranty. In 
no event will the authors be held liable
-for any damages arising from the use of this software.
-
-Permission is granted to anyone to use this software for any purpose, 
including commercial applications, and to alter it
-and redistribute it freely, subject to the following restrictions: 
-
-- The origin of this software must not be misrepresented; you must not claim 
that you wrote the original software. If
-  you use this software in a product, an acknowledgment in the product 
documentation would be appreciated but is not
-  required.
-
-- Altered source versions must be plainly marked as such, and must not be 
misrepresented as being the original software.
-
-- This notice may not be removed or altered from any source distribution.

Copied: python-apsw/repos/community-x86_64/LICENSE (from rev 102151, 
python-apsw/trunk/LICENSE)
===
--- LICENSE (rev 0)
+++ LICENSE 2013-12-06 07:51:15 UTC (rev 102152)
@@ -0,0 +1,15 @@
+Copyright (C) 2004-2009 Roger Binns
+
+This software is provided ‘as-is’, without any express or implied warranty. In 
no event will the authors be held liable
+for any damages arising from the use of this software.
+
+Permission is granted to anyone to use this software for any purpose, 
including commercial applications, and to alter it
+and redistribute it freely, subject to the following restrictions: 
+
+- The origin of this software must not be misrepresented; you must not claim 
that you wrote the original software. If
+  you use this software in a product, an acknowledgment in the product 
documentation would be appreciated but is not
+  required.
+
+- Altered source versions must be plainly marked as such, and must not be 
misrepresented as being the original software.
+
+- This notice may not be removed or altered from any source distribution.

Deleted: PKGBUILD
===
--- PKGBUILD2013-12-06 07:51:07 UTC (rev 102151)
+++ PKGBUILD2013-12-06 07:51:15 UTC (rev 102152)
@@ -1,41 +0,0 @@
-# Maintainer: Brendan MacDonell 
-# Former Maintainer: Linmiao Xu 
-# Contributor: Juan Miguel Cejuela 
-
-pkgbase=python-apsw
-pkgname=('python-apsw' 'python2-apsw')
-pkgver=3.7.17_r1
-pkgrel=1
-arch=('i686' 'x86_64')
-url="http://code.google.com/p/apsw/";
-license=('MIT')
-makedepends=('python' 'python2')
-source=("http://apsw.googlecode.com/files/apsw-${pkgver//_/-}.zip"; 'LICENSE')
-
-md5sums=('5393765e7ef55def11dae08149133136'
- 'efc704d50cb39441d00f9dc76cbe6665')
-
-build() {
-  cd $srcdir
-  cp -rf apsw-${pkgver//_/-} apsw2
-}
-
-package_python-apsw() {
-depends=('python' 'sqlite3>=3.7.5')
-pkgdesc="Python wrapper for SQLite"
-  cd $srcdir/apsw-${pkgver//_/-}
-  python setup.py install --root=$pkgdir/
-
-  install -D -m644 $srcdir/LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-
-package_python2-apsw() {
-depends=('python2' 'sqlite3>=3.7.5')
-pkgdesc="Python2 wrapper for SQLite"
-  cd $srcdir/apsw2
-  python2 setup.py install --root=$pkgdir/
-
-  install -D -m644 $srcdir/LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-

Copied: python-apsw/repos/community-x86_64/PKGBUILD (from rev 102151, 
python-apsw/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-12-06 07:51:15 UTC (rev 102152)
@@ -0,0 +1,40 @@
+# Maintainer: Brendan MacDonell 
+# Former Maintainer: Linmiao Xu 
+# Contributor: Juan Miguel Cejuela 
+
+pkgbase=python-apsw
+pkgname=('python-apsw' 'python2-apsw')
+pkgver=3.8.1
+pkgrel=1
+arch=('i686' 'x86_64')
+url="http://code.google.com/p/apsw/";
+license=('MIT')
+makedepends=('python' 'python2')
+source=("http://apsw.googlecode.com/files/apsw-${pkgver}-r1.zip"; 'LICENSE')
+md5sums=('83ffdbda803f9ea2091705d35ca6b0e5'
+ 'efc704d50cb39441d00f9dc76cbe6665')
+
+build() {
+  cd $srcdir
+  cp -rf apsw-${pkgver}-r1 apsw2
+}
+
+package_python-apsw() {
+depends=('python' 'sqlite3>=3.7.5'

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

2013-12-05 Thread Eric Bélanger
Date: Friday, December 6, 2013 @ 04:01:44
  Author: eric
Revision: 200822

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

Added:
  gtk-vnc/repos/extra-i686/PKGBUILD
(from rev 200821, gtk-vnc/trunk/PKGBUILD)
  gtk-vnc/repos/extra-x86_64/PKGBUILD
(from rev 200821, gtk-vnc/trunk/PKGBUILD)
Deleted:
  gtk-vnc/repos/extra-i686/PKGBUILD
  gtk-vnc/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-12-06 03:01:07 UTC (rev 200821)
+++ extra-i686/PKGBUILD 2013-12-06 03:01:44 UTC (rev 200822)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-# Contributor: Allan McRae 
-# Contributor: lp76 
-
-pkgname=gtk-vnc
-pkgver=0.5.2
-pkgrel=2
-pkgdesc="A VNC viewer widget for GTK"
-arch=('i686' 'x86_64')
-url="http://live.gnome.org/gtk-vnc";
-license=('LGPL')
-depends=('libgcrypt' 'gtk3')
-optdepends=('gtk2: GTK2 widget')
-makedepends=('intltool' 'pygtk' 'pygobject2-devel' 'gtk-doc' 'gtk2' 'vala' 
'gobject-introspection')
-source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz)
-sha256sums=('b51bda7edebb82ab142c292bd1b1493406bc8225a5c834d854bbafef9e9a471f')
-
-build() {
-  rm -rf gtk2-build gtk3-build
-  cp -a $pkgname-$pkgver gtk2-build
-  mv $pkgname-$pkgver gtk3-build
-
-  ( cd gtk2-build
-PYTHON=/usr/bin/python2 ./configure --prefix=/usr \
-  --with-python --disable-static --with-gtk=2.0
-make )
-
-  ( cd gtk3-build
-PYTHON=/usr/bin/python2 ./configure --prefix=/usr \
-  --with-python --with-examples --disable-static --with-gtk=3.0
-make )
-}
-
-package() {
-  make -C gtk2-build DESTDIR="${pkgdir}" install
-  make -C gtk3-build DESTDIR="${pkgdir}" install
-}

Copied: gtk-vnc/repos/extra-i686/PKGBUILD (from rev 200821, 
gtk-vnc/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-12-06 03:01:44 UTC (rev 200822)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+# Contributor: Allan McRae 
+# Contributor: lp76 
+
+pkgname=gtk-vnc
+pkgver=0.5.3
+pkgrel=1
+pkgdesc="A VNC viewer widget for GTK"
+arch=('i686' 'x86_64')
+url="https://wiki.gnome.org/Projects/gtk-vnc";
+license=('LGPL')
+depends=('libgcrypt' 'gtk3')
+optdepends=('gtk2: GTK2 widget')
+makedepends=('intltool' 'pygtk' 'pygobject2-devel' 'gtk-doc' 'gtk2' 'vala' 
'gobject-introspection')
+source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz)
+sha256sums=('d490a6c8f40e550d43aef0043ce3bec498ec220d5eb3dc5cdcff8fd561149caf')
+
+build() {
+  rm -rf gtk2-build gtk3-build
+  cp -a $pkgname-$pkgver gtk2-build
+  mv $pkgname-$pkgver gtk3-build
+
+  ( cd gtk2-build
+PYTHON=/usr/bin/python2 ./configure --prefix=/usr \
+  --with-python --disable-static --with-gtk=2.0
+make )
+
+  ( cd gtk3-build
+PYTHON=/usr/bin/python2 ./configure --prefix=/usr \
+  --with-python --with-examples --disable-static --with-gtk=3.0
+make )
+}
+
+package() {
+  make -C gtk2-build DESTDIR="${pkgdir}" install
+  make -C gtk3-build DESTDIR="${pkgdir}" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-12-06 03:01:07 UTC (rev 200821)
+++ extra-x86_64/PKGBUILD   2013-12-06 03:01:44 UTC (rev 200822)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-# Contributor: Allan McRae 
-# Contributor: lp76 
-
-pkgname=gtk-vnc
-pkgver=0.5.2
-pkgrel=2
-pkgdesc="A VNC viewer widget for GTK"
-arch=('i686' 'x86_64')
-url="http://live.gnome.org/gtk-vnc";
-license=('LGPL')
-depends=('libgcrypt' 'gtk3')
-optdepends=('gtk2: GTK2 widget')
-makedepends=('intltool' 'pygtk' 'pygobject2-devel' 'gtk-doc' 'gtk2' 'vala' 
'gobject-introspection')
-source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz)
-sha256sums=('b51bda7edebb82ab142c292bd1b1493406bc8225a5c834d854bbafef9e9a471f')
-
-build() {
-  rm -rf gtk2-build gtk3-build
-  cp -a $pkgname-$pkgver gtk2-build
-  mv $pkgname-$pkgver gtk3-build
-
-  ( cd gtk2-build
-PYTHON=/usr/bin/python2 ./configure --prefix=/usr \
-  --with-python --disable-static --with-gtk=2.0
-make )
-
-  ( cd gtk3-build
-PYTHON=/usr/bin/python2 ./configure --prefix=/usr \
-  --with-python --with-examples --disable-static --with-gtk=3.0
-make )
-}
-
-package() {
-  make -C gtk2-build DESTDIR="${pkgdir}" install
-  make -C gtk3-build DESTDIR="${pkgdir}" install

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

2013-12-05 Thread Eric Bélanger
Date: Friday, December 6, 2013 @ 04:01:07
  Author: eric
Revision: 200821

upgpkg: gtk-vnc 0.5.3-1

Upstream update, Update url

Modified:
  gtk-vnc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-06 01:37:19 UTC (rev 200820)
+++ PKGBUILD2013-12-06 03:01:07 UTC (rev 200821)
@@ -5,17 +5,17 @@
 # Contributor: lp76 
 
 pkgname=gtk-vnc
-pkgver=0.5.2
-pkgrel=2
+pkgver=0.5.3
+pkgrel=1
 pkgdesc="A VNC viewer widget for GTK"
 arch=('i686' 'x86_64')
-url="http://live.gnome.org/gtk-vnc";
+url="https://wiki.gnome.org/Projects/gtk-vnc";
 license=('LGPL')
 depends=('libgcrypt' 'gtk3')
 optdepends=('gtk2: GTK2 widget')
 makedepends=('intltool' 'pygtk' 'pygobject2-devel' 'gtk-doc' 'gtk2' 'vala' 
'gobject-introspection')
 
source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz)
-sha256sums=('b51bda7edebb82ab142c292bd1b1493406bc8225a5c834d854bbafef9e9a471f')
+sha256sums=('d490a6c8f40e550d43aef0043ce3bec498ec220d5eb3dc5cdcff8fd561149caf')
 
 build() {
   rm -rf gtk2-build gtk3-build



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

2013-12-05 Thread Dave Reisner
Date: Friday, December 6, 2013 @ 02:37:19
  Author: dreisner
Revision: 200820

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

Added:
  util-linux/repos/testing-i686/
  util-linux/repos/testing-i686/0001-lsblk-fix-D-segfault.patch
(from rev 200819, util-linux/trunk/0001-lsblk-fix-D-segfault.patch)
  
util-linux/repos/testing-i686/0001-pylibmount-correctly-import-from-pylibmount.so.patch
(from rev 200819, 
util-linux/trunk/0001-pylibmount-correctly-import-from-pylibmount.so.patch)
  util-linux/repos/testing-i686/PKGBUILD
(from rev 200819, util-linux/trunk/PKGBUILD)
  util-linux/repos/testing-i686/pam-common
(from rev 200819, util-linux/trunk/pam-common)
  util-linux/repos/testing-i686/pam-login
(from rev 200819, util-linux/trunk/pam-login)
  util-linux/repos/testing-i686/pam-su
(from rev 200819, util-linux/trunk/pam-su)
  util-linux/repos/testing-i686/util-linux.install
(from rev 200819, util-linux/trunk/util-linux.install)
  util-linux/repos/testing-i686/uuidd.tmpfiles
(from rev 200819, util-linux/trunk/uuidd.tmpfiles)
  util-linux/repos/testing-x86_64/
  util-linux/repos/testing-x86_64/0001-lsblk-fix-D-segfault.patch
(from rev 200819, util-linux/trunk/0001-lsblk-fix-D-segfault.patch)
  
util-linux/repos/testing-x86_64/0001-pylibmount-correctly-import-from-pylibmount.so.patch
(from rev 200819, 
util-linux/trunk/0001-pylibmount-correctly-import-from-pylibmount.so.patch)
  util-linux/repos/testing-x86_64/PKGBUILD
(from rev 200819, util-linux/trunk/PKGBUILD)
  util-linux/repos/testing-x86_64/pam-common
(from rev 200819, util-linux/trunk/pam-common)
  util-linux/repos/testing-x86_64/pam-login
(from rev 200819, util-linux/trunk/pam-login)
  util-linux/repos/testing-x86_64/pam-su
(from rev 200819, util-linux/trunk/pam-su)
  util-linux/repos/testing-x86_64/util-linux.install
(from rev 200819, util-linux/trunk/util-linux.install)
  util-linux/repos/testing-x86_64/uuidd.tmpfiles
(from rev 200819, util-linux/trunk/uuidd.tmpfiles)

--+
 testing-i686/0001-lsblk-fix-D-segfault.patch |   
45 
 testing-i686/0001-pylibmount-correctly-import-from-pylibmount.so.patch   |   
30 +++
 testing-i686/PKGBUILD|  
100 ++
 testing-i686/pam-common  |
6 
 testing-i686/pam-login   |
7 
 testing-i686/pam-su  |
9 
 testing-i686/util-linux.install  |   
21 ++
 testing-i686/uuidd.tmpfiles  |
1 
 testing-x86_64/0001-lsblk-fix-D-segfault.patch   |   
45 
 testing-x86_64/0001-pylibmount-correctly-import-from-pylibmount.so.patch |   
30 +++
 testing-x86_64/PKGBUILD  |  
100 ++
 testing-x86_64/pam-common|
6 
 testing-x86_64/pam-login |
7 
 testing-x86_64/pam-su|
9 
 testing-x86_64/util-linux.install|   
21 ++
 testing-x86_64/uuidd.tmpfiles|
1 
 16 files changed, 438 insertions(+)

Copied: util-linux/repos/testing-i686/0001-lsblk-fix-D-segfault.patch (from rev 
200819, util-linux/trunk/0001-lsblk-fix-D-segfault.patch)
===
--- testing-i686/0001-lsblk-fix-D-segfault.patch
(rev 0)
+++ testing-i686/0001-lsblk-fix-D-segfault.patch2013-12-06 01:37:19 UTC 
(rev 200820)
@@ -0,0 +1,45 @@
+From 71d842c01992b3678de4da4773ed54f08c0ab4f6 Mon Sep 17 00:00:00 2001
+From: Karel Zak 
+Date: Mon, 18 Nov 2013 11:27:35 +0100
+Subject: [PATCH] lsblk: fix -D segfault
+
+References: https://bugzilla.redhat.com/show_bug.cgi?id=1031262
+Signed-off-by: Karel Zak 
+---
+ misc-utils/lsblk.c | 6 +++---
+ 1 file changed, 3 insertions(+), 3 deletions(-)
+
+diff --git a/misc-utils/lsblk.c b/misc-utils/lsblk.c
+index 9f7f1b6..9b53be3 100644
+--- a/misc-utils/lsblk.c
 b/misc-utils/lsblk.c
+@@ -903,7 +903,7 @@ static void set_tt_data(struct blkdev_cxt *cxt, int col, 
int id, struct tt_line
+   if (cxt->discard && p)
+   tt_line_set_data(ln, col, p);
+   else
+-  tt_line_set_data(ln, col, "0");
++  tt_line_set_data(ln, col, xstrdup("0"));
+   break;
+   case COL_DGRAN:
+   if (lsblk->bytes)
+@@ -936,7 +936,7 @@ static void set_tt_data(struct blkdev_cxt *cxt, int col, 
int id, struct tt_line
+   if (cxt->discard && p)
+   tt_line

[arch-commits] Commit in util-linux/trunk (3 files)

2013-12-05 Thread Dave Reisner
Date: Friday, December 6, 2013 @ 02:36:31
  Author: dreisner
Revision: 200819

upgpkg: util-linux 2.24-2

- backport trivial fix for crash in losetup
- backport trivial fix for libpymount not being importable (FS#37861)

Added:
  util-linux/trunk/0001-lsblk-fix-D-segfault.patch
  util-linux/trunk/0001-pylibmount-correctly-import-from-pylibmount.so.patch
Modified:
  util-linux/trunk/PKGBUILD

---+
 0001-lsblk-fix-D-segfault.patch   |   45 
 0001-pylibmount-correctly-import-from-pylibmount.so.patch |   30 
 PKGBUILD  |   13 +++
 3 files changed, 87 insertions(+), 1 deletion(-)

Added: 0001-lsblk-fix-D-segfault.patch
===
--- 0001-lsblk-fix-D-segfault.patch (rev 0)
+++ 0001-lsblk-fix-D-segfault.patch 2013-12-06 01:36:31 UTC (rev 200819)
@@ -0,0 +1,45 @@
+From 71d842c01992b3678de4da4773ed54f08c0ab4f6 Mon Sep 17 00:00:00 2001
+From: Karel Zak 
+Date: Mon, 18 Nov 2013 11:27:35 +0100
+Subject: [PATCH] lsblk: fix -D segfault
+
+References: https://bugzilla.redhat.com/show_bug.cgi?id=1031262
+Signed-off-by: Karel Zak 
+---
+ misc-utils/lsblk.c | 6 +++---
+ 1 file changed, 3 insertions(+), 3 deletions(-)
+
+diff --git a/misc-utils/lsblk.c b/misc-utils/lsblk.c
+index 9f7f1b6..9b53be3 100644
+--- a/misc-utils/lsblk.c
 b/misc-utils/lsblk.c
+@@ -903,7 +903,7 @@ static void set_tt_data(struct blkdev_cxt *cxt, int col, 
int id, struct tt_line
+   if (cxt->discard && p)
+   tt_line_set_data(ln, col, p);
+   else
+-  tt_line_set_data(ln, col, "0");
++  tt_line_set_data(ln, col, xstrdup("0"));
+   break;
+   case COL_DGRAN:
+   if (lsblk->bytes)
+@@ -936,7 +936,7 @@ static void set_tt_data(struct blkdev_cxt *cxt, int col, 
int id, struct tt_line
+   if (cxt->discard && p)
+   tt_line_set_data(ln, col, p);
+   else
+-  tt_line_set_data(ln, col, "0");
++  tt_line_set_data(ln, col, xstrdup("0"));
+   break;
+   case COL_WSAME:
+   if (lsblk->bytes)
+@@ -948,7 +948,7 @@ static void set_tt_data(struct blkdev_cxt *cxt, int col, 
int id, struct tt_line
+  "queue/write_same_max_bytes", &x) == 
0)
+   p = size_to_human_string(SIZE_SUFFIX_1LETTER, 
x);
+   }
+-  tt_line_set_data(ln, col, p ? p : "0");
++  tt_line_set_data(ln, col, p ? p : xstrdup("0"));
+   break;
+   };
+ }
+-- 
+1.8.4.2
+

Added: 0001-pylibmount-correctly-import-from-pylibmount.so.patch
===
--- 0001-pylibmount-correctly-import-from-pylibmount.so.patch   
(rev 0)
+++ 0001-pylibmount-correctly-import-from-pylibmount.so.patch   2013-12-06 
01:36:31 UTC (rev 200819)
@@ -0,0 +1,30 @@
+From c8e5e6e7323642f7e6f12ee5f5231b0ec44c40ab Mon Sep 17 00:00:00 2001
+From: Dave Reisner 
+Date: Thu, 21 Nov 2013 12:25:27 -0500
+Subject: [PATCH] pylibmount: correctly import from pylibmount.so
+
+Without this, python is unable to find the module:
+
+$ python -c 'import libmount'
+Traceback (most recent call last):
+  File "", line 1, in 
+  File "/usr/lib/python3.3/site-packages/libmount/__init__.py", line 1, in 

+from pylibmount import *
+ImportError: No module named 'pylibmount'
+
+Signed-off-by: Dave Reisner 
+---
+ libmount/python/libmount/__init__.py | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/libmount/python/libmount/__init__.py 
b/libmount/python/libmount/__init__.py
+index 243c639..09104e2 100644
+--- a/libmount/python/libmount/__init__.py
 b/libmount/python/libmount/__init__.py
+@@ -1,2 +1,2 @@
+-from pylibmount import *
++from .pylibmount import *
+ 
+-- 
+1.8.4.2
+

Modified: PKGBUILD
===
--- PKGBUILD2013-12-05 23:40:49 UTC (rev 200818)
+++ PKGBUILD2013-12-06 01:36:31 UTC (rev 200819)
@@ -5,7 +5,7 @@
 
 pkgname=util-linux
 pkgver=2.24
-pkgrel=1
+pkgrel=2
 pkgdesc="Miscellaneous system utilities for Linux"
 url="http://www.kernel.org/pub/linux/utils/util-linux/";
 arch=('i686' 'x86_64')
@@ -19,6 +19,8 @@
 license=('GPL2')
 options=('strip' 'debug')
 
source=("ftp://ftp.kernel.org/pub/linux/utils/$pkgname/v2.24/$pkgname-$pkgver.tar.xz";
+0001-lsblk-fix-D-segfault.patch
+0001-pylibmount-correctly-import-from-pylibmount.so.patch
 uuidd.tmpfiles
 pam-login
 pam-common
@@ -30,11 +32,20 @@
 etc/pam.d/su-l)
 install=util-linux.install
 md5sums=('4fac6443427f575fc5f3531a4ad2ca01'
+ '1899fe3b853a5835c76cca0501b6b518'
+ 'a18a1e89ffdfa3bc96ae976646a

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

2013-12-05 Thread Jan Steffens
Date: Friday, December 6, 2013 @ 00:40:49
  Author: heftig
Revision: 200818

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

Added:
  gdm/repos/extra-i686/PKGBUILD
(from rev 200817, gdm/trunk/PKGBUILD)
  gdm/repos/extra-i686/arch-pam.patch
(from rev 200817, gdm/trunk/arch-pam.patch)
  gdm/repos/extra-i686/fix_external_program_directories.patch
(from rev 200817, gdm/trunk/fix_external_program_directories.patch)
  gdm/repos/extra-i686/gdm.install
(from rev 200817, gdm/trunk/gdm.install)
  gdm/repos/extra-i686/libgdm.install
(from rev 200817, gdm/trunk/libgdm.install)
  gdm/repos/extra-x86_64/PKGBUILD
(from rev 200817, gdm/trunk/PKGBUILD)
  gdm/repos/extra-x86_64/arch-pam.patch
(from rev 200817, gdm/trunk/arch-pam.patch)
  gdm/repos/extra-x86_64/fix_external_program_directories.patch
(from rev 200817, gdm/trunk/fix_external_program_directories.patch)
  gdm/repos/extra-x86_64/gdm.install
(from rev 200817, gdm/trunk/gdm.install)
  gdm/repos/extra-x86_64/libgdm.install
(from rev 200817, gdm/trunk/libgdm.install)
Deleted:
  gdm/repos/extra-i686/PKGBUILD
  gdm/repos/extra-i686/arch-pam.patch
  gdm/repos/extra-i686/fix_external_program_directories.patch
  gdm/repos/extra-i686/gdm.install
  gdm/repos/extra-x86_64/PKGBUILD
  gdm/repos/extra-x86_64/arch-pam.patch
  gdm/repos/extra-x86_64/fix_external_program_directories.patch
  gdm/repos/extra-x86_64/gdm.install

-+
 /PKGBUILD   |  174 
 /arch-pam.patch |  358 ++
 /fix_external_program_directories.patch |   24 +
 /gdm.install|   44 ++
 extra-i686/PKGBUILD |   83 
 extra-i686/arch-pam.patch   |  179 -
 extra-i686/fix_external_program_directories.patch   |   12 
 extra-i686/gdm.install  |   31 -
 extra-i686/libgdm.install   |   11 
 extra-x86_64/PKGBUILD   |   83 
 extra-x86_64/arch-pam.patch |  179 -
 extra-x86_64/fix_external_program_directories.patch |   12 
 extra-x86_64/gdm.install|   31 -
 extra-x86_64/libgdm.install |   11 
 14 files changed, 622 insertions(+), 610 deletions(-)

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


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

2013-12-05 Thread Jan Steffens
Date: Friday, December 6, 2013 @ 00:39:32
  Author: heftig
Revision: 200817

move schema to libgdm (for shell)

Added:
  gdm/trunk/libgdm.install
Modified:
  gdm/trunk/PKGBUILD
  gdm/trunk/gdm.install

+
 PKGBUILD   |8 ++--
 gdm.install|   11 +--
 libgdm.install |   11 +++
 3 files changed, 18 insertions(+), 12 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-12-05 23:23:31 UTC (rev 200816)
+++ PKGBUILD2013-12-05 23:39:32 UTC (rev 200817)
@@ -5,7 +5,7 @@
 pkgbase=gdm
 pkgname=(gdm libgdm)
 pkgver=3.10.0.1
-pkgrel=1
+pkgrel=2
 pkgdesc="Gnome Display Manager"
 arch=(i686 x86_64)
 license=(GPL)
@@ -72,12 +72,16 @@
 
 ### Split libgdm
   make -C gui/libgdm DESTDIR="$pkgdir" uninstall
+  mv "$pkgdir/usr/share/glib-2.0/schemas/org.gnome.login-screen.gschema.xml" 
"$srcdir"
 }
 
 package_libgdm() {
   pkgdesc="GDM support library"
-  depends=(systemd)
+  depends=(systemd glib2)
+  install=libgdm.install
 
   cd $pkgbase-$pkgver
   make -C gui/libgdm DESTDIR="$pkgdir" install
+  install -Dm644 "$srcdir/org.gnome.login-screen.gschema.xml" \
+"$pkgdir/usr/share/glib-2.0/schemas/org.gnome.login-screen.gschema.xml"
 }

Modified: gdm.install
===
--- gdm.install 2013-12-05 23:23:31 UTC (rev 200816)
+++ gdm.install 2013-12-05 23:39:32 UTC (rev 200817)
@@ -1,5 +1,3 @@
-pkgname=gdm
-
 post_install() {
   getent group gdm >/dev/null 2>&1 || groupadd -g 120 gdm
   getent passwd gdm > /dev/null 2>&1 || usr/sbin/useradd -c 'Gnome Display 
Manager' -u 120 -g gdm -d /var/lib/gdm -s /sbin/nologin gdm
@@ -7,25 +5,18 @@
   chown -R gdm:gdm /var/lib/gdm > /dev/null
   chown root:gdm /var/log/gdm > /dev/null
 
-  glib-compile-schemas /usr/share/glib-2.0/schemas
   gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
   dconf update
 }
 
-pre_upgrade() {
-  if [ -f /usr/share/gconf/schemas/${pkgname}.schemas ]; then
-gconfpkg --uninstall ${pkgname}
-  fi
-}
-
 post_upgrade() {
   post_install
 }
 
 post_remove() {
-  glib-compile-schemas /usr/share/glib-2.0/schemas
   dconf update
   gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+
   getent passwd gdm >/dev/null 2>&1 && userdel gdm
   getent group gdm >/dev/null 2>&1 && groupdel gdm
 }

Added: libgdm.install
===
--- libgdm.install  (rev 0)
+++ libgdm.install  2013-12-05 23:39:32 UTC (rev 200817)
@@ -0,0 +1,11 @@
+post_install() {
+  glib-compile-schemas /usr/share/glib-2.0/schemas
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}



[arch-commits] Commit in nvidia-304xx/repos (6 files)

2013-12-05 Thread Eric Bélanger
Date: Friday, December 6, 2013 @ 00:23:31
  Author: eric
Revision: 200816

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

Added:
  nvidia-304xx/repos/testing-i686/
  nvidia-304xx/repos/testing-i686/PKGBUILD
(from rev 200815, nvidia-304xx/trunk/PKGBUILD)
  nvidia-304xx/repos/testing-i686/nvidia.install
(from rev 200815, nvidia-304xx/trunk/nvidia.install)
  nvidia-304xx/repos/testing-x86_64/
  nvidia-304xx/repos/testing-x86_64/PKGBUILD
(from rev 200815, nvidia-304xx/trunk/PKGBUILD)
  nvidia-304xx/repos/testing-x86_64/nvidia.install
(from rev 200815, nvidia-304xx/trunk/nvidia.install)

---+
 testing-i686/PKGBUILD |   48 
 testing-i686/nvidia.install   |   15 
 testing-x86_64/PKGBUILD   |   48 
 testing-x86_64/nvidia.install |   15 
 4 files changed, 126 insertions(+)

Copied: nvidia-304xx/repos/testing-i686/PKGBUILD (from rev 200815, 
nvidia-304xx/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-12-05 23:23:31 UTC (rev 200816)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer : Thomas Baechler 
+
+pkgname=nvidia-304xx
+pkgver=304.116
+_extramodules=extramodules-3.12-ARCH
+pkgrel=3
+pkgdesc="NVIDIA drivers for linux, 304xx legacy branch"
+arch=('i686' 'x86_64')
+url="http://www.nvidia.com/";
+depends=('linux>=3.12' 'linux<3.13' "nvidia-304xx-utils=${pkgver}")
+makedepends=('linux-headers>=3.12' 'linux-headers<3.13')
+conflicts=('nvidia' 'nvidia-96xx' 'nvidia-173xx')
+license=('custom')
+install=nvidia.install
+options=(!strip)
+
+if [ "$CARCH" = "i686" ]; then
+_arch='x86'
+_pkg="NVIDIA-Linux-${_arch}-${pkgver}"
+
source=("ftp://download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run";)
+md5sums=('0626e8582fd81f14e7fbd906fbca1d51')
+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=('8b89d14e717ce7dd78c4d38cab930d1e')
+fi
+
+
+build() {
+_kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+cd "${srcdir}"
+sh "${_pkg}.run" --extract-only
+cd "${_pkg}/kernel"
+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"
+
+# the license file is part of nvidia-304xx-utils - the module depends on 
it, so we don't ship it another time.
+}

Copied: nvidia-304xx/repos/testing-i686/nvidia.install (from rev 200815, 
nvidia-304xx/trunk/nvidia.install)
===
--- testing-i686/nvidia.install (rev 0)
+++ testing-i686/nvidia.install 2013-12-05 23:23:31 UTC (rev 200816)
@@ -0,0 +1,15 @@
+post_install() {
+EXTRAMODULES='extramodules-3.12-ARCH'
+depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
+echo 'In order to use nvidia module, reboot the system.'
+}
+
+post_upgrade() {
+EXTRAMODULES='extramodules-3.12-ARCH'
+depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
+}
+
+post_remove() {
+EXTRAMODULES='extramodules-3.12-ARCH'
+depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
+}

Copied: nvidia-304xx/repos/testing-x86_64/PKGBUILD (from rev 200815, 
nvidia-304xx/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-12-05 23:23:31 UTC (rev 200816)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer : Thomas Baechler 
+
+pkgname=nvidia-304xx
+pkgver=304.116
+_extramodules=extramodules-3.12-ARCH
+pkgrel=3
+pkgdesc="NVIDIA drivers for linux, 304xx legacy branch"
+arch=('i686' 'x86_64')
+url="http://www.nvidia.com/";
+depends=('linux>=3.12' 'linux<3.13' "nvidia-304xx-utils=${pkgver}")
+makedepends=('linux-headers>=3.12' 'linux-headers<3.13')
+conflicts=('nvidia' 'nvidia-96xx' 'nvidia-173xx')
+license=('custom')
+install=nvidia.install
+options=(!strip)
+
+if [ "$CARCH" = "i686" ]; then
+_arch='x86'
+_pkg="NVIDIA-Linux-${_arch}-${pkgver}"
+
source=("ftp://download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run";)
+md5sums=('0626e8582fd81f14e7fbd906fbca1d51')
+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

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

2013-12-05 Thread Eric Bélanger
Date: Friday, December 6, 2013 @ 00:23:10
  Author: eric
Revision: 200815

upgpkg: nvidia-304xx 304.116-3

Rebuild against linux 3.12.3

Modified:
  nvidia-304xx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-05 23:14:05 UTC (rev 200814)
+++ PKGBUILD2013-12-05 23:23:10 UTC (rev 200815)
@@ -4,7 +4,7 @@
 pkgname=nvidia-304xx
 pkgver=304.116
 _extramodules=extramodules-3.12-ARCH
-pkgrel=2
+pkgrel=3
 pkgdesc="NVIDIA drivers for linux, 304xx legacy branch"
 arch=('i686' 'x86_64')
 url="http://www.nvidia.com/";



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

2013-12-05 Thread Eric Bélanger
Date: Friday, December 6, 2013 @ 00:14:05
  Author: eric
Revision: 200814

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

Added:
  nvidia/repos/testing-i686/
  nvidia/repos/testing-i686/PKGBUILD
(from rev 200813, nvidia/trunk/PKGBUILD)
  nvidia/repos/testing-i686/nvidia.install
(from rev 200813, nvidia/trunk/nvidia.install)
  nvidia/repos/testing-x86_64/
  nvidia/repos/testing-x86_64/PKGBUILD
(from rev 200813, nvidia/trunk/PKGBUILD)
  nvidia/repos/testing-x86_64/nvidia.install
(from rev 200813, nvidia/trunk/nvidia.install)

---+
 testing-i686/PKGBUILD |   51 
 testing-i686/nvidia.install   |   18 ++
 testing-x86_64/PKGBUILD   |   51 
 testing-x86_64/nvidia.install |   18 ++
 4 files changed, 138 insertions(+)

Copied: nvidia/repos/testing-i686/PKGBUILD (from rev 200813, 
nvidia/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-12-05 23:14:05 UTC (rev 200814)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer : Thomas Baechler 
+
+pkgname=nvidia
+pkgver=331.20
+_extramodules=extramodules-3.12-ARCH
+pkgrel=2
+pkgdesc="NVIDIA drivers for linux"
+arch=('i686' 'x86_64')
+url="http://www.nvidia.com/";
+depends=('linux>=3.12' 'linux<3.13' "nvidia-libgl" "nvidia-utils=${pkgver}")
+makedepends=('linux-headers>=3.12' 'linux-headers<3.13')
+conflicts=('nvidia-96xx' 'nvidia-173xx')
+license=('custom')
+install=nvidia.install
+options=(!strip)
+#source=('nvidia-linux-3.12.patch')
+#md5sums=('d267069bc456de269424b4e1b46a3745')
+
+if [ "$CARCH" = "i686" ]; then
+_arch='x86'
+_pkg="NVIDIA-Linux-${_arch}-${pkgver}"
+
source+=("ftp://download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run";)
+md5sums+=('801aa04a087891690f1cac09575b2ba9')
+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+=('28295eed56c2ca996401c0093279620f')
+fi
+
+prepare() {
+cd "${srcdir}"
+sh "${_pkg}.run" --extract-only
+cd "${_pkg}"
+}
+
+build() {
+_kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+cd "${srcdir}"/"${_pkg}"/kernel
+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.install (from rev 200813, 
nvidia/trunk/nvidia.install)
===
--- testing-i686/nvidia.install (rev 0)
+++ testing-i686/nvidia.install 2013-12-05 23:14:05 UTC (rev 200814)
@@ -0,0 +1,18 @@
+post_install() {
+EXTRAMODULES='extramodules-3.12-ARCH'
+depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
+echo 'In order to use nvidia module, reboot the system.'
+}
+
+post_upgrade() {
+EXTRAMODULES='extramodules-3.12-ARCH'
+depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
+if  [ "$(vercmp $2 310.19-2)" -lt 0 ]; then
+echo 'If your card is from the 7xxx series or earlier, install 
nvidia-304xx'
+fi
+}
+
+post_remove() {
+EXTRAMODULES='extramodules-3.12-ARCH'
+depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
+}

Copied: nvidia/repos/testing-x86_64/PKGBUILD (from rev 200813, 
nvidia/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-12-05 23:14:05 UTC (rev 200814)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer : Thomas Baechler 
+
+pkgname=nvidia
+pkgver=331.20
+_extramodules=extramodules-3.12-ARCH
+pkgrel=2
+pkgdesc="NVIDIA drivers for linux"
+arch=('i686' 'x86_64')
+url="http://www.nvidia.com/";
+depends=('linux>=3.12' 'linux<3.13' "nvidia-libgl" "nvidia-utils=${pkgver}")
+makedepends=('linux-headers>=3.12' 'linux-headers<3.13')
+conflicts=('nvidia-96xx' 'nvidia-173xx')
+license=('custom')
+install=nvidia.install
+options=(!strip)
+#source=('nvidia-linux-3.12.patch')
+#md5sums=('d267069bc456de269424b4e1b46a3745')
+
+if [ "$CARCH" = "i686" ]; then
+_arch='x86'
+_pkg="NVIDIA-Linux-${_arch}-${pkgver}"
+
source+=("ftp://download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run";)
+md5sums+=('801aa04a087891690f1cac09575b2ba9')
+elif [ "$CARCH" = "x86_64" ]; then
+_arch='x86_64'
+   _pkg="NVIDIA-Linux-${_arch}-${pkgv

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

2013-12-05 Thread Eric Bélanger
Date: Friday, December 6, 2013 @ 00:13:44
  Author: eric
Revision: 200813

upgpkg: nvidia 331.20-2

Rebuild against linux 3.12.3

Modified:
  nvidia/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-05 22:59:10 UTC (rev 200812)
+++ PKGBUILD2013-12-05 23:13:44 UTC (rev 200813)
@@ -4,7 +4,7 @@
 pkgname=nvidia
 pkgver=331.20
 _extramodules=extramodules-3.12-ARCH
-pkgrel=1
+pkgrel=2
 pkgdesc="NVIDIA drivers for linux"
 arch=('i686' 'x86_64')
 url="http://www.nvidia.com/";



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

2013-12-05 Thread Eric Bélanger
Date: Thursday, December 5, 2013 @ 23:59:10
  Author: eric
Revision: 200812

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

Added:
  nvidia-lts/repos/testing-i686/PKGBUILD
(from rev 200811, nvidia-lts/trunk/PKGBUILD)
  nvidia-lts/repos/testing-i686/nvidia-lts.install
(from rev 200811, nvidia-lts/trunk/nvidia-lts.install)
  nvidia-lts/repos/testing-x86_64/PKGBUILD
(from rev 200811, nvidia-lts/trunk/PKGBUILD)
  nvidia-lts/repos/testing-x86_64/nvidia-lts.install
(from rev 200811, nvidia-lts/trunk/nvidia-lts.install)
Deleted:
  nvidia-lts/repos/testing-i686/PKGBUILD
  nvidia-lts/repos/testing-i686/nvidia-lts.install
  nvidia-lts/repos/testing-x86_64/PKGBUILD
  nvidia-lts/repos/testing-x86_64/nvidia-lts.install

---+
 /PKGBUILD |   92 
 /nvidia-lts.install   |   30 +++
 testing-i686/PKGBUILD |   46 --
 testing-i686/nvidia-lts.install   |   15 -
 testing-x86_64/PKGBUILD   |   46 --
 testing-x86_64/nvidia-lts.install |   15 -
 6 files changed, 122 insertions(+), 122 deletions(-)

Deleted: testing-i686/PKGBUILD
===
--- testing-i686/PKGBUILD   2013-12-05 22:58:34 UTC (rev 200811)
+++ testing-i686/PKGBUILD   2013-12-05 22:59:10 UTC (rev 200812)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-
-pkgname=nvidia-lts
-pkgver=331.20
-_extramodules=extramodules-3.10-lts
-pkgrel=3
-pkgdesc="NVIDIA drivers for linux-lts"
-arch=('i686' 'x86_64')
-url="http://www.nvidia.com/";
-depends=('linux-lts>=3.10.20' "nvidia-utils=$pkgver")
-makedepends=('linux-lts-headers>=3.10.20')
-provides=('nvidia')
-license=('custom')
-install=nvidia-lts.install
-options=(!strip)
-
-if [ "$CARCH" = "i686" ]; then
-_arch='x86'
-_pkg="NVIDIA-Linux-${_arch}-${pkgver}"
-
source=("ftp://download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run";)
-md5sums=('801aa04a087891690f1cac09575b2ba9')
-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=('28295eed56c2ca996401c0093279620f')
-fi
-
-
-build() {
-  _kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
-  sh ${_pkg}.run --extract-only
-  cd "${_pkg}/kernel"
-  make SYSSRC=/usr/lib/modules/${_kernver}/build module
-}
-
-package() {
-  install -D -m644 "${srcdir}/${_pkg}/kernel/nvidia.ko" \
-"${pkgdir}/usr/lib/modules/${_extramodules}/kernel/drivers/video/nvidia.ko"
-  gzip 
"${pkgdir}/usr/lib/modules/${_extramodules}/kernel/drivers/video/nvidia.ko"
-  install -d -m755 "${pkgdir}/usr/lib/modprobe.d"
-  echo "blacklist nouveau" >> "${pkgdir}/usr/lib/modprobe.d/nvidia-lts.conf"
-  echo "blacklist nvidiafb" >> "${pkgdir}/usr/lib/modprobe.d/nvidia-lts.conf"
-  install -D -m644 "${srcdir}/${_pkg}/LICENSE" 
"${pkgdir}/usr/share/licenses/nvidia-lts/LICENSE"
-}

Copied: nvidia-lts/repos/testing-i686/PKGBUILD (from rev 200811, 
nvidia-lts/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-12-05 22:59:10 UTC (rev 200812)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=nvidia-lts
+pkgver=331.20
+_extramodules=extramodules-3.10-lts
+pkgrel=4
+pkgdesc="NVIDIA drivers for linux-lts"
+arch=('i686' 'x86_64')
+url="http://www.nvidia.com/";
+depends=('linux-lts>=3.10.22' "nvidia-utils=$pkgver")
+makedepends=('linux-lts-headers>=3.10.22')
+provides=('nvidia')
+license=('custom')
+install=nvidia-lts.install
+options=(!strip)
+
+if [ "$CARCH" = "i686" ]; then
+_arch='x86'
+_pkg="NVIDIA-Linux-${_arch}-${pkgver}"
+
source=("ftp://download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run";)
+md5sums=('801aa04a087891690f1cac09575b2ba9')
+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=('28295eed56c2ca996401c0093279620f')
+fi
+
+
+build() {
+  _kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+  sh ${_pkg}.run --extract-only
+  cd "${_pkg}/kernel"
+  make SYSSRC=/usr/lib/modules/${_kernver}/build module
+}
+
+package() {
+  install -D -m644 "${srcdir}/${_pkg}/kernel/nvidia.ko" \
+"${pkgdir}/usr/lib/modules/${_extramodules}/kernel/drivers/video/nvidia.ko"
+  gzip 
"${pkgdir}/usr/lib/modules/${_extramodules}/kernel/drivers/video/nvidia.ko"
+  install -d -m755 "${pkgdir}/usr/lib/modprobe.d"
+  echo "blacklist nouveau" >> "${pkgdir}/usr/lib/modprobe.d/nvidia-lts.conf"
+  echo "blacklist nvidiafb" >> "${pkgdir}/usr/lib/modprobe.d/nvidia-lts.conf"
+  install -D -m644 "${srcdir}/${_pkg}/LICENSE" 
"${pkgdir}/usr/share/licen

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

2013-12-05 Thread Eric Bélanger
Date: Thursday, December 5, 2013 @ 23:58:34
  Author: eric
Revision: 200811

upgpkg: nvidia-lts 331.20-4

Update versioned depends

Modified:
  nvidia-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-05 22:48:54 UTC (rev 200810)
+++ PKGBUILD2013-12-05 22:58:34 UTC (rev 200811)
@@ -4,12 +4,12 @@
 pkgname=nvidia-lts
 pkgver=331.20
 _extramodules=extramodules-3.10-lts
-pkgrel=3
+pkgrel=4
 pkgdesc="NVIDIA drivers for linux-lts"
 arch=('i686' 'x86_64')
 url="http://www.nvidia.com/";
-depends=('linux-lts>=3.10.20' "nvidia-utils=$pkgver")
-makedepends=('linux-lts-headers>=3.10.20')
+depends=('linux-lts>=3.10.22' "nvidia-utils=$pkgver")
+makedepends=('linux-lts-headers>=3.10.22')
 provides=('nvidia')
 license=('custom')
 install=nvidia-lts.install



[arch-commits] Commit in nvidia-304xx-lts/repos (6 files)

2013-12-05 Thread Eric Bélanger
Date: Thursday, December 5, 2013 @ 23:48:54
  Author: eric
Revision: 200810

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

Added:
  nvidia-304xx-lts/repos/testing-i686/
  nvidia-304xx-lts/repos/testing-i686/PKGBUILD
(from rev 200809, nvidia-304xx-lts/trunk/PKGBUILD)
  nvidia-304xx-lts/repos/testing-i686/nvidia-304xx-lts.install
(from rev 200809, nvidia-304xx-lts/trunk/nvidia-304xx-lts.install)
  nvidia-304xx-lts/repos/testing-x86_64/
  nvidia-304xx-lts/repos/testing-x86_64/PKGBUILD
(from rev 200809, nvidia-304xx-lts/trunk/PKGBUILD)
  nvidia-304xx-lts/repos/testing-x86_64/nvidia-304xx-lts.install
(from rev 200809, nvidia-304xx-lts/trunk/nvidia-304xx-lts.install)

-+
 testing-i686/PKGBUILD   |   47 ++
 testing-i686/nvidia-304xx-lts.install   |   15 +
 testing-x86_64/PKGBUILD |   47 ++
 testing-x86_64/nvidia-304xx-lts.install |   15 +
 4 files changed, 124 insertions(+)

Copied: nvidia-304xx-lts/repos/testing-i686/PKGBUILD (from rev 200809, 
nvidia-304xx-lts/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-12-05 22:48:54 UTC (rev 200810)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Andreas Radke 
+
+pkgname=nvidia-304xx-lts
+pkgver=304.116
+_extramodules=extramodules-3.10-lts
+pkgrel=2
+pkgdesc="NVIDIA drivers for linux-lts, 304xx legacy branch"
+arch=('i686' 'x86_64')
+url="http://www.nvidia.com/";
+depends=('linux-lts>=3.10.22' "nvidia-304xx-utils=${pkgver}")
+makedepends=('linux-lts-headers>=3.10.22')
+conflicts=('nvidia-lts' 'nvidia-96xx-lts' 'nvidia-173xx-lts')
+provides=('nvidia-304xx')
+license=('custom')
+install=nvidia-304xx-lts.install
+options=(!strip)
+
+if [ "$CARCH" = "i686" ]; then
+_arch='x86'
+_pkg="NVIDIA-Linux-${_arch}-${pkgver}"
+
source=("ftp://download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run";)
+md5sums=('0626e8582fd81f14e7fbd906fbca1d51')
+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=('8b89d14e717ce7dd78c4d38cab930d1e')
+fi
+
+build() {
+_kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+cd "${srcdir}"
+sh "${_pkg}.run" --extract-only
+cd "${_pkg}/kernel"
+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-304xx-lts.conf"
+echo "blacklist nvidiafb" >> 
"${pkgdir}/usr/lib/modprobe.d/nvidia-304xx-lts.conf"
+gzip "${pkgdir}/usr/lib/modules/${_extramodules}/nvidia.ko"
+install -D -m644 ${_pkg}/LICENSE 
"${pkgdir}/usr/share/licenses/nvidia-304xx-lts/LICENSE"
+}

Copied: nvidia-304xx-lts/repos/testing-i686/nvidia-304xx-lts.install (from rev 
200809, nvidia-304xx-lts/trunk/nvidia-304xx-lts.install)
===
--- testing-i686/nvidia-304xx-lts.install   (rev 0)
+++ testing-i686/nvidia-304xx-lts.install   2013-12-05 22:48:54 UTC (rev 
200810)
@@ -0,0 +1,15 @@
+post_install() {
+EXTRAMODULES='extramodules-3.10-lts'
+depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
+echo 'In order to use nvidia module, reboot the system.'
+}
+
+post_upgrade() {
+EXTRAMODULES='extramodules-3.10-lts'
+depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
+}
+
+post_remove() {
+EXTRAMODULES='extramodules-3.10-lts'
+depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
+}

Copied: nvidia-304xx-lts/repos/testing-x86_64/PKGBUILD (from rev 200809, 
nvidia-304xx-lts/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-12-05 22:48:54 UTC (rev 200810)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Andreas Radke 
+
+pkgname=nvidia-304xx-lts
+pkgver=304.116
+_extramodules=extramodules-3.10-lts
+pkgrel=2
+pkgdesc="NVIDIA drivers for linux-lts, 304xx legacy branch"
+arch=('i686' 'x86_64')
+url="http://www.nvidia.com/";
+depends=('linux-lts>=3.10.22' "nvidia-304xx-utils=${pkgver}")
+makedepends=('linux-lts-headers>=3.10.22')
+conflicts=('nvidia-lts' 'nvidia-96xx-lts' 'nvidia-173xx-lts')
+provides=('nvidia-304xx')
+license=('custom')
+install=nvidia-304xx-lts.install
+options=(!strip)
+
+if [ "$CARCH" = "i686" ]; then
+_arch='x86'
+_pkg="NVIDIA-Linux-${_arch}-${pkgver}"
+
source=("ftp://download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run";)
+md5sums=('0626e85

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

2013-12-05 Thread Eric Bélanger
Date: Thursday, December 5, 2013 @ 23:48:33
  Author: eric
Revision: 200809

upgpkg: nvidia-304xx-lts 304.116-2

Rebuild against linux-lts 3.10.22

Modified:
  nvidia-304xx-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-05 22:40:53 UTC (rev 200808)
+++ PKGBUILD2013-12-05 22:48:33 UTC (rev 200809)
@@ -4,12 +4,12 @@
 pkgname=nvidia-304xx-lts
 pkgver=304.116
 _extramodules=extramodules-3.10-lts
-pkgrel=1
+pkgrel=2
 pkgdesc="NVIDIA drivers for linux-lts, 304xx legacy branch"
 arch=('i686' 'x86_64')
 url="http://www.nvidia.com/";
-depends=('linux-lts>=3.10.20' "nvidia-304xx-utils=${pkgver}")
-makedepends=('linux-lts-headers>=3.10.20')
+depends=('linux-lts>=3.10.22' "nvidia-304xx-utils=${pkgver}")
+makedepends=('linux-lts-headers>=3.10.22')
 conflicts=('nvidia-lts' 'nvidia-96xx-lts' 'nvidia-173xx-lts')
 provides=('nvidia-304xx')
 license=('custom')



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

2013-12-05 Thread Eric Bélanger
Date: Thursday, December 5, 2013 @ 23:40:53
  Author: eric
Revision: 200808

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

Added:
  nvidia-lts/repos/testing-i686/
  nvidia-lts/repos/testing-i686/PKGBUILD
(from rev 200807, nvidia-lts/trunk/PKGBUILD)
  nvidia-lts/repos/testing-i686/nvidia-lts.install
(from rev 200807, nvidia-lts/trunk/nvidia-lts.install)
  nvidia-lts/repos/testing-x86_64/
  nvidia-lts/repos/testing-x86_64/PKGBUILD
(from rev 200807, nvidia-lts/trunk/PKGBUILD)
  nvidia-lts/repos/testing-x86_64/nvidia-lts.install
(from rev 200807, nvidia-lts/trunk/nvidia-lts.install)

---+
 testing-i686/PKGBUILD |   46 
 testing-i686/nvidia-lts.install   |   15 +++
 testing-x86_64/PKGBUILD   |   46 
 testing-x86_64/nvidia-lts.install |   15 +++
 4 files changed, 122 insertions(+)

Copied: nvidia-lts/repos/testing-i686/PKGBUILD (from rev 200807, 
nvidia-lts/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-12-05 22:40:53 UTC (rev 200808)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=nvidia-lts
+pkgver=331.20
+_extramodules=extramodules-3.10-lts
+pkgrel=3
+pkgdesc="NVIDIA drivers for linux-lts"
+arch=('i686' 'x86_64')
+url="http://www.nvidia.com/";
+depends=('linux-lts>=3.10.20' "nvidia-utils=$pkgver")
+makedepends=('linux-lts-headers>=3.10.20')
+provides=('nvidia')
+license=('custom')
+install=nvidia-lts.install
+options=(!strip)
+
+if [ "$CARCH" = "i686" ]; then
+_arch='x86'
+_pkg="NVIDIA-Linux-${_arch}-${pkgver}"
+
source=("ftp://download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run";)
+md5sums=('801aa04a087891690f1cac09575b2ba9')
+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=('28295eed56c2ca996401c0093279620f')
+fi
+
+
+build() {
+  _kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+  sh ${_pkg}.run --extract-only
+  cd "${_pkg}/kernel"
+  make SYSSRC=/usr/lib/modules/${_kernver}/build module
+}
+
+package() {
+  install -D -m644 "${srcdir}/${_pkg}/kernel/nvidia.ko" \
+"${pkgdir}/usr/lib/modules/${_extramodules}/kernel/drivers/video/nvidia.ko"
+  gzip 
"${pkgdir}/usr/lib/modules/${_extramodules}/kernel/drivers/video/nvidia.ko"
+  install -d -m755 "${pkgdir}/usr/lib/modprobe.d"
+  echo "blacklist nouveau" >> "${pkgdir}/usr/lib/modprobe.d/nvidia-lts.conf"
+  echo "blacklist nvidiafb" >> "${pkgdir}/usr/lib/modprobe.d/nvidia-lts.conf"
+  install -D -m644 "${srcdir}/${_pkg}/LICENSE" 
"${pkgdir}/usr/share/licenses/nvidia-lts/LICENSE"
+}

Copied: nvidia-lts/repos/testing-i686/nvidia-lts.install (from rev 200807, 
nvidia-lts/trunk/nvidia-lts.install)
===
--- testing-i686/nvidia-lts.install (rev 0)
+++ testing-i686/nvidia-lts.install 2013-12-05 22:40:53 UTC (rev 200808)
@@ -0,0 +1,15 @@
+post_install() {
+EXTRAMODULES='extramodules-3.10-lts'
+depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
+echo 'In order to use nvidia module, reboot the system.'
+}
+
+post_upgrade() {
+EXTRAMODULES='extramodules-3.10-lts'
+depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
+}
+
+post_remove() {
+EXTRAMODULES='extramodules-3.10-lts'
+depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
+}

Copied: nvidia-lts/repos/testing-x86_64/PKGBUILD (from rev 200807, 
nvidia-lts/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-12-05 22:40:53 UTC (rev 200808)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=nvidia-lts
+pkgver=331.20
+_extramodules=extramodules-3.10-lts
+pkgrel=3
+pkgdesc="NVIDIA drivers for linux-lts"
+arch=('i686' 'x86_64')
+url="http://www.nvidia.com/";
+depends=('linux-lts>=3.10.20' "nvidia-utils=$pkgver")
+makedepends=('linux-lts-headers>=3.10.20')
+provides=('nvidia')
+license=('custom')
+install=nvidia-lts.install
+options=(!strip)
+
+if [ "$CARCH" = "i686" ]; then
+_arch='x86'
+_pkg="NVIDIA-Linux-${_arch}-${pkgver}"
+
source=("ftp://download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run";)
+md5sums=('801aa04a087891690f1cac09575b2ba9')
+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=('28295eed56c2ca996401c0093279620f')
+fi
+
+
+build() {
+  _kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+  sh ${_pkg}.run --extract-only
+  

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

2013-12-05 Thread Eric Bélanger
Date: Thursday, December 5, 2013 @ 23:40:32
  Author: eric
Revision: 200807

upgpkg: nvidia-lts 331.20-3

Rebuild against linux-lts 3.10.22

Modified:
  nvidia-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-05 19:33:54 UTC (rev 200806)
+++ PKGBUILD2013-12-05 22:40:32 UTC (rev 200807)
@@ -4,7 +4,7 @@
 pkgname=nvidia-lts
 pkgver=331.20
 _extramodules=extramodules-3.10-lts
-pkgrel=2
+pkgrel=3
 pkgdesc="NVIDIA drivers for linux-lts"
 arch=('i686' 'x86_64')
 url="http://www.nvidia.com/";



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

2013-12-05 Thread Sébastien Luttringer
Date: Thursday, December 5, 2013 @ 22:53:38
  Author: seblu
Revision: 102150

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

Added:
  linux-tools/repos/community-i686/PKGBUILD
(from rev 102149, linux-tools/trunk/PKGBUILD)
  linux-tools/repos/community-i686/cpupower.default
(from rev 102149, linux-tools/trunk/cpupower.default)
  linux-tools/repos/community-i686/cpupower.install
(from rev 102149, linux-tools/trunk/cpupower.install)
  linux-tools/repos/community-i686/cpupower.service
(from rev 102149, linux-tools/trunk/cpupower.service)
  linux-tools/repos/community-i686/cpupower.systemd
(from rev 102149, linux-tools/trunk/cpupower.systemd)
  linux-tools/repos/community-i686/usbipd.service
(from rev 102149, linux-tools/trunk/usbipd.service)
  linux-tools/repos/community-x86_64/PKGBUILD
(from rev 102149, linux-tools/trunk/PKGBUILD)
  linux-tools/repos/community-x86_64/cpupower.default
(from rev 102149, linux-tools/trunk/cpupower.default)
  linux-tools/repos/community-x86_64/cpupower.install
(from rev 102149, linux-tools/trunk/cpupower.install)
  linux-tools/repos/community-x86_64/cpupower.service
(from rev 102149, linux-tools/trunk/cpupower.service)
  linux-tools/repos/community-x86_64/cpupower.systemd
(from rev 102149, linux-tools/trunk/cpupower.systemd)
  linux-tools/repos/community-x86_64/usbipd.service
(from rev 102149, linux-tools/trunk/usbipd.service)
Deleted:
  linux-tools/repos/community-i686/PKGBUILD
  linux-tools/repos/community-i686/cpupower.default
  linux-tools/repos/community-i686/cpupower.install
  linux-tools/repos/community-i686/cpupower.service
  linux-tools/repos/community-i686/cpupower.systemd
  linux-tools/repos/community-i686/usbipd.service
  linux-tools/repos/community-x86_64/PKGBUILD
  linux-tools/repos/community-x86_64/cpupower.default
  linux-tools/repos/community-x86_64/cpupower.install
  linux-tools/repos/community-x86_64/cpupower.service
  linux-tools/repos/community-x86_64/cpupower.systemd
  linux-tools/repos/community-x86_64/usbipd.service

---+
 /PKGBUILD |  332 
 /cpupower.default |   58 ++
 /cpupower.install |   26 ++
 /cpupower.service |   20 ++
 /cpupower.systemd |   64 ++
 /usbipd.service   |   18 +
 community-i686/PKGBUILD   |  165 -
 community-i686/cpupower.default   |   29 ---
 community-i686/cpupower.install   |   13 -
 community-i686/cpupower.service   |   10 -
 community-i686/cpupower.systemd   |   32 ---
 community-i686/usbipd.service |9 
 community-x86_64/PKGBUILD |  165 -
 community-x86_64/cpupower.default |   29 ---
 community-x86_64/cpupower.install |   13 -
 community-x86_64/cpupower.service |   10 -
 community-x86_64/cpupower.systemd |   32 ---
 community-x86_64/usbipd.service   |9 
 18 files changed, 518 insertions(+), 516 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-12-05 21:51:01 UTC (rev 102149)
+++ community-i686/PKGBUILD 2013-12-05 21:53:38 UTC (rev 102150)
@@ -1,165 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Luttringer
-
-pkgbase=linux-tools
-pkgname=('linux-tools-meta'
- 'libtraceevent'
- 'perf'
- 'cpupower'
- 'x86_energy_perf_policy'
- 'usbip')
-pkgver=3.12
-pkgrel=1
-license=('GPL2')
-arch=('i686' 'x86_64')
-url='http://www.kernel.org'
-options=('!strip')
-# split packages need all package dependencies set manually in makedepends
-# kernel source deps
-makedepends=('asciidoc' 'xmlto')
-# perf deps
-makedepends+=('perl' 'python2' 'libnewt' 'elfutils' 'audit' 'libunwind')
-# cpupower deps
-makedepends+=('pciutils')
-# usbip deps
-makedepends+=('glib2' 'sysfsutils')
-groups=("$pkgbase")
-source=("http://ftp.kernel.org/pub/linux/kernel/v3.x/linux-$pkgver.tar.xz";
-#"http://ftp.kernel.org/pub/linux/kernel/v3.x/patch-$pkgver.5.xz";
-'cpupower.default'
-'cpupower.systemd'
-'cpupower.service'
-'usbipd.service')
-# http://www.kernel.org/pub/linux/kernel/v3.x/sha256sums.asc
-sha256sums=('2e120ec7fde19fa51dc6b6cc11c81860a0775defcad5a5bf910ed9a50e845a02'
-'4fa509949d6863d001075fa3e8671eff2599c046d20c98bb4a70778595cd1c3f'
-'fbf6e0ce6eb0ef15703fe212958de6ca46e62188900b5e9f9272ed3cc9cfd54e'
-'a89284d0ecb556ca53a66d1c2087b5fd6d0a901ab2769cd3aebb93f4478905dc'
-'2e187734d8aec58a3046d79883510d779aa93fb3ab20bd3132c1a607ebe5498f')
-
-#prepare() {
-#  # apply stable patching set
-#  cd linux-$pkgver
-#  patch -N -p1 -i "$srcdir/patch-$pkgver.5"
-#}
-
-build() {
-  msg2 'Build libtraceevent'
-  pushd linux-$pkgver/tools/lib/traceevent
-  make
-  popd
-
-  msg2 'Build perf'
-  pushd linux-$pkgver/tools/perf
-  make \
-WERROR=0 \
-DEST

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

2013-12-05 Thread Sébastien Luttringer
Date: Thursday, December 5, 2013 @ 22:51:01
  Author: seblu
Revision: 102149

upgpkg: linux-tools 3.12-2

Modified:
  linux-tools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-05 21:16:17 UTC (rev 102148)
+++ PKGBUILD2013-12-05 21:51:01 UTC (rev 102149)
@@ -9,7 +9,7 @@
  'x86_energy_perf_policy'
  'usbip')
 pkgver=3.12
-pkgrel=1
+pkgrel=2
 license=('GPL2')
 arch=('i686' 'x86_64')
 url='http://www.kernel.org'
@@ -25,7 +25,7 @@
 makedepends+=('glib2' 'sysfsutils')
 groups=("$pkgbase")
 source=("http://ftp.kernel.org/pub/linux/kernel/v3.x/linux-$pkgver.tar.xz";
-#"http://ftp.kernel.org/pub/linux/kernel/v3.x/patch-$pkgver.5.xz";
+"http://ftp.kernel.org/pub/linux/kernel/v3.x/patch-$pkgver.3.xz";
 'cpupower.default'
 'cpupower.systemd'
 'cpupower.service'
@@ -32,6 +32,7 @@
 'usbipd.service')
 # http://www.kernel.org/pub/linux/kernel/v3.x/sha256sums.asc
 sha256sums=('2e120ec7fde19fa51dc6b6cc11c81860a0775defcad5a5bf910ed9a50e845a02'
+'22f2f3249e9014693a487c9734dc4142d89ed8bd9e3b2a74128208f5ea7e47d6'
 '4fa509949d6863d001075fa3e8671eff2599c046d20c98bb4a70778595cd1c3f'
 'fbf6e0ce6eb0ef15703fe212958de6ca46e62188900b5e9f9272ed3cc9cfd54e'
 'a89284d0ecb556ca53a66d1c2087b5fd6d0a901ab2769cd3aebb93f4478905dc'



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

2013-12-05 Thread Sergej Pupykin
Date: Thursday, December 5, 2013 @ 22:16:17
  Author: spupykin
Revision: 102148

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

Added:
  libvirt-python/repos/community-i686/PKGBUILD
(from rev 102147, libvirt-python/trunk/PKGBUILD)
  libvirt-python/repos/community-i686/libvirt-python.install
(from rev 102147, libvirt-python/trunk/libvirt-python.install)
  libvirt-python/repos/community-x86_64/PKGBUILD
(from rev 102147, libvirt-python/trunk/PKGBUILD)
  libvirt-python/repos/community-x86_64/libvirt-python.install
(from rev 102147, libvirt-python/trunk/libvirt-python.install)
Deleted:
  libvirt-python/repos/community-i686/PKGBUILD
  libvirt-python/repos/community-i686/libvirt-python.install
  libvirt-python/repos/community-x86_64/PKGBUILD
  libvirt-python/repos/community-x86_64/libvirt-python.install

-+
 /PKGBUILD   |   66 ++
 /libvirt-python.install |6 ++
 community-i686/PKGBUILD |   36 
 community-i686/libvirt-python.install   |3 -
 community-x86_64/PKGBUILD   |   36 
 community-x86_64/libvirt-python.install |3 -
 6 files changed, 72 insertions(+), 78 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-12-05 21:16:03 UTC (rev 102147)
+++ community-i686/PKGBUILD 2013-12-05 21:16:17 UTC (rev 102148)
@@ -1,36 +0,0 @@
-# $Id: PKGBUILD 101980 2013-12-03 09:48:38Z spupykin $
-# Maintainer: Sergej Pupykin 
-# Contributor: Jonathan Wiersma 
-
-pkgname=libvirt-python
-pkgver=1.2.0
-pkgrel=1
-pkgdesc="libvirt python binding"
-arch=('i686' 'x86_64')
-url="http://libvirt.org/";
-license=('LGPL')
-depends=('python2' 'libvirt')
-options=('emptydirs')
-install="libvirt-python.install"
-source=("ftp://libvirt.org/libvirt/python/$pkgname-$pkgver.tar.gz";)
-md5sums=('38158e5740be65f17eef9f99ffa5dadf')
-
-prepare() {
-  cd "$srcdir/$pkgname-$pkgver"
-  export PYTHON=`which python2`
-  for file in $(find . -name '*.py' -print); do
-sed -i 's_#!.*/usr/bin/python_#!/usr/bin/python2_' $file
-sed -i 's_#!.*/usr/bin/env.*python_#!/usr/bin/env python2_' $file
-sed -i 's_"python"_"python2"_g' $file
-  done
-}
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  python2 setup.py build
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  python2 setup.py install --root=$pkgdir
-}

Copied: libvirt-python/repos/community-i686/PKGBUILD (from rev 102147, 
libvirt-python/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-12-05 21:16:17 UTC (rev 102148)
@@ -0,0 +1,33 @@
+# $Id: PKGBUILD 101980 2013-12-03 09:48:38Z spupykin $
+# Maintainer: Sergej Pupykin 
+# Contributor: Jonathan Wiersma 
+
+pkgname=libvirt-python
+pkgver=1.2.0
+pkgrel=2
+pkgdesc="libvirt python binding"
+arch=('i686' 'x86_64')
+url="http://libvirt.org/";
+license=('LGPL')
+depends=('python2' 'libvirt')
+options=('emptydirs')
+install="libvirt-python.install"
+source=("ftp://libvirt.org/libvirt/python/$pkgname-$pkgver.tar.gz";
+   
"python-fix.patch::http://libvirt.org/git/?p=libvirt-python.git;a=patch;h=9d9e2513c09e7ba7474c94455e5f82b3d00e6396";)
+md5sums=('38158e5740be65f17eef9f99ffa5dadf'
+ 'ba2e5b0d5906a25a6e8a857156d55b61')
+
+prepare() {
+  cd "$srcdir/$pkgname-$pkgver"
+  patch -p1 <$srcdir/python-fix.patch
+}
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  python2 setup.py build
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  python2 setup.py install --root=$pkgdir
+}

Deleted: community-i686/libvirt-python.install
===
--- community-i686/libvirt-python.install   2013-12-05 21:16:03 UTC (rev 
102147)
+++ community-i686/libvirt-python.install   2013-12-05 21:16:17 UTC (rev 
102148)
@@ -1,3 +0,0 @@
-post_remove() {
-   rm -f /usr/lib/python[0-9].[0-9]/site-packages/libvirt.pyc
-}

Copied: libvirt-python/repos/community-i686/libvirt-python.install (from rev 
102147, libvirt-python/trunk/libvirt-python.install)
===
--- community-i686/libvirt-python.install   (rev 0)
+++ community-i686/libvirt-python.install   2013-12-05 21:16:17 UTC (rev 
102148)
@@ -0,0 +1,3 @@
+post_remove() {
+   rm -f /usr/lib/python[0-9].[0-9]/site-packages/libvirt.pyc
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2013-12-05 21:16:03 UTC (rev 102147)
+++ community-x86_64/PKGBUILD   2013-12-05 21:16:17 UTC (rev 102148)
@@ -1,36 +0,0 @@
-# $Id: PKGBUILD 101980 2013-12-03 09:48:38Z spupykin $
-# Maintainer: Sergej Pupykin 
-# Contributor: Jonathan Wiersma 
-
-pkgname=libvi

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

2013-12-05 Thread Sergej Pupykin
Date: Thursday, December 5, 2013 @ 22:16:03
  Author: spupykin
Revision: 102147

upgpkg: libvirt-python 1.2.0-2

upd

Modified:
  libvirt-python/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-05 21:14:10 UTC (rev 102146)
+++ PKGBUILD2013-12-05 21:16:03 UTC (rev 102147)
@@ -4,7 +4,7 @@
 
 pkgname=libvirt-python
 pkgver=1.2.0
-pkgrel=1
+pkgrel=2
 pkgdesc="libvirt python binding"
 arch=('i686' 'x86_64')
 url="http://libvirt.org/";
@@ -12,17 +12,14 @@
 depends=('python2' 'libvirt')
 options=('emptydirs')
 install="libvirt-python.install"
-source=("ftp://libvirt.org/libvirt/python/$pkgname-$pkgver.tar.gz";)
-md5sums=('38158e5740be65f17eef9f99ffa5dadf')
+source=("ftp://libvirt.org/libvirt/python/$pkgname-$pkgver.tar.gz";
+   
"python-fix.patch::http://libvirt.org/git/?p=libvirt-python.git;a=patch;h=9d9e2513c09e7ba7474c94455e5f82b3d00e6396";)
+md5sums=('38158e5740be65f17eef9f99ffa5dadf'
+ 'ba2e5b0d5906a25a6e8a857156d55b61')
 
 prepare() {
   cd "$srcdir/$pkgname-$pkgver"
-  export PYTHON=`which python2`
-  for file in $(find . -name '*.py' -print); do
-sed -i 's_#!.*/usr/bin/python_#!/usr/bin/python2_' $file
-sed -i 's_#!.*/usr/bin/env.*python_#!/usr/bin/env python2_' $file
-sed -i 's_"python"_"python2"_g' $file
-  done
+  patch -p1 <$srcdir/python-fix.patch
 }
 
 build() {



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

2013-12-05 Thread Sergej Pupykin
Date: Thursday, December 5, 2013 @ 22:13:52
  Author: spupykin
Revision: 102144

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-12-05 21:13:32 UTC (rev 102143)
+++ community-i686/PKGBUILD 2013-12-05 21:13:52 UTC (rev 102144)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Andreas Wagner 
-
-pkgname=liblockfile
-pkgver=1.08_4
-_basever=1.08
-pkgrel=3
-pkgdesc="a library with NFS-safe locking functions"
-arch=('i686' 'x86_64')
-license=('GPL')
-url="http://packages.debian.org/unstable/libs/liblockfile1";
-depends=('glibc')
-makedepends=()
-source=(http://ftp.debian.org/debian/pool/main/libl/$pkgname/${pkgname}_${_basever}.orig.tar.gz
-   
http://ftp.debian.org/debian/pool/main/libl/$pkgname/${pkgname}_${pkgver/_/-}.debian.tar.bz2)
-md5sums=('c24e2dfb4a2aab0263fe5ac1564d305e'
- '50c0c049d2838704f5720f5fd9eaddac')
-
-build() {
-  cd $srcdir/$pkgname-${_basever}
-  for p in `cat ../debian/patches/series` ; do
-patch -p1 < ../debian/patches/$p
-  done
-  ./configure --prefix=/usr --mandir=/usr/share/man
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-${_basever}
-  mkdir -p $pkgdir/usr/{lib,bin,include,share/man/man1,share/man/man3}
-  make install prefix=$pkgdir/usr mandir=$pkgdir/usr/share/man
-}

Copied: liblockfile/repos/community-i686/PKGBUILD (from rev 102143, 
liblockfile/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-12-05 21:13:52 UTC (rev 102144)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Andreas Wagner 
+
+pkgname=liblockfile
+pkgver=1.08_4
+_basever=1.08
+pkgrel=4
+pkgdesc="a library with NFS-safe locking functions"
+arch=('i686' 'x86_64')
+license=('GPL')
+url="http://packages.debian.org/unstable/libs/liblockfile1";
+depends=('glibc')
+makedepends=()
+source=(http://ftp.debian.org/debian/pool/main/libl/$pkgname/${pkgname}_${_basever}.orig.tar.gz
+   
http://ftp.debian.org/debian/pool/main/libl/$pkgname/${pkgname}_${pkgver/_/-}.debian.tar.bz2)
+md5sums=('c24e2dfb4a2aab0263fe5ac1564d305e'
+ '50c0c049d2838704f5720f5fd9eaddac')
+
+build() {
+  cd $srcdir/$pkgname-${_basever}
+  for p in `cat ../debian/patches/series` ; do
+patch -p1 < ../debian/patches/$p
+  done
+  LDCONFIG=/usr/bin/true ./configure --enable-shared --prefix=/usr 
--mandir=/usr/share/man
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-${_basever}
+  mkdir -p $pkgdir/usr/{lib,bin,include,share/man/man1,share/man/man3}
+  make install prefix=$pkgdir/usr mandir=$pkgdir/usr/share/man
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2013-12-05 21:13:32 UTC (rev 102143)
+++ community-x86_64/PKGBUILD   2013-12-05 21:13:52 UTC (rev 102144)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Andreas Wagner 
-
-pkgname=liblockfile
-pkgver=1.08_4
-_basever=1.08
-pkgrel=3
-pkgdesc="a library with NFS-safe locking functions"
-arch=('i686' 'x86_64')
-license=('GPL')
-url="http://packages.debian.org/unstable/libs/liblockfile1";
-depends=('glibc')
-makedepends=()
-source=(http://ftp.debian.org/debian/pool/main/libl/$pkgname/${pkgname}_${_basever}.orig.tar.gz
-   
http://ftp.debian.org/debian/pool/main/libl/$pkgname/${pkgname}_${pkgver/_/-}.debian.tar.bz2)
-md5sums=('c24e2dfb4a2aab0263fe5ac1564d305e'
- '50c0c049d2838704f5720f5fd9eaddac')
-
-build() {
-  cd $srcdir/$pkgname-${_basever}
-  for p in `cat ../debian/patches/series` ; do
-patch -p1 < ../debian/patches/$p
-  done
-  ./configure --prefix=/usr --mandir=/usr/share/man
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-${_basever}
-  mkdir -p $pkgdir/usr/{lib,bin,include,share/man/man1,share/man/man3}
-  make install prefix=$pkgdir/usr mandir=$pkgdir/usr/share/man
-}

Copied: liblockfile/repos/community-x86_64/PKGBUILD (from rev 102143, 
liblockfile/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2013-12-05 21:13:52 UTC (rev 102144)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Andr

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

2013-12-05 Thread Sergej Pupykin
Date: Thursday, December 5, 2013 @ 22:14:10
  Author: spupykin
Revision: 102146

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

Added:
  parole/repos/community-i686/PKGBUILD
(from rev 102145, parole/trunk/PKGBUILD)
  parole/repos/community-i686/parole.install
(from rev 102145, parole/trunk/parole.install)
  parole/repos/community-x86_64/PKGBUILD
(from rev 102145, parole/trunk/PKGBUILD)
  parole/repos/community-x86_64/parole.install
(from rev 102145, parole/trunk/parole.install)
Deleted:
  parole/repos/community-i686/PKGBUILD
  parole/repos/community-i686/parole.install
  parole/repos/community-x86_64/PKGBUILD
  parole/repos/community-x86_64/parole.install

-+
 /PKGBUILD   |   72 ++
 /parole.install |   24 
 community-i686/PKGBUILD |   36 ---
 community-i686/parole.install   |   12 --
 community-x86_64/PKGBUILD   |   36 ---
 community-x86_64/parole.install |   12 --
 6 files changed, 96 insertions(+), 96 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-12-05 21:13:56 UTC (rev 102145)
+++ community-i686/PKGBUILD 2013-12-05 21:14:10 UTC (rev 102146)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: TDY 
-
-pkgname=parole
-pkgver=0.5.3
-pkgrel=1
-pkgdesc="A modern media player based on the GStreamer framework"
-arch=('i686' 'x86_64')
-url="http://goodies.xfce.org/projects/applications/parole/";
-license=('GPL')
-depends=('gstreamer' 'gst-plugins-base-libs' 'hicolor-icon-theme' 
'libnotify>=0.4.1'
- 'libxfce4ui>=4.7.0' 'taglib>=1.4' 'desktop-file-utils' 
'gst-plugins-good')
-makedepends=('pkgconfig>=0.9.0' 'xfce4-dev-tools')
-optdepends=('xulrunner: browser plugin'
-   'gst-libav'
-   'gst-plugins-bad'
-   'gst-plugins-base'
-   'gst-plugins-ugly')
-conflicts=('parole-media-player-git')
-install=parole.install
-source=(http://git.xfce.org/apps/parole/snapshot/parole-$pkgver.tar.bz2)
-md5sums=('51c49684322079c216d80fe6193f1614')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  sed -i 's|AM_CONFIG_HEADER|AC_CONFIG_HEADER|g' configure.ac.in
-  ./autogen.sh --prefix=/usr --libexecdir=/usr/lib \
---enable-taglib --enable-libnotify --with-gstreamer=1.0
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}

Copied: parole/repos/community-i686/PKGBUILD (from rev 102145, 
parole/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-12-05 21:14:10 UTC (rev 102146)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: TDY 
+
+pkgname=parole
+pkgver=0.5.4
+pkgrel=1
+pkgdesc="A modern media player based on the GStreamer framework"
+arch=('i686' 'x86_64')
+url="http://goodies.xfce.org/projects/applications/parole/";
+license=('GPL')
+depends=('gstreamer' 'gst-plugins-base-libs' 'hicolor-icon-theme' 
'libnotify>=0.4.1'
+ 'libxfce4ui>=4.7.0' 'taglib>=1.4' 'desktop-file-utils' 
'gst-plugins-good')
+makedepends=('pkgconfig>=0.9.0' 'xfce4-dev-tools')
+optdepends=('xulrunner: browser plugin'
+   'gst-libav'
+   'gst-plugins-bad'
+   'gst-plugins-base'
+   'gst-plugins-ugly')
+conflicts=('parole-media-player-git')
+install=parole.install
+source=(http://git.xfce.org/apps/parole/snapshot/parole-$pkgver.tar.bz2)
+md5sums=('19ae948309472429b669eed8ac290dcd')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  sed -i 's|AM_CONFIG_HEADER|AC_CONFIG_HEADER|g' configure.ac.in
+  ./autogen.sh --prefix=/usr --libexecdir=/usr/lib \
+--enable-taglib --enable-libnotify --with-gstreamer=1.0
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}

Deleted: community-i686/parole.install
===
--- community-i686/parole.install   2013-12-05 21:13:56 UTC (rev 102145)
+++ community-i686/parole.install   2013-12-05 21:14:10 UTC (rev 102146)
@@ -1,12 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  post_install $1
-}

Copied: parole/repos/community-i686/parole.install (from rev 102145, 
parole/trunk/parole.install)
===
--- community-i686/parole.install   (rev 0)
+++ community-i686/parole.install   2013-12-05 21:14:10 UTC (rev 102146)
@@ -0,0 +1,12 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  post_ins

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

2013-12-05 Thread Sergej Pupykin
Date: Thursday, December 5, 2013 @ 22:13:56
  Author: spupykin
Revision: 102145

upgpkg: parole 0.5.4-1

upd

Modified:
  parole/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-05 21:13:52 UTC (rev 102144)
+++ PKGBUILD2013-12-05 21:13:56 UTC (rev 102145)
@@ -3,7 +3,7 @@
 # Maintainer: TDY 
 
 pkgname=parole
-pkgver=0.5.3
+pkgver=0.5.4
 pkgrel=1
 pkgdesc="A modern media player based on the GStreamer framework"
 arch=('i686' 'x86_64')
@@ -20,7 +20,7 @@
 conflicts=('parole-media-player-git')
 install=parole.install
 source=(http://git.xfce.org/apps/parole/snapshot/parole-$pkgver.tar.bz2)
-md5sums=('51c49684322079c216d80fe6193f1614')
+md5sums=('19ae948309472429b669eed8ac290dcd')
 
 build() {
   cd "$srcdir/$pkgname-$pkgver"



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

2013-12-05 Thread Sergej Pupykin
Date: Thursday, December 5, 2013 @ 22:13:32
  Author: spupykin
Revision: 102143

upgpkg: liblockfile 1.08_4-4

upd

Modified:
  liblockfile/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-05 19:22:04 UTC (rev 102142)
+++ PKGBUILD2013-12-05 21:13:32 UTC (rev 102143)
@@ -5,7 +5,7 @@
 pkgname=liblockfile
 pkgver=1.08_4
 _basever=1.08
-pkgrel=3
+pkgrel=4
 pkgdesc="a library with NFS-safe locking functions"
 arch=('i686' 'x86_64')
 license=('GPL')
@@ -22,7 +22,7 @@
   for p in `cat ../debian/patches/series` ; do
 patch -p1 < ../debian/patches/$p
   done
-  ./configure --prefix=/usr --mandir=/usr/share/man
+  LDCONFIG=/usr/bin/true ./configure --enable-shared --prefix=/usr 
--mandir=/usr/share/man
   make
 }
 



[arch-commits] Commit in xf86-video-mga/repos (4 files)

2013-12-05 Thread Andreas Radke
Date: Thursday, December 5, 2013 @ 20:33:54
  Author: andyrtr
Revision: 200806

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

Added:
  xf86-video-mga/repos/extra-i686/PKGBUILD
(from rev 200805, xf86-video-mga/trunk/PKGBUILD)
  xf86-video-mga/repos/extra-x86_64/PKGBUILD
(from rev 200805, xf86-video-mga/trunk/PKGBUILD)
Deleted:
  xf86-video-mga/repos/extra-i686/PKGBUILD
  xf86-video-mga/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-12-05 19:33:31 UTC (rev 200805)
+++ extra-i686/PKGBUILD 2013-12-05 19:33:54 UTC (rev 200806)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=xf86-video-mga
-pkgver=1.6.2
-pkgrel=3
-pkgdesc="X.org mga video driver"
-arch=(i686 x86_64)
-url="http://xorg.freedesktop.org/";
-license=('custom')
-depends=('glibc')
-makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=14' 'resourceproto' 
'scrnsaverproto')
-conflicts=('xorg-server<1.14.0' 'X-ABI-VIDEODRV_VERSION<14' 
'X-ABI-VIDEODRV_VERSION>=15')
-optdepends=('mga-dri: DRI1 support from community repo')
-groups=('xorg-drivers' 'xorg')
-source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('3f89ce250eea93f0de890954687790e06c0bab9e3e303df393e8759a187eca6c')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-
-  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
-}

Copied: xf86-video-mga/repos/extra-i686/PKGBUILD (from rev 200805, 
xf86-video-mga/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-12-05 19:33:54 UTC (rev 200806)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=xf86-video-mga
+pkgver=1.6.3
+pkgrel=1
+pkgdesc="X.org mga video driver"
+arch=(i686 x86_64)
+url="http://xorg.freedesktop.org/";
+license=('custom')
+depends=('glibc')
+makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=14' 'resourceproto' 
'scrnsaverproto')
+conflicts=('xorg-server<1.14.0' 'X-ABI-VIDEODRV_VERSION<14' 
'X-ABI-VIDEODRV_VERSION>=15')
+optdepends=('mga-dri: DRI1 support from community repo')
+groups=('xorg-drivers' 'xorg')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('7704b1ea35098769787a9c93e903b827be97a99facfb1696aa5236a58ff1c7d7')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-12-05 19:33:31 UTC (rev 200805)
+++ extra-x86_64/PKGBUILD   2013-12-05 19:33:54 UTC (rev 200806)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=xf86-video-mga
-pkgver=1.6.2
-pkgrel=3
-pkgdesc="X.org mga video driver"
-arch=(i686 x86_64)
-url="http://xorg.freedesktop.org/";
-license=('custom')
-depends=('glibc')
-makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=14' 'resourceproto' 
'scrnsaverproto')
-conflicts=('xorg-server<1.14.0' 'X-ABI-VIDEODRV_VERSION<14' 
'X-ABI-VIDEODRV_VERSION>=15')
-optdepends=('mga-dri: DRI1 support from community repo')
-groups=('xorg-drivers' 'xorg')
-source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('3f89ce250eea93f0de890954687790e06c0bab9e3e303df393e8759a187eca6c')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-
-  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
-}

Copied: xf86-video-mga/repos/extra-x86_64/PKGBUILD (from rev 200805, 
xf86-video-mga/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2013-12-05 19:33:54 UTC (rev 200806)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=xf86-video-mga
+pkgver=1.6.3
+pkgrel=1
+pkgdesc="X.org mga video driver"
+arch=(i686 x86_64)
+url="http://xorg.freedesktop.org/";
+license=('custom')
+depends=('glibc')
+makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=14' 'resourceproto' 
'scrnsaver

[arch-commits] Commit in xf86-video-mga/trunk (PKGBUILD)

2013-12-05 Thread Andreas Radke
Date: Thursday, December 5, 2013 @ 20:33:31
  Author: andyrtr
Revision: 200805

upgpkg: xf86-video-mga 1.6.3-1

upstream update 1.6.3

Modified:
  xf86-video-mga/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-05 18:41:22 UTC (rev 200804)
+++ PKGBUILD2013-12-05 19:33:31 UTC (rev 200805)
@@ -2,8 +2,8 @@
 # Maintainer: Jan de Groot 
 
 pkgname=xf86-video-mga
-pkgver=1.6.2
-pkgrel=3
+pkgver=1.6.3
+pkgrel=1
 pkgdesc="X.org mga video driver"
 arch=(i686 x86_64)
 url="http://xorg.freedesktop.org/";
@@ -14,16 +14,16 @@
 optdepends=('mga-dri: DRI1 support from community repo')
 groups=('xorg-drivers' 'xorg')
 source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('3f89ce250eea93f0de890954687790e06c0bab9e3e303df393e8759a187eca6c')
+sha256sums=('7704b1ea35098769787a9c93e903b827be97a99facfb1696aa5236a58ff1c7d7')
 
 build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
+  cd ${pkgname}-${pkgver}
   ./configure --prefix=/usr
   make
 }
 
 package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
+  cd ${pkgname}-${pkgver}
   make DESTDIR="${pkgdir}" install
 
   install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"



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

2013-12-05 Thread Lukas Jirkovsky
Date: Thursday, December 5, 2013 @ 20:22:04
  Author: stativ
Revision: 102142

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

Added:
  luxrender/repos/community-testing-i686/PKGBUILD
(from rev 102141, luxrender/trunk/PKGBUILD)
  luxrender/repos/community-testing-i686/force_python3.diff
(from rev 102141, luxrender/trunk/force_python3.diff)
  luxrender/repos/community-testing-x86_64/PKGBUILD
(from rev 102141, luxrender/trunk/PKGBUILD)
  luxrender/repos/community-testing-x86_64/force_python3.diff
(from rev 102141, luxrender/trunk/force_python3.diff)
Deleted:
  luxrender/repos/community-testing-i686/PKGBUILD
  luxrender/repos/community-testing-x86_64/PKGBUILD

-+
 /PKGBUILD   |  116 ++
 community-testing-i686/PKGBUILD |   47 --
 community-testing-i686/force_python3.diff   |   12 ++
 community-testing-x86_64/PKGBUILD   |   47 --
 community-testing-x86_64/force_python3.diff |   12 ++
 5 files changed, 140 insertions(+), 94 deletions(-)

Deleted: community-testing-i686/PKGBUILD
===
--- community-testing-i686/PKGBUILD 2013-12-05 19:21:53 UTC (rev 102141)
+++ community-testing-i686/PKGBUILD 2013-12-05 19:22:04 UTC (rev 102142)
@@ -1,47 +0,0 @@
-# $Id$
-# Maintainer: Lukas Jirkovsky 
-# Contributor: flixie <69...@gmx.net>
-# Contributor: Imanol Celaya 
-pkgname=luxrender
-pkgver=1.3.1
-_pkgver=d0b0e20c47cc
-pkgrel=2
-pkgdesc="Rendering system for physically correct, unbiased image synthesis"
-arch=('i686' 'x86_64')
-url="http://www.luxrender.net/";
-license=('GPL')
-depends=('boost-libs' 'freeimage' 'openexr' 'libcl' 'libgl' 'fftw')
-optdepends=('luxblend25: Blender exporter' 'qt4: Qt GUI' \
-'python: Python interface (pylux)'
-'nvidia-utils: OpenCL support for nVidia GPUs' \
-'amdstream: OpenCL support for AMD GPUs' \
-'intel-opencl-sdk: OpenCL support for Intel CPUs')
-makedepends=('cmake' 'boost' 'mesa' 'qt4' "luxrays=$pkgver" 'python' 
'opencl-headers')
-source=(https://bitbucket.org/luxrender/lux/get/$_pkgver.tar.bz2)
-md5sums=('cbe749f56a1e1976745f5458100efa8a')
-
-build() {
-  cd "$srcdir"/luxrender-lux-$_pkgver
-
-  export CXXFLAGS="$CXXFLAGS -lpthread"
-  cmake -DCMAKE_INSTALL_PREFIX=/usr \
--DLUXRAYS_DISABLE_OPENCL=OFF \
--DPYTHON_CUSTOM=ON \
--DPYTHON_LIBRARIES=/usr/lib/libpython3.3m.so \
--DPYTHON_INCLUDE_PATH=/usr/include/python3.3m/ \
-.
-  make
-}
-
-package() {
-  cd "$srcdir"/luxrender-lux-$_pkgver
-  make DESTDIR="$pkgdir" install
-
-  # fix library path on x86_64
-  [ "$CARCH" = "x86_64" ] && mv "$pkgdir"/usr/lib64 "$pkgdir"/usr/lib
-
-  #install pylux
-  install -D -m644 pylux.so "$pkgdir"/usr/lib/python3.3/pylux.so
-}
-
-# vim:set ts=2 sw=2 et:

Copied: luxrender/repos/community-testing-i686/PKGBUILD (from rev 102141, 
luxrender/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2013-12-05 19:22:04 UTC (rev 102142)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Lukas Jirkovsky 
+# Contributor: flixie <69...@gmx.net>
+# Contributor: Imanol Celaya 
+pkgname=luxrender
+pkgver=1.3.1
+_pkgver=d0b0e20c47cc
+pkgrel=3
+pkgdesc="Rendering system for physically correct, unbiased image synthesis"
+arch=('i686' 'x86_64')
+url="http://www.luxrender.net/";
+license=('GPL')
+depends=('boost-libs' 'freeimage' 'openexr' 'libcl' 'libgl' 'fftw')
+optdepends=('luxblend25: Blender exporter' 'qt4: Qt GUI' \
+'python: Python interface (pylux)'
+'nvidia-utils: OpenCL support for nVidia GPUs' \
+'amdstream: OpenCL support for AMD GPUs' \
+'intel-opencl-sdk: OpenCL support for Intel CPUs')
+makedepends=('cmake' 'boost' 'mesa' 'qt4' "luxrays=$pkgver" 'python' 
'opencl-headers' \
+ 'clang')
+source=(https://bitbucket.org/luxrender/lux/get/$_pkgver.tar.bz2 \
+force_python3.diff)
+md5sums=('cbe749f56a1e1976745f5458100efa8a'
+ '42692e65eabc5828693e2682e94b7c64')
+
+prepare() {
+  cd "$srcdir"/luxrender-lux-$_pkgver
+
+  patch -Np1 < "$srcdir/force_python3.diff" || true
+}
+
+build() {
+  cd "$srcdir"/luxrender-lux-$_pkgver
+
+  export CC=clang
+  export CXX=clang++
+  export CXXFLAGS="$CXXFLAGS -lpthread"
+  cmake -DCMAKE_INSTALL_PREFIX=/usr \
+-DLUXRAYS_DISABLE_OPENCL=OFF \
+-DPYTHON_CUSTOM=ON \
+-DPYTHON_LIBRARIES=/usr/lib/libpython3.3m.so \
+-DPYTHON_INCLUDE_PATH=/usr/include/python3.3m/ \
+.
+  make
+}
+
+package() {
+  cd "$srcdir"/luxrender-lux-$_pkgver
+  make DESTDIR="$pkgdir" install
+
+  # fix library path on x86_64
+  [ "$CARCH" = "x86_64" ] && mv "$pkgdir"/usr/lib64 "$pkgdir"/usr/lib
+
+  #install pylux
+  install -D -m644 pylux.so "$pkgdir"/usr/lib/python3.3/pylux

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

2013-12-05 Thread Lukas Jirkovsky
Date: Thursday, December 5, 2013 @ 20:21:53
  Author: stativ
Revision: 102141

upgpkg: luxrender 1.3.1-3

fix FS#37664

Modified:
  luxrender/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-05 18:55:26 UTC (rev 102140)
+++ PKGBUILD2013-12-05 19:21:53 UTC (rev 102141)
@@ -5,19 +5,19 @@
 pkgname=luxrender
 pkgver=1.3.1
 _pkgver=d0b0e20c47cc
-pkgrel=2
+pkgrel=3
 pkgdesc="Rendering system for physically correct, unbiased image synthesis"
 arch=('i686' 'x86_64')
 url="http://www.luxrender.net/";
 license=('GPL')
 depends=('boost-libs' 'freeimage' 'openexr' 'libcl' 'libgl' 'fftw')
-makedepends=('clang')
 optdepends=('luxblend25: Blender exporter' 'qt4: Qt GUI' \
 'python: Python interface (pylux)'
 'nvidia-utils: OpenCL support for nVidia GPUs' \
 'amdstream: OpenCL support for AMD GPUs' \
 'intel-opencl-sdk: OpenCL support for Intel CPUs')
-makedepends=('cmake' 'boost' 'mesa' 'qt4' "luxrays=$pkgver" 'python' 
'opencl-headers')
+makedepends=('cmake' 'boost' 'mesa' 'qt4' "luxrays=$pkgver" 'python' 
'opencl-headers' \
+ 'clang')
 source=(https://bitbucket.org/luxrender/lux/get/$_pkgver.tar.bz2 \
 force_python3.diff)
 md5sums=('cbe749f56a1e1976745f5458100efa8a'



[arch-commits] Commit in luxrender/trunk (PKGBUILD force_python3.diff)

2013-12-05 Thread Lukas Jirkovsky
Date: Thursday, December 5, 2013 @ 19:55:26
  Author: stativ
Revision: 102140

luxrender: force python3 when building pylux. This fixes an "ImportError" in 
blender

Added:
  luxrender/trunk/force_python3.diff
Modified:
  luxrender/trunk/PKGBUILD

+
 PKGBUILD   |   12 ++--
 force_python3.diff |   12 
 2 files changed, 22 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-12-05 18:50:50 UTC (rev 102139)
+++ PKGBUILD2013-12-05 18:55:26 UTC (rev 102140)
@@ -18,9 +18,17 @@
 'amdstream: OpenCL support for AMD GPUs' \
 'intel-opencl-sdk: OpenCL support for Intel CPUs')
 makedepends=('cmake' 'boost' 'mesa' 'qt4' "luxrays=$pkgver" 'python' 
'opencl-headers')
-source=(https://bitbucket.org/luxrender/lux/get/$_pkgver.tar.bz2)
-md5sums=('cbe749f56a1e1976745f5458100efa8a')
+source=(https://bitbucket.org/luxrender/lux/get/$_pkgver.tar.bz2 \
+force_python3.diff)
+md5sums=('cbe749f56a1e1976745f5458100efa8a'
+ '42692e65eabc5828693e2682e94b7c64')
 
+prepare() {
+  cd "$srcdir"/luxrender-lux-$_pkgver
+
+  patch -Np1 < "$srcdir/force_python3.diff" || true
+}
+
 build() {
   cd "$srcdir"/luxrender-lux-$_pkgver
 

Added: force_python3.diff
===
--- force_python3.diff  (rev 0)
+++ force_python3.diff  2013-12-05 18:55:26 UTC (rev 102140)
@@ -0,0 +1,12 @@
+diff -rup luxrender-lux-d0b0e20c47cc/cmake/Dependencies.cmake 
luxrender-lux-d0b0e20c47cc.new/cmake/Dependencies.cmake
+--- luxrender-lux-d0b0e20c47cc/cmake/Dependencies.cmake2013-11-04 
22:25:45.0 +0100
 luxrender-lux-d0b0e20c47cc.new/cmake/Dependencies.cmake2013-12-05 
19:43:23.414625854 +0100
+@@ -156,7 +156,7 @@ IF(MSVC AND BOOST_python_LIBRARYDIR)
+   SET(BOOST_LIBRARYDIR "${BOOST_python_LIBRARYDIR}")
+ ENDIF(MSVC AND BOOST_python_LIBRARYDIR)
+ 
+-FIND_PACKAGE(Boost ${Boost_MINIMUM_VERSION} COMPONENTS python REQUIRED)
++FIND_PACKAGE(Boost ${Boost_MINIMUM_VERSION} COMPONENTS python3 REQUIRED)
+ 
+ IF(MSVC AND BOOST_python_LIBRARYDIR)
+   SET(BOOST_LIBRARYDIR "${_boost_libdir}")



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

2013-12-05 Thread Lukas Jirkovsky
Date: Thursday, December 5, 2013 @ 19:50:50
  Author: stativ
Revision: 102139

luxrender: use clang to build luxrender. Fixes FS#37664

Modified:
  luxrender/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-05 18:46:45 UTC (rev 102138)
+++ PKGBUILD2013-12-05 18:50:50 UTC (rev 102139)
@@ -11,6 +11,7 @@
 url="http://www.luxrender.net/";
 license=('GPL')
 depends=('boost-libs' 'freeimage' 'openexr' 'libcl' 'libgl' 'fftw')
+makedepends=('clang')
 optdepends=('luxblend25: Blender exporter' 'qt4: Qt GUI' \
 'python: Python interface (pylux)'
 'nvidia-utils: OpenCL support for nVidia GPUs' \
@@ -23,6 +24,8 @@
 build() {
   cd "$srcdir"/luxrender-lux-$_pkgver
 
+  export CC=clang
+  export CXX=clang++
   export CXXFLAGS="$CXXFLAGS -lpthread"
   cmake -DCMAKE_INSTALL_PREFIX=/usr \
 -DLUXRAYS_DISABLE_OPENCL=OFF \



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

2013-12-05 Thread Ike Devolder
Date: Thursday, December 5, 2013 @ 19:46:45
  Author: idevolder
Revision: 102138

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-12-05 18:46:28 UTC (rev 102137)
+++ community-i686/PKGBUILD 2013-12-05 18:46:45 UTC (rev 102138)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: BlackEagle < ike DOT devolder AT gmail DOT com >
-# Maintainer: Sébastien Luttringer https://github.com/BlackIkeEagle/$pkgname/archive/v$pkgver.tar.gz";)
-sha256sums=('afa0b4f3f9e7ddace9f435c8a85e16e8a6ad4558129e831e41439da21f685374')
-
-build() {
-   cd "$pkgname-$pkgver"
-   aclocal
-   automake --add-missing
-   autoconf
-   ./configure --prefix=/usr
-  make
-}
-
-check() {
-   cd "$pkgname-$pkgver"
-   export MAKEFLAGS="-j1"
-   make check
-}
-
-package() {
-   cd "$pkgname-$pkgver"
-   make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: par2cmdline/repos/community-i686/PKGBUILD (from rev 102137, 
par2cmdline/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-12-05 18:46:45 UTC (rev 102138)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: BlackEagle < ike DOT devolder AT gmail DOT com >
+# Maintainer: Sébastien Luttringer https://github.com/BlackIkeEagle/$pkgname/archive/v$pkgver.tar.gz";)
+sha256sums=('deab6c4244173d18d4a9c45eba32e686b65fa47e7aa5e361f4c29dfb18d78dbf')
+
+build() {
+   cd "$pkgname-$pkgver"
+   aclocal
+   automake --add-missing
+   autoconf
+   ./configure --prefix=/usr
+  make
+}
+
+check() {
+   cd "$pkgname-$pkgver"
+   export MAKEFLAGS="-j1"
+   make check
+}
+
+package() {
+   cd "$pkgname-$pkgver"
+   make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2013-12-05 18:46:28 UTC (rev 102137)
+++ community-x86_64/PKGBUILD   2013-12-05 18:46:45 UTC (rev 102138)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: BlackEagle < ike DOT devolder AT gmail DOT com >
-# Maintainer: Sébastien Luttringer https://github.com/BlackIkeEagle/$pkgname/archive/v$pkgver.tar.gz";)
-sha256sums=('afa0b4f3f9e7ddace9f435c8a85e16e8a6ad4558129e831e41439da21f685374')
-
-build() {
-   cd "$pkgname-$pkgver"
-   aclocal
-   automake --add-missing
-   autoconf
-   ./configure --prefix=/usr
-  make
-}
-
-check() {
-   cd "$pkgname-$pkgver"
-   export MAKEFLAGS="-j1"
-   make check
-}
-
-package() {
-   cd "$pkgname-$pkgver"
-   make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: par2cmdline/repos/community-x86_64/PKGBUILD (from rev 102137, 
par2cmdline/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2013-12-05 18:46:45 UTC (rev 102138)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: BlackEagle < ike DOT devolder AT gmail DOT com >
+# Maintainer: Sébastien Luttringer https://github.com/BlackIkeEagle/$pkgname/archive/v$pkgver.tar.gz";)
+sha256sums=('deab6c4244173d18d4a9c45eba32e686b65fa47e7aa5e361f4c29dfb18d78dbf')
+
+build() {
+   cd "$pkgname-$pkgver"
+   aclocal
+   automake --add-missing
+   autoconf
+   ./configure --prefix=/usr
+  make
+}
+
+check() {
+   cd "$pkgname-$pkgver"
+   export MAKEFLAGS="-j1"
+   make check
+}
+
+package() {
+   cd "$pkgname-$pkgver"
+   make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:



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

2013-12-05 Thread Ike Devolder
Date: Thursday, December 5, 2013 @ 19:46:28
  Author: idevolder
Revision: 102137

par2cmdline :: 0.6.1

Modified:
  par2cmdline/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-05 18:27:29 UTC (rev 102136)
+++ PKGBUILD2013-12-05 18:46:28 UTC (rev 102137)
@@ -3,7 +3,7 @@
 # Maintainer: Sébastien Luttringer https://github.com/BlackIkeEagle/$pkgname/archive/v$pkgver.tar.gz";)
-sha256sums=('afa0b4f3f9e7ddace9f435c8a85e16e8a6ad4558129e831e41439da21f685374')
+sha256sums=('deab6c4244173d18d4a9c45eba32e686b65fa47e7aa5e361f4c29dfb18d78dbf')
 
 build() {
cd "$pkgname-$pkgver"



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

2013-12-05 Thread Jan Steffens
Date: Thursday, December 5, 2013 @ 19:41:22
  Author: heftig
Revision: 200804

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-12-05 18:36:57 UTC (rev 200803)
+++ extra-i686/PKGBUILD 2013-12-05 18:41:22 UTC (rev 200804)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-# Contributor: DrZaius 
-# Contributor: pumbur
-
-pkgname=opus
-pkgver=1.0.3
-pkgrel=2
-pkgdesc="Codec designed for interactive speech and audio transmission over the 
Internet"
-arch=(i686 x86_64)
-url="http://www.opus-codec.org/";
-license=(BSD)
-depends=(glibc)
-source=(http://downloads.us.xiph.org/releases/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('86eedbd3c5a0171d2437850435e6edff')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --enable-custom-modes --disable-static
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: opus/repos/extra-i686/PKGBUILD (from rev 200803, opus/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-12-05 18:41:22 UTC (rev 200804)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+# Contributor: DrZaius 
+# Contributor: pumbur
+
+pkgname=opus
+pkgver=1.1
+pkgrel=1
+pkgdesc="Codec designed for interactive speech and audio transmission over the 
Internet"
+arch=(i686 x86_64)
+url="http://www.opus-codec.org/";
+license=(BSD)
+depends=(glibc)
+source=(http://downloads.us.xiph.org/releases/$pkgname/$pkgname-$pkgver.tar.gz)
+md5sums=('c5a8cf7c0b066759542bc4ca46817ac6')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --enable-custom-modes --disable-static
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-12-05 18:36:57 UTC (rev 200803)
+++ extra-x86_64/PKGBUILD   2013-12-05 18:41:22 UTC (rev 200804)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-# Contributor: DrZaius 
-# Contributor: pumbur
-
-pkgname=opus
-pkgver=1.0.3
-pkgrel=2
-pkgdesc="Codec designed for interactive speech and audio transmission over the 
Internet"
-arch=(i686 x86_64)
-url="http://www.opus-codec.org/";
-license=(BSD)
-depends=(glibc)
-source=(http://downloads.us.xiph.org/releases/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('86eedbd3c5a0171d2437850435e6edff')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --enable-custom-modes --disable-static
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: opus/repos/extra-x86_64/PKGBUILD (from rev 200803, opus/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2013-12-05 18:41:22 UTC (rev 200804)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+# Contributor: DrZaius 
+# Contributor: pumbur
+
+pkgname=opus
+pkgver=1.1
+pkgrel=1
+pkgdesc="Codec designed for interactive speech and audio transmission over the 
Internet"
+arch=(i686 x86_64)
+url="http://www.opus-codec.org/";
+license=(BSD)
+depends=(glibc)
+source=(http://downloads.us.xiph.org/releases/$pkgname/$pkgname-$pkgver.tar.gz)
+md5sums=('c5a8cf7c0b066759542bc4ca46817ac6')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --enable-custom-modes --disable-static
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}



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

2013-12-05 Thread Jan Steffens
Date: Thursday, December 5, 2013 @ 19:36:57
  Author: heftig
Revision: 200803

1.1

Modified:
  opus/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-05 18:18:42 UTC (rev 200802)
+++ PKGBUILD2013-12-05 18:36:57 UTC (rev 200803)
@@ -5,8 +5,8 @@
 # Contributor: pumbur
 
 pkgname=opus
-pkgver=1.0.3
-pkgrel=2
+pkgver=1.1
+pkgrel=1
 pkgdesc="Codec designed for interactive speech and audio transmission over the 
Internet"
 arch=(i686 x86_64)
 url="http://www.opus-codec.org/";
@@ -13,7 +13,7 @@
 license=(BSD)
 depends=(glibc)
 source=(http://downloads.us.xiph.org/releases/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('86eedbd3c5a0171d2437850435e6edff')
+md5sums=('c5a8cf7c0b066759542bc4ca46817ac6')
 
 build() {
   cd $pkgname-$pkgver



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

2013-12-05 Thread Balló György
Date: Thursday, December 5, 2013 @ 19:27:24
  Author: bgyorgy
Revision: 102135

upgpkg: cherrytree 0.31.4-1

Update to version 0.31.4

Modified:
  cherrytree/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-05 16:11:31 UTC (rev 102134)
+++ PKGBUILD2013-12-05 18:27:24 UTC (rev 102135)
@@ -6,7 +6,7 @@
 # Contributor: Tomas A. Schertel 
 
 pkgname=cherrytree
-pkgver=0.31.2
+pkgver=0.31.4
 pkgrel=1
 pkgdesc='Hierarchical note taking application featuring rich text and syntax 
highlighting'
 arch=('any')
@@ -16,7 +16,7 @@
 optdepends=('python2-pyenchant: for spell checking support')
 install=cherrytree.install
 source=(http://www.giuspen.com/software/$pkgname-$pkgver.tar.xz)
-sha256sums=('01c45034926a99cd147e1db01cd0ca24cd25c36680a41c6d39ebfce188d7bf13')
+sha256sums=('8cf5917fd6f6a73ae03eb94b3eaa496dc1d045d3c36aa3d58080fc2e61966ebc')
 
 build() {
   cd $pkgname-$pkgver



[arch-commits] Commit in cherrytree/repos/community-any (4 files)

2013-12-05 Thread Balló György
Date: Thursday, December 5, 2013 @ 19:27:29
  Author: bgyorgy
Revision: 102136

archrelease: copy trunk to community-any

Added:
  cherrytree/repos/community-any/PKGBUILD
(from rev 102135, cherrytree/trunk/PKGBUILD)
  cherrytree/repos/community-any/cherrytree.install
(from rev 102135, cherrytree/trunk/cherrytree.install)
Deleted:
  cherrytree/repos/community-any/PKGBUILD
  cherrytree/repos/community-any/cherrytree.install

+
 PKGBUILD   |   58 +--
 cherrytree.install |   28 
 2 files changed, 43 insertions(+), 43 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2013-12-05 18:27:24 UTC (rev 102135)
+++ PKGBUILD2013-12-05 18:27:29 UTC (rev 102136)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor: Bartłomiej Piotrowski
-# Contributor: Brad Fanella 
-# Contributor: Allan McRae 
-# Contributor: Tomas A. Schertel 
-
-pkgname=cherrytree
-pkgver=0.31.2
-pkgrel=1
-pkgdesc='Hierarchical note taking application featuring rich text and syntax 
highlighting'
-arch=('any')
-url='http://www.giuspen.com/cherrytree/'
-license=('GPL3')
-depends=('pygtksourceview2' 'hicolor-icon-theme' 'desktop-file-utils')
-optdepends=('python2-pyenchant: for spell checking support')
-install=cherrytree.install
-source=(http://www.giuspen.com/software/$pkgname-$pkgver.tar.xz)
-sha256sums=('01c45034926a99cd147e1db01cd0ca24cd25c36680a41c6d39ebfce188d7bf13')
-
-build() {
-  cd $pkgname-$pkgver
-  python2 setup.py build
-}
-
-package() {
-  cd $pkgname-$pkgver
-  python2 setup.py install --root="$pkgdir/" --optimize=1
-}

Copied: cherrytree/repos/community-any/PKGBUILD (from rev 102135, 
cherrytree/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-12-05 18:27:29 UTC (rev 102136)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Balló György 
+# Contributor: Bartłomiej Piotrowski
+# Contributor: Brad Fanella 
+# Contributor: Allan McRae 
+# Contributor: Tomas A. Schertel 
+
+pkgname=cherrytree
+pkgver=0.31.4
+pkgrel=1
+pkgdesc='Hierarchical note taking application featuring rich text and syntax 
highlighting'
+arch=('any')
+url='http://www.giuspen.com/cherrytree/'
+license=('GPL3')
+depends=('pygtksourceview2' 'hicolor-icon-theme' 'desktop-file-utils')
+optdepends=('python2-pyenchant: for spell checking support')
+install=cherrytree.install
+source=(http://www.giuspen.com/software/$pkgname-$pkgver.tar.xz)
+sha256sums=('8cf5917fd6f6a73ae03eb94b3eaa496dc1d045d3c36aa3d58080fc2e61966ebc')
+
+build() {
+  cd $pkgname-$pkgver
+  python2 setup.py build
+}
+
+package() {
+  cd $pkgname-$pkgver
+  python2 setup.py install --root="$pkgdir/" --optimize=1
+}

Deleted: cherrytree.install
===
--- cherrytree.install  2013-12-05 18:27:24 UTC (rev 102135)
+++ cherrytree.install  2013-12-05 18:27:29 UTC (rev 102136)
@@ -1,14 +0,0 @@
-post_install()
-{
-   update-desktop-database -q
-   gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-   update-mime-database usr/share/mime &> /dev/null
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: cherrytree/repos/community-any/cherrytree.install (from rev 102135, 
cherrytree/trunk/cherrytree.install)
===
--- cherrytree.install  (rev 0)
+++ cherrytree.install  2013-12-05 18:27:29 UTC (rev 102136)
@@ -0,0 +1,14 @@
+post_install()
+{
+   update-desktop-database -q
+   gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+   update-mime-database usr/share/mime &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



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

2013-12-05 Thread Andreas Radke
Date: Thursday, December 5, 2013 @ 19:18:02
  Author: andyrtr
Revision: 200801

upgpkg: linux-lts 3.10.22-1

upstream update 3.10.22

Modified:
  linux-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-05 17:20:20 UTC (rev 200800)
+++ PKGBUILD2013-12-05 18:18:02 UTC (rev 200801)
@@ -5,7 +5,7 @@
 pkgbase=linux-lts   # Build stock -lts kernel
 #pkgbase=linux-custom   # Build kernel with a different name
 _srcname=linux-3.10
-pkgver=3.10.21
+pkgver=3.10.22
 pkgrel=1
 arch=('i686' 'x86_64')
 url="http://www.kernel.org/";
@@ -22,7 +22,7 @@
 'criu-no-expert.patch'
 '3.10.6-logitech-dj.patch')
 md5sums=('4f25cd5bec5f8d5a7d935b3f2ccb8481'
- '0d7fd255ad4357b2fde3747163ef8bad'
+ 'a618186bdb6f5b38dc831875b0d3a1cb'
  '1829d51e5357fa8ebece4e39fbb630a7'
  '778bf8297c41847c51be51975c241153'
  '232b52576a62c7a333e9fe7a1e1ca359'



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

2013-12-05 Thread Andreas Radke
Date: Thursday, December 5, 2013 @ 19:18:42
  Author: andyrtr
Revision: 200802

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

Added:
  linux-lts/repos/testing-i686/
  linux-lts/repos/testing-i686/3.10.6-logitech-dj.patch
(from rev 200801, linux-lts/trunk/3.10.6-logitech-dj.patch)
  linux-lts/repos/testing-i686/PKGBUILD
(from rev 200801, linux-lts/trunk/PKGBUILD)
  linux-lts/repos/testing-i686/change-default-console-loglevel.patch
(from rev 200801, linux-lts/trunk/change-default-console-loglevel.patch)
  linux-lts/repos/testing-i686/config
(from rev 200801, linux-lts/trunk/config)
  linux-lts/repos/testing-i686/config.x86_64
(from rev 200801, linux-lts/trunk/config.x86_64)
  linux-lts/repos/testing-i686/criu-no-expert.patch
(from rev 200801, linux-lts/trunk/criu-no-expert.patch)
  linux-lts/repos/testing-i686/linux-lts.install
(from rev 200801, linux-lts/trunk/linux-lts.install)
  linux-lts/repos/testing-i686/linux-lts.preset
(from rev 200801, linux-lts/trunk/linux-lts.preset)
  linux-lts/repos/testing-x86_64/
  linux-lts/repos/testing-x86_64/3.10.6-logitech-dj.patch
(from rev 200801, linux-lts/trunk/3.10.6-logitech-dj.patch)
  linux-lts/repos/testing-x86_64/PKGBUILD
(from rev 200801, linux-lts/trunk/PKGBUILD)
  linux-lts/repos/testing-x86_64/change-default-console-loglevel.patch
(from rev 200801, linux-lts/trunk/change-default-console-loglevel.patch)
  linux-lts/repos/testing-x86_64/config
(from rev 200801, linux-lts/trunk/config)
  linux-lts/repos/testing-x86_64/config.x86_64
(from rev 200801, linux-lts/trunk/config.x86_64)
  linux-lts/repos/testing-x86_64/criu-no-expert.patch
(from rev 200801, linux-lts/trunk/criu-no-expert.patch)
  linux-lts/repos/testing-x86_64/linux-lts.install
(from rev 200801, linux-lts/trunk/linux-lts.install)
  linux-lts/repos/testing-x86_64/linux-lts.preset
(from rev 200801, linux-lts/trunk/linux-lts.preset)

--+
 testing-i686/3.10.6-logitech-dj.patch|  172 
 testing-i686/PKGBUILD|  339 
 testing-i686/change-default-console-loglevel.patch   |   12 
 testing-i686/config  | 6320 +
 testing-i686/config.x86_64   | 6121 
 testing-i686/criu-no-expert.patch|   22 
 testing-i686/linux-lts.install   |   31 
 testing-i686/linux-lts.preset|   14 
 testing-x86_64/3.10.6-logitech-dj.patch  |  172 
 testing-x86_64/PKGBUILD  |  339 
 testing-x86_64/change-default-console-loglevel.patch |   12 
 testing-x86_64/config| 6320 +
 testing-x86_64/config.x86_64 | 6121 
 testing-x86_64/criu-no-expert.patch  |   22 
 testing-x86_64/linux-lts.install |   31 
 testing-x86_64/linux-lts.preset  |   14 
 16 files changed, 26062 insertions(+)

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


[arch-commits] Commit in gtk3/repos (12 files)

2013-12-05 Thread Jan Steffens
Date: Thursday, December 5, 2013 @ 18:20:20
  Author: heftig
Revision: 200800

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

Added:
  gtk3/repos/extra-i686/PKGBUILD
(from rev 200799, gtk3/trunk/PKGBUILD)
  gtk3/repos/extra-i686/gtk3.install
(from rev 200799, gtk3/trunk/gtk3.install)
  gtk3/repos/extra-i686/settings.ini
(from rev 200799, gtk3/trunk/settings.ini)
  gtk3/repos/extra-x86_64/PKGBUILD
(from rev 200799, gtk3/trunk/PKGBUILD)
  gtk3/repos/extra-x86_64/gtk3.install
(from rev 200799, gtk3/trunk/gtk3.install)
  gtk3/repos/extra-x86_64/settings.ini
(from rev 200799, gtk3/trunk/settings.ini)
Deleted:
  gtk3/repos/extra-i686/PKGBUILD
  gtk3/repos/extra-i686/gtk3.install
  gtk3/repos/extra-i686/settings.ini
  gtk3/repos/extra-x86_64/PKGBUILD
  gtk3/repos/extra-x86_64/gtk3.install
  gtk3/repos/extra-x86_64/settings.ini

---+
 /PKGBUILD |  104 
 /gtk3.install |   32 +
 /settings.ini |8 +++
 extra-i686/PKGBUILD   |   49 
 extra-i686/gtk3.install   |   16 --
 extra-i686/settings.ini   |4 -
 extra-x86_64/PKGBUILD |   49 
 extra-x86_64/gtk3.install |   16 --
 extra-x86_64/settings.ini |4 -
 9 files changed, 144 insertions(+), 138 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-12-05 17:15:57 UTC (rev 200799)
+++ extra-i686/PKGBUILD 2013-12-05 17:20:20 UTC (rev 200800)
@@ -1,49 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru 
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=gtk3
-pkgver=3.10.5
-pkgrel=1
-pkgdesc="GObject-based multi-platform GUI toolkit (v3)"
-arch=(i686 x86_64)
-url="http://www.gtk.org/";
-install=gtk3.install
-depends=(atk cairo gtk-update-icon-cache libcups libxcursor libxinerama 
libxrandr libxi
- libxcomposite libxdamage pango shared-mime-info colord at-spi2-atk 
wayland libxkbcommon)
-makedepends=(gobject-introspection)
-optdepends=('gnome-themes-standard: Default widget theme'
-'gnome-icon-theme: Default icon theme')
-license=(LGPL)
-source=(http://ftp.gnome.org/pub/gnome/sources/gtk+/${pkgver%.*}/gtk+-$pkgver.tar.xz
-settings.ini)
-sha256sums=('3191f6d8e8cdf0bac1a8ed6388acc67a15acf5e276161c9b93a305938d29ccc7'
-'14369dfd1d325c393e17c105d5d5cc5501663277bd4047ea04a50abb3cfbd119')
-
-prepare() {
-cd "gtk+-$pkgver"
-}
-
-build() {
-cd "gtk+-$pkgver"
-
-CXX=/bin/false ./configure --prefix=/usr \
---sysconfdir=/etc \
---localstatedir=/var \
---enable-gtk2-dependency \
---disable-schemas-compile \
---enable-x11-backend \
---enable-broadway-backend \
---enable-wayland-backend
-
-#https://bugzilla.gnome.org/show_bug.cgi?id=655517
-sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-make
-}
-
-package() {
-cd "gtk+-$pkgver"
-make DESTDIR="$pkgdir" install
-install -Dm644 ../settings.ini "$pkgdir/usr/share/gtk-3.0/settings.ini"
-}

Copied: gtk3/repos/extra-i686/PKGBUILD (from rev 200799, gtk3/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-12-05 17:20:20 UTC (rev 200800)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Ionut Biru 
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=gtk3
+pkgver=3.10.6
+pkgrel=1
+pkgdesc="GObject-based multi-platform GUI toolkit (v3)"
+arch=(i686 x86_64)
+url="http://www.gtk.org/";
+install=gtk3.install
+depends=(atk cairo gtk-update-icon-cache libcups libxcursor libxinerama 
libxrandr libxi
+ libxcomposite libxdamage pango shared-mime-info colord at-spi2-atk 
wayland libxkbcommon)
+makedepends=(gobject-introspection)
+optdepends=('gnome-themes-standard: Default widget theme'
+'gnome-icon-theme: Default icon theme')
+license=(LGPL)
+source=(http://ftp.gnome.org/pub/gnome/sources/gtk+/${pkgver%.*}/gtk+-$pkgver.tar.xz
+settings.ini)
+sha256sums=('3c24c57fc5cb7a5ea39d3a3ff7b12be63d7f21a52fd6f20f7b983e19b7b0268a'
+'14369dfd1d325c393e17c105d5d5cc5501663277bd4047ea04a50abb3cfbd119')
+
+prepare() {
+cd "gtk+-$pkgver"
+
+# protocols too new; made with a wayland from git, not 1.3.0
+rm gdk/wayland/gtk-shell-{client-protocol.h,protocol.c}
+}
+
+build() {
+cd "gtk+-$pkgver"
+
+CXX=/bin/false ./configure --prefix=/usr \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--enable-gtk2-dependency \
+--disable-schemas-compile \
+--enable-x11-backend \
+--enable-broadway-backend \
+--enable-wayland-backend
+
+#https://bugzilla.gnome.org/show_bug.cgi?id=655517
+sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+make
+}
+
+package() {
+cd "gtk+-$pkgver"
+make DESTDIR="$pkgdir"

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

2013-12-05 Thread Jan Steffens
Date: Thursday, December 5, 2013 @ 18:15:57
  Author: heftig
Revision: 200799

3.10.6

Modified:
  gtk3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-05 11:49:45 UTC (rev 200798)
+++ PKGBUILD2013-12-05 17:15:57 UTC (rev 200799)
@@ -3,7 +3,7 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgname=gtk3
-pkgver=3.10.5
+pkgver=3.10.6
 pkgrel=1
 pkgdesc="GObject-based multi-platform GUI toolkit (v3)"
 arch=(i686 x86_64)
@@ -17,11 +17,14 @@
 license=(LGPL)
 
source=(http://ftp.gnome.org/pub/gnome/sources/gtk+/${pkgver%.*}/gtk+-$pkgver.tar.xz
 settings.ini)
-sha256sums=('3191f6d8e8cdf0bac1a8ed6388acc67a15acf5e276161c9b93a305938d29ccc7'
+sha256sums=('3c24c57fc5cb7a5ea39d3a3ff7b12be63d7f21a52fd6f20f7b983e19b7b0268a'
 '14369dfd1d325c393e17c105d5d5cc5501663277bd4047ea04a50abb3cfbd119')
 
 prepare() {
 cd "gtk+-$pkgver"
+
+# protocols too new; made with a wayland from git, not 1.3.0
+rm gdk/wayland/gtk-shell-{client-protocol.h,protocol.c}
 }
 
 build() {



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

2013-12-05 Thread Sven-Hendrik Haase
Date: Thursday, December 5, 2013 @ 17:11:26
  Author: svenstaro
Revision: 102133

upgpkg: stuntrally 2.2.1-3

rebuild

Modified:
  stuntrally/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-05 15:59:16 UTC (rev 102132)
+++ PKGBUILD2013-12-05 16:11:26 UTC (rev 102133)
@@ -5,7 +5,7 @@
 
 pkgname=stuntrally
 pkgver=2.2.1
-pkgrel=2
+pkgrel=3
 pkgdesc='Stunt Rally game with track editor, based on VDrift'
 arch=('x86_64' 'i686')
 license=('GPL3')



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

2013-12-05 Thread Sven-Hendrik Haase
Date: Thursday, December 5, 2013 @ 17:11:31
  Author: svenstaro
Revision: 102134

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

Added:
  stuntrally/repos/community-testing-i686/PKGBUILD
(from rev 102133, stuntrally/trunk/PKGBUILD)
  stuntrally/repos/community-testing-i686/stuntrally.install
(from rev 102133, stuntrally/trunk/stuntrally.install)
  stuntrally/repos/community-testing-x86_64/PKGBUILD
(from rev 102133, stuntrally/trunk/PKGBUILD)
  stuntrally/repos/community-testing-x86_64/stuntrally.install
(from rev 102133, stuntrally/trunk/stuntrally.install)
Deleted:
  stuntrally/repos/community-testing-i686/PKGBUILD
  stuntrally/repos/community-testing-i686/stuntrally.install
  stuntrally/repos/community-testing-x86_64/PKGBUILD
  stuntrally/repos/community-testing-x86_64/stuntrally.install

-+
 /PKGBUILD   |   74 ++
 /stuntrally.install |   26 +
 community-testing-i686/PKGBUILD |   37 -
 community-testing-i686/stuntrally.install   |   13 
 community-testing-x86_64/PKGBUILD   |   37 -
 community-testing-x86_64/stuntrally.install |   13 
 6 files changed, 100 insertions(+), 100 deletions(-)

Deleted: community-testing-i686/PKGBUILD
===
--- community-testing-i686/PKGBUILD 2013-12-05 16:11:26 UTC (rev 102133)
+++ community-testing-i686/PKGBUILD 2013-12-05 16:11:31 UTC (rev 102134)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Sven Schneider 
-# Contributor: Jason Melton 
-
-pkgname=stuntrally
-pkgver=2.2.1
-pkgrel=1
-pkgdesc='Stunt Rally game with track editor, based on VDrift'
-arch=('x86_64' 'i686')
-license=('GPL3')
-url='http://code.google.com/p/vdrift-ogre'
-depends=('libvorbis' 'mygui' 'sdl2' 'enet' 'hicolor-icon-theme' 'libxcursor' 
'stuntrally-data')
-makedepends=('cmake' 'boost' 'git')
-install=stuntrally.install
-source=("$pkgname-$pkgver.tar.gz::https://github.com/stuntrally/stuntrally/archive/${pkgver}.tar.gz";)
-sha256sums=('305b5f498ab150e4cf1fd1d47410ea04ad3cf439b60278ea2b73a01278d9ca51')
-
-build() {
-  cd "$srcdir/stuntrally-$pkgver/"
-
-  rm -rf build
-  mkdir build && cd build
-  cmake .. \
--DCMAKE_INSTALL_PREFIX="/usr" \
--DSHARE_INSTALL="share/stuntrally"
-  make
-}
-
-package() {
-  cd "$srcdir/stuntrally-$pkgver/build/"
-
-  make DESTDIR="$pkgdir" install
-  rm -rf "$pkgdir/usr/share/stuntrally/"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: stuntrally/repos/community-testing-i686/PKGBUILD (from rev 102133, 
stuntrally/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2013-12-05 16:11:31 UTC (rev 102134)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Sven Schneider 
+# Contributor: Jason Melton 
+
+pkgname=stuntrally
+pkgver=2.2.1
+pkgrel=3
+pkgdesc='Stunt Rally game with track editor, based on VDrift'
+arch=('x86_64' 'i686')
+license=('GPL3')
+url='http://code.google.com/p/vdrift-ogre'
+depends=('libvorbis' 'mygui' 'sdl2' 'enet' 'gtk-update-icon-cache' 
'stuntrally-data')
+makedepends=('cmake' 'boost' 'git')
+install=stuntrally.install
+source=("$pkgname-$pkgver.tar.gz::https://github.com/stuntrally/stuntrally/archive/${pkgver}.tar.gz";)
+sha256sums=('305b5f498ab150e4cf1fd1d47410ea04ad3cf439b60278ea2b73a01278d9ca51')
+
+build() {
+  cd "$srcdir/stuntrally-$pkgver/"
+
+  rm -rf build
+  mkdir build && cd build
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX="/usr" \
+-DSHARE_INSTALL="share/stuntrally"
+  make
+}
+
+package() {
+  cd "$srcdir/stuntrally-$pkgver/build/"
+
+  make DESTDIR="$pkgdir" install
+  rm -rf "$pkgdir/usr/share/stuntrally/"
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-testing-i686/stuntrally.install
===
--- community-testing-i686/stuntrally.install   2013-12-05 16:11:26 UTC (rev 
102133)
+++ community-testing-i686/stuntrally.install   2013-12-05 16:11:31 UTC (rev 
102134)
@@ -1,13 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
- post_install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: stuntrally/repos/community-testing-i686/stuntrally.install (from rev 
102133, stuntrally/trunk/stuntrally.install)
===
--- community-testing-i686/stuntrally.install   (rev 0)
+++ community-testing-i686/stuntrally.install   2013-12-05 16:11:31 UTC (rev 
102134)
@@ -0,0 +1,13 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+ post_install
+}
+
+# vim:

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

2013-12-05 Thread Sven-Hendrik Haase
Date: Thursday, December 5, 2013 @ 16:59:07
  Author: svenstaro
Revision: 102131

upgpkg: stuntrally 2.2.1-2

rebuild

Modified:
  stuntrally/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-05 15:40:49 UTC (rev 102130)
+++ PKGBUILD2013-12-05 15:59:07 UTC (rev 102131)
@@ -5,12 +5,12 @@
 
 pkgname=stuntrally
 pkgver=2.2.1
-pkgrel=1
+pkgrel=2
 pkgdesc='Stunt Rally game with track editor, based on VDrift'
 arch=('x86_64' 'i686')
 license=('GPL3')
 url='http://code.google.com/p/vdrift-ogre'
-depends=('libvorbis' 'mygui' 'sdl2' 'enet' 'hicolor-icon-theme' 'libxcursor' 
'stuntrally-data')
+depends=('libvorbis' 'mygui' 'sdl2' 'enet' 'gtk-update-icon-cache' 
'stuntrally-data')
 makedepends=('cmake' 'boost' 'git')
 install=stuntrally.install
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/stuntrally/stuntrally/archive/${pkgver}.tar.gz";)



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

2013-12-05 Thread Sven-Hendrik Haase
Date: Thursday, December 5, 2013 @ 16:59:16
  Author: svenstaro
Revision: 102132

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

Added:
  stuntrally/repos/community-i686/PKGBUILD
(from rev 102131, stuntrally/trunk/PKGBUILD)
  stuntrally/repos/community-i686/stuntrally.install
(from rev 102131, stuntrally/trunk/stuntrally.install)
  stuntrally/repos/community-x86_64/PKGBUILD
(from rev 102131, stuntrally/trunk/PKGBUILD)
  stuntrally/repos/community-x86_64/stuntrally.install
(from rev 102131, stuntrally/trunk/stuntrally.install)
Deleted:
  stuntrally/repos/community-i686/PKGBUILD
  stuntrally/repos/community-i686/stuntrally.install
  stuntrally/repos/community-x86_64/PKGBUILD
  stuntrally/repos/community-x86_64/stuntrally.install

-+
 /PKGBUILD   |   74 ++
 /stuntrally.install |   26 +++
 community-i686/PKGBUILD |   37 -
 community-i686/stuntrally.install   |   13 -
 community-x86_64/PKGBUILD   |   37 -
 community-x86_64/stuntrally.install |   13 -
 6 files changed, 100 insertions(+), 100 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-12-05 15:59:07 UTC (rev 102131)
+++ community-i686/PKGBUILD 2013-12-05 15:59:16 UTC (rev 102132)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Sven Schneider 
-# Contributor: Jason Melton 
-
-pkgname=stuntrally
-pkgver=2.1
-pkgrel=1
-pkgdesc='Stunt Rally game with track editor, based on VDrift'
-arch=('x86_64' 'i686')
-license=('GPL3')
-url='http://code.google.com/p/vdrift-ogre'
-depends=('libvorbis' 'mygui' 'sdl2' 'enet' 'hicolor-icon-theme' 'libxcursor' 
'stuntrally-data')
-makedepends=('cmake' 'boost')
-install=stuntrally.install
-source=("$pkgname-$pkgver.tar.gz::https://github.com/stuntrally/stuntrally/archive/${pkgver}.tar.gz";)
-sha256sums=('d987e8c05ed1f3f54468e75e2c1f68a9a4c59ceefa7429130d4f800b28821ae0')
-
-build() {
-  cd "$srcdir/stuntrally-$pkgver/"
-
-  rm -rf build
-  mkdir build && cd build
-  cmake .. \
--DCMAKE_INSTALL_PREFIX="/usr" \
--DSHARE_INSTALL="share/stuntrally"
-  make
-}
-
-package() {
-  cd "$srcdir/stuntrally-$pkgver/build/"
-
-  make DESTDIR="$pkgdir" install
-  rm -rf "$pkgdir/usr/share/stuntrally/"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: stuntrally/repos/community-i686/PKGBUILD (from rev 102131, 
stuntrally/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-12-05 15:59:16 UTC (rev 102132)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Sven Schneider 
+# Contributor: Jason Melton 
+
+pkgname=stuntrally
+pkgver=2.2.1
+pkgrel=2
+pkgdesc='Stunt Rally game with track editor, based on VDrift'
+arch=('x86_64' 'i686')
+license=('GPL3')
+url='http://code.google.com/p/vdrift-ogre'
+depends=('libvorbis' 'mygui' 'sdl2' 'enet' 'gtk-update-icon-cache' 
'stuntrally-data')
+makedepends=('cmake' 'boost' 'git')
+install=stuntrally.install
+source=("$pkgname-$pkgver.tar.gz::https://github.com/stuntrally/stuntrally/archive/${pkgver}.tar.gz";)
+sha256sums=('305b5f498ab150e4cf1fd1d47410ea04ad3cf439b60278ea2b73a01278d9ca51')
+
+build() {
+  cd "$srcdir/stuntrally-$pkgver/"
+
+  rm -rf build
+  mkdir build && cd build
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX="/usr" \
+-DSHARE_INSTALL="share/stuntrally"
+  make
+}
+
+package() {
+  cd "$srcdir/stuntrally-$pkgver/build/"
+
+  make DESTDIR="$pkgdir" install
+  rm -rf "$pkgdir/usr/share/stuntrally/"
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/stuntrally.install
===
--- community-i686/stuntrally.install   2013-12-05 15:59:07 UTC (rev 102131)
+++ community-i686/stuntrally.install   2013-12-05 15:59:16 UTC (rev 102132)
@@ -1,13 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
- post_install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: stuntrally/repos/community-i686/stuntrally.install (from rev 102131, 
stuntrally/trunk/stuntrally.install)
===
--- community-i686/stuntrally.install   (rev 0)
+++ community-i686/stuntrally.install   2013-12-05 15:59:16 UTC (rev 102132)
@@ -0,0 +1,13 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+ post_install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2013-12-05 15:59:07 UTC (rev 102131)
+++ community-x86_64/PKGBUILD   

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

2013-12-05 Thread Felix Yan
Date: Thursday, December 5, 2013 @ 16:40:49
  Author: fyan
Revision: 102130

archrelease: copy trunk to community-any

Added:
  python-pytest/repos/community-any/
  python-pytest/repos/community-any/PKGBUILD
(from rev 102129, python-pytest/trunk/PKGBUILD)

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

Copied: python-pytest/repos/community-any/PKGBUILD (from rev 102129, 
python-pytest/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2013-12-05 15:40:49 UTC (rev 102130)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Felix Kaiser 
+
+pkgbase=python-pytest
+pkgname=('python-pytest' 'python2-pytest')
+pkgver=2.4.2
+pkgrel=3
+pkgdesc="Simple powerful testing with Python"
+arch=('any')
+license=('MIT')
+url="http://pytest.org/";
+makedepends=('python-setuptools' 'python2-setuptools' 'python-py' 'python2-py')
+source=("http://pypi.python.org/packages/source/p/pytest/pytest-$pkgver.tar.gz";)
+
+prepare() {
+  cp -r pytest-${pkgver} python2-pytest-${pkgver}
+}
+
+package_python-pytest() {
+  depends=('python' 'python-py>=1.4.17')
+
+  cd pytest-${pkgver}
+  python setup.py install --root="${pkgdir}" --optimize=1
+  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+package_python2-pytest() {
+  depends=('python2' 'python2-py>=1.4.17')
+
+  cd python2-pytest-${pkgver}
+  python2 setup.py install --root="${pkgdir}" --optimize=1
+  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+
+  mv "${pkgdir}/usr/bin/py.test" "${pkgdir}/usr/bin/py.test2"
+}
+
+sha512sums=('2ffbc74c536fa4542b9f9afb257428cde98648c76335bdc8d3fd515fd094410fe1e71e502918d780f1d8070bebf4e4c24b33cab04d0f48ca983d907bfc43d3db')



[arch-commits] Commit in (4 files)

2013-12-05 Thread Felix Yan
Date: Thursday, December 5, 2013 @ 16:40:01
  Author: fyan
Revision: 102129

addpkg: python-pytest 2.4.2-3

Added:
  python-pytest/
  python-pytest/repos/
  python-pytest/trunk/
  python-pytest/trunk/PKGBUILD

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

Added: python-pytest/trunk/PKGBUILD
===
--- python-pytest/trunk/PKGBUILD(rev 0)
+++ python-pytest/trunk/PKGBUILD2013-12-05 15:40:01 UTC (rev 102129)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Felix Kaiser 
+
+pkgbase=python-pytest
+pkgname=('python-pytest' 'python2-pytest')
+pkgver=2.4.2
+pkgrel=3
+pkgdesc="Simple powerful testing with Python"
+arch=('any')
+license=('MIT')
+url="http://pytest.org/";
+makedepends=('python-setuptools' 'python2-setuptools' 'python-py' 'python2-py')
+source=("http://pypi.python.org/packages/source/p/pytest/pytest-$pkgver.tar.gz";)
+
+prepare() {
+  cp -r pytest-${pkgver} python2-pytest-${pkgver}
+}
+
+package_python-pytest() {
+  depends=('python' 'python-py>=1.4.17')
+
+  cd pytest-${pkgver}
+  python setup.py install --root="${pkgdir}" --optimize=1
+  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+package_python2-pytest() {
+  depends=('python2' 'python2-py>=1.4.17')
+
+  cd python2-pytest-${pkgver}
+  python2 setup.py install --root="${pkgdir}" --optimize=1
+  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+
+  mv "${pkgdir}/usr/bin/py.test" "${pkgdir}/usr/bin/py.test2"
+}
+
+sha512sums=('2ffbc74c536fa4542b9f9afb257428cde98648c76335bdc8d3fd515fd094410fe1e71e502918d780f1d8070bebf4e4c24b33cab04d0f48ca983d907bfc43d3db')


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


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

2013-12-05 Thread Felix Yan
Date: Thursday, December 5, 2013 @ 16:22:18
  Author: fyan
Revision: 102128

archrelease: copy trunk to community-any

Added:
  python-py/repos/community-any/
  python-py/repos/community-any/PKGBUILD
(from rev 102127, python-py/trunk/PKGBUILD)

--+
 PKGBUILD |   40 
 1 file changed, 40 insertions(+)

Copied: python-py/repos/community-any/PKGBUILD (from rev 102127, 
python-py/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2013-12-05 15:22:18 UTC (rev 102128)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Sebastian Wiesner 
+# Contributor: Igor Ramos Tiburcio 
+# Contributor: Wieland Hoffmann 
+# Contributor: Hervé Cauwelier 
+# Contributor: Felix Kaiser 
+
+pkgbase=python-py
+pkgname=('python-py' 'python2-py')
+pkgver=1.4.18
+pkgrel=1
+pkgdesc="rapid testing and development utils"
+arch=('any')
+license=('MIT')
+url="http://pylib.org/";
+makedepends=('python-setuptools' 'python2-setuptools')
+source=("http://pypi.python.org/packages/source/p/py/py-$pkgver.tar.gz";)
+
+prepare() {
+  cp -r py-${pkgver} python2-py-${pkgver}
+}
+
+package_python-py() {
+  depends=('python')
+
+  cd py-${pkgver}
+  python setup.py install --root="${pkgdir}" --optimize=1
+  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+package_python2-py() {
+  depends=('python2')
+
+  cd python2-py-${pkgver}
+  python2 setup.py install --root="${pkgdir}" --optimize=1
+  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+sha512sums=('cc2d547b5ddad98128c32f97afec4c022069540d9c15d469e9c45a4a1a59a5bc4916da2029bea587b4d1480c0867731fd2a4e46f465988754a371b2454e7bf07')



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

2013-12-05 Thread Sergej Pupykin
Date: Thursday, December 5, 2013 @ 15:49:23
  Author: spupykin
Revision: 102127

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

Added:
  glusterfs/repos/community-i686/PKGBUILD
(from rev 102126, glusterfs/trunk/PKGBUILD)
  glusterfs/repos/community-x86_64/PKGBUILD
(from rev 102126, glusterfs/trunk/PKGBUILD)
Deleted:
  glusterfs/repos/community-i686/PKGBUILD
  glusterfs/repos/community-i686/glusterd.service
  glusterfs/repos/community-x86_64/PKGBUILD
  glusterfs/repos/community-x86_64/glusterd.service

---+
 /PKGBUILD |  112 
 community-i686/PKGBUILD   |   63 
 community-i686/glusterd.service   |   10 ---
 community-x86_64/PKGBUILD |   63 
 community-x86_64/glusterd.service |   10 ---
 5 files changed, 112 insertions(+), 146 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-12-05 14:49:07 UTC (rev 102126)
+++ community-i686/PKGBUILD 2013-12-05 14:49:23 UTC (rev 102127)
@@ -1,63 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributors:
-#   Andrei Antoukh - n...@niwi.be - http://www.niwi.be
-#   henning mueller 
-
-pkgname=glusterfs
-pkgver=3.4.1
-_basever=`echo $pkgver | cut -f1-2 -d.`
-pkgrel=1
-pkgdesc='Is a cluster file-system capable of scaling to several peta-bytes.'
-arch=(i686 x86_64)
-url='http://www.gluster.org/'
-license=(GPL2 LGPL3)
-depends=(fuse python2 libxml2)
-makedepends=(flex bison)
-source=(http://download.gluster.org/pub/gluster/glusterfs/$_basever/$pkgver/glusterfs-$pkgver.tar.gz
-   glusterd.service)
-sha256sums=('2a2a43fb52a7f6b8b00331acc5ea2c86a067a2f2901cca886a2348e919c0cbd8'
-'18e6c3bcca396a4524d866977d3fa86135377d7bf5d28a130e697ae2e85f043b')
-sha256sums=('b5f1b4e3c6b86ecdfc5ff1b870ae3d3384bb2e3943565d6907c29ee6e21ab739'
-'18e6c3bcca396a4524d866977d3fa86135377d7bf5d28a130e697ae2e85f043b')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-
-  ./configure \
---prefix=/usr \
---sbindir=/usr/bin \
---with-mountutildir=/usr/bin \
---sysconfdir=/etc \
---localstatedir=/var \
---mandir=/usr/share/man \
---libexecdir=/usr/lib/$pkgname \
-PYTHON=python2
-
-  make
-
-  sed -i s:env\ python:env\ python2: \
-xlators/features/marker/utils/syncdaemon/gsyncd.py
-  sed -i s:/usr/bin/python:/usr/bin/python2: \
-contrib/ipaddr-py/ipaddr.py
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-
-  make -j1 DESTDIR=$pkgdir install
-
-  install -D -m 644 \
-$srcdir/$pkgname-$pkgver/{README,INSTALL,COPYING*} \
-$pkgdir/usr/share/doc/glusterfs/
-
-  install -D -m 644 \
-$srcdir/glusterd.service \
-$pkgdir/usr/lib/systemd/system/glusterd.service
-
-  cp -rf \
-$srcdir/$pkgname-$pkgver/doc/* \
-$pkgdir/usr/share/doc/glusterfs/
-}
-
-# vim:set ts=2 sw=2 et:

Copied: glusterfs/repos/community-i686/PKGBUILD (from rev 102126, 
glusterfs/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-12-05 14:49:23 UTC (rev 102127)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributors:
+#   Andrei Antoukh - n...@niwi.be - http://www.niwi.be
+#   henning mueller 
+
+pkgname=glusterfs
+pkgver=3.4.1
+_basever=`echo $pkgver | cut -f1-2 -d.`
+pkgrel=2
+pkgdesc='Is a cluster file-system capable of scaling to several peta-bytes.'
+arch=(i686 x86_64)
+url='http://www.gluster.org/'
+license=(GPL2 LGPL3)
+depends=(fuse python2 libxml2)
+makedepends=(flex bison)
+source=(http://download.gluster.org/pub/gluster/glusterfs/$_basever/$pkgver/glusterfs-$pkgver.tar.gz)
+md5sums=('dce3d066b7351b360454ea9ca4cabe4c')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+
+  ./configure \
+--prefix=/usr \
+--sbindir=/usr/bin \
+--with-mountutildir=/usr/bin \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--mandir=/usr/share/man \
+--libexecdir=/usr/lib/$pkgname \
+--with-systemddir=/usr/lib/systemd/system \
+PYTHON=python2
+
+  make
+
+  sed -i s:env\ python:env\ python2: \
+xlators/features/marker/utils/syncdaemon/gsyncd.py
+  sed -i s:/usr/bin/python:/usr/bin/python2: \
+contrib/ipaddr-py/ipaddr.py
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+
+  make -j1 DESTDIR=$pkgdir install
+
+  install -D -m 644 \
+$srcdir/$pkgname-$pkgver/{README,INSTALL,COPYING*} \
+$pkgdir/usr/share/doc/glusterfs/
+
+  cp -rf \
+$srcdir/$pkgname-$pkgver/doc/* \
+$pkgdir/usr/share/doc/glusterfs/
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/glusterd.service
===
--- community-i686/glusterd.service 2013-12-05 14:49:07 UTC (rev 102126)
+++ community-i686/glusterd.service 2013-12-05 14:49:23 UTC (rev 102127)
@@ -1,10 +0,0 @@
-[

[arch-commits] Commit in glusterfs/trunk (PKGBUILD glusterd.service)

2013-12-05 Thread Sergej Pupykin
Date: Thursday, December 5, 2013 @ 15:49:07
  Author: spupykin
Revision: 102126

upgpkg: glusterfs 3.4.1-2

upd

Modified:
  glusterfs/trunk/PKGBUILD
Deleted:
  glusterfs/trunk/glusterd.service

--+
 PKGBUILD |   15 ---
 glusterd.service |   10 --
 2 files changed, 4 insertions(+), 21 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-12-05 14:35:43 UTC (rev 102125)
+++ PKGBUILD2013-12-05 14:49:07 UTC (rev 102126)
@@ -7,7 +7,7 @@
 pkgname=glusterfs
 pkgver=3.4.1
 _basever=`echo $pkgver | cut -f1-2 -d.`
-pkgrel=1
+pkgrel=2
 pkgdesc='Is a cluster file-system capable of scaling to several peta-bytes.'
 arch=(i686 x86_64)
 url='http://www.gluster.org/'
@@ -14,12 +14,8 @@
 license=(GPL2 LGPL3)
 depends=(fuse python2 libxml2)
 makedepends=(flex bison)
-source=(http://download.gluster.org/pub/gluster/glusterfs/$_basever/$pkgver/glusterfs-$pkgver.tar.gz
-   glusterd.service)
-sha256sums=('2a2a43fb52a7f6b8b00331acc5ea2c86a067a2f2901cca886a2348e919c0cbd8'
-'18e6c3bcca396a4524d866977d3fa86135377d7bf5d28a130e697ae2e85f043b')
-sha256sums=('b5f1b4e3c6b86ecdfc5ff1b870ae3d3384bb2e3943565d6907c29ee6e21ab739'
-'18e6c3bcca396a4524d866977d3fa86135377d7bf5d28a130e697ae2e85f043b')
+source=(http://download.gluster.org/pub/gluster/glusterfs/$_basever/$pkgver/glusterfs-$pkgver.tar.gz)
+md5sums=('dce3d066b7351b360454ea9ca4cabe4c')
 
 build() {
   cd $srcdir/$pkgname-$pkgver
@@ -32,6 +28,7 @@
 --localstatedir=/var \
 --mandir=/usr/share/man \
 --libexecdir=/usr/lib/$pkgname \
+--with-systemddir=/usr/lib/systemd/system \
 PYTHON=python2
 
   make
@@ -51,10 +48,6 @@
 $srcdir/$pkgname-$pkgver/{README,INSTALL,COPYING*} \
 $pkgdir/usr/share/doc/glusterfs/
 
-  install -D -m 644 \
-$srcdir/glusterd.service \
-$pkgdir/usr/lib/systemd/system/glusterd.service
-
   cp -rf \
 $srcdir/$pkgname-$pkgver/doc/* \
 $pkgdir/usr/share/doc/glusterfs/

Deleted: glusterd.service
===
--- glusterd.service2013-12-05 14:35:43 UTC (rev 102125)
+++ glusterd.service2013-12-05 14:49:07 UTC (rev 102126)
@@ -1,10 +0,0 @@
-[Unit]
-Description=Distributed filesystem daemon
-After=network.target
-
-[Service]
-Type=forking
-ExecStart=/usr/bin/glusterd
-
-[Install]
-WantedBy=multi-user.target



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

2013-12-05 Thread Sergej Pupykin
Date: Thursday, December 5, 2013 @ 15:35:35
  Author: spupykin
Revision: 102124

upgpkg: python2-migrate 0.7.2-5

upd

Modified:
  python2-migrate/trunk/PKGBUILD

--+
 PKGBUILD |   27 ++-
 1 file changed, 26 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-12-05 14:32:44 UTC (rev 102123)
+++ PKGBUILD2013-12-05 14:35:35 UTC (rev 102124)
@@ -4,7 +4,7 @@
 
 pkgname=python2-migrate
 pkgver=0.7.2
-pkgrel=4
+pkgrel=5
 pkgdesc="provides a way to deal with database schema changes in SQLAlchemy 
projects"
 arch=(any)
 url="http://sqlalchemy-migrate.googlecode.com/";
@@ -20,4 +20,29 @@
   cd $srcdir/sqlalchemy-migrate-$pkgver
   patch -p1 <$srcdir/fix_exceptions_import_for_sqlalchemy_0.8.patch
   python2 setup.py install --root=$pkgdir
+
+  install -dm0755 $pkgdir/usr/share/licenses/$pkgname/
+  cat >$pkgdir/usr/share/licenses/$pkgname/LICENSE <
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
+EOF
 }



[arch-commits] Commit in python2-migrate/repos/community-any (4 files)

2013-12-05 Thread Sergej Pupykin
Date: Thursday, December 5, 2013 @ 15:35:43
  Author: spupykin
Revision: 102125

archrelease: copy trunk to community-any

Added:
  python2-migrate/repos/community-any/PKGBUILD
(from rev 102124, python2-migrate/trunk/PKGBUILD)
  
python2-migrate/repos/community-any/fix_exceptions_import_for_sqlalchemy_0.8.patch
(from rev 102124, 
python2-migrate/trunk/fix_exceptions_import_for_sqlalchemy_0.8.patch)
Deleted:
  python2-migrate/repos/community-any/PKGBUILD
  
python2-migrate/repos/community-any/fix_exceptions_import_for_sqlalchemy_0.8.patch

+
 PKGBUILD   |   71 +++
 fix_exceptions_import_for_sqlalchemy_0.8.patch |   24 +++
 2 files changed, 60 insertions(+), 35 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2013-12-05 14:35:35 UTC (rev 102124)
+++ PKGBUILD2013-12-05 14:35:43 UTC (rev 102125)
@@ -1,23 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Roberto Alsina 
-
-pkgname=python2-migrate
-pkgver=0.7.2
-pkgrel=4
-pkgdesc="provides a way to deal with database schema changes in SQLAlchemy 
projects"
-arch=(any)
-url="http://sqlalchemy-migrate.googlecode.com/";
-depends=('python2' 'python2-sqlalchemy' 'python2-decorator' 'python2-tempita')
-makedepends=('python2-setuptools')
-license=('MIT')
-source=(http://sqlalchemy-migrate.googlecode.com/files/sqlalchemy-migrate-$pkgver.tar.gz
-   fix_exceptions_import_for_sqlalchemy_0.8.patch)
-md5sums=('10382fda16f056491e671b5307dd6713'
- 'f0e7a642736d0451709cf2d0684bc8e9')
-
-package() {
-  cd $srcdir/sqlalchemy-migrate-$pkgver
-  patch -p1 <$srcdir/fix_exceptions_import_for_sqlalchemy_0.8.patch
-  python2 setup.py install --root=$pkgdir
-}

Copied: python2-migrate/repos/community-any/PKGBUILD (from rev 102124, 
python2-migrate/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-12-05 14:35:43 UTC (rev 102125)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Roberto Alsina 
+
+pkgname=python2-migrate
+pkgver=0.7.2
+pkgrel=5
+pkgdesc="provides a way to deal with database schema changes in SQLAlchemy 
projects"
+arch=(any)
+url="http://sqlalchemy-migrate.googlecode.com/";
+depends=('python2' 'python2-sqlalchemy' 'python2-decorator' 'python2-tempita')
+makedepends=('python2-setuptools')
+license=('MIT')
+source=(http://sqlalchemy-migrate.googlecode.com/files/sqlalchemy-migrate-$pkgver.tar.gz
+   fix_exceptions_import_for_sqlalchemy_0.8.patch)
+md5sums=('10382fda16f056491e671b5307dd6713'
+ 'f0e7a642736d0451709cf2d0684bc8e9')
+
+package() {
+  cd $srcdir/sqlalchemy-migrate-$pkgver
+  patch -p1 <$srcdir/fix_exceptions_import_for_sqlalchemy_0.8.patch
+  python2 setup.py install --root=$pkgdir
+
+  install -dm0755 $pkgdir/usr/share/licenses/$pkgname/
+  cat >$pkgdir/usr/share/licenses/$pkgname/LICENSE <
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
+EOF
+}

Deleted: fix_exceptions_import_for_sqlalchemy_0.8.patch
===
--- fix_exceptions_import_for_sqlalchemy_0.8.patch  2013-12-05 14:35:35 UTC 
(rev 102124)
+++ fix_exceptions_import_for_sqlalchemy_0.8.patch  2013-12-05 14:35:43 UTC 
(rev 102125)
@@ -1,12 +0,0 @@
-diff -ruNa a/migrate/versioning/schema.py b/migrate/versioning/schema.py
 a/migrate/versioning/schema.py
-+++ b/migrate/versioning/schema.py
-@@ -7,7 +7,7 @@
- from sqlalchemy import (Table, Column, MetaData, String, Text, Integer,
- create_engine)
- from sqlalchemy.sql import and_
--from sqlalchemy import exceptions as sa_exceptions
-+from sqlalchemy import exc as sa_exceptions
- from sqlalchemy.sql import bindparam
- 
- from migrate import exceptions

Copied: 
python2-migrate/repos/community-any/fix_exceptions_import_for_sqlalchemy_0.8.patch
 (from rev 102124, 
pytho

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

2013-12-05 Thread Sergej Pupykin
Date: Thursday, December 5, 2013 @ 15:32:13
  Author: spupykin
Revision: 102121

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-12-05 14:31:57 UTC (rev 102120)
+++ community-i686/PKGBUILD 2013-12-05 14:32:13 UTC (rev 102121)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Philipp Sandhaus 
-# Contributor: Robert Emil Berge 
-# Contributor: Gnud 
-
-pkgname=denemo
-pkgver=1.0.4
-pkgrel=1
-pkgdesc="A music score editor"
-arch=('i686' 'x86_64')
-url="http://www.denemo.org";
-license=('GPL')
-depends=('aubio' 'portaudio' 'lilypond' 'gtk3' 'libxml2' 'guile' 'fftw'
-'librsvg' 'fluidsynth' 'libsmf' 'evince' 'gtksourceview3' 'portmidi')
-makedepends=('intltool')
-backup=('etc/denemo/denemo.conf')
-source=("http://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz";)
-md5sums=('1d633ad7741ab12dab865219a20559f0')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: denemo/repos/community-i686/PKGBUILD (from rev 102120, 
denemo/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-12-05 14:32:13 UTC (rev 102121)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Philipp Sandhaus 
+# Contributor: Robert Emil Berge 
+# Contributor: Gnud 
+
+pkgname=denemo
+pkgver=1.1.0
+pkgrel=1
+pkgdesc="A music score editor"
+arch=('i686' 'x86_64')
+url="http://www.denemo.org";
+license=('GPL')
+depends=('aubio' 'portaudio' 'lilypond' 'gtk3' 'libxml2' 'guile' 'fftw'
+'librsvg' 'fluidsynth' 'libsmf' 'evince' 'gtksourceview3' 'portmidi'
+'rubberband')
+makedepends=('intltool')
+backup=('etc/denemo/denemo.conf')
+source=("http://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz";)
+md5sums=('5e708247b2abd9b3b196e8e2e033bf11')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2013-12-05 14:31:57 UTC (rev 102120)
+++ community-x86_64/PKGBUILD   2013-12-05 14:32:13 UTC (rev 102121)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Philipp Sandhaus 
-# Contributor: Robert Emil Berge 
-# Contributor: Gnud 
-
-pkgname=denemo
-pkgver=1.0.4
-pkgrel=1
-pkgdesc="A music score editor"
-arch=('i686' 'x86_64')
-url="http://www.denemo.org";
-license=('GPL')
-depends=('aubio' 'portaudio' 'lilypond' 'gtk3' 'libxml2' 'guile' 'fftw'
-'librsvg' 'fluidsynth' 'libsmf' 'evince' 'gtksourceview3' 'portmidi')
-makedepends=('intltool')
-backup=('etc/denemo/denemo.conf')
-source=("http://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz";)
-md5sums=('1d633ad7741ab12dab865219a20559f0')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: denemo/repos/community-x86_64/PKGBUILD (from rev 102120, 
denemo/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2013-12-05 14:32:13 UTC (rev 102121)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Philipp Sandhaus 
+# Contributor: Robert Emil Berge 
+# Contributor: Gnud 
+
+pkgname=denemo
+pkgver=1.1.0
+pkgrel=1
+pkgdesc="A music score editor"
+arch=('i686' 'x86_64')
+url="http://www.denemo.org";
+license=('GPL')
+depends=('aubio' 'portaudio' 'lilypond' 'gtk3' 'libxml2' 'guile' 'fftw'
+'librsvg' 'fluidsynth' 'libsmf' 'evince' 'gtksourceview3' 'portmidi'
+'rubberband')
+makedepends=('intltool')
+backup=('etc/denemo/denemo.conf')
+source=("http://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz";)
+md5sums=('5e708247b2abd9b3b196e8e2e033bf11')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make

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

2013-12-05 Thread Sergej Pupykin
Date: Thursday, December 5, 2013 @ 15:32:29
  Author: spupykin
Revision: 102122

upgpkg: unclutter 8-10

upd

Modified:
  unclutter/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-05 14:32:13 UTC (rev 102121)
+++ PKGBUILD2013-12-05 14:32:29 UTC (rev 102122)
@@ -6,12 +6,12 @@
 
 pkgname=unclutter
 pkgver=8
-pkgrel=9
+pkgrel=10
 pkgdesc="A small program for hiding the mouse cursor"
 url="http://ftp.x.org/contrib/utilities/unclutter-8.README";
 arch=('i686' 'x86_64')
 license=('Public Domain')
-depends=('libxext' 'rubberband')
+depends=('libxext')
 makedepends=('imake')
 source=(http://ftp.x.org/contrib/utilities/$pkgname-$pkgver.tar.Z
http://ftp.x.org/contrib/utilities/unclutter-8.README)



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

2013-12-05 Thread Sergej Pupykin
Date: Thursday, December 5, 2013 @ 15:31:57
  Author: spupykin
Revision: 102120

upgpkg: denemo 1.1.0-1

upd

Modified:
  denemo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-05 14:28:25 UTC (rev 102119)
+++ PKGBUILD2013-12-05 14:31:57 UTC (rev 102120)
@@ -5,7 +5,7 @@
 # Contributor: Gnud 
 
 pkgname=denemo
-pkgver=1.0.4
+pkgver=1.1.0
 pkgrel=1
 pkgdesc="A music score editor"
 arch=('i686' 'x86_64')
@@ -12,11 +12,12 @@
 url="http://www.denemo.org";
 license=('GPL')
 depends=('aubio' 'portaudio' 'lilypond' 'gtk3' 'libxml2' 'guile' 'fftw'
-'librsvg' 'fluidsynth' 'libsmf' 'evince' 'gtksourceview3' 'portmidi')
+'librsvg' 'fluidsynth' 'libsmf' 'evince' 'gtksourceview3' 'portmidi'
+'rubberband')
 makedepends=('intltool')
 backup=('etc/denemo/denemo.conf')
 source=("http://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz";)
-md5sums=('1d633ad7741ab12dab865219a20559f0')
+md5sums=('5e708247b2abd9b3b196e8e2e033bf11')
 
 build() {
   cd $srcdir/$pkgname-$pkgver



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

2013-12-05 Thread Sergej Pupykin
Date: Thursday, December 5, 2013 @ 15:32:44
  Author: spupykin
Revision: 102123

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-12-05 14:32:29 UTC (rev 102122)
+++ community-i686/PKGBUILD 2013-12-05 14:32:44 UTC (rev 102123)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Andrea Scarpino 
-# Contributor: Callan Barrett 
-# Contributor: Anthony Martin 
-
-pkgname=unclutter
-pkgver=8
-pkgrel=9
-pkgdesc="A small program for hiding the mouse cursor"
-url="http://ftp.x.org/contrib/utilities/unclutter-8.README";
-arch=('i686' 'x86_64')
-license=('Public Domain')
-depends=('libxext' 'rubberband')
-makedepends=('imake')
-source=(http://ftp.x.org/contrib/utilities/$pkgname-$pkgver.tar.Z
-   http://ftp.x.org/contrib/utilities/unclutter-8.README)
-md5sums=('83d7a6498b69078f869378f801b6a84b'
- '90ea7ff9f64945a6ca979d08a60c28dd')
-
-build() {
-  cd ${srcdir}/$pkgname
-  xmkmf -a
-  make
-}
-
-package() {
-  cd ${srcdir}/$pkgname
-  make DESTDIR=${pkgdir} install
-  install -Dm0644 unclutter.man ${pkgdir}/usr/share/man/man1/unclutter.1
-  install -Dm0644 $srcdir/unclutter-8.README 
${pkgdir}/usr/share/licenses/$pkgname/unclutter-8.README
-}

Copied: unclutter/repos/community-i686/PKGBUILD (from rev 102122, 
unclutter/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-12-05 14:32:44 UTC (rev 102123)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Andrea Scarpino 
+# Contributor: Callan Barrett 
+# Contributor: Anthony Martin 
+
+pkgname=unclutter
+pkgver=8
+pkgrel=10
+pkgdesc="A small program for hiding the mouse cursor"
+url="http://ftp.x.org/contrib/utilities/unclutter-8.README";
+arch=('i686' 'x86_64')
+license=('Public Domain')
+depends=('libxext')
+makedepends=('imake')
+source=(http://ftp.x.org/contrib/utilities/$pkgname-$pkgver.tar.Z
+   http://ftp.x.org/contrib/utilities/unclutter-8.README)
+md5sums=('83d7a6498b69078f869378f801b6a84b'
+ '90ea7ff9f64945a6ca979d08a60c28dd')
+
+build() {
+  cd ${srcdir}/$pkgname
+  xmkmf -a
+  make
+}
+
+package() {
+  cd ${srcdir}/$pkgname
+  make DESTDIR=${pkgdir} install
+  install -Dm0644 unclutter.man ${pkgdir}/usr/share/man/man1/unclutter.1
+  install -Dm0644 $srcdir/unclutter-8.README 
${pkgdir}/usr/share/licenses/$pkgname/unclutter-8.README
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2013-12-05 14:32:29 UTC (rev 102122)
+++ community-x86_64/PKGBUILD   2013-12-05 14:32:44 UTC (rev 102123)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Andrea Scarpino 
-# Contributor: Callan Barrett 
-# Contributor: Anthony Martin 
-
-pkgname=unclutter
-pkgver=8
-pkgrel=9
-pkgdesc="A small program for hiding the mouse cursor"
-url="http://ftp.x.org/contrib/utilities/unclutter-8.README";
-arch=('i686' 'x86_64')
-license=('Public Domain')
-depends=('libxext' 'rubberband')
-makedepends=('imake')
-source=(http://ftp.x.org/contrib/utilities/$pkgname-$pkgver.tar.Z
-   http://ftp.x.org/contrib/utilities/unclutter-8.README)
-md5sums=('83d7a6498b69078f869378f801b6a84b'
- '90ea7ff9f64945a6ca979d08a60c28dd')
-
-build() {
-  cd ${srcdir}/$pkgname
-  xmkmf -a
-  make
-}
-
-package() {
-  cd ${srcdir}/$pkgname
-  make DESTDIR=${pkgdir} install
-  install -Dm0644 unclutter.man ${pkgdir}/usr/share/man/man1/unclutter.1
-  install -Dm0644 $srcdir/unclutter-8.README 
${pkgdir}/usr/share/licenses/$pkgname/unclutter-8.README
-}

Copied: unclutter/repos/community-x86_64/PKGBUILD (from rev 102122, 
unclutter/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2013-12-05 14:32:44 UTC (rev 102123)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Andrea Scarpino 
+# Contributor: Callan Barrett 
+# Contributor: Anthony Martin 
+
+pkgname=unclutter
+pkgver=8
+pkgrel=10
+pkgdesc="A small program for hiding the mouse cursor"
+url="http://ftp.x.org/contrib/utilities/unclutter-8.README";
+arch=('i686' 'x86_64')
+license=('Public Domain')
+depe

[arch-commits] Commit in (4 files)

2013-12-05 Thread Felix Yan
Date: Thursday, December 5, 2013 @ 15:28:25
  Author: fyan
Revision: 102119

addpkg: python-py 1.4.18-1

Added:
  python-py/
  python-py/repos/
  python-py/trunk/
  python-py/trunk/PKGBUILD

--+
 PKGBUILD |   40 
 1 file changed, 40 insertions(+)

Added: python-py/trunk/PKGBUILD
===
--- python-py/trunk/PKGBUILD(rev 0)
+++ python-py/trunk/PKGBUILD2013-12-05 14:28:25 UTC (rev 102119)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Sebastian Wiesner 
+# Contributor: Igor Ramos Tiburcio 
+# Contributor: Wieland Hoffmann 
+# Contributor: Hervé Cauwelier 
+# Contributor: Felix Kaiser 
+
+pkgbase=python-py
+pkgname=('python-py' 'python2-py')
+pkgver=1.4.18
+pkgrel=1
+pkgdesc="rapid testing and development utils"
+arch=('any')
+license=('MIT')
+url="http://pylib.org/";
+makedepends=('python-setuptools' 'python2-setuptools')
+source=("http://pypi.python.org/packages/source/p/py/py-$pkgver.tar.gz";)
+
+prepare() {
+  cp -r py-${pkgver} python2-py-${pkgver}
+}
+
+package_python-py() {
+  depends=('python')
+
+  cd py-${pkgver}
+  python setup.py install --root="${pkgdir}" --optimize=1
+  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+package_python2-py() {
+  depends=('python2')
+
+  cd python2-py-${pkgver}
+  python2 setup.py install --root="${pkgdir}" --optimize=1
+  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+sha512sums=('cc2d547b5ddad98128c32f97afec4c022069540d9c15d469e9c45a4a1a59a5bc4916da2029bea587b4d1480c0867731fd2a4e46f465988754a371b2454e7bf07')


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


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

2013-12-05 Thread Sergej Pupykin
Date: Thursday, December 5, 2013 @ 15:10:26
  Author: spupykin
Revision: 102117

upgpkg: unclutter 8-9

upd

Modified:
  unclutter/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-05 14:10:16 UTC (rev 102116)
+++ PKGBUILD2013-12-05 14:10:26 UTC (rev 102117)
@@ -6,15 +6,17 @@
 
 pkgname=unclutter
 pkgver=8
-pkgrel=8
+pkgrel=9
 pkgdesc="A small program for hiding the mouse cursor"
 url="http://ftp.x.org/contrib/utilities/unclutter-8.README";
 arch=('i686' 'x86_64')
 license=('Public Domain')
-depends=('libxext')
+depends=('libxext' 'rubberband')
 makedepends=('imake')
-source=(http://ftp.x.org/contrib/utilities/$pkgname-$pkgver.tar.Z)
-md5sums=('83d7a6498b69078f869378f801b6a84b')
+source=(http://ftp.x.org/contrib/utilities/$pkgname-$pkgver.tar.Z
+   http://ftp.x.org/contrib/utilities/unclutter-8.README)
+md5sums=('83d7a6498b69078f869378f801b6a84b'
+ '90ea7ff9f64945a6ca979d08a60c28dd')
 
 build() {
   cd ${srcdir}/$pkgname
@@ -25,5 +27,6 @@
 package() {
   cd ${srcdir}/$pkgname
   make DESTDIR=${pkgdir} install
-  install -D -m 644 unclutter.man ${pkgdir}/usr/share/man/man1/unclutter.1
+  install -Dm0644 unclutter.man ${pkgdir}/usr/share/man/man1/unclutter.1
+  install -Dm0644 $srcdir/unclutter-8.README 
${pkgdir}/usr/share/licenses/$pkgname/unclutter-8.README
 }



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

2013-12-05 Thread Sergej Pupykin
Date: Thursday, December 5, 2013 @ 15:10:44
  Author: spupykin
Revision: 102118

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

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

---+
 /PKGBUILD |   64 
 community-i686/PKGBUILD   |   25 -
 community-x86_64/PKGBUILD |   25 -
 3 files changed, 64 insertions(+), 50 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-12-05 14:10:26 UTC (rev 102117)
+++ community-i686/PKGBUILD 2013-12-05 14:10:44 UTC (rev 102118)
@@ -1,25 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Andrea Scarpino 
-# Contributor: Callan Barrett 
-# Contributor: Anthony Martin 
-
-pkgname=unclutter
-pkgver=8
-pkgrel=8
-pkgdesc="A small program for hiding the mouse cursor"
-url="http://ftp.x.org/contrib/utilities/unclutter-8.README";
-arch=('i686' 'x86_64')
-license=('Public Domain')
-depends=('libxext')
-makedepends=('imake')
-source=(http://ftp.x.org/contrib/utilities/$pkgname-$pkgver.tar.Z)
-md5sums=('83d7a6498b69078f869378f801b6a84b')
-
-build() {
-  cd ${srcdir}/$pkgname
-  xmkmf -a
-  make
-  make DESTDIR=${pkgdir} install
-  install -D -m 644 unclutter.man ${pkgdir}/usr/share/man/man1/unclutter.1
-}

Copied: unclutter/repos/community-i686/PKGBUILD (from rev 102117, 
unclutter/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-12-05 14:10:44 UTC (rev 102118)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Andrea Scarpino 
+# Contributor: Callan Barrett 
+# Contributor: Anthony Martin 
+
+pkgname=unclutter
+pkgver=8
+pkgrel=9
+pkgdesc="A small program for hiding the mouse cursor"
+url="http://ftp.x.org/contrib/utilities/unclutter-8.README";
+arch=('i686' 'x86_64')
+license=('Public Domain')
+depends=('libxext' 'rubberband')
+makedepends=('imake')
+source=(http://ftp.x.org/contrib/utilities/$pkgname-$pkgver.tar.Z
+   http://ftp.x.org/contrib/utilities/unclutter-8.README)
+md5sums=('83d7a6498b69078f869378f801b6a84b'
+ '90ea7ff9f64945a6ca979d08a60c28dd')
+
+build() {
+  cd ${srcdir}/$pkgname
+  xmkmf -a
+  make
+}
+
+package() {
+  cd ${srcdir}/$pkgname
+  make DESTDIR=${pkgdir} install
+  install -Dm0644 unclutter.man ${pkgdir}/usr/share/man/man1/unclutter.1
+  install -Dm0644 $srcdir/unclutter-8.README 
${pkgdir}/usr/share/licenses/$pkgname/unclutter-8.README
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2013-12-05 14:10:26 UTC (rev 102117)
+++ community-x86_64/PKGBUILD   2013-12-05 14:10:44 UTC (rev 102118)
@@ -1,25 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Andrea Scarpino 
-# Contributor: Callan Barrett 
-# Contributor: Anthony Martin 
-
-pkgname=unclutter
-pkgver=8
-pkgrel=8
-pkgdesc="A small program for hiding the mouse cursor"
-url="http://ftp.x.org/contrib/utilities/unclutter-8.README";
-arch=('i686' 'x86_64')
-license=('Public Domain')
-depends=('libxext')
-makedepends=('imake')
-source=(http://ftp.x.org/contrib/utilities/$pkgname-$pkgver.tar.Z)
-md5sums=('83d7a6498b69078f869378f801b6a84b')
-
-build() {
-  cd ${srcdir}/$pkgname
-  xmkmf -a
-  make
-  make DESTDIR=${pkgdir} install
-  install -D -m 644 unclutter.man ${pkgdir}/usr/share/man/man1/unclutter.1
-}

Copied: unclutter/repos/community-x86_64/PKGBUILD (from rev 102117, 
unclutter/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2013-12-05 14:10:44 UTC (rev 102118)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Andrea Scarpino 
+# Contributor: Callan Barrett 
+# Contributor: Anthony Martin 
+
+pkgname=unclutter
+pkgver=8
+pkgrel=9
+pkgdesc="A small program for hiding the mouse cursor"
+url="http://ftp.x.org/contrib/utilities/unclutter-8.README";
+arch=('i686' 'x86_64')
+license=('Public Domain')
+depends=('libxext' 'rubberband')
+makedepends=('imake')
+source=(http://ftp.x.org/contrib/utilities/$pkgname-$pkgver.tar.Z
+   http://ftp.x.org/contrib/utilities/unclutter-8.README)
+md5sums=('83d7a6498b69078f869378f801b6a84b'
+ '90ea7ff9f64945a6ca979d08a60c28dd')
+
+build() {
+  cd ${srcdir}/$pkgname
+  xmkmf -a
+  make
+}
+
+package() {
+  cd ${srcdir}/$pkgname
+  make DESTDIR=${pkgdir} install
+  install -Dm0644 unclutter.man ${pkgdir}/usr/share/man/man1/unclutter.1
+  install -Dm0644 $srcdir/unclutter-8.README 

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

2013-12-05 Thread Alexander Rødseth
Date: Thursday, December 5, 2013 @ 15:05:50
  Author: arodseth
Revision: 102114

upgpkg: python-pexpect 3.0-1

Modified:
  python-pexpect/trunk/PKGBUILD

--+
 PKGBUILD |   34 +++---
 1 file changed, 23 insertions(+), 11 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-12-05 14:01:02 UTC (rev 102113)
+++ PKGBUILD2013-12-05 14:05:50 UTC (rev 102114)
@@ -2,25 +2,37 @@
 # Maintainer: Alexander Rødseth 
 # Contributor: Aaron Schaefer 
 
-pkgbase=python-pexpect
-pkgname=(python2-pexpect)
-pkgver=2.4
-pkgrel=2
+pkgname=('python-pexpect' 'python2-pexpect')
+pkgver=3.0
+pkgrel=1
 pkgdesc='Make Python a better tool for controlling and automating other 
programs'
 arch=('any')
-url='http://pexpect.sourceforge.net/'
+url='http://pexpect.readthedocs.org/en/latest/'
 license=('MIT')
-depends=('python2')
+makedepends=('python' 'python2')
 conflicts=('python-pexpect<=2.4')
 replaces=('python-pexpect<=2.4')
 
source=("http://pypi.python.org/packages/source/p/pexpect/pexpect-$pkgver.tar.gz";)
-sha256sums=('43c788f59dcf4bed677fd0b16891787dbf747e210ffedb6e90156fbbbd4d3b7b')
+sha256sums=('1d6cee0fa5ab212f9ddac9852bab0df5fff11a173ed1bfde9346d5c8aa42d14c')
 
+prepare() {
+  cp -r "pexpect-$pkgver" "python2-pexpect-$pkgver"
+  sed -i 's:env python:env python2:' "python2-pexpect-$pkgver/pexpect/FSM.py"
+}
+
+package_python-pexpect() {
+  depends+=('python')
+  cd "pexpect-$pkgver"
+  python setup.py install --root="$pkgdir"
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+
 package_python2-pexpect() {
-  cd $srcdir/pexpect-$pkgver
-  sed -i 's:#!/usr/bin/env python:#!/usr/bin/python2:' FSM.py
-  python2 setup.py install --root=$pkgdir
-  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+  depends+=('python2')
+  cd "python2-pexpect-$pkgver"
+  python2 setup.py install --root="$pkgdir"
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
 }
 
 # vim:set ts=2 sw=2 et:



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

2013-12-05 Thread Alexander Rødseth
Date: Thursday, December 5, 2013 @ 15:05:56
  Author: arodseth
Revision: 102115

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2013-12-05 14:05:50 UTC (rev 102114)
+++ PKGBUILD2013-12-05 14:05:56 UTC (rev 102115)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth 
-# Contributor: Aaron Schaefer 
-
-pkgbase=python-pexpect
-pkgname=(python2-pexpect)
-pkgver=2.4
-pkgrel=2
-pkgdesc='Make Python a better tool for controlling and automating other 
programs'
-arch=('any')
-url='http://pexpect.sourceforge.net/'
-license=('MIT')
-depends=('python2')
-conflicts=('python-pexpect<=2.4')
-replaces=('python-pexpect<=2.4')
-source=("http://pypi.python.org/packages/source/p/pexpect/pexpect-$pkgver.tar.gz";)
-sha256sums=('43c788f59dcf4bed677fd0b16891787dbf747e210ffedb6e90156fbbbd4d3b7b')
-
-package_python2-pexpect() {
-  cd $srcdir/pexpect-$pkgver
-  sed -i 's:#!/usr/bin/env python:#!/usr/bin/python2:' FSM.py
-  python2 setup.py install --root=$pkgdir
-  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-pexpect/repos/community-any/PKGBUILD (from rev 102114, 
python-pexpect/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-12-05 14:05:56 UTC (rev 102115)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: Aaron Schaefer 
+
+pkgname=('python-pexpect' 'python2-pexpect')
+pkgver=3.0
+pkgrel=1
+pkgdesc='Make Python a better tool for controlling and automating other 
programs'
+arch=('any')
+url='http://pexpect.readthedocs.org/en/latest/'
+license=('MIT')
+makedepends=('python' 'python2')
+conflicts=('python-pexpect<=2.4')
+replaces=('python-pexpect<=2.4')
+source=("http://pypi.python.org/packages/source/p/pexpect/pexpect-$pkgver.tar.gz";)
+sha256sums=('1d6cee0fa5ab212f9ddac9852bab0df5fff11a173ed1bfde9346d5c8aa42d14c')
+
+prepare() {
+  cp -r "pexpect-$pkgver" "python2-pexpect-$pkgver"
+  sed -i 's:env python:env python2:' "python2-pexpect-$pkgver/pexpect/FSM.py"
+}
+
+package_python-pexpect() {
+  depends+=('python')
+  cd "pexpect-$pkgver"
+  python setup.py install --root="$pkgdir"
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+
+package_python2-pexpect() {
+  depends+=('python2')
+  cd "python2-pexpect-$pkgver"
+  python2 setup.py install --root="$pkgdir"
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:



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

2013-12-05 Thread Sébastien Luttringer
Date: Thursday, December 5, 2013 @ 13:02:25
  Author: seblu
Revision: 102112

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

Added:
  docker/repos/community-i686/
  docker/repos/community-i686/01-fix-libexec.patch
(from rev 102111, docker/trunk/01-fix-libexec.patch)
  docker/repos/community-i686/PKGBUILD
(from rev 102111, docker/trunk/PKGBUILD)
  docker/repos/community-i686/docker.service
(from rev 102111, docker/trunk/docker.service)
  docker/repos/community-x86_64/
  docker/repos/community-x86_64/01-fix-libexec.patch
(from rev 102111, docker/trunk/01-fix-libexec.patch)
  docker/repos/community-x86_64/PKGBUILD
(from rev 102111, docker/trunk/PKGBUILD)
  docker/repos/community-x86_64/docker.service
(from rev 102111, docker/trunk/docker.service)

---+
 community-i686/01-fix-libexec.patch   |   19 +++
 community-i686/PKGBUILD   |   55 
 community-i686/docker.service |   11 ++
 community-x86_64/01-fix-libexec.patch |   19 +++
 community-x86_64/PKGBUILD |   55 
 community-x86_64/docker.service   |   11 ++
 6 files changed, 170 insertions(+)

Copied: docker/repos/community-i686/01-fix-libexec.patch (from rev 102111, 
docker/trunk/01-fix-libexec.patch)
===
--- community-i686/01-fix-libexec.patch (rev 0)
+++ community-i686/01-fix-libexec.patch 2013-12-05 12:02:25 UTC (rev 102112)
@@ -0,0 +1,19 @@
+diff --git a/utils/utils.go b/utils/utils.go
+index cfdc73b..becc0dd 100644
+--- a/utils/utils.go
 b/utils/utils.go
+@@ -279,9 +279,14 @@ func DockerInitPath(localCopy string) string {
+   var possibleInits = []string{
+   localCopy,
+   filepath.Join(filepath.Dir(selfPath), "dockerinit"),
++
+   // "/usr/libexec includes internal binaries that are not 
intended to be executed directly by users or shell scripts. Applications may 
use a single subdirectory under /usr/libexec."
+   "/usr/libexec/docker/dockerinit",
+   "/usr/local/libexec/docker/dockerinit",
++
++  // strict FHS 2.3: "/usr/lib includes object files, libraries, 
and internal binaries that are not intended to be executed directly by users or 
shell scripts."
++  "/usr/lib/docker/dockerinit",
++  "/usr/local/lib/docker/dockerinit",
+   }
+   for _, dockerInit := range possibleInits {
+   path, err := exec.LookPath(dockerInit)
\ No newline at end of file

Copied: docker/repos/community-i686/PKGBUILD (from rev 102111, 
docker/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-12-05 12:02:25 UTC (rev 102112)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Sébastien "Seblu" Luttringer
+
+pkgname=docker
+pkgver=0.7.0
+pkgrel=1
+epoch=1
+pkgdesc='Pack, ship and run any application as a lightweight container'
+arch=('x86_64' 'i686')
+url='http://www.docker.io/'
+license=('Apache')
+depends=('bridge-utils' 'iproute2' 'device-mapper' 'lxc' 'sqlite' 'systemd')
+makedepends=('git' 'go')
+# don't strip binaries! A sha1 is used to check binary consistency.
+options=('!strip')
+source=("git+https://github.com/dotcloud/docker.git#tag=v$pkgver";
+'docker.service'
+'01-fix-libexec.patch')
+md5sums=('SKIP'
+ '3f7ccab915fb1942f06e18946c2811d2'
+ '6684c04dd4697e0cb7aa3f171c96a2e4')
+# magic harcoded path
+_magic=src/github.com/dotcloud
+
+prepare() {
+  mkdir -p "$_magic"
+  ln -sfn "../../../docker" "$_magic/docker"
+  # patch for libexec path waiting 0.7.1
+  patch -p1 -d docker < 01-fix-libexec.patch
+}
+
+build() {
+  cd "$_magic/docker"
+  export GOPATH="$srcdir:$srcdir/$_magic/docker/vendor"
+  ./hack/make.sh dynbinary
+}
+
+check() {
+  cd "$_magic/docker"
+  # Will be added upstream soon
+  #./hack/make.sh dyntest
+}
+
+package() {
+  cd "$_magic/docker"
+  install -Dm755 "bundles/$pkgver/dynbinary/docker-$pkgver" 
"$pkgdir/usr/bin/docker"
+  install -Dm755 "bundles/$pkgver/dynbinary/dockerinit-$pkgver" 
"$pkgdir/usr/lib/docker/dockerinit"
+  # completion
+  install -Dm644 "contrib/completion/bash/docker" 
"$pkgdir/usr/share/bash-completion/completions/docker"
+  install -Dm644 "contrib/completion/zsh/_docker" 
"$pkgdir/usr/share/zsh/site-functions/_docker"
+  # systemd
+  install -Dm644 "$srcdir/docker.service" 
"$pkgdir/usr/lib/systemd/system/docker.service"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: docker/repos/community-i686/docker.service (from rev 102111, 
docker/trunk/docker.service)
===
--- community-i686/docker.service   (rev 0)
+++ community-i686/docker.service   2013-12-05 12:02:25 UTC (rev 102112)
@@ -0,0 +

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

2013-12-05 Thread Bartłomiej Piotrowski
Date: Thursday, December 5, 2013 @ 12:49:45
  Author: bpiotrowski
Revision: 200798

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

Added:
  docker-tray/repos/extra-i686/
  docker-tray/repos/extra-i686/PKGBUILD
(from rev 200797, docker-tray/trunk/PKGBUILD)
  docker-tray/repos/extra-x86_64/
  docker-tray/repos/extra-x86_64/PKGBUILD
(from rev 200797, docker-tray/trunk/PKGBUILD)

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

Copied: docker-tray/repos/extra-i686/PKGBUILD (from rev 200797, 
docker-tray/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-12-05 11:49:45 UTC (rev 200798)
@@ -0,0 +1,26 @@
+# $Id$
+# Contributor: Jochem Kossen 
+
+pkgname=docker-tray
+pkgver=1.5
+pkgrel=1
+pkgdesc="Docker is a docking application (WindowMaker dock app) which acts as 
a system tray for KDE and GNOME2."
+arch=('i686' 'x86_64')
+url="http://icculus.org/openbox/2/docker/";
+license=('GPL')
+depends=('glibc' 'glib2' 'libx11')
+replaces=("docker<=1.5")
+conflicts=("docker")
+source=("http://icculus.org/openbox/2/docker/docker-$pkgver.tar.gz";)
+md5sums=('349320bebd43babb8b43e11c7aae0293')
+
+build() {
+  cd docker-$pkgver
+  make
+}
+
+package() {
+  cd docker-$pkgver
+  install -d "$pkgdir"/usr/bin
+  make PREFIX="$pkgdir"/usr install
+}

Copied: docker-tray/repos/extra-x86_64/PKGBUILD (from rev 200797, 
docker-tray/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2013-12-05 11:49:45 UTC (rev 200798)
@@ -0,0 +1,26 @@
+# $Id$
+# Contributor: Jochem Kossen 
+
+pkgname=docker-tray
+pkgver=1.5
+pkgrel=1
+pkgdesc="Docker is a docking application (WindowMaker dock app) which acts as 
a system tray for KDE and GNOME2."
+arch=('i686' 'x86_64')
+url="http://icculus.org/openbox/2/docker/";
+license=('GPL')
+depends=('glibc' 'glib2' 'libx11')
+replaces=("docker<=1.5")
+conflicts=("docker")
+source=("http://icculus.org/openbox/2/docker/docker-$pkgver.tar.gz";)
+md5sums=('349320bebd43babb8b43e11c7aae0293')
+
+build() {
+  cd docker-$pkgver
+  make
+}
+
+package() {
+  cd docker-$pkgver
+  install -d "$pkgdir"/usr/bin
+  make PREFIX="$pkgdir"/usr install
+}



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

2013-12-05 Thread Bartłomiej Piotrowski
Date: Thursday, December 5, 2013 @ 12:47:43
  Author: bpiotrowski
Revision: 200797

Rename docker to docker-tray.

https://mailman.archlinux.org/pipermail/arch-dev-public/2013-November/025659.html

Added:
  docker-tray/
Modified:
  docker-tray/trunk/PKGBUILD
Deleted:
  docker/

--+
 PKGBUILD |   16 +---
 1 file changed, 9 insertions(+), 7 deletions(-)

Modified: docker-tray/trunk/PKGBUILD
===
--- docker/trunk/PKGBUILD   2013-12-05 11:43:56 UTC (rev 200796)
+++ docker-tray/trunk/PKGBUILD  2013-12-05 11:47:43 UTC (rev 200797)
@@ -1,24 +1,26 @@
 # $Id$
 # Contributor: Jochem Kossen 
 
-pkgname=docker
+pkgname=docker-tray
 pkgver=1.5
-pkgrel=6
+pkgrel=1
 pkgdesc="Docker is a docking application (WindowMaker dock app) which acts as 
a system tray for KDE and GNOME2."
 arch=('i686' 'x86_64')
 url="http://icculus.org/openbox/2/docker/";
 license=('GPL')
 depends=('glibc' 'glib2' 'libx11')
-source=("http://icculus.org/openbox/2/$pkgname/$pkgname-$pkgver.tar.gz";)
+replaces=("docker<=1.5")
+conflicts=("docker")
+source=("http://icculus.org/openbox/2/docker/docker-$pkgver.tar.gz";)
 md5sums=('349320bebd43babb8b43e11c7aae0293')
 
 build() {
-  cd $srcdir/$pkgname-$pkgver
+  cd docker-$pkgver
   make
 }
 
 package() {
-  cd $srcdir/$pkgname-$pkgver
-  install -d $pkgdir/usr/bin
-  make PREFIX=$pkgdir/usr install
+  cd docker-$pkgver
+  install -d "$pkgdir"/usr/bin
+  make PREFIX="$pkgdir"/usr install
 }



[arch-commits] Commit in intellij-idea-community-edition/repos/community-any (8 files)

2013-12-05 Thread Lukas Jirkovsky
Date: Thursday, December 5, 2013 @ 12:29:40
  Author: stativ
Revision: 102111

archrelease: copy trunk to community-any

Added:
  intellij-idea-community-edition/repos/community-any/PKGBUILD
(from rev 102110, intellij-idea-community-edition/trunk/PKGBUILD)
  intellij-idea-community-edition/repos/community-any/idea.desktop
(from rev 102110, intellij-idea-community-edition/trunk/idea.desktop)
  intellij-idea-community-edition/repos/community-any/idea.install
(from rev 102110, intellij-idea-community-edition/trunk/idea.install)
  intellij-idea-community-edition/repos/community-any/idea.sh
(from rev 102110, intellij-idea-community-edition/trunk/idea.sh)
Deleted:
  intellij-idea-community-edition/repos/community-any/PKGBUILD
  intellij-idea-community-edition/repos/community-any/idea.desktop
  intellij-idea-community-edition/repos/community-any/idea.install
  intellij-idea-community-edition/repos/community-any/idea.sh

--+
 PKGBUILD |   77 -
 idea.desktop |   16 +--
 idea.install |   18 ++---
 idea.sh  |8 ++---
 4 files changed, 60 insertions(+), 59 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2013-12-05 11:23:31 UTC (rev 102110)
+++ PKGBUILD2013-12-05 11:29:40 UTC (rev 102111)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Lukas Jirkovsky 
-pkgname=intellij-idea-community-edition
-pkgver=12.1.6
-_pkgver=129.1359
-pkgrel=1
-pkgdesc="IDE for Java, Groovy and other programming languages with advanced 
refactoring features"
-arch=('any')
-url="http://www.jetbrains.org/";
-license=('Apache')
-depends=('java-environment' "intellij-idea-libs=$pkgver" 'giflib')
-install=idea.install
-source=(http://download.jetbrains.com/idea/ideaIC-$pkgver.tar.gz \
-idea.desktop idea.sh)
-md5sums=('5731ad2d6113ea7e8aedffc011480cb8'
- '29e2d4ab0578a6d44533292bec8843ee'
- 'f27bad35ee8e6445ca2f8a591bca895a')
-
-package() {
-  install -d -m755 "$pkgdir/"usr/share
-  cp -a "idea-IC-$_pkgver" "$pkgdir"/usr/share/intellijidea-ce
-
-  # remove files owned by intellij-idea-libs
-  rm "$pkgdir"/usr/share/intellijidea-ce/bin/{fsnotifier,libbreakgen}*
-
-  # make sure that all files are owned by root
-  chown -R root:root "$pkgdir/usr/share"
-
-  # never wait on user input when starting idea
-  sed -i '/.*read IGNORE.*/ d' "$pkgdir"/usr/share/intellijidea-ce/bin/idea.sh
-
-  install -D -m755 "$srcdir"/idea.sh "$pkgdir"/usr/bin/idea.sh
-  install -D -m644 "$srcdir"/idea.desktop 
"$pkgdir"/usr/share/applications/idea.desktop
-  install -D -m644 "$pkgdir"/usr/share/intellijidea-ce/bin/idea.png \
-   "$pkgdir"/usr/share/pixmaps/idea.png
-}
-
-# vim:set ts=2 sw=2 et:

Copied: intellij-idea-community-edition/repos/community-any/PKGBUILD (from rev 
102110, intellij-idea-community-edition/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-12-05 11:29:40 UTC (rev 102111)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Lukas Jirkovsky 
+pkgname=intellij-idea-community-edition
+pkgver=13
+_pkgver=133.193
+pkgrel=1
+pkgdesc="IDE for Java, Groovy and other programming languages with advanced 
refactoring features"
+arch=('any')
+url="http://www.jetbrains.org/";
+license=('Apache')
+depends=('java-environment' "intellij-idea-libs=$pkgver" 'giflib')
+install=idea.install
+source=(http://download.jetbrains.com/idea/ideaIC-$pkgver.tar.gz \
+idea.desktop idea.sh)
+md5sums=('6829aab38c582a15817fb06f85d92584'
+ '29e2d4ab0578a6d44533292bec8843ee'
+ 'f27bad35ee8e6445ca2f8a591bca895a')
+
+package() {
+  install -d -m755 "$pkgdir/"usr/share
+  cp -a "idea-IC-$_pkgver" "$pkgdir"/usr/share/intellijidea-ce
+
+  # remove files owned by intellij-idea-libs
+  rm "$pkgdir"/usr/share/intellijidea-ce/bin/{fsnotifier,libbreakgen}*
+  rm -rf "$pkgdir"/usr/share/intellijidea-ce/lib/libpty
+
+  # make sure that all files are owned by root
+  chown -R root:root "$pkgdir/usr/share"
+
+  # never wait on user input when starting idea
+  sed -i '/.*read IGNORE.*/ d' "$pkgdir"/usr/share/intellijidea-ce/bin/idea.sh
+
+  install -D -m755 "$srcdir"/idea.sh "$pkgdir"/usr/bin/idea.sh
+  install -D -m644 "$srcdir"/idea.desktop 
"$pkgdir"/usr/share/applications/idea.desktop
+  install -D -m644 "$pkgdir"/usr/share/intellijidea-ce/bin/idea.png \
+   "$pkgdir"/usr/share/pixmaps/idea.png
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: idea.desktop
===
--- idea.desktop2013-12-05 11:23:31 UTC (rev 102110)
+++ idea.desktop2013-12-05 11:29:40 UTC (rev 102111)
@@ -1,8 +0,0 @@
-[Desktop Entry]
-Name=IntelliJ IDEA Community Edition
-Comment=A Java IDE
-Exec=idea.sh %u
-Icon=idea
-Terminal=false
-Type=Application
-Categories=Development;IDE;Java;

Copied: intellij-idea-community-editio

[arch-commits] Commit in intellij-idea-libs/repos (4 files)

2013-12-05 Thread Lukas Jirkovsky
Date: Thursday, December 5, 2013 @ 12:23:31
  Author: stativ
Revision: 102110

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

Added:
  intellij-idea-libs/repos/community-i686/PKGBUILD
(from rev 102109, intellij-idea-libs/trunk/PKGBUILD)
  intellij-idea-libs/repos/community-x86_64/PKGBUILD
(from rev 102109, intellij-idea-libs/trunk/PKGBUILD)
Deleted:
  intellij-idea-libs/repos/community-i686/PKGBUILD
  intellij-idea-libs/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   52 
 community-i686/PKGBUILD   |   25 -
 community-x86_64/PKGBUILD |   25 -
 3 files changed, 52 insertions(+), 50 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-12-05 11:20:43 UTC (rev 102109)
+++ community-i686/PKGBUILD 2013-12-05 11:23:31 UTC (rev 102110)
@@ -1,25 +0,0 @@
-# $Id$
-# Maintainer: Lukas Jirkovsky 
-pkgname=intellij-idea-libs
-pkgver=12.1.6
-_pkgver=129.1359
-pkgrel=1
-pkgdesc="Architecture dependent libraries needed by the Intellij Idea IDE"
-arch=('i686' 'x86_64')
-url="http://www.jetbrains.org/";
-license=('Apache')
-depends=('glibc')
-options=(!strip)
-source=(http://download.jetbrains.com/idea/ideaIC-$pkgver.tar.gz)
-md5sums=('5731ad2d6113ea7e8aedffc011480cb8')
-
-package() {
-  install -d -m755 "$pkgdir/usr/share/intellijidea-ce/bin"
-  install -d -m755 "$pkgdir/usr/lib"
-
-  [ $CARCH == "x86_64" ] && SUFFIX=64
-  install -m755 "idea-IC-$_pkgver"/bin/fsnotifier${SUFFIX} 
"$pkgdir"/usr/share/intellijidea-ce/bin/
-  install -m644 "idea-IC-$_pkgver"/bin/libbreakgen${SUFFIX}.so 
"$pkgdir"/usr/lib
-}
-
-# vim:set ts=2 sw=2 et:

Copied: intellij-idea-libs/repos/community-i686/PKGBUILD (from rev 102109, 
intellij-idea-libs/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-12-05 11:23:31 UTC (rev 102110)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Lukas Jirkovsky 
+pkgname=intellij-idea-libs
+pkgver=13
+_pkgver=133.193
+pkgrel=1
+pkgdesc="Architecture dependent libraries needed by the Intellij Idea IDE"
+arch=('i686' 'x86_64')
+url="http://www.jetbrains.org/";
+license=('Apache')
+depends=('glibc')
+options=(!strip)
+source=(http://download.jetbrains.com/idea/ideaIC-$pkgver.tar.gz)
+md5sums=('6829aab38c582a15817fb06f85d92584')
+
+package() {
+  [ $CARCH == "x86_64" ] && SUFFIX=64
+  install -D -m755 "idea-IC-$_pkgver"/bin/fsnotifier${SUFFIX} 
"$pkgdir"/usr/share/intellijidea-ce/bin/fsnotifier${SUFFIX}
+  install -D -m644 "idea-IC-$_pkgver"/bin/libbreakgen${SUFFIX}.so 
"$pkgdir"/usr/lib/libbreakgen${SUFFIX}.so
+  
+  # libpty
+  [ $CARCH == "x86_64" ] && _ARCH=x86_64 || _ARCH=x86
+  install -D -m644 "idea-IC-$_pkgver"/lib/libpty/linux/$_ARCH/libpty.so 
"$pkgdir"/usr/share/intellijidea-ce/lib/libpty/linux/$_ARCH/libpty.so
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2013-12-05 11:20:43 UTC (rev 102109)
+++ community-x86_64/PKGBUILD   2013-12-05 11:23:31 UTC (rev 102110)
@@ -1,25 +0,0 @@
-# $Id$
-# Maintainer: Lukas Jirkovsky 
-pkgname=intellij-idea-libs
-pkgver=12.1.6
-_pkgver=129.1359
-pkgrel=1
-pkgdesc="Architecture dependent libraries needed by the Intellij Idea IDE"
-arch=('i686' 'x86_64')
-url="http://www.jetbrains.org/";
-license=('Apache')
-depends=('glibc')
-options=(!strip)
-source=(http://download.jetbrains.com/idea/ideaIC-$pkgver.tar.gz)
-md5sums=('5731ad2d6113ea7e8aedffc011480cb8')
-
-package() {
-  install -d -m755 "$pkgdir/usr/share/intellijidea-ce/bin"
-  install -d -m755 "$pkgdir/usr/lib"
-
-  [ $CARCH == "x86_64" ] && SUFFIX=64
-  install -m755 "idea-IC-$_pkgver"/bin/fsnotifier${SUFFIX} 
"$pkgdir"/usr/share/intellijidea-ce/bin/
-  install -m644 "idea-IC-$_pkgver"/bin/libbreakgen${SUFFIX}.so 
"$pkgdir"/usr/lib
-}
-
-# vim:set ts=2 sw=2 et:

Copied: intellij-idea-libs/repos/community-x86_64/PKGBUILD (from rev 102109, 
intellij-idea-libs/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2013-12-05 11:23:31 UTC (rev 102110)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Lukas Jirkovsky 
+pkgname=intellij-idea-libs
+pkgver=13
+_pkgver=133.193
+pkgrel=1
+pkgdesc="Architecture dependent libraries needed by the Intellij Idea IDE"
+arch=('i686' 'x86_64')
+url="http://www.jetbrains.org/";
+license=('Apache')
+depends=('glibc')
+options=(!strip)
+source=(http://download.jetbrains.com/idea/ideaIC-$pkgver.tar.gz)
+md5sums=('6829aab38c582a15817fb06f85d92584')
+
+package() {
+  [ $CARCH == "x86_64" ] && SUFFIX=64
+  install -D -m755 "idea-IC-$_pkgver"/bin/fsnotifier${SUFFIX} 
"$pkgdir"/usr/share/intelli

[arch-commits] Commit in intellij-idea-community-edition/trunk (PKGBUILD)

2013-12-05 Thread Lukas Jirkovsky
Date: Thursday, December 5, 2013 @ 12:20:43
  Author: stativ
Revision: 102109

intellij-idea-community-edition: update to 13

Modified:
  intellij-idea-community-edition/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-05 11:20:14 UTC (rev 102108)
+++ PKGBUILD2013-12-05 11:20:43 UTC (rev 102109)
@@ -1,8 +1,8 @@
 # $Id$
 # Maintainer: Lukas Jirkovsky 
 pkgname=intellij-idea-community-edition
-pkgver=12.1.6
-_pkgver=129.1359
+pkgver=13
+_pkgver=133.193
 pkgrel=1
 pkgdesc="IDE for Java, Groovy and other programming languages with advanced 
refactoring features"
 arch=('any')
@@ -12,7 +12,7 @@
 install=idea.install
 source=(http://download.jetbrains.com/idea/ideaIC-$pkgver.tar.gz \
 idea.desktop idea.sh)
-md5sums=('5731ad2d6113ea7e8aedffc011480cb8'
+md5sums=('6829aab38c582a15817fb06f85d92584'
  '29e2d4ab0578a6d44533292bec8843ee'
  'f27bad35ee8e6445ca2f8a591bca895a')
 
@@ -22,6 +22,7 @@
 
   # remove files owned by intellij-idea-libs
   rm "$pkgdir"/usr/share/intellijidea-ce/bin/{fsnotifier,libbreakgen}*
+  rm -rf "$pkgdir"/usr/share/intellijidea-ce/lib/libpty
 
   # make sure that all files are owned by root
   chown -R root:root "$pkgdir/usr/share"



[arch-commits] Commit in intellij-idea-libs/trunk (PKGBUILD)

2013-12-05 Thread Lukas Jirkovsky
Date: Thursday, December 5, 2013 @ 12:20:14
  Author: stativ
Revision: 102108

intellij-idea-libs: update to 13

Modified:
  intellij-idea-libs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-05 10:44:35 UTC (rev 102107)
+++ PKGBUILD2013-12-05 11:20:14 UTC (rev 102108)
@@ -1,8 +1,8 @@
 # $Id$
 # Maintainer: Lukas Jirkovsky 
 pkgname=intellij-idea-libs
-pkgver=12.1.6
-_pkgver=129.1359
+pkgver=13
+_pkgver=133.193
 pkgrel=1
 pkgdesc="Architecture dependent libraries needed by the Intellij Idea IDE"
 arch=('i686' 'x86_64')
@@ -11,15 +11,16 @@
 depends=('glibc')
 options=(!strip)
 source=(http://download.jetbrains.com/idea/ideaIC-$pkgver.tar.gz)
-md5sums=('5731ad2d6113ea7e8aedffc011480cb8')
+md5sums=('6829aab38c582a15817fb06f85d92584')
 
 package() {
-  install -d -m755 "$pkgdir/usr/share/intellijidea-ce/bin"
-  install -d -m755 "$pkgdir/usr/lib"
-
   [ $CARCH == "x86_64" ] && SUFFIX=64
-  install -m755 "idea-IC-$_pkgver"/bin/fsnotifier${SUFFIX} 
"$pkgdir"/usr/share/intellijidea-ce/bin/
-  install -m644 "idea-IC-$_pkgver"/bin/libbreakgen${SUFFIX}.so 
"$pkgdir"/usr/lib
+  install -D -m755 "idea-IC-$_pkgver"/bin/fsnotifier${SUFFIX} 
"$pkgdir"/usr/share/intellijidea-ce/bin/fsnotifier${SUFFIX}
+  install -D -m644 "idea-IC-$_pkgver"/bin/libbreakgen${SUFFIX}.so 
"$pkgdir"/usr/lib/libbreakgen${SUFFIX}.so
+  
+  # libpty
+  [ $CARCH == "x86_64" ] && _ARCH=x86_64 || _ARCH=x86
+  install -D -m644 "idea-IC-$_pkgver"/lib/libpty/linux/$_ARCH/libpty.so 
"$pkgdir"/usr/share/intellijidea-ce/lib/libpty/linux/$_ARCH/libpty.so
 }
 
 # vim:set ts=2 sw=2 et:



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

2013-12-05 Thread Alexander Rødseth
Date: Thursday, December 5, 2013 @ 11:44:27
  Author: arodseth
Revision: 102106

upgpkg: alex 3.1.3-1

Modified:
  alex/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-05 10:08:06 UTC (rev 102105)
+++ PKGBUILD2013-12-05 10:44:27 UTC (rev 102106)
@@ -5,7 +5,7 @@
 # Contributor: Philip Nilsson 
 
 pkgname=alex
-pkgver=3.1.2
+pkgver=3.1.3
 pkgrel=1
 pkgdesc='Lexical analyser generator for Haskell'
 arch=('x86_64' 'i686')
@@ -14,7 +14,7 @@
 depends=('gmp')
 makedepends=('ghc=7.6.3-1' 'haskell-quickcheck>=2' 'happy')
 
source=("http://hackage.haskell.org/packages/archive/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz";)
-sha256sums=('1d14eb255c44f440f04876c496ed5db24aba8d05b45d665463633afe92361e6d')
+sha256sums=('8d41a6e72a016155f00c846f7146ab4b27fe9640668a4b592d6a9b856f970a92')
 
 build() {
   cd "$pkgname-$pkgver"



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

2013-12-05 Thread Alexander Rødseth
Date: Thursday, December 5, 2013 @ 11:44:35
  Author: arodseth
Revision: 102107

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-12-05 10:44:27 UTC (rev 102106)
+++ community-i686/PKGBUILD 2013-12-05 10:44:35 UTC (rev 102107)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth 
-# Contributor: Sergej Pupykin 
-# Contributor: Vesa Kaihlavirta 
-# Contributor: Philip Nilsson 
-
-pkgname=alex
-pkgver=3.1.2
-pkgrel=1
-pkgdesc='Lexical analyser generator for Haskell'
-arch=('x86_64' 'i686')
-url='http://hackage.haskell.org/package/alex'
-license=('custom:BSD3')
-depends=('gmp')
-makedepends=('ghc=7.6.3-1' 'haskell-quickcheck>=2' 'happy')
-source=("http://hackage.haskell.org/packages/archive/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz";)
-sha256sums=('1d14eb255c44f440f04876c496ed5db24aba8d05b45d665463633afe92361e6d')
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  runghc Setup.lhs configure --prefix=/usr --datasubdir="$pkgname"
-  runghc Setup.lhs build
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-
-  runghc Setup.lhs copy --destdir="$pkgdir"
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/alex/BSD3"
-  # Doc only contains the license
-  rm -rf $pkgdir/usr/share/doc
-}
-
-# vim:set ts=2 sw=2 et:

Copied: alex/repos/community-i686/PKGBUILD (from rev 102106, 
alex/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-12-05 10:44:35 UTC (rev 102107)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: Sergej Pupykin 
+# Contributor: Vesa Kaihlavirta 
+# Contributor: Philip Nilsson 
+
+pkgname=alex
+pkgver=3.1.3
+pkgrel=1
+pkgdesc='Lexical analyser generator for Haskell'
+arch=('x86_64' 'i686')
+url='http://hackage.haskell.org/package/alex'
+license=('custom:BSD3')
+depends=('gmp')
+makedepends=('ghc=7.6.3-1' 'haskell-quickcheck>=2' 'happy')
+source=("http://hackage.haskell.org/packages/archive/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz";)
+sha256sums=('8d41a6e72a016155f00c846f7146ab4b27fe9640668a4b592d6a9b856f970a92')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  runghc Setup.lhs configure --prefix=/usr --datasubdir="$pkgname"
+  runghc Setup.lhs build
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  runghc Setup.lhs copy --destdir="$pkgdir"
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/alex/BSD3"
+  # Doc only contains the license
+  rm -rf $pkgdir/usr/share/doc
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2013-12-05 10:44:27 UTC (rev 102106)
+++ community-x86_64/PKGBUILD   2013-12-05 10:44:35 UTC (rev 102107)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth 
-# Contributor: Sergej Pupykin 
-# Contributor: Vesa Kaihlavirta 
-# Contributor: Philip Nilsson 
-
-pkgname=alex
-pkgver=3.1.2
-pkgrel=1
-pkgdesc='Lexical analyser generator for Haskell'
-arch=('x86_64' 'i686')
-url='http://hackage.haskell.org/package/alex'
-license=('custom:BSD3')
-depends=('gmp')
-makedepends=('ghc=7.6.3-1' 'haskell-quickcheck>=2' 'happy')
-source=("http://hackage.haskell.org/packages/archive/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz";)
-sha256sums=('1d14eb255c44f440f04876c496ed5db24aba8d05b45d665463633afe92361e6d')
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  runghc Setup.lhs configure --prefix=/usr --datasubdir="$pkgname"
-  runghc Setup.lhs build
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-
-  runghc Setup.lhs copy --destdir="$pkgdir"
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/alex/BSD3"
-  # Doc only contains the license
-  rm -rf $pkgdir/usr/share/doc
-}
-
-# vim:set ts=2 sw=2 et:

Copied: alex/repos/community-x86_64/PKGBUILD (from rev 102106, 
alex/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2013-12-05 10:44:35 UTC (rev 102107)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: Sergej Pupykin 
+# Contributor: Vesa Kaihlavirta 
+# Contributor: Philip Nilsson 
+
+pkgname=alex
+pkgver=3.1.3
+pkgrel=1
+pkgdesc='Lexical analyser generator for Haskell'
+arch=('x86_64' 'i686')
+url='http://hackage.haskell.org/package/

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

2013-12-05 Thread Andrea Scarpino
Date: Thursday, December 5, 2013 @ 11:11:35
  Author: andrea
Revision: 200794

Upstream website

Modified:
  libkfbapi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-05 09:01:27 UTC (rev 200793)
+++ PKGBUILD2013-12-05 10:11:35 UTC (rev 200794)
@@ -7,7 +7,7 @@
 pkgrel=1
 pkgdesc="KDE library for accessing Facebook services"
 arch=('i686' 'x86_64')
-url='https://projects.kde.org/libkfbapi'
+url='https://projects.kde.org/projects/extragear/libs/libkfbapi'
 license=('GPL')
 depends=('kdepimlibs')
 makedepends=('cmake' 'automoc4' 'boost')



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

2013-12-05 Thread Sven-Hendrik Haase
Date: Thursday, December 5, 2013 @ 11:08:06
  Author: svenstaro
Revision: 102105

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

Added:
  mygui/repos/community-i686/PKGBUILD
(from rev 102104, mygui/trunk/PKGBUILD)
  mygui/repos/community-i686/mygui.install
(from rev 102104, mygui/trunk/mygui.install)
  mygui/repos/community-x86_64/PKGBUILD
(from rev 102104, mygui/trunk/PKGBUILD)
  mygui/repos/community-x86_64/mygui.install
(from rev 102104, mygui/trunk/mygui.install)
Deleted:
  mygui/repos/community-i686/PKGBUILD
  mygui/repos/community-i686/mygui.install
  mygui/repos/community-x86_64/PKGBUILD
  mygui/repos/community-x86_64/mygui.install

+
 /PKGBUILD  |  142 +++
 /mygui.install |6 +
 community-i686/PKGBUILD|   79 -
 community-i686/mygui.install   |3 
 community-x86_64/PKGBUILD  |   79 -
 community-x86_64/mygui.install |3 
 6 files changed, 148 insertions(+), 164 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-12-05 10:08:00 UTC (rev 102104)
+++ community-i686/PKGBUILD 2013-12-05 10:08:06 UTC (rev 102105)
@@ -1,79 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Andrew Belitsky 
-pkgbase=mygui
-pkgname=('mygui' 'mygui-docs')
-pkgver=3.2.0
-pkgrel=7
-pkgdesc="A multilayer and overlappable GUI System for OGRE"
-arch=('i686' 'x86_64')
-url="http://mygui.info/";
-license=('LGPL')
-depends=('boost-libs' 'ogre' 'ois')
-makedepends=('boost' 'cmake' 'doxygen' 'graphviz' 'ttf-dejavu')
-install=mygui.install
-source=("http://downloads.sourceforge.net/my-gui/MyGUI_$pkgver.zip";)
-md5sums=('7c20486a0db82f497d8b7c5300613b61')
-
-build() {
-  cd $srcdir/MyGUI_$pkgver
-
-  # change CMake config so demos install to /opt
-  sed -i 's:"bin:"../opt/MYGUI:' CMake/Utils/MyGUIConfigTargets.cmake
-  sed -i -e 's:../share:/usr/share:' \
- -e 's:"bin":"../opt/MYGUI":' \
- CMake/InstallResources.cmake
-  sed -i '71 i set(MYGUI_GCC_VISIBILITY_FLAGS "")' CMakeLists.txt
-  sed -i 's/\${OIS_LIBRARIES}/${OIS_LIBRARIES} boost_system/g' 
Common/CMakeLists.txt
-
-  # get a clean build dir
-  [[ -d build ]] && rm -rf build
-  mkdir build && cd build
-
-  # generate CMake Makefile
-  cmake .. \
--DCMAKE_INSTALL_PREFIX=/usr \
--DMYGUI_INSTALL_SAMPLES=TRUE \
--DMYGUI_INSTALL_TOOLS=TRUE \
--DMYGUI_INSTALL_DOCS=TRUE \
--DMYGUI_INSTALL_MEDIA=TRUE \
--DCMAKE_BUILD_TYPE=Release # set=Debug for debugging version
-
-  # compile
-  make
-
-  # generate docs
-  if [[ $(which dot) && $(which doxygen) ]]; then
-make api-docs 2>/dev/null
-  fi
-}
-
-package_mygui() {
-  optdepends=('mygui-docs: documentation')
-
-  cd $srcdir/MyGUI_$pkgver
-  
-  cd build
-
-  # install the whole bunch
-  make DESTDIR="$pkgdir" install
-
-  # make demos work
-  chown root:users $pkgdir/opt/MYGUI
-  chmod 775 $pkgdir/opt/MYGUI
-}
-
-package_mygui-docs() {
-  pkgdesc="Documentation for mygui"
-  depends=()
-
-  cd $srcdir/MyGUI_$pkgver
-  
-  cd build
-
-  # install docs
-  install -d $pkgdir/usr/share/doc/
-  cp -r Docs/html $pkgdir/usr/share/doc/MYGUI
-}
-
-# vim:set ts=2 sw=2 et:

Copied: mygui/repos/community-i686/PKGBUILD (from rev 102104, 
mygui/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-12-05 10:08:06 UTC (rev 102105)
@@ -0,0 +1,71 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Andrew Belitsky 
+pkgbase=mygui
+pkgname=('mygui' 'mygui-docs')
+pkgver=3.2.0
+pkgrel=8
+pkgdesc="A multilayer and overlappable GUI System for OGRE"
+arch=('i686' 'x86_64')
+url="http://mygui.info/";
+license=('LGPL')
+depends=('boost-libs' 'ogre' 'ois')
+makedepends=('boost' 'cmake' 'doxygen' 'graphviz' 'ttf-dejavu')
+install=mygui.install
+source=("http://downloads.sourceforge.net/my-gui/MyGUI_$pkgver.zip";)
+md5sums=('7c20486a0db82f497d8b7c5300613b61')
+
+build() {
+  cd $srcdir/MyGUI_$pkgver
+
+  # change CMake config so demos install to /opt
+  sed -i 's:"bin:"../opt/MYGUI:' CMake/Utils/MyGUIConfigTargets.cmake
+  sed -i -e 's:../share:/usr/share:' \
+ -e 's:"bin":"../opt/MYGUI":' \
+ CMake/InstallResources.cmake
+  sed -i '71 i set(MYGUI_GCC_VISIBILITY_FLAGS "")' CMakeLists.txt
+  sed -i 's/\${OIS_LIBRARIES}/${OIS_LIBRARIES} boost_system/g' 
Common/CMakeLists.txt
+
+  # get a clean build dir
+  [[ -d build ]] && rm -rf build
+  mkdir build && cd build
+
+  # generate CMake Makefile
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DMYGUI_INSTALL_SAMPLES=TRUE \
+-DMYGUI_INSTALL_TOOLS=TRUE \
+-DMYGUI_INSTALL_DOCS=TRUE \
+-DMYGUI_INSTALL_MEDIA=TRUE \
+-DFREETYPE_INCLUDE_DIR=/usr/include/freetype2/ \
+-DCMAKE_BUILD_TYPE=Release \
+

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

2013-12-05 Thread Sven-Hendrik Haase
Date: Thursday, December 5, 2013 @ 11:08:00
  Author: svenstaro
Revision: 102104

upgpkg: mygui 3.2.0-8

rebuild

Modified:
  mygui/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-05 09:39:24 UTC (rev 102103)
+++ PKGBUILD2013-12-05 10:08:00 UTC (rev 102104)
@@ -4,7 +4,7 @@
 pkgbase=mygui
 pkgname=('mygui' 'mygui-docs')
 pkgver=3.2.0
-pkgrel=9
+pkgrel=8
 pkgdesc="A multilayer and overlappable GUI System for OGRE"
 arch=('i686' 'x86_64')
 url="http://mygui.info/";



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

2013-12-05 Thread Sven-Hendrik Haase
Date: Thursday, December 5, 2013 @ 10:39:24
  Author: svenstaro
Revision: 102103

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

Added:
  ogre/repos/community-i686/PKGBUILD
(from rev 102102, ogre/trunk/PKGBUILD)
  ogre/repos/community-i686/ogre.install
(from rev 102102, ogre/trunk/ogre.install)
  ogre/repos/community-x86_64/PKGBUILD
(from rev 102102, ogre/trunk/PKGBUILD)
  ogre/repos/community-x86_64/ogre.install
(from rev 102102, ogre/trunk/ogre.install)
Deleted:
  ogre/repos/community-i686/PKGBUILD
  ogre/repos/community-i686/freetype.patch
  ogre/repos/community-i686/ogre.install
  ogre/repos/community-x86_64/PKGBUILD
  ogre/repos/community-x86_64/freetype.patch
  ogre/repos/community-x86_64/ogre.install

-+
 /PKGBUILD   |  158 ++
 /ogre.install   |8 +
 community-i686/PKGBUILD |   89 -
 community-i686/freetype.patch   |   21 -
 community-i686/ogre.install |4 
 community-x86_64/PKGBUILD   |   89 -
 community-x86_64/freetype.patch |   21 -
 community-x86_64/ogre.install   |4 
 8 files changed, 166 insertions(+), 228 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-12-05 09:38:53 UTC (rev 102102)
+++ community-i686/PKGBUILD 2013-12-05 09:39:24 UTC (rev 102103)
@@ -1,89 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase 
-pkgbase=ogre
-pkgname=('ogre' 'ogre-docs')
-pkgver=1.9.0
-pkgrel=1
-pkgdesc='Scene-oriented, flexible 3D engine written in C++'
-arch=('i686' 'x86_64')
-url='http://www.ogre3d.org'
-license=('custom:MIT')
-depends=('boost-libs' 'freeimage' 'freetype2' 'libxaw' 'libxrandr' 
- 'nvidia-cg-toolkit' 'zziplib' 'ois' 'glu' 'gcc-go' 'tinyxml')
-makedepends=('boost' 'cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 
'mercurial')
-install=ogre.install
-source=("hg+ssh://h...@bitbucket.org/sinbad/ogre#tag=v${pkgver//./-}"
-freetype.patch)
-md5sums=('SKIP'
- '73af39f59c302b76bee600fc5127af9a')
-
-build() {
-  cd ogre
-
-  patch -Np1 < $srcdir/freetype.patch
-
-  # get a clean build dir
-  [[ -d build ]] && rm -rf build
-  mkdir build && cd build
-
-  # generate CMake Makefile
-  cmake .. \
--DCMAKE_INSTALL_PREFIX=/usr \
--DOGRE_INSTALL_SAMPLES=TRUE \
--DOGRE_INSTALL_DOCS=TRUE \
--DOGRE_INSTALL_SAMPLES_SOURCE=TRUE \
--DCMAKE_BUILD_TYPE=Release # set =Debug for debugging version
-
-  # compile
-  make
-
-  # generate docs
-  make OgreDoc
-}
-
-package_ogre() {
-  optdepends=('cppunit: unit testing'
-  'intel-tbb: better threading support'
-  'poco: portability'
-  'boost: for developing using ogre'
-  'ogre-docs: documentation')
-
-  cd ogre/build
-
-  # install the bugger
-  make DESTDIR=${pkgdir} install
-
-  # fix up samples
-  install -dm775 -o root -g users ${pkgdir}/opt/OGRE/samples/
-  mv ${pkgdir}/usr/share/OGRE/*.cfg ${pkgdir}/opt/OGRE/samples/
-  mv ${pkgdir}/usr/bin/SampleBrowser ${pkgdir}/opt/OGRE/samples/
-
-  # make sample launcher
-  echo "#!/bin/bash" > ${pkgdir}/usr/bin/OgreSampleBrowser
-  echo "cd /opt/OGRE/samples && ./SampleBrowser" >> 
${pkgdir}/usr/bin/OgreSampleBrowser
-  chmod +x ${pkgdir}/usr/bin/OgreSampleBrowser
-  
-  # install license
-  install -Dm644 ../Docs/License.html 
${pkgdir}/usr/share/licenses/${pkgname}/license.html
-
-  # move docs out of this package
-  mv ${pkgdir}/usr/share/OGRE/docs ${srcdir}/docs
-}
-
-package_ogre-docs() {
-  pkgdesc="Documentation for ogre"
-  depends=()
-
-  cd ogre/build
-
-  # move docs into this package
-  install -dm755 ${pkgdir}/usr/share/doc
-  mv ${srcdir}/docs ${pkgdir}/usr/share/doc/OGRE/
-
-  # symlink for docs
-  install -dm755 ${pkgdir}/usr/share/OGRE/
-  cd ${pkgdir}/usr/share
-  ln -s doc/OGRE/ OGRE/docs
-}
-
-# vim:set ts=2 sw=2 et:

Copied: ogre/repos/community-i686/PKGBUILD (from rev 102102, 
ogre/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-12-05 09:39:24 UTC (rev 102103)
@@ -0,0 +1,79 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+pkgbase=ogre
+pkgname=('ogre' 'ogre-docs')
+pkgver=1.9.0
+pkgrel=2
+pkgdesc='Scene-oriented, flexible 3D engine written in C++'
+arch=('i686' 'x86_64')
+url='http://www.ogre3d.org'
+license=('custom:MIT')
+depends=('boost-libs' 'freeimage' 'freetype2' 'libxaw' 'libxrandr' 
+ 'nvidia-cg-toolkit' 'zziplib' 'ois' 'glu' 'tinyxml')
+makedepends=('boost' 'cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 
'mercurial')
+install=ogre.install
+source=("hg+ssh://h...@bitbucket.org/sinbad/ogre#tag=v${pkgver//./-}")
+md5sums=('SKIP')
+
+build() {
+  cd ogre
+
+  [[ -d build ]] && rm -rf build
+  mkdir build && cd build
+
+  cmake .. \
+-DCMAKE_INSTALL_PRE

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

2013-12-05 Thread Sven-Hendrik Haase
Date: Thursday, December 5, 2013 @ 10:38:53
  Author: svenstaro
Revision: 102102

upgpkg: ogre 1.9.0-2

rebuild

Modified:
  ogre/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-05 09:14:28 UTC (rev 102101)
+++ PKGBUILD2013-12-05 09:38:53 UTC (rev 102102)
@@ -3,7 +3,7 @@
 pkgbase=ogre
 pkgname=('ogre' 'ogre-docs')
 pkgver=1.9.0
-pkgrel=4
+pkgrel=2
 pkgdesc='Scene-oriented, flexible 3D engine written in C++'
 arch=('i686' 'x86_64')
 url='http://www.ogre3d.org'



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

2013-12-05 Thread Sven-Hendrik Haase
Date: Thursday, December 5, 2013 @ 10:14:15
  Author: svenstaro
Revision: 102100

upgpkg: pypy 2.2.1-1

upstream release 2.2.1

Modified:
  pypy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-05 09:01:04 UTC (rev 102099)
+++ PKGBUILD2013-12-05 09:14:15 UTC (rev 102100)
@@ -5,7 +5,7 @@
 #_hgrev=63547
 
 pkgname=pypy
-pkgver=2.2
+pkgver=2.2.1
 #[[ -n $_hgrev ]] && pkgver=2.0beta2.$_hgrev
 pkgrel=1
 pkgdesc="A Python implementation written in Python, JIT enabled"
@@ -24,7 +24,7 @@
 license=('custom:MIT')
 #source=("hg+https://bitbucket.org/pypy/pypy#revision=$_hgrev";)
 
source=("https://bitbucket.org/pypy/pypy/downloads/$pkgname-$pkgver-src.tar.bz2";)
-md5sums=('5a5a3822605d7d811066b1b279da3c6e')
+md5sums=('7ec9f48702323f9e93654ba73dd46720')
 
 build() {
   cd "${srcdir}"/${pkgname}-${pkgver}-src/pypy/goal



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

2013-12-05 Thread Sven-Hendrik Haase
Date: Thursday, December 5, 2013 @ 10:14:28
  Author: svenstaro
Revision: 102101

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

Added:
  pypy/repos/community-i686/LICENSE
(from rev 102100, pypy/trunk/LICENSE)
  pypy/repos/community-i686/PKGBUILD
(from rev 102100, pypy/trunk/PKGBUILD)
  pypy/repos/community-x86_64/LICENSE
(from rev 102100, pypy/trunk/LICENSE)
  pypy/repos/community-x86_64/PKGBUILD
(from rev 102100, pypy/trunk/PKGBUILD)
Deleted:
  pypy/repos/community-i686/LICENSE
  pypy/repos/community-i686/PKGBUILD
  pypy/repos/community-x86_64/LICENSE
  pypy/repos/community-x86_64/PKGBUILD

---+
 /LICENSE  |  308 
 /PKGBUILD |   96 +
 community-i686/LICENSE|  154 --
 community-i686/PKGBUILD   |   48 --
 community-x86_64/LICENSE  |  154 --
 community-x86_64/PKGBUILD |   48 --
 6 files changed, 404 insertions(+), 404 deletions(-)

Deleted: community-i686/LICENSE
===
--- community-i686/LICENSE  2013-12-05 09:14:15 UTC (rev 102100)
+++ community-i686/LICENSE  2013-12-05 09:14:28 UTC (rev 102101)
@@ -1,154 +0,0 @@
-License for files in the pypy/ directory 
-==
-
-Except when otherwise stated (look for LICENSE files in directories or
-information at the beginning of each file) all software and
-documentation in the 'pypy' directories is licensed as follows: 
-
-The MIT License
-
-Permission is hereby granted, free of charge, to any person 
-obtaining a copy of this software and associated documentation 
-files (the "Software"), to deal in the Software without 
-restriction, including without limitation the rights to use, 
-copy, modify, merge, publish, distribute, sublicense, and/or 
-sell copies of the Software, and to permit persons to whom the 
-Software is furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included 
-in all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS 
-OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 
MERCHANTABILITY, 
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 
-THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 
-FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 
-DEALINGS IN THE SOFTWARE.
-
-
-PyPy Copyright holders 2003-2010
 
-
-Except when otherwise stated (look for LICENSE files or information at
-the beginning of each file) the files in the 'pypy' directory are each
-copyrighted by one or more of the following people and organizations:
-
-Armin Rigo
-Maciej Fijalkowski
-Carl Friedrich Bolz
-Samuele Pedroni
-Antonio Cuni
-Michael Hudson
-Christian Tismer
-Holger Krekel
-Eric van Riet Paap
-Richard Emslie
-Anders Chrigstrom
-Amaury Forgeot d Arc
-Aurelien Campeas
-Anders Lehmann
-Niklaus Haldimann
-Seo Sanghyeon
-Leonardo Santagada
-Lawrence Oluyede
-Jakub Gustak
-Guido Wesdorp
-Benjamin Peterson
-Alexander Schremmer
-Niko Matsakis
-Ludovic Aubry
-Alex Martelli
-Toon Verwaest
-Stephan Diehl
-Adrien Di Mascio
-Stefan Schwarzer
-Tomek Meka
-Patrick Maupin
-Jacob Hallen
-Laura Creighton
-Bob Ippolito
-Camillo Bruni
-Simon Burton
-Bruno Gola
-Alexandre Fayolle
-Marius Gedminas
-Guido van Rossum
-Valentino Volonghi
-Adrian Kuhn
-Paul deGrandis
-Gerald Klix
-Wanja Saatkamp
-Anders Hammarquist
-Oscar Nierstrasz
-Eugene Oden
-Lukas Renggli
-Guenter Jantzen
-Dinu Gherman
-Bartosz Skowron
-Georg Brandl
-Ben Young
-Jean-Paul Calderone
-Nicolas Chauvat
-Rocco Moretti
-Michael Twomey
-boria
-Jared Grubb
-Olivier Dormond
-Stuart Williams
-Jens-Uwe Mager
-Justas Sadzevicius
-Mikael Schönenberg
-Brian Dorsey
-Jonathan David Riehl
-Beatrice During
-Elmo Mäntynen
-Andreas Friedge
-Alex Gaynor
-Anders Qvist
-Alan McIntyre
-Bert Freudenberg
-
-Heinrich-Heine University, Germany 
-Open End AB (formerly AB Strakt), Sweden
-merlinux GmbH, Germany 
-tismerysoft GmbH, Germany 
-Logilab Paris, France 
-DFKI GmbH, Germany 
-Impara, Germany
-Change Maker, Sweden 
-
- 
-License for 'lib-python/2.5.2' and 'lib-python/2.5.2-modified'
-== 
-
-Except when otherwise stated (look for LICENSE files or
-copyright/license

[arch-commits] Commit in (dvgrab)

2013-12-05 Thread Giovanni Scafora
Date: Thursday, December 5, 2013 @ 10:01:27
  Author: giovanni
Revision: 200793

extra2community: Moving dvgrab from extra to community

Deleted:
  dvgrab/



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

2013-12-05 Thread Giovanni Scafora
Date: Thursday, December 5, 2013 @ 10:00:47
  Author: giovanni
Revision: 102098

extra2community: Moving dvgrab from extra to community

Added:
  dvgrab/
  dvgrab/repos/
  dvgrab/trunk/
  dvgrab/trunk/PKGBUILD

--+
 PKGBUILD |   28 
 1 file changed, 28 insertions(+)

Added: dvgrab/trunk/PKGBUILD
===
--- dvgrab/trunk/PKGBUILD   (rev 0)
+++ dvgrab/trunk/PKGBUILD   2013-12-05 09:00:47 UTC (rev 102098)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Giovanni Scafora 
+# Contributor: Jason Chu 
+
+pkgname=dvgrab
+pkgver=3.5
+pkgrel=4
+pkgdesc="Saves audio and video data from an IEEE (FireWire) digital source"
+arch=('i686' 'x86_64')
+url="http://www.kinodv.org/";
+license=('GPL')
+depends=('libdv' 'libavc1394' 'libjpeg-turbo' 'libiec61883' 'gcc-libs')
+makedepends=('pkgconfig')
+source=("http://downloads.sourceforge.net/kino/${pkgname}-${pkgver}.tar.gz";)
+md5sums=('b39a242ce63e80fc347ab59931f75649')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  make DESTDIR="${pkgdir}" install
+}


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


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

2013-12-05 Thread Giovanni Scafora
Date: Thursday, December 5, 2013 @ 10:01:04
  Author: giovanni
Revision: 102099

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

Added:
  dvgrab/repos/community-i686/
  dvgrab/repos/community-i686/PKGBUILD
(from rev 102098, dvgrab/trunk/PKGBUILD)
  dvgrab/repos/community-x86_64/
  dvgrab/repos/community-x86_64/PKGBUILD
(from rev 102098, dvgrab/trunk/PKGBUILD)

---+
 community-i686/PKGBUILD   |   28 
 community-x86_64/PKGBUILD |   28 
 2 files changed, 56 insertions(+)

Copied: dvgrab/repos/community-i686/PKGBUILD (from rev 102098, 
dvgrab/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-12-05 09:01:04 UTC (rev 102099)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Giovanni Scafora 
+# Contributor: Jason Chu 
+
+pkgname=dvgrab
+pkgver=3.5
+pkgrel=4
+pkgdesc="Saves audio and video data from an IEEE (FireWire) digital source"
+arch=('i686' 'x86_64')
+url="http://www.kinodv.org/";
+license=('GPL')
+depends=('libdv' 'libavc1394' 'libjpeg-turbo' 'libiec61883' 'gcc-libs')
+makedepends=('pkgconfig')
+source=("http://downloads.sourceforge.net/kino/${pkgname}-${pkgver}.tar.gz";)
+md5sums=('b39a242ce63e80fc347ab59931f75649')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  make DESTDIR="${pkgdir}" install
+}

Copied: dvgrab/repos/community-x86_64/PKGBUILD (from rev 102098, 
dvgrab/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2013-12-05 09:01:04 UTC (rev 102099)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Giovanni Scafora 
+# Contributor: Jason Chu 
+
+pkgname=dvgrab
+pkgver=3.5
+pkgrel=4
+pkgdesc="Saves audio and video data from an IEEE (FireWire) digital source"
+arch=('i686' 'x86_64')
+url="http://www.kinodv.org/";
+license=('GPL')
+depends=('libdv' 'libavc1394' 'libjpeg-turbo' 'libiec61883' 'gcc-libs')
+makedepends=('pkgconfig')
+source=("http://downloads.sourceforge.net/kino/${pkgname}-${pkgver}.tar.gz";)
+md5sums=('b39a242ce63e80fc347ab59931f75649')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  make DESTDIR="${pkgdir}" install
+}



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

2013-12-05 Thread Giovanni Scafora
Date: Thursday, December 5, 2013 @ 09:54:32
  Author: giovanni
Revision: 200790

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

Added:
  live-media/repos/extra-i686/PKGBUILD
(from rev 200789, live-media/trunk/PKGBUILD)
  live-media/repos/extra-x86_64/PKGBUILD
(from rev 200789, live-media/trunk/PKGBUILD)
Deleted:
  live-media/repos/extra-i686/PKGBUILD
  live-media/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-12-05 08:54:25 UTC (rev 200789)
+++ extra-i686/PKGBUILD 2013-12-05 08:54:32 UTC (rev 200790)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora 
-# Contributor: Gilles CHAUVIN 
-
-pkgname=live-media
-pkgver=2013.11.15
-pkgrel=1
-pkgdesc="A set of C++ libraries for multimedia streaming"
-arch=('i686' 'x86_64')
-license=('LGPL')
-url="http://live555.com/liveMedia";
-depends=('gcc-libs')
-options=('staticlibs')
-source=("http://live555.com/liveMedia/public/live.${pkgver}.tar.gz";)
-md5sums=('ed15c529ed2b8c29aa4f202064e36785')
-
-build() {
-  cd ${srcdir}/live
-
-  sed \
-  -e 's/$(INCLUDES) -I. -O2 -DSOCKLEN_T/$(INCLUDES) -I. -O2 -I. -fPIC 
-DRTSPCLIENT_SYNCHRONOUS_INTERFACE=1 -DSOCKLEN_T/g' \
-  -i config.linux
-  ./genMakefiles linux
-  make
-}
-
-package() {
-  cd ${srcdir}/live
-
-  for dir in BasicUsageEnvironment groupsock liveMedia UsageEnvironment; do
-install -dm755 ${pkgdir}/usr/{bin,lib,include/${dir}}
-install -m644 ${dir}/*.a "${pkgdir}/usr/lib"
-install -m644 ${dir}/include/*.h* "${pkgdir}/usr/include/${dir}"
-  done
-
-  for testprog in `find testProgs -type f -perm 755`; do
-install ${testprog} "${pkgdir}/usr/bin"
-  done
-}

Copied: live-media/repos/extra-i686/PKGBUILD (from rev 200789, 
live-media/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-12-05 08:54:32 UTC (rev 200790)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Giovanni Scafora 
+# Contributor: Gilles CHAUVIN 
+
+pkgname=live-media
+pkgver=2013.12.04
+pkgrel=1
+pkgdesc="A set of C++ libraries for multimedia streaming"
+arch=('i686' 'x86_64')
+license=('LGPL')
+url="http://live555.com/liveMedia";
+depends=('gcc-libs')
+options=('staticlibs')
+source=("http://live555.com/liveMedia/public/live.${pkgver}.tar.gz";)
+md5sums=('9de0a4757ec6a2a42fae3a69f47b4436')
+
+build() {
+  cd ${srcdir}/live
+
+  sed \
+  -e 's/$(INCLUDES) -I. -O2 -DSOCKLEN_T/$(INCLUDES) -I. -O2 -I. -fPIC 
-DRTSPCLIENT_SYNCHRONOUS_INTERFACE=1 -DSOCKLEN_T/g' \
+  -i config.linux
+  ./genMakefiles linux
+  make
+}
+
+package() {
+  cd ${srcdir}/live
+
+  for dir in BasicUsageEnvironment groupsock liveMedia UsageEnvironment; do
+install -dm755 ${pkgdir}/usr/{bin,lib,include/${dir}}
+install -m644 ${dir}/*.a "${pkgdir}/usr/lib"
+install -m644 ${dir}/include/*.h* "${pkgdir}/usr/include/${dir}"
+  done
+
+  for testprog in `find testProgs -type f -perm 755`; do
+install ${testprog} "${pkgdir}/usr/bin"
+  done
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-12-05 08:54:25 UTC (rev 200789)
+++ extra-x86_64/PKGBUILD   2013-12-05 08:54:32 UTC (rev 200790)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora 
-# Contributor: Gilles CHAUVIN 
-
-pkgname=live-media
-pkgver=2013.11.15
-pkgrel=1
-pkgdesc="A set of C++ libraries for multimedia streaming"
-arch=('i686' 'x86_64')
-license=('LGPL')
-url="http://live555.com/liveMedia";
-depends=('gcc-libs')
-options=('staticlibs')
-source=("http://live555.com/liveMedia/public/live.${pkgver}.tar.gz";)
-md5sums=('ed15c529ed2b8c29aa4f202064e36785')
-
-build() {
-  cd ${srcdir}/live
-
-  sed \
-  -e 's/$(INCLUDES) -I. -O2 -DSOCKLEN_T/$(INCLUDES) -I. -O2 -I. -fPIC 
-DRTSPCLIENT_SYNCHRONOUS_INTERFACE=1 -DSOCKLEN_T/g' \
-  -i config.linux
-  ./genMakefiles linux
-  make
-}
-
-package() {
-  cd ${srcdir}/live
-
-  for dir in BasicUsageEnvironment groupsock liveMedia UsageEnvironment; do
-install -dm755 ${pkgdir}/usr/{bin,lib,include/${dir}}
-install -m644 ${dir}/*.a "${pkgdir}/usr/lib"
-install -m644 ${dir}/include/*.h* "${pkgdir}/usr/include/${dir}"
-  done
-
-  for testprog in `find testProgs -type f -perm 755`; do
-install ${testprog} "${pkgdir}/usr/bin"
-  done
-}

Copied: live-media/repos/extra-x86_64/PKGBUILD (from rev 200789, 
live-media/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2013-12-05 08:54:32 UTC (rev 200790)
@@ -0,0 +1,

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

2013-12-05 Thread Giovanni Scafora
Date: Thursday, December 5, 2013 @ 09:54:25
  Author: giovanni
Revision: 200789

upgpkg: live-media 2013.12.04-1

upstream release

Modified:
  live-media/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-05 08:49:59 UTC (rev 200788)
+++ PKGBUILD2013-12-05 08:54:25 UTC (rev 200789)
@@ -3,7 +3,7 @@
 # Contributor: Gilles CHAUVIN 
 
 pkgname=live-media
-pkgver=2013.11.15
+pkgver=2013.12.04
 pkgrel=1
 pkgdesc="A set of C++ libraries for multimedia streaming"
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 depends=('gcc-libs')
 options=('staticlibs')
 source=("http://live555.com/liveMedia/public/live.${pkgver}.tar.gz";)
-md5sums=('ed15c529ed2b8c29aa4f202064e36785')
+md5sums=('9de0a4757ec6a2a42fae3a69f47b4436')
 
 build() {
   cd ${srcdir}/live



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

2013-12-05 Thread Giovanni Scafora
Date: Thursday, December 5, 2013 @ 09:49:59
  Author: giovanni
Revision: 200788

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

Added:
  link-grammar/repos/extra-i686/PKGBUILD
(from rev 200787, link-grammar/trunk/PKGBUILD)
  link-grammar/repos/extra-x86_64/PKGBUILD
(from rev 200787, link-grammar/trunk/PKGBUILD)
Deleted:
  link-grammar/repos/extra-i686/PKGBUILD
  link-grammar/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-12-05 08:49:52 UTC (rev 200787)
+++ extra-i686/PKGBUILD 2013-12-05 08:49:59 UTC (rev 200788)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora 
-# Contributor: Jan de Groot 
-
-pkgname=link-grammar
-pkgver=4.8.0
-pkgrel=1
-pkgdesc="A Grammar Checking library"
-arch=('i686' 'x86_64')
-url="http://www.abisource.com/downloads/link-grammar/";
-license=('BSD')
-depends=('aspell')
-options=('!makeflags')
-source=("http://www.abisource.com/downloads/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz";)
-md5sums=('218a2ee5ffed258bc52a0718811ca66e')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  make DESTDIR="${pkgdir}" install
-
-  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/link-grammar/LICENSE"
-}

Copied: link-grammar/repos/extra-i686/PKGBUILD (from rev 200787, 
link-grammar/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-12-05 08:49:59 UTC (rev 200788)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Giovanni Scafora 
+# Contributor: Jan de Groot 
+
+pkgname=link-grammar
+pkgver=4.8.2
+pkgrel=1
+pkgdesc="A Grammar Checking library"
+arch=('i686' 'x86_64')
+url="http://www.abisource.com/downloads/link-grammar/";
+license=('BSD')
+depends=('aspell')
+options=('!makeflags')
+source=("http://www.abisource.com/downloads/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz";)
+md5sums=('57eb0738c57a177e2e76f0b398af811d')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  make DESTDIR="${pkgdir}" install
+
+  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/link-grammar/LICENSE"
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-12-05 08:49:52 UTC (rev 200787)
+++ extra-x86_64/PKGBUILD   2013-12-05 08:49:59 UTC (rev 200788)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora 
-# Contributor: Jan de Groot 
-
-pkgname=link-grammar
-pkgver=4.8.0
-pkgrel=1
-pkgdesc="A Grammar Checking library"
-arch=('i686' 'x86_64')
-url="http://www.abisource.com/downloads/link-grammar/";
-license=('BSD')
-depends=('aspell')
-options=('!makeflags')
-source=("http://www.abisource.com/downloads/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz";)
-md5sums=('218a2ee5ffed258bc52a0718811ca66e')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  make DESTDIR="${pkgdir}" install
-
-  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/link-grammar/LICENSE"
-}

Copied: link-grammar/repos/extra-x86_64/PKGBUILD (from rev 200787, 
link-grammar/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2013-12-05 08:49:59 UTC (rev 200788)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Giovanni Scafora 
+# Contributor: Jan de Groot 
+
+pkgname=link-grammar
+pkgver=4.8.2
+pkgrel=1
+pkgdesc="A Grammar Checking library"
+arch=('i686' 'x86_64')
+url="http://www.abisource.com/downloads/link-grammar/";
+license=('BSD')
+depends=('aspell')
+options=('!makeflags')
+source=("http://www.abisource.com/downloads/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz";)
+md5sums=('57eb0738c57a177e2e76f0b398af811d')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  make DESTDIR="${pkgdir}" install
+
+  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/link-grammar/LICENSE"
+}



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

2013-12-05 Thread Giovanni Scafora
Date: Thursday, December 5, 2013 @ 09:49:52
  Author: giovanni
Revision: 200787

upgpkg: link-grammar 4.8.2-1

upstream release

Modified:
  link-grammar/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-05 08:22:28 UTC (rev 200786)
+++ PKGBUILD2013-12-05 08:49:52 UTC (rev 200787)
@@ -3,7 +3,7 @@
 # Contributor: Jan de Groot 
 
 pkgname=link-grammar
-pkgver=4.8.0
+pkgver=4.8.2
 pkgrel=1
 pkgdesc="A Grammar Checking library"
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 depends=('aspell')
 options=('!makeflags')
 
source=("http://www.abisource.com/downloads/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz";)
-md5sums=('218a2ee5ffed258bc52a0718811ca66e')
+md5sums=('57eb0738c57a177e2e76f0b398af811d')
 
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"



[arch-commits] Commit in (kino)

2013-12-05 Thread Giovanni Scafora
Date: Thursday, December 5, 2013 @ 09:22:28
  Author: giovanni
Revision: 200786

Kino is a dead project

Deleted:
  kino/



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

2013-12-05 Thread Giovanni Scafora
Date: Thursday, December 5, 2013 @ 09:05:48
  Author: giovanni
Revision: 102097

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

Added:
  converseen/repos/community-i686/PKGBUILD
(from rev 102096, converseen/trunk/PKGBUILD)
  converseen/repos/community-i686/converseen.install
(from rev 102096, converseen/trunk/converseen.install)
  converseen/repos/community-x86_64/PKGBUILD
(from rev 102096, converseen/trunk/PKGBUILD)
  converseen/repos/community-x86_64/converseen.install
(from rev 102096, converseen/trunk/converseen.install)
Deleted:
  converseen/repos/community-i686/PKGBUILD
  converseen/repos/community-i686/converseen.install
  converseen/repos/community-x86_64/PKGBUILD
  converseen/repos/community-x86_64/converseen.install

-+
 /PKGBUILD   |   64 ++
 /converseen.install |   22 +++
 community-i686/PKGBUILD |   32 -
 community-i686/converseen.install   |   11 -
 community-x86_64/PKGBUILD   |   32 -
 community-x86_64/converseen.install |   11 -
 6 files changed, 86 insertions(+), 86 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-12-05 08:05:41 UTC (rev 102096)
+++ community-i686/PKGBUILD 2013-12-05 08:05:48 UTC (rev 102097)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora 
-# Contributor: archtux 
-
-pkgname=converseen
-pkgver=0.6.5
-pkgrel=1
-pkgdesc="The batch image converter and resizer"
-arch=('i686' 'x86_64')
-url="http://converseen.sourceforge.net/";
-license=('GPL3')
-depends=('imagemagick' 'qt4' 'libwmf' 'openexr' 'libwebp')
-makedepends=('cmake')
-install=converseen.install
-source=("http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.bz2";)
-md5sums=('7db27020d6071f73eea23655d5272055')
-
-build() {
-  cd "${srcdir}"
-  mkdir build
-  cd build
-  cmake ../${pkgname}-${pkgver} \
-  -DCMAKE_BUILD_TYPE=Release \
-  -DCMAKE_INSTALL_PREFIX=/usr 
-  make
-}
-
-package() {
-  cd "${srcdir}/build"
-
-  make DESTDIR="${pkgdir}" install
-}

Copied: converseen/repos/community-i686/PKGBUILD (from rev 102096, 
converseen/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-12-05 08:05:48 UTC (rev 102097)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Giovanni Scafora 
+# Contributor: archtux 
+
+pkgname=converseen
+pkgver=0.6.6
+pkgrel=1
+pkgdesc="The batch image converter and resizer"
+arch=('i686' 'x86_64')
+url="http://converseen.sourceforge.net/";
+license=('GPL3')
+depends=('imagemagick' 'qt4' 'libwmf' 'openexr' 'libwebp')
+makedepends=('cmake')
+install=converseen.install
+source=("http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.bz2";)
+md5sums=('500c5aedec23a13e119ad0ece1ebca1d')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+  -DCMAKE_BUILD_TYPE=Release \
+  -DCMAKE_INSTALL_PREFIX=/usr 
+  make
+}
+
+package() {
+  cd "${srcdir}/build"
+
+  make DESTDIR="${pkgdir}" install
+}

Deleted: community-i686/converseen.install
===
--- community-i686/converseen.install   2013-12-05 08:05:41 UTC (rev 102096)
+++ community-i686/converseen.install   2013-12-05 08:05:48 UTC (rev 102097)
@@ -1,11 +0,0 @@
-post_install() {
- xdg-icon-resource forceupdate --theme hicolor &> /dev/null
-}
-
-post_upgrade() {
- post_install
-}
-
-post_remove() {
- post_install
-}

Copied: converseen/repos/community-i686/converseen.install (from rev 102096, 
converseen/trunk/converseen.install)
===
--- community-i686/converseen.install   (rev 0)
+++ community-i686/converseen.install   2013-12-05 08:05:48 UTC (rev 102097)
@@ -0,0 +1,11 @@
+post_install() {
+ xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+ post_install
+}
+
+post_remove() {
+ post_install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2013-12-05 08:05:41 UTC (rev 102096)
+++ community-x86_64/PKGBUILD   2013-12-05 08:05:48 UTC (rev 102097)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora 
-# Contributor: archtux 
-
-pkgname=converseen
-pkgver=0.6.5
-pkgrel=1
-pkgdesc="The batch image converter and resizer"
-arch=('i686' 'x86_64')
-url="http://converseen.sourceforge.net/";
-license=('GPL3')
-depends=('imagemagick' 'qt4' 'libwmf' 'openexr' 'libwebp')
-makedepends=('cmake')
-install=converseen.install
-source=("http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.bz2";)
-md5sums=('7db27

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

2013-12-05 Thread Giovanni Scafora
Date: Thursday, December 5, 2013 @ 09:05:41
  Author: giovanni
Revision: 102096

upgpkg: converseen 0.6.6-1

upstream release

Modified:
  converseen/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-05 08:00:44 UTC (rev 102095)
+++ PKGBUILD2013-12-05 08:05:41 UTC (rev 102096)
@@ -3,7 +3,7 @@
 # Contributor: archtux 
 
 pkgname=converseen
-pkgver=0.6.5
+pkgver=0.6.6
 pkgrel=1
 pkgdesc="The batch image converter and resizer"
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 makedepends=('cmake')
 install=converseen.install
 
source=("http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.bz2";)
-md5sums=('7db27020d6071f73eea23655d5272055')
+md5sums=('500c5aedec23a13e119ad0ece1ebca1d')
 
 build() {
   cd "${srcdir}"



[arch-commits] Commit in c++-gtk-utils/repos (4 files)

2013-12-05 Thread Giovanni Scafora
Date: Thursday, December 5, 2013 @ 09:00:44
  Author: giovanni
Revision: 102095

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

Added:
  c++-gtk-utils/repos/community-i686/PKGBUILD
(from rev 102094, c++-gtk-utils/trunk/PKGBUILD)
  c++-gtk-utils/repos/community-x86_64/PKGBUILD
(from rev 102094, c++-gtk-utils/trunk/PKGBUILD)
Deleted:
  c++-gtk-utils/repos/community-i686/PKGBUILD
  c++-gtk-utils/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-12-05 08:00:37 UTC (rev 102094)
+++ community-i686/PKGBUILD 2013-12-05 08:00:44 UTC (rev 102095)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora 
-
-pkgname=c++-gtk-utils
-pkgver=2.0.20
-pkgrel=1
-pkgdesc="Classes and functions for programming in GTK+"
-arch=('i686' 'x86_64')
-url="http://cxx-gtk-utils.sourceforge.net/";
-license=('LGPL2.1')
-depends=('gtk3')
-options=('!docs' '!emptydirs')
-source=("http://downloads.sourceforge.net/project/cxx-gtk-utils/cxx-gtk-utils/${pkgver}/${pkgname}-${pkgver}.tar.gz";)
-md5sums=('8af461ec1f2696e92a1fe1c62a08730b')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  ./configure --prefix=/usr \
-  --disable-rpath \
-  --disable-static
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  make DESTDIR="${pkgdir}" install
-}

Copied: c++-gtk-utils/repos/community-i686/PKGBUILD (from rev 102094, 
c++-gtk-utils/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-12-05 08:00:44 UTC (rev 102095)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Giovanni Scafora 
+
+pkgname=c++-gtk-utils
+pkgver=2.0.21
+pkgrel=1
+pkgdesc="Classes and functions for programming in GTK+"
+arch=('i686' 'x86_64')
+url="http://cxx-gtk-utils.sourceforge.net/";
+license=('LGPL2.1')
+depends=('gtk3')
+options=('!docs' '!emptydirs')
+source=("http://downloads.sourceforge.net/project/cxx-gtk-utils/cxx-gtk-utils/${pkgver}/${pkgname}-${pkgver}.tar.gz";)
+md5sums=('98f5f211907c89dd978255e48d31a9ca')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  ./configure --prefix=/usr \
+  --disable-rpath \
+  --disable-static
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  make DESTDIR="${pkgdir}" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2013-12-05 08:00:37 UTC (rev 102094)
+++ community-x86_64/PKGBUILD   2013-12-05 08:00:44 UTC (rev 102095)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora 
-
-pkgname=c++-gtk-utils
-pkgver=2.0.20
-pkgrel=1
-pkgdesc="Classes and functions for programming in GTK+"
-arch=('i686' 'x86_64')
-url="http://cxx-gtk-utils.sourceforge.net/";
-license=('LGPL2.1')
-depends=('gtk3')
-options=('!docs' '!emptydirs')
-source=("http://downloads.sourceforge.net/project/cxx-gtk-utils/cxx-gtk-utils/${pkgver}/${pkgname}-${pkgver}.tar.gz";)
-md5sums=('8af461ec1f2696e92a1fe1c62a08730b')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  ./configure --prefix=/usr \
-  --disable-rpath \
-  --disable-static
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  make DESTDIR="${pkgdir}" install
-}

Copied: c++-gtk-utils/repos/community-x86_64/PKGBUILD (from rev 102094, 
c++-gtk-utils/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2013-12-05 08:00:44 UTC (rev 102095)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Giovanni Scafora 
+
+pkgname=c++-gtk-utils
+pkgver=2.0.21
+pkgrel=1
+pkgdesc="Classes and functions for programming in GTK+"
+arch=('i686' 'x86_64')
+url="http://cxx-gtk-utils.sourceforge.net/";
+license=('LGPL2.1')
+depends=('gtk3')
+options=('!docs' '!emptydirs')
+source=("http://downloads.sourceforge.net/project/cxx-gtk-utils/cxx-gtk-utils/${pkgver}/${pkgname}-${pkgver}.tar.gz";)
+md5sums=('98f5f211907c89dd978255e48d31a9ca')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  ./configure --prefix=/usr \
+  --disable-rpath \
+  --disable-static
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  make DESTDIR="${pkgdir}" install
+}



[arch-commits] Commit in c++-gtk-utils/trunk (PKGBUILD)

2013-12-05 Thread Giovanni Scafora
Date: Thursday, December 5, 2013 @ 09:00:37
  Author: giovanni
Revision: 102094

upgpkg: c++-gtk-utils 2.0.21-1

upstream release

Modified:
  c++-gtk-utils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-12-05 07:50:08 UTC (rev 102093)
+++ PKGBUILD2013-12-05 08:00:37 UTC (rev 102094)
@@ -2,7 +2,7 @@
 # Maintainer: Giovanni Scafora 
 
 pkgname=c++-gtk-utils
-pkgver=2.0.20
+pkgver=2.0.21
 pkgrel=1
 pkgdesc="Classes and functions for programming in GTK+"
 arch=('i686' 'x86_64')
@@ -11,7 +11,7 @@
 depends=('gtk3')
 options=('!docs' '!emptydirs')
 
source=("http://downloads.sourceforge.net/project/cxx-gtk-utils/cxx-gtk-utils/${pkgver}/${pkgname}-${pkgver}.tar.gz";)
-md5sums=('8af461ec1f2696e92a1fe1c62a08730b')
+md5sums=('98f5f211907c89dd978255e48d31a9ca')
 
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"