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

2013-04-08 Thread Evangelos Foutras
Date: Monday, April 8, 2013 @ 10:42:40
  Author: foutrelis
Revision: 87835

upgpkg: php-memcache 3.0.8-1

New upstream release.

Modified:
  php-memcache/trunk/PKGBUILD
Deleted:
  
php-memcache/trunk/php-memcache-3.0.7-fix-segfault-with-object-serialization.patch

-+
 PKGBUILD|   13 
 php-memcache-3.0.7-fix-segfault-with-object-serialization.patch |  162 
--
 2 files changed, 4 insertions(+), 171 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-04-07 21:41:26 UTC (rev 87834)
+++ PKGBUILD2013-04-08 08:42:40 UTC (rev 87835)
@@ -2,8 +2,8 @@
 # Maintainer: Evangelos Foutras 
 
 pkgname=php-memcache
-pkgver=3.0.7
-pkgrel=2
+pkgver=3.0.8
+pkgrel=1
 pkgdesc="Memcache module for PHP"
 arch=('i686' 'x86_64')
 url="http://pecl.php.net/package/memcache";
@@ -11,17 +11,12 @@
 depends=('php')
 backup=('etc/php/conf.d/memcache.ini')
 install=php-memcache.install
-source=(http://pecl.php.net/get/memcache-$pkgver.tgz
-php-memcache-3.0.7-fix-segfault-with-object-serialization.patch)
-sha256sums=('f34e2ef42dd8f1f7e6a2cfbb9417a9e58e3bfd7f5db7227ca5afab686cefdd1f'
-'100bffed22ad537de1cb03653e2dbb6768617ba3b8b49b1cf05c59554270c25b')
+source=(http://pecl.php.net/get/memcache-$pkgver.tgz)
+sha256sums=('2cae5b423ffbfd33a259829849f6000d4db018debe3e29ecf3056f06642e8311')
 
 build() {
   cd "$srcdir/memcache-$pkgver"
 
-  # https://bugs.php.net/bug.php?id=63142
-  patch -Np0 -i 
"$srcdir/php-memcache-3.0.7-fix-segfault-with-object-serialization.patch"
-
   phpize
   ./configure --prefix=/usr
   make

Deleted: php-memcache-3.0.7-fix-segfault-with-object-serialization.patch
===
--- php-memcache-3.0.7-fix-segfault-with-object-serialization.patch 
2013-04-07 21:41:26 UTC (rev 87834)
+++ php-memcache-3.0.7-fix-segfault-with-object-serialization.patch 
2013-04-08 08:42:40 UTC (rev 87835)
@@ -1,162 +0,0 @@
-Index: memcache.c
-===
 memcache.c (revision 329831)
-+++ memcache.c (working copy)
-@@ -1529,15 +1529,13 @@
-   unsigned int flags, unsigned long cas, void *param TSRMLS_DC) /*
-   receives a multiple values, param is a zval** array to store value and 
flags in {{{ */
- {
--  zval *arrval, **result = (zval **)param;
--  ALLOC_ZVAL(arrval);
--  *((zval *)arrval) = *value;
-+  zval **result = (zval **)param;
- 
-   /* add value to result */
-   if (Z_TYPE_P(result[0]) != IS_ARRAY) {
-   array_init(result[0]);
-   }
--  add_assoc_zval_ex(result[0], (char *)key, key_len + 1, arrval);
-+  add_assoc_zval_ex(result[0], (char *)key, key_len + 1, value);
- 
-   /* add flags to result */
-   if (result[1] != NULL) {
-@@ -1565,7 +1563,7 @@
-   receives a single value, param is a zval pointer to store value to {{{ 
*/
- {
-   zval **result = (zval **)param;
--  *(result[0]) = *value;
-+  ZVAL_ZVAL(result[0], value, 1, 1);
- 
-   if (result[1] != NULL) {
-   ZVAL_LONG(result[1], flags);
-Index: memcache_ascii_protocol.c
-===
 memcache_ascii_protocol.c  (revision 329831)
-+++ memcache_ascii_protocol.c  (working copy)
-@@ -122,7 +122,7 @@
-   line_len = mmc_stream_get_line(request->io, &line TSRMLS_CC);
-   if (line_len > 0) {
-   long lval;
--  zval value;
-+  zval *value;
- 
-   int response = mmc_request_check_response(line, line_len);
-   if (response != MMC_RESPONSE_UNKNOWN) {
-@@ -132,10 +132,10 @@
-   if (sscanf(line, "%lu", &lval) < 1) {
-   return mmc_server_failure(mmc, request->io, "Malformed 
VALUE header", 0 TSRMLS_CC);
-   }
--  
--  INIT_PZVAL(&value);
--  ZVAL_LONG(&value, lval);
--  return request->value_handler(request->key, request->key_len, 
&value, 0, 0, request->value_handler_param TSRMLS_CC);
-+  
-+  MAKE_STD_ZVAL(value);
-+  ZVAL_LONG(value, lval);
-+  return request->value_handler(request->key, request->key_len, 
value, 0, 0, request->value_handler_param TSRMLS_CC);
-   }
-   
-   return MMC_REQUEST_MORE;
-Index: memcache_binary_protocol.c
-===
 memcache_binary_protocol.c (revision 329831)
-+++ memcache_binary_protocol.c (working copy)
-@@ -225,14 +225,14 @@
-   header = (mmc_mutate_response_header_t *)mmc_stream_get(request->io, 
sizeof(*header) TSRMLS_CC);
-   if (header != NULL) {
-   int result;
--  zval *key, value;
-+  zval *key, *value;
- 
-   /* convert remembered 

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

2013-04-08 Thread Evangelos Foutras
Date: Monday, April 8, 2013 @ 10:42:56
  Author: foutrelis
Revision: 87836

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

Added:
  php-memcache/repos/community-i686/PKGBUILD
(from rev 87835, php-memcache/trunk/PKGBUILD)
  php-memcache/repos/community-i686/php-memcache.install
(from rev 87835, php-memcache/trunk/php-memcache.install)
  php-memcache/repos/community-x86_64/PKGBUILD
(from rev 87835, php-memcache/trunk/PKGBUILD)
  php-memcache/repos/community-x86_64/php-memcache.install
(from rev 87835, php-memcache/trunk/php-memcache.install)
Deleted:
  php-memcache/repos/community-i686/PKGBUILD
  
php-memcache/repos/community-i686/php-memcache-3.0.7-fix-segfault-with-object-serialization.patch
  php-memcache/repos/community-i686/php-memcache.install
  php-memcache/repos/community-x86_64/PKGBUILD
  
php-memcache/repos/community-x86_64/php-memcache-3.0.7-fix-segfault-with-object-serialization.patch
  php-memcache/repos/community-x86_64/php-memcache.install

--+
 /PKGBUILD  
  |   66 
 /php-memcache.install  
  |   20 +
 community-i686/PKGBUILD
  |   38 --
 community-i686/php-memcache-3.0.7-fix-segfault-with-object-serialization.patch 
  |  162 --
 community-i686/php-memcache.install
  |   10 
 community-x86_64/PKGBUILD  
  |   38 --
 
community-x86_64/php-memcache-3.0.7-fix-segfault-with-object-serialization.patch
 |  162 --
 community-x86_64/php-memcache.install  
  |   10 
 8 files changed, 86 insertions(+), 420 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-04-08 08:42:40 UTC (rev 87835)
+++ community-i686/PKGBUILD 2013-04-08 08:42:56 UTC (rev 87836)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Evangelos Foutras 
-
-pkgname=php-memcache
-pkgver=3.0.7
-pkgrel=2
-pkgdesc="Memcache module for PHP"
-arch=('i686' 'x86_64')
-url="http://pecl.php.net/package/memcache";
-license=('PHP')
-depends=('php')
-backup=('etc/php/conf.d/memcache.ini')
-install=php-memcache.install
-source=(http://pecl.php.net/get/memcache-$pkgver.tgz
-php-memcache-3.0.7-fix-segfault-with-object-serialization.patch)
-sha256sums=('f34e2ef42dd8f1f7e6a2cfbb9417a9e58e3bfd7f5db7227ca5afab686cefdd1f'
-'100bffed22ad537de1cb03653e2dbb6768617ba3b8b49b1cf05c59554270c25b')
-
-build() {
-  cd "$srcdir/memcache-$pkgver"
-
-  # https://bugs.php.net/bug.php?id=63142
-  patch -Np0 -i 
"$srcdir/php-memcache-3.0.7-fix-segfault-with-object-serialization.patch"
-
-  phpize
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "$srcdir/memcache-$pkgver"
-
-  make INSTALL_ROOT="$pkgdir" install
-  echo ';extension=memcache.so' >memcache.ini
-  install -Dm644 memcache.ini "$pkgdir/etc/php/conf.d/memcache.ini"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: php-memcache/repos/community-i686/PKGBUILD (from rev 87835, 
php-memcache/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-04-08 08:42:56 UTC (rev 87836)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Evangelos Foutras 
+
+pkgname=php-memcache
+pkgver=3.0.8
+pkgrel=1
+pkgdesc="Memcache module for PHP"
+arch=('i686' 'x86_64')
+url="http://pecl.php.net/package/memcache";
+license=('PHP')
+depends=('php')
+backup=('etc/php/conf.d/memcache.ini')
+install=php-memcache.install
+source=(http://pecl.php.net/get/memcache-$pkgver.tgz)
+sha256sums=('2cae5b423ffbfd33a259829849f6000d4db018debe3e29ecf3056f06642e8311')
+
+build() {
+  cd "$srcdir/memcache-$pkgver"
+
+  phpize
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$srcdir/memcache-$pkgver"
+
+  make INSTALL_ROOT="$pkgdir" install
+  echo ';extension=memcache.so' >memcache.ini
+  install -Dm644 memcache.ini "$pkgdir/etc/php/conf.d/memcache.ini"
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: 
community-i686/php-memcache-3.0.7-fix-segfault-with-object-serialization.patch
===
--- 
community-i686/php-memcache-3.0.7-fix-segfault-with-object-serialization.patch  
2013-04-08 08:42:40 UTC (rev 87835)
+++ 
community-i686/php-memcache-3.0.7-fix-segfault-with-object-serialization.patch  
2013-04-08 08:42:56 UTC (rev 87836)
@@ -1,162 +0,0 @@
-Index: memcache.c
-===
 memcache.c (revision 329831)
-+++ memcache.c (working copy)
-@@ -1529,15 +1529,13 @@
-   unsigned int flags, unsigned long cas, void *param TSRMLS_DC) /*
-   receives a multiple 

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

2013-04-08 Thread Sergej Pupykin
Date: Monday, April 8, 2013 @ 11:19:24
  Author: spupykin
Revision: 87837

upgpkg: darktable 1.2-1

upd

Modified:
  darktable/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-04-08 08:42:56 UTC (rev 87836)
+++ PKGBUILD2013-04-08 09:19:24 UTC (rev 87837)
@@ -4,8 +4,8 @@
 # Contributor: Johannes Hanika 
 
 pkgname=darktable
-pkgver=1.1.4
-_pkgver=1.1
+pkgver=1.2
+_pkgver=1.2
 pkgrel=1
 pkgdesc="Utility to organize and develop raw images"
 arch=('i686' 'x86_64')
@@ -19,12 +19,10 @@
 install=darktable.install
 options=(!libtool)
 
source=(http://downloads.sourceforge.net/project/darktable/darktable/${_pkgver}/darktable-$pkgver.tar.xz)
-md5sums=('49e376ca4b88f5351acacef177285c45')
+md5sums=('31bfd13d4786aac4f99d5155a811602b')
 
 build() {
   cd "$srcdir/$pkgname-$pkgver"
-#  mv doc/usermanual/CMakeLists.tx doc/usermanual/CMakeLists.txt
-  sed -i 's/-Werror//' src/CMakeLists.txt
   mkdir -p build
   cd build
   cmake \
@@ -42,6 +40,4 @@
   cd "$srcdir/$pkgname-$pkgver/build"
   make DESTDIR="$pkgdir" install
   mv "${pkgdir}/usr/share/doc/darktable" 
"${pkgdir}/usr/share/doc/${pkgname}-${pkgver}"
-#  mkdir -p "${pkgdir}/usr/share/gconf/schemas/"
-#  mv "${pkgdir}/etc/gconf/schemas/darktable.schemas" 
"${pkgdir}/usr/share/gconf/schemas/"
 }



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

2013-04-08 Thread Sergej Pupykin
Date: Monday, April 8, 2013 @ 11:19:47
  Author: spupykin
Revision: 87838

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

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

+
 /PKGBUILD  |   86 +++
 /darktable.install |   22 
 community-i686/PKGBUILD|   47 ---
 community-i686/darktable.install   |   11 
 community-x86_64/PKGBUILD  |   47 ---
 community-x86_64/darktable.install |   11 
 6 files changed, 108 insertions(+), 116 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-04-08 09:19:24 UTC (rev 87837)
+++ community-i686/PKGBUILD 2013-04-08 09:19:47 UTC (rev 87838)
@@ -1,47 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer:  Christian Himpel 
-# Contributor: Johannes Hanika 
-
-pkgname=darktable
-pkgver=1.1.4
-_pkgver=1.1
-pkgrel=1
-pkgdesc="Utility to organize and develop raw images"
-arch=('i686' 'x86_64')
-url=http://darktable.sf.net/
-license=('GPL3')
-depends=('exiv2>=0.18' 'intltool>=0.40' 'lcms2' 'lensfun>=0.2.3' 'libglade' 
'dbus-glib'
-'curl' 'libgnome-keyring' 'libgphoto2' 'libusb-compat' 'openexr' 
'sqlite' 'libxslt'
-'libsoup')
-makedepends=('intltool>=0.40' 'cmake' 'librsvg')
-optdepends=('librsvg')
-install=darktable.install
-options=(!libtool)
-source=(http://downloads.sourceforge.net/project/darktable/darktable/${_pkgver}/darktable-$pkgver.tar.xz)
-md5sums=('49e376ca4b88f5351acacef177285c45')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-#  mv doc/usermanual/CMakeLists.tx doc/usermanual/CMakeLists.txt
-  sed -i 's/-Werror//' src/CMakeLists.txt
-  mkdir -p build
-  cd build
-  cmake \
-  -DCMAKE_INSTALL_PREFIX=/usr \
-  -DCMAKE_BUILD_TYPE=Release \
-  -DDONT_INSTALL_GCONF_SCHEMAS=True \
-  -DBINARY_PACKAGE_BUILD=1 \
-  -DUSE_GCONF_BACKEND=Off \
-  -DBUILD_USERMANUAL=False \
-  ..
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver/build"
-  make DESTDIR="$pkgdir" install
-  mv "${pkgdir}/usr/share/doc/darktable" 
"${pkgdir}/usr/share/doc/${pkgname}-${pkgver}"
-#  mkdir -p "${pkgdir}/usr/share/gconf/schemas/"
-#  mv "${pkgdir}/etc/gconf/schemas/darktable.schemas" 
"${pkgdir}/usr/share/gconf/schemas/"
-}

Copied: darktable/repos/community-i686/PKGBUILD (from rev 87837, 
darktable/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-04-08 09:19:47 UTC (rev 87838)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer:  Christian Himpel 
+# Contributor: Johannes Hanika 
+
+pkgname=darktable
+pkgver=1.2
+_pkgver=1.2
+pkgrel=1
+pkgdesc="Utility to organize and develop raw images"
+arch=('i686' 'x86_64')
+url=http://darktable.sf.net/
+license=('GPL3')
+depends=('exiv2>=0.18' 'intltool>=0.40' 'lcms2' 'lensfun>=0.2.3' 'libglade' 
'dbus-glib'
+'curl' 'libgnome-keyring' 'libgphoto2' 'libusb-compat' 'openexr' 
'sqlite' 'libxslt'
+'libsoup')
+makedepends=('intltool>=0.40' 'cmake' 'librsvg')
+optdepends=('librsvg')
+install=darktable.install
+options=(!libtool)
+source=(http://downloads.sourceforge.net/project/darktable/darktable/${_pkgver}/darktable-$pkgver.tar.xz)
+md5sums=('31bfd13d4786aac4f99d5155a811602b')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  mkdir -p build
+  cd build
+  cmake \
+  -DCMAKE_INSTALL_PREFIX=/usr \
+  -DCMAKE_BUILD_TYPE=Release \
+  -DDONT_INSTALL_GCONF_SCHEMAS=True \
+  -DBINARY_PACKAGE_BUILD=1 \
+  -DUSE_GCONF_BACKEND=Off \
+  -DBUILD_USERMANUAL=False \
+  ..
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver/build"
+  make DESTDIR="$pkgdir" install
+  mv "${pkgdir}/usr/share/doc/darktable" 
"${pkgdir}/usr/share/doc/${pkgname}-${pkgver}"
+}

Deleted: community-i686/darktable.install
===
--- community-i686/darktable.install2013-04-08 09:19:24 UTC (rev 87837)
+++ community-i686/darktable.install2013-04-08 09:19:47 UTC (rev 87838)
@@ -1,11 +0,0 @@
-post_install() {
-  [ -x `which update-desktop-database 2>/dev/null` ] &&  
update-desktop-database -q
-}
-
-post_upgrade() {
-  [ -x `which update-desktop-database 2>

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

2013-04-08 Thread Sergej Pupykin
Date: Monday, April 8, 2013 @ 11:19:54
  Author: spupykin
Revision: 87839

upgpkg: denemo 1.0.0-1

upd

Modified:
  denemo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-04-08 09:19:47 UTC (rev 87838)
+++ PKGBUILD2013-04-08 09:19:54 UTC (rev 87839)
@@ -5,7 +5,7 @@
 # Contributor: Gnud 
 
 pkgname=denemo
-pkgver=0.9.6
+pkgver=1.0.0
 pkgrel=1
 pkgdesc="A music score editor"
 arch=('i686' 'x86_64')
@@ -16,7 +16,7 @@
 options=('!libtool')
 backup=('etc/denemo/denemo.conf')
 source=("http://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz";)
-md5sums=('48dd1b0801dba574517bcaf0b86d714a')
+md5sums=('92bfd2e661387f791e4aa6c23dc7d90b')
 
 build() {
   cd $srcdir/$pkgname-$pkgver



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

2013-04-08 Thread Sergej Pupykin
Date: Monday, April 8, 2013 @ 11:20:17
  Author: spupykin
Revision: 87840

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-04-08 09:19:54 UTC (rev 87839)
+++ community-i686/PKGBUILD 2013-04-08 09:20:17 UTC (rev 87840)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Philipp Sandhaus 
-# Contributor: Robert Emil Berge 
-# Contributor: Gnud 
-
-pkgname=denemo
-pkgver=0.9.6
-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')
-options=('!libtool')
-backup=('etc/denemo/denemo.conf')
-source=("http://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz";)
-md5sums=('48dd1b0801dba574517bcaf0b86d714a')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc
-#  sed -i 's|#include |#include |' src/pitchrecog.c
-  make
-  make DESTDIR=$pkgdir install
-}

Copied: denemo/repos/community-i686/PKGBUILD (from rev 87839, 
denemo/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-04-08 09:20:17 UTC (rev 87840)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Philipp Sandhaus 
+# Contributor: Robert Emil Berge 
+# Contributor: Gnud 
+
+pkgname=denemo
+pkgver=1.0.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')
+options=('!libtool')
+backup=('etc/denemo/denemo.conf')
+source=("http://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz";)
+md5sums=('92bfd2e661387f791e4aa6c23dc7d90b')
+
+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-04-08 09:19:54 UTC (rev 87839)
+++ community-x86_64/PKGBUILD   2013-04-08 09:20:17 UTC (rev 87840)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Philipp Sandhaus 
-# Contributor: Robert Emil Berge 
-# Contributor: Gnud 
-
-pkgname=denemo
-pkgver=0.9.6
-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')
-options=('!libtool')
-backup=('etc/denemo/denemo.conf')
-source=("http://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz";)
-md5sums=('48dd1b0801dba574517bcaf0b86d714a')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc
-#  sed -i 's|#include |#include |' src/pitchrecog.c
-  make
-  make DESTDIR=$pkgdir install
-}

Copied: denemo/repos/community-x86_64/PKGBUILD (from rev 87839, 
denemo/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2013-04-08 09:20:17 UTC (rev 87840)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Philipp Sandhaus 
+# Contributor: Robert Emil Berge 
+# Contributor: Gnud 
+
+pkgname=denemo
+pkgver=1.0.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')
+options=('!libtool')
+backup=('etc/denemo/denemo.conf')
+source=("http://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz";)
+md5sums=('92bfd2e661387f791e4aa6c23dc7d90b')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}



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

2013-04-08 Thread Sergej Pupykin
Date: Monday, April 8, 2013 @ 11:21:26
  Author: spupykin
Revision: 87841

upgpkg: drupal 7.22-1

upd

Modified:
  drupal/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-04-08 09:20:17 UTC (rev 87840)
+++ PKGBUILD2013-04-08 09:21:26 UTC (rev 87841)
@@ -3,7 +3,7 @@
 # Contributor: Corrado Primier 
 
 pkgname=drupal
-pkgver=7.21
+pkgver=7.22
 pkgrel=1
 pkgdesc="A PHP-based content management platform"
 arch=('any')
@@ -14,7 +14,7 @@
 options=(!strip)
 backup=(etc/webapps/drupal/.htaccess)
 source=(http://www.drupal.org/files/projects/$pkgname-$pkgver.tar.gz)
-md5sums=('eff054cd53be39ff719f77c81dce1aac')
+md5sums=('068d7a77958fce6bb002659aa7ccaeb7')
 
 package() {
   _instdir=$pkgdir/usr/share/webapps/drupal



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

2013-04-08 Thread Sergej Pupykin
Date: Monday, April 8, 2013 @ 11:21:37
  Author: spupykin
Revision: 87842

archrelease: copy trunk to community-any

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

+
 PKGBUILD   |   94 +++
 drupal.install |   30 -
 2 files changed, 62 insertions(+), 62 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2013-04-08 09:21:26 UTC (rev 87841)
+++ PKGBUILD2013-04-08 09:21:37 UTC (rev 87842)
@@ -1,47 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Corrado Primier 
-
-pkgname=drupal
-pkgver=7.21
-pkgrel=1
-pkgdesc="A PHP-based content management platform"
-arch=('any')
-url="http://www.drupal.org/";
-license=('GPL')
-depends=('php')
-install='drupal.install'
-options=(!strip)
-backup=(etc/webapps/drupal/.htaccess)
-source=(http://www.drupal.org/files/projects/$pkgname-$pkgver.tar.gz)
-md5sums=('eff054cd53be39ff719f77c81dce1aac')
-
-package() {
-  _instdir=$pkgdir/usr/share/webapps/drupal
-  mkdir -p ${_instdir}
-  cd ${_instdir}
-  cp -r $srcdir/$pkgname-$pkgver/{*,.htaccess} ${_instdir}
-
-  # move .htaccess
-  mkdir -p $pkgdir/etc/webapps/drupal
-  sed -i '1,1ideny from all' ${_instdir}/.htaccess
-  mv ${_instdir}/.htaccess $pkgdir/etc/webapps/drupal/.htaccess
-  ln -s /etc/webapps/drupal/.htaccess ${_instdir}/.htaccess
-
-  # move sites/
-  mkdir -p $pkgdir/var/lib/drupal/
-  mv ${_instdir}/sites $pkgdir/var/lib/drupal/sites
-  ln -s /var/lib/drupal/sites ${_instdir}/sites
-
-  # apache config example
-  cat >$pkgdir/etc/webapps/drupal/apache.example.conf <
-   AllowOverride All
-   Options FollowSymlinks
-   Order allow,deny
-   Allow from all
-   php_admin_value open_basedir 
"/srv/:/tmp/:/usr/share/webapps/:/etc/webapps:/usr/share/pear/:/var/lib/drupal"
-   
-EOF
-}

Copied: drupal/repos/community-any/PKGBUILD (from rev 87841, 
drupal/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-04-08 09:21:37 UTC (rev 87842)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Corrado Primier 
+
+pkgname=drupal
+pkgver=7.22
+pkgrel=1
+pkgdesc="A PHP-based content management platform"
+arch=('any')
+url="http://www.drupal.org/";
+license=('GPL')
+depends=('php')
+install='drupal.install'
+options=(!strip)
+backup=(etc/webapps/drupal/.htaccess)
+source=(http://www.drupal.org/files/projects/$pkgname-$pkgver.tar.gz)
+md5sums=('068d7a77958fce6bb002659aa7ccaeb7')
+
+package() {
+  _instdir=$pkgdir/usr/share/webapps/drupal
+  mkdir -p ${_instdir}
+  cd ${_instdir}
+  cp -r $srcdir/$pkgname-$pkgver/{*,.htaccess} ${_instdir}
+
+  # move .htaccess
+  mkdir -p $pkgdir/etc/webapps/drupal
+  sed -i '1,1ideny from all' ${_instdir}/.htaccess
+  mv ${_instdir}/.htaccess $pkgdir/etc/webapps/drupal/.htaccess
+  ln -s /etc/webapps/drupal/.htaccess ${_instdir}/.htaccess
+
+  # move sites/
+  mkdir -p $pkgdir/var/lib/drupal/
+  mv ${_instdir}/sites $pkgdir/var/lib/drupal/sites
+  ln -s /var/lib/drupal/sites ${_instdir}/sites
+
+  # apache config example
+  cat >$pkgdir/etc/webapps/drupal/apache.example.conf <
+   AllowOverride All
+   Options FollowSymlinks
+   Order allow,deny
+   Allow from all
+   php_admin_value open_basedir 
"/srv/:/tmp/:/usr/share/webapps/:/etc/webapps:/usr/share/pear/:/var/lib/drupal"
+   
+EOF
+}

Deleted: drupal.install
===
--- drupal.install  2013-04-08 09:21:26 UTC (rev 87841)
+++ drupal.install  2013-04-08 09:21:37 UTC (rev 87842)
@@ -1,15 +0,0 @@
-post_install() {
-  echo "Remember that you need to install either mysql or postgresql for this 
package"
-  echo "to work. Also make sure to read either INSTALL.mysql.txt (for MySQL) 
or"
-  echo "INSTALL.pgsql.txt (for PostgreSQL) in /usr/share/webapps/drupal/."
-  if [[ ! `grep "^extension=mysql.so" /etc/php/php.ini` ]]
-   then echo "If you use mysql you should enable its module by adding the 
line:"
-   echo "   extension=mysql.so"
-   echo "to your /etc/php/php.ini, otherwise drupal won't work."
-  fi
-  chown -R http:http var/lib/drupal
-}
-
-post_upgrade() {
-  chown -R http:http var/lib/drupal
-}

Copied: drupal/repos/community-any/drupal.install (from rev 87841, 
drupal/trunk/drupal.install)
===
--- drupal.install  (rev 0)
+++ drupal.install  2013-04-08 09:21:37 UTC (rev 87842)
@@ -0,0 +1,15 @@
+post_install() {
+  echo "Remember that you 

[arch-commits] Commit in ejabberd/trunk (2.1.12rc.diff.gz PKGBUILD)

2013-04-08 Thread Sergej Pupykin
Date: Monday, April 8, 2013 @ 11:21:49
  Author: spupykin
Revision: 87843

upgpkg: ejabberd 2.1.12-1

upd

Modified:
  ejabberd/trunk/PKGBUILD
Deleted:
  ejabberd/trunk/2.1.12rc.diff.gz

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

Deleted: 2.1.12rc.diff.gz
===
(Binary files differ)

Modified: PKGBUILD
===
--- PKGBUILD2013-04-08 09:21:37 UTC (rev 87842)
+++ PKGBUILD2013-04-08 09:21:49 UTC (rev 87843)
@@ -4,8 +4,8 @@
 # Contributor: Alexander Rødseth 
 
 pkgname=ejabberd
-pkgver=2.1.11
-pkgrel=9
+pkgver=2.1.12
+pkgrel=1
 pkgdesc="Jabber server written in Erlang"
 arch=('x86_64' 'i686')
 url="http://www.ejabberd.im/";
@@ -18,17 +18,14 @@
 
source=("http://www.process-one.net/downloads/ejabberd/${pkgver/_/-}/ejabberd-${pkgver}.tgz";
"$pkgname.logrotate"
"$pkgname"
-   "ejabberd.service"
-   "2.1.12rc.diff.gz")
-md5sums=('a70b040c4e7602f47718c8afe8780d50'
+   "ejabberd.service")
+md5sums=('7d49242cf04282f3c4cebfafa2cc2f46'
  'f97c8a96160f30e0aecc9526c12e6606'
  '2338a6230ce5f9f60be6dddcfa39bc7e'
- 'df32aa17e40a7bc5d9946d3ba6fe5e16'
- '688e99cdc1fc3a12501caabaec2293a4')
+ 'df32aa17e40a7bc5d9946d3ba6fe5e16')
 
 build() {
   cd "$srcdir/$pkgname-$pkgver/src"
-  patch -p2 <$srcdir/2.1.12rc.diff
   ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
 --enable-pam --enable-odbc
   make



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

2013-04-08 Thread Sergej Pupykin
Date: Monday, April 8, 2013 @ 11:22:21
  Author: spupykin
Revision: 87844

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

Added:
  ejabberd/repos/community-i686/PKGBUILD
(from rev 87843, ejabberd/trunk/PKGBUILD)
  ejabberd/repos/community-i686/ejabberd
(from rev 87843, ejabberd/trunk/ejabberd)
  ejabberd/repos/community-i686/ejabberd.install
(from rev 87843, ejabberd/trunk/ejabberd.install)
  ejabberd/repos/community-i686/ejabberd.logrotate
(from rev 87843, ejabberd/trunk/ejabberd.logrotate)
  ejabberd/repos/community-i686/ejabberd.service
(from rev 87843, ejabberd/trunk/ejabberd.service)
  ejabberd/repos/community-x86_64/PKGBUILD
(from rev 87843, ejabberd/trunk/PKGBUILD)
  ejabberd/repos/community-x86_64/ejabberd
(from rev 87843, ejabberd/trunk/ejabberd)
  ejabberd/repos/community-x86_64/ejabberd.install
(from rev 87843, ejabberd/trunk/ejabberd.install)
  ejabberd/repos/community-x86_64/ejabberd.logrotate
(from rev 87843, ejabberd/trunk/ejabberd.logrotate)
  ejabberd/repos/community-x86_64/ejabberd.service
(from rev 87843, ejabberd/trunk/ejabberd.service)
Deleted:
  ejabberd/repos/community-i686/2.1.12rc.diff.gz
  ejabberd/repos/community-i686/PKGBUILD
  ejabberd/repos/community-i686/ejabberd
  ejabberd/repos/community-i686/ejabberd.install
  ejabberd/repos/community-i686/ejabberd.logrotate
  ejabberd/repos/community-i686/ejabberd.service
  ejabberd/repos/community-x86_64/2.1.12rc.diff.gz
  ejabberd/repos/community-x86_64/PKGBUILD
  ejabberd/repos/community-x86_64/ejabberd
  ejabberd/repos/community-x86_64/ejabberd.install
  ejabberd/repos/community-x86_64/ejabberd.logrotate
  ejabberd/repos/community-x86_64/ejabberd.service

-+
 /PKGBUILD   |   92 
 /ejabberd   |  126 ++
 /ejabberd.install   |   50 +
 /ejabberd.logrotate |   24 ++
 /ejabberd.service   |   26 +++
 community-i686/PKGBUILD |   49 -
 community-i686/ejabberd |   63 -
 community-i686/ejabberd.install |   25 --
 community-i686/ejabberd.logrotate   |   12 ---
 community-i686/ejabberd.service |   13 ---
 community-x86_64/PKGBUILD   |   49 -
 community-x86_64/ejabberd   |   63 -
 community-x86_64/ejabberd.install   |   25 --
 community-x86_64/ejabberd.logrotate |   12 ---
 community-x86_64/ejabberd.service   |   13 ---
 15 files changed, 318 insertions(+), 324 deletions(-)

Deleted: community-i686/2.1.12rc.diff.gz
===
(Binary files differ)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-04-08 09:21:49 UTC (rev 87843)
+++ community-i686/PKGBUILD 2013-04-08 09:22:21 UTC (rev 87844)
@@ -1,49 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Jeff 'codemac' Mickey 
-# Contributor: Alexander Rødseth 
-
-pkgname=ejabberd
-pkgver=2.1.11
-pkgrel=9
-pkgdesc="Jabber server written in Erlang"
-arch=('x86_64' 'i686')
-url="http://www.ejabberd.im/";
-license=("GPL")
-depends=('expat' 'openssl' 'zlib' 'erlang' 'pam' 'iproute2')
-backup=('etc/ejabberd/ejabberd.cfg'
-   'etc/ejabberd/ejabberdctl.cfg'
-   'etc/logrotate.d/ejabberd')
-install=$pkgname.install
-source=("http://www.process-one.net/downloads/ejabberd/${pkgver/_/-}/ejabberd-${pkgver}.tgz";
-   "$pkgname.logrotate"
-   "$pkgname"
-   "ejabberd.service"
-   "2.1.12rc.diff.gz")
-md5sums=('a70b040c4e7602f47718c8afe8780d50'
- 'f97c8a96160f30e0aecc9526c12e6606'
- '2338a6230ce5f9f60be6dddcfa39bc7e'
- 'df32aa17e40a7bc5d9946d3ba6fe5e16'
- '688e99cdc1fc3a12501caabaec2293a4')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver/src"
-  patch -p2 <$srcdir/2.1.12rc.diff
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---enable-pam --enable-odbc
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver/src"
-  make DESTDIR="$pkgdir" install
-  install -D -m 0755 "$srcdir/$pkgname" "$pkgdir/etc/rc.d/$pkgname"
-  install -d "$pkgdir/var/lib/$pkgname"
-  install -D -m0644 "$srcdir/$pkgname.logrotate" 
"$pkgdir/etc/logrotate.d/$pkgname"
-  chmod ug+r "$pkgdir/etc/$pkgname/"*
-  chmod a+rx "$pkgdir/usr/sbin/ejabberdctl"
-  rm -rf "$pkgdir/var/lock"
-  install -Dm0644 $srcdir/ejabberd.service 
$pkgdir/usr/lib/systemd/system/ejabberd.service
-}
-
-# vim:set ts=2 sw=2 et:

Copied: ejabberd/repos/community-i686/PKGBUILD (from rev 87843, 
ejabberd/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-04-08 09:22:21 UTC (rev 87844)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Sergej Pupykin 

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

2013-04-08 Thread Sergej Pupykin
Date: Monday, April 8, 2013 @ 11:22:29
  Author: spupykin
Revision: 87845

upgpkg: kdenlive 0.9.6-1

upd

Modified:
  kdenlive/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-04-08 09:22:21 UTC (rev 87844)
+++ PKGBUILD2013-04-08 09:22:29 UTC (rev 87845)
@@ -4,8 +4,8 @@
 # Contributor: Darwin Bautista 
 
 pkgname=kdenlive
-pkgver=0.9.4
-pkgrel=2
+pkgver=0.9.6
+pkgrel=1
 pkgdesc="A non-linear video editor for Linux"
 arch=('i686' 'x86_64')
 # http://download.kde.org/stable/kdenlive/
@@ -21,7 +21,7 @@
 install=kdenlive.install
 options=('docs')
 
source=(http://download.kde.org/stable/kdenlive/$pkgver/src/kdenlive-$pkgver.tar.bz2)
-md5sums=('fed17b584aca6a9811a49f2348b4f6db')
+md5sums=('3bd3a511b860490acc367e7c9d7ffa43')
 
 build() {
   export LDFLAGS="$LDFLAGS -lX11"



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

2013-04-08 Thread Sergej Pupykin
Date: Monday, April 8, 2013 @ 11:22:44
  Author: spupykin
Revision: 87846

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

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

---+
 /PKGBUILD |   84 
 /kdenlive.install |   24 ++
 community-i686/PKGBUILD   |   42 --
 community-i686/kdenlive.install   |   12 -
 community-x86_64/PKGBUILD |   42 --
 community-x86_64/kdenlive.install |   12 -
 6 files changed, 108 insertions(+), 108 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-04-08 09:22:29 UTC (rev 87845)
+++ community-i686/PKGBUILD 2013-04-08 09:22:44 UTC (rev 87846)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Zuf 
-# Contributor: Darwin Bautista 
-
-pkgname=kdenlive
-pkgver=0.9.4
-pkgrel=1
-pkgdesc="A non-linear video editor for Linux"
-arch=('i686' 'x86_64')
-# http://download.kde.org/stable/kdenlive/
-url="http://www.kdenlive.org/";
-license=('GPL')
-depends=('kdebase-runtime' 'mlt' 'qjson' 'libqzeitgeist')
-makedepends=('automoc4' 'cmake' 'gettext' 'mesa' 'glu')
-optdepends=('recordmydesktop: screen capture'
-   'dvdauthor: dvd creation'
-   'dvgrab: firewire capture'
-   'xine-ui: dvd preview'
-   'cdrkit: dvd iso image creation')
-install=kdenlive.install
-options=('docs')
-source=(http://download.kde.org/stable/kdenlive/$pkgver/src/kdenlive-$pkgver.tar.bz2)
-md5sums=('fed17b584aca6a9811a49f2348b4f6db')
-
-build() {
-  export LDFLAGS="$LDFLAGS -lX11"
-  cd "${srcdir}"
-  mkdir -p build
-  cd build
-  cmake ../kdenlive-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DLIB_INSTALL_DIR=/usr/lib \
--DLINK_LIBRARIES=-lX11
-  make
-}
-
-package() {
-  cd "${srcdir}"/build
-  make DESTDIR="${pkgdir}" install
-}

Copied: kdenlive/repos/community-i686/PKGBUILD (from rev 87845, 
kdenlive/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-04-08 09:22:44 UTC (rev 87846)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Zuf 
+# Contributor: Darwin Bautista 
+
+pkgname=kdenlive
+pkgver=0.9.6
+pkgrel=1
+pkgdesc="A non-linear video editor for Linux"
+arch=('i686' 'x86_64')
+# http://download.kde.org/stable/kdenlive/
+url="http://www.kdenlive.org/";
+license=('GPL')
+depends=('kdebase-runtime' 'mlt' 'qjson' 'libqzeitgeist')
+makedepends=('automoc4' 'cmake' 'gettext' 'mesa' 'glu')
+optdepends=('recordmydesktop: screen capture'
+   'dvdauthor: dvd creation'
+   'dvgrab: firewire capture'
+   'xine-ui: dvd preview'
+   'cdrkit: dvd iso image creation')
+install=kdenlive.install
+options=('docs')
+source=(http://download.kde.org/stable/kdenlive/$pkgver/src/kdenlive-$pkgver.tar.bz2)
+md5sums=('3bd3a511b860490acc367e7c9d7ffa43')
+
+build() {
+  export LDFLAGS="$LDFLAGS -lX11"
+  cd "${srcdir}"
+  mkdir -p build
+  cd build
+  cmake ../kdenlive-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=/usr/lib \
+-DLINK_LIBRARIES=-lX11
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+  make DESTDIR="${pkgdir}" install
+}

Deleted: community-i686/kdenlive.install
===
--- community-i686/kdenlive.install 2013-04-08 09:22:29 UTC (rev 87845)
+++ community-i686/kdenlive.install 2013-04-08 09:22:44 UTC (rev 87846)
@@ -1,12 +0,0 @@
-post_install() {
-  update-mime-database usr/share/mime &> /dev/null
-  xdg-icon-resource forceupdate --theme hicolor &> /dev/null
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: kdenlive/repos/community-i686/kdenlive.install (from rev 87845, 
kdenlive/trunk/kdenlive.install)
===
--- community-i686/kdenlive.install (rev 0)
+++ community-i686/kdenlive.install 2013-04-08 09:22:44 UTC (rev 87846)
@@ -0,0 +1,12 @@
+post_install() {
+  update-mime-database usr/share/mime &> /dev/null
+  xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+pos

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

2013-04-08 Thread Sergej Pupykin
Date: Monday, April 8, 2013 @ 11:22:53
  Author: spupykin
Revision: 87847

upgpkg: lshw B.02.16-4

upd

Modified:
  lshw/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-04-08 09:22:44 UTC (rev 87846)
+++ PKGBUILD2013-04-08 09:22:53 UTC (rev 87847)
@@ -5,7 +5,7 @@
 
 pkgname=lshw
 pkgver=B.02.16
-pkgrel=3
+pkgrel=4
 pkgdesc="A small tool to provide detailed information on the hardware 
configuration of the machine."
 url="http://ezix.org/project/wiki/HardwareLiSter";
 license=('GPL')
@@ -18,6 +18,7 @@
 
 build() {
   cd $srcdir/$pkgname-$pkgver
+  sed -i 's|/usr/bin/gtk-lshw|/usr/sbin/gtk-lshw|' 
src/gui/integration/gtk-lshw.desktop
   make
   make gui
 }



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

2013-04-08 Thread Sergej Pupykin
Date: Monday, April 8, 2013 @ 11:23:17
  Author: spupykin
Revision: 87848

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-04-08 09:22:53 UTC (rev 87847)
+++ community-i686/PKGBUILD 2013-04-08 09:23:17 UTC (rev 87848)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Stefano Zamprogno 
-# Contributor: Chuck Yang 
-
-pkgname=lshw
-pkgver=B.02.16
-pkgrel=3
-pkgdesc="A small tool to provide detailed information on the hardware 
configuration of the machine."
-url="http://ezix.org/project/wiki/HardwareLiSter";
-license=('GPL')
-arch=('i686' 'x86_64')
-depends=('gcc-libs' 'hwids')
-optdepends=('gtk2')
-makedepends=('gcc' 'gtk2' 'sqlite')
-source=(http://ezix.org/software/files/lshw-$pkgver.tar.gz)
-md5sums=('67479167add605e8f001097c30e96d0d')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  make
-  make gui
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make DESTDIR=$pkgdir/ install
-  make DESTDIR=$pkgdir/ install-gui
-  install -Dm0644 src/gui/integration/gtk-lshw.desktop 
$pkgdir/usr/share/applications/gtk-lshw.desktop
-  install -Dm0644 src/gui/integration/gtk-lshw.pam 
$pkgdir/usr/share/doc/$pkgname/gtk-lshw.pam
-  install -Dm0644 src/gui/integration/console.apps 
$pkgdir/usr/share/doc/$pkgname/console.apps
-  rm -f $pkgdir/usr/share/lshw/{pci,usb}.ids
-}

Copied: lshw/repos/community-i686/PKGBUILD (from rev 87847, lshw/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-04-08 09:23:17 UTC (rev 87848)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Stefano Zamprogno 
+# Contributor: Chuck Yang 
+
+pkgname=lshw
+pkgver=B.02.16
+pkgrel=4
+pkgdesc="A small tool to provide detailed information on the hardware 
configuration of the machine."
+url="http://ezix.org/project/wiki/HardwareLiSter";
+license=('GPL')
+arch=('i686' 'x86_64')
+depends=('gcc-libs' 'hwids')
+optdepends=('gtk2')
+makedepends=('gcc' 'gtk2' 'sqlite')
+source=(http://ezix.org/software/files/lshw-$pkgver.tar.gz)
+md5sums=('67479167add605e8f001097c30e96d0d')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  sed -i 's|/usr/bin/gtk-lshw|/usr/sbin/gtk-lshw|' 
src/gui/integration/gtk-lshw.desktop
+  make
+  make gui
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir/ install
+  make DESTDIR=$pkgdir/ install-gui
+  install -Dm0644 src/gui/integration/gtk-lshw.desktop 
$pkgdir/usr/share/applications/gtk-lshw.desktop
+  install -Dm0644 src/gui/integration/gtk-lshw.pam 
$pkgdir/usr/share/doc/$pkgname/gtk-lshw.pam
+  install -Dm0644 src/gui/integration/console.apps 
$pkgdir/usr/share/doc/$pkgname/console.apps
+  rm -f $pkgdir/usr/share/lshw/{pci,usb}.ids
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2013-04-08 09:22:53 UTC (rev 87847)
+++ community-x86_64/PKGBUILD   2013-04-08 09:23:17 UTC (rev 87848)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Stefano Zamprogno 
-# Contributor: Chuck Yang 
-
-pkgname=lshw
-pkgver=B.02.16
-pkgrel=3
-pkgdesc="A small tool to provide detailed information on the hardware 
configuration of the machine."
-url="http://ezix.org/project/wiki/HardwareLiSter";
-license=('GPL')
-arch=('i686' 'x86_64')
-depends=('gcc-libs' 'hwids')
-optdepends=('gtk2')
-makedepends=('gcc' 'gtk2' 'sqlite')
-source=(http://ezix.org/software/files/lshw-$pkgver.tar.gz)
-md5sums=('67479167add605e8f001097c30e96d0d')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  make
-  make gui
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make DESTDIR=$pkgdir/ install
-  make DESTDIR=$pkgdir/ install-gui
-  install -Dm0644 src/gui/integration/gtk-lshw.desktop 
$pkgdir/usr/share/applications/gtk-lshw.desktop
-  install -Dm0644 src/gui/integration/gtk-lshw.pam 
$pkgdir/usr/share/doc/$pkgname/gtk-lshw.pam
-  install -Dm0644 src/gui/integration/console.apps 
$pkgdir/usr/share/doc/$pkgname/console.apps
-  rm -f $pkgdir/usr/share/lshw/{pci,usb}.ids
-}

Copied: lshw/repos/community-x86_64/PKGBUILD (from rev 87847, 
lshw/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_

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

2013-04-08 Thread Sergej Pupykin
Date: Monday, April 8, 2013 @ 11:23:24
  Author: spupykin
Revision: 87849

upgpkg: lxc 1:0.9.0-1

upd

Modified:
  lxc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-04-08 09:23:17 UTC (rev 87848)
+++ PKGBUILD2013-04-08 09:23:24 UTC (rev 87849)
@@ -5,16 +5,16 @@
 # Maintainer: Jon Nordby 
 
 pkgname=lxc
-pkgver=0.8.0
+pkgver=0.9.0
 epoch=1
-pkgrel=2
+pkgrel=1
 pkgdesc="Linux Containers"
 arch=('i686' 'x86_64')
 url="http://lxc.sourceforge.net/";
 depends=('bash' 'perl')
 license=('LGPL')
 
source=("http://lxc.sourceforge.net/download/lxc/$pkgname-${pkgver/_/-}.tar.gz";)
-md5sums=('7304fa57146ce687f749b5df876bb20d')
+md5sums=('8552a4479090616f4bc04d8473765fc9')
 
 build() {
   cd "$srcdir/$pkgname-${pkgver/_/-}"



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

2013-04-08 Thread Sergej Pupykin
Date: Monday, April 8, 2013 @ 11:23:47
  Author: spupykin
Revision: 87850

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-04-08 09:23:24 UTC (rev 87849)
+++ community-i686/PKGBUILD 2013-04-08 09:23:47 UTC (rev 87850)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Andrea Zucchelli 
-# Contributor: Jonathan Liu 
-# Maintainer: Jon Nordby 
-
-pkgname=lxc
-pkgver=0.8.0
-epoch=1
-pkgrel=2
-pkgdesc="Linux Containers"
-arch=('i686' 'x86_64')
-url="http://lxc.sourceforge.net/";
-depends=('bash' 'perl')
-license=('LGPL')
-source=("http://lxc.sourceforge.net/download/lxc/$pkgname-${pkgver/_/-}.tar.gz";)
-md5sums=('7304fa57146ce687f749b5df876bb20d')
-
-build() {
-  cd "$srcdir/$pkgname-${pkgver/_/-}"
-  ./configure \
-   --prefix=/usr \
-   --localstatedir=/var \
-   --libexecdir=/usr/bin \
-   --sysconfdir=/etc \
-   --disable-apparmor \
-   --disable-doc
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-${pkgver/_/-}"
-
-  make DESTDIR="$pkgdir" install
-  install -d -m755 "$pkgdir/var/lib/lxc"
-
-  cd doc
-  find . -type f -name '*.1' -exec install -D -m644 "{}" 
"$pkgdir/usr/share/man/man1/{}" \;
-  find . -type f -name '*.5' -exec install -D -m644 "{}" 
"$pkgdir/usr/share/man/man5/{}" \;
-  find . -type f -name '*.7' -exec install -D -m644 "{}" 
"$pkgdir/usr/share/man/man7/{}" \;
-}

Copied: lxc/repos/community-i686/PKGBUILD (from rev 87849, lxc/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-04-08 09:23:47 UTC (rev 87850)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Andrea Zucchelli 
+# Contributor: Jonathan Liu 
+# Maintainer: Jon Nordby 
+
+pkgname=lxc
+pkgver=0.9.0
+epoch=1
+pkgrel=1
+pkgdesc="Linux Containers"
+arch=('i686' 'x86_64')
+url="http://lxc.sourceforge.net/";
+depends=('bash' 'perl')
+license=('LGPL')
+source=("http://lxc.sourceforge.net/download/lxc/$pkgname-${pkgver/_/-}.tar.gz";)
+md5sums=('8552a4479090616f4bc04d8473765fc9')
+
+build() {
+  cd "$srcdir/$pkgname-${pkgver/_/-}"
+  ./configure \
+   --prefix=/usr \
+   --localstatedir=/var \
+   --libexecdir=/usr/bin \
+   --sysconfdir=/etc \
+   --disable-apparmor \
+   --disable-doc
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-${pkgver/_/-}"
+
+  make DESTDIR="$pkgdir" install
+  install -d -m755 "$pkgdir/var/lib/lxc"
+
+  cd doc
+  find . -type f -name '*.1' -exec install -D -m644 "{}" 
"$pkgdir/usr/share/man/man1/{}" \;
+  find . -type f -name '*.5' -exec install -D -m644 "{}" 
"$pkgdir/usr/share/man/man5/{}" \;
+  find . -type f -name '*.7' -exec install -D -m644 "{}" 
"$pkgdir/usr/share/man/man7/{}" \;
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2013-04-08 09:23:24 UTC (rev 87849)
+++ community-x86_64/PKGBUILD   2013-04-08 09:23:47 UTC (rev 87850)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Andrea Zucchelli 
-# Contributor: Jonathan Liu 
-# Maintainer: Jon Nordby 
-
-pkgname=lxc
-pkgver=0.8.0
-epoch=1
-pkgrel=2
-pkgdesc="Linux Containers"
-arch=('i686' 'x86_64')
-url="http://lxc.sourceforge.net/";
-depends=('bash' 'perl')
-license=('LGPL')
-source=("http://lxc.sourceforge.net/download/lxc/$pkgname-${pkgver/_/-}.tar.gz";)
-md5sums=('7304fa57146ce687f749b5df876bb20d')
-
-build() {
-  cd "$srcdir/$pkgname-${pkgver/_/-}"
-  ./configure \
-   --prefix=/usr \
-   --localstatedir=/var \
-   --libexecdir=/usr/bin \
-   --sysconfdir=/etc \
-   --disable-apparmor \
-   --disable-doc
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-${pkgver/_/-}"
-
-  make DESTDIR="$pkgdir" install
-  install -d -m755 "$pkgdir/var/lib/lxc"
-
-  cd doc
-  find . -type f -name '*.1' -exec install -D -m644 "{}" 
"$pkgdir/usr/share/man/man1/{}" \;
-  find . -type f -name '*.5' -exec install -D -m644 "{}" 
"$pkgdir/usr/share/man/man5/{}" \;
-  find . -type f -name '*.7' -exec install -D -m644 "{}" 
"$pkgdir/usr/share/man/man7/{}" \;
-}

Copied: lxc/repos/community-x86_64/PKGBUILD (from rev 87849, lxc/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   

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

2013-04-08 Thread Sergej Pupykin
Date: Monday, April 8, 2013 @ 11:23:52
  Author: spupykin
Revision: 87851

upgpkg: python-psycopg2 2.5-1

upd

Modified:
  python-psycopg2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-04-08 09:23:47 UTC (rev 87850)
+++ PKGBUILD2013-04-08 09:23:52 UTC (rev 87851)
@@ -5,15 +5,15 @@
 
 pkgbase=python-psycopg2
 pkgname=('python-psycopg2' 'python2-psycopg2')
-pkgver=2.4.6
+pkgver=2.5
 pkgrel=1
 pkgdesc="A PostgreSQL database adapter for the Python programming language."
 arch=('i686' 'x86_64')
 url="http://initd.org/psycopg/";
 license=('LGPL3')
 makedepends=('python2' 'python' 'postgresql-libs>=8.4.1')
-source=(http://initd.org/psycopg/tarballs/PSYCOPG-2-4/psycopg2-$pkgver.tar.gz)
-md5sums=('79d7f05e67bf70a0ecc6e9103ccece5f')
+source=(http://initd.org/psycopg/tarballs/PSYCOPG-2-5/psycopg2-$pkgver.tar.gz)
+md5sums=('facd82faa067e99b80146a0ee2f842f6')
 
 build() {
   cd "$srcdir/psycopg2-$pkgver"



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

2013-04-08 Thread Sergej Pupykin
Date: Monday, April 8, 2013 @ 11:24:14
  Author: spupykin
Revision: 87852

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

Added:
  python-psycopg2/repos/community-i686/ChangeLog
(from rev 87851, python-psycopg2/trunk/ChangeLog)
  python-psycopg2/repos/community-i686/PKGBUILD
(from rev 87851, python-psycopg2/trunk/PKGBUILD)
  python-psycopg2/repos/community-x86_64/ChangeLog
(from rev 87851, python-psycopg2/trunk/ChangeLog)
  python-psycopg2/repos/community-x86_64/PKGBUILD
(from rev 87851, python-psycopg2/trunk/PKGBUILD)
Deleted:
  python-psycopg2/repos/community-i686/ChangeLog
  python-psycopg2/repos/community-i686/PKGBUILD
  python-psycopg2/repos/community-x86_64/ChangeLog
  python-psycopg2/repos/community-x86_64/PKGBUILD

+
 /ChangeLog |   50 ++
 /PKGBUILD  |   70 +++
 community-i686/ChangeLog   |   25 ---
 community-i686/PKGBUILD|   35 -
 community-x86_64/ChangeLog |   25 ---
 community-x86_64/PKGBUILD  |   35 -
 6 files changed, 120 insertions(+), 120 deletions(-)

Deleted: community-i686/ChangeLog
===
--- community-i686/ChangeLog2013-04-08 09:23:52 UTC (rev 87851)
+++ community-i686/ChangeLog2013-04-08 09:24:14 UTC (rev 87852)
@@ -1,25 +0,0 @@
-
-2009-08-05  Douglas Soares de Andrade  
-
-   * Updated to: 2.0.11
-
-2009-03-24  Douglas Soares de Andrade  
-
-   * Updated for i686: 2.0.9
-
-2009-01-11  Douglas Soares de Andrade  
-
-   * Rebuilt for python 2.6
-
-2008-04-25  Mateusz Herych 
-
-   * Built for x86_64 - 2.0.7
-
-2008-04-23  Douglas Soares de Andrade  
-
-   * Built for i686 - 2.0.7
-
-2007-06-27  tardo  
-   
-   * Built for x86_64
-

Copied: python-psycopg2/repos/community-i686/ChangeLog (from rev 87851, 
python-psycopg2/trunk/ChangeLog)
===
--- community-i686/ChangeLog(rev 0)
+++ community-i686/ChangeLog2013-04-08 09:24:14 UTC (rev 87852)
@@ -0,0 +1,25 @@
+
+2009-08-05  Douglas Soares de Andrade  
+
+   * Updated to: 2.0.11
+
+2009-03-24  Douglas Soares de Andrade  
+
+   * Updated for i686: 2.0.9
+
+2009-01-11  Douglas Soares de Andrade  
+
+   * Rebuilt for python 2.6
+
+2008-04-25  Mateusz Herych 
+
+   * Built for x86_64 - 2.0.7
+
+2008-04-23  Douglas Soares de Andrade  
+
+   * Built for i686 - 2.0.7
+
+2007-06-27  tardo  
+   
+   * Built for x86_64
+

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-04-08 09:23:52 UTC (rev 87851)
+++ community-i686/PKGBUILD 2013-04-08 09:24:14 UTC (rev 87852)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Angel 'angvp' Velasquez 
-# Maintainer: Douglas Soares de Andrade 
-
-pkgbase=python-psycopg2
-pkgname=('python-psycopg2' 'python2-psycopg2')
-pkgver=2.4.6
-pkgrel=1
-pkgdesc="A PostgreSQL database adapter for the Python programming language."
-arch=('i686' 'x86_64')
-url="http://initd.org/psycopg/";
-license=('LGPL3')
-makedepends=('python2' 'python' 'postgresql-libs>=8.4.1')
-source=(http://initd.org/psycopg/tarballs/PSYCOPG-2-4/psycopg2-$pkgver.tar.gz)
-md5sums=('79d7f05e67bf70a0ecc6e9103ccece5f')
-
-build() {
-  cd "$srcdir/psycopg2-$pkgver"
-  sed -i 's/,PSYCOPG_DEBUG$//' setup.cfg
-}
-
-package_python-psycopg2() {
-  depends=('python' 'postgresql-libs>=8.4.1')
-
-  cd "$srcdir/psycopg2-$pkgver"
-  python setup.py install --root="$pkgdir"
-}
-
-package_python2-psycopg2() {
-  depends=('python2' 'postgresql-libs>=8.4.1')
-
-  cd "$srcdir/psycopg2-$pkgver"
-  python2 setup.py install --root="$pkgdir"
-}

Copied: python-psycopg2/repos/community-i686/PKGBUILD (from rev 87851, 
python-psycopg2/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-04-08 09:24:14 UTC (rev 87852)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Angel 'angvp' Velasquez 
+# Maintainer: Douglas Soares de Andrade 
+
+pkgbase=python-psycopg2
+pkgname=('python-psycopg2' 'python2-psycopg2')
+pkgver=2.5
+pkgrel=1
+pkgdesc="A PostgreSQL database adapter for the Python programming language."
+arch=('i686' 'x86_64')
+url="http://initd.org/psycopg/";
+license=('LGPL3')
+makedepends=('python2' 'python' 'postgresql-libs>=8.4.1')
+source=(http://initd.org/psycopg/tarballs/PSYCOPG-2-5/psycopg2-$pkgver.tar.gz)
+md5sums=('facd82faa067e99b80146a0ee2f842f6')
+
+build() {
+  cd "$srcdir/psycopg2-$pkgver"
+  sed -i 's/,PSYCOPG_DEBUG$//' setup.cfg
+}
+
+package_python-psycopg2() {
+  depends=('python' 'postgresql-libs>=8.4.1')
+
+  cd "$srcdir/psycopg2-$pkgver"
+  python setup.py

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

2013-04-08 Thread Sergej Pupykin
Date: Monday, April 8, 2013 @ 11:24:21
  Author: spupykin
Revision: 87853

upgpkg: trac 1.0.1-1

upd

Modified:
  trac/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-04-08 09:24:14 UTC (rev 87852)
+++ PKGBUILD2013-04-08 09:24:21 UTC (rev 87853)
@@ -3,8 +3,8 @@
 # Contributor: Rubin Simons 
 
 pkgname=trac
-pkgver=1.0
-pkgrel=3
+pkgver=1.0.1
+pkgrel=1
 pkgdesc="Trac Integrated SCM & Project Management using Apache & Subversion."
 arch=('any')
 url="http://trac.edgewall.org/";
@@ -18,7 +18,7 @@
tracd
tracd.service
tracd.conf)
-md5sums=('e07f052ec91efc1733cb9d49743ecb32'
+md5sums=('c869fa40e29fa4597e2c9c960de9f2f3'
  'af9a4064fd7a5759fee0fc288f749977'
  '907d7bfeb5131f1bf7444b64d18e7eb2'
  '6dc659f6a4c0247173ae7fab4d8fee6e'



[arch-commits] Commit in trac/repos/community-any (12 files)

2013-04-08 Thread Sergej Pupykin
Date: Monday, April 8, 2013 @ 11:24:47
  Author: spupykin
Revision: 87854

archrelease: copy trunk to community-any

Added:
  trac/repos/community-any/PKGBUILD
(from rev 87853, trac/trunk/PKGBUILD)
  trac/repos/community-any/license.txt
(from rev 87853, trac/trunk/license.txt)
  trac/repos/community-any/trac.install
(from rev 87853, trac/trunk/trac.install)
  trac/repos/community-any/tracd
(from rev 87853, trac/trunk/tracd)
  trac/repos/community-any/tracd.conf
(from rev 87853, trac/trunk/tracd.conf)
  trac/repos/community-any/tracd.service
(from rev 87853, trac/trunk/tracd.service)
Deleted:
  trac/repos/community-any/PKGBUILD
  trac/repos/community-any/license.txt
  trac/repos/community-any/trac.install
  trac/repos/community-any/tracd
  trac/repos/community-any/tracd.conf
  trac/repos/community-any/tracd.service

---+
 PKGBUILD  |   90 ++--
 license.txt   |   58 -
 trac.install  |   64 ++---
 tracd |   96 
 tracd.conf|   28 
 tracd.service |   22 ++--
 6 files changed, 179 insertions(+), 179 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2013-04-08 09:24:21 UTC (rev 87853)
+++ PKGBUILD2013-04-08 09:24:47 UTC (rev 87854)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Rubin Simons 
-
-pkgname=trac
-pkgver=1.0
-pkgrel=3
-pkgdesc="Trac Integrated SCM & Project Management using Apache & Subversion."
-arch=('any')
-url="http://trac.edgewall.org/";
-license=('BSD')
-depends=(python2 setuptools python2-genshi python2-babel)
-makedepends=(clearsilver)
-install=trac.install
-backup=("etc/conf.d/tracd.conf")
-source=(http://ftp.edgewall.com/pub/trac/Trac-$pkgver.tar.gz
-   license.txt
-   tracd
-   tracd.service
-   tracd.conf)
-md5sums=('e07f052ec91efc1733cb9d49743ecb32'
- 'af9a4064fd7a5759fee0fc288f749977'
- '907d7bfeb5131f1bf7444b64d18e7eb2'
- '6dc659f6a4c0247173ae7fab4d8fee6e'
- '67db44d661c725baf3057bd13534')
-
-build() {
-  cd $srcdir/Trac-$pkgver
-
-  # python2 fix
-  for file in trac/admin/console.py trac/test.py trac/tests/functional/*.py \
-  trac/web/*.py trac/wiki/default-pages/TracFastCgi \
-  contrib/cgi-bin/trac.{f,}cgi; do
-  sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_' $file
-  sed -i 's_#!/usr/bin/python_#!/usr/bin/python2_' $file
-  done
-
-  python2 setup.py install --prefix=/usr --root=$pkgdir
-  install -D -m755 ../tracd $pkgdir/etc/rc.d/tracd
-  install -D -m644 ../tracd.conf $pkgdir/etc/conf.d/tracd.conf
-  install -D -m644 ../license.txt $pkgdir/usr/share/licenses/trac/license.txt
-  install -D -m0755 contrib/cgi-bin/trac.cgi $pkgdir/usr/share/trac/trac.cgi
-  install -D -m0755 contrib/cgi-bin/trac.fcgi $pkgdir/usr/share/trac/trac.fcgi
-  install -Dm0644 $srcdir/tracd.service 
$pkgdir/usr/lib/systemd/system/tracd.service
-}

Copied: trac/repos/community-any/PKGBUILD (from rev 87853, trac/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-04-08 09:24:47 UTC (rev 87854)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Rubin Simons 
+
+pkgname=trac
+pkgver=1.0.1
+pkgrel=1
+pkgdesc="Trac Integrated SCM & Project Management using Apache & Subversion."
+arch=('any')
+url="http://trac.edgewall.org/";
+license=('BSD')
+depends=(python2 setuptools python2-genshi python2-babel)
+makedepends=(clearsilver)
+install=trac.install
+backup=("etc/conf.d/tracd.conf")
+source=(http://ftp.edgewall.com/pub/trac/Trac-$pkgver.tar.gz
+   license.txt
+   tracd
+   tracd.service
+   tracd.conf)
+md5sums=('c869fa40e29fa4597e2c9c960de9f2f3'
+ 'af9a4064fd7a5759fee0fc288f749977'
+ '907d7bfeb5131f1bf7444b64d18e7eb2'
+ '6dc659f6a4c0247173ae7fab4d8fee6e'
+ '67db44d661c725baf3057bd13534')
+
+package() {
+  cd $srcdir/Trac-$pkgver
+
+  # python2 fix
+  for file in trac/admin/console.py trac/test.py trac/tests/functional/*.py \
+  trac/web/*.py trac/wiki/default-pages/TracFastCgi \
+  contrib/cgi-bin/trac.{f,}cgi; do
+  sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_' $file
+  sed -i 's_#!/usr/bin/python_#!/usr/bin/python2_' $file
+  done
+
+  python2 setup.py install --prefix=/usr --root=$pkgdir
+  install -D -m755 ../tracd $pkgdir/etc/rc.d/tracd
+  install -D -m644 ../tracd.conf $pkgdir/etc/conf.d/tracd.conf
+  install -D -m644 ../license.txt $pkgdir/usr/share/licenses/trac/license.txt
+  install -D -m0755 contrib/cgi-bin/trac.cgi $pkgdir/usr/share/trac/trac.cgi
+  install -D -m0755 contrib/cgi-bin/trac.fcgi $pkgdir/usr/share/trac/trac.fcgi
+  install -Dm0644 $srcdir/tracd.serv

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

2013-04-08 Thread Sergej Pupykin
Date: Monday, April 8, 2013 @ 12:04:54
  Author: spupykin
Revision: 87867

upgpkg: squid 3.3.2-2

upd

Modified:
  squid/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-04-08 09:34:56 UTC (rev 87866)
+++ PKGBUILD2013-04-08 10:04:54 UTC (rev 87867)
@@ -6,7 +6,7 @@
 
 pkgname=squid
 pkgver=3.3.2
-pkgrel=1
+pkgrel=2
 pkgdesc='Full-featured Web proxy cache server'
 arch=('x86_64' 'i686')
 url='http://www.squid-cache.org'
@@ -76,7 +76,8 @@
 --enable-arp-acl \
 --with-default-user=proxy \
 --enable-async-io \
---enable-truncate
+--enable-truncate \
+--enable-icap-client
   make
 }
 



[arch-commits] Commit in squid/repos (28 files)

2013-04-08 Thread Sergej Pupykin
Date: Monday, April 8, 2013 @ 12:05:32
  Author: spupykin
Revision: 87868

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

Added:
  squid/repos/community-i686/PKGBUILD
(from rev 87867, squid/trunk/PKGBUILD)
  squid/repos/community-i686/squid
(from rev 87867, squid/trunk/squid)
  squid/repos/community-i686/squid.conf.d
(from rev 87867, squid/trunk/squid.conf.d)
  squid/repos/community-i686/squid.cron
(from rev 87867, squid/trunk/squid.cron)
  squid/repos/community-i686/squid.install
(from rev 87867, squid/trunk/squid.install)
  squid/repos/community-i686/squid.pam
(from rev 87867, squid/trunk/squid.pam)
  squid/repos/community-i686/squid.service
(from rev 87867, squid/trunk/squid.service)
  squid/repos/community-x86_64/PKGBUILD
(from rev 87867, squid/trunk/PKGBUILD)
  squid/repos/community-x86_64/squid
(from rev 87867, squid/trunk/squid)
  squid/repos/community-x86_64/squid.conf.d
(from rev 87867, squid/trunk/squid.conf.d)
  squid/repos/community-x86_64/squid.cron
(from rev 87867, squid/trunk/squid.cron)
  squid/repos/community-x86_64/squid.install
(from rev 87867, squid/trunk/squid.install)
  squid/repos/community-x86_64/squid.pam
(from rev 87867, squid/trunk/squid.pam)
  squid/repos/community-x86_64/squid.service
(from rev 87867, squid/trunk/squid.service)
Deleted:
  squid/repos/community-i686/PKGBUILD
  squid/repos/community-i686/squid
  squid/repos/community-i686/squid.conf.d
  squid/repos/community-i686/squid.cron
  squid/repos/community-i686/squid.install
  squid/repos/community-i686/squid.pam
  squid/repos/community-i686/squid.service
  squid/repos/community-x86_64/PKGBUILD
  squid/repos/community-x86_64/squid
  squid/repos/community-x86_64/squid.conf.d
  squid/repos/community-x86_64/squid.cron
  squid/repos/community-x86_64/squid.install
  squid/repos/community-x86_64/squid.pam
  squid/repos/community-x86_64/squid.service

+
 /PKGBUILD  |  194 +++
 /squid |   98 +++
 /squid.conf.d  |8 +
 /squid.cron|   18 +++
 /squid.install |   52 ++
 /squid.pam |8 +
 /squid.service |   26 +
 community-i686/PKGBUILD|   96 ---
 community-i686/squid   |   49 -
 community-i686/squid.conf.d|4 
 community-i686/squid.cron  |9 -
 community-i686/squid.install   |   26 -
 community-i686/squid.pam   |4 
 community-i686/squid.service   |   13 --
 community-x86_64/PKGBUILD  |   96 ---
 community-x86_64/squid |   49 -
 community-x86_64/squid.conf.d  |4 
 community-x86_64/squid.cron|9 -
 community-x86_64/squid.install |   26 -
 community-x86_64/squid.pam |4 
 community-x86_64/squid.service |   13 --
 21 files changed, 404 insertions(+), 402 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-04-08 10:04:54 UTC (rev 87867)
+++ community-i686/PKGBUILD 2013-04-08 10:05:32 UTC (rev 87868)
@@ -1,96 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Mark Coolen 
-# Contributor: Tom Newsom 
-# Contributor: Kevin Piche 
-
-pkgname=squid
-pkgver=3.3.2
-pkgrel=1
-pkgdesc='Full-featured Web proxy cache server'
-arch=('x86_64' 'i686')
-url='http://www.squid-cache.org'
-depends=('openssl' 'pam' 'cron' 'perl' 'libltdl')
-makedepends=('libcap')
-license=('GPL')
-options=('emptydirs')
-backup=('etc/squid/squid.conf'
-'etc/squid/mime.conf'
-'etc/conf.d/squid')
-install=$pkgname.install
-source=("http://www.squid-cache.org/Versions/v3/3.3/$pkgname-$pkgver.tar.bz2";
-'squid'
-'squid.conf.d'
-'squid.pam'
-'squid.cron'
-'squid.service')
-md5sums=('fedbad5be528bcf3e632538b11e0cc19'
- 'e90895ce22c0b618c89a46a9a181fe6c'
- '2383772ef94efddc7b920628bc7ac5b0'
- '270977cdd9b47ef44c0c427ab9034777'
- 'b499c2b725aefd7bd60bec2f1a9de392'
- '20e00e1aa1198786795f3da32db3c1d8')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  # gcc 4.6 doesn't support -fhuge-objects.
-  sed '/^HUGE_OBJECT_FLAG=/ s/"-fhuge-objects"//' -i configure
-
-  # fix cache_dir, cache_dir size, and effective group.
-  sed '/^DEFAULT_SWAP_DIR/ s@/cache@/cache/squid@' -i src/Makefile.in
-  sed '/^#cache_dir/ s/100/256/
-   /^NAME: cache_effective_group/ {n;n;s/none/proxy/}' -i src/cf.data.pre
-
-  sed -i '1,1i#include ' 
helpers/external_acl/file_userip/ext_file_userip_acl.cc
-
-  ./configure \
---prefix=/usr \
---datadir=/usr/share/squid \
---sysconfdir=/etc/squid \
---libexecdir=/usr/lib/squid \
---localstatedir=/var \
---with-logdir=/var/log/squid \
---with-pidfile=/run/squid.pid \
---enable-auth \
---enable-

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

2013-04-08 Thread Stéphane Gaudreault
Date: Monday, April 8, 2013 @ 12:27:25
  Author: stephane
Revision: 182150

db-move: moved python from [testing] to [extra] (i686, x86_64)

Added:
  python/repos/extra-i686/PKGBUILD
(from rev 182149, python/repos/testing-i686/PKGBUILD)
  python/repos/extra-x86_64/PKGBUILD
(from rev 182149, python/repos/testing-x86_64/PKGBUILD)
Deleted:
  python/repos/extra-i686/PKGBUILD
  python/repos/extra-x86_64/PKGBUILD
  python/repos/testing-i686/
  python/repos/testing-x86_64/

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-04-08 09:28:45 UTC (rev 182149)
+++ extra-i686/PKGBUILD 2013-04-08 10:27:25 UTC (rev 182150)
@@ -1,75 +0,0 @@
-# $Id$
-# Maintainer: Stéphane Gaudreault 
-# Contributor: Allan McRae 
-# Contributor: Jason Chu 
-
-pkgname=python
-pkgver=3.3.0
-pkgrel=3
-_pybasever=3.3
-pkgdesc="Next generation of the python high-level scripting language"
-arch=('i686' 'x86_64')
-license=('custom')
-url="http://www.python.org/";
-depends=('expat' 'bzip2' 'gdbm' 'openssl' 'libffi' 'zlib')
-makedepends=('tk>=8.6.0' 'sqlite' 'valgrind' 'bluez')
-optdepends=('tk: for tkinter' 'sqlite')
-provides=('python3')
-replaces=('python3')
-options=('!makeflags')
-source=(http://www.python.org/ftp/python/${pkgver%rc*}/Python-${pkgver}.tar.xz)
-sha1sums=('833d73565e1b665f1878504081dc985a5a06e46a')
-
-build() {
-  cd "${srcdir}/Python-${pkgver}"
-
-  # FS#23997
-  sed -i -e "s|^#.* /usr/local/bin/python|#!/usr/bin/python|" Lib/cgi.py
-
-  # Ensure that we are using the system copy of various libraries (expat, zlib 
and libffi),
-  # rather than copies shipped in the tarball
-  rm -r Modules/expat
-  rm -r Modules/zlib
-  rm -r Modules/_ctypes/{darwin,libffi}*
-
-  ./configure --prefix=/usr \
-  --enable-shared \
-  --with-threads \
-  --with-computed-gotos \
-  --enable-ipv6 \
-  --with-valgrind \
-  --with-system-expat \
-  --with-dbmliborder=gdbm:ndbm \
-  --with-system-ffi
-
-  make
-}
-
-check() {
-  cd "${srcdir}/Python-${pkgver}"
-  LD_LIBRARY_PATH="${srcdir}/Python-${pkgver}":${LD_LIBRARY_PATH} \
- "${srcdir}/Python-${pkgver}/python" -m test.regrtest -x test_distutils 
test_site \
- test_urllib test_uuid test_pydoc test_logging
-}
-
-package() {
-  cd "${srcdir}/Python-${pkgver}"
-  make DESTDIR="${pkgdir}" install maninstall
-
-  # Why are these not done by default...
-  ln -sf python3   "${pkgdir}/usr/bin/python"
-  ln -sf python3-config"${pkgdir}/usr/bin/python-config"
-  ln -sf idle3 "${pkgdir}/usr/bin/idle"
-  ln -sf pydoc3"${pkgdir}/usr/bin/pydoc"
-  ln -sf python${_pybasever}.1 "${pkgdir}/usr/share/man/man1/python3.1"
-
-  # Fix FS#22552
-  ln -sf ../../libpython${_pybasever}m.so \
-
"${pkgdir}/usr/lib/python${_pybasever}/config-${_pybasever}m/libpython${_pybasever}m.so"
-
-  # Clean-up reference to build directory
-  sed -i "s|$srcdir/Python-${pkgver}:||" 
"$pkgdir/usr/lib/python${_pybasever}/config-${_pybasever}m/Makefile"
-
-  # License
-  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: python/repos/extra-i686/PKGBUILD (from rev 182149, 
python/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-04-08 10:27:25 UTC (rev 182150)
@@ -0,0 +1,75 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault 
+# Contributor: Allan McRae 
+# Contributor: Jason Chu 
+
+pkgname=python
+pkgver=3.3.1
+pkgrel=1
+_pybasever=3.3
+pkgdesc="Next generation of the python high-level scripting language"
+arch=('i686' 'x86_64')
+license=('custom')
+url="http://www.python.org/";
+depends=('expat' 'bzip2' 'gdbm' 'openssl' 'libffi' 'zlib')
+makedepends=('tk>=8.6.0' 'sqlite' 'valgrind' 'bluez')
+optdepends=('tk: for tkinter' 'sqlite')
+provides=('python3')
+replaces=('python3')
+options=('!makeflags')
+source=(http://www.python.org/ftp/python/${pkgver%rc*}/Python-${pkgver}.tar.xz)
+sha1sums=('393d7302c48bc911cd7faa7fa9b5fbcb9919bddc')
+
+build() {
+  cd "${srcdir}/Python-${pkgver}"
+
+  # FS#23997
+  sed -i -e "s|^#.* /usr/local/bin/python|#!/usr/bin/python|" Lib/cgi.py
+
+  # Ensure that we are using the system copy of various libraries (expat, zlib 
and libffi),
+  # rather than copies shipped in the tarball
+  rm -r Modules/expat
+  rm -r Modules/zlib
+  rm -r Modules/_ctypes/{darwin,libffi}*
+
+  ./configure --prefix=/usr \
+  --enable-shared \
+  --with-threads \
+  --with-computed-gotos \
+  --enable-ipv6 \
+  --with-v

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

2013-04-08 Thread Stéphane Gaudreault
Date: Monday, April 8, 2013 @ 12:27:26
  Author: stephane
Revision: 182151

db-move: moved python2 from [testing] to [extra] (i686, x86_64)

Added:
  python2/repos/extra-i686/PKGBUILD
(from rev 182149, python2/repos/testing-i686/PKGBUILD)
  python2/repos/extra-x86_64/PKGBUILD
(from rev 182149, python2/repos/testing-x86_64/PKGBUILD)
Deleted:
  python2/repos/extra-i686/PKGBUILD
  python2/repos/extra-x86_64/PKGBUILD
  python2/repos/testing-i686/
  python2/repos/testing-x86_64/

---+
 /PKGBUILD |  176 
 extra-i686/PKGBUILD   |   84 --
 extra-x86_64/PKGBUILD |   84 --
 3 files changed, 176 insertions(+), 168 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-04-08 10:27:25 UTC (rev 182150)
+++ extra-i686/PKGBUILD 2013-04-08 10:27:26 UTC (rev 182151)
@@ -1,84 +0,0 @@
-# $Id$
-# Maintainer: Stéphane Gaudreault 
-# Contributer: Allan McRae 
-# Contributer: Jason Chu 
-
-pkgname=python2
-pkgver=2.7.3
-pkgrel=4
-_pybasever=2.7
-pkgdesc="A high-level scripting language"
-arch=('i686' 'x86_64')
-license=('PSF')
-url="http://www.python.org/";
-depends=('bzip2' 'gdbm' 'openssl' 'zlib' 'expat' 'sqlite' 'libffi')
-makedepends=('tk>=8.6.0' 'bluez')
-optdepends=('tk: for IDLE')
-conflicts=('python<3')
-options=('!makeflags')
-source=(http://www.python.org/ftp/python/${pkgver%rc?}/Python-${pkgver}.tar.xz)
-sha1sums=('b2b0ada7ebed4a8204a855193afbdb3aa3308357')
-
-build() {
-  cd "${srcdir}/Python-${pkgver}"
-
-  # Temporary workaround for FS#22322
-  # See http://bugs.python.org/issue10835 for upstream report
-  sed -i "/progname =/s/python/python${_pybasever}/" Python/pythonrun.c
-
-  # Enable built-in SQLite module to load extensions (fix FS#22122)
-  sed -i "/SQLITE_OMIT_LOAD_EXTENSION/d" setup.py
-
-  # FS#23997
-  sed -i -e "s|^#.* /usr/local/bin/python|#!/usr/bin/python2|" Lib/cgi.py
-
-  # Ensure that we are using the system copy of various libraries (expat, zlib 
and libffi),
-  # rather than copies shipped in the tarball
-  rm -r Modules/expat
-  rm -r Modules/zlib
-  rm -r Modules/_ctypes/{darwin,libffi}*
-
-  export OPT="${CFLAGS}"
-  ./configure --prefix=/usr --enable-shared --with-threads --enable-ipv6 \
-  --enable-unicode=ucs4 --with-system-expat --with-system-ffi \
-  --with-dbmliborder=gdbm:ndbm
-
-  make
-}
-
-package() {
-  cd "${srcdir}/Python-${pkgver}"
-  make DESTDIR="${pkgdir}" altinstall maninstall
-
-  ln -sf python${_pybasever}"${pkgdir}/usr/bin/python2"
-  ln -sf python${_pybasever}-config "${pkgdir}/usr/bin/python2-config"
-  ln -sf python${_pybasever}.1  "${pkgdir}/usr/share/man/man1/python2.1"
-
-  ln -sf ../../libpython${_pybasever}.so \
-"${pkgdir}/usr/lib/python${_pybasever}/config/libpython${_pybasever}.so"
-
-  mv "${pkgdir}/usr/bin/smtpd.py" "${pkgdir}/usr/lib/python${_pybasever}/"
-
-  # some useful "stuff"
-  install -dm755 "${pkgdir}"/usr/lib/python${_pybasever}/Tools/{i18n,scripts}
-  install -m755 Tools/i18n/{msgfmt,pygettext}.py \
-"${pkgdir}/usr/lib/python${_pybasever}/Tools/i18n/"
-  install -m755 Tools/scripts/{README,*py} \
-"${pkgdir}/usr/lib/python${_pybasever}/Tools/scripts/"
-
-  # fix conflicts with python
-  mv "${pkgdir}"/usr/bin/idle{,2}
-  mv "${pkgdir}"/usr/bin/pydoc{,2}
-  mv "${pkgdir}"/usr/bin/2to3{,-2.7}
-
-  # clean up #!s
-  find "${pkgdir}/usr/lib/python${_pybasever}/" -name '*.py' | \
-xargs sed -i "s|#[ ]*![ ]*/usr/bin/env python$|#!/usr/bin/env python2|"
-
-  # clean-up reference to build directory
-  sed -i "s#${srcdir}/Python-${pkgver}:##" \
-"${pkgdir}/usr/lib/python${_pybasever}/config/Makefile"
-
-  # license
-  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: python2/repos/extra-i686/PKGBUILD (from rev 182149, 
python2/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-04-08 10:27:26 UTC (rev 182151)
@@ -0,0 +1,88 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault 
+# Contributer: Allan McRae 
+# Contributer: Jason Chu 
+
+pkgname=python2
+pkgver=2.7.4
+pkgrel=1
+_pybasever=2.7
+pkgdesc="A high-level scripting language"
+arch=('i686' 'x86_64')
+license=('PSF')
+url="http://www.python.org/";
+depends=('bzip2' 'gdbm' 'openssl' 'zlib' 'expat' 'sqlite' 'libffi')
+makedepends=('tk>=8.6.0' 'bluez')
+optdepends=('tk: for IDLE')
+conflicts=('python<3')
+options=('!makeflags')
+source=(http://www.python.org/ftp/python/${pkgver%rc?}/Python-${pkgver}.tar.xz)
+sha1sums=('08e78ebeb6d9c799644f6d787ca424291c0fe03e')
+
+build() {
+  cd "${srcdir}/Python-${pkgver}"
+
+  # Temporary workaround for FS#22322
+  # See http://bugs.python.org/issue10835 for upstream report
+  sed -i "/progname =/s/python/python${_pybasever}/" Python/pythonrun.c
+

[arch-commits] Commit in packagekit/trunk (PKGBUILD alpm.patch)

2013-04-08 Thread Jonathan Conder
Date: Monday, April 8, 2013 @ 13:30:07
  Author: jconder
Revision: 87869

upgpkg: packagekit 0.7.6-7

fix build error

Modified:
  packagekit/trunk/PKGBUILD
  packagekit/trunk/alpm.patch

+
 PKGBUILD   |4 ++--
 alpm.patch |   22 --
 2 files changed, 14 insertions(+), 12 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-04-08 10:05:32 UTC (rev 87868)
+++ PKGBUILD2013-04-08 11:30:07 UTC (rev 87869)
@@ -3,7 +3,7 @@
 pkgbase='packagekit'
 pkgname=('packagekit' 'packagekit-qt2' 'python2-packagekit')
 pkgver=0.7.6
-pkgrel=6
+pkgrel=7
 pkgdesc="A system designed to make installation and updates of packages 
easier."
 arch=('i686' 'x86_64')
 url="http://www.packagekit.org";
@@ -18,7 +18,7 @@
'libarchive.patch')
 sha256sums=('82c0a553075d49add3c4f58e6e93f7f3613938809a4b8e36f46476e86981b45d'
 'd0ee8580202a878571470017731299c63e5c5120afe881bb41b9544322b8'
-   '067f39917f5442b8146c793b62f86f66fc8a4c7e391c0f3219d13f98d45ba630'
+   'd27c77d3c0e2932fff2916fedcae011bd283904ef7c329dd0dc05163b58d7415'
'0d3798c8992afdc0930aa271b3e44deb55c046ab4adee25b4ec4c33bcdd950e2')
 
 build() {

Modified: alpm.patch
===
--- alpm.patch  2013-04-08 10:05:32 UTC (rev 87868)
+++ alpm.patch  2013-04-08 11:30:07 UTC (rev 87869)
@@ -40,7 +40,7 @@
 alpm_strerror (errno));
}
 diff --git a/backends/alpm/pk-backend-config.c 
b/backends/alpm/pk-backend-config.c
-index c8fd13b..1a82637 100644
+index c8fd13b..03adb47 100644
 --- a/backends/alpm/pk-backend-config.c
 +++ b/backends/alpm/pk-backend-config.c
 @@ -33,35 +33,32 @@
@@ -357,14 +357,14 @@
 +
 +  return g_strcmp0 (section->name, name);
 +}
-+
+ 
+-  if (alpm_list_find_str (config->repos, repo) == NULL) {
+-  config->repos = alpm_list_add (config->repos, g_strdup (repo));
 +static PkBackendConfigSection *
 +pk_backend_config_enter_section (PkBackendConfig *config, const gchar *name)
 +{
 +  PkBackendConfigSection *section;
- 
--  if (alpm_list_find_str (config->repos, repo) == NULL) {
--  config->repos = alpm_list_add (config->repos, g_strdup (repo));
++
 +  g_return_val_if_fail (config != NULL, NULL);
 +  g_return_val_if_fail (name != NULL, NULL);
 +
@@ -426,8 +426,8 @@
  {
 -  alpm_siglevel_t *level;
 -
-   g_return_val_if_fail (config != NULL, FALSE);
-   g_return_val_if_fail (section != NULL, FALSE);
+-  g_return_val_if_fail (config != NULL, FALSE);
+-  g_return_val_if_fail (section != NULL, FALSE);
 -  g_return_val_if_fail (list != NULL, FALSE);
 -
 -  level = g_hash_table_lookup (config->levels, section);
@@ -439,8 +439,7 @@
 -
 -  while (TRUE) {
 -  gboolean package = TRUE, database = TRUE;
-+  g_return_val_if_fail (words != NULL, FALSE);
- 
+-
 -  if (g_str_has_prefix (list, "Package")) {
 -  database = FALSE;
 -  list += 7;
@@ -506,7 +505,10 @@
 -  ++list;
 -  }
 -  }
--
++  g_return_if_fail (config != NULL);
++  g_return_if_fail (section != NULL);
++  g_return_if_fail (words != NULL);
+ 
 -  return TRUE;
 +  section->siglevels = alpm_list_add_words (section->siglevels, words);
  }



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

2013-04-08 Thread Jonathan Conder
Date: Monday, April 8, 2013 @ 13:46:17
  Author: jconder
Revision: 87870

upgpkg: packagekit 0.7.6-8

fix build error

Modified:
  packagekit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-04-08 11:30:07 UTC (rev 87869)
+++ PKGBUILD2013-04-08 11:46:17 UTC (rev 87870)
@@ -3,7 +3,7 @@
 pkgbase='packagekit'
 pkgname=('packagekit' 'packagekit-qt2' 'python2-packagekit')
 pkgver=0.7.6
-pkgrel=7
+pkgrel=8
 pkgdesc="A system designed to make installation and updates of packages 
easier."
 arch=('i686' 'x86_64')
 url="http://www.packagekit.org";



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

2013-04-08 Thread Evangelos Foutras
Date: Monday, April 8, 2013 @ 13:52:59
  Author: foutrelis
Revision: 182152

upgpkg: chromium 26.0.1410.43-3

Disable tcmalloc to avoid zombie processes/hangs on NVIDIA systems (FS#34128, 
upstream issue 177218).

Modified:
  chromium/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-04-08 10:27:26 UTC (rev 182151)
+++ PKGBUILD2013-04-08 11:52:59 UTC (rev 182152)
@@ -6,7 +6,7 @@
 
 pkgname=chromium
 pkgver=26.0.1410.43
-pkgrel=2
+pkgrel=3
 pkgdesc="The open-source project behind Google Chrome, an attempt at creating 
a safer, faster, and more stable browser"
 arch=('i686' 'x86_64')
 url="http://www.chromium.org/";
@@ -96,6 +96,7 @@
 -Dlinux_strip_binary=1 \
 -Dlinux_use_gold_binary=0 \
 -Dlinux_use_gold_flags=0 \
+-Dlinux_use_tcmalloc=0 \
 -Drelease_extra_cflags="$CFLAGS" \
 -Dffmpeg_branding=Chrome \
 -Dproprietary_codecs=1 \



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

2013-04-08 Thread Evangelos Foutras
Date: Monday, April 8, 2013 @ 13:53:45
  Author: foutrelis
Revision: 182153

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

Added:
  chromium/repos/extra-i686/PKGBUILD
(from rev 182152, chromium/trunk/PKGBUILD)
  chromium/repos/extra-i686/chromium-20.0.1132.57-glib-2.16-use-siginfo_t.patch
(from rev 182152, 
chromium/trunk/chromium-20.0.1132.57-glib-2.16-use-siginfo_t.patch)
  
chromium/repos/extra-i686/chromium-25.0.1364.152-fix-crash-when-cups-is-down.patch
(from rev 182152, 
chromium/trunk/chromium-25.0.1364.152-fix-crash-when-cups-is-down.patch)
  chromium/repos/extra-i686/chromium-26.0.1410.43-audio-buffer-size.patch
(from rev 182152, 
chromium/trunk/chromium-26.0.1410.43-audio-buffer-size.patch)
  chromium/repos/extra-i686/chromium-26.0.1410.43-speechd-0.8.patch
(from rev 182152, chromium/trunk/chromium-26.0.1410.43-speechd-0.8.patch)
  chromium/repos/extra-i686/chromium-ppapi-r0.patch
(from rev 182152, chromium/trunk/chromium-ppapi-r0.patch)
  chromium/repos/extra-i686/chromium.default
(from rev 182152, chromium/trunk/chromium.default)
  chromium/repos/extra-i686/chromium.desktop
(from rev 182152, chromium/trunk/chromium.desktop)
  chromium/repos/extra-i686/chromium.install
(from rev 182152, chromium/trunk/chromium.install)
  chromium/repos/extra-i686/chromium.sh
(from rev 182152, chromium/trunk/chromium.sh)
  chromium/repos/extra-x86_64/PKGBUILD
(from rev 182152, chromium/trunk/PKGBUILD)
  
chromium/repos/extra-x86_64/chromium-20.0.1132.57-glib-2.16-use-siginfo_t.patch
(from rev 182152, 
chromium/trunk/chromium-20.0.1132.57-glib-2.16-use-siginfo_t.patch)
  
chromium/repos/extra-x86_64/chromium-25.0.1364.152-fix-crash-when-cups-is-down.patch
(from rev 182152, 
chromium/trunk/chromium-25.0.1364.152-fix-crash-when-cups-is-down.patch)
  chromium/repos/extra-x86_64/chromium-26.0.1410.43-audio-buffer-size.patch
(from rev 182152, 
chromium/trunk/chromium-26.0.1410.43-audio-buffer-size.patch)
  chromium/repos/extra-x86_64/chromium-26.0.1410.43-speechd-0.8.patch
(from rev 182152, chromium/trunk/chromium-26.0.1410.43-speechd-0.8.patch)
  chromium/repos/extra-x86_64/chromium-ppapi-r0.patch
(from rev 182152, chromium/trunk/chromium-ppapi-r0.patch)
  chromium/repos/extra-x86_64/chromium.default
(from rev 182152, chromium/trunk/chromium.default)
  chromium/repos/extra-x86_64/chromium.desktop
(from rev 182152, chromium/trunk/chromium.desktop)
  chromium/repos/extra-x86_64/chromium.install
(from rev 182152, chromium/trunk/chromium.install)
  chromium/repos/extra-x86_64/chromium.sh
(from rev 182152, chromium/trunk/chromium.sh)
Deleted:
  chromium/repos/extra-i686/PKGBUILD
  chromium/repos/extra-i686/chromium-20.0.1132.57-glib-2.16-use-siginfo_t.patch
  
chromium/repos/extra-i686/chromium-25.0.1364.152-fix-crash-when-cups-is-down.patch
  chromium/repos/extra-i686/chromium-26.0.1410.43-audio-buffer-size.patch
  chromium/repos/extra-i686/chromium-26.0.1410.43-speechd-0.8.patch
  chromium/repos/extra-i686/chromium-ppapi-r0.patch
  chromium/repos/extra-i686/chromium.default
  chromium/repos/extra-i686/chromium.desktop
  chromium/repos/extra-i686/chromium.install
  chromium/repos/extra-i686/chromium.sh
  chromium/repos/extra-x86_64/PKGBUILD
  
chromium/repos/extra-x86_64/chromium-20.0.1132.57-glib-2.16-use-siginfo_t.patch
  
chromium/repos/extra-x86_64/chromium-25.0.1364.152-fix-crash-when-cups-is-down.patch
  chromium/repos/extra-x86_64/chromium-26.0.1410.43-audio-buffer-size.patch
  chromium/repos/extra-x86_64/chromium-26.0.1410.43-speechd-0.8.patch
  chromium/repos/extra-x86_64/chromium-ppapi-r0.patch
  chromium/repos/extra-x86_64/chromium.default
  chromium/repos/extra-x86_64/chromium.desktop
  chromium/repos/extra-x86_64/chromium.install
  chromium/repos/extra-x86_64/chromium.sh

---+
 /PKGBUILD |  332 
++
 /chromium-20.0.1132.57-glib-2.16-use-siginfo_t.patch  |   70 ++
 /chromium-25.0.1364.152-fix-crash-when-cups-is-down.patch |  136 

 /chromium-26.0.1410.43-audio-buffer-size.patch|   24 
 /chromium-26.0.1410.43-speechd-0.8.patch  |   22 
 /chromium-ppapi-r0.patch  |   22 
 /chromium.default |8 
 /chromium.desktop |  226 
++
 /chromium.install |   24 
 /chromium.sh  |   32 
 extra-i686/PKGBUILD   |  165 

 extra-i686/chromium-20.0.1132.57-glib-2.16-use-siginfo_t.patch|   35 -
 extra-i686/chromium-25.0.1364.152-fix-crash-when-cups-is-down.patch   |   68 --
 extra-i686/chromium-26.0.1410.43-aud

[arch-commits] Commit in packagekit/repos (13 files)

2013-04-08 Thread Jonathan Conder
Date: Monday, April 8, 2013 @ 13:55:39
  Author: jconder
Revision: 87871

Added:
  packagekit/repos/community-i686/adopt.patch
(from rev 87869, packagekit/trunk/adopt.patch)
  packagekit/repos/community-i686/libarchive.patch
(from rev 87869, packagekit/trunk/libarchive.patch)
  packagekit/repos/community-i686/packagekit.install
(from rev 87869, packagekit/trunk/packagekit.install)
  packagekit/repos/community-x86_64/adopt.patch
(from rev 87869, packagekit/trunk/adopt.patch)
  packagekit/repos/community-x86_64/libarchive.patch
(from rev 87869, packagekit/trunk/libarchive.patch)
  packagekit/repos/community-x86_64/packagekit.install
(from rev 87869, packagekit/trunk/packagekit.install)
Deleted:
  packagekit/repos/community-i686/PKGBUILD
  packagekit/repos/community-i686/adopt.patch
  packagekit/repos/community-i686/libarchive.patch
  packagekit/repos/community-i686/packagekit.install
  packagekit/repos/community-x86_64/adopt.patch
  packagekit/repos/community-x86_64/libarchive.patch
  packagekit/repos/community-x86_64/packagekit.install

-+
 /adopt.patch|   26 
 /libarchive.patch   |   78 +
 /packagekit.install |   22 +++
 community-i686/PKGBUILD |  104 --
 community-i686/adopt.patch  |   13 
 community-i686/libarchive.patch |   39 
 community-i686/packagekit.install   |   11 ---
 community-x86_64/adopt.patch|   13 
 community-x86_64/libarchive.patch   |   39 
 community-x86_64/packagekit.install |   11 ---
 10 files changed, 126 insertions(+), 230 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-04-08 11:46:17 UTC (rev 87870)
+++ community-i686/PKGBUILD 2013-04-08 11:55:39 UTC (rev 87871)
@@ -1,104 +0,0 @@
-# $Id$
-# Maintainer: Jonathan Conder 
-pkgbase='packagekit'
-pkgname=('packagekit' 'packagekit-qt2' 'python2-packagekit')
-pkgver=0.7.6
-pkgrel=6
-pkgdesc="A system designed to make installation and updates of packages 
easier."
-arch=('i686' 'x86_64')
-url="http://www.packagekit.org";
-license=('GPL')
-makedepends=('dbus-glib' 'gobject-introspection' 'gtk-doc' 'intltool'
- 'networkmanager' 'pacman'  'pm-utils' 'polkit' 'python2' 'qt4'
- 'shared-mime-info' 'sqlite' 'udev')
-options=('!libtool')
-source=("http://www.packagekit.org/releases/PackageKit-$pkgver.tar.xz";
-'adopt.patch'
-   'alpm.patch'
-   'libarchive.patch')
-sha256sums=('82c0a553075d49add3c4f58e6e93f7f3613938809a4b8e36f46476e86981b45d'
-'d0ee8580202a878571470017731299c63e5c5120afe881bb41b9544322b8'
-   '067f39917f5442b8146c793b62f86f66fc8a4c7e391c0f3219d13f98d45ba630'
-   '0d3798c8992afdc0930aa271b3e44deb55c046ab4adee25b4ec4c33bcdd950e2')
-
-build() {
-  cd "$srcdir/PackageKit-$pkgver"
-
-  sed -i 's@SUBDIRS = test@SUBDIRS =@' 'backends/Makefile.in'
-  sed -i 's@python @python2 @' 'lib/python/packagekit/Makefile.in'
-  sed -i 's@bin/python@bin/python2@' 'lib/python/packagekit/'*.py
-
-  patch -Np1 -i "$srcdir/adopt.patch"
-  patch -Np1 -i "$srcdir/alpm.patch"
-  patch -Np1 -i "$srcdir/libarchive.patch"
-
-  export PYTHON=/usr/bin/python2
-  ./autogen.sh --prefix=/usr \
-  --sysconfdir=/etc \
-  --localstatedir=/var \
-  --libexecdir=/usr/lib/PackageKit \
-  --enable-strict \
-  --disable-static \
-  --disable-gtk-doc \
-  --disable-tests \
-  --disable-local \
-  --disable-browser-plugin \
-  --disable-gstreamer-plugin \
-  --disable-gtk-module \
-  --disable-command-not-found \
-  --disable-cron \
-  --disable-debuginfo-install \
-  --enable-pm-utils \
-  --disable-dummy \
-  --enable-alpm \
-  --with-default-backend=alpm
-  make -s CFLAGS='-D_FILE_OFFSET_BITS=64 -O2 -Wno-unused-local-typedefs'
-}
-
-package_packagekit() {
-  backup=('var/lib/PackageKit/transactions.db'
-  'etc/PackageKit/alpm.d/pacman.conf'
-  'etc/PackageKit/alpm.d/repos.list')
-  depends=('dbus-glib' 'pacman>=4.1.0' 'pacman<4.2.0' 'polkit'
-   'shared-mime-info' 'sqlite' 'udev')
-  optdepends=('networkmanager')
-  install='packagekit.install'
-
-  cd "$srcdir/PackageKit-$pkgver"
-
-  make DESTDIR="$pkgdir" install
-
-  rm -rf "$pkgdir/usr/include/PackageKit/packagekit-qt"*
-  rm -rf "$pkgdir/usr/lib/libpackagekit-qt"*
-  rm -rf "$pkgdir/usr/lib/pkgconfig/packagekit-qt"*
-  rm -rf "$pkgdir/usr/lib/cmake"
-
-  rm -rf "$pkgdir/usr/lib/python"*
-  rm -rf "$pkgdir/usr/share/PackageKit/website"
-
-  mkdir -p "$pkgdir/usr/share/bash-completion/completions"
-  mv "$pkgdir/etc/bash_completion.d/pk-completion.bash" \
-  

[arch-commits] Commit in packagekit/repos/community-x86_64 (10 files)

2013-04-08 Thread Jonathan Conder
Date: Monday, April 8, 2013 @ 13:59:03
  Author: jconder
Revision: 87872

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

Added:
  packagekit/repos/community-x86_64/PKGBUILD
(from rev 87871, packagekit/trunk/PKGBUILD)
  packagekit/repos/community-x86_64/adopt.patch
(from rev 87871, packagekit/trunk/adopt.patch)
  packagekit/repos/community-x86_64/alpm.patch
(from rev 87871, packagekit/trunk/alpm.patch)
  packagekit/repos/community-x86_64/libarchive.patch
(from rev 87871, packagekit/trunk/libarchive.patch)
  packagekit/repos/community-x86_64/packagekit.install
(from rev 87871, packagekit/trunk/packagekit.install)
Deleted:
  packagekit/repos/community-x86_64/PKGBUILD
  packagekit/repos/community-x86_64/adopt.patch
  packagekit/repos/community-x86_64/alpm.patch
  packagekit/repos/community-x86_64/libarchive.patch
  packagekit/repos/community-x86_64/packagekit.install

+
 PKGBUILD   |  208 +--
 adopt.patch|   26 
 alpm.patch | 3224 +--
 libarchive.patch   |   78 -
 packagekit.install |   22 
 5 files changed, 1780 insertions(+), 1778 deletions(-)

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


[arch-commits] Commit in packagekit/repos (11 files)

2013-04-08 Thread Jonathan Conder
Date: Monday, April 8, 2013 @ 14:08:35
  Author: jconder
Revision: 87873

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

Added:
  packagekit/repos/community-i686/PKGBUILD
  packagekit/repos/community-x86_64/PKGBUILD
(from rev 87872, packagekit/trunk/PKGBUILD)
  packagekit/repos/community-x86_64/adopt.patch
(from rev 87872, packagekit/trunk/adopt.patch)
  packagekit/repos/community-x86_64/alpm.patch
(from rev 87872, packagekit/trunk/alpm.patch)
  packagekit/repos/community-x86_64/libarchive.patch
(from rev 87872, packagekit/trunk/libarchive.patch)
  packagekit/repos/community-x86_64/packagekit.install
(from rev 87872, packagekit/trunk/packagekit.install)
Deleted:
  packagekit/repos/community-x86_64/PKGBUILD
  packagekit/repos/community-x86_64/adopt.patch
  packagekit/repos/community-x86_64/alpm.patch
  packagekit/repos/community-x86_64/libarchive.patch
  packagekit/repos/community-x86_64/packagekit.install

-+
 /PKGBUILD   |  104 ++
 /adopt.patch|   13 
 /alpm.patch | 1613 ++
 /libarchive.patch   |   39 
 /packagekit.install |   11 
 community-i686/PKGBUILD |  104 ++
 community-x86_64/PKGBUILD   |  104 --
 community-x86_64/adopt.patch|   13 
 community-x86_64/alpm.patch | 1613 --
 community-x86_64/libarchive.patch   |   39 
 community-x86_64/packagekit.install |   11 
 11 files changed, 1884 insertions(+), 1780 deletions(-)

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


[arch-commits] Commit in packagekit/repos (community-i686 community-x86_64)

2013-04-08 Thread Jonathan Conder
Date: Monday, April 8, 2013 @ 14:10:55
  Author: jconder
Revision: 87874

start from scratch

Deleted:
  packagekit/repos/community-i686/
  packagekit/repos/community-x86_64/



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

2013-04-08 Thread Sergej Pupykin
Date: Monday, April 8, 2013 @ 14:23:47
  Author: spupykin
Revision: 87875

Modified:
  couchdb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-04-08 12:10:55 UTC (rev 87874)
+++ PKGBUILD2013-04-08 12:23:47 UTC (rev 87875)
@@ -16,7 +16,7 @@
 backup=('etc/couchdb/local.ini'
'etc/conf.d/couchdb'
'etc/logrotate.d/couchdb')
-source=("http://apache-mirror.rbc.ru/pub/apache/couchdb/$pkgver/apache-couchdb-$pkgver.tar.gz"{,.asc}
+source=("http://apache-mirror.rbc.ru/pub/apache/couchdb/source/$pkgver/apache-couchdb-$pkgver.tar.gz"{,.asc}
"couchdb.service"
"couchdb.tmpfiles"
"couchdb.rc"



[arch-commits] Commit in couchdb/repos/community-i686 (12 files)

2013-04-08 Thread Sergej Pupykin
Date: Monday, April 8, 2013 @ 14:24:19
  Author: spupykin
Revision: 87876

archrelease: copy trunk to community-i686

Added:
  couchdb/repos/community-i686/PKGBUILD
(from rev 87875, couchdb/trunk/PKGBUILD)
  couchdb/repos/community-i686/build-fix.patch
(from rev 87875, couchdb/trunk/build-fix.patch)
  couchdb/repos/community-i686/couchdb.install
(from rev 87875, couchdb/trunk/couchdb.install)
  couchdb/repos/community-i686/couchdb.rc
(from rev 87875, couchdb/trunk/couchdb.rc)
  couchdb/repos/community-i686/couchdb.service
(from rev 87875, couchdb/trunk/couchdb.service)
  couchdb/repos/community-i686/couchdb.tmpfiles
(from rev 87875, couchdb/trunk/couchdb.tmpfiles)
Deleted:
  couchdb/repos/community-i686/PKGBUILD
  couchdb/repos/community-i686/build-fix.patch
  couchdb/repos/community-i686/couchdb.install
  couchdb/repos/community-i686/couchdb.rc
  couchdb/repos/community-i686/couchdb.service
  couchdb/repos/community-i686/couchdb.tmpfiles

--+
 PKGBUILD |  106 
 build-fix.patch  |11136 ++---
 couchdb.install  |   44 
 couchdb.rc   |  314 -
 couchdb.service  |   24 
 couchdb.tmpfiles |2 
 6 files changed, 5813 insertions(+), 5813 deletions(-)

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


[arch-commits] Commit in couchdb/repos/community-x86_64 (12 files)

2013-04-08 Thread Sergej Pupykin
Date: Monday, April 8, 2013 @ 14:24:37
  Author: spupykin
Revision: 87877

archrelease: copy trunk to community-x86_64

Added:
  couchdb/repos/community-x86_64/PKGBUILD
(from rev 87876, couchdb/trunk/PKGBUILD)
  couchdb/repos/community-x86_64/build-fix.patch
(from rev 87876, couchdb/trunk/build-fix.patch)
  couchdb/repos/community-x86_64/couchdb.install
(from rev 87876, couchdb/trunk/couchdb.install)
  couchdb/repos/community-x86_64/couchdb.rc
(from rev 87876, couchdb/trunk/couchdb.rc)
  couchdb/repos/community-x86_64/couchdb.service
(from rev 87876, couchdb/trunk/couchdb.service)
  couchdb/repos/community-x86_64/couchdb.tmpfiles
(from rev 87876, couchdb/trunk/couchdb.tmpfiles)
Deleted:
  couchdb/repos/community-x86_64/PKGBUILD
  couchdb/repos/community-x86_64/build-fix.patch
  couchdb/repos/community-x86_64/couchdb.install
  couchdb/repos/community-x86_64/couchdb.rc
  couchdb/repos/community-x86_64/couchdb.service
  couchdb/repos/community-x86_64/couchdb.tmpfiles

--+
 PKGBUILD |  106 
 build-fix.patch  |11136 ++---
 couchdb.install  |   44 
 couchdb.rc   |  314 -
 couchdb.service  |   24 
 couchdb.tmpfiles |2 
 6 files changed, 5813 insertions(+), 5813 deletions(-)

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


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

2013-04-08 Thread Sven-Hendrik Haase
Date: Monday, April 8, 2013 @ 14:34:41
  Author: svenstaro
Revision: 87878

upgpkg: 0ad a13-2

Put private libs to lib/0ad

Modified:
  0ad/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-04-08 12:24:37 UTC (rev 87877)
+++ PKGBUILD2013-04-08 12:34:41 UTC (rev 87878)
@@ -5,7 +5,7 @@
 pkgname=0ad
 pkgver=a13
 _pkgver=0.0.13-alpha
-pkgrel=1
+pkgrel=2
 pkgdesc="Cross-platform, 3D and historically-based real-time strategy game"
 arch=('i686' 'x86_64')
 url="http://play0ad.com/";
@@ -21,10 +21,12 @@
   sed -i 's/unix_names = { "boost_filesystem-mt", "boost_system-mt" 
},/unix_names = { "boost_filesystem", "boost_system" },/g' 
"${srcdir}/${pkgname}-${_pkgver}/build/premake/extern_libs4.lua"
   sed -i 's/unix_names = { "boost_signals-mt" },/unix_names = { 
"boost_signals" },/g' 
"${srcdir}/${pkgname}-${_pkgver}/build/premake/extern_libs4.lua"
 
+  unset CPPFLAGS
+
   ./update-workspaces.sh \
   --with-system-enet \
   --bindir=/usr/bin \
-  --libdir=/usr/lib \
+  --libdir=/usr/lib/0ad \
   --datadir=/usr/share/${pkgname}/data
 
   cd "$srcdir/$pkgname-$_pkgver/build/workspaces/gcc"
@@ -33,9 +35,9 @@
 }
 
 package() {
-  install -d "${pkgdir}"/usr/{bin,lib}
+  install -d "${pkgdir}"/usr/{bin,lib/0ad}
   install -Dm755 "${srcdir}"/${pkgname}-${_pkgver}/binaries/system/pyrogenesis 
"${pkgdir}/usr/bin"
-  install -Dm755 "${srcdir}"/${pkgname}-${_pkgver}/binaries/system/*.so{,.1.0} 
"${pkgdir}/usr/lib"
+  install -Dm755 "${srcdir}"/${pkgname}-${_pkgver}/binaries/system/*.so{,.1.0} 
"${pkgdir}/usr/lib/0ad"
 
   install -Dm755 
"${srcdir}/${pkgname}-${_pkgver}/build/resources/${pkgname}.sh" 
"${pkgdir}/usr/bin/${pkgname}"
   install -Dm644 
"${srcdir}/$pkgname-$_pkgver/build/resources/${pkgname}.desktop" 
"${pkgdir}/usr/share/applications/${pkgname}.desktop"



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

2013-04-08 Thread Sven-Hendrik Haase
Date: Monday, April 8, 2013 @ 14:35:31
  Author: svenstaro
Revision: 87879

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

Added:
  0ad/repos/community-i686/PKGBUILD
(from rev 87878, 0ad/trunk/PKGBUILD)
  0ad/repos/community-i686/boost-1.50.patch
(from rev 87878, 0ad/trunk/boost-1.50.patch)
  0ad/repos/community-x86_64/PKGBUILD
(from rev 87878, 0ad/trunk/PKGBUILD)
  0ad/repos/community-x86_64/boost-1.50.patch
(from rev 87878, 0ad/trunk/boost-1.50.patch)
Deleted:
  0ad/repos/community-i686/PKGBUILD
  0ad/repos/community-i686/boost-1.50.patch
  0ad/repos/community-x86_64/PKGBUILD
  0ad/repos/community-x86_64/boost-1.50.patch

---+
 /PKGBUILD |   90 
 /boost-1.50.patch |   78 +++
 community-i686/PKGBUILD   |   43 -
 community-i686/boost-1.50.patch   |   39 ---
 community-x86_64/PKGBUILD |   43 -
 community-x86_64/boost-1.50.patch |   39 ---
 6 files changed, 168 insertions(+), 164 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-04-08 12:34:41 UTC (rev 87878)
+++ community-i686/PKGBUILD 2013-04-08 12:35:31 UTC (rev 87879)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: t3ddy  
-# Contributor: Adrián Chaves Fernández (Gallaecio) 
-pkgname=0ad
-pkgver=a13
-_pkgver=0.0.13-alpha
-pkgrel=1
-pkgdesc="Cross-platform, 3D and historically-based real-time strategy game"
-arch=('i686' 'x86_64')
-url="http://play0ad.com/";
-license=('GPL2' 'CCPL')
-depends=('binutils' 'boost-libs' 'curl' 'enet>=1.3' 'libogg' 'libpng' 
'libvorbis' 'libxml2' 'openal' 'sdl' 'wxgtk' 'zlib' 'libgl' '0ad-data' 'glu')
-makedepends=('boost' 'cmake' 'mesa' 'zip' 'python2')
-source=("http://releases.wildfiregames.com/$pkgname-$_pkgver-unix-build.tar.xz";)
-md5sums=('3075c982c4af41a3586b6b6ef637d2c4')
-
-build() {
-  cd "$srcdir/$pkgname-$_pkgver/build/workspaces"
-
-  sed -i 's/unix_names = { "boost_filesystem-mt", "boost_system-mt" 
},/unix_names = { "boost_filesystem", "boost_system" },/g' 
"${srcdir}/${pkgname}-${_pkgver}/build/premake/extern_libs4.lua"
-  sed -i 's/unix_names = { "boost_signals-mt" },/unix_names = { 
"boost_signals" },/g' 
"${srcdir}/${pkgname}-${_pkgver}/build/premake/extern_libs4.lua"
-
-  ./update-workspaces.sh \
-  --with-system-enet \
-  --bindir=/usr/bin \
-  --libdir=/usr/lib \
-  --datadir=/usr/share/${pkgname}/data
-
-  cd "$srcdir/$pkgname-$_pkgver/build/workspaces/gcc"
-
-  make CONFIG=Release
-}
-
-package() {
-  install -d "${pkgdir}"/usr/{bin,lib}
-  install -Dm755 "${srcdir}"/${pkgname}-${_pkgver}/binaries/system/pyrogenesis 
"${pkgdir}/usr/bin"
-  install -Dm755 "${srcdir}"/${pkgname}-${_pkgver}/binaries/system/*.so{,.1.0} 
"${pkgdir}/usr/lib"
-
-  install -Dm755 
"${srcdir}/${pkgname}-${_pkgver}/build/resources/${pkgname}.sh" 
"${pkgdir}/usr/bin/${pkgname}"
-  install -Dm644 
"${srcdir}/$pkgname-$_pkgver/build/resources/${pkgname}.desktop" 
"${pkgdir}/usr/share/applications/${pkgname}.desktop"
-  install -Dm644 "${srcdir}/$pkgname-$_pkgver/build/resources/${pkgname}.png" 
"${pkgdir}/usr/share/pixmaps/${pkgname}.png"
-}

Copied: 0ad/repos/community-i686/PKGBUILD (from rev 87878, 0ad/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-04-08 12:35:31 UTC (rev 87879)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: t3ddy  
+# Contributor: Adrián Chaves Fernández (Gallaecio) 
+pkgname=0ad
+pkgver=a13
+_pkgver=0.0.13-alpha
+pkgrel=2
+pkgdesc="Cross-platform, 3D and historically-based real-time strategy game"
+arch=('i686' 'x86_64')
+url="http://play0ad.com/";
+license=('GPL2' 'CCPL')
+depends=('binutils' 'boost-libs' 'curl' 'enet>=1.3' 'libogg' 'libpng' 
'libvorbis' 'libxml2' 'openal' 'sdl' 'wxgtk' 'zlib' 'libgl' '0ad-data' 'glu')
+makedepends=('boost' 'cmake' 'mesa' 'zip' 'python2')
+source=("http://releases.wildfiregames.com/$pkgname-$_pkgver-unix-build.tar.xz";)
+md5sums=('3075c982c4af41a3586b6b6ef637d2c4')
+
+build() {
+  cd "$srcdir/$pkgname-$_pkgver/build/workspaces"
+
+  sed -i 's/unix_names = { "boost_filesystem-mt", "boost_system-mt" 
},/unix_names = { "boost_filesystem", "boost_system" },/g' 
"${srcdir}/${pkgname}-${_pkgver}/build/premake/extern_libs4.lua"
+  sed -i 's/unix_names = { "boost_signals-mt" },/unix_names = { 
"boost_signals" },/g' 
"${srcdir}/${pkgname}-${_pkgver}/build/premake/extern_libs4.lua"
+
+  unset CPPFLAGS
+
+  ./update-workspaces.sh \
+  --with-system-enet \
+  --bindir=/usr/bin \
+  --libdir=/usr/lib/0ad \
+  --datadir=/usr/share/${pkgname}/data
+
+  cd "$srcdir/$pkgname-$_pkgver/build/workspaces/gcc"
+
+  make CONFIG=Rel

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

2013-04-08 Thread Jonathan Conder
Date: Monday, April 8, 2013 @ 14:39:42
  Author: jconder
Revision: 87880

upgpkg: packagekit 0.7.6-9

fix build error

Modified:
  packagekit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-04-08 12:35:31 UTC (rev 87879)
+++ PKGBUILD2013-04-08 12:39:42 UTC (rev 87880)
@@ -3,7 +3,7 @@
 pkgbase='packagekit'
 pkgname=('packagekit' 'packagekit-qt2' 'python2-packagekit')
 pkgver=0.7.6
-pkgrel=8
+pkgrel=9
 pkgdesc="A system designed to make installation and updates of packages 
easier."
 arch=('i686' 'x86_64')
 url="http://www.packagekit.org";



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

2013-04-08 Thread Jonathan Conder
Date: Monday, April 8, 2013 @ 14:41:31
  Author: jconder
Revision: 87881

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

Added:
  packagekit/repos/community-i686/
  packagekit/repos/community-i686/PKGBUILD
(from rev 87880, packagekit/trunk/PKGBUILD)
  packagekit/repos/community-i686/adopt.patch
(from rev 87880, packagekit/trunk/adopt.patch)
  packagekit/repos/community-i686/alpm.patch
(from rev 87880, packagekit/trunk/alpm.patch)
  packagekit/repos/community-i686/libarchive.patch
(from rev 87880, packagekit/trunk/libarchive.patch)
  packagekit/repos/community-i686/packagekit.install
(from rev 87880, packagekit/trunk/packagekit.install)
  packagekit/repos/community-x86_64/
  packagekit/repos/community-x86_64/PKGBUILD
(from rev 87880, packagekit/trunk/PKGBUILD)
  packagekit/repos/community-x86_64/adopt.patch
(from rev 87880, packagekit/trunk/adopt.patch)
  packagekit/repos/community-x86_64/alpm.patch
(from rev 87880, packagekit/trunk/alpm.patch)
  packagekit/repos/community-x86_64/libarchive.patch
(from rev 87880, packagekit/trunk/libarchive.patch)
  packagekit/repos/community-x86_64/packagekit.install
(from rev 87880, packagekit/trunk/packagekit.install)

-+
 community-i686/PKGBUILD |  104 ++
 community-i686/adopt.patch  |   13 
 community-i686/alpm.patch   | 1613 ++
 community-i686/libarchive.patch |   39 
 community-i686/packagekit.install   |   11 
 community-x86_64/PKGBUILD   |  104 ++
 community-x86_64/adopt.patch|   13 
 community-x86_64/alpm.patch | 1613 ++
 community-x86_64/libarchive.patch   |   39 
 community-x86_64/packagekit.install |   11 
 10 files changed, 3560 insertions(+)

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


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

2013-04-08 Thread Sven-Hendrik Haase
Date: Monday, April 8, 2013 @ 14:53:05
  Author: svenstaro
Revision: 87882

upgpkg: bumblebee 3.1-6

Add suggestion from FS#34634

Modified:
  bumblebee/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-04-08 12:41:31 UTC (rev 87881)
+++ PKGBUILD2013-04-08 12:53:05 UTC (rev 87882)
@@ -2,10 +2,11 @@
 
 pkgname=bumblebee
 pkgver=3.1
-pkgrel=5
+pkgrel=6
 pkgdesc="NVIDIA Optimus support for Linux through VirtualGL"
 arch=('i686' 'x86_64')
-depends=('virtualgl' 'libbsd' 'glib2' 'mesa-libgl')
+depends=('virtualgl' 'glib2' 'mesa-libgl')
+makedepends=('help2man')
 optdepends=('xf86-video-nouveau: nouveau driver'
 'nouveau-dri: 3D acceleration features fo nouveau'
 'bbswitch: switch on/off discrete card' 
@@ -34,7 +35,8 @@
 CONF_LDPATH_NVIDIA=/usr/lib/nvidia:/usr/lib32/nvidia \
 CONF_MODPATH_NVIDIA=/usr/lib/nvidia/xorg/,/usr/lib/xorg/modules \
 --prefix=/usr \
---sysconfdir=/etc
+--sysconfdir=/etc \
+--without-pidfile
 
 make
 }



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

2013-04-08 Thread Sven-Hendrik Haase
Date: Monday, April 8, 2013 @ 14:53:13
  Author: svenstaro
Revision: 87883

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

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

+
 /PKGBUILD  |  108 +++
 /bumblebee.install |   32 ++
 community-i686/PKGBUILD|   52 
 community-i686/bumblebee.install   |   16 -
 community-x86_64/PKGBUILD  |   52 
 community-x86_64/bumblebee.install |   16 -
 6 files changed, 140 insertions(+), 136 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-04-08 12:53:05 UTC (rev 87882)
+++ community-i686/PKGBUILD 2013-04-08 12:53:13 UTC (rev 87883)
@@ -1,52 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-
-pkgname=bumblebee
-pkgver=3.1
-pkgrel=5
-pkgdesc="NVIDIA Optimus support for Linux through VirtualGL"
-arch=('i686' 'x86_64')
-depends=('virtualgl' 'libbsd' 'glib2' 'mesa-libgl')
-optdepends=('xf86-video-nouveau: nouveau driver'
-'nouveau-dri: 3D acceleration features fo nouveau'
-'bbswitch: switch on/off discrete card' 
-'nvidia: NVIDIA kernel driver'
-'primus: faster back-end for optirun')
-if [ "$CARCH" = "x86_64" ]; then
- optdepends[${#optdepends[@]}]='lib32-virtualgl: run 32bit applications 
with optirun'
- optdepends[${#optdepends[@]}]='lib32-primus: faster back-end for optirun'
-fi
-conflicts=('nvidia-libgl')
-provides=('nvidia-libgl')
-url="http://www.bumblebee-project.org";
-license=("GPL3")
-install='bumblebee.install'
-backup=('etc/bumblebee/bumblebee.conf' 
-'etc/bumblebee/xorg.conf.nouveau' 
-'etc/bumblebee/xorg.conf.nvidia')
-source=("http://www.bumblebee-project.org/${pkgname}-${pkgver}.tar.gz";)
-md5sums=('de515ef51b1e0714c2f1b2a95f83e77e')
-
-build() {
-cd "${srcdir}/${pkgname}-${pkgver}"
-
-./configure \
-CONF_DRIVER_MODULE_NVIDIA=nvidia \
-CONF_LDPATH_NVIDIA=/usr/lib/nvidia:/usr/lib32/nvidia \
-CONF_MODPATH_NVIDIA=/usr/lib/nvidia/xorg/,/usr/lib/xorg/modules \
---prefix=/usr \
---sysconfdir=/etc
-
-make
-}
-
-package() {
-cd "${srcdir}/${pkgname}-${pkgver}"
-
-make install DESTDIR="$pkgdir"
-
-# Install systemd unit
-install -D -m644 "scripts/systemd/bumblebeed.service" 
"${pkgdir}/usr/lib/systemd/system/bumblebeed.service"
-
-# Make bash_completion work
-mv -v "${pkgdir}/etc/bash_completion.d/bumblebee" 
"${pkgdir}/etc/bash_completion.d/optirun"
-}

Copied: bumblebee/repos/community-i686/PKGBUILD (from rev 87882, 
bumblebee/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-04-08 12:53:13 UTC (rev 87883)
@@ -0,0 +1,54 @@
+# Maintainer: Sven-Hendrik Haase 
+
+pkgname=bumblebee
+pkgver=3.1
+pkgrel=6
+pkgdesc="NVIDIA Optimus support for Linux through VirtualGL"
+arch=('i686' 'x86_64')
+depends=('virtualgl' 'glib2' 'mesa-libgl')
+makedepends=('help2man')
+optdepends=('xf86-video-nouveau: nouveau driver'
+'nouveau-dri: 3D acceleration features fo nouveau'
+'bbswitch: switch on/off discrete card' 
+'nvidia: NVIDIA kernel driver'
+'primus: faster back-end for optirun')
+if [ "$CARCH" = "x86_64" ]; then
+ optdepends[${#optdepends[@]}]='lib32-virtualgl: run 32bit applications 
with optirun'
+ optdepends[${#optdepends[@]}]='lib32-primus: faster back-end for optirun'
+fi
+conflicts=('nvidia-libgl')
+provides=('nvidia-libgl')
+url="http://www.bumblebee-project.org";
+license=("GPL3")
+install='bumblebee.install'
+backup=('etc/bumblebee/bumblebee.conf' 
+'etc/bumblebee/xorg.conf.nouveau' 
+'etc/bumblebee/xorg.conf.nvidia')
+source=("http://www.bumblebee-project.org/${pkgname}-${pkgver}.tar.gz";)
+md5sums=('de515ef51b1e0714c2f1b2a95f83e77e')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+./configure \
+CONF_DRIVER_MODULE_NVIDIA=nvidia \
+CONF_LDPATH_NVIDIA=/usr/lib/nvidia:/usr/lib32/nvidia \
+CONF_MODPATH_NVIDIA=/usr/lib/nvidia/xorg/,/usr/lib/xorg/modules \
+--prefix=/usr \
+--sysconfdir=/etc \
+--without-pidfile
+
+make
+}
+
+packag

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

2013-04-08 Thread Tobias Powalowski
Date: Monday, April 8, 2013 @ 15:03:55
  Author: tpowa
Revision: 182154

upgpkg: kexec-tools 2.0.4-1

bump to latest version

Modified:
  kexec-tools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-04-08 11:53:45 UTC (rev 182153)
+++ PKGBUILD2013-04-08 13:03:55 UTC (rev 182154)
@@ -3,15 +3,15 @@
 # Maintainer: Tobias Powalowski 
 
 pkgname=kexec-tools
-pkgver=2.0.3
-pkgrel=2
+pkgver=2.0.4
+pkgrel=1
 pkgdesc="Load another kernel from the currently executing Linux kernel"
 arch=('i686' 'x86_64')
 url="http://kernel.org/pub/linux/utils/kernel/kexec/";
 
source=("ftp://ftp.archlinux.org/other/kexec-tools/kexec-tools-${pkgver}.tar.bz2";
+# upstream tarballs broken with bsdtar!
 
#"http://kernel.org/pub/linux/utils/kernel/kexec/kexec-tools-${pkgver}.tar.bz2";
-'kexec' 
-'kexec.conf.d')
+)
 depends=('gawk' 'zlib' 'xz')
 backup=('etc/conf.d/kexec')
 license=('GPL2')
@@ -29,9 +29,5 @@
   mv $pkgdir/usr/sbin $pkgdir/sbin
 
   install -D -m644 kexec/kexec.8 $pkgdir/usr/share/man/man8/kexec.8
-  install -D -m644 $srcdir/kexec.conf.d $pkgdir/etc/conf.d/kexec
-  install -D -m755 $srcdir/kexec $pkgdir/etc/rc.d/kexec
 }
-md5sums=('3d9ff82e8e16165b9e79ded271c08348'
- 'be059a103e5989519d22fca99f860a64'
- '9ca7e31d2c5c66c436a9a2baf20ad9b2')
+md5sums=('4713026758923f5f3968905291b991ee')



[arch-commits] Commit in kexec-tools/repos (16 files)

2013-04-08 Thread Tobias Powalowski
Date: Monday, April 8, 2013 @ 15:04:10
  Author: tpowa
Revision: 182155

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

Added:
  kexec-tools/repos/extra-i686/PKGBUILD
(from rev 182154, kexec-tools/trunk/PKGBUILD)
  kexec-tools/repos/extra-i686/kexec
(from rev 182154, kexec-tools/trunk/kexec)
  kexec-tools/repos/extra-i686/kexec-vesafb.diff
(from rev 182154, kexec-tools/trunk/kexec-vesafb.diff)
  kexec-tools/repos/extra-i686/kexec.conf.d
(from rev 182154, kexec-tools/trunk/kexec.conf.d)
  kexec-tools/repos/extra-x86_64/PKGBUILD
(from rev 182154, kexec-tools/trunk/PKGBUILD)
  kexec-tools/repos/extra-x86_64/kexec
(from rev 182154, kexec-tools/trunk/kexec)
  kexec-tools/repos/extra-x86_64/kexec-vesafb.diff
(from rev 182154, kexec-tools/trunk/kexec-vesafb.diff)
  kexec-tools/repos/extra-x86_64/kexec.conf.d
(from rev 182154, kexec-tools/trunk/kexec.conf.d)
Deleted:
  kexec-tools/repos/extra-i686/PKGBUILD
  kexec-tools/repos/extra-i686/kexec
  kexec-tools/repos/extra-i686/kexec-vesafb.diff
  kexec-tools/repos/extra-i686/kexec.conf.d
  kexec-tools/repos/extra-x86_64/PKGBUILD
  kexec-tools/repos/extra-x86_64/kexec
  kexec-tools/repos/extra-x86_64/kexec-vesafb.diff
  kexec-tools/repos/extra-x86_64/kexec.conf.d

+
 /PKGBUILD  |   66 
 /kexec |   90 ++
 /kexec-vesafb.diff |  156 +++
 /kexec.conf.d  |   32 
 extra-i686/PKGBUILD|   37 -
 extra-i686/kexec   |   45 ---
 extra-i686/kexec-vesafb.diff   |   78 ---
 extra-i686/kexec.conf.d|   16 
 extra-x86_64/PKGBUILD  |   37 -
 extra-x86_64/kexec |   45 ---
 extra-x86_64/kexec-vesafb.diff |   78 ---
 extra-x86_64/kexec.conf.d  |   16 
 12 files changed, 344 insertions(+), 352 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-04-08 13:03:55 UTC (rev 182154)
+++ extra-i686/PKGBUILD 2013-04-08 13:04:10 UTC (rev 182155)
@@ -1,37 +0,0 @@
-# $Id$
-# Contributor: Camille Moncelier , simo 
-# Maintainer: Tobias Powalowski 
-
-pkgname=kexec-tools
-pkgver=2.0.3
-pkgrel=2
-pkgdesc="Load another kernel from the currently executing Linux kernel"
-arch=('i686' 'x86_64')
-url="http://kernel.org/pub/linux/utils/kernel/kexec/";
-source=("ftp://ftp.archlinux.org/other/kexec-tools/kexec-tools-${pkgver}.tar.bz2";
-
#"http://kernel.org/pub/linux/utils/kernel/kexec/kexec-tools-${pkgver}.tar.bz2";
-'kexec' 
-'kexec.conf.d')
-depends=('gawk' 'zlib' 'xz')
-backup=('etc/conf.d/kexec')
-license=('GPL2')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  ./configure --prefix=/usr --without-lzma
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-
-  mv $pkgdir/usr/sbin $pkgdir/sbin
-
-  install -D -m644 kexec/kexec.8 $pkgdir/usr/share/man/man8/kexec.8
-  install -D -m644 $srcdir/kexec.conf.d $pkgdir/etc/conf.d/kexec
-  install -D -m755 $srcdir/kexec $pkgdir/etc/rc.d/kexec
-}
-md5sums=('3d9ff82e8e16165b9e79ded271c08348'
- 'be059a103e5989519d22fca99f860a64'
- '9ca7e31d2c5c66c436a9a2baf20ad9b2')

Copied: kexec-tools/repos/extra-i686/PKGBUILD (from rev 182154, 
kexec-tools/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-04-08 13:04:10 UTC (rev 182155)
@@ -0,0 +1,33 @@
+# $Id$
+# Contributor: Camille Moncelier , simo 
+# Maintainer: Tobias Powalowski 
+
+pkgname=kexec-tools
+pkgver=2.0.4
+pkgrel=1
+pkgdesc="Load another kernel from the currently executing Linux kernel"
+arch=('i686' 'x86_64')
+url="http://kernel.org/pub/linux/utils/kernel/kexec/";
+source=("ftp://ftp.archlinux.org/other/kexec-tools/kexec-tools-${pkgver}.tar.bz2";
+# upstream tarballs broken with bsdtar!
+
#"http://kernel.org/pub/linux/utils/kernel/kexec/kexec-tools-${pkgver}.tar.bz2";
+)
+depends=('gawk' 'zlib' 'xz')
+backup=('etc/conf.d/kexec')
+license=('GPL2')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./configure --prefix=/usr --without-lzma
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+
+  mv $pkgdir/usr/sbin $pkgdir/sbin
+
+  install -D -m644 kexec/kexec.8 $pkgdir/usr/share/man/man8/kexec.8
+}
+md5sums=('4713026758923f5f3968905291b991ee')

Deleted: extra-i686/kexec
===
--- extra-i686/kexec2013-04-08 13:03:55 UTC (rev 182154)
+++ extra-i686/kexec2013-04-08 13:04:10 UTC (rev 182155)
@@ -1,45 +0,0 @@
-#!/bin/bash
-
-[ -f /etc/conf.d/kexec ] && . /etc/conf.d/kexec
-
-. /etc/rc.conf
-. /etc/rc.d/functions
-
-case "$1" in
-  start)
-  stat_busy "Enabling kexec on rebo

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

2013-04-08 Thread Dan McGee
Date: Monday, April 8, 2013 @ 15:21:28
  Author: dan
Revision: 182156

upgpkg: git 1.8.2.1-1

Modified:
  git/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-04-08 13:04:10 UTC (rev 182155)
+++ PKGBUILD2013-04-08 13:21:28 UTC (rev 182156)
@@ -2,7 +2,7 @@
 # Maintainer: Dan McGee 
 
 pkgname=git
-pkgver=1.8.2
+pkgver=1.8.2.1
 pkgrel=1
 pkgdesc="the fast distributed version control system"
 arch=(i686 x86_64)
@@ -107,7 +107,7 @@
   install -D -m 644 "$srcdir"/git-daemon.socket 
"$pkgdir"/usr/lib/systemd/system/git-daemon.socket
 }
 
-md5sums=('210834d73c857931c3da34a65eb3e597'
- '425e9421a1b128cfb46fa46d94cad919'
+md5sums=('3f6ebca116c627490e4ee1f1324d5e65'
+ '8ec6ab4d8c868305e9a679f5c3d2ccfa'
  '042524f942785772d7bd52a1f02fe5ae'
  'f67869315c2cc112e076f0c73f248002')



[arch-commits] Commit in git/repos (16 files)

2013-04-08 Thread Dan McGee
Date: Monday, April 8, 2013 @ 15:21:41
  Author: dan
Revision: 182157

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

Added:
  git/repos/extra-i686/PKGBUILD
(from rev 182156, git/trunk/PKGBUILD)
  git/repos/extra-i686/git-daemon.socket
(from rev 182156, git/trunk/git-daemon.socket)
  git/repos/extra-i686/git-daemon@.service
(from rev 182156, git/trunk/git-daemon@.service)
  git/repos/extra-i686/git.install
(from rev 182156, git/trunk/git.install)
  git/repos/extra-x86_64/PKGBUILD
(from rev 182156, git/trunk/PKGBUILD)
  git/repos/extra-x86_64/git-daemon.socket
(from rev 182156, git/trunk/git-daemon.socket)
  git/repos/extra-x86_64/git-daemon@.service
(from rev 182156, git/trunk/git-daemon@.service)
  git/repos/extra-x86_64/git.install
(from rev 182156, git/trunk/git.install)
Deleted:
  git/repos/extra-i686/PKGBUILD
  git/repos/extra-i686/git-daemon.socket
  git/repos/extra-i686/git-daemon@.service
  git/repos/extra-i686/git.install
  git/repos/extra-x86_64/PKGBUILD
  git/repos/extra-x86_64/git-daemon.socket
  git/repos/extra-x86_64/git-daemon@.service
  git/repos/extra-x86_64/git.install

--+
 /PKGBUILD|  226 +
 /git-daemon.socket   |   18 ++
 /git-daemon@.service |   20 +++
 /git.install |   42 ++
 extra-i686/PKGBUILD  |  113 --
 extra-i686/git-daemon.socket |9 -
 extra-i686/git-daemon@.service   |   10 -
 extra-i686/git.install   |   21 ---
 extra-x86_64/PKGBUILD|  113 --
 extra-x86_64/git-daemon.socket   |9 -
 extra-x86_64/git-daemon@.service |   10 -
 extra-x86_64/git.install |   21 ---
 12 files changed, 306 insertions(+), 306 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-04-08 13:21:28 UTC (rev 182156)
+++ extra-i686/PKGBUILD 2013-04-08 13:21:41 UTC (rev 182157)
@@ -1,113 +0,0 @@
-# $Id$
-# Maintainer: Dan McGee 
-
-pkgname=git
-pkgver=1.8.2
-pkgrel=1
-pkgdesc="the fast distributed version control system"
-arch=(i686 x86_64)
-url="http://git-scm.com/";
-license=('GPL2')
-depends=('curl' 'expat>=2.0' 'perl-error' 'perl>=5.14.0' 'openssl' 'pcre')
-makedepends=('python2' 'emacs')
-optdepends=('tk: gitk and git gui'
-'perl-libwww: git svn'
-'perl-term-readkey: git svn'
-'perl-mime-tools: git send-email'
-'perl-net-smtp-ssl: git send-email TLS support'
-'perl-authen-sasl: git send-email TLS support'
-'python2: various helper scripts'
-'subversion: git svn'
-'cvsps: git cvsimport')
-replaces=('git-core')
-provides=('git-core')
-backup=('etc/conf.d/git-daemon.conf')
-install=git.install
-source=("http://git-core.googlecode.com/files/git-$pkgver.tar.gz";
-"http://git-core.googlecode.com/files/git-manpages-$pkgver.tar.gz";
-git-daemon@.service
-git-daemon.socket)
-
-build() {
-  export PYTHON_PATH='/usr/bin/python2'
-  cd "$srcdir/$pkgname-$pkgver"
-  make prefix=/usr gitexecdir=/usr/lib/git-core \
-CFLAGS="$CFLAGS" LDFLAGS="$LDFLAGS" \
-USE_LIBPCRE=1 \
-NO_CROSS_DIRECTORY_HARDLINKS=1 \
-all
-
-  cd contrib/emacs
-  make prefix=/usr
-}
-
-check() {
-  export PYTHON_PATH='/usr/bin/python2'
-  cd "$srcdir/$pkgname-$pkgver"
-  local jobs
-  jobs=$(expr "$MAKEFLAGS" : '.*\(-j[0-9]*\).*')
-  mkdir -p /dev/shm/git-test
-  # We used to use this, but silly git regressions:
-  #GIT_TEST_OPTS="--root=/dev/shm/" \
-  # http://comments.gmane.org/gmane.comp.version-control.git/202020
-  make prefix=/usr gitexecdir=/usr/lib/git-core \
-CFLAGS="$CFLAGS" LDFLAGS="$LDFLAGS" \
-USE_LIBPCRE=1 \
-NO_CROSS_DIRECTORY_HARDLINKS=1 \
-NO_SVN_TESTS=y \
-DEFAULT_TEST_TARGET=prove \
-GIT_PROVE_OPTS="$jobs -Q" \
-GIT_TEST_OPTS="--root=/dev/shm/git-test" \
-test
-}
-
-package() {
-  export PYTHON_PATH='/usr/bin/python2'
-  cd "$srcdir/$pkgname-$pkgver"
-  make prefix=/usr gitexecdir=/usr/lib/git-core \
-CFLAGS="$CFLAGS" LDFLAGS="$LDFLAGS" \
-USE_LIBPCRE=1 \
-NO_CROSS_DIRECTORY_HARDLINKS=1 \
-INSTALLDIRS=vendor DESTDIR="$pkgdir" install 
-
-  # bash completion
-  mkdir -p "$pkgdir"/usr/share/bash-completion/completions/
-  install -m644 ./contrib/completion/git-completion.bash 
"$pkgdir"/usr/share/bash-completion/completions/git 
-  # fancy git prompt
-  mkdir -p "$pkgdir"/usr/share/git/
-  install -m644 ./contrib/completion/git-prompt.sh 
"$pkgdir"/usr/share/git/git-prompt.sh
-  # more contrib stuff
-  cp -a ./contrib/* $pkgdir/usr/share/git/ 
-  # scripts are for python 2.x
-  sed -i 's|#![ ]*/usr/bin/env python|#!/usr/bin/env python2|' \
-$(find "$pkgdir" -name '*.py') \
-"$pkgdir"/usr/lib/git-core/git-p4 \
-"$pkgdir"/usr/share/git/gitview/gitview \
-"$pkgdir"/usr/share/git/remote-helpers

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

2013-04-08 Thread Evangelos Foutras
Date: Monday, April 8, 2013 @ 16:01:28
  Author: foutrelis
Revision: 182158

Add required build-time dependences (FS#34600).

Modified:
  linux-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-04-08 13:21:41 UTC (rev 182157)
+++ PKGBUILD2013-04-08 14:01:28 UTC (rev 182158)
@@ -10,7 +10,7 @@
 arch=('i686' 'x86_64')
 url="http://www.kernel.org/";
 license=('GPL2')
-makedepends=('xmlto' 'docbook-xsl')
+makedepends=('xmlto' 'docbook-xsl' 'kmod' 'inetutils')
 options=('!strip')
 source=("http://www.kernel.org/pub/linux/kernel/v3.x/${_srcname}.tar.xz";
 "http://www.kernel.org/pub/linux/kernel/v3.x/patch-${pkgver}.xz";



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

2013-04-08 Thread Evangelos Foutras
Date: Monday, April 8, 2013 @ 16:02:37
  Author: foutrelis
Revision: 182159

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

Added:
  linux-lts/repos/core-i686/3.0.54-ptrace-i686-build.patch
(from rev 182158, linux-lts/trunk/3.0.54-ptrace-i686-build.patch)
  linux-lts/repos/core-i686/PKGBUILD
(from rev 182158, linux-lts/trunk/PKGBUILD)
  linux-lts/repos/core-i686/change-default-console-loglevel.patch
(from rev 182158, linux-lts/trunk/change-default-console-loglevel.patch)
  linux-lts/repos/core-i686/config
(from rev 182158, linux-lts/trunk/config)
  linux-lts/repos/core-i686/config.x86_64
(from rev 182158, linux-lts/trunk/config.x86_64)
  linux-lts/repos/core-i686/ext4-options.patch
(from rev 182158, linux-lts/trunk/ext4-options.patch)
  
linux-lts/repos/core-i686/ext4-use-atomic64_t-for-the-per-flexbg-free_clusters-count.patch
(from rev 182158, 
linux-lts/trunk/ext4-use-atomic64_t-for-the-per-flexbg-free_clusters-count.patch)
  linux-lts/repos/core-i686/i915-fix-ghost-tv-output.patch
(from rev 182158, linux-lts/trunk/i915-fix-ghost-tv-output.patch)
  linux-lts/repos/core-i686/linux-lts.install
(from rev 182158, linux-lts/trunk/linux-lts.install)
  linux-lts/repos/core-i686/linux-lts.preset
(from rev 182158, linux-lts/trunk/linux-lts.preset)
  linux-lts/repos/core-i686/module-init-wait-3.0.patch
(from rev 182158, linux-lts/trunk/module-init-wait-3.0.patch)
  linux-lts/repos/core-i686/module-symbol-waiting-3.0.patch
(from rev 182158, linux-lts/trunk/module-symbol-waiting-3.0.patch)
  linux-lts/repos/core-x86_64/3.0.54-ptrace-i686-build.patch
(from rev 182158, linux-lts/trunk/3.0.54-ptrace-i686-build.patch)
  linux-lts/repos/core-x86_64/PKGBUILD
(from rev 182158, linux-lts/trunk/PKGBUILD)
  linux-lts/repos/core-x86_64/change-default-console-loglevel.patch
(from rev 182158, linux-lts/trunk/change-default-console-loglevel.patch)
  linux-lts/repos/core-x86_64/config
(from rev 182158, linux-lts/trunk/config)
  linux-lts/repos/core-x86_64/config.x86_64
(from rev 182158, linux-lts/trunk/config.x86_64)
  linux-lts/repos/core-x86_64/ext4-options.patch
(from rev 182158, linux-lts/trunk/ext4-options.patch)
  
linux-lts/repos/core-x86_64/ext4-use-atomic64_t-for-the-per-flexbg-free_clusters-count.patch
(from rev 182158, 
linux-lts/trunk/ext4-use-atomic64_t-for-the-per-flexbg-free_clusters-count.patch)
  linux-lts/repos/core-x86_64/i915-fix-ghost-tv-output.patch
(from rev 182158, linux-lts/trunk/i915-fix-ghost-tv-output.patch)
  linux-lts/repos/core-x86_64/linux-lts.install
(from rev 182158, linux-lts/trunk/linux-lts.install)
  linux-lts/repos/core-x86_64/linux-lts.preset
(from rev 182158, linux-lts/trunk/linux-lts.preset)
  linux-lts/repos/core-x86_64/module-init-wait-3.0.patch
(from rev 182158, linux-lts/trunk/module-init-wait-3.0.patch)
  linux-lts/repos/core-x86_64/module-symbol-waiting-3.0.patch
(from rev 182158, linux-lts/trunk/module-symbol-waiting-3.0.patch)
Deleted:
  linux-lts/repos/core-i686/3.0.54-ptrace-i686-build.patch
  linux-lts/repos/core-i686/PKGBUILD
  linux-lts/repos/core-i686/change-default-console-loglevel.patch
  linux-lts/repos/core-i686/config
  linux-lts/repos/core-i686/config.x86_64
  linux-lts/repos/core-i686/ext4-options.patch
  
linux-lts/repos/core-i686/ext4-use-atomic64_t-for-the-per-flexbg-free_clusters-count.patch
  linux-lts/repos/core-i686/i915-fix-ghost-tv-output.patch
  linux-lts/repos/core-i686/linux-lts.install
  linux-lts/repos/core-i686/linux-lts.preset
  linux-lts/repos/core-i686/module-init-wait-3.0.patch
  linux-lts/repos/core-i686/module-symbol-waiting-3.0.patch
  linux-lts/repos/core-x86_64/3.0.54-ptrace-i686-build.patch
  linux-lts/repos/core-x86_64/PKGBUILD
  linux-lts/repos/core-x86_64/change-default-console-loglevel.patch
  linux-lts/repos/core-x86_64/config
  linux-lts/repos/core-x86_64/config.x86_64
  linux-lts/repos/core-x86_64/ext4-options.patch
  
linux-lts/repos/core-x86_64/ext4-use-atomic64_t-for-the-per-flexbg-free_clusters-count.patch
  linux-lts/repos/core-x86_64/i915-fix-ghost-tv-output.patch
  linux-lts/repos/core-x86_64/linux-lts.install
  linux-lts/repos/core-x86_64/linux-lts.preset
  linux-lts/repos/core-x86_64/module-init-wait-3.0.patch
  linux-lts/repos/core-x86_64/module-symbol-waiting-3.0.patch

--+
 /3.0.54-ptrace-i686-build.patch  | 
  82 
 /PKGBUILD| 
 646 
 /change-default-console-loglevel.patch   | 
  24 
 /config  
|11150 ++
 /config.x86_64   
|10660 +
 /ext4-options.patch  | 
  98 
 /ext4-use-atomic64_t-for-the-per-flexbg-free_c

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

2013-04-08 Thread Evangelos Foutras
Date: Monday, April 8, 2013 @ 16:06:55
  Author: foutrelis
Revision: 182160

Add required build-time dependencies [bc will be needed in 3.9] (FS#34600).

Modified:
  linux/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-04-08 14:02:37 UTC (rev 182159)
+++ PKGBUILD2013-04-08 14:06:55 UTC (rev 182160)
@@ -10,7 +10,7 @@
 arch=('i686' 'x86_64')
 url="http://www.kernel.org/";
 license=('GPL2')
-makedepends=('xmlto' 'docbook-xsl')
+makedepends=('xmlto' 'docbook-xsl' 'kmod' 'inetutils' 'bc')
 options=('!strip')
 source=("http://www.kernel.org/pub/linux/kernel/v3.x/${_srcname}.tar.xz";
 "http://www.kernel.org/pub/linux/kernel/v3.x/patch-${pkgver}.xz";



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

2013-04-08 Thread Evangelos Foutras
Date: Monday, April 8, 2013 @ 16:07:35
  Author: foutrelis
Revision: 182161

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

Added:
  linux/repos/core-i686/PKGBUILD
(from rev 182160, linux/trunk/PKGBUILD)
  linux/repos/core-i686/change-default-console-loglevel.patch
(from rev 182160, linux/trunk/change-default-console-loglevel.patch)
  linux/repos/core-i686/config
(from rev 182160, linux/trunk/config)
  linux/repos/core-i686/config.x86_64
(from rev 182160, linux/trunk/config.x86_64)
  linux/repos/core-i686/linux.install
(from rev 182160, linux/trunk/linux.install)
  linux/repos/core-i686/linux.preset
(from rev 182160, linux/trunk/linux.preset)
  linux/repos/core-x86_64/PKGBUILD
(from rev 182160, linux/trunk/PKGBUILD)
  linux/repos/core-x86_64/change-default-console-loglevel.patch
(from rev 182160, linux/trunk/change-default-console-loglevel.patch)
  linux/repos/core-x86_64/config
(from rev 182160, linux/trunk/config)
  linux/repos/core-x86_64/config.x86_64
(from rev 182160, linux/trunk/config.x86_64)
  linux/repos/core-x86_64/linux.install
(from rev 182160, linux/trunk/linux.install)
  linux/repos/core-x86_64/linux.preset
(from rev 182160, linux/trunk/linux.preset)
Deleted:
  linux/repos/core-i686/PKGBUILD
  linux/repos/core-i686/change-default-console-loglevel.patch
  linux/repos/core-i686/config
  linux/repos/core-i686/config.x86_64
  linux/repos/core-i686/linux.install
  linux/repos/core-i686/linux.preset
  linux/repos/core-x86_64/PKGBUILD
  linux/repos/core-x86_64/change-default-console-loglevel.patch
  linux/repos/core-x86_64/config
  linux/repos/core-x86_64/config.x86_64
  linux/repos/core-x86_64/linux.install
  linux/repos/core-x86_64/linux.preset

---+
 /PKGBUILD |  634 +
 /change-default-console-loglevel.patch|   24 
 /config   |12400 
 /config.x86_64|11958 +++
 /linux.install|  130 
 /linux.preset |   28 
 core-i686/PKGBUILD|  317 
 core-i686/change-default-console-loglevel.patch   |   12 
 core-i686/config  | 6200 --
 core-i686/config.x86_64   | 5979 -
 core-i686/linux.install   |   65 
 core-i686/linux.preset|   14 
 core-x86_64/PKGBUILD  |  317 
 core-x86_64/change-default-console-loglevel.patch |   12 
 core-x86_64/config| 6200 --
 core-x86_64/config.x86_64 | 5979 -
 core-x86_64/linux.install |   65 
 core-x86_64/linux.preset  |   14 
 18 files changed, 25174 insertions(+), 25174 deletions(-)

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


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

2013-04-08 Thread Sven-Hendrik Haase
Date: Monday, April 8, 2013 @ 16:10:06
  Author: svenstaro
Revision: 87884

upgpkg: cuda 5.0.35-5

More hacks for gcc 4.8

Modified:
  cuda/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-04-08 12:53:13 UTC (rev 87883)
+++ PKGBUILD2013-04-08 14:10:06 UTC (rev 87884)
@@ -2,7 +2,7 @@
 # Maintainer: Sven-Hendrik Haase 
 pkgname=cuda
 pkgver=5.0.35
-pkgrel=4
+pkgrel=5
 pkgdesc="NVIDIA's GPU programming toolkit"
 arch=('i686' 'x86_64')
 url="http://www.nvidia.com/object/cuda_home.html";
@@ -37,11 +37,15 @@
   ./cudatoolkit_${pkgver}_linux_${_arch}_fedora16.run -prefix=$pkgdir/opt/cuda 
-noprompt
   ./cuda-samples_${pkgver}_linux.run -cudaprefix=$pkgdir/opt/cuda 
-prefix=$pkgdir/opt/cuda/samples -noprompt
 
+  # Now, let the hacks begin!
+
   # allow gcc 4.7 to work
   sed -i "/unsupported GNU/d" $pkgdir/opt/cuda/include/host_config.h
 
   # allow gcc 4.8 to work
   sed -i "1 i #define __STRICT_ANSI__" $pkgdir/opt/cuda/include/cuda_runtime.h
+  echo "#undef _GLIBCXX_ATOMIC_BUILTINS" >> 
$pkgdir/opt/cuda/include/cuda_runtime.h
+  echo "#define _GLIBCXX_GTHREAD_USE_WEAK 0" >> 
$pkgdir/opt/cuda/include/cuda_runtime.h
 
   # fix nvidia path fuckup
   sed -i "s|/build/pkg||g" $pkgdir/opt/cuda/bin/nvvp



[arch-commits] Commit in cuda/repos (16 files)

2013-04-08 Thread Sven-Hendrik Haase
Date: Monday, April 8, 2013 @ 16:10:28
  Author: svenstaro
Revision: 87885

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

Added:
  cuda/repos/community-i686/PKGBUILD
(from rev 87884, cuda/trunk/PKGBUILD)
  cuda/repos/community-i686/cuda.conf
(from rev 87884, cuda/trunk/cuda.conf)
  cuda/repos/community-i686/cuda.install
(from rev 87884, cuda/trunk/cuda.install)
  cuda/repos/community-i686/cuda.sh
(from rev 87884, cuda/trunk/cuda.sh)
  cuda/repos/community-x86_64/PKGBUILD
(from rev 87884, cuda/trunk/PKGBUILD)
  cuda/repos/community-x86_64/cuda.conf
(from rev 87884, cuda/trunk/cuda.conf)
  cuda/repos/community-x86_64/cuda.install
(from rev 87884, cuda/trunk/cuda.install)
  cuda/repos/community-x86_64/cuda.sh
(from rev 87884, cuda/trunk/cuda.sh)
Deleted:
  cuda/repos/community-i686/PKGBUILD
  cuda/repos/community-i686/cuda.conf
  cuda/repos/community-i686/cuda.install
  cuda/repos/community-i686/cuda.sh
  cuda/repos/community-x86_64/PKGBUILD
  cuda/repos/community-x86_64/cuda.conf
  cuda/repos/community-x86_64/cuda.install
  cuda/repos/community-x86_64/cuda.sh

---+
 /PKGBUILD |  132 
 /cuda.conf|4 +
 /cuda.install |   22 ++
 /cuda.sh  |2 
 community-i686/PKGBUILD   |   62 --
 community-i686/cuda.conf  |2 
 community-i686/cuda.install   |   11 ---
 community-i686/cuda.sh|1 
 community-x86_64/PKGBUILD |   62 --
 community-x86_64/cuda.conf|2 
 community-x86_64/cuda.install |   11 ---
 community-x86_64/cuda.sh  |1 
 12 files changed, 160 insertions(+), 152 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-04-08 14:10:06 UTC (rev 87884)
+++ community-i686/PKGBUILD 2013-04-08 14:10:28 UTC (rev 87885)
@@ -1,62 +0,0 @@
-# $Id: PKGBUILD 69719 2012-04-23 02:56:20Z svenstaro $
-# Maintainer: Sven-Hendrik Haase 
-pkgname=cuda
-pkgver=5.0.35
-pkgrel=4
-pkgdesc="NVIDIA's GPU programming toolkit"
-arch=('i686' 'x86_64')
-url="http://www.nvidia.com/object/cuda_home.html";
-license=('custom')
-depends=('gcc-libs' 'opencl-nvidia')
-replaces=('cuda-toolkit' 'cuda-sdk')
-provides=('cuda-toolkit' 'cuda-sdk')
-optdepends=('gdb: for cuda-gdb')
-options=(!strip)
-if [ "$CARCH" = "i686" ]; then
-  _arch=32
-  md5sums=('40c514acb750902c54656b97a6deded6'
-   '7e5990e03eea90075f5a500e91a0c3d3'
-   'ffe1e6fb7f97b23da28fd94a5fd7356d')
-else
-  _arch=64
-  md5sums=('df796fb9ab66075b5c346b3fd0bf596b'
-   '7e5990e03eea90075f5a500e91a0c3d3'
-   'ffe1e6fb7f97b23da28fd94a5fd7356d')
-fi
-install=cuda.install
-source=(http://developer.download.nvidia.com/compute/cuda/5_0/rel-update-1/installers/cuda_${pkgver}_linux_${_arch}_fedora16-1.run
-cuda.sh
-cuda.conf)
-
-build() {
-  cd "$srcdir"
-}
-
-package() {
-  sh cuda_${pkgver}_linux_${_arch}_fedora16-1.run -toolkitpath=$PWD 
-samplespath=$PWD -extract=$srcdir
-  ./cudatoolkit_${pkgver}_linux_${_arch}_fedora16.run -prefix=$pkgdir/opt/cuda 
-noprompt
-  ./cuda-samples_${pkgver}_linux.run -cudaprefix=$pkgdir/opt/cuda 
-prefix=$pkgdir/opt/cuda/samples -noprompt
-
-  # allow gcc 4.7 to work
-  sed -i "/unsupported GNU/d" $pkgdir/opt/cuda/include/host_config.h
-
-  # allow gcc 4.8 to work
-  sed -i "1 i #define __STRICT_ANSI__" $pkgdir/opt/cuda/include/cuda_runtime.h
-
-  # fix nvidia path fuckup
-  sed -i "s|/build/pkg||g" $pkgdir/opt/cuda/bin/nvvp
-  sed -i "s|/build/pkg||g" $pkgdir/opt/cuda/bin/nsight
-
-  install -Dm755 $srcdir/cuda.sh $pkgdir/etc/profile.d/cuda.sh
-  install -Dm644 $srcdir/cuda.conf $pkgdir/etc/ld.so.conf.d/cuda.conf
-  install -Dm644 $pkgdir/opt/cuda/doc/EULA.txt 
$pkgdir/usr/share/licenses/$pkgname/LICENSE
-
-  # correct cuda path in samples
-  cd $pkgdir/opt/cuda/samples
-  find . -type f | egrep -v '(ppm|pgm)' | xargs grep -lI "$pkgdir/opt/cuda" | 
xargs sed -i "s|$pkgdir/opt/cuda|/opt/cuda|g"
-
-  # make cuda-gdk work
-  mkdir -p $pkgdir/usr/lib
-  cd $pkgdir/usr/lib
-  ln -s /usr/lib/libncurses.so.5 libtinfo.so.5
-}

Copied: cuda/repos/community-i686/PKGBUILD (from rev 87884, cuda/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-04-08 14:10:28 UTC (rev 87885)
@@ -0,0 +1,66 @@
+# $Id: PKGBUILD 69719 2012-04-23 02:56:20Z svenstaro $
+# Maintainer: Sven-Hendrik Haase 
+pkgname=cuda
+pkgver=5.0.35
+pkgrel=5
+pkgdesc="NVIDIA's GPU programming toolkit"
+arch=('i686' 'x86_64')
+url="http://www.nvidia.com/object/cuda_home.html";
+license=('custom')
+depends=('gcc-libs' 'opencl-nvidia')
+replaces=('cuda-toolkit' 'cuda-sdk')
+provides=('cuda-toolkit' 'cuda-sdk')
+optdepends=('gdb: for cuda-gdb')
+options=(!strip)
+if [ "$C

[arch-commits] Commit in (6 files)

2013-04-08 Thread Jan Steffens
Date: Monday, April 8, 2013 @ 16:37:42
  Author: heftig
Revision: 87886

extra2community: Moving metacity from extra to community

Added:
  metacity/
  metacity/repos/
  metacity/trunk/
  metacity/trunk/PKGBUILD
  metacity/trunk/fix_compositing_startup.patch
  metacity/trunk/metacity.install

---+
 PKGBUILD  |   34 ++
 fix_compositing_startup.patch |   12 
 metacity.install  |   19 +++
 3 files changed, 65 insertions(+)

Added: metacity/trunk/PKGBUILD
===
--- metacity/trunk/PKGBUILD (rev 0)
+++ metacity/trunk/PKGBUILD 2013-04-08 14:37:42 UTC (rev 87886)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=metacity
+pkgver=2.34.13
+pkgrel=1
+pkgdesc="A window manager for GNOME"
+arch=(i686 x86_64)
+license=('GPL')
+depends=('dconf' 'gtk2' 'gsettings-desktop-schemas' 'libcanberra'  'libgtop' 
'libsm' 'startup-notification' 'zenity')
+makedepends=('intltool' 'yelp-tools')
+url="http://www.gnome.org";
+groups=('gnome')
+options=('!libtool' '!emptydirs')
+install=metacity.install
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz
+fix_compositing_startup.patch)
+sha256sums=('8cf4dbf0da0a6f36357ce7db7f829ec685908a7792453c662fb8184572b91075'
+'5094a0ffe3eb8289ed752829877c2e1b743eddf938ad3fc92fb4574b42765ae2')
+
+build() {
+  cd "$pkgname-$pkgver"
+  patch -Np1 -i "${srcdir}/fix_compositing_startup.patch"
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --libexecdir=/usr/lib/metacity \
+  --localstatedir=/var --disable-static \
+  --disable-schemas-compile
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}


Property changes on: metacity/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: metacity/trunk/fix_compositing_startup.patch
===
--- metacity/trunk/fix_compositing_startup.patch
(rev 0)
+++ metacity/trunk/fix_compositing_startup.patch2013-04-08 14:37:42 UTC 
(rev 87886)
@@ -0,0 +1,12 @@
+diff -Naur metacity-2.34.5.orig/src/compositor/compositor-xrender.c 
metacity-2.34.5/src/compositor/compositor-xrender.c
+--- metacity-2.34.5.orig/src/compositor/compositor-xrender.c   2011-11-10 
15:14:34.0 +0100
 metacity-2.34.5/src/compositor/compositor-xrender.c2012-08-28 
14:23:04.093750568 +0200
+@@ -3066,6 +3057,8 @@
+ #endif
+ 
+   xrc->enabled = TRUE;
++  xrc->show_redraw = FALSE;
++  xrc->debug = FALSE;
+   g_timeout_add (2000, (GSourceFunc) timeout_debug, xrc);
+ 
+   return compositor;

Added: metacity/trunk/metacity.install
===
--- metacity/trunk/metacity.install (rev 0)
+++ metacity/trunk/metacity.install 2013-04-08 14:37:42 UTC (rev 87886)
@@ -0,0 +1,19 @@
+pkgname=metacity
+
+post_install() {
+glib-compile-schemas /usr/share/glib-2.0/schemas
+}
+
+pre_upgrade() {
+if [ -f /usr/share/gconf/schemas/$pkgname.schemas ]; then
+/usr/sbin/gconfpkg --uninstall $pkgname
+fi
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}



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

2013-04-08 Thread Jan Steffens
Date: Monday, April 8, 2013 @ 16:38:04
  Author: heftig
Revision: 87887

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

Added:
  metacity/repos/community-i686/
  metacity/repos/community-i686/PKGBUILD
(from rev 87886, metacity/trunk/PKGBUILD)
  metacity/repos/community-i686/fix_compositing_startup.patch
(from rev 87886, metacity/trunk/fix_compositing_startup.patch)
  metacity/repos/community-i686/metacity.install
(from rev 87886, metacity/trunk/metacity.install)
  metacity/repos/community-x86_64/
  metacity/repos/community-x86_64/PKGBUILD
(from rev 87886, metacity/trunk/PKGBUILD)
  metacity/repos/community-x86_64/fix_compositing_startup.patch
(from rev 87886, metacity/trunk/fix_compositing_startup.patch)
  metacity/repos/community-x86_64/metacity.install
(from rev 87886, metacity/trunk/metacity.install)

+
 community-i686/PKGBUILD|   34 +++
 community-i686/fix_compositing_startup.patch   |   12 
 community-i686/metacity.install|   19 
 community-x86_64/PKGBUILD  |   34 +++
 community-x86_64/fix_compositing_startup.patch |   12 
 community-x86_64/metacity.install  |   19 
 6 files changed, 130 insertions(+)

Copied: metacity/repos/community-i686/PKGBUILD (from rev 87886, 
metacity/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-04-08 14:38:04 UTC (rev 87887)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=metacity
+pkgver=2.34.13
+pkgrel=1
+pkgdesc="A window manager for GNOME"
+arch=(i686 x86_64)
+license=('GPL')
+depends=('dconf' 'gtk2' 'gsettings-desktop-schemas' 'libcanberra'  'libgtop' 
'libsm' 'startup-notification' 'zenity')
+makedepends=('intltool' 'yelp-tools')
+url="http://www.gnome.org";
+groups=('gnome')
+options=('!libtool' '!emptydirs')
+install=metacity.install
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz
+fix_compositing_startup.patch)
+sha256sums=('8cf4dbf0da0a6f36357ce7db7f829ec685908a7792453c662fb8184572b91075'
+'5094a0ffe3eb8289ed752829877c2e1b743eddf938ad3fc92fb4574b42765ae2')
+
+build() {
+  cd "$pkgname-$pkgver"
+  patch -Np1 -i "${srcdir}/fix_compositing_startup.patch"
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --libexecdir=/usr/lib/metacity \
+  --localstatedir=/var --disable-static \
+  --disable-schemas-compile
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}

Copied: metacity/repos/community-i686/fix_compositing_startup.patch (from rev 
87886, metacity/trunk/fix_compositing_startup.patch)
===
--- community-i686/fix_compositing_startup.patch
(rev 0)
+++ community-i686/fix_compositing_startup.patch2013-04-08 14:38:04 UTC 
(rev 87887)
@@ -0,0 +1,12 @@
+diff -Naur metacity-2.34.5.orig/src/compositor/compositor-xrender.c 
metacity-2.34.5/src/compositor/compositor-xrender.c
+--- metacity-2.34.5.orig/src/compositor/compositor-xrender.c   2011-11-10 
15:14:34.0 +0100
 metacity-2.34.5/src/compositor/compositor-xrender.c2012-08-28 
14:23:04.093750568 +0200
+@@ -3066,6 +3057,8 @@
+ #endif
+ 
+   xrc->enabled = TRUE;
++  xrc->show_redraw = FALSE;
++  xrc->debug = FALSE;
+   g_timeout_add (2000, (GSourceFunc) timeout_debug, xrc);
+ 
+   return compositor;

Copied: metacity/repos/community-i686/metacity.install (from rev 87886, 
metacity/trunk/metacity.install)
===
--- community-i686/metacity.install (rev 0)
+++ community-i686/metacity.install 2013-04-08 14:38:04 UTC (rev 87887)
@@ -0,0 +1,19 @@
+pkgname=metacity
+
+post_install() {
+glib-compile-schemas /usr/share/glib-2.0/schemas
+}
+
+pre_upgrade() {
+if [ -f /usr/share/gconf/schemas/$pkgname.schemas ]; then
+/usr/sbin/gconfpkg --uninstall $pkgname
+fi
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}

Copied: metacity/repos/community-x86_64/PKGBUILD (from rev 87886, 
metacity/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2013-04-08 14:38:04 UTC (rev 87887)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=metacity
+pkgver=2.34.13
+pkgrel=1
+pkgdesc="A window manager for GNOME"
+arch=(i686 x86_64)
+license=('GPL')
+depends=('dconf' 'gtk2' 'gsettings-desktop-schemas' 'libcanberra'  'libgtop' 
'libsm' 'startup-notification' 'zenity')
+makedepends=('intltool' 'yelp-tools')
+url="http://www.gnome.org";
+groups=('gno

[arch-commits] Commit in (metacity)

2013-04-08 Thread Jan Steffens
Date: Monday, April 8, 2013 @ 16:38:31
  Author: heftig
Revision: 182324

extra2community: Moving metacity from extra to community

Deleted:
  metacity/



[arch-commits] Commit in (6 files)

2013-04-08 Thread Jan Steffens
Date: Monday, April 8, 2013 @ 16:39:35
  Author: heftig
Revision: 87888

extra2community: Moving gnome-screensaver from extra to community

Added:
  gnome-screensaver/
  gnome-screensaver/repos/
  gnome-screensaver/trunk/
  gnome-screensaver/trunk/PKGBUILD
  gnome-screensaver/trunk/gnome-screensaver.install
  gnome-screensaver/trunk/gnome-screensaver.pam

---+
 PKGBUILD  |   37 +
 gnome-screensaver.install |7 +++
 gnome-screensaver.pam |3 +++
 3 files changed, 47 insertions(+)

Added: gnome-screensaver/trunk/PKGBUILD
===
--- gnome-screensaver/trunk/PKGBUILD(rev 0)
+++ gnome-screensaver/trunk/PKGBUILD2013-04-08 14:39:35 UTC (rev 87888)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+
+pkgname=gnome-screensaver
+pkgver=3.6.1
+pkgrel=1
+pkgdesc="Screensaver designed to integrate well with the GNOME desktop."
+arch=('i686' 'x86_64')
+license=('GPL')
+url="http://live.gnome.org/GnomeScreensaver";
+backup=(etc/pam.d/gnome-screensaver)
+depends=('dbus-glib' 'libgnomekbd' 'gnome-desktop' 'gsettings-desktop-schemas' 
'libsystemd')
+makedepends=('pkgconfig' 'intltool' 'libxss')
+groups=('gnome')
+options=(!emptydirs)
+install=gnome-screensaver.install
+source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz
+   gnome-screensaver.pam)
+sha256sums=('f39b78d4f7fed748c7f0a31d694112fb907c6d3c4e63db22eb858df07e962cd0'
+'c19870c4f2d6e91ba0eea2603753a74e0c5c82ff5fa3cacb1198027a38d0a6cb')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --libexecdir=/usr/lib/gnome-screensaver \
+  --localstatedir=/var \
+  --with-mit-ext --with-systemd
+
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -Dm644 ../gnome-screensaver.pam "$pkgdir/etc/pam.d/gnome-screensaver"
+}


Property changes on: gnome-screensaver/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: gnome-screensaver/trunk/gnome-screensaver.install
===
--- gnome-screensaver/trunk/gnome-screensaver.install   
(rev 0)
+++ gnome-screensaver/trunk/gnome-screensaver.install   2013-04-08 14:39:35 UTC 
(rev 87888)
@@ -0,0 +1,7 @@
+pkgname=gnome-screensaver
+
+pre_upgrade() {
+if [ -f usr/share/gconf/schemas/${pkgname}.schemas ]; then
+gconfpkg --uninstall ${pkgname}
+fi
+}

Added: gnome-screensaver/trunk/gnome-screensaver.pam
===
--- gnome-screensaver/trunk/gnome-screensaver.pam   
(rev 0)
+++ gnome-screensaver/trunk/gnome-screensaver.pam   2013-04-08 14:39:35 UTC 
(rev 87888)
@@ -0,0 +1,3 @@
+#%PAM-1.0
+authrequired pam_unix_auth.so nullok
+authoptional pam_gnome_keyring.so



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

2013-04-08 Thread Jan Steffens
Date: Monday, April 8, 2013 @ 16:39:56
  Author: heftig
Revision: 87889

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

Added:
  gnome-screensaver/repos/community-i686/
  gnome-screensaver/repos/community-i686/PKGBUILD
(from rev 87888, gnome-screensaver/trunk/PKGBUILD)
  gnome-screensaver/repos/community-i686/gnome-screensaver.install
(from rev 87888, gnome-screensaver/trunk/gnome-screensaver.install)
  gnome-screensaver/repos/community-i686/gnome-screensaver.pam
(from rev 87888, gnome-screensaver/trunk/gnome-screensaver.pam)
  gnome-screensaver/repos/community-x86_64/
  gnome-screensaver/repos/community-x86_64/PKGBUILD
(from rev 87888, gnome-screensaver/trunk/PKGBUILD)
  gnome-screensaver/repos/community-x86_64/gnome-screensaver.install
(from rev 87888, gnome-screensaver/trunk/gnome-screensaver.install)
  gnome-screensaver/repos/community-x86_64/gnome-screensaver.pam
(from rev 87888, gnome-screensaver/trunk/gnome-screensaver.pam)

+
 community-i686/PKGBUILD|   37 +++
 community-i686/gnome-screensaver.install   |7 +
 community-i686/gnome-screensaver.pam   |3 ++
 community-x86_64/PKGBUILD  |   37 +++
 community-x86_64/gnome-screensaver.install |7 +
 community-x86_64/gnome-screensaver.pam |3 ++
 6 files changed, 94 insertions(+)

Copied: gnome-screensaver/repos/community-i686/PKGBUILD (from rev 87888, 
gnome-screensaver/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-04-08 14:39:56 UTC (rev 87889)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+
+pkgname=gnome-screensaver
+pkgver=3.6.1
+pkgrel=1
+pkgdesc="Screensaver designed to integrate well with the GNOME desktop."
+arch=('i686' 'x86_64')
+license=('GPL')
+url="http://live.gnome.org/GnomeScreensaver";
+backup=(etc/pam.d/gnome-screensaver)
+depends=('dbus-glib' 'libgnomekbd' 'gnome-desktop' 'gsettings-desktop-schemas' 
'libsystemd')
+makedepends=('pkgconfig' 'intltool' 'libxss')
+groups=('gnome')
+options=(!emptydirs)
+install=gnome-screensaver.install
+source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz
+   gnome-screensaver.pam)
+sha256sums=('f39b78d4f7fed748c7f0a31d694112fb907c6d3c4e63db22eb858df07e962cd0'
+'c19870c4f2d6e91ba0eea2603753a74e0c5c82ff5fa3cacb1198027a38d0a6cb')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --libexecdir=/usr/lib/gnome-screensaver \
+  --localstatedir=/var \
+  --with-mit-ext --with-systemd
+
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -Dm644 ../gnome-screensaver.pam "$pkgdir/etc/pam.d/gnome-screensaver"
+}

Copied: gnome-screensaver/repos/community-i686/gnome-screensaver.install (from 
rev 87888, gnome-screensaver/trunk/gnome-screensaver.install)
===
--- community-i686/gnome-screensaver.install(rev 0)
+++ community-i686/gnome-screensaver.install2013-04-08 14:39:56 UTC (rev 
87889)
@@ -0,0 +1,7 @@
+pkgname=gnome-screensaver
+
+pre_upgrade() {
+if [ -f usr/share/gconf/schemas/${pkgname}.schemas ]; then
+gconfpkg --uninstall ${pkgname}
+fi
+}

Copied: gnome-screensaver/repos/community-i686/gnome-screensaver.pam (from rev 
87888, gnome-screensaver/trunk/gnome-screensaver.pam)
===
--- community-i686/gnome-screensaver.pam(rev 0)
+++ community-i686/gnome-screensaver.pam2013-04-08 14:39:56 UTC (rev 
87889)
@@ -0,0 +1,3 @@
+#%PAM-1.0
+authrequired pam_unix_auth.so nullok
+authoptional pam_gnome_keyring.so

Copied: gnome-screensaver/repos/community-x86_64/PKGBUILD (from rev 87888, 
gnome-screensaver/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2013-04-08 14:39:56 UTC (rev 87889)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+
+pkgname=gnome-screensaver
+pkgver=3.6.1
+pkgrel=1
+pkgdesc="Screensaver designed to integrate well with the GNOME desktop."
+arch=('i686' 'x86_64')
+license=('GPL')
+url="http://live.gnome.org/GnomeScreensaver";
+backup=(etc/pam.d/gnome-screensaver)
+depends=('dbus-glib' 'libgnomekbd' 'gnome-desktop' 'gsettings-desktop-schemas' 
'libsystemd')
+makedepends=('pkgconfig' 'intltool' 'libxss')
+groups=('gnome')
+options=(!emptydirs)
+install=gnome-screensaver.install
+source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver%.*}/$pkgname-$pk

[arch-commits] Commit in (5 files)

2013-04-08 Thread Jan Steffens
Date: Monday, April 8, 2013 @ 16:40:12
  Author: heftig
Revision: 87890

extra2community: Moving notification-daemon from extra to community

Added:
  notification-daemon/
  notification-daemon/repos/
  notification-daemon/trunk/
  notification-daemon/trunk/PKGBUILD
  notification-daemon/trunk/notification-daemon.install

-+
 PKGBUILD|   34 ++
 notification-daemon.install |   22 ++
 2 files changed, 56 insertions(+)

Added: notification-daemon/trunk/PKGBUILD
===
--- notification-daemon/trunk/PKGBUILD  (rev 0)
+++ notification-daemon/trunk/PKGBUILD  2013-04-08 14:40:12 UTC (rev 87890)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Mark Rosenstand 
+
+pkgname=notification-daemon
+pkgver=0.7.6
+pkgrel=2
+pkgdesc="Notification daemon for the desktop notifications framework"
+arch=(i686 x86_64)
+license=(GPL)
+url="http://www.galago-project.org/specs/notification/";
+depends=(gtk3 libcanberra)
+makedepends=(pkgconfig intltool)
+options=('!libtool' '!emptydirs')
+source=(http://download.gnome.org/sources/${pkgname}/0.7/${pkgname}-${pkgver}.tar.xz)
+sha256sums=('64d0ce6fb12c94c3b73b701502c804c408cb5a94580bcae5ac37607639f7a0b3')
+
+build() {
+cd ${pkgname}-${pkgver}
+./configure --prefix=/usr --sysconfdir=/etc \
+--libexecdir=/usr/lib/notification-daemon-1.0 \
+--localstatedir=/var --disable-static
+make
+}
+
+check() {
+cd ${pkgname}-${pkgver}
+make check
+}
+
+package() {
+cd ${pkgname}-${pkgver}
+make DESTDIR=${pkgdir} install
+}


Property changes on: notification-daemon/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: notification-daemon/trunk/notification-daemon.install
===
--- notification-daemon/trunk/notification-daemon.install   
(rev 0)
+++ notification-daemon/trunk/notification-daemon.install   2013-04-08 
14:40:12 UTC (rev 87890)
@@ -0,0 +1,22 @@
+pkgname=notification-daemon
+
+post_install() {
+  usr/sbin/gconfpkg --install ${pkgname}
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+pre_upgrade() {
+  pre_remove $1
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  usr/sbin/gconfpkg --uninstall ${pkgname}
+}
+
+post_remove() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}



[arch-commits] Commit in (gnome-screensaver)

2013-04-08 Thread Jan Steffens
Date: Monday, April 8, 2013 @ 16:40:22
  Author: heftig
Revision: 182327

extra2community: Moving gnome-screensaver from extra to community

Deleted:
  gnome-screensaver/



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

2013-04-08 Thread Jan Steffens
Date: Monday, April 8, 2013 @ 16:40:30
  Author: heftig
Revision: 87891

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

Added:
  notification-daemon/repos/community-i686/
  notification-daemon/repos/community-i686/PKGBUILD
(from rev 87890, notification-daemon/trunk/PKGBUILD)
  notification-daemon/repos/community-i686/notification-daemon.install
(from rev 87890, notification-daemon/trunk/notification-daemon.install)
  notification-daemon/repos/community-x86_64/
  notification-daemon/repos/community-x86_64/PKGBUILD
(from rev 87890, notification-daemon/trunk/PKGBUILD)
  notification-daemon/repos/community-x86_64/notification-daemon.install
(from rev 87890, notification-daemon/trunk/notification-daemon.install)

--+
 community-i686/PKGBUILD  |   34 +
 community-i686/notification-daemon.install   |   22 
 community-x86_64/PKGBUILD|   34 +
 community-x86_64/notification-daemon.install |   22 
 4 files changed, 112 insertions(+)

Copied: notification-daemon/repos/community-i686/PKGBUILD (from rev 87890, 
notification-daemon/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-04-08 14:40:30 UTC (rev 87891)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Mark Rosenstand 
+
+pkgname=notification-daemon
+pkgver=0.7.6
+pkgrel=2
+pkgdesc="Notification daemon for the desktop notifications framework"
+arch=(i686 x86_64)
+license=(GPL)
+url="http://www.galago-project.org/specs/notification/";
+depends=(gtk3 libcanberra)
+makedepends=(pkgconfig intltool)
+options=('!libtool' '!emptydirs')
+source=(http://download.gnome.org/sources/${pkgname}/0.7/${pkgname}-${pkgver}.tar.xz)
+sha256sums=('64d0ce6fb12c94c3b73b701502c804c408cb5a94580bcae5ac37607639f7a0b3')
+
+build() {
+cd ${pkgname}-${pkgver}
+./configure --prefix=/usr --sysconfdir=/etc \
+--libexecdir=/usr/lib/notification-daemon-1.0 \
+--localstatedir=/var --disable-static
+make
+}
+
+check() {
+cd ${pkgname}-${pkgver}
+make check
+}
+
+package() {
+cd ${pkgname}-${pkgver}
+make DESTDIR=${pkgdir} install
+}

Copied: notification-daemon/repos/community-i686/notification-daemon.install 
(from rev 87890, notification-daemon/trunk/notification-daemon.install)
===
--- community-i686/notification-daemon.install  (rev 0)
+++ community-i686/notification-daemon.install  2013-04-08 14:40:30 UTC (rev 
87891)
@@ -0,0 +1,22 @@
+pkgname=notification-daemon
+
+post_install() {
+  usr/sbin/gconfpkg --install ${pkgname}
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+pre_upgrade() {
+  pre_remove $1
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  usr/sbin/gconfpkg --uninstall ${pkgname}
+}
+
+post_remove() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}

Copied: notification-daemon/repos/community-x86_64/PKGBUILD (from rev 87890, 
notification-daemon/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2013-04-08 14:40:30 UTC (rev 87891)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Mark Rosenstand 
+
+pkgname=notification-daemon
+pkgver=0.7.6
+pkgrel=2
+pkgdesc="Notification daemon for the desktop notifications framework"
+arch=(i686 x86_64)
+license=(GPL)
+url="http://www.galago-project.org/specs/notification/";
+depends=(gtk3 libcanberra)
+makedepends=(pkgconfig intltool)
+options=('!libtool' '!emptydirs')
+source=(http://download.gnome.org/sources/${pkgname}/0.7/${pkgname}-${pkgver}.tar.xz)
+sha256sums=('64d0ce6fb12c94c3b73b701502c804c408cb5a94580bcae5ac37607639f7a0b3')
+
+build() {
+cd ${pkgname}-${pkgver}
+./configure --prefix=/usr --sysconfdir=/etc \
+--libexecdir=/usr/lib/notification-daemon-1.0 \
+--localstatedir=/var --disable-static
+make
+}
+
+check() {
+cd ${pkgname}-${pkgver}
+make check
+}
+
+package() {
+cd ${pkgname}-${pkgver}
+make DESTDIR=${pkgdir} install
+}

Copied: notification-daemon/repos/community-x86_64/notification-daemon.install 
(from rev 87890, notification-daemon/trunk/notification-daemon.install)
===
--- community-x86_64/notification-daemon.install
(rev 0)
+++ community-x86_64/notification-daemon.install2013-04-08 14:40:30 UTC 
(rev 87891)
@@ -0,0 +1,22 @@
+pkgname=notification-daemon
+
+post_install() {
+  usr/sbin/gconfpkg --install ${pkgname}
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+pre_upgrade() {
+  pre_remove $1

[arch-commits] Commit in (6 files)

2013-04-08 Thread Jan Steffens
Date: Monday, April 8, 2013 @ 16:40:35
  Author: heftig
Revision: 87892

extra2community: Moving gnome-phone-manager from extra to community

Added:
  gnome-phone-manager/
  gnome-phone-manager/repos/
  gnome-phone-manager/trunk/
  gnome-phone-manager/trunk/PKGBUILD
  gnome-phone-manager/trunk/gnome-phone-manager-0.68-eds.patch
  gnome-phone-manager/trunk/gnome-phone-manager.install

+
 PKGBUILD   |   35 +++
 gnome-phone-manager-0.68-eds.patch |  386 +++
 gnome-phone-manager.install|   17 +
 3 files changed, 438 insertions(+)

Added: gnome-phone-manager/trunk/PKGBUILD
===
--- gnome-phone-manager/trunk/PKGBUILD  (rev 0)
+++ gnome-phone-manager/trunk/PKGBUILD  2013-04-08 14:40:35 UTC (rev 87892)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Roman Kyrylych 
+
+pkgname=gnome-phone-manager
+pkgver=0.68
+pkgrel=3
+pkgdesc="Control your mobile phone from your GNOME desktop."
+arch=('i686' 'x86_64')
+url="http://live.gnome.org/PhoneManager";
+license=('GPL')
+depends=('evolution-data-server' 'gnokii' 'gnome-bluetooth' 'gnome-icon-theme' 
'libcanberra' 'gconf')
+makedepends=('intltool')
+options=('!emptydirs' '!libtool')
+install=gnome-phone-manager.install
+source=(ftp://ftp.archlinux.org/other/gnome-phone-manager/gnome-phone-manager-0.68-git20121019.tar.xz
+gnome-phone-manager-0.68-eds.patch)
+sha256sums=('885dfa80989c633a5ae8b118c9b7c903e18e44f0e9fc89e6a9bae05da87c9b15'
+'98d5c2d3034081eebbaa0dac85f53dcc40c8970114f5711aff8c37bab2931a66')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  patch -p1 -i ../gnome-phone-manager-0.68-eds.patch
+  ./configure --prefix=/usr --sysconfdir=/etc \
+--localstatedir=/var --disable-static
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 install
+
+  install -m755 -d "${pkgdir}/usr/share/gconf/schemas"
+  gconf-merge-schema "${pkgdir}/usr/share/gconf/schemas/${pkgname}.schemas" 
--domain gnome-phone-manager "${pkgdir}"/etc/gconf/schemas/*.schemas
+  rm -f "${pkgdir}"/etc/gconf/schemas/*.schemas
+}


Property changes on: gnome-phone-manager/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: gnome-phone-manager/trunk/gnome-phone-manager-0.68-eds.patch
===
--- gnome-phone-manager/trunk/gnome-phone-manager-0.68-eds.patch
(rev 0)
+++ gnome-phone-manager/trunk/gnome-phone-manager-0.68-eds.patch
2013-04-08 14:40:35 UTC (rev 87892)
@@ -0,0 +1,386 @@
+diff --git a/cut-n-paste/e-contact-entry/e-contact-entry.c 
b/cut-n-paste/e-contact-entry/e-contact-entry.c
+index dc8e2e3..d95e5b9 100644
+--- a/cut-n-paste/e-contact-entry/e-contact-entry.c
 b/cut-n-paste/e-contact-entry/e-contact-entry.c
+@@ -38,11 +38,6 @@
+ #include 
+ #include 
+ 
+-#include 
+-#include 
+-#include 
+-#include 
+-
+ #include "e-contact-entry.h"
+ #include "econtactentry-marshal.h"
+ 
+@@ -59,7 +54,7 @@ static int signals[LAST_SIGNAL] = { 0 };
+ /* Properties */
+ enum {
+   PROP_0, /* TODO: why? */
+-  PROP_SOURCE_LIST,
++  PROP_REGISTRY,
+   PROP_COMPLETE_LENGTH,
+ };
+ 
+@@ -70,7 +65,7 @@ enum {
+ struct EContactEntryPriv {
+   GtkEntryCompletion *completion;
+   GtkListStore *store;
+-  ESourceList *source_list;
++  ESourceRegistry *registry;
+   /* A list of EntryLookup structs we are searching */
+   GList *lookup_entries;
+   /* Number of characters to start searching at */
+@@ -227,7 +222,7 @@ e_contact_entry_display_func (EContact *contact)
+   emails = e_contact_get (contact, E_CONTACT_EMAIL);
+   for (l = emails; l != NULL; l = l->next) {
+ item = g_new0 (EContactEntyItem, 1);
+-item->identifier = item->identifier = g_strdup (l->data);
++item->identifier = g_strdup (l->data);
+ item->display_string = g_strdup_printf ("%s <%s>", 
(char*)e_contact_get_const (contact, E_CONTACT_NAME_OR_ORG), item->identifier);
+ 
+ items = g_list_prepend (items, item);
+@@ -276,22 +271,13 @@ view_contacts_added_cb (EBook *book, GList *contacts, 
gpointer user_data)
+   return;
+ 
+ photo = e_contact_get (contact, E_CONTACT_PHOTO);
+-#ifndef HAVE_ECONTACTPHOTOTYPE
+-if (photo) {
+-#else
+ if (photo && photo->type == E_CONTACT_PHOTO_TYPE_INLINED) {
+-#endif
+   GdkPixbufLoader *loader;
+ 
+   loader = gdk_pixbuf_loader_new ();
+ 
+-#ifndef HAVE_ECONTACTPHOTOTYPE
+-  if (gdk_pixbuf_loader_write (loader, (guchar *)photo->data,
+-photo->length, NULL))
+-#else
+   if (gdk_pixbuf_loader_write (loader, (guchar *)photo->data.inlined.data,
+ photo->data.inlined.length, NULL))
+-#endif
+ pixbuf = gdk_pixbuf_loader_get_

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

2013-04-08 Thread Jan Steffens
Date: Monday, April 8, 2013 @ 16:40:57
  Author: heftig
Revision: 87893

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

Added:
  gnome-phone-manager/repos/community-i686/
  gnome-phone-manager/repos/community-i686/PKGBUILD
(from rev 87892, gnome-phone-manager/trunk/PKGBUILD)
  gnome-phone-manager/repos/community-i686/gnome-phone-manager-0.68-eds.patch
(from rev 87892, 
gnome-phone-manager/trunk/gnome-phone-manager-0.68-eds.patch)
  gnome-phone-manager/repos/community-i686/gnome-phone-manager.install
(from rev 87892, gnome-phone-manager/trunk/gnome-phone-manager.install)
  gnome-phone-manager/repos/community-x86_64/
  gnome-phone-manager/repos/community-x86_64/PKGBUILD
(from rev 87892, gnome-phone-manager/trunk/PKGBUILD)
  gnome-phone-manager/repos/community-x86_64/gnome-phone-manager-0.68-eds.patch
(from rev 87892, 
gnome-phone-manager/trunk/gnome-phone-manager-0.68-eds.patch)
  gnome-phone-manager/repos/community-x86_64/gnome-phone-manager.install
(from rev 87892, gnome-phone-manager/trunk/gnome-phone-manager.install)

-+
 community-i686/PKGBUILD |   35 +
 community-i686/gnome-phone-manager-0.68-eds.patch   |  386 ++
 community-i686/gnome-phone-manager.install  |   17 
 community-x86_64/PKGBUILD   |   35 +
 community-x86_64/gnome-phone-manager-0.68-eds.patch |  386 ++
 community-x86_64/gnome-phone-manager.install|   17 
 6 files changed, 876 insertions(+)

Copied: gnome-phone-manager/repos/community-i686/PKGBUILD (from rev 87892, 
gnome-phone-manager/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-04-08 14:40:57 UTC (rev 87893)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Roman Kyrylych 
+
+pkgname=gnome-phone-manager
+pkgver=0.68
+pkgrel=3
+pkgdesc="Control your mobile phone from your GNOME desktop."
+arch=('i686' 'x86_64')
+url="http://live.gnome.org/PhoneManager";
+license=('GPL')
+depends=('evolution-data-server' 'gnokii' 'gnome-bluetooth' 'gnome-icon-theme' 
'libcanberra' 'gconf')
+makedepends=('intltool')
+options=('!emptydirs' '!libtool')
+install=gnome-phone-manager.install
+source=(ftp://ftp.archlinux.org/other/gnome-phone-manager/gnome-phone-manager-0.68-git20121019.tar.xz
+gnome-phone-manager-0.68-eds.patch)
+sha256sums=('885dfa80989c633a5ae8b118c9b7c903e18e44f0e9fc89e6a9bae05da87c9b15'
+'98d5c2d3034081eebbaa0dac85f53dcc40c8970114f5711aff8c37bab2931a66')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  patch -p1 -i ../gnome-phone-manager-0.68-eds.patch
+  ./configure --prefix=/usr --sysconfdir=/etc \
+--localstatedir=/var --disable-static
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 install
+
+  install -m755 -d "${pkgdir}/usr/share/gconf/schemas"
+  gconf-merge-schema "${pkgdir}/usr/share/gconf/schemas/${pkgname}.schemas" 
--domain gnome-phone-manager "${pkgdir}"/etc/gconf/schemas/*.schemas
+  rm -f "${pkgdir}"/etc/gconf/schemas/*.schemas
+}

Copied: 
gnome-phone-manager/repos/community-i686/gnome-phone-manager-0.68-eds.patch 
(from rev 87892, gnome-phone-manager/trunk/gnome-phone-manager-0.68-eds.patch)
===
--- community-i686/gnome-phone-manager-0.68-eds.patch   
(rev 0)
+++ community-i686/gnome-phone-manager-0.68-eds.patch   2013-04-08 14:40:57 UTC 
(rev 87893)
@@ -0,0 +1,386 @@
+diff --git a/cut-n-paste/e-contact-entry/e-contact-entry.c 
b/cut-n-paste/e-contact-entry/e-contact-entry.c
+index dc8e2e3..d95e5b9 100644
+--- a/cut-n-paste/e-contact-entry/e-contact-entry.c
 b/cut-n-paste/e-contact-entry/e-contact-entry.c
+@@ -38,11 +38,6 @@
+ #include 
+ #include 
+ 
+-#include 
+-#include 
+-#include 
+-#include 
+-
+ #include "e-contact-entry.h"
+ #include "econtactentry-marshal.h"
+ 
+@@ -59,7 +54,7 @@ static int signals[LAST_SIGNAL] = { 0 };
+ /* Properties */
+ enum {
+   PROP_0, /* TODO: why? */
+-  PROP_SOURCE_LIST,
++  PROP_REGISTRY,
+   PROP_COMPLETE_LENGTH,
+ };
+ 
+@@ -70,7 +65,7 @@ enum {
+ struct EContactEntryPriv {
+   GtkEntryCompletion *completion;
+   GtkListStore *store;
+-  ESourceList *source_list;
++  ESourceRegistry *registry;
+   /* A list of EntryLookup structs we are searching */
+   GList *lookup_entries;
+   /* Number of characters to start searching at */
+@@ -227,7 +222,7 @@ e_contact_entry_display_func (EContact *contact)
+   emails = e_contact_get (contact, E_CONTACT_EMAIL);
+   for (l = emails; l != NULL; l = l->next) {
+ item = g_new0 (EContactEntyItem, 1);
+-item->identifier = item->identifier = g_strdup (l->data);
++item->identifier = g_strdup (l->data);
+ item->display_string = g_strdup_printf ("%s <%s>", 
(char*)e_cont

[arch-commits] Commit in (5 files)

2013-04-08 Thread Jan Steffens
Date: Monday, April 8, 2013 @ 16:41:12
  Author: heftig
Revision: 87894

extra2community: Moving gnome-panel from extra to community

Added:
  gnome-panel/
  gnome-panel/repos/
  gnome-panel/trunk/
  gnome-panel/trunk/PKGBUILD
  gnome-panel/trunk/gnome-panel.install

-+
 PKGBUILD|   38 ++
 gnome-panel.install |   24 
 2 files changed, 62 insertions(+)

Added: gnome-panel/trunk/PKGBUILD
===
--- gnome-panel/trunk/PKGBUILD  (rev 0)
+++ gnome-panel/trunk/PKGBUILD  2013-04-08 14:41:12 UTC (rev 87894)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=gnome-panel
+pkgver=3.6.2
+pkgrel=1
+arch=('i686' 'x86_64')
+license=('GPL')
+pkgdesc="The GNOME Panel"
+url="http://www.gnome.org";
+depends=('gnome-menus' 'gnome-desktop' 'evolution-data-server' 'librsvg' 
'libwnck3' 'libsm' 'dconf'
+ 'gconf' 'telepathy-glib')
+makedepends=('yelp-tools' 'intltool' 'gobject-introspection' 'networkmanager' 
'libcanberra')
+install=gnome-panel.install
+groups=('gnome')
+provides=("gnome-panel-bonobo=${pkgver}")
+options=('!libtool' '!emptydirs')
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:3}/$pkgname-$pkgver.tar.xz)
+sha256sums=('a41c45c5512e796b8602ce50bf0d205993eab364c860aae31afa582d77b77079')
+
+build() {
+  cd "$pkgname-$pkgver"
+  PYTHON=/usr/bin/python2 ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-static \
+  --libexecdir=/usr/lib/gnome-panel \
+  --disable-scrollkeeper \
+  --disable-schemas-compile
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 DESTDIR="$pkgdir" install
+
+  install -m755 -d "$pkgdir/usr/share/gconf/schemas"
+  gconf-merge-schema "$pkgdir/usr/share/gconf/schemas/$pkgname.schemas" 
--domain gnome-panel-3.0 "$pkgdir"/etc/gconf/schemas/*.schemas
+  rm -f "$pkgdir"/etc/gconf/schemas/*.schemas
+}


Property changes on: gnome-panel/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: gnome-panel/trunk/gnome-panel.install
===
--- gnome-panel/trunk/gnome-panel.install   (rev 0)
+++ gnome-panel/trunk/gnome-panel.install   2013-04-08 14:41:12 UTC (rev 
87894)
@@ -0,0 +1,24 @@
+pkgname=gnome-panel
+
+post_install() {
+  gconfpkg --install $pkgname
+  glib-compile-schemas /usr/share/glib-2.0/schemas
+  gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+}
+
+pre_upgrade() {
+  pre_remove
+}
+
+post_upgrade() {
+  post_install
+}
+
+pre_remove() {
+  gconfpkg --uninstall $pkgname
+}
+
+post_remove() {
+  glib-compile-schemas /usr/share/glib-2.0/schemas
+  gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+}



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

2013-04-08 Thread Jan Steffens
Date: Monday, April 8, 2013 @ 16:41:29
  Author: heftig
Revision: 87895

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

Added:
  gnome-panel/repos/community-i686/
  gnome-panel/repos/community-i686/PKGBUILD
(from rev 87894, gnome-panel/trunk/PKGBUILD)
  gnome-panel/repos/community-i686/gnome-panel.install
(from rev 87894, gnome-panel/trunk/gnome-panel.install)
  gnome-panel/repos/community-x86_64/
  gnome-panel/repos/community-x86_64/PKGBUILD
(from rev 87894, gnome-panel/trunk/PKGBUILD)
  gnome-panel/repos/community-x86_64/gnome-panel.install
(from rev 87894, gnome-panel/trunk/gnome-panel.install)

--+
 community-i686/PKGBUILD  |   38 +
 community-i686/gnome-panel.install   |   24 
 community-x86_64/PKGBUILD|   38 +
 community-x86_64/gnome-panel.install |   24 
 4 files changed, 124 insertions(+)

Copied: gnome-panel/repos/community-i686/PKGBUILD (from rev 87894, 
gnome-panel/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-04-08 14:41:29 UTC (rev 87895)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=gnome-panel
+pkgver=3.6.2
+pkgrel=1
+arch=('i686' 'x86_64')
+license=('GPL')
+pkgdesc="The GNOME Panel"
+url="http://www.gnome.org";
+depends=('gnome-menus' 'gnome-desktop' 'evolution-data-server' 'librsvg' 
'libwnck3' 'libsm' 'dconf'
+ 'gconf' 'telepathy-glib')
+makedepends=('yelp-tools' 'intltool' 'gobject-introspection' 'networkmanager' 
'libcanberra')
+install=gnome-panel.install
+groups=('gnome')
+provides=("gnome-panel-bonobo=${pkgver}")
+options=('!libtool' '!emptydirs')
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:3}/$pkgname-$pkgver.tar.xz)
+sha256sums=('a41c45c5512e796b8602ce50bf0d205993eab364c860aae31afa582d77b77079')
+
+build() {
+  cd "$pkgname-$pkgver"
+  PYTHON=/usr/bin/python2 ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-static \
+  --libexecdir=/usr/lib/gnome-panel \
+  --disable-scrollkeeper \
+  --disable-schemas-compile
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 DESTDIR="$pkgdir" install
+
+  install -m755 -d "$pkgdir/usr/share/gconf/schemas"
+  gconf-merge-schema "$pkgdir/usr/share/gconf/schemas/$pkgname.schemas" 
--domain gnome-panel-3.0 "$pkgdir"/etc/gconf/schemas/*.schemas
+  rm -f "$pkgdir"/etc/gconf/schemas/*.schemas
+}

Copied: gnome-panel/repos/community-i686/gnome-panel.install (from rev 87894, 
gnome-panel/trunk/gnome-panel.install)
===
--- community-i686/gnome-panel.install  (rev 0)
+++ community-i686/gnome-panel.install  2013-04-08 14:41:29 UTC (rev 87895)
@@ -0,0 +1,24 @@
+pkgname=gnome-panel
+
+post_install() {
+  gconfpkg --install $pkgname
+  glib-compile-schemas /usr/share/glib-2.0/schemas
+  gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+}
+
+pre_upgrade() {
+  pre_remove
+}
+
+post_upgrade() {
+  post_install
+}
+
+pre_remove() {
+  gconfpkg --uninstall $pkgname
+}
+
+post_remove() {
+  glib-compile-schemas /usr/share/glib-2.0/schemas
+  gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+}

Copied: gnome-panel/repos/community-x86_64/PKGBUILD (from rev 87894, 
gnome-panel/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2013-04-08 14:41:29 UTC (rev 87895)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=gnome-panel
+pkgver=3.6.2
+pkgrel=1
+arch=('i686' 'x86_64')
+license=('GPL')
+pkgdesc="The GNOME Panel"
+url="http://www.gnome.org";
+depends=('gnome-menus' 'gnome-desktop' 'evolution-data-server' 'librsvg' 
'libwnck3' 'libsm' 'dconf'
+ 'gconf' 'telepathy-glib')
+makedepends=('yelp-tools' 'intltool' 'gobject-introspection' 'networkmanager' 
'libcanberra')
+install=gnome-panel.install
+groups=('gnome')
+provides=("gnome-panel-bonobo=${pkgver}")
+options=('!libtool' '!emptydirs')
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:3}/$pkgname-$pkgver.tar.xz)
+sha256sums=('a41c45c5512e796b8602ce50bf0d205993eab364c860aae31afa582d77b77079')
+
+build() {
+  cd "$pkgname-$pkgver"
+  PYTHON=/usr/bin/python2 ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-static \
+  --libexecdir=/usr/lib/gnome-panel \
+  --disable-scrollkeeper \
+  --disable-schemas-compile
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 DESTDIR="$pkgdir" install
+
+  install -m755 -d "$pkgdir/usr/share/gconf/schemas"
+  gconf-merge-schema "$pkgdir/usr/share/gconf/sch

[arch-commits] Commit in (5 files)

2013-04-08 Thread Jan Steffens
Date: Monday, April 8, 2013 @ 16:41:44
  Author: heftig
Revision: 87896

extra2community: Moving gnome-applets from extra to community

Added:
  gnome-applets/
  gnome-applets/repos/
  gnome-applets/trunk/
  gnome-applets/trunk/PKGBUILD
  gnome-applets/trunk/gnome-applets.install

---+
 PKGBUILD  |   35 +++
 gnome-applets.install |   24 
 2 files changed, 59 insertions(+)

Added: gnome-applets/trunk/PKGBUILD
===
--- gnome-applets/trunk/PKGBUILD(rev 0)
+++ gnome-applets/trunk/PKGBUILD2013-04-08 14:41:44 UTC (rev 87896)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=gnome-applets
+pkgver=3.5.92
+pkgrel=1
+pkgdesc="GNOME Applets"
+arch=(i686 x86_64)
+license=('GPL')
+depends=('gnome-panel' 'libgtop' 'gucharmap' 'libnotify')
+makedepends=('gnome-doc-utils' 'intltool' 'gnome-settings-daemon' 
'networkmanager')
+options=(!emptydirs)
+url="http://www.gnome.org";
+install=gnome-applets.install
+source=(http://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('f6178cb702a39a4103fcb97e9a266bf6d05f05ac5064818f119c023d76170e83')
+
+build() {
+  cd "$pkgname-$pkgver"
+  PYTHON=/usr/bin/python2 ./configure --prefix=/usr \
+  --sysconfdir=/etc --libexecdir=/usr/lib/gnome-applets \
+  --localstatedir=/var --disable-static \
+  --disable-scrollkeeper --disable-schemas-install \
+  --without-hal
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 DESTDIR="$pkgdir" install
+
+  install -m755 -d "$pkgdir/usr/share/gconf/schemas"
+  gconf-merge-schema "$pkgdir/usr/share/gconf/schemas/$pkgname.schemas" 
--domain gnome-applets-3.0 "$pkgdir"/etc/gconf/schemas/*.schemas
+  rm -f "$pkgdir"/etc/gconf/schemas/*.schemas
+}


Property changes on: gnome-applets/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: gnome-applets/trunk/gnome-applets.install
===
--- gnome-applets/trunk/gnome-applets.install   (rev 0)
+++ gnome-applets/trunk/gnome-applets.install   2013-04-08 14:41:44 UTC (rev 
87896)
@@ -0,0 +1,24 @@
+pkgname=gnome-applets
+
+post_install() {
+  gconfpkg --install ${pkgname}
+  glib-compile-schemas /usr/share/glib-2.0/schemas
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+pre_upgrade() {
+  pre_remove $1
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  gconfpkg --uninstall ${pkgname}
+}
+
+post_remove() {
+  glib-compile-schemas /usr/share/glib-2.0/schemas
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}



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

2013-04-08 Thread Jan Steffens
Date: Monday, April 8, 2013 @ 16:42:01
  Author: heftig
Revision: 87897

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

Added:
  gnome-applets/repos/community-i686/
  gnome-applets/repos/community-i686/PKGBUILD
(from rev 87896, gnome-applets/trunk/PKGBUILD)
  gnome-applets/repos/community-i686/gnome-applets.install
(from rev 87896, gnome-applets/trunk/gnome-applets.install)
  gnome-applets/repos/community-x86_64/
  gnome-applets/repos/community-x86_64/PKGBUILD
(from rev 87896, gnome-applets/trunk/PKGBUILD)
  gnome-applets/repos/community-x86_64/gnome-applets.install
(from rev 87896, gnome-applets/trunk/gnome-applets.install)

+
 community-i686/PKGBUILD|   35 +++
 community-i686/gnome-applets.install   |   24 +
 community-x86_64/PKGBUILD  |   35 +++
 community-x86_64/gnome-applets.install |   24 +
 4 files changed, 118 insertions(+)

Copied: gnome-applets/repos/community-i686/PKGBUILD (from rev 87896, 
gnome-applets/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-04-08 14:42:01 UTC (rev 87897)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=gnome-applets
+pkgver=3.5.92
+pkgrel=1
+pkgdesc="GNOME Applets"
+arch=(i686 x86_64)
+license=('GPL')
+depends=('gnome-panel' 'libgtop' 'gucharmap' 'libnotify')
+makedepends=('gnome-doc-utils' 'intltool' 'gnome-settings-daemon' 
'networkmanager')
+options=(!emptydirs)
+url="http://www.gnome.org";
+install=gnome-applets.install
+source=(http://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('f6178cb702a39a4103fcb97e9a266bf6d05f05ac5064818f119c023d76170e83')
+
+build() {
+  cd "$pkgname-$pkgver"
+  PYTHON=/usr/bin/python2 ./configure --prefix=/usr \
+  --sysconfdir=/etc --libexecdir=/usr/lib/gnome-applets \
+  --localstatedir=/var --disable-static \
+  --disable-scrollkeeper --disable-schemas-install \
+  --without-hal
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 DESTDIR="$pkgdir" install
+
+  install -m755 -d "$pkgdir/usr/share/gconf/schemas"
+  gconf-merge-schema "$pkgdir/usr/share/gconf/schemas/$pkgname.schemas" 
--domain gnome-applets-3.0 "$pkgdir"/etc/gconf/schemas/*.schemas
+  rm -f "$pkgdir"/etc/gconf/schemas/*.schemas
+}

Copied: gnome-applets/repos/community-i686/gnome-applets.install (from rev 
87896, gnome-applets/trunk/gnome-applets.install)
===
--- community-i686/gnome-applets.install(rev 0)
+++ community-i686/gnome-applets.install2013-04-08 14:42:01 UTC (rev 
87897)
@@ -0,0 +1,24 @@
+pkgname=gnome-applets
+
+post_install() {
+  gconfpkg --install ${pkgname}
+  glib-compile-schemas /usr/share/glib-2.0/schemas
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+pre_upgrade() {
+  pre_remove $1
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  gconfpkg --uninstall ${pkgname}
+}
+
+post_remove() {
+  glib-compile-schemas /usr/share/glib-2.0/schemas
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}

Copied: gnome-applets/repos/community-x86_64/PKGBUILD (from rev 87896, 
gnome-applets/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2013-04-08 14:42:01 UTC (rev 87897)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=gnome-applets
+pkgver=3.5.92
+pkgrel=1
+pkgdesc="GNOME Applets"
+arch=(i686 x86_64)
+license=('GPL')
+depends=('gnome-panel' 'libgtop' 'gucharmap' 'libnotify')
+makedepends=('gnome-doc-utils' 'intltool' 'gnome-settings-daemon' 
'networkmanager')
+options=(!emptydirs)
+url="http://www.gnome.org";
+install=gnome-applets.install
+source=(http://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('f6178cb702a39a4103fcb97e9a266bf6d05f05ac5064818f119c023d76170e83')
+
+build() {
+  cd "$pkgname-$pkgver"
+  PYTHON=/usr/bin/python2 ./configure --prefix=/usr \
+  --sysconfdir=/etc --libexecdir=/usr/lib/gnome-applets \
+  --localstatedir=/var --disable-static \
+  --disable-scrollkeeper --disable-schemas-install \
+  --without-hal
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 DESTDIR="$pkgdir" install
+
+  install -m755 -d "$pkgdir/usr/share/gconf/schemas"
+  gconf-merge-schema "$pkgdir/usr/share/gconf/schemas/$pkgname.schemas" 
--domain gnome-applets-3.0 "$pkgdir"/etc/gconf/schemas/*.schemas
+  rm -f "$pkgdir"/etc/gconf/schemas/*.schemas
+}

Copied: gnome-applets/repos/community-x86_64/gnome-applets.install (from rev 
87896, 

[arch-commits] Commit in (4 files)

2013-04-08 Thread Jan Steffens
Date: Monday, April 8, 2013 @ 16:44:29
  Author: heftig
Revision: 87898

cleanup mess

Deleted:
  gnome-applets/
  gnome-panel/
  gnome-phone-manager/
  notification-daemon/



[arch-commits] Commit in (6 files)

2013-04-08 Thread Jan Steffens
Date: Monday, April 8, 2013 @ 16:44:51
  Author: heftig
Revision: 87899

extra2community: Moving gnome-phone-manager from extra to community

Added:
  gnome-phone-manager/
  gnome-phone-manager/repos/
  gnome-phone-manager/trunk/
  gnome-phone-manager/trunk/PKGBUILD
  gnome-phone-manager/trunk/gnome-phone-manager-0.68-eds.patch
  gnome-phone-manager/trunk/gnome-phone-manager.install

+
 PKGBUILD   |   35 +++
 gnome-phone-manager-0.68-eds.patch |  386 +++
 gnome-phone-manager.install|   17 +
 3 files changed, 438 insertions(+)

Added: gnome-phone-manager/trunk/PKGBUILD
===
--- gnome-phone-manager/trunk/PKGBUILD  (rev 0)
+++ gnome-phone-manager/trunk/PKGBUILD  2013-04-08 14:44:51 UTC (rev 87899)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Roman Kyrylych 
+
+pkgname=gnome-phone-manager
+pkgver=0.68
+pkgrel=3
+pkgdesc="Control your mobile phone from your GNOME desktop."
+arch=('i686' 'x86_64')
+url="http://live.gnome.org/PhoneManager";
+license=('GPL')
+depends=('evolution-data-server' 'gnokii' 'gnome-bluetooth' 'gnome-icon-theme' 
'libcanberra' 'gconf')
+makedepends=('intltool')
+options=('!emptydirs' '!libtool')
+install=gnome-phone-manager.install
+source=(ftp://ftp.archlinux.org/other/gnome-phone-manager/gnome-phone-manager-0.68-git20121019.tar.xz
+gnome-phone-manager-0.68-eds.patch)
+sha256sums=('885dfa80989c633a5ae8b118c9b7c903e18e44f0e9fc89e6a9bae05da87c9b15'
+'98d5c2d3034081eebbaa0dac85f53dcc40c8970114f5711aff8c37bab2931a66')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  patch -p1 -i ../gnome-phone-manager-0.68-eds.patch
+  ./configure --prefix=/usr --sysconfdir=/etc \
+--localstatedir=/var --disable-static
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 install
+
+  install -m755 -d "${pkgdir}/usr/share/gconf/schemas"
+  gconf-merge-schema "${pkgdir}/usr/share/gconf/schemas/${pkgname}.schemas" 
--domain gnome-phone-manager "${pkgdir}"/etc/gconf/schemas/*.schemas
+  rm -f "${pkgdir}"/etc/gconf/schemas/*.schemas
+}


Property changes on: gnome-phone-manager/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: gnome-phone-manager/trunk/gnome-phone-manager-0.68-eds.patch
===
--- gnome-phone-manager/trunk/gnome-phone-manager-0.68-eds.patch
(rev 0)
+++ gnome-phone-manager/trunk/gnome-phone-manager-0.68-eds.patch
2013-04-08 14:44:51 UTC (rev 87899)
@@ -0,0 +1,386 @@
+diff --git a/cut-n-paste/e-contact-entry/e-contact-entry.c 
b/cut-n-paste/e-contact-entry/e-contact-entry.c
+index dc8e2e3..d95e5b9 100644
+--- a/cut-n-paste/e-contact-entry/e-contact-entry.c
 b/cut-n-paste/e-contact-entry/e-contact-entry.c
+@@ -38,11 +38,6 @@
+ #include 
+ #include 
+ 
+-#include 
+-#include 
+-#include 
+-#include 
+-
+ #include "e-contact-entry.h"
+ #include "econtactentry-marshal.h"
+ 
+@@ -59,7 +54,7 @@ static int signals[LAST_SIGNAL] = { 0 };
+ /* Properties */
+ enum {
+   PROP_0, /* TODO: why? */
+-  PROP_SOURCE_LIST,
++  PROP_REGISTRY,
+   PROP_COMPLETE_LENGTH,
+ };
+ 
+@@ -70,7 +65,7 @@ enum {
+ struct EContactEntryPriv {
+   GtkEntryCompletion *completion;
+   GtkListStore *store;
+-  ESourceList *source_list;
++  ESourceRegistry *registry;
+   /* A list of EntryLookup structs we are searching */
+   GList *lookup_entries;
+   /* Number of characters to start searching at */
+@@ -227,7 +222,7 @@ e_contact_entry_display_func (EContact *contact)
+   emails = e_contact_get (contact, E_CONTACT_EMAIL);
+   for (l = emails; l != NULL; l = l->next) {
+ item = g_new0 (EContactEntyItem, 1);
+-item->identifier = item->identifier = g_strdup (l->data);
++item->identifier = g_strdup (l->data);
+ item->display_string = g_strdup_printf ("%s <%s>", 
(char*)e_contact_get_const (contact, E_CONTACT_NAME_OR_ORG), item->identifier);
+ 
+ items = g_list_prepend (items, item);
+@@ -276,22 +271,13 @@ view_contacts_added_cb (EBook *book, GList *contacts, 
gpointer user_data)
+   return;
+ 
+ photo = e_contact_get (contact, E_CONTACT_PHOTO);
+-#ifndef HAVE_ECONTACTPHOTOTYPE
+-if (photo) {
+-#else
+ if (photo && photo->type == E_CONTACT_PHOTO_TYPE_INLINED) {
+-#endif
+   GdkPixbufLoader *loader;
+ 
+   loader = gdk_pixbuf_loader_new ();
+ 
+-#ifndef HAVE_ECONTACTPHOTOTYPE
+-  if (gdk_pixbuf_loader_write (loader, (guchar *)photo->data,
+-photo->length, NULL))
+-#else
+   if (gdk_pixbuf_loader_write (loader, (guchar *)photo->data.inlined.data,
+ photo->data.inlined.length, NULL))
+-#endif
+ pixbuf = gdk_pixbuf_loader_get_

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

2013-04-08 Thread Jan Steffens
Date: Monday, April 8, 2013 @ 16:45:13
  Author: heftig
Revision: 87900

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

Added:
  gnome-phone-manager/repos/community-i686/
  gnome-phone-manager/repos/community-i686/PKGBUILD
(from rev 87899, gnome-phone-manager/trunk/PKGBUILD)
  gnome-phone-manager/repos/community-i686/gnome-phone-manager-0.68-eds.patch
(from rev 87899, 
gnome-phone-manager/trunk/gnome-phone-manager-0.68-eds.patch)
  gnome-phone-manager/repos/community-i686/gnome-phone-manager.install
(from rev 87899, gnome-phone-manager/trunk/gnome-phone-manager.install)
  gnome-phone-manager/repos/community-x86_64/
  gnome-phone-manager/repos/community-x86_64/PKGBUILD
(from rev 87899, gnome-phone-manager/trunk/PKGBUILD)
  gnome-phone-manager/repos/community-x86_64/gnome-phone-manager-0.68-eds.patch
(from rev 87899, 
gnome-phone-manager/trunk/gnome-phone-manager-0.68-eds.patch)
  gnome-phone-manager/repos/community-x86_64/gnome-phone-manager.install
(from rev 87899, gnome-phone-manager/trunk/gnome-phone-manager.install)

-+
 community-i686/PKGBUILD |   35 +
 community-i686/gnome-phone-manager-0.68-eds.patch   |  386 ++
 community-i686/gnome-phone-manager.install  |   17 
 community-x86_64/PKGBUILD   |   35 +
 community-x86_64/gnome-phone-manager-0.68-eds.patch |  386 ++
 community-x86_64/gnome-phone-manager.install|   17 
 6 files changed, 876 insertions(+)

Copied: gnome-phone-manager/repos/community-i686/PKGBUILD (from rev 87899, 
gnome-phone-manager/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-04-08 14:45:13 UTC (rev 87900)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Roman Kyrylych 
+
+pkgname=gnome-phone-manager
+pkgver=0.68
+pkgrel=3
+pkgdesc="Control your mobile phone from your GNOME desktop."
+arch=('i686' 'x86_64')
+url="http://live.gnome.org/PhoneManager";
+license=('GPL')
+depends=('evolution-data-server' 'gnokii' 'gnome-bluetooth' 'gnome-icon-theme' 
'libcanberra' 'gconf')
+makedepends=('intltool')
+options=('!emptydirs' '!libtool')
+install=gnome-phone-manager.install
+source=(ftp://ftp.archlinux.org/other/gnome-phone-manager/gnome-phone-manager-0.68-git20121019.tar.xz
+gnome-phone-manager-0.68-eds.patch)
+sha256sums=('885dfa80989c633a5ae8b118c9b7c903e18e44f0e9fc89e6a9bae05da87c9b15'
+'98d5c2d3034081eebbaa0dac85f53dcc40c8970114f5711aff8c37bab2931a66')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  patch -p1 -i ../gnome-phone-manager-0.68-eds.patch
+  ./configure --prefix=/usr --sysconfdir=/etc \
+--localstatedir=/var --disable-static
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 install
+
+  install -m755 -d "${pkgdir}/usr/share/gconf/schemas"
+  gconf-merge-schema "${pkgdir}/usr/share/gconf/schemas/${pkgname}.schemas" 
--domain gnome-phone-manager "${pkgdir}"/etc/gconf/schemas/*.schemas
+  rm -f "${pkgdir}"/etc/gconf/schemas/*.schemas
+}

Copied: 
gnome-phone-manager/repos/community-i686/gnome-phone-manager-0.68-eds.patch 
(from rev 87899, gnome-phone-manager/trunk/gnome-phone-manager-0.68-eds.patch)
===
--- community-i686/gnome-phone-manager-0.68-eds.patch   
(rev 0)
+++ community-i686/gnome-phone-manager-0.68-eds.patch   2013-04-08 14:45:13 UTC 
(rev 87900)
@@ -0,0 +1,386 @@
+diff --git a/cut-n-paste/e-contact-entry/e-contact-entry.c 
b/cut-n-paste/e-contact-entry/e-contact-entry.c
+index dc8e2e3..d95e5b9 100644
+--- a/cut-n-paste/e-contact-entry/e-contact-entry.c
 b/cut-n-paste/e-contact-entry/e-contact-entry.c
+@@ -38,11 +38,6 @@
+ #include 
+ #include 
+ 
+-#include 
+-#include 
+-#include 
+-#include 
+-
+ #include "e-contact-entry.h"
+ #include "econtactentry-marshal.h"
+ 
+@@ -59,7 +54,7 @@ static int signals[LAST_SIGNAL] = { 0 };
+ /* Properties */
+ enum {
+   PROP_0, /* TODO: why? */
+-  PROP_SOURCE_LIST,
++  PROP_REGISTRY,
+   PROP_COMPLETE_LENGTH,
+ };
+ 
+@@ -70,7 +65,7 @@ enum {
+ struct EContactEntryPriv {
+   GtkEntryCompletion *completion;
+   GtkListStore *store;
+-  ESourceList *source_list;
++  ESourceRegistry *registry;
+   /* A list of EntryLookup structs we are searching */
+   GList *lookup_entries;
+   /* Number of characters to start searching at */
+@@ -227,7 +222,7 @@ e_contact_entry_display_func (EContact *contact)
+   emails = e_contact_get (contact, E_CONTACT_EMAIL);
+   for (l = emails; l != NULL; l = l->next) {
+ item = g_new0 (EContactEntyItem, 1);
+-item->identifier = item->identifier = g_strdup (l->data);
++item->identifier = g_strdup (l->data);
+ item->display_string = g_strdup_printf ("%s <%s>", 
(char*)e_cont

[arch-commits] Commit in (gnome-phone-manager)

2013-04-08 Thread Jan Steffens
Date: Monday, April 8, 2013 @ 16:45:41
  Author: heftig
Revision: 182330

extra2community: Moving gnome-phone-manager from extra to community

Deleted:
  gnome-phone-manager/



[arch-commits] Commit in (5 files)

2013-04-08 Thread Jan Steffens
Date: Monday, April 8, 2013 @ 16:45:57
  Author: heftig
Revision: 87901

extra2community: Moving gnome-panel from extra to community

Added:
  gnome-panel/
  gnome-panel/repos/
  gnome-panel/trunk/
  gnome-panel/trunk/PKGBUILD
  gnome-panel/trunk/gnome-panel.install

-+
 PKGBUILD|   38 ++
 gnome-panel.install |   24 
 2 files changed, 62 insertions(+)

Added: gnome-panel/trunk/PKGBUILD
===
--- gnome-panel/trunk/PKGBUILD  (rev 0)
+++ gnome-panel/trunk/PKGBUILD  2013-04-08 14:45:57 UTC (rev 87901)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=gnome-panel
+pkgver=3.6.2
+pkgrel=1
+arch=('i686' 'x86_64')
+license=('GPL')
+pkgdesc="The GNOME Panel"
+url="http://www.gnome.org";
+depends=('gnome-menus' 'gnome-desktop' 'evolution-data-server' 'librsvg' 
'libwnck3' 'libsm' 'dconf'
+ 'gconf' 'telepathy-glib')
+makedepends=('yelp-tools' 'intltool' 'gobject-introspection' 'networkmanager' 
'libcanberra')
+install=gnome-panel.install
+groups=('gnome')
+provides=("gnome-panel-bonobo=${pkgver}")
+options=('!libtool' '!emptydirs')
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:3}/$pkgname-$pkgver.tar.xz)
+sha256sums=('a41c45c5512e796b8602ce50bf0d205993eab364c860aae31afa582d77b77079')
+
+build() {
+  cd "$pkgname-$pkgver"
+  PYTHON=/usr/bin/python2 ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-static \
+  --libexecdir=/usr/lib/gnome-panel \
+  --disable-scrollkeeper \
+  --disable-schemas-compile
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 DESTDIR="$pkgdir" install
+
+  install -m755 -d "$pkgdir/usr/share/gconf/schemas"
+  gconf-merge-schema "$pkgdir/usr/share/gconf/schemas/$pkgname.schemas" 
--domain gnome-panel-3.0 "$pkgdir"/etc/gconf/schemas/*.schemas
+  rm -f "$pkgdir"/etc/gconf/schemas/*.schemas
+}


Property changes on: gnome-panel/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: gnome-panel/trunk/gnome-panel.install
===
--- gnome-panel/trunk/gnome-panel.install   (rev 0)
+++ gnome-panel/trunk/gnome-panel.install   2013-04-08 14:45:57 UTC (rev 
87901)
@@ -0,0 +1,24 @@
+pkgname=gnome-panel
+
+post_install() {
+  gconfpkg --install $pkgname
+  glib-compile-schemas /usr/share/glib-2.0/schemas
+  gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+}
+
+pre_upgrade() {
+  pre_remove
+}
+
+post_upgrade() {
+  post_install
+}
+
+pre_remove() {
+  gconfpkg --uninstall $pkgname
+}
+
+post_remove() {
+  glib-compile-schemas /usr/share/glib-2.0/schemas
+  gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+}



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

2013-04-08 Thread Jan Steffens
Date: Monday, April 8, 2013 @ 16:46:15
  Author: heftig
Revision: 87902

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

Added:
  gnome-panel/repos/community-i686/
  gnome-panel/repos/community-i686/PKGBUILD
(from rev 87901, gnome-panel/trunk/PKGBUILD)
  gnome-panel/repos/community-i686/gnome-panel.install
(from rev 87901, gnome-panel/trunk/gnome-panel.install)
  gnome-panel/repos/community-x86_64/
  gnome-panel/repos/community-x86_64/PKGBUILD
(from rev 87901, gnome-panel/trunk/PKGBUILD)
  gnome-panel/repos/community-x86_64/gnome-panel.install
(from rev 87901, gnome-panel/trunk/gnome-panel.install)

--+
 community-i686/PKGBUILD  |   38 +
 community-i686/gnome-panel.install   |   24 
 community-x86_64/PKGBUILD|   38 +
 community-x86_64/gnome-panel.install |   24 
 4 files changed, 124 insertions(+)

Copied: gnome-panel/repos/community-i686/PKGBUILD (from rev 87901, 
gnome-panel/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-04-08 14:46:15 UTC (rev 87902)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=gnome-panel
+pkgver=3.6.2
+pkgrel=1
+arch=('i686' 'x86_64')
+license=('GPL')
+pkgdesc="The GNOME Panel"
+url="http://www.gnome.org";
+depends=('gnome-menus' 'gnome-desktop' 'evolution-data-server' 'librsvg' 
'libwnck3' 'libsm' 'dconf'
+ 'gconf' 'telepathy-glib')
+makedepends=('yelp-tools' 'intltool' 'gobject-introspection' 'networkmanager' 
'libcanberra')
+install=gnome-panel.install
+groups=('gnome')
+provides=("gnome-panel-bonobo=${pkgver}")
+options=('!libtool' '!emptydirs')
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:3}/$pkgname-$pkgver.tar.xz)
+sha256sums=('a41c45c5512e796b8602ce50bf0d205993eab364c860aae31afa582d77b77079')
+
+build() {
+  cd "$pkgname-$pkgver"
+  PYTHON=/usr/bin/python2 ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-static \
+  --libexecdir=/usr/lib/gnome-panel \
+  --disable-scrollkeeper \
+  --disable-schemas-compile
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 DESTDIR="$pkgdir" install
+
+  install -m755 -d "$pkgdir/usr/share/gconf/schemas"
+  gconf-merge-schema "$pkgdir/usr/share/gconf/schemas/$pkgname.schemas" 
--domain gnome-panel-3.0 "$pkgdir"/etc/gconf/schemas/*.schemas
+  rm -f "$pkgdir"/etc/gconf/schemas/*.schemas
+}

Copied: gnome-panel/repos/community-i686/gnome-panel.install (from rev 87901, 
gnome-panel/trunk/gnome-panel.install)
===
--- community-i686/gnome-panel.install  (rev 0)
+++ community-i686/gnome-panel.install  2013-04-08 14:46:15 UTC (rev 87902)
@@ -0,0 +1,24 @@
+pkgname=gnome-panel
+
+post_install() {
+  gconfpkg --install $pkgname
+  glib-compile-schemas /usr/share/glib-2.0/schemas
+  gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+}
+
+pre_upgrade() {
+  pre_remove
+}
+
+post_upgrade() {
+  post_install
+}
+
+pre_remove() {
+  gconfpkg --uninstall $pkgname
+}
+
+post_remove() {
+  glib-compile-schemas /usr/share/glib-2.0/schemas
+  gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+}

Copied: gnome-panel/repos/community-x86_64/PKGBUILD (from rev 87901, 
gnome-panel/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2013-04-08 14:46:15 UTC (rev 87902)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=gnome-panel
+pkgver=3.6.2
+pkgrel=1
+arch=('i686' 'x86_64')
+license=('GPL')
+pkgdesc="The GNOME Panel"
+url="http://www.gnome.org";
+depends=('gnome-menus' 'gnome-desktop' 'evolution-data-server' 'librsvg' 
'libwnck3' 'libsm' 'dconf'
+ 'gconf' 'telepathy-glib')
+makedepends=('yelp-tools' 'intltool' 'gobject-introspection' 'networkmanager' 
'libcanberra')
+install=gnome-panel.install
+groups=('gnome')
+provides=("gnome-panel-bonobo=${pkgver}")
+options=('!libtool' '!emptydirs')
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:3}/$pkgname-$pkgver.tar.xz)
+sha256sums=('a41c45c5512e796b8602ce50bf0d205993eab364c860aae31afa582d77b77079')
+
+build() {
+  cd "$pkgname-$pkgver"
+  PYTHON=/usr/bin/python2 ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-static \
+  --libexecdir=/usr/lib/gnome-panel \
+  --disable-scrollkeeper \
+  --disable-schemas-compile
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 DESTDIR="$pkgdir" install
+
+  install -m755 -d "$pkgdir/usr/share/gconf/schemas"
+  gconf-merge-schema "$pkgdir/usr/share/gconf/sch

[arch-commits] Commit in (gnome-panel)

2013-04-08 Thread Jan Steffens
Date: Monday, April 8, 2013 @ 16:46:44
  Author: heftig
Revision: 182333

extra2community: Moving gnome-panel from extra to community

Deleted:
  gnome-panel/



[arch-commits] Commit in (5 files)

2013-04-08 Thread Jan Steffens
Date: Monday, April 8, 2013 @ 16:46:56
  Author: heftig
Revision: 87903

extra2community: Moving gnome-applets from extra to community

Added:
  gnome-applets/
  gnome-applets/repos/
  gnome-applets/trunk/
  gnome-applets/trunk/PKGBUILD
  gnome-applets/trunk/gnome-applets.install

---+
 PKGBUILD  |   35 +++
 gnome-applets.install |   24 
 2 files changed, 59 insertions(+)

Added: gnome-applets/trunk/PKGBUILD
===
--- gnome-applets/trunk/PKGBUILD(rev 0)
+++ gnome-applets/trunk/PKGBUILD2013-04-08 14:46:56 UTC (rev 87903)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=gnome-applets
+pkgver=3.5.92
+pkgrel=1
+pkgdesc="GNOME Applets"
+arch=(i686 x86_64)
+license=('GPL')
+depends=('gnome-panel' 'libgtop' 'gucharmap' 'libnotify')
+makedepends=('gnome-doc-utils' 'intltool' 'gnome-settings-daemon' 
'networkmanager')
+options=(!emptydirs)
+url="http://www.gnome.org";
+install=gnome-applets.install
+source=(http://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('f6178cb702a39a4103fcb97e9a266bf6d05f05ac5064818f119c023d76170e83')
+
+build() {
+  cd "$pkgname-$pkgver"
+  PYTHON=/usr/bin/python2 ./configure --prefix=/usr \
+  --sysconfdir=/etc --libexecdir=/usr/lib/gnome-applets \
+  --localstatedir=/var --disable-static \
+  --disable-scrollkeeper --disable-schemas-install \
+  --without-hal
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 DESTDIR="$pkgdir" install
+
+  install -m755 -d "$pkgdir/usr/share/gconf/schemas"
+  gconf-merge-schema "$pkgdir/usr/share/gconf/schemas/$pkgname.schemas" 
--domain gnome-applets-3.0 "$pkgdir"/etc/gconf/schemas/*.schemas
+  rm -f "$pkgdir"/etc/gconf/schemas/*.schemas
+}


Property changes on: gnome-applets/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: gnome-applets/trunk/gnome-applets.install
===
--- gnome-applets/trunk/gnome-applets.install   (rev 0)
+++ gnome-applets/trunk/gnome-applets.install   2013-04-08 14:46:56 UTC (rev 
87903)
@@ -0,0 +1,24 @@
+pkgname=gnome-applets
+
+post_install() {
+  gconfpkg --install ${pkgname}
+  glib-compile-schemas /usr/share/glib-2.0/schemas
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+pre_upgrade() {
+  pre_remove $1
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  gconfpkg --uninstall ${pkgname}
+}
+
+post_remove() {
+  glib-compile-schemas /usr/share/glib-2.0/schemas
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}



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

2013-04-08 Thread Jan Steffens
Date: Monday, April 8, 2013 @ 16:47:20
  Author: heftig
Revision: 87904

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

Added:
  gnome-applets/repos/community-i686/
  gnome-applets/repos/community-i686/PKGBUILD
(from rev 87903, gnome-applets/trunk/PKGBUILD)
  gnome-applets/repos/community-i686/gnome-applets.install
(from rev 87903, gnome-applets/trunk/gnome-applets.install)
  gnome-applets/repos/community-x86_64/
  gnome-applets/repos/community-x86_64/PKGBUILD
(from rev 87903, gnome-applets/trunk/PKGBUILD)
  gnome-applets/repos/community-x86_64/gnome-applets.install
(from rev 87903, gnome-applets/trunk/gnome-applets.install)

+
 community-i686/PKGBUILD|   35 +++
 community-i686/gnome-applets.install   |   24 +
 community-x86_64/PKGBUILD  |   35 +++
 community-x86_64/gnome-applets.install |   24 +
 4 files changed, 118 insertions(+)

Copied: gnome-applets/repos/community-i686/PKGBUILD (from rev 87903, 
gnome-applets/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-04-08 14:47:20 UTC (rev 87904)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=gnome-applets
+pkgver=3.5.92
+pkgrel=1
+pkgdesc="GNOME Applets"
+arch=(i686 x86_64)
+license=('GPL')
+depends=('gnome-panel' 'libgtop' 'gucharmap' 'libnotify')
+makedepends=('gnome-doc-utils' 'intltool' 'gnome-settings-daemon' 
'networkmanager')
+options=(!emptydirs)
+url="http://www.gnome.org";
+install=gnome-applets.install
+source=(http://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('f6178cb702a39a4103fcb97e9a266bf6d05f05ac5064818f119c023d76170e83')
+
+build() {
+  cd "$pkgname-$pkgver"
+  PYTHON=/usr/bin/python2 ./configure --prefix=/usr \
+  --sysconfdir=/etc --libexecdir=/usr/lib/gnome-applets \
+  --localstatedir=/var --disable-static \
+  --disable-scrollkeeper --disable-schemas-install \
+  --without-hal
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 DESTDIR="$pkgdir" install
+
+  install -m755 -d "$pkgdir/usr/share/gconf/schemas"
+  gconf-merge-schema "$pkgdir/usr/share/gconf/schemas/$pkgname.schemas" 
--domain gnome-applets-3.0 "$pkgdir"/etc/gconf/schemas/*.schemas
+  rm -f "$pkgdir"/etc/gconf/schemas/*.schemas
+}

Copied: gnome-applets/repos/community-i686/gnome-applets.install (from rev 
87903, gnome-applets/trunk/gnome-applets.install)
===
--- community-i686/gnome-applets.install(rev 0)
+++ community-i686/gnome-applets.install2013-04-08 14:47:20 UTC (rev 
87904)
@@ -0,0 +1,24 @@
+pkgname=gnome-applets
+
+post_install() {
+  gconfpkg --install ${pkgname}
+  glib-compile-schemas /usr/share/glib-2.0/schemas
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+pre_upgrade() {
+  pre_remove $1
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  gconfpkg --uninstall ${pkgname}
+}
+
+post_remove() {
+  glib-compile-schemas /usr/share/glib-2.0/schemas
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}

Copied: gnome-applets/repos/community-x86_64/PKGBUILD (from rev 87903, 
gnome-applets/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2013-04-08 14:47:20 UTC (rev 87904)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=gnome-applets
+pkgver=3.5.92
+pkgrel=1
+pkgdesc="GNOME Applets"
+arch=(i686 x86_64)
+license=('GPL')
+depends=('gnome-panel' 'libgtop' 'gucharmap' 'libnotify')
+makedepends=('gnome-doc-utils' 'intltool' 'gnome-settings-daemon' 
'networkmanager')
+options=(!emptydirs)
+url="http://www.gnome.org";
+install=gnome-applets.install
+source=(http://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('f6178cb702a39a4103fcb97e9a266bf6d05f05ac5064818f119c023d76170e83')
+
+build() {
+  cd "$pkgname-$pkgver"
+  PYTHON=/usr/bin/python2 ./configure --prefix=/usr \
+  --sysconfdir=/etc --libexecdir=/usr/lib/gnome-applets \
+  --localstatedir=/var --disable-static \
+  --disable-scrollkeeper --disable-schemas-install \
+  --without-hal
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 DESTDIR="$pkgdir" install
+
+  install -m755 -d "$pkgdir/usr/share/gconf/schemas"
+  gconf-merge-schema "$pkgdir/usr/share/gconf/schemas/$pkgname.schemas" 
--domain gnome-applets-3.0 "$pkgdir"/etc/gconf/schemas/*.schemas
+  rm -f "$pkgdir"/etc/gconf/schemas/*.schemas
+}

Copied: gnome-applets/repos/community-x86_64/gnome-applets.install (from rev 
87903, 

[arch-commits] Commit in (gnome-applets)

2013-04-08 Thread Jan Steffens
Date: Monday, April 8, 2013 @ 16:47:47
  Author: heftig
Revision: 182336

extra2community: Moving gnome-applets from extra to community

Deleted:
  gnome-applets/



[arch-commits] Commit in (5 files)

2013-04-08 Thread Jan Steffens
Date: Monday, April 8, 2013 @ 16:48:15
  Author: heftig
Revision: 87905

extra2community: Moving gnome-themes-extras from extra to community

Added:
  gnome-themes-extras/
  gnome-themes-extras/repos/
  gnome-themes-extras/trunk/
  gnome-themes-extras/trunk/PKGBUILD
  gnome-themes-extras/trunk/darklooks-gtkrc.patch

---+
 PKGBUILD  |   28 
 darklooks-gtkrc.patch |   10 ++
 2 files changed, 38 insertions(+)

Added: gnome-themes-extras/trunk/PKGBUILD
===
--- gnome-themes-extras/trunk/PKGBUILD  (rev 0)
+++ gnome-themes-extras/trunk/PKGBUILD  2013-04-08 14:48:15 UTC (rev 87905)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Jan de Groot 
+pkgname=gnome-themes-extras
+pkgver=2.22.0
+pkgrel=3
+pkgdesc="Extra themes for GNOME2"
+arch=('any')
+license=('GPL')
+depends=('gtk-engines>=2.18.4' 'librsvg>=2.26.0')
+makedepends=('intltool' 'icon-naming-utils')
+url="http://www.gnome.org";
+source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/2.22/${pkgname}-${pkgver}.tar.bz2
+darklooks-gtkrc.patch)
+md5sums=('3c24a31bf43d4dbb97bc8712b8cd72b3'
+ 'a6a32d2f8f978831064723ddf9c80ab5')
+
+build() {
+  cd "${srcdir}/$pkgname-${pkgver}"
+  patch -Np1 -i "${srcdir}/darklooks-gtkrc.patch"
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var
+}
+
+package() {
+  cd "${srcdir}/$pkgname-${pkgver}"
+  make
+  make DESTDIR="${pkgdir}" install
+}


Property changes on: gnome-themes-extras/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: gnome-themes-extras/trunk/darklooks-gtkrc.patch
===
--- gnome-themes-extras/trunk/darklooks-gtkrc.patch 
(rev 0)
+++ gnome-themes-extras/trunk/darklooks-gtkrc.patch 2013-04-08 14:48:15 UTC 
(rev 87905)
@@ -0,0 +1,10 @@
+--- trunk/gtk-themes/Darklooks/gtk-2.0/gtkrc   2008/03/18 02:04:43 475
 trunk/gtk-themes/Darklooks/gtk-2.0/gtkrc   2008/04/17 09:00:52 491
+@@ -1,6 +1,6 @@
+ # Set GtkSettings color scheme property.
+ # This can be overriden (via an xsetting) with eg. the 
gnome-appearance-properties.
+-gtk_color_scheme = 
"fg_color:#E6E6E6\nbg_color:#555753\nbase_color:#2E3436\ntext_color:#D3D7CF\nselected_bg_color:#3F403D\nselected_fg_color:#7AA3CC\ntooltips_bg_color:#EDDE5C\ntooltips_fg_color:#00"
++gtk_color_scheme = 
"fg_color:#E6E6E6\nbg_color:#555753\nbase_color:#2E3436\ntext_color:#D3D7CF\nselected_bg_color:#3F403D\nselected_fg_color:#7AA3CC\ntooltip_bg_color:#EDDE5C\ntooltip_fg_color:#00"
+ 
+ style "clearlooks-default"
+ {



[arch-commits] Commit in gnome-themes-extras/repos (3 files)

2013-04-08 Thread Jan Steffens
Date: Monday, April 8, 2013 @ 16:48:26
  Author: heftig
Revision: 87906

archrelease: copy trunk to community-any

Added:
  gnome-themes-extras/repos/community-any/
  gnome-themes-extras/repos/community-any/PKGBUILD
(from rev 87905, gnome-themes-extras/trunk/PKGBUILD)
  gnome-themes-extras/repos/community-any/darklooks-gtkrc.patch
(from rev 87905, gnome-themes-extras/trunk/darklooks-gtkrc.patch)

---+
 PKGBUILD  |   28 
 darklooks-gtkrc.patch |   10 ++
 2 files changed, 38 insertions(+)

Copied: gnome-themes-extras/repos/community-any/PKGBUILD (from rev 87905, 
gnome-themes-extras/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2013-04-08 14:48:26 UTC (rev 87906)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Jan de Groot 
+pkgname=gnome-themes-extras
+pkgver=2.22.0
+pkgrel=3
+pkgdesc="Extra themes for GNOME2"
+arch=('any')
+license=('GPL')
+depends=('gtk-engines>=2.18.4' 'librsvg>=2.26.0')
+makedepends=('intltool' 'icon-naming-utils')
+url="http://www.gnome.org";
+source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/2.22/${pkgname}-${pkgver}.tar.bz2
+darklooks-gtkrc.patch)
+md5sums=('3c24a31bf43d4dbb97bc8712b8cd72b3'
+ 'a6a32d2f8f978831064723ddf9c80ab5')
+
+build() {
+  cd "${srcdir}/$pkgname-${pkgver}"
+  patch -Np1 -i "${srcdir}/darklooks-gtkrc.patch"
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var
+}
+
+package() {
+  cd "${srcdir}/$pkgname-${pkgver}"
+  make
+  make DESTDIR="${pkgdir}" install
+}

Copied: gnome-themes-extras/repos/community-any/darklooks-gtkrc.patch (from rev 
87905, gnome-themes-extras/trunk/darklooks-gtkrc.patch)
===
--- community-any/darklooks-gtkrc.patch (rev 0)
+++ community-any/darklooks-gtkrc.patch 2013-04-08 14:48:26 UTC (rev 87906)
@@ -0,0 +1,10 @@
+--- trunk/gtk-themes/Darklooks/gtk-2.0/gtkrc   2008/03/18 02:04:43 475
 trunk/gtk-themes/Darklooks/gtk-2.0/gtkrc   2008/04/17 09:00:52 491
+@@ -1,6 +1,6 @@
+ # Set GtkSettings color scheme property.
+ # This can be overriden (via an xsetting) with eg. the 
gnome-appearance-properties.
+-gtk_color_scheme = 
"fg_color:#E6E6E6\nbg_color:#555753\nbase_color:#2E3436\ntext_color:#D3D7CF\nselected_bg_color:#3F403D\nselected_fg_color:#7AA3CC\ntooltips_bg_color:#EDDE5C\ntooltips_fg_color:#00"
++gtk_color_scheme = 
"fg_color:#E6E6E6\nbg_color:#555753\nbase_color:#2E3436\ntext_color:#D3D7CF\nselected_bg_color:#3F403D\nselected_fg_color:#7AA3CC\ntooltip_bg_color:#EDDE5C\ntooltip_fg_color:#00"
+ 
+ style "clearlooks-default"
+ {



[arch-commits] Commit in (gnome-themes-extras)

2013-04-08 Thread Jan Steffens
Date: Monday, April 8, 2013 @ 16:48:52
  Author: heftig
Revision: 182338

extra2community: Moving gnome-themes-extras from extra to community

Deleted:
  gnome-themes-extras/



[arch-commits] Commit in (5 files)

2013-04-08 Thread Jan Steffens
Date: Monday, April 8, 2013 @ 16:49:03
  Author: heftig
Revision: 87907

extra2community: Moving notification-daemon from extra to community

Added:
  notification-daemon/
  notification-daemon/repos/
  notification-daemon/trunk/
  notification-daemon/trunk/PKGBUILD
  notification-daemon/trunk/notification-daemon.install

-+
 PKGBUILD|   34 ++
 notification-daemon.install |   22 ++
 2 files changed, 56 insertions(+)

Added: notification-daemon/trunk/PKGBUILD
===
--- notification-daemon/trunk/PKGBUILD  (rev 0)
+++ notification-daemon/trunk/PKGBUILD  2013-04-08 14:49:03 UTC (rev 87907)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Mark Rosenstand 
+
+pkgname=notification-daemon
+pkgver=0.7.6
+pkgrel=2
+pkgdesc="Notification daemon for the desktop notifications framework"
+arch=(i686 x86_64)
+license=(GPL)
+url="http://www.galago-project.org/specs/notification/";
+depends=(gtk3 libcanberra)
+makedepends=(pkgconfig intltool)
+options=('!libtool' '!emptydirs')
+source=(http://download.gnome.org/sources/${pkgname}/0.7/${pkgname}-${pkgver}.tar.xz)
+sha256sums=('64d0ce6fb12c94c3b73b701502c804c408cb5a94580bcae5ac37607639f7a0b3')
+
+build() {
+cd ${pkgname}-${pkgver}
+./configure --prefix=/usr --sysconfdir=/etc \
+--libexecdir=/usr/lib/notification-daemon-1.0 \
+--localstatedir=/var --disable-static
+make
+}
+
+check() {
+cd ${pkgname}-${pkgver}
+make check
+}
+
+package() {
+cd ${pkgname}-${pkgver}
+make DESTDIR=${pkgdir} install
+}


Property changes on: notification-daemon/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: notification-daemon/trunk/notification-daemon.install
===
--- notification-daemon/trunk/notification-daemon.install   
(rev 0)
+++ notification-daemon/trunk/notification-daemon.install   2013-04-08 
14:49:03 UTC (rev 87907)
@@ -0,0 +1,22 @@
+pkgname=notification-daemon
+
+post_install() {
+  usr/sbin/gconfpkg --install ${pkgname}
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+pre_upgrade() {
+  pre_remove $1
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  usr/sbin/gconfpkg --uninstall ${pkgname}
+}
+
+post_remove() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}



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

2013-04-08 Thread Jan Steffens
Date: Monday, April 8, 2013 @ 16:49:22
  Author: heftig
Revision: 87908

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

Added:
  notification-daemon/repos/community-i686/
  notification-daemon/repos/community-i686/PKGBUILD
(from rev 87907, notification-daemon/trunk/PKGBUILD)
  notification-daemon/repos/community-i686/notification-daemon.install
(from rev 87907, notification-daemon/trunk/notification-daemon.install)
  notification-daemon/repos/community-x86_64/
  notification-daemon/repos/community-x86_64/PKGBUILD
(from rev 87907, notification-daemon/trunk/PKGBUILD)
  notification-daemon/repos/community-x86_64/notification-daemon.install
(from rev 87907, notification-daemon/trunk/notification-daemon.install)

--+
 community-i686/PKGBUILD  |   34 +
 community-i686/notification-daemon.install   |   22 
 community-x86_64/PKGBUILD|   34 +
 community-x86_64/notification-daemon.install |   22 
 4 files changed, 112 insertions(+)

Copied: notification-daemon/repos/community-i686/PKGBUILD (from rev 87907, 
notification-daemon/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-04-08 14:49:22 UTC (rev 87908)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Mark Rosenstand 
+
+pkgname=notification-daemon
+pkgver=0.7.6
+pkgrel=2
+pkgdesc="Notification daemon for the desktop notifications framework"
+arch=(i686 x86_64)
+license=(GPL)
+url="http://www.galago-project.org/specs/notification/";
+depends=(gtk3 libcanberra)
+makedepends=(pkgconfig intltool)
+options=('!libtool' '!emptydirs')
+source=(http://download.gnome.org/sources/${pkgname}/0.7/${pkgname}-${pkgver}.tar.xz)
+sha256sums=('64d0ce6fb12c94c3b73b701502c804c408cb5a94580bcae5ac37607639f7a0b3')
+
+build() {
+cd ${pkgname}-${pkgver}
+./configure --prefix=/usr --sysconfdir=/etc \
+--libexecdir=/usr/lib/notification-daemon-1.0 \
+--localstatedir=/var --disable-static
+make
+}
+
+check() {
+cd ${pkgname}-${pkgver}
+make check
+}
+
+package() {
+cd ${pkgname}-${pkgver}
+make DESTDIR=${pkgdir} install
+}

Copied: notification-daemon/repos/community-i686/notification-daemon.install 
(from rev 87907, notification-daemon/trunk/notification-daemon.install)
===
--- community-i686/notification-daemon.install  (rev 0)
+++ community-i686/notification-daemon.install  2013-04-08 14:49:22 UTC (rev 
87908)
@@ -0,0 +1,22 @@
+pkgname=notification-daemon
+
+post_install() {
+  usr/sbin/gconfpkg --install ${pkgname}
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+pre_upgrade() {
+  pre_remove $1
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  usr/sbin/gconfpkg --uninstall ${pkgname}
+}
+
+post_remove() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}

Copied: notification-daemon/repos/community-x86_64/PKGBUILD (from rev 87907, 
notification-daemon/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2013-04-08 14:49:22 UTC (rev 87908)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Mark Rosenstand 
+
+pkgname=notification-daemon
+pkgver=0.7.6
+pkgrel=2
+pkgdesc="Notification daemon for the desktop notifications framework"
+arch=(i686 x86_64)
+license=(GPL)
+url="http://www.galago-project.org/specs/notification/";
+depends=(gtk3 libcanberra)
+makedepends=(pkgconfig intltool)
+options=('!libtool' '!emptydirs')
+source=(http://download.gnome.org/sources/${pkgname}/0.7/${pkgname}-${pkgver}.tar.xz)
+sha256sums=('64d0ce6fb12c94c3b73b701502c804c408cb5a94580bcae5ac37607639f7a0b3')
+
+build() {
+cd ${pkgname}-${pkgver}
+./configure --prefix=/usr --sysconfdir=/etc \
+--libexecdir=/usr/lib/notification-daemon-1.0 \
+--localstatedir=/var --disable-static
+make
+}
+
+check() {
+cd ${pkgname}-${pkgver}
+make check
+}
+
+package() {
+cd ${pkgname}-${pkgver}
+make DESTDIR=${pkgdir} install
+}

Copied: notification-daemon/repos/community-x86_64/notification-daemon.install 
(from rev 87907, notification-daemon/trunk/notification-daemon.install)
===
--- community-x86_64/notification-daemon.install
(rev 0)
+++ community-x86_64/notification-daemon.install2013-04-08 14:49:22 UTC 
(rev 87908)
@@ -0,0 +1,22 @@
+pkgname=notification-daemon
+
+post_install() {
+  usr/sbin/gconfpkg --install ${pkgname}
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+pre_upgrade() {
+  pre_remove $1

[arch-commits] Commit in (5 files)

2013-04-08 Thread Jan Steffens
Date: Monday, April 8, 2013 @ 16:49:38
  Author: heftig
Revision: 87909

extra2community: Moving polkit-gnome from extra to community

Added:
  polkit-gnome/
  polkit-gnome/repos/
  polkit-gnome/trunk/
  polkit-gnome/trunk/PKGBUILD
  polkit-gnome/trunk/polkit-gnome-authentication-agent-1.desktop

-+
 PKGBUILD|   33 +
 polkit-gnome-authentication-agent-1.desktop |   88 ++
 2 files changed, 121 insertions(+)

Added: polkit-gnome/trunk/PKGBUILD
===
--- polkit-gnome/trunk/PKGBUILD (rev 0)
+++ polkit-gnome/trunk/PKGBUILD 2013-04-08 14:49:38 UTC (rev 87909)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: onestep_ua 
+
+pkgname=polkit-gnome
+pkgver=0.105
+pkgrel=1
+pkgdesc="PolicyKit integration for the GNOME desktop"
+arch=('i686' 'x86_64')
+url="http://www.freedesktop.org/wiki/Software/PolicyKit";
+license=('LGPL')
+depends=('polkit' 'gtk3')
+makedepends=('intltool' 'gobject-introspection')
+options=(!libtool)
+source=(http://download.gnome.org/sources/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.xz
+polkit-gnome-authentication-agent-1.desktop)
+sha256sums=('1784494963b8bf9a00eedc6cd3a2868fb123b8a5e516e66c5eda48df17ab9369'
+'ad19e73ae8eba00a8f66bd9afd3e0e1fd7ca22f716e29b97f097d9c01711e0de')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --libexecdir=/usr/lib/polkit-gnome \
+  --disable-static
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  install -Dm644 "${srcdir}/polkit-gnome-authentication-agent-1.desktop" \
+  "${pkgdir}/etc/xdg/autostart/polkit-gnome-authentication-agent-1.desktop"
+}


Property changes on: polkit-gnome/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: polkit-gnome/trunk/polkit-gnome-authentication-agent-1.desktop
===
--- polkit-gnome/trunk/polkit-gnome-authentication-agent-1.desktop  
(rev 0)
+++ polkit-gnome/trunk/polkit-gnome-authentication-agent-1.desktop  
2013-04-08 14:49:38 UTC (rev 87909)
@@ -0,0 +1,88 @@
+[Desktop Entry]
+Name=PolicyKit Authentication Agent
+Name[ar]=مدير الاستيثاق PolicyKit
+Name[be]=PolicyKit - аґент аўтэнтыфікацыі
+Name[bn_IN]=PolicyKit অনুমোদনের এজেন্ট
+Name[ca]=Agent d'autenticació del PolicyKit
+Name[cs]=Ověřovací agent PolicyKit
+Name[da]=Godkendelsesprogrammet PolicyKit
+Name[de]=Legitimationsdienst von PolicyKit
+Name[el]=Πράκτορας πιστοποίησης PolicyKit
+Name[en_GB]=PolicyKit Authentication Agent
+Name[es]=Agente de autenticación de PolicyKit
+Name[eu]=PolicyKit autentifikatzeko agentea
+Name[fi]=PolicytKit-tunnistautumisohjelma
+Name[fr]=Agent d'authentification de PolicyKit
+Name[gl]=Axente de autenticación PolicyKit
+Name[gu]=PolicyKit સત્તાધિકરણ એજન્ટ
+Name[hi]=PolicyKit प्रमाणीकरण प्रतिनिधि
+Name[hu]=PolicyKit hitelesítési ügynök
+Name[it]=Agente di autenticazione per PolicyKit
+Name[ja]=PolicyKit 認証エージェント
+Name[kn]=PolicyKit ದೃಢೀಕರಣ ಮಧ್ಯವರ್ತಿ
+Name[lt]=PolicyKit tapatybės nustatymo agentas
+Name[ml]=പോളിസിക്കിറ്റ് ഓഥന്റിക്കേഷന്‍ ഏജന്റ്
+Name[mr]=PolicyKit ऑथेंटीकेशन एजेंट
+Name[or]=PolicyKit ବୈଧିକରଣ ସଦସ୍ୟ
+Name[pa]=ਪਾਲਸੀਕਿੱਟ ਪਰਮਾਣਕਿਤਾ ਏਜੰਟ
+Name[pl]=Agent uwierzytelniania PolicyKit
+Name[pt]=Agente de Autenticação PolicyKit
+Name[pt_BR]=Agente de autenticação PolicyKit
+Name[ro]=Agent de autentificare PolicyKit
+Name[sk]=Agent PolicyKit na overovanie totožnosti
+Name[sl]=PolicyKit program overjanja
+Name[sv]=Autentiseringsagent för PolicyKit
+Name[ta]=PolicyKit அங்கீகார முகவர்
+Name[te]=పాలసీకిట్ ధృవీకరణ ప్రతినిధి
+Name[th]=ตัวกลางสำหรับยืนยันตัวบุคคล PolicyKit
+Name[uk]=Агент автентифікації PolicyKit
+Name[zh_CN]=PolicyKit 认证代理
+Name[zh_HK]=PolicyKit 驗證代理程式
+Name[zh_TW]=PolicyKit 驗證代理程式
+Comment=PolicyKit Authentication Agent
+Comment[ar]=مدير الاستيثاق PolicyKit
+Comment[be]=PolicyKit - аґент аўтэнтыфікацыі
+Comment[bn_IN]=PolicyKit অনুমোদনের এজেন্ট
+Comment[ca]=Agent d'autenticació del PolicyKit
+Comment[cs]=Ověřovací agent PolicyKit
+Comment[da]=Godkendelsesprogrammet PolicyKit
+Comment[de]=Legitimationsdienst von PolicyKit
+Comment[el]=Πράκτορας πιστοποίησης PolicyKit
+Comment[en_GB]=PolicyKit Authentication Agent
+Comment[es]=Agente de autenticación de PolicyKit
+Comment[eu]=PolicyKit autentifikatzeko agentea
+Comment[fi]=PolicytKit-tunnistautumisohjelma
+Comment[fr]=Agent d'authentification de PolicyKit
+Comment[gl]=Axente de autenticación PolicyKit
+Comment[gu]=PolicyKit સત્તાધિકરણ એજન્ટ
+Comment[hi]=PolicyKit प्रमाणीकरण प्रतिनिधि
+Comment[hu]=PolicyKit hitelesítési ügynök
+Comment[it]=Agente di autenticazione per PolicyKit
+Comment[ja]=PolicyKit 認証エージェ

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

2013-04-08 Thread Jan Steffens
Date: Monday, April 8, 2013 @ 16:49:55
  Author: heftig
Revision: 87910

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

Added:
  polkit-gnome/repos/community-i686/
  polkit-gnome/repos/community-i686/PKGBUILD
(from rev 87909, polkit-gnome/trunk/PKGBUILD)
  polkit-gnome/repos/community-i686/polkit-gnome-authentication-agent-1.desktop
(from rev 87909, 
polkit-gnome/trunk/polkit-gnome-authentication-agent-1.desktop)
  polkit-gnome/repos/community-x86_64/
  polkit-gnome/repos/community-x86_64/PKGBUILD
(from rev 87909, polkit-gnome/trunk/PKGBUILD)
  
polkit-gnome/repos/community-x86_64/polkit-gnome-authentication-agent-1.desktop
(from rev 87909, 
polkit-gnome/trunk/polkit-gnome-authentication-agent-1.desktop)

--+
 community-i686/PKGBUILD  |   33 +++
 community-i686/polkit-gnome-authentication-agent-1.desktop   |   88 ++
 community-x86_64/PKGBUILD|   33 +++
 community-x86_64/polkit-gnome-authentication-agent-1.desktop |   88 ++
 4 files changed, 242 insertions(+)

Copied: polkit-gnome/repos/community-i686/PKGBUILD (from rev 87909, 
polkit-gnome/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-04-08 14:49:55 UTC (rev 87910)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: onestep_ua 
+
+pkgname=polkit-gnome
+pkgver=0.105
+pkgrel=1
+pkgdesc="PolicyKit integration for the GNOME desktop"
+arch=('i686' 'x86_64')
+url="http://www.freedesktop.org/wiki/Software/PolicyKit";
+license=('LGPL')
+depends=('polkit' 'gtk3')
+makedepends=('intltool' 'gobject-introspection')
+options=(!libtool)
+source=(http://download.gnome.org/sources/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.xz
+polkit-gnome-authentication-agent-1.desktop)
+sha256sums=('1784494963b8bf9a00eedc6cd3a2868fb123b8a5e516e66c5eda48df17ab9369'
+'ad19e73ae8eba00a8f66bd9afd3e0e1fd7ca22f716e29b97f097d9c01711e0de')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --libexecdir=/usr/lib/polkit-gnome \
+  --disable-static
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  install -Dm644 "${srcdir}/polkit-gnome-authentication-agent-1.desktop" \
+  "${pkgdir}/etc/xdg/autostart/polkit-gnome-authentication-agent-1.desktop"
+}

Copied: 
polkit-gnome/repos/community-i686/polkit-gnome-authentication-agent-1.desktop 
(from rev 87909, polkit-gnome/trunk/polkit-gnome-authentication-agent-1.desktop)
===
--- community-i686/polkit-gnome-authentication-agent-1.desktop  
(rev 0)
+++ community-i686/polkit-gnome-authentication-agent-1.desktop  2013-04-08 
14:49:55 UTC (rev 87910)
@@ -0,0 +1,88 @@
+[Desktop Entry]
+Name=PolicyKit Authentication Agent
+Name[ar]=مدير الاستيثاق PolicyKit
+Name[be]=PolicyKit - аґент аўтэнтыфікацыі
+Name[bn_IN]=PolicyKit অনুমোদনের এজেন্ট
+Name[ca]=Agent d'autenticació del PolicyKit
+Name[cs]=Ověřovací agent PolicyKit
+Name[da]=Godkendelsesprogrammet PolicyKit
+Name[de]=Legitimationsdienst von PolicyKit
+Name[el]=Πράκτορας πιστοποίησης PolicyKit
+Name[en_GB]=PolicyKit Authentication Agent
+Name[es]=Agente de autenticación de PolicyKit
+Name[eu]=PolicyKit autentifikatzeko agentea
+Name[fi]=PolicytKit-tunnistautumisohjelma
+Name[fr]=Agent d'authentification de PolicyKit
+Name[gl]=Axente de autenticación PolicyKit
+Name[gu]=PolicyKit સત્તાધિકરણ એજન્ટ
+Name[hi]=PolicyKit प्रमाणीकरण प्रतिनिधि
+Name[hu]=PolicyKit hitelesítési ügynök
+Name[it]=Agente di autenticazione per PolicyKit
+Name[ja]=PolicyKit 認証エージェント
+Name[kn]=PolicyKit ದೃಢೀಕರಣ ಮಧ್ಯವರ್ತಿ
+Name[lt]=PolicyKit tapatybės nustatymo agentas
+Name[ml]=പോളിസിക്കിറ്റ് ഓഥന്റിക്കേഷന്‍ ഏജന്റ്
+Name[mr]=PolicyKit ऑथेंटीकेशन एजेंट
+Name[or]=PolicyKit ବୈଧିକରଣ ସଦସ୍ୟ
+Name[pa]=ਪਾਲਸੀਕਿੱਟ ਪਰਮਾਣਕਿਤਾ ਏਜੰਟ
+Name[pl]=Agent uwierzytelniania PolicyKit
+Name[pt]=Agente de Autenticação PolicyKit
+Name[pt_BR]=Agente de autenticação PolicyKit
+Name[ro]=Agent de autentificare PolicyKit
+Name[sk]=Agent PolicyKit na overovanie totožnosti
+Name[sl]=PolicyKit program overjanja
+Name[sv]=Autentiseringsagent för PolicyKit
+Name[ta]=PolicyKit அங்கீகார முகவர்
+Name[te]=పాలసీకిట్ ధృవీకరణ ప్రతినిధి
+Name[th]=ตัวกลางสำหรับยืนยันตัวบุคคล PolicyKit
+Name[uk]=Агент автентифікації PolicyKit
+Name[zh_CN]=PolicyKit 认证代理
+Name[zh_HK]=PolicyKit 驗證代理程式
+Name[zh_TW]=PolicyKit 驗證代理程式
+Comment=PolicyKit Authentication Agent
+Comment[ar]=مدير الاستيثاق PolicyKit
+Comment[be]=PolicyKit - аґент аўтэнтыфікацыі
+Comment[bn_IN]=PolicyKit অনুমোদনের এজেন্ট
+Comment[ca]=Agent d'autenticació del PolicyKit
+Comment[cs]=Ověřovací agent PolicyKit
+Comment[da]=Godkendelsesprogrammet PolicyKit
+Co

[arch-commits] Commit in (notification-daemon polkit-gnome)

2013-04-08 Thread Jan Steffens
Date: Monday, April 8, 2013 @ 16:51:29
  Author: heftig
Revision: 87911

cleanup mess

Deleted:
  notification-daemon/
  polkit-gnome/



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

2013-04-08 Thread Jan Steffens
Date: Monday, April 8, 2013 @ 16:55:36
  Author: heftig
Revision: 182339

0.20.1

Modified:
  vala/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-04-08 14:48:52 UTC (rev 182338)
+++ PKGBUILD2013-04-08 14:55:36 UTC (rev 182339)
@@ -3,7 +3,7 @@
 # Contributor: Timm Preetz 
 
 pkgname=vala
-pkgver=0.20.0
+pkgver=0.20.1
 pkgrel=1
 pkgdesc="Compiler for the GObject type system"
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 makedepends=('libxslt')
 options=('!libtool')
 
source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('2c464ff5b567861b3116602891ff83439e570ce42d7c9b3b76e36adc17f2848c')
+sha256sums=('9cb7ecd18a23525e401c204d4d08341c7d911cd5d78078eee10b747ecb45e481')
 
 build() {
 cd $pkgname-$pkgver



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

2013-04-08 Thread Jan Steffens
Date: Monday, April 8, 2013 @ 16:57:04
  Author: heftig
Revision: 182340

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

Added:
  vala/repos/staging-i686/PKGBUILD
(from rev 182339, vala/trunk/PKGBUILD)
  vala/repos/staging-x86_64/PKGBUILD
(from rev 182339, vala/trunk/PKGBUILD)
Deleted:
  vala/repos/staging-i686/PKGBUILD
  vala/repos/staging-x86_64/PKGBUILD

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

Deleted: staging-i686/PKGBUILD
===
--- staging-i686/PKGBUILD   2013-04-08 14:55:36 UTC (rev 182339)
+++ staging-i686/PKGBUILD   2013-04-08 14:57:04 UTC (rev 182340)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer : Ionut Biru 
-# Contributor: Timm Preetz 
-
-pkgname=vala
-pkgver=0.20.0
-pkgrel=1
-pkgdesc="Compiler for the GObject type system"
-arch=('i686' 'x86_64')
-url="http://live.gnome.org/Vala";
-license=('LGPL')
-depends=('glib2')
-makedepends=('libxslt')
-options=('!libtool')
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('2c464ff5b567861b3116602891ff83439e570ce42d7c9b3b76e36adc17f2848c')
-
-build() {
-cd $pkgname-$pkgver
-./configure --prefix=/usr --enable-vapigen
-make
-}
-
-package() {
-cd $pkgname-$pkgver
-make DESTDIR="$pkgdir" install
-}

Copied: vala/repos/staging-i686/PKGBUILD (from rev 182339, vala/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-04-08 14:57:04 UTC (rev 182340)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer : Ionut Biru 
+# Contributor: Timm Preetz 
+
+pkgname=vala
+pkgver=0.20.1
+pkgrel=1
+pkgdesc="Compiler for the GObject type system"
+arch=('i686' 'x86_64')
+url="http://live.gnome.org/Vala";
+license=('LGPL')
+depends=('glib2')
+makedepends=('libxslt')
+options=('!libtool')
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('9cb7ecd18a23525e401c204d4d08341c7d911cd5d78078eee10b747ecb45e481')
+
+build() {
+cd $pkgname-$pkgver
+./configure --prefix=/usr --enable-vapigen
+make
+}
+
+package() {
+cd $pkgname-$pkgver
+make DESTDIR="$pkgdir" install
+}

Deleted: staging-x86_64/PKGBUILD
===
--- staging-x86_64/PKGBUILD 2013-04-08 14:55:36 UTC (rev 182339)
+++ staging-x86_64/PKGBUILD 2013-04-08 14:57:04 UTC (rev 182340)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer : Ionut Biru 
-# Contributor: Timm Preetz 
-
-pkgname=vala
-pkgver=0.20.0
-pkgrel=1
-pkgdesc="Compiler for the GObject type system"
-arch=('i686' 'x86_64')
-url="http://live.gnome.org/Vala";
-license=('LGPL')
-depends=('glib2')
-makedepends=('libxslt')
-options=('!libtool')
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('2c464ff5b567861b3116602891ff83439e570ce42d7c9b3b76e36adc17f2848c')
-
-build() {
-cd $pkgname-$pkgver
-./configure --prefix=/usr --enable-vapigen
-make
-}
-
-package() {
-cd $pkgname-$pkgver
-make DESTDIR="$pkgdir" install
-}

Copied: vala/repos/staging-x86_64/PKGBUILD (from rev 182339, 
vala/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2013-04-08 14:57:04 UTC (rev 182340)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer : Ionut Biru 
+# Contributor: Timm Preetz 
+
+pkgname=vala
+pkgver=0.20.1
+pkgrel=1
+pkgdesc="Compiler for the GObject type system"
+arch=('i686' 'x86_64')
+url="http://live.gnome.org/Vala";
+license=('LGPL')
+depends=('glib2')
+makedepends=('libxslt')
+options=('!libtool')
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('9cb7ecd18a23525e401c204d4d08341c7d911cd5d78078eee10b747ecb45e481')
+
+build() {
+cd $pkgname-$pkgver
+./configure --prefix=/usr --enable-vapigen
+make
+}
+
+package() {
+cd $pkgname-$pkgver
+make DESTDIR="$pkgdir" install
+}



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

2013-04-08 Thread Jan Steffens
Date: Monday, April 8, 2013 @ 17:06:52
  Author: heftig
Revision: 182341

3.8.0

Modified:
  gnome-tweak-tool/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-04-08 14:57:04 UTC (rev 182340)
+++ PKGBUILD2013-04-08 15:06:52 UTC (rev 182341)
@@ -2,8 +2,8 @@
 # Maintainer: Ionut Biru 
 
 pkgname=gnome-tweak-tool
-pkgver=3.7.4
-pkgrel=2
+pkgver=3.8.0
+pkgrel=1
 pkgdesc="A tool to customize advanced GNOME 3 options."
 arch=(any)
 url="https://live.gnome.org/GnomeTweakTool";
@@ -12,7 +12,7 @@
 makedepends=('intltool')
 install=gnome-tweak-tool.install
 
source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:3}/$pkgname-$pkgver.tar.xz)
-sha256sums=('d6490a1ac30d4d54f5e9f60ff4a0b696ae79d5f5cf2e1d64a6c3185ceec92c53')
+sha256sums=('630135433d6e079967ed515d9082f4a8a35a7e7a9233f4fe89c6588345939c35')
 
 build() {
   cd "$pkgname-$pkgver"



[arch-commits] Commit in gnome-tweak-tool/repos/staging-any (4 files)

2013-04-08 Thread Jan Steffens
Date: Monday, April 8, 2013 @ 17:07:21
  Author: heftig
Revision: 182342

archrelease: copy trunk to staging-any

Added:
  gnome-tweak-tool/repos/staging-any/PKGBUILD
(from rev 182341, gnome-tweak-tool/trunk/PKGBUILD)
  gnome-tweak-tool/repos/staging-any/gnome-tweak-tool.install
(from rev 182341, gnome-tweak-tool/trunk/gnome-tweak-tool.install)
Deleted:
  gnome-tweak-tool/repos/staging-any/PKGBUILD
  gnome-tweak-tool/repos/staging-any/gnome-tweak-tool.install

--+
 PKGBUILD |   62 ++---
 gnome-tweak-tool.install |   22 +++
 2 files changed, 42 insertions(+), 42 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2013-04-08 15:06:52 UTC (rev 182341)
+++ PKGBUILD2013-04-08 15:07:21 UTC (rev 182342)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru 
-
-pkgname=gnome-tweak-tool
-pkgver=3.7.4
-pkgrel=2
-pkgdesc="A tool to customize advanced GNOME 3 options."
-arch=(any)
-url="https://live.gnome.org/GnomeTweakTool";
-license=('GPL')
-depends=('gnome-settings-daemon' 'python2-gobject' 'gconf' 
'hicolor-icon-theme')
-makedepends=('intltool')
-install=gnome-tweak-tool.install
-source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:3}/$pkgname-$pkgver.tar.xz)
-sha256sums=('d6490a1ac30d4d54f5e9f60ff4a0b696ae79d5f5cf2e1d64a6c3185ceec92c53')
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  PYTHON=/usr/bin/python2 ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-
-  make DESTDIR="$pkgdir" install
-  sed -i "s|#!/usr/bin/env python|#!/usr/bin/env python2|" 
"$pkgdir"/usr/bin/gnome-tweak-tool
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gnome-tweak-tool/repos/staging-any/PKGBUILD (from rev 182341, 
gnome-tweak-tool/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-04-08 15:07:21 UTC (rev 182342)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Ionut Biru 
+
+pkgname=gnome-tweak-tool
+pkgver=3.8.0
+pkgrel=1
+pkgdesc="A tool to customize advanced GNOME 3 options."
+arch=(any)
+url="https://live.gnome.org/GnomeTweakTool";
+license=('GPL')
+depends=('gnome-settings-daemon' 'python2-gobject' 'gconf' 
'hicolor-icon-theme')
+makedepends=('intltool')
+install=gnome-tweak-tool.install
+source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:3}/$pkgname-$pkgver.tar.xz)
+sha256sums=('630135433d6e079967ed515d9082f4a8a35a7e7a9233f4fe89c6588345939c35')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  PYTHON=/usr/bin/python2 ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+  sed -i "s|#!/usr/bin/env python|#!/usr/bin/env python2|" 
"$pkgdir"/usr/bin/gnome-tweak-tool
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: gnome-tweak-tool.install
===
--- gnome-tweak-tool.install2013-04-08 15:06:52 UTC (rev 182341)
+++ gnome-tweak-tool.install2013-04-08 15:07:21 UTC (rev 182342)
@@ -1,11 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: gnome-tweak-tool/repos/staging-any/gnome-tweak-tool.install (from rev 
182341, gnome-tweak-tool/trunk/gnome-tweak-tool.install)
===
--- gnome-tweak-tool.install(rev 0)
+++ gnome-tweak-tool.install2013-04-08 15:07:21 UTC (rev 182342)
@@ -0,0 +1,11 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}



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

2013-04-08 Thread Balló György
Date: Monday, April 8, 2013 @ 17:23:24
  Author: bgyorgy
Revision: 87912

Move itstool to makedepends

Modified:
  nemiver/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-04-08 14:51:29 UTC (rev 87911)
+++ PKGBUILD2013-04-08 15:23:24 UTC (rev 87912)
@@ -9,8 +9,8 @@
 arch=('x86_64' 'i686')
 license=('GPL')
 url='http://www.gnome.org/projects/nemiver/'
-depends=('gdlmm' 'gdb' 'gtksourceviewmm' 'libgtop' 'vte3' 'ghex' 'dconf' 
'gsettings-desktop-schemas' 'itstool')
-makedepends=('boost' 'intltool' 'gnome-doc-utils')
+depends=('gdlmm' 'gdb' 'gtksourceviewmm' 'libgtop' 'vte3' 'ghex' 'dconf' 
'gsettings-desktop-schemas')
+makedepends=('boost' 'intltool' 'itstool')
 install=nemiver.install
 
source=("http://ftp.acc.umu.se/pub/GNOME/sources/nemiver/0.9/$pkgname-$pkgver.tar.xz";)
 options=('!libtool' '!emptydirs')



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

2013-04-08 Thread Sergej Pupykin
Date: Monday, April 8, 2013 @ 18:10:05
  Author: spupykin
Revision: 87913

upgpkg: couchdb 1.2.2-2

upd

Modified:
  couchdb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-04-08 15:23:24 UTC (rev 87912)
+++ PKGBUILD2013-04-08 16:10:05 UTC (rev 87913)
@@ -5,7 +5,7 @@
 
 pkgname=couchdb
 pkgver=1.2.2
-pkgrel=1
+pkgrel=2
 pkgdesc="A document-oriented database that can be queried and indexed in a 
MapReduce fashion using JSON"
 arch=('i686' 'x86_64')
 url="http://couchdb.apache.org";



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

2013-04-08 Thread Sergej Pupykin
Date: Monday, April 8, 2013 @ 18:10:35
  Author: spupykin
Revision: 87914

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

Added:
  couchdb/repos/community-staging-i686/
  couchdb/repos/community-staging-i686/PKGBUILD
(from rev 87913, couchdb/trunk/PKGBUILD)
  couchdb/repos/community-staging-i686/build-fix.patch
(from rev 87913, couchdb/trunk/build-fix.patch)
  couchdb/repos/community-staging-i686/couchdb.install
(from rev 87913, couchdb/trunk/couchdb.install)
  couchdb/repos/community-staging-i686/couchdb.rc
(from rev 87913, couchdb/trunk/couchdb.rc)
  couchdb/repos/community-staging-i686/couchdb.service
(from rev 87913, couchdb/trunk/couchdb.service)
  couchdb/repos/community-staging-i686/couchdb.tmpfiles
(from rev 87913, couchdb/trunk/couchdb.tmpfiles)
  couchdb/repos/community-staging-x86_64/
  couchdb/repos/community-staging-x86_64/PKGBUILD
(from rev 87913, couchdb/trunk/PKGBUILD)
  couchdb/repos/community-staging-x86_64/build-fix.patch
(from rev 87913, couchdb/trunk/build-fix.patch)
  couchdb/repos/community-staging-x86_64/couchdb.install
(from rev 87913, couchdb/trunk/couchdb.install)
  couchdb/repos/community-staging-x86_64/couchdb.rc
(from rev 87913, couchdb/trunk/couchdb.rc)
  couchdb/repos/community-staging-x86_64/couchdb.service
(from rev 87913, couchdb/trunk/couchdb.service)
  couchdb/repos/community-staging-x86_64/couchdb.tmpfiles
(from rev 87913, couchdb/trunk/couchdb.tmpfiles)

---+
 community-staging-i686/PKGBUILD   |   53 
 community-staging-i686/build-fix.patch| 5568 
 community-staging-i686/couchdb.install|   22 
 community-staging-i686/couchdb.rc |  157 
 community-staging-i686/couchdb.service|   12 
 community-staging-i686/couchdb.tmpfiles   |1 
 community-staging-x86_64/PKGBUILD |   53 
 community-staging-x86_64/build-fix.patch  | 5568 
 community-staging-x86_64/couchdb.install  |   22 
 community-staging-x86_64/couchdb.rc   |  157 
 community-staging-x86_64/couchdb.service  |   12 
 community-staging-x86_64/couchdb.tmpfiles |1 
 12 files changed, 11626 insertions(+)

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


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

2013-04-08 Thread Sergej Pupykin
Date: Monday, April 8, 2013 @ 18:10:39
  Author: spupykin
Revision: 87915

upgpkg: freewrl 1.22.13.1-4

upd

Modified:
  freewrl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-04-08 16:10:35 UTC (rev 87914)
+++ PKGBUILD2013-04-08 16:10:39 UTC (rev 87915)
@@ -5,7 +5,7 @@
 pkgname=freewrl
 pkgver=1.22.13.1
 _pkgver=1.22.13
-pkgrel=3
+pkgrel=4
 pkgdesc="VRML viewer"
 arch=('i686' 'x86_64')
 url="http://freewrl.sourceforge.net/";



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

2013-04-08 Thread Sergej Pupykin
Date: Monday, April 8, 2013 @ 18:10:54
  Author: spupykin
Revision: 87916

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

Added:
  freewrl/repos/community-staging-i686/
  freewrl/repos/community-staging-i686/PKGBUILD
(from rev 87915, freewrl/trunk/PKGBUILD)
  freewrl/repos/community-staging-x86_64/
  freewrl/repos/community-staging-x86_64/PKGBUILD
(from rev 87915, freewrl/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   37 
 community-staging-x86_64/PKGBUILD |   37 
 2 files changed, 74 insertions(+)

Copied: freewrl/repos/community-staging-i686/PKGBUILD (from rev 87915, 
freewrl/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-04-08 16:10:54 UTC (rev 87916)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Sergej Pupykin 
+
+pkgname=freewrl
+pkgver=1.22.13.1
+_pkgver=1.22.13
+pkgrel=4
+pkgdesc="VRML viewer"
+arch=('i686' 'x86_64')
+url="http://freewrl.sourceforge.net/";
+license=('GPL')
+depends=('java-runtime' 'libxaw' 'glew' 'freeglut' 'curl' 'freetype2' 'imlib2' 
'sox'
+'unzip' 'imagemagick' 'libxml2' 'ttf-bitstream-vera' 'lesstif' 'js' 
'glu')
+makedepends=('java-environment' 'xulrunner' 'wget' 'mesa')
+options=(!libtool)
+source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.bz2)
+md5sums=('27f4bf163011d8ac2088a535cb58a13d')
+
+build() {
+  . /etc/profile.d/jre.sh
+  . /etc/profile.d/jdk.sh
+  cd $srcdir/$pkgname-${_pkgver}
+  export JAVASCRIPT_ENGINE_CFLAGS="-I/usr/include/js -DXP_UNIX -DJS_THREADSAFE 
$(pkg-config --cflags nspr)"
+  export JAVASCRIPT_ENGINE_LIBS="$(pkg-config --libs nspr) -lmozjs185"
+  ./configure \
+--prefix=/usr --with-fontsdir=/usr/share/fonts/TTF --enable-libeai \
+--enable-libcurl --with-expat=/usr --with-target=x11 --enable-plugin \
+--disable-mozilla-js --enable-xulrunner-js --disable-firefox-js \
+--disable-seamonkey-js
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-${_pkgver}
+  make DESTDIR=$pkgdir install
+}

Copied: freewrl/repos/community-staging-x86_64/PKGBUILD (from rev 87915, 
freewrl/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2013-04-08 16:10:54 UTC (rev 87916)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Sergej Pupykin 
+
+pkgname=freewrl
+pkgver=1.22.13.1
+_pkgver=1.22.13
+pkgrel=4
+pkgdesc="VRML viewer"
+arch=('i686' 'x86_64')
+url="http://freewrl.sourceforge.net/";
+license=('GPL')
+depends=('java-runtime' 'libxaw' 'glew' 'freeglut' 'curl' 'freetype2' 'imlib2' 
'sox'
+'unzip' 'imagemagick' 'libxml2' 'ttf-bitstream-vera' 'lesstif' 'js' 
'glu')
+makedepends=('java-environment' 'xulrunner' 'wget' 'mesa')
+options=(!libtool)
+source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.bz2)
+md5sums=('27f4bf163011d8ac2088a535cb58a13d')
+
+build() {
+  . /etc/profile.d/jre.sh
+  . /etc/profile.d/jdk.sh
+  cd $srcdir/$pkgname-${_pkgver}
+  export JAVASCRIPT_ENGINE_CFLAGS="-I/usr/include/js -DXP_UNIX -DJS_THREADSAFE 
$(pkg-config --cflags nspr)"
+  export JAVASCRIPT_ENGINE_LIBS="$(pkg-config --libs nspr) -lmozjs185"
+  ./configure \
+--prefix=/usr --with-fontsdir=/usr/share/fonts/TTF --enable-libeai \
+--enable-libcurl --with-expat=/usr --with-target=x11 --enable-plugin \
+--disable-mozilla-js --enable-xulrunner-js --disable-firefox-js \
+--disable-seamonkey-js
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-${_pkgver}
+  make DESTDIR=$pkgdir install
+}



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

2013-04-08 Thread Sergej Pupykin
Date: Monday, April 8, 2013 @ 18:11:07
  Author: spupykin
Revision: 87917

upgpkg: shotwell 0.14.1-2

upd

Modified:
  shotwell/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-04-08 16:10:54 UTC (rev 87916)
+++ PKGBUILD2013-04-08 16:11:07 UTC (rev 87917)
@@ -5,7 +5,7 @@
 
 pkgname=shotwell
 pkgver=0.14.1
-pkgrel=1
+pkgrel=2
 pkgdesc="A digital photo organizer designed for the GNOME desktop environment"
 arch=('i686' 'x86_64')
 url="http://yorba.org/shotwell/";



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

2013-04-08 Thread Sergej Pupykin
Date: Monday, April 8, 2013 @ 18:11:23
  Author: spupykin
Revision: 87918

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

Added:
  shotwell/repos/community-staging-i686/
  shotwell/repos/community-staging-i686/PKGBUILD
(from rev 87917, shotwell/trunk/PKGBUILD)
  shotwell/repos/community-staging-i686/no-libexec.patch
(from rev 87917, shotwell/trunk/no-libexec.patch)
  shotwell/repos/community-staging-i686/shotwell.install
(from rev 87917, shotwell/trunk/shotwell.install)
  shotwell/repos/community-staging-x86_64/
  shotwell/repos/community-staging-x86_64/PKGBUILD
(from rev 87917, shotwell/trunk/PKGBUILD)
  shotwell/repos/community-staging-x86_64/no-libexec.patch
(from rev 87917, shotwell/trunk/no-libexec.patch)
  shotwell/repos/community-staging-x86_64/shotwell.install
(from rev 87917, shotwell/trunk/shotwell.install)

---+
 community-staging-i686/PKGBUILD   |   38 
 community-staging-i686/no-libexec.patch   |   26 +++
 community-staging-i686/shotwell.install   |   17 
 community-staging-x86_64/PKGBUILD |   38 
 community-staging-x86_64/no-libexec.patch |   26 +++
 community-staging-x86_64/shotwell.install |   17 
 6 files changed, 162 insertions(+)

Copied: shotwell/repos/community-staging-i686/PKGBUILD (from rev 87917, 
shotwell/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-04-08 16:11:23 UTC (rev 87918)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer : Ionut Biru 
+# Contributor: Joeny Ang 
+
+pkgname=shotwell
+pkgver=0.14.1
+pkgrel=2
+pkgdesc="A digital photo organizer designed for the GNOME desktop environment"
+arch=('i686' 'x86_64')
+url="http://yorba.org/shotwell/";
+license=('LGPL2.1')
+depends=('libgee' 'libwebkit3' 'libgexiv2' 'libraw' 'rest'
+'desktop-file-utils' 'dconf' 'hicolor-icon-theme' 'json-glib'
+'gst-plugins-base' 'libgphoto2')
+makedepends=('intltool' 'vala>=0.17.2' 'libunique3')
+install=shotwell.install
+source=("http://yorba.org/download/shotwell/stable/shotwell-$pkgver.tar.xz";
+   "no-libexec.patch")
+md5sums=('bb5783f9265e1ce2d4c9f354987c3ab1'
+ 'b4124e022c98b4382530e6fbcef965e2')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  patch -p1 <$srcdir/no-libexec.patch
+
+  ./configure --prefix=/usr \
+   --disable-schemas-compile \
+   --disable-desktop-update \
+   --disable-icon-update
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}

Copied: shotwell/repos/community-staging-i686/no-libexec.patch (from rev 87917, 
shotwell/trunk/no-libexec.patch)
===
--- community-staging-i686/no-libexec.patch (rev 0)
+++ community-staging-i686/no-libexec.patch 2013-04-08 16:11:23 UTC (rev 
87918)
@@ -0,0 +1,26 @@
+diff -Naur shotwell-0.13.1.orig/Makefile shotwell-0.13.1/Makefile
+--- shotwell-0.13.1.orig/Makefile  2012-10-05 20:07:37.0 +0200
 shotwell-0.13.1/Makefile   2012-10-31 22:27:30.382869896 +0100
+@@ -558,8 +558,8 @@
+   mkdir -p $(DESTDIR)$(PREFIX)/bin
+   $(INSTALL_PROGRAM) $(PROGRAM) $(DESTDIR)$(PREFIX)/bin
+   $(INSTALL_PROGRAM) $(THUMBNAILER_BIN) $(DESTDIR)$(PREFIX)/bin
+-  mkdir -p $(DESTDIR)$(PREFIX)/libexec/shotwell
+-  $(INSTALL_PROGRAM) $(MIGRATOR_BIN) $(DESTDIR)$(PREFIX)/libexec/shotwell
++  mkdir -p $(DESTDIR)$(PREFIX)/lib/shotwell
++  $(INSTALL_PROGRAM) $(MIGRATOR_BIN) $(DESTDIR)$(PREFIX)/lib/shotwell
+   mkdir -p $(DESTDIR)$(PREFIX)/share/shotwell/icons
+   $(INSTALL_DATA) icons/* $(DESTDIR)$(PREFIX)/share/shotwell/icons
+   mkdir -p $(DESTDIR)$(PREFIX)/share/icons/hicolor/scalable/apps
+diff -Naur shotwell-0.13.1.orig/src/AppDirs.vala 
shotwell-0.13.1/src/AppDirs.vala
+--- shotwell-0.13.1.orig/src/AppDirs.vala  2012-10-05 19:56:07.0 
+0200
 shotwell-0.13.1/src/AppDirs.vala   2012-10-31 22:28:17.634388872 +0100
+@@ -109,7 +109,7 @@
+ // not installed yet - use wherever we were run from
+ libexec_dir = get_exec_dir();
+ } else {
+-libexec_dir = File.new_for_path(Resources.PREFIX + 
"/libexec/shotwell");
++libexec_dir = File.new_for_path(Resources.PREFIX + 
"/lib/shotwell");
+ }
+ }
+ 

Copied: shotwell/repos/community-staging-i686/shotwell.install (from rev 87917, 
shotwell/trunk/shotwell.install)
===
--- community-staging-i686/shotwell.install (rev 0)
+++ community-staging-i686/shotwell.install 2013-04-08 16:11:23 UTC (rev 
87

[arch-commits] Commit in activity-log-manager/trunk (PKGBUILD)

2013-04-08 Thread Balló György
Date: Monday, April 8, 2013 @ 18:23:55
  Author: bgyorgy
Revision: 87919

upgpkg: activity-log-manager 0.9.4-4

Rebuild for libgee06

Modified:
  activity-log-manager/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-04-08 16:11:23 UTC (rev 87918)
+++ PKGBUILD2013-04-08 16:23:55 UTC (rev 87919)
@@ -4,12 +4,12 @@
 
 pkgname=activity-log-manager
 pkgver=0.9.4
-pkgrel=3
+pkgrel=4
 pkgdesc="A graphical user interface which lets you easily control what gets 
logged by Zeitgeist"
 arch=('i686' 'x86_64')
 url="https://launchpad.net/activity-log-manager";
 license=('GPL2')
-depends=('gtk3' 'libgee' 'libzeitgeist' 'zeitgeist' 'hicolor-icon-theme' 
'xdg-utils')
+depends=('gtk3' 'libgee06' 'libzeitgeist' 'zeitgeist' 'hicolor-icon-theme' 
'xdg-utils')
 makedepends=('vala' 'intltool')
 install=$pkgname.install
 
source=(https://launchpad.net/$pkgname/${pkgver%.*}/$pkgver/+download/$pkgname-$pkgver.tar.gz
@@ -27,10 +27,10 @@
   # Fix docdir location
   sed -i 's/almdocdir =.*/almdocdir = ${docdir}/' Makefile.{am,in}
 
-  # Update language files
-  echo 'af ar ast be bg bn bs ca ca@valencia cs da de el eo es et eu fi fr gd 
gl he hi hr hu id it ja km ko ku lt lv mi ms my nb nl oc pl pt ro ru se si sk 
sl sr sv ta te ug uk uz vi zh_CN zh_HK zh_TW' >po/LINGUAS
+  # Install updated language files
   rename $pkgname- '' ../po/$pkgname-*.po
   mv -f -t po ../po/*
+  printf "%s\n" po/*.po | sed -e 's/po\///g' -e 's/\.po//g' >po/LINGUAS
 
   # Fix crash with GTK+ 3.6
   # https://bugs.launchpad.net/activity-log-manager/+bug/1058037



[arch-commits] Commit in activity-log-manager/repos (10 files)

2013-04-08 Thread Balló György
Date: Monday, April 8, 2013 @ 18:24:05
  Author: bgyorgy
Revision: 87920

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

Added:
  activity-log-manager/repos/community-staging-i686/
  activity-log-manager/repos/community-staging-i686/PKGBUILD
(from rev 87919, activity-log-manager/trunk/PKGBUILD)
  activity-log-manager/repos/community-staging-i686/activity-log-manager.install
(from rev 87919, activity-log-manager/trunk/activity-log-manager.install)
  activity-log-manager/repos/community-staging-i686/config.vapi
(from rev 87919, activity-log-manager/trunk/config.vapi)
  activity-log-manager/repos/community-staging-i686/fix-crash.patch
(from rev 87919, activity-log-manager/trunk/fix-crash.patch)
  activity-log-manager/repos/community-staging-x86_64/
  activity-log-manager/repos/community-staging-x86_64/PKGBUILD
(from rev 87919, activity-log-manager/trunk/PKGBUILD)
  
activity-log-manager/repos/community-staging-x86_64/activity-log-manager.install
(from rev 87919, activity-log-manager/trunk/activity-log-manager.install)
  activity-log-manager/repos/community-staging-x86_64/config.vapi
(from rev 87919, activity-log-manager/trunk/config.vapi)
  activity-log-manager/repos/community-staging-x86_64/fix-crash.patch
(from rev 87919, activity-log-manager/trunk/fix-crash.patch)

---+
 community-staging-i686/PKGBUILD   |   53 
 community-staging-i686/activity-log-manager.install   |   11 +++
 community-staging-i686/config.vapi|   11 +++
 community-staging-i686/fix-crash.patch|   15 
 community-staging-x86_64/PKGBUILD |   53 
 community-staging-x86_64/activity-log-manager.install |   11 +++
 community-staging-x86_64/config.vapi  |   11 +++
 community-staging-x86_64/fix-crash.patch  |   15 
 8 files changed, 180 insertions(+)

Copied: activity-log-manager/repos/community-staging-i686/PKGBUILD (from rev 
87919, activity-log-manager/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-04-08 16:24:05 UTC (rev 87920)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Balló György 
+# Contributor: Ner0
+
+pkgname=activity-log-manager
+pkgver=0.9.4
+pkgrel=4
+pkgdesc="A graphical user interface which lets you easily control what gets 
logged by Zeitgeist"
+arch=('i686' 'x86_64')
+url="https://launchpad.net/activity-log-manager";
+license=('GPL2')
+depends=('gtk3' 'libgee06' 'libzeitgeist' 'zeitgeist' 'hicolor-icon-theme' 
'xdg-utils')
+makedepends=('vala' 'intltool')
+install=$pkgname.install
+source=(https://launchpad.net/$pkgname/${pkgver%.*}/$pkgver/+download/$pkgname-$pkgver.tar.gz
+
http://pkgbuild.com/~bgyorgy/sources/$pkgname-translations-20121021.tar.gz
+fix-crash.patch
+config.vapi)
+md5sums=('cf85aecdaa6c0188a53d659709e1f8cd'
+ '6167df74ce44659aa94a89f31ff4d351'
+ '1052dec3691826f01fa3d4fd84284ccc'
+ 'fecc5ac50dfcd79c4c8d54599760d225')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  # Fix docdir location
+  sed -i 's/almdocdir =.*/almdocdir = ${docdir}/' Makefile.{am,in}
+
+  # Install updated language files
+  rename $pkgname- '' ../po/$pkgname-*.po
+  mv -f -t po ../po/*
+  printf "%s\n" po/*.po | sed -e 's/po\///g' -e 's/\.po//g' >po/LINGUAS
+
+  # Fix crash with GTK+ 3.6
+  # https://bugs.launchpad.net/activity-log-manager/+bug/1058037
+  patch -Np1 -i "$srcdir/fix-crash.patch"
+
+  # We need this file for build
+  mv "$srcdir/config.vapi" "$srcdir/$pkgname-$pkgver/src"
+
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+
+  # We don't have Whoopsie on Arch Linux
+  rm -r "$pkgdir/etc" 
"$pkgdir"/usr/share/{applications/activity-log-manager-ccpanel.desktop,dbus-1,gnome-control-center,polkit-1}
+}

Copied: 
activity-log-manager/repos/community-staging-i686/activity-log-manager.install 
(from rev 87919, activity-log-manager/trunk/activity-log-manager.install)
===
--- community-staging-i686/activity-log-manager.install 
(rev 0)
+++ community-staging-i686/activity-log-manager.install 2013-04-08 16:24:05 UTC 
(rev 87920)
@@ -0,0 +1,11 @@
+post_install() {
+  xdg-icon-resource forceupdate
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  post_install $1
+}

Copied: activity-log-manager/repos/community-staging-i686/config.vapi (from rev 
87919, activity-log-manager/trunk/config.vapi)
===
--- community-staging-i686/config.vapi  (rev 0)
+++ community-staging-i686/config.vapi  2013-

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

2013-04-08 Thread Pierre Schmitz
Date: Monday, April 8, 2013 @ 18:29:12
  Author: pierre
Revision: 182344

upgpkg: devtools 20130408-1

Modified:
  devtools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-04-08 15:23:26 UTC (rev 182343)
+++ PKGBUILD2013-04-08 16:29:12 UTC (rev 182344)
@@ -2,7 +2,7 @@
 # Maintainer: Pierre Schmitz 
 
 pkgname=devtools
-pkgver=20130406
+pkgver=20130408
 pkgrel=1
 pkgdesc='Tools for Arch Linux package maintainers'
 arch=('any')
@@ -11,7 +11,7 @@
 depends=('namcap' 'openssh' 'subversion' 'rsync' 'arch-install-scripts')
 source=("ftp://ftp.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.gz";
 
"ftp://ftp.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.gz.sig";)
-md5sums=('461c5bb3c113b8f58e806768c2110eda'
+md5sums=('12b42b429744af6517ae789f728e9f63'
  'SKIP')
 
 build() {



[arch-commits] Commit in devtools/repos/testing-any (PKGBUILD PKGBUILD)

2013-04-08 Thread Pierre Schmitz
Date: Monday, April 8, 2013 @ 18:29:18
  Author: pierre
Revision: 182345

archrelease: copy trunk to testing-any

Added:
  devtools/repos/testing-any/PKGBUILD
(from rev 182344, devtools/trunk/PKGBUILD)
Deleted:
  devtools/repos/testing-any/PKGBUILD

--+
 PKGBUILD |   50 +-
 1 file changed, 25 insertions(+), 25 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2013-04-08 16:29:12 UTC (rev 182344)
+++ PKGBUILD2013-04-08 16:29:18 UTC (rev 182345)
@@ -1,25 +0,0 @@
-# $Id$
-# Maintainer: Pierre Schmitz 
-
-pkgname=devtools
-pkgver=20130406
-pkgrel=1
-pkgdesc='Tools for Arch Linux package maintainers'
-arch=('any')
-license=('GPL')
-url='http://projects.archlinux.org/devtools.git/'
-depends=('namcap' 'openssh' 'subversion' 'rsync' 'arch-install-scripts')
-source=("ftp://ftp.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.gz";
-
"ftp://ftp.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.gz.sig";)
-md5sums=('461c5bb3c113b8f58e806768c2110eda'
- 'SKIP')
-
-build() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   make PREFIX=/usr
-}
-
-package() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   make PREFIX=/usr DESTDIR=${pkgdir} install
-}

Copied: devtools/repos/testing-any/PKGBUILD (from rev 182344, 
devtools/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD    2013-04-08 16:29:18 UTC (rev 182345)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Pierre Schmitz 
+
+pkgname=devtools
+pkgver=20130408
+pkgrel=1
+pkgdesc='Tools for Arch Linux package maintainers'
+arch=('any')
+license=('GPL')
+url='http://projects.archlinux.org/devtools.git/'
+depends=('namcap' 'openssh' 'subversion' 'rsync' 'arch-install-scripts')
+source=("ftp://ftp.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.gz";
+
"ftp://ftp.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.gz.sig";)
+md5sums=('12b42b429744af6517ae789f728e9f63'
+ 'SKIP')
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make PREFIX=/usr
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make PREFIX=/usr DESTDIR=${pkgdir} install
+}



[arch-commits] Commit in almanah/trunk (PKGBUILD eds-3.8.patch)

2013-04-08 Thread Balló György
Date: Monday, April 8, 2013 @ 18:43:01
  Author: bgyorgy
Revision: 87921

upgpkg: almanah 0.10.1-2

Rebuild for evolution-data-server 3.8

Added:
  almanah/trunk/eds-3.8.patch
Modified:
  almanah/trunk/PKGBUILD

---+
 PKGBUILD  |7 
 eds-3.8.patch | 2609 
 2 files changed, 2615 insertions(+), 1 deletion(-)

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


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

2013-04-08 Thread Balló György
Date: Monday, April 8, 2013 @ 18:43:26
  Author: bgyorgy
Revision: 87922

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

Added:
  almanah/repos/community-staging-i686/
  almanah/repos/community-staging-i686/PKGBUILD
(from rev 87921, almanah/trunk/PKGBUILD)
  almanah/repos/community-staging-i686/almanah.install
(from rev 87921, almanah/trunk/almanah.install)
  almanah/repos/community-staging-i686/eds-3.8.patch
(from rev 87921, almanah/trunk/eds-3.8.patch)
  almanah/repos/community-staging-i686/update-gtkspell3-support.patch
(from rev 87921, almanah/trunk/update-gtkspell3-support.patch)
  almanah/repos/community-staging-x86_64/
  almanah/repos/community-staging-x86_64/PKGBUILD
(from rev 87921, almanah/trunk/PKGBUILD)
  almanah/repos/community-staging-x86_64/almanah.install
(from rev 87921, almanah/trunk/almanah.install)
  almanah/repos/community-staging-x86_64/eds-3.8.patch
(from rev 87921, almanah/trunk/eds-3.8.patch)
  almanah/repos/community-staging-x86_64/update-gtkspell3-support.patch
(from rev 87921, almanah/trunk/update-gtkspell3-support.patch)

-+
 community-staging-i686/PKGBUILD |   40 
 community-staging-i686/almanah.install  |   12 
 community-staging-i686/eds-3.8.patch| 2609 ++
 community-staging-i686/update-gtkspell3-support.patch   |   90 
 community-staging-x86_64/PKGBUILD   |   40 
 community-staging-x86_64/almanah.install|   12 
 community-staging-x86_64/eds-3.8.patch  | 2609 ++
 community-staging-x86_64/update-gtkspell3-support.patch |   90 
 8 files changed, 5502 insertions(+)

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


  1   2   >