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

2015-06-30 Thread Evangelos Foutras
Date: Tuesday, June 30, 2015 @ 10:11:00
  Author: foutrelis
Revision: 241420

upgpkg: linux 4.0.7-2

Fix deadlock with stacked loop devices (FS#45129).

Added:
  linux/trunk/0001-block-loop-convert-to-per-device-workqueue.patch
  linux/trunk/0002-block-loop-avoiding-too-many-pending-per-work-I-O.patch
Modified:
  linux/trunk/PKGBUILD

--+
 0001-block-loop-convert-to-per-device-workqueue.patch|  133 ++
 0002-block-loop-avoiding-too-many-pending-per-work-I-O.patch |   52 +++
 PKGBUILD |   11 
 3 files changed, 195 insertions(+), 1 deletion(-)

Added: 0001-block-loop-convert-to-per-device-workqueue.patch
===
--- 0001-block-loop-convert-to-per-device-workqueue.patch   
(rev 0)
+++ 0001-block-loop-convert-to-per-device-workqueue.patch   2015-06-30 
08:11:00 UTC (rev 241420)
@@ -0,0 +1,133 @@
+From ebcacf05168d9791d39c5434164c64b9ef937171 Mon Sep 17 00:00:00 2001
+From: Ming Lei ming@canonical.com
+Date: Tue, 5 May 2015 19:49:54 +0800
+Subject: [PATCH 1/2] block: loop: convert to per-device workqueue
+
+Documentation/workqueue.txt:
+   If there is dependency among multiple work items used
+   during memory reclaim, they should be queued to separate
+   wq each with WQ_MEM_RECLAIM.
+
+Loop devices can be stacked, so we have to convert to per-device
+workqueue. One example is Fedora live CD.
+
+Fixes: b5dd2f6047ca108001328aac0e8588edd15f1778
+Cc: sta...@vger.kernel.org (v4.0)
+Cc: Justin M. Forbes jfor...@fedoraproject.org
+Signed-off-by: Ming Lei ming@canonical.com
+Acked-by: Tejun Heo t...@kernel.org
+Signed-off-by: Jens Axboe ax...@fb.com
+---
+ drivers/block/loop.c | 30 ++
+ drivers/block/loop.h |  1 +
+ 2 files changed, 15 insertions(+), 16 deletions(-)
+
+diff --git a/drivers/block/loop.c b/drivers/block/loop.c
+index d1f168b..fec06d5 100644
+--- a/drivers/block/loop.c
 b/drivers/block/loop.c
+@@ -85,8 +85,6 @@ static DEFINE_MUTEX(loop_index_mutex);
+ static int max_part;
+ static int part_shift;
+ 
+-static struct workqueue_struct *loop_wq;
+-
+ /*
+  * Transfer functions
+  */
+@@ -777,6 +775,12 @@ static int loop_set_fd(struct loop_device *lo, fmode_t 
mode,
+   size = get_loop_size(lo, file);
+   if ((loff_t)(sector_t)size != size)
+   goto out_putf;
++  error = -ENOMEM;
++  lo-wq = alloc_workqueue(kloopd%d,
++  WQ_MEM_RECLAIM | WQ_HIGHPRI | WQ_UNBOUND, 0,
++  lo-lo_number);
++  if (!lo-wq)
++  goto out_putf;
+ 
+   error = 0;
+ 
+@@ -924,6 +928,8 @@ static int loop_clr_fd(struct loop_device *lo)
+   lo-lo_flags = 0;
+   if (!part_shift)
+   lo-lo_disk-flags |= GENHD_FL_NO_PART_SCAN;
++  destroy_workqueue(lo-wq);
++  lo-wq = NULL;
+   mutex_unlock(lo-lo_ctl_mutex);
+   /*
+* Need not hold lo_ctl_mutex to fput backing file.
+@@ -1477,9 +1483,13 @@ static int loop_queue_rq(struct blk_mq_hw_ctx *hctx,
+   const struct blk_mq_queue_data *bd)
+ {
+   struct loop_cmd *cmd = blk_mq_rq_to_pdu(bd-rq);
++  struct loop_device *lo = cmd-rq-q-queuedata;
+ 
+   blk_mq_start_request(bd-rq);
+ 
++  if (lo-lo_state != Lo_bound)
++  return -EIO;
++
+   if (cmd-rq-cmd_flags  REQ_WRITE) {
+   struct loop_device *lo = cmd-rq-q-queuedata;
+   bool need_sched = true;
+@@ -1493,9 +1503,9 @@ static int loop_queue_rq(struct blk_mq_hw_ctx *hctx,
+   spin_unlock_irq(lo-lo_lock);
+ 
+   if (need_sched)
+-  queue_work(loop_wq, lo-write_work);
++  queue_work(lo-wq, lo-write_work);
+   } else {
+-  queue_work(loop_wq, cmd-read_work);
++  queue_work(lo-wq, cmd-read_work);
+   }
+ 
+   return BLK_MQ_RQ_QUEUE_OK;
+@@ -1507,9 +1517,6 @@ static void loop_handle_cmd(struct loop_cmd *cmd)
+   struct loop_device *lo = cmd-rq-q-queuedata;
+   int ret = -EIO;
+ 
+-  if (lo-lo_state != Lo_bound)
+-  goto failed;
+-
+   if (write  (lo-lo_flags  LO_FLAGS_READ_ONLY))
+   goto failed;
+ 
+@@ -1858,13 +1865,6 @@ static int __init loop_init(void)
+   goto misc_out;
+   }
+ 
+-  loop_wq = alloc_workqueue(kloopd,
+-  WQ_MEM_RECLAIM | WQ_HIGHPRI | WQ_UNBOUND, 0);
+-  if (!loop_wq) {
+-  err = -ENOMEM;
+-  goto misc_out;
+-  }
+-
+   blk_register_region(MKDEV(LOOP_MAJOR, 0), range,
+ THIS_MODULE, loop_probe, NULL, NULL);
+ 
+@@ -1902,8 +1902,6 @@ static void __exit loop_exit(void)
+   blk_unregister_region(MKDEV(LOOP_MAJOR, 0), range);
+   unregister_blkdev(LOOP_MAJOR, loop);
+ 
+-  destroy_workqueue(loop_wq);
+-
+   

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

2015-06-30 Thread Evangelos Foutras
Date: Tuesday, June 30, 2015 @ 10:11:24
  Author: foutrelis
Revision: 241421

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

Added:
  linux/repos/testing-i686/0001-block-loop-convert-to-per-device-workqueue.patch
(from rev 241420, 
linux/trunk/0001-block-loop-convert-to-per-device-workqueue.patch)
  
linux/repos/testing-i686/0002-block-loop-avoiding-too-many-pending-per-work-I-O.patch
(from rev 241420, 
linux/trunk/0002-block-loop-avoiding-too-many-pending-per-work-I-O.patch)
  linux/repos/testing-i686/PKGBUILD
(from rev 241420, linux/trunk/PKGBUILD)
  linux/repos/testing-i686/change-default-console-loglevel.patch
(from rev 241420, linux/trunk/change-default-console-loglevel.patch)
  linux/repos/testing-i686/config
(from rev 241420, linux/trunk/config)
  linux/repos/testing-i686/config.x86_64
(from rev 241420, linux/trunk/config.x86_64)
  linux/repos/testing-i686/linux.install
(from rev 241420, linux/trunk/linux.install)
  linux/repos/testing-i686/linux.preset
(from rev 241420, linux/trunk/linux.preset)
  
linux/repos/testing-x86_64/0001-block-loop-convert-to-per-device-workqueue.patch
(from rev 241420, 
linux/trunk/0001-block-loop-convert-to-per-device-workqueue.patch)
  
linux/repos/testing-x86_64/0002-block-loop-avoiding-too-many-pending-per-work-I-O.patch
(from rev 241420, 
linux/trunk/0002-block-loop-avoiding-too-many-pending-per-work-I-O.patch)
  linux/repos/testing-x86_64/PKGBUILD
(from rev 241420, linux/trunk/PKGBUILD)
  linux/repos/testing-x86_64/change-default-console-loglevel.patch
(from rev 241420, linux/trunk/change-default-console-loglevel.patch)
  linux/repos/testing-x86_64/config
(from rev 241420, linux/trunk/config)
  linux/repos/testing-x86_64/config.x86_64
(from rev 241420, linux/trunk/config.x86_64)
  linux/repos/testing-x86_64/linux.install
(from rev 241420, linux/trunk/linux.install)
  linux/repos/testing-x86_64/linux.preset
(from rev 241420, linux/trunk/linux.preset)
Deleted:
  linux/repos/testing-i686/PKGBUILD
  linux/repos/testing-i686/change-default-console-loglevel.patch
  linux/repos/testing-i686/config
  linux/repos/testing-i686/config.x86_64
  linux/repos/testing-i686/linux.install
  linux/repos/testing-i686/linux.preset
  linux/repos/testing-x86_64/PKGBUILD
  linux/repos/testing-x86_64/change-default-console-loglevel.patch
  linux/repos/testing-x86_64/config
  linux/repos/testing-x86_64/config.x86_64
  linux/repos/testing-x86_64/linux.install
  linux/repos/testing-x86_64/linux.preset

-+
 /PKGBUILD   |  
614 
 /change-default-console-loglevel.patch  |  
 22 
 /config 
|14928 ++
 /config.x86_64  
|14422 +
 /linux.install  |  
 74 
 /linux.preset   |  
 28 
 testing-i686/0001-block-loop-convert-to-per-device-workqueue.patch  |  
133 
 testing-i686/0002-block-loop-avoiding-too-many-pending-per-work-I-O.patch   |  
 52 
 testing-i686/PKGBUILD   |  
298 
 testing-i686/change-default-console-loglevel.patch  |  
 11 
 testing-i686/config | 
7464 -
 testing-i686/config.x86_64  | 
7211 
 testing-i686/linux.install  |  
 37 
 testing-i686/linux.preset   |  
 14 
 testing-x86_64/0001-block-loop-convert-to-per-device-workqueue.patch|  
133 
 testing-x86_64/0002-block-loop-avoiding-too-many-pending-per-work-I-O.patch |  
 52 
 testing-x86_64/PKGBUILD |  
298 
 testing-x86_64/change-default-console-loglevel.patch|  
 11 
 testing-x86_64/config   | 
7464 -
 testing-x86_64/config.x86_64| 
7211 
 testing-x86_64/linux.install|  
 37 
 testing-x86_64/linux.preset |  
 14 
 22 files changed, 30458 insertions(+), 30070 deletions(-)

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


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

2015-06-30 Thread Evangelos Foutras
Date: Tuesday, June 30, 2015 @ 09:50:03
  Author: foutrelis
Revision: 241419

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

Added:
  iniparser/repos/extra-i686/0001-allocate-memory-for-string-termination.patch
(from rev 241418, 
iniparser/trunk/0001-allocate-memory-for-string-termination.patch)
  iniparser/repos/extra-i686/PKGBUILD
(from rev 241418, iniparser/trunk/PKGBUILD)
  iniparser/repos/extra-x86_64/0001-allocate-memory-for-string-termination.patch
(from rev 241418, 
iniparser/trunk/0001-allocate-memory-for-string-termination.patch)
  iniparser/repos/extra-x86_64/PKGBUILD
(from rev 241418, iniparser/trunk/PKGBUILD)
Deleted:
  iniparser/repos/extra-i686/PKGBUILD
  iniparser/repos/extra-x86_64/PKGBUILD

+
 /PKGBUILD  |   78 
++
 extra-i686/0001-allocate-memory-for-string-termination.patch   |   26 +++
 extra-i686/PKGBUILD|   32 
 extra-x86_64/0001-allocate-memory-for-string-termination.patch |   26 +++
 extra-x86_64/PKGBUILD  |   32 
 5 files changed, 130 insertions(+), 64 deletions(-)

Copied: 
iniparser/repos/extra-i686/0001-allocate-memory-for-string-termination.patch 
(from rev 241418, 
iniparser/trunk/0001-allocate-memory-for-string-termination.patch)
===
--- extra-i686/0001-allocate-memory-for-string-termination.patch
(rev 0)
+++ extra-i686/0001-allocate-memory-for-string-termination.patch
2015-06-30 07:50:03 UTC (rev 241419)
@@ -0,0 +1,26 @@
+From 3d385e4f2aba5122d9e40481c4aec9135b96428a Mon Sep 17 00:00:00 2001
+From: Christian Hesse m...@eworm.de
+Date: Thu, 21 May 2015 10:07:32 +0200
+Subject: [PATCH] allocate memory for string termination
+
+This fixes invalid write.
+---
+ src/iniparser.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/iniparser.c b/src/iniparser.c
+index 1eb1004..c8a728e 100644
+--- a/src/iniparser.c
 b/src/iniparser.c
+@@ -66,7 +66,7 @@ static const char * strlwc(const char * in, char *out, 
unsigned len)
+ /*--*/
+ static char * _strdup(const char *s)
+ {
+-char * copy = (char*) malloc(strlen(s));
++char * copy = (char*) malloc(strlen(s) + 1);
+ strcpy(copy, s);
+ return copy ;
+ }
+-- 
+2.4.5
+

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-06-30 07:49:52 UTC (rev 241418)
+++ extra-i686/PKGBUILD 2015-06-30 07:50:03 UTC (rev 241419)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer: Roman Kyrylych roman.kyryl...@gmail.com
-# Contributor: Roman Kyrylych roman.kyryl...@gmail.com
-
-pkgname=iniparser
-pkgver=4.0
-pkgrel=1
-pkgdesc=A free stand-alone ini file parsing library written in portable ANSI 
C
-arch=('i686' 'x86_64')
-url=http://ndevilla.free.fr/iniparser/;
-license=('MIT')
-depends=('glibc')
-makedepends=('chrpath')
-source=(https://github.com/ndevilla/iniparser/archive/v$pkgver.tar.gz)
-md5sums=('94c7278f8d22de1a31320219b27634b0')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  install -Dm644 src/iniparser.h $pkgdir/usr/include/iniparser.h
-  install -Dm644 src/dictionary.h $pkgdir/usr/include/dictionary.h
-  install -Dm644 libiniparser.a $pkgdir/usr/lib/libiniparser.a
-  install -Dm644 libiniparser.so.0 $pkgdir/usr/lib/libiniparser.so.0
-  install -Dm644 LICENSE $pkgdir/usr/share/licenses/iniparser/LICENSE
-  ln -sf libiniparser.so.0 $pkgdir/usr/lib/libiniparser.so
-  chrpath -d $pkgdir/usr/lib/libiniparser.so
-}

Copied: iniparser/repos/extra-i686/PKGBUILD (from rev 241418, 
iniparser/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-06-30 07:50:03 UTC (rev 241419)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: Roman Kyrylych roman.kyryl...@gmail.com
+# Contributor: Roman Kyrylych roman.kyryl...@gmail.com
+
+pkgname=iniparser
+pkgver=4.0
+pkgrel=2
+pkgdesc=A free stand-alone ini file parsing library written in portable ANSI 
C
+arch=('i686' 'x86_64')
+url=http://ndevilla.free.fr/iniparser/;
+license=('MIT')
+depends=('glibc')
+makedepends=('chrpath')
+source=($pkgname-$pkgver.tar.gz::https://github.com/ndevilla/iniparser/archive/v$pkgver.tar.gz
+0001-allocate-memory-for-string-termination.patch)
+md5sums=('94c7278f8d22de1a31320219b27634b0'
+ '1ca2f65886484ea151d5076e09782c28')
+
+prepare() {
+  cd $srcdir/$pkgname-$pkgver
+  patch -Np1 -i ../0001-allocate-memory-for-string-termination.patch
+}
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  make
+}

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

2015-06-30 Thread Evangelos Foutras
Date: Tuesday, June 30, 2015 @ 09:49:52
  Author: foutrelis
Revision: 241418

upgpkg: iniparser 4.0-2

Fix memory corruption (FS#45039).

Added:
  iniparser/trunk/0001-allocate-memory-for-string-termination.patch
Modified:
  iniparser/trunk/PKGBUILD

---+
 0001-allocate-memory-for-string-termination.patch |   26 
 PKGBUILD  |   13 +++---
 2 files changed, 36 insertions(+), 3 deletions(-)

Added: 0001-allocate-memory-for-string-termination.patch
===
--- 0001-allocate-memory-for-string-termination.patch   
(rev 0)
+++ 0001-allocate-memory-for-string-termination.patch   2015-06-30 07:49:52 UTC 
(rev 241418)
@@ -0,0 +1,26 @@
+From 3d385e4f2aba5122d9e40481c4aec9135b96428a Mon Sep 17 00:00:00 2001
+From: Christian Hesse m...@eworm.de
+Date: Thu, 21 May 2015 10:07:32 +0200
+Subject: [PATCH] allocate memory for string termination
+
+This fixes invalid write.
+---
+ src/iniparser.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/iniparser.c b/src/iniparser.c
+index 1eb1004..c8a728e 100644
+--- a/src/iniparser.c
 b/src/iniparser.c
+@@ -66,7 +66,7 @@ static const char * strlwc(const char * in, char *out, 
unsigned len)
+ /*--*/
+ static char * _strdup(const char *s)
+ {
+-char * copy = (char*) malloc(strlen(s));
++char * copy = (char*) malloc(strlen(s) + 1);
+ strcpy(copy, s);
+ return copy ;
+ }
+-- 
+2.4.5
+

Modified: PKGBUILD
===
--- PKGBUILD2015-06-30 05:47:00 UTC (rev 241417)
+++ PKGBUILD2015-06-30 07:49:52 UTC (rev 241418)
@@ -5,7 +5,7 @@
 
 pkgname=iniparser
 pkgver=4.0
-pkgrel=1
+pkgrel=2
 pkgdesc=A free stand-alone ini file parsing library written in portable ANSI 
C
 arch=('i686' 'x86_64')
 url=http://ndevilla.free.fr/iniparser/;
@@ -12,9 +12,16 @@
 license=('MIT')
 depends=('glibc')
 makedepends=('chrpath')
-source=(https://github.com/ndevilla/iniparser/archive/v$pkgver.tar.gz)
-md5sums=('94c7278f8d22de1a31320219b27634b0')
+source=($pkgname-$pkgver.tar.gz::https://github.com/ndevilla/iniparser/archive/v$pkgver.tar.gz
+0001-allocate-memory-for-string-termination.patch)
+md5sums=('94c7278f8d22de1a31320219b27634b0'
+ '1ca2f65886484ea151d5076e09782c28')
 
+prepare() {
+  cd $srcdir/$pkgname-$pkgver
+  patch -Np1 -i ../0001-allocate-memory-for-string-termination.patch
+}
+
 build() {
   cd $srcdir/$pkgname-$pkgver
   make


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

2015-06-30 Thread Felix Yan
Date: Wednesday, July 1, 2015 @ 05:01:11
  Author: fyan
Revision: 241655

archrelease: copy trunk to extra-any

Added:
  pylint/repos/extra-any/PKGBUILD
(from rev 241654, pylint/trunk/PKGBUILD)
Deleted:
  pylint/repos/extra-any/PKGBUILD

--+
 PKGBUILD |  142 ++---
 1 file changed, 71 insertions(+), 71 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-07-01 03:00:53 UTC (rev 241654)
+++ PKGBUILD2015-07-01 03:01:11 UTC (rev 241655)
@@ -1,71 +0,0 @@
-# $Id$
-# Maintainer: Angel Velasquez an...@archlinux.org
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Stéphane Gaudreault steph...@archlinux.org
-# Contributor: Alexander Fehr pizzapunk gmail com
-
-pkgbase=pylint
-pkgname=('python2-pylint' 'python-pylint')
-pkgver=1.4.3
-pkgrel=1
-pkgdesc=Analyzes Python code looking for bugs and signs of poor quality
-arch=('any')
-url=http://pylint.org;
-license=('GPL')
-makedepends=('python2-astroid' 'python-astroid' 'python2-setuptools' 
'python-setuptools' 'python2-six' 'python-six')
-optdepends=('tk: Pylint GUI')
-source=(http://pypi.python.org/packages/source/p/${pkgbase}/${pkgbase}-${pkgver}.tar.gz;)
-sha1sums=('a8c0f3901a42d2cd82d34cb83bf669ee98c9c4c3')
-
-prepare() {
-  cp -a ${pkgbase}-${pkgver}{,-py3}
-
-  cd ${pkgbase}-${pkgver}/pylint
-  sed -e s|/usr/bin/env python|/usr/bin/env python2| -e 
s|/usr/bin/python$|/usr/bin/python2| -i epylint.py __main__.py 
test/input/noext test/data/ascript
-
-  cd ../../${pkgbase}-${pkgver}-py3/pylint
-  sed -e s|/usr/bin/env python|/usr/bin/env python3| -e 
s|/usr/bin/python$|/usr/bin/python3| -i epylint.py __main__.py 
test/input/noext test/data/ascript
-}
-
-build() {
-  cd ${pkgbase}-${pkgver}
-  python2 setup.py build
-
-  cd ../${pkgbase}-${pkgver}-py3
-  python3 setup.py build
-}
-
-check() {
-  cd ${pkgbase}-${pkgver}
-  PYTHONPATH=$PWD/build/lib:$PYTHONPATH python2 -Wi -m unittest discover -s 
pylint/test/ -p *test_*.py || warning Tests failed
-
-  cd ../${pkgbase}-${pkgver}-py3
-  PYTHONPATH=$PWD/build/lib:$PYTHONPATH python -Wi -m unittest discover -s 
pylint/test/ -p *test_*.py || warning Tests failed
-}
-
-package_python2-pylint() {
-  depends=('python2-astroid' 'python2-setuptools' 'python2-six')
-
-  cd ${pkgbase}-${pkgver}
-
-  python2 setup.py install --prefix=/usr --root=${pkgdir} --skip-build 
--optimize=1
-
-  install -d ${pkgdir}/usr/share/man/man1
-  install -m644 man/* ${pkgdir}/usr/share/man/man1
-
-  for i in epylint pylint pylint-gui pyreverse symilar; do
- mv ${pkgdir}/usr/bin/${i}{,2}
- mv ${pkgdir}/usr/share/man/man1/${i}{,2}.1
-  done
-}
-
-package_python-pylint() {
-  depends=('python-astroid' 'python-setuptools' 'python-six')
-
-  cd ${pkgbase}-${pkgver}-py3
-
-  python3 setup.py install --prefix=/usr --root=${pkgdir} --skip-build 
--optimize=1
-
-  install -d ${pkgdir}/usr/share/man/man1
-  install -m644 man/* ${pkgdir}/usr/share/man/man1
-}

Copied: pylint/repos/extra-any/PKGBUILD (from rev 241654, pylint/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-07-01 03:01:11 UTC (rev 241655)
@@ -0,0 +1,71 @@
+# $Id$
+# Maintainer: Angel Velasquez an...@archlinux.org
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Stéphane Gaudreault steph...@archlinux.org
+# Contributor: Alexander Fehr pizzapunk gmail com
+
+pkgbase=pylint
+pkgname=('python2-pylint' 'python-pylint')
+pkgver=1.4.4
+pkgrel=1
+pkgdesc=Analyzes Python code looking for bugs and signs of poor quality
+arch=('any')
+url=http://pylint.org;
+license=('GPL')
+makedepends=('python2-astroid' 'python-astroid' 'python2-setuptools' 
'python-setuptools' 'python2-six' 'python-six')
+optdepends=('tk: Pylint GUI')
+source=(http://pypi.python.org/packages/source/p/${pkgbase}/${pkgbase}-${pkgver}.tar.gz;)
+sha1sums=('4f46ee34830cebb51a1c5f8fa27e132bd0952ae3')
+
+prepare() {
+  cp -a ${pkgbase}-${pkgver}{,-py3}
+
+  cd ${pkgbase}-${pkgver}/pylint
+  sed -e s|/usr/bin/env python|/usr/bin/env python2| -e 
s|/usr/bin/python$|/usr/bin/python2| -i epylint.py __main__.py 
test/input/noext test/data/ascript
+
+  cd ../../${pkgbase}-${pkgver}-py3/pylint
+  sed -e s|/usr/bin/env python|/usr/bin/env python3| -e 
s|/usr/bin/python$|/usr/bin/python3| -i epylint.py __main__.py 
test/input/noext test/data/ascript
+}
+
+build() {
+  cd ${pkgbase}-${pkgver}
+  python2 setup.py build
+
+  cd ../${pkgbase}-${pkgver}-py3
+  python3 setup.py build
+}
+
+check() {
+  cd ${pkgbase}-${pkgver}
+  PYTHONPATH=$PWD/build/lib:$PYTHONPATH python2 -Wi -m unittest discover -s 
pylint/test/ -p *test_*.py || warning Tests failed
+
+  cd ../${pkgbase}-${pkgver}-py3
+  PYTHONPATH=$PWD/build/lib:$PYTHONPATH python -Wi -m unittest discover -s 
pylint/test/ -p *test_*.py || warning Tests failed
+}
+
+package_python2-pylint() {
+  

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

2015-06-30 Thread Felix Yan
Date: Wednesday, July 1, 2015 @ 05:10:52
  Author: fyan
Revision: 136180

upgpkg: python-pycuda 2015.1.1-1

Modified:
  python-pycuda/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-07-01 03:00:17 UTC (rev 136179)
+++ PKGBUILD2015-07-01 03:10:52 UTC (rev 136180)
@@ -4,7 +4,7 @@
 
 pkgbase=python-pycuda
 pkgname=('python-pycuda' 'python2-pycuda' 'pycuda-headers')
-pkgver=2015.1
+pkgver=2015.1.1
 pkgrel=1
 pkgdesc=Python wrapper for Nvidia CUDA
 arch=('x86_64')
@@ -13,7 +13,7 @@
 
source=(http://pypi.python.org/packages/source/p/pycuda/pycuda-${pkgver}.tar.gz;
 LICENSE)
 makedepends=('ctags' 'python2-setuptools' 'python-setuptools' 'python2-numpy' 
'python-numpy' 'mesa' 'cuda' 'boost' 'nvidia-utils')
-sha512sums=('b5a8712abb669d3ec243ae62fa683fc8cb99cab7375322c2fd6ad4f967b8a12f768b90398cc28e69874bf40e8aa1e3765c684986a96aab5279a8f1c7a44d51db'
+sha512sums=('e5186a8acd5bb7de23ee85b372b443d5d291b53e86abca99e2b0048032a3f5cabff03fe2f6c188944e26e577739801ed13ca6430f89bd80f49e6c080ef3a7d9e'
 
'ee0bef251b8b2c25cd5821932d506183655c04285ae7d01d12f86557812c5068568e9f38e9f6bffe28de870ec662ebe0ee9cce2b444883caaf66b4c877494130')
 
 build() {


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

2015-06-30 Thread Felix Yan
Date: Wednesday, July 1, 2015 @ 05:11:12
  Author: fyan
Revision: 136181

archrelease: copy trunk to community-x86_64

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

--+
 LICENSE  |   14 ++---
 PKGBUILD |  154 ++---
 2 files changed, 84 insertions(+), 84 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2015-07-01 03:10:52 UTC (rev 136180)
+++ LICENSE 2015-07-01 03:11:12 UTC (rev 136181)
@@ -1,7 +0,0 @@
-Copyright (c) 2009,10 Andreas Klöckner and Contributors.
-
-Permission is hereby granted, free of charge, to any person obtaining a copy 
of this software and associated documentation files (the “Software”), to deal 
in the Software without restriction, including without limitation the rights to 
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies 
of the Software, and to permit persons to whom the Software is furnished to do 
so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all 
copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 
SOFTWARE.

Copied: python-pycuda/repos/community-x86_64/LICENSE (from rev 136180, 
python-pycuda/trunk/LICENSE)
===
--- LICENSE (rev 0)
+++ LICENSE 2015-07-01 03:11:12 UTC (rev 136181)
@@ -0,0 +1,7 @@
+Copyright (c) 2009,10 Andreas Klöckner and Contributors.
+
+Permission is hereby granted, free of charge, to any person obtaining a copy 
of this software and associated documentation files (the “Software”), to deal 
in the Software without restriction, including without limitation the rights to 
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies 
of the Software, and to permit persons to whom the Software is furnished to do 
so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all 
copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 
SOFTWARE.

Deleted: PKGBUILD
===
--- PKGBUILD2015-07-01 03:10:52 UTC (rev 136180)
+++ PKGBUILD2015-07-01 03:11:12 UTC (rev 136181)
@@ -1,77 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Stéphane Gaudreault steph...@archlinux.org
-
-pkgbase=python-pycuda
-pkgname=('python-pycuda' 'python2-pycuda' 'pycuda-headers')
-pkgver=2015.1
-pkgrel=1
-pkgdesc=Python wrapper for Nvidia CUDA
-arch=('x86_64')
-url=http://mathema.tician.de/software/pycuda;
-license=('MIT' 'Apache')
-source=(http://pypi.python.org/packages/source/p/pycuda/pycuda-${pkgver}.tar.gz;
-LICENSE)
-makedepends=('ctags' 'python2-setuptools' 'python-setuptools' 'python2-numpy' 
'python-numpy' 'mesa' 'cuda' 'boost' 'nvidia-utils')
-sha512sums=('b5a8712abb669d3ec243ae62fa683fc8cb99cab7375322c2fd6ad4f967b8a12f768b90398cc28e69874bf40e8aa1e3765c684986a96aab5279a8f1c7a44d51db'
-
'ee0bef251b8b2c25cd5821932d506183655c04285ae7d01d12f86557812c5068568e9f38e9f6bffe28de870ec662ebe0ee9cce2b444883caaf66b4c877494130')
-
-build() {
-   cd ${srcdir}
-  
-   _arch=''
-   [[ $CARCH = x86_64 ]]  _arch='64'
-
-   cp -a pycuda-${pkgver}{,-python2}
-  
-   cd ${srcdir}/pycuda-${pkgver}
-   python3 ./configure.py \
-  --cuda-root=/opt/cuda \
-  --cuda-inc-dir=/opt/cuda/include \
-  --cudadrv-lib-dir=/opt/cuda/lib${_arch} \
-  --cudart-lib-dir=/opt/cuda/lib${_arch} \
-  --no-use-shipped-boost \
-  --boost-python-libname=boost_python3
-   make
-
-   cd ${srcdir}/pycuda-${pkgver}-python2
-   python2 ./configure.py \
-  

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

2015-06-30 Thread Felix Yan
Date: Wednesday, July 1, 2015 @ 05:00:17
  Author: fyan
Revision: 136179

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-07-01 02:59:48 UTC (rev 136178)
+++ community-i686/PKGBUILD 2015-07-01 03:00:17 UTC (rev 136179)
@@ -1,73 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Thomas S Hatch thatc...@gmail.com
-# Contributor: Jelle van der Waa je...@vdwaa.nl
-
-pkgbase=python-pymongo
-pkgname=('python-pymongo' 'python2-pymongo')
-pkgver=3.0.2
-pkgrel=1
-pkgdesc='Python module for using MongoDB'
-arch=('x86_64' 'i686')
-license=('APACHE')
-url='http://pypi.python.org/pypi/pymongo/'
-makedepends=('python-setuptools' 'python2-setuptools')
-checkdepends=('python-nose' 'python2-nose' 'python2-gevent' 'mongodb' 'perl')
-optdepends=('mongodb: High-performance schema-free document-oriented database')
-source=(http://pypi.python.org/packages/source/p/pymongo/pymongo-$pkgver.tar.gz;)
-sha256sums=('eb4a2102a82603f94306be2081af0ddbbd6d9c21d65e1dc761f0fecffda4c831')
-
-prepare() {
-  cp -a pymongo-$pkgver pymongo2-$pkgver
-}
-
-build() {
-  cd $srcdir/pymongo-$pkgver
-  python setup.py build
-
-  cd $srcdir/pymongo2-$pkgver
-  python2 setup.py build
-}
-
-check() {
-  _mongod_run() {
-MONGO_TMP_PORT=$(perl -MSocket -le 'socket S, PF_INET, 
SOCK_STREAM,getprotobyname(tcp);
-  $port = 5;
-  ++$port until bind S, sockaddr_in($port,inet_aton(127.1));
-  print $port')
-echo Picked port $MONGO_TMP_PORT to run tests with.
-
-# Start a mongod instance for test
-rm -rf $srcdir/mongo_tmp
-mkdir $srcdir/mongo_tmp
-rm -f $srcdir/mongo_tmp.pid
-mongod --bind_ip localhost --port $MONGO_TMP_PORT --dbpath 
$srcdir/mongo_tmp --nojournal \
- --nohttpinterface --noauth --smallfiles --nssize 1 --fork 
--pidfilepath $srcdir/mongo_tmp.pid --logpath $srcdir/mongo_tmp.log
-
-DB_PORT=$MONGO_TMP_PORT $@
-kill $(cat $srcdir/mongo_tmp.pid)
-  }
-
-  cd $srcdir/pymongo-$pkgver
-  _mongod_run python setup.py test
-
-  cd $srcdir/pymongo2-$pkgver
-  _mongod_run python2 setup.py test
-}
-
-package_python2-pymongo() {
-  depends=('python2')
-
-  cd pymongo2-$pkgver
-  python2 setup.py install --root=$pkgdir --skip-build --optimize=1
-}
-
-package_python-pymongo() {
-  depends=('python')
-
-  cd pymongo-$pkgver
-  python setup.py install --root=$pkgdir --skip-build --optimize=1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-pymongo/repos/community-i686/PKGBUILD (from rev 136178, 
python-pymongo/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-07-01 03:00:17 UTC (rev 136179)
@@ -0,0 +1,73 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Thomas S Hatch thatc...@gmail.com
+# Contributor: Jelle van der Waa je...@vdwaa.nl
+
+pkgbase=python-pymongo
+pkgname=('python-pymongo' 'python2-pymongo')
+pkgver=3.0.3
+pkgrel=1
+pkgdesc='Python module for using MongoDB'
+arch=('x86_64' 'i686')
+license=('APACHE')
+url='http://pypi.python.org/pypi/pymongo/'
+makedepends=('python-setuptools' 'python2-setuptools')
+checkdepends=('python-nose' 'python2-nose' 'python2-gevent' 'mongodb' 'perl')
+optdepends=('mongodb: High-performance schema-free document-oriented database')
+source=(http://pypi.python.org/packages/source/p/pymongo/pymongo-$pkgver.tar.gz;)
+sha256sums=('3c6b2317f8031bc1e200fd1ea35f00a96f4569e3f3f220a5e66ab6227d96ccaf')
+
+prepare() {
+  cp -a pymongo-$pkgver pymongo2-$pkgver
+}
+
+build() {
+  cd $srcdir/pymongo-$pkgver
+  python setup.py build
+
+  cd $srcdir/pymongo2-$pkgver
+  python2 setup.py build
+}
+
+check() {
+  _mongod_run() {
+MONGO_TMP_PORT=$(perl -MSocket -le 'socket S, PF_INET, 
SOCK_STREAM,getprotobyname(tcp);
+  $port = 5;
+  ++$port until bind S, sockaddr_in($port,inet_aton(127.1));
+  print $port')
+echo Picked port $MONGO_TMP_PORT to run tests with.
+
+# Start a mongod instance for test
+rm -rf $srcdir/mongo_tmp
+mkdir $srcdir/mongo_tmp
+rm -f $srcdir/mongo_tmp.pid
+mongod --bind_ip localhost --port 

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

2015-06-30 Thread Felix Yan
Date: Wednesday, July 1, 2015 @ 05:00:53
  Author: fyan
Revision: 241654

upgpkg: pylint 1.4.4-1

Modified:
  pylint/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-30 21:29:07 UTC (rev 241653)
+++ PKGBUILD2015-07-01 03:00:53 UTC (rev 241654)
@@ -6,7 +6,7 @@
 
 pkgbase=pylint
 pkgname=('python2-pylint' 'python-pylint')
-pkgver=1.4.3
+pkgver=1.4.4
 pkgrel=1
 pkgdesc=Analyzes Python code looking for bugs and signs of poor quality
 arch=('any')
@@ -15,7 +15,7 @@
 makedepends=('python2-astroid' 'python-astroid' 'python2-setuptools' 
'python-setuptools' 'python2-six' 'python-six')
 optdepends=('tk: Pylint GUI')
 
source=(http://pypi.python.org/packages/source/p/${pkgbase}/${pkgbase}-${pkgver}.tar.gz;)
-sha1sums=('a8c0f3901a42d2cd82d34cb83bf669ee98c9c4c3')
+sha1sums=('4f46ee34830cebb51a1c5f8fa27e132bd0952ae3')
 
 prepare() {
   cp -a ${pkgbase}-${pkgver}{,-py3}


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

2015-06-30 Thread Felix Yan
Date: Wednesday, July 1, 2015 @ 04:58:36
  Author: fyan
Revision: 136177

archrelease: copy trunk to community-any

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

--+
 PKGBUILD |   88 +++--
 1 file changed, 45 insertions(+), 43 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-07-01 02:58:18 UTC (rev 136176)
+++ PKGBUILD2015-07-01 02:58:36 UTC (rev 136177)
@@ -1,43 +0,0 @@
-# Maintainer: Patrice Peterson runiq at archlinux dot us
-# Contributor: JonnyJD a...@jonnyjd.net
-
-pkgbase=python-secretstorage
-pkgname=(python-secretstorage python2-secretstorage)
-pkgver=2.1.1
-pkgrel=2
-pkgdesc=Securely store passwords and other private data using the 
SecretService DBus API
-arch=('any')
-url=https://pypi.python.org/pypi/SecretStorage;
-license=('BSD')
-makedepends=('python-dbus' 'python2-dbus' 'python-crypto' 'python2-crypto')
-checkdepends=('gnome-keyring' 'xorg-server-xvfb')
-source=(https://pypi.python.org/packages/source/S/SecretStorage/SecretStorage-${pkgver}.tar.gz;)
-md5sums=('0c5c875104ebb6f6d45c7faf6c2943f9')
-
-prepare() {
-  cp -a SecretStorage-$pkgver{,-py2}
-}
-
-check() {
-  cd SecretStorage-$pkgver
-  xvfb-run python -m unittest discover -s tests || warning Tests failed
-
-  cd ../SecretStorage-$pkgver-py2
-  xvfb-run python2 -m unittest discover -s tests || warning Tests failed
-}
-
-package_python-secretstorage() {
-  depends=('python-dbus' 'python-crypto')
-
-  cd SecretStorage-$pkgver
-  python setup.py install -O1 --root=$pkgdir
-  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-secretstorage() {
-  depends=('python2-dbus' 'python2-crypto')
-
-  cd SecretStorage-$pkgver-py2
-  python2 setup.py install -O1 --root=$pkgdir
-  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-secretstorage/repos/community-any/PKGBUILD (from rev 136176, 
python-secretstorage/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-07-01 02:58:36 UTC (rev 136177)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Patrice Peterson runiq at archlinux dot us
+# Contributor: JonnyJD a...@jonnyjd.net
+
+pkgbase=python-secretstorage
+pkgname=(python-secretstorage python2-secretstorage)
+pkgver=2.1.2
+pkgrel=1
+pkgdesc=Securely store passwords and other private data using the 
SecretService DBus API
+arch=('any')
+url=https://pypi.python.org/pypi/SecretStorage;
+license=('BSD')
+makedepends=('python-dbus' 'python2-dbus' 'python-crypto' 'python2-crypto')
+checkdepends=('gnome-keyring' 'xorg-server-xvfb')
+source=(https://pypi.python.org/packages/source/S/SecretStorage/SecretStorage-${pkgver}.tar.gz;)
+md5sums=('795eadfdfd2f747df146dd1dac9835c0')
+
+prepare() {
+  cp -a SecretStorage-$pkgver{,-py2}
+}
+
+check() {
+  cd SecretStorage-$pkgver
+  xvfb-run -a python -m unittest discover -s tests || warning Tests failed
+
+  cd ../SecretStorage-$pkgver-py2
+  xvfb-run -a python2 -m unittest discover -s tests || warning Tests failed
+}
+
+package_python-secretstorage() {
+  depends=('python-dbus' 'python-crypto')
+
+  cd SecretStorage-$pkgver
+  python setup.py install -O1 --root=$pkgdir
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-secretstorage() {
+  depends=('python2-dbus' 'python2-crypto')
+
+  cd SecretStorage-$pkgver-py2
+  python2 setup.py install -O1 --root=$pkgdir
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}


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

2015-06-30 Thread Felix Yan
Date: Wednesday, July 1, 2015 @ 04:58:18
  Author: fyan
Revision: 136176

upgpkg: python-secretstorage 2.1.2-1

Modified:
  python-secretstorage/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-30 22:16:42 UTC (rev 136175)
+++ PKGBUILD2015-07-01 02:58:18 UTC (rev 136176)
@@ -5,8 +5,8 @@
 
 pkgbase=python-secretstorage
 pkgname=(python-secretstorage python2-secretstorage)
-pkgver=2.1.1
-pkgrel=2
+pkgver=2.1.2
+pkgrel=1
 pkgdesc=Securely store passwords and other private data using the 
SecretService DBus API
 arch=('any')
 url=https://pypi.python.org/pypi/SecretStorage;
@@ -14,7 +14,7 @@
 makedepends=('python-dbus' 'python2-dbus' 'python-crypto' 'python2-crypto')
 checkdepends=('gnome-keyring' 'xorg-server-xvfb')
 
source=(https://pypi.python.org/packages/source/S/SecretStorage/SecretStorage-${pkgver}.tar.gz;)
-md5sums=('0c5c875104ebb6f6d45c7faf6c2943f9')
+md5sums=('795eadfdfd2f747df146dd1dac9835c0')
 
 prepare() {
   cp -a SecretStorage-$pkgver{,-py2}
@@ -22,10 +22,10 @@
 
 check() {
   cd SecretStorage-$pkgver
-  xvfb-run python -m unittest discover -s tests || warning Tests failed
+  xvfb-run -a python -m unittest discover -s tests || warning Tests failed
 
   cd ../SecretStorage-$pkgver-py2
-  xvfb-run python2 -m unittest discover -s tests || warning Tests failed
+  xvfb-run -a python2 -m unittest discover -s tests || warning Tests failed
 }
 
 package_python-secretstorage() {


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

2015-06-30 Thread Felix Yan
Date: Wednesday, July 1, 2015 @ 04:59:48
  Author: fyan
Revision: 136178

upgpkg: python-pymongo 3.0.3-1

Modified:
  python-pymongo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-07-01 02:58:36 UTC (rev 136177)
+++ PKGBUILD2015-07-01 02:59:48 UTC (rev 136178)
@@ -6,7 +6,7 @@
 
 pkgbase=python-pymongo
 pkgname=('python-pymongo' 'python2-pymongo')
-pkgver=3.0.2
+pkgver=3.0.3
 pkgrel=1
 pkgdesc='Python module for using MongoDB'
 arch=('x86_64' 'i686')
@@ -16,7 +16,7 @@
 checkdepends=('python-nose' 'python2-nose' 'python2-gevent' 'mongodb' 'perl')
 optdepends=('mongodb: High-performance schema-free document-oriented database')
 
source=(http://pypi.python.org/packages/source/p/pymongo/pymongo-$pkgver.tar.gz;)
-sha256sums=('eb4a2102a82603f94306be2081af0ddbbd6d9c21d65e1dc761f0fecffda4c831')
+sha256sums=('3c6b2317f8031bc1e200fd1ea35f00a96f4569e3f3f220a5e66ab6227d96ccaf')
 
 prepare() {
   cp -a pymongo-$pkgver pymongo2-$pkgver


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

2015-06-30 Thread Gaetan Bisson
Date: Wednesday, July 1, 2015 @ 07:23:35
  Author: bisson
Revision: 241659

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

Added:
  openssh/repos/testing-i686/
  openssh/repos/testing-i686/PKGBUILD
(from rev 241658, openssh/trunk/PKGBUILD)
  openssh/repos/testing-i686/dispatch.patch
(from rev 241658, openssh/trunk/dispatch.patch)
  openssh/repos/testing-i686/error.patch
(from rev 241658, openssh/trunk/error.patch)
  openssh/repos/testing-i686/install
(from rev 241658, openssh/trunk/install)
  openssh/repos/testing-i686/sshd.conf
(from rev 241658, openssh/trunk/sshd.conf)
  openssh/repos/testing-i686/sshd.pam
(from rev 241658, openssh/trunk/sshd.pam)
  openssh/repos/testing-i686/sshd.service
(from rev 241658, openssh/trunk/sshd.service)
  openssh/repos/testing-i686/sshd.socket
(from rev 241658, openssh/trunk/sshd.socket)
  openssh/repos/testing-i686/sshd@.service
(from rev 241658, openssh/trunk/sshd@.service)
  openssh/repos/testing-i686/sshdgenkeys.service
(from rev 241658, openssh/trunk/sshdgenkeys.service)
  openssh/repos/testing-x86_64/
  openssh/repos/testing-x86_64/PKGBUILD
(from rev 241658, openssh/trunk/PKGBUILD)
  openssh/repos/testing-x86_64/dispatch.patch
(from rev 241658, openssh/trunk/dispatch.patch)
  openssh/repos/testing-x86_64/error.patch
(from rev 241658, openssh/trunk/error.patch)
  openssh/repos/testing-x86_64/install
(from rev 241658, openssh/trunk/install)
  openssh/repos/testing-x86_64/sshd.conf
(from rev 241658, openssh/trunk/sshd.conf)
  openssh/repos/testing-x86_64/sshd.pam
(from rev 241658, openssh/trunk/sshd.pam)
  openssh/repos/testing-x86_64/sshd.service
(from rev 241658, openssh/trunk/sshd.service)
  openssh/repos/testing-x86_64/sshd.socket
(from rev 241658, openssh/trunk/sshd.socket)
  openssh/repos/testing-x86_64/sshd@.service
(from rev 241658, openssh/trunk/sshd@.service)
  openssh/repos/testing-x86_64/sshdgenkeys.service
(from rev 241658, openssh/trunk/sshdgenkeys.service)

+
 testing-i686/PKGBUILD  |   92 +++
 testing-i686/dispatch.patch|   81 ++
 testing-i686/error.patch   |   25 +
 testing-i686/install   |   10 +++
 testing-i686/sshd.conf |1 
 testing-i686/sshd.pam  |6 ++
 testing-i686/sshd.service  |   17 ++
 testing-i686/sshd.socket   |   10 +++
 testing-i686/sshd@.service |8 +++
 testing-i686/sshdgenkeys.service   |   17 ++
 testing-x86_64/PKGBUILD|   92 +++
 testing-x86_64/dispatch.patch  |   81 ++
 testing-x86_64/error.patch |   25 +
 testing-x86_64/install |   10 +++
 testing-x86_64/sshd.conf   |1 
 testing-x86_64/sshd.pam|6 ++
 testing-x86_64/sshd.service|   17 ++
 testing-x86_64/sshd.socket |   10 +++
 testing-x86_64/sshd@.service   |8 +++
 testing-x86_64/sshdgenkeys.service |   17 ++
 20 files changed, 534 insertions(+)

Copied: openssh/repos/testing-i686/PKGBUILD (from rev 241658, 
openssh/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-07-01 05:23:35 UTC (rev 241659)
@@ -0,0 +1,92 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: Aaron Griffin aa...@archlinux.org
+# Contributor: judd jvi...@zeroflux.org
+
+pkgname=openssh
+pkgver=6.9p1
+pkgrel=1
+pkgdesc='Free version of the SSH connectivity tools'
+url='http://www.openssh.org/portable.html'
+license=('custom:BSD')
+arch=('i686' 'x86_64')
+makedepends=('linux-headers')
+depends=('krb5' 'openssl' 'libedit' 'ldns')
+optdepends=('xorg-xauth: X11 forwarding'
+'x11-ssh-askpass: input passphrase in X')
+validpgpkeys=('59C2118ED206D927E667EBE3D3E5F56B6D920D30')
+source=(ftp://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/${pkgname}-${pkgver}.tar.gz{,.asc}
+'sshdgenkeys.service'
+'sshd@.service'
+'sshd.service'
+'sshd.socket'
+'sshd.conf'
+'sshd.pam')
+sha1sums=('86ab57f00d0fd9bf302760f2f6deac1b6e9df265' 'SKIP'
+  'cc1ceec606c98c7407e7ac21ade23aed81e31405'
+  '6a0ff3305692cf83aca96e10f3bb51e1c26fccda'
+  'ec49c6beba923e201505f5669cea48cad29014db'
+  'e12fa910b26a5634e5a6ac39ce1399a132cf6796'
+  'c9b2e4ce259cd62ddb00364d3ee6f00a8bf2d05f'
+  'd93dca5ebda4610ff7647187f8928a3de28703f3')
+
+backup=('etc/ssh/ssh_config' 'etc/ssh/sshd_config' 'etc/pam.d/sshd')
+
+install=install
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+
+   ./configure \
+   --prefix=/usr \
+   --sbindir=/usr/bin \
+   --libexecdir=/usr/lib/ssh \
+   

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

2015-06-30 Thread Jan Steffens
Date: Tuesday, June 30, 2015 @ 13:43:05
  Author: heftig
Revision: 241429

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-06-30 11:40:53 UTC (rev 241428)
+++ extra-i686/PKGBUILD 2015-06-30 11:43:05 UTC (rev 241429)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=epiphany
-pkgver=3.16.1
-pkgrel=1
-install=epiphany.install
-pkgdesc=A GNOME web browser based on the WebKit rendering engine.
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('libsoup' 'libnotify' 'gsettings-desktop-schemas' 'webkit2gtk' 'nss' 
'iso-codes' 'dconf' 'desktop-file-utils' 'gcr' 'gnome-desktop' 'libwnck3' 
'gnome-themes-standard')
-makedepends=('intltool' 'itstool' 'docbook-xml' 'startup-notification' 
'gobject-introspection')
-options=('!emptydirs')
-groups=('gnome')
-url=https://wiki.gnome.org/Apps/Web;
-source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('4e59a13c299d1ce726871958e1925b42f93d8c73bf1bb0decf79749be00e9666')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var --libexecdir=/usr/lib/$pkgname
-
-  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: epiphany/repos/extra-i686/PKGBUILD (from rev 241428, 
epiphany/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-06-30 11:43:05 UTC (rev 241429)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=epiphany
+pkgver=3.16.2
+pkgrel=1
+install=epiphany.install
+pkgdesc=A GNOME web browser based on the WebKit rendering engine.
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('libsoup' 'libnotify' 'gsettings-desktop-schemas' 'webkit2gtk' 'nss' 
'iso-codes' 'dconf' 'desktop-file-utils' 'gcr' 'gnome-desktop' 'libwnck3' 
'gnome-themes-standard')
+makedepends=('intltool' 'itstool' 'docbook-xml' 'startup-notification' 
'gobject-introspection')
+options=('!emptydirs')
+groups=('gnome')
+url=https://wiki.gnome.org/Apps/Web;
+source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('a621b5f443bc168980d12452f1a031e0a50d99ffc825989a38b14d398def73e6')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --libexecdir=/usr/lib/$pkgname
+
+  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Deleted: extra-i686/epiphany.install
===
--- extra-i686/epiphany.install 2015-06-30 11:40:53 UTC (rev 241428)
+++ extra-i686/epiphany.install 2015-06-30 11:43:05 UTC (rev 241429)
@@ -1,13 +0,0 @@
-post_install() {
-glib-compile-schemas /usr/share/glib-2.0/schemas
-update-desktop-database -q
-gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
-}
-
-post_upgrade() {
-post_install
-}
-
-post_remove() {
-post_install
-}

Copied: epiphany/repos/extra-i686/epiphany.install (from rev 241428, 
epiphany/trunk/epiphany.install)
===
--- extra-i686/epiphany.install (rev 0)
+++ extra-i686/epiphany.install 2015-06-30 11:43:05 UTC (rev 241429)
@@ -0,0 +1,13 @@
+post_install() {
+glib-compile-schemas /usr/share/glib-2.0/schemas
+update-desktop-database -q
+gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}

Deleted: extra-x86_64/PKGBUILD

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

2015-06-30 Thread Jan Steffens
Date: Tuesday, June 30, 2015 @ 13:46:37
  Author: heftig
Revision: 241431

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

Added:
  totem/repos/extra-i686/PKGBUILD
(from rev 241430, totem/trunk/PKGBUILD)
  totem/repos/extra-i686/bugreport.patch
(from rev 241430, totem/trunk/bugreport.patch)
  totem/repos/extra-i686/totem.install
(from rev 241430, totem/trunk/totem.install)
  totem/repos/extra-x86_64/PKGBUILD
(from rev 241430, totem/trunk/PKGBUILD)
  totem/repos/extra-x86_64/bugreport.patch
(from rev 241430, totem/trunk/bugreport.patch)
  totem/repos/extra-x86_64/totem.install
(from rev 241430, totem/trunk/totem.install)
Deleted:
  totem/repos/extra-i686/PKGBUILD
  totem/repos/extra-i686/bugreport.patch
  totem/repos/extra-i686/totem.install
  totem/repos/extra-x86_64/PKGBUILD
  totem/repos/extra-x86_64/bugreport.patch
  totem/repos/extra-x86_64/totem.install

--+
 /PKGBUILD|  106 +
 /bugreport.patch |   44 +
 /totem.install   |   26 ++
 extra-i686/PKGBUILD  |   53 
 extra-i686/bugreport.patch   |   22 
 extra-i686/totem.install |   13 -
 extra-x86_64/PKGBUILD|   53 
 extra-x86_64/bugreport.patch |   22 
 extra-x86_64/totem.install   |   13 -
 9 files changed, 176 insertions(+), 176 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-06-30 11:45:07 UTC (rev 241430)
+++ extra-i686/PKGBUILD 2015-06-30 11:46:37 UTC (rev 241431)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
-# Contributor: Jan de Groot j...@archlinux.org
-
-pkgname=totem
-pkgver=3.16.1
-pkgrel=1
-pkgdesc=GNOME3 movie player based on GStreamer
-url=http://www.gnome.org;
-arch=(i686 x86_64)
-license=(GPL2 custom)
-depends=(totem-plparser desktop-file-utils iso-codes libpeas clutter-gtk 
clutter-gst grilo
- hicolor-icon-theme gsettings-desktop-schemas dconf
- python-gobject python-xdg
- gst-plugins-base gst-plugins-good gst-plugins-bad gnome-desktop)
-makedepends=(intltool libnautilus-extension lirc vala zeitgeist
- itstool docbook-xsl python-pylint gobject-introspection)
-optdepends=('gst-plugins-ugly: Extra media codecs'
-'gst-libav: Extra media codecs'
-'lirc-utils: Infrared Remote Control plugin'
-'grilo-plugins: Media discovery'
-'zeitgeist: Zeitgeist plugin'
-'python-dbus: MPRIS plugin')
-groups=(gnome)
-options=('!emptydirs')
-install=totem.install
-conflicts=(totem-plugin)
-replaces=(totem-plugin)
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('c98d0006ece80f48f8e6bb6ed269857bad9746bf86669f212078c770441475da')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr \
---sysconfdir=/etc \
---libexecdir=/usr/lib/totem \
---localstatedir=/var \
---disable-static \
---enable-python \
---enable-nautilus
-
-  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=${pkgdir} install
-
-  install -Dm644 COPYING $pkgdir/usr/share/licenses/totem/COPYING
-}

Copied: totem/repos/extra-i686/PKGBUILD (from rev 241430, totem/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-06-30 11:46:37 UTC (rev 241431)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+# Contributor: Jan de Groot j...@archlinux.org
+
+pkgname=totem
+pkgver=3.16.2
+pkgrel=1
+pkgdesc=GNOME3 movie player based on GStreamer
+url=http://www.gnome.org;
+arch=(i686 x86_64)
+license=(GPL2 custom)
+depends=(totem-plparser desktop-file-utils iso-codes libpeas clutter-gtk 
clutter-gst grilo
+ hicolor-icon-theme gsettings-desktop-schemas dconf
+ python-gobject python-xdg
+ gst-plugins-base gst-plugins-good gst-plugins-bad gnome-desktop)
+makedepends=(intltool libnautilus-extension lirc vala zeitgeist
+ itstool docbook-xsl python-pylint gobject-introspection)
+optdepends=('gst-plugins-ugly: Extra media codecs'
+'gst-libav: Extra media codecs'
+'lirc-utils: Infrared Remote Control plugin'
+'grilo-plugins: Media discovery'
+'zeitgeist: Zeitgeist plugin'
+'python-dbus: MPRIS plugin')
+groups=(gnome)
+options=('!emptydirs')
+install=totem.install
+conflicts=(totem-plugin)
+replaces=(totem-plugin)
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)

[arch-commits] Commit in plan9port/trunk (PKGBUILD acme.sh plan9.sh)

2015-06-30 Thread Alexander Rødseth
Date: Tuesday, June 30, 2015 @ 13:47:29
  Author: arodseth
Revision: 136154

Sources moved to github

+ suggested improvements from bug reports

Modified:
  plan9port/trunk/PKGBUILD
  plan9port/trunk/acme.sh
  plan9port/trunk/plan9.sh

--+
 PKGBUILD |   27 ++-
 acme.sh  |2 +-
 plan9.sh |2 --
 3 files changed, 19 insertions(+), 12 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-06-30 10:30:44 UTC (rev 136153)
+++ PKGBUILD2015-06-30 11:47:29 UTC (rev 136154)
@@ -5,25 +5,25 @@
 # Contributor: Chris Brannon cmbranno...@gmail.com
 
 pkgname=plan9port
-pkgver=20140306
-pkgrel=2
-pkgdesc='Port of many programs from Plan 9 to Unix-like operating systems'
+pkgver=20150629
+pkgrel=1
+pkgdesc='Ports of applications from Plan 9'
 arch=('x86_64' 'i686')
 url='http://swtch.com/plan9port/'
 license=('custom')
 depends=('xorg-server' 'libxt' 'libxext' 'fuse')
-makedepends=('gendesk')
+makedepends=('gendesk' 'git')
 optdepends=('python2: for the codereview script')
 provides=('plan9')
 install='plan9.install'
 options=('!zipman' 'staticlibs')
-source=(http://$pkgname.googlecode.com/files/$pkgname-$pkgver.tgz;
+source=(git://github.com/9fans/plan9port.git#commit=71de840f054e52a8a077b2333edc1f4243480359
 'plan9.sh' 'acme.png' 'acme.desktop' 'acme.sh')
-sha256sums=('cbb826cde693abdaa2051c49e7ebf75119bf2a4791fe3b3229f1ac36a408eaeb'
-'8768c080a8ceb0a52a3f866bd8ffc4b26f9deb97c6877ceea78ec0b316325a6b'
+sha256sums=('SKIP'
+'60df44d57b06962f6860ee501a947d165ab8ccd01dd01ba47c82bc729d2ed6d7'
 'b9046c4b7ed5e8e22bf3ea669d65ff681e616663b9743909a225884ac6fb261b'
 '57fdddb70ba969ff4aa2f6c5b68dec02abe937a69044fe6726e1900d5ffe'
-'fa6d13acba9db07b5b394ffe828548efa532ff8cc8e1d321b65ae6fc65e1f444')
+'9c6eb7881f7333077d701f5201f7a620214d6c5c91c11b2ea7964483214e6cb2')
 
 
 prepare() {
@@ -30,6 +30,9 @@
   # Generate a desktop shortcut for the Acme editor
   gendesk -f --pkgname acme --name Acme --genericname Editor \
 --comment 'Editor from Plan9' --categories 
'Application;Development;TextEditor'
+
+  # Use _DEFAULT_SOURCE instead of _BSD_SOURCE
+  grep -rl _BSD_SOURCE $pkgname | xargs sed -i 
s':_BSD_SOURCE:_DEFAULT_SOURCE:g'
 }
 
 package() {
@@ -63,7 +66,7 @@
 -e 's,^#!/usr/bin/python$,#!/usr/bin/python2,'
 
   # Package text files
-  for i in CHANGES CONTRIBUTORS README TODO; do
+  for i in CHANGES CONTRIBUTORS README.md TODO; do
 install -m644 $i $pkgdir/usr/share/doc/$pkgname
 rm -f $i
   done
@@ -84,6 +87,12 @@
   install -Dm644 acme.desktop $pkgdir/usr/share/applications/acme.desktop
   install -Dm755 acme.sh $pkgdir/usr/bin/acme
   install -Dm644 acme.png $pkgdir/usr/share/pixmaps/acme.png
+
+  ## Build man pages
+  #export PLAN9=$pkgdir/usr/lib/plan9
+  #export PATH=$PLAN9/bin:/usr/bin
+  #cd $pkgdir/usr/lib/plan9/dist
+  #9 mk man
 }
 
 # vim:set ts=2 sw=2 et:

Modified: acme.sh
===
--- acme.sh 2015-06-30 10:30:44 UTC (rev 136153)
+++ acme.sh 2015-06-30 11:47:29 UTC (rev 136154)
@@ -1,3 +1,3 @@
 #!/bin/sh
-source /etc/profile.d/plan9.sh
+. /etc/profile.d/plan9.sh
 9 acme $@

Modified: plan9.sh
===
--- plan9.sh2015-06-30 10:30:44 UTC (rev 136153)
+++ plan9.sh2015-06-30 11:47:29 UTC (rev 136154)
@@ -1,4 +1,2 @@
 export PLAN9=/usr/lib/plan9
 export PATH=$PATH:$PLAN9/bin
-export ROOTPATH=$ROOTPATH:$PLAN9/bin
-export MANPATH=$MANPATH:$PLAN9/man


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

2015-06-30 Thread Jan Steffens
Date: Tuesday, June 30, 2015 @ 13:45:07
  Author: heftig
Revision: 241430

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-06-30 11:43:05 UTC (rev 241429)
+++ extra-i686/PKGBUILD 2015-06-30 11:45:07 UTC (rev 241430)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=zenity
-pkgver=3.16.2
-pkgrel=1
-pkgdesc=Display graphical dialog boxes from shell scripts
-arch=(i686 x86_64)
-license=(LGPL)
-depends=(gtk3 libnotify)
-makedepends=(itstool yelp-tools gettext)
-url=http://www.gnome.org;
-source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('4d38d969a976e5ad79209fbea6dce9222f4478098199a2c52c3e46b1393ea844')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=${pkgdir} install
-}

Copied: zenity/repos/extra-i686/PKGBUILD (from rev 241429, 
zenity/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-06-30 11:45:07 UTC (rev 241430)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=zenity
+pkgver=3.16.3
+pkgrel=1
+pkgdesc=Display graphical dialog boxes from shell scripts
+arch=(i686 x86_64)
+license=(LGPL)
+depends=(gtk3 libnotify)
+makedepends=(itstool yelp-tools gettext)
+url=http://www.gnome.org;
+source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('7fe28016fbc5b1fc6d8f730d8eabd5ae2d8b7d67c8bfa0270811ff0c2bfb1eba')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-06-30 11:43:05 UTC (rev 241429)
+++ extra-x86_64/PKGBUILD   2015-06-30 11:45:07 UTC (rev 241430)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=zenity
-pkgver=3.16.2
-pkgrel=1
-pkgdesc=Display graphical dialog boxes from shell scripts
-arch=(i686 x86_64)
-license=(LGPL)
-depends=(gtk3 libnotify)
-makedepends=(itstool yelp-tools gettext)
-url=http://www.gnome.org;
-source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('4d38d969a976e5ad79209fbea6dce9222f4478098199a2c52c3e46b1393ea844')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=${pkgdir} install
-}

Copied: zenity/repos/extra-x86_64/PKGBUILD (from rev 241429, 
zenity/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2015-06-30 11:45:07 UTC (rev 241430)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=zenity
+pkgver=3.16.3
+pkgrel=1
+pkgdesc=Display graphical dialog boxes from shell scripts
+arch=(i686 x86_64)
+license=(LGPL)
+depends=(gtk3 libnotify)
+makedepends=(itstool yelp-tools gettext)
+url=http://www.gnome.org;
+source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('7fe28016fbc5b1fc6d8f730d8eabd5ae2d8b7d67c8bfa0270811ff0c2bfb1eba')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=${pkgdir} install
+}


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

2015-06-30 Thread Jan Steffens
Date: Tuesday, June 30, 2015 @ 13:48:53
  Author: heftig
Revision: 241433

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-06-30 11:48:14 UTC (rev 241432)
+++ extra-i686/PKGBUILD 2015-06-30 11:48:53 UTC (rev 241433)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=clutter-gtk
-pkgver=1.6.0
-pkgrel=2
-pkgdesc=GTK clutter widget
-arch=('i686' 'x86_64')
-url=http://clutter-project.org/;
-license=('LGPL')
-depends=('clutter')
-makedepends=('gobject-introspection' 'gtk-doc')
-source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:3}/$pkgname-$pkgver.tar.xz)
-sha256sums=('883550b574a036363239442edceb61cf3f6bedc8adc97d3404278556dc82234d')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: clutter-gtk/repos/extra-i686/PKGBUILD (from rev 241432, 
clutter-gtk/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-06-30 11:48:53 UTC (rev 241433)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=clutter-gtk
+pkgver=1.6.2
+pkgrel=1
+pkgdesc=GTK clutter widget
+arch=('i686' 'x86_64')
+url=http://clutter-project.org/;
+license=('LGPL')
+depends=('clutter')
+makedepends=('gobject-introspection' 'gtk-doc')
+source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:3}/$pkgname-$pkgver.tar.xz)
+sha256sums=('bbd03dfa9a20102d5cdb440513b0a035933da557ad7e9da31546034de2daf069')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-06-30 11:48:14 UTC (rev 241432)
+++ extra-x86_64/PKGBUILD   2015-06-30 11:48:53 UTC (rev 241433)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=clutter-gtk
-pkgver=1.6.0
-pkgrel=2
-pkgdesc=GTK clutter widget
-arch=('i686' 'x86_64')
-url=http://clutter-project.org/;
-license=('LGPL')
-depends=('clutter')
-makedepends=('gobject-introspection' 'gtk-doc')
-source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:3}/$pkgname-$pkgver.tar.xz)
-sha256sums=('883550b574a036363239442edceb61cf3f6bedc8adc97d3404278556dc82234d')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: clutter-gtk/repos/extra-x86_64/PKGBUILD (from rev 241432, 
clutter-gtk/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2015-06-30 11:48:53 UTC (rev 241433)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=clutter-gtk
+pkgver=1.6.2
+pkgrel=1
+pkgdesc=GTK clutter widget
+arch=('i686' 'x86_64')
+url=http://clutter-project.org/;
+license=('LGPL')
+depends=('clutter')
+makedepends=('gobject-introspection' 'gtk-doc')
+source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:3}/$pkgname-$pkgver.tar.xz)
+sha256sums=('bbd03dfa9a20102d5cdb440513b0a035933da557ad7e9da31546034de2daf069')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}


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

2015-06-30 Thread Jan Steffens
Date: Tuesday, June 30, 2015 @ 13:48:14
  Author: heftig
Revision: 241432

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

Added:
  clutter/repos/extra-i686/PKGBUILD
(from rev 241431, clutter/trunk/PKGBUILD)
  clutter/repos/extra-i686/closure-annotation.patch
(from rev 241431, clutter/trunk/closure-annotation.patch)
  clutter/repos/extra-i686/create-pangocontext-per-actor.patch
(from rev 241431, clutter/trunk/create-pangocontext-per-actor.patch)
  clutter/repos/extra-i686/dont-update-pangocontext.patch
(from rev 241431, clutter/trunk/dont-update-pangocontext.patch)
  clutter/repos/extra-i686/evdev-flush-event-queue.patch
(from rev 241431, clutter/trunk/evdev-flush-event-queue.patch)
  clutter/repos/extra-i686/libinput08.patch
(from rev 241431, clutter/trunk/libinput08.patch)
  clutter/repos/extra-x86_64/PKGBUILD
(from rev 241431, clutter/trunk/PKGBUILD)
  clutter/repos/extra-x86_64/closure-annotation.patch
(from rev 241431, clutter/trunk/closure-annotation.patch)
  clutter/repos/extra-x86_64/create-pangocontext-per-actor.patch
(from rev 241431, clutter/trunk/create-pangocontext-per-actor.patch)
  clutter/repos/extra-x86_64/dont-update-pangocontext.patch
(from rev 241431, clutter/trunk/dont-update-pangocontext.patch)
  clutter/repos/extra-x86_64/evdev-flush-event-queue.patch
(from rev 241431, clutter/trunk/evdev-flush-event-queue.patch)
  clutter/repos/extra-x86_64/libinput08.patch
(from rev 241431, clutter/trunk/libinput08.patch)
Deleted:
  clutter/repos/extra-i686/PKGBUILD
  clutter/repos/extra-i686/closure-annotation.patch
  clutter/repos/extra-i686/create-pangocontext-per-actor.patch
  clutter/repos/extra-i686/dont-update-pangocontext.patch
  clutter/repos/extra-i686/evdev-flush-event-queue.patch
  clutter/repos/extra-i686/libinput08.patch
  clutter/repos/extra-x86_64/PKGBUILD
  clutter/repos/extra-x86_64/closure-annotation.patch
  clutter/repos/extra-x86_64/create-pangocontext-per-actor.patch
  clutter/repos/extra-x86_64/dont-update-pangocontext.patch
  clutter/repos/extra-x86_64/evdev-flush-event-queue.patch
  clutter/repos/extra-x86_64/libinput08.patch

--+
 /PKGBUILD|   76 +++
 /closure-annotation.patch|   44 ++
 /create-pangocontext-per-actor.patch |  448 +
 /dont-update-pangocontext.patch  |   74 +++
 /evdev-flush-event-queue.patch   |  108 +
 /libinput08.patch|  180 
 extra-i686/PKGBUILD  |   38 -
 extra-i686/closure-annotation.patch  |   22 -
 extra-i686/create-pangocontext-per-actor.patch   |  224 --
 extra-i686/dont-update-pangocontext.patch|   37 -
 extra-i686/evdev-flush-event-queue.patch |   54 --
 extra-i686/libinput08.patch  |   90 
 extra-x86_64/PKGBUILD|   38 -
 extra-x86_64/closure-annotation.patch|   22 -
 extra-x86_64/create-pangocontext-per-actor.patch |  224 --
 extra-x86_64/dont-update-pangocontext.patch  |   37 -
 extra-x86_64/evdev-flush-event-queue.patch   |   54 --
 extra-x86_64/libinput08.patch|   90 
 18 files changed, 930 insertions(+), 930 deletions(-)

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


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

2015-06-30 Thread Alexander Rødseth
Date: Tuesday, June 30, 2015 @ 14:06:31
  Author: arodseth
Revision: 136155

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

Added:
  plan9port/repos/community-i686/PKGBUILD
(from rev 136154, plan9port/trunk/PKGBUILD)
  plan9port/repos/community-i686/acme.desktop
(from rev 136154, plan9port/trunk/acme.desktop)
  plan9port/repos/community-i686/acme.png
(from rev 136154, plan9port/trunk/acme.png)
  plan9port/repos/community-i686/acme.sh
(from rev 136154, plan9port/trunk/acme.sh)
  plan9port/repos/community-i686/plan9.install
(from rev 136154, plan9port/trunk/plan9.install)
  plan9port/repos/community-i686/plan9.sh
(from rev 136154, plan9port/trunk/plan9.sh)
  plan9port/repos/community-x86_64/PKGBUILD
(from rev 136154, plan9port/trunk/PKGBUILD)
  plan9port/repos/community-x86_64/acme.desktop
(from rev 136154, plan9port/trunk/acme.desktop)
  plan9port/repos/community-x86_64/acme.png
(from rev 136154, plan9port/trunk/acme.png)
  plan9port/repos/community-x86_64/acme.sh
(from rev 136154, plan9port/trunk/acme.sh)
  plan9port/repos/community-x86_64/plan9.install
(from rev 136154, plan9port/trunk/plan9.install)
  plan9port/repos/community-x86_64/plan9.sh
(from rev 136154, plan9port/trunk/plan9.sh)
Deleted:
  plan9port/repos/community-i686/PKGBUILD
  plan9port/repos/community-i686/acme.desktop
  plan9port/repos/community-i686/acme.png
  plan9port/repos/community-i686/acme.sh
  plan9port/repos/community-i686/plan9.install
  plan9port/repos/community-i686/plan9.sh
  plan9port/repos/community-x86_64/PKGBUILD
  plan9port/repos/community-x86_64/acme.desktop
  plan9port/repos/community-x86_64/acme.png
  plan9port/repos/community-x86_64/acme.sh
  plan9port/repos/community-x86_64/plan9.install
  plan9port/repos/community-x86_64/plan9.sh

+
 /PKGBUILD  |  196 +++
 /acme.desktop  |   22 
 /acme.sh   |6 +
 /plan9.install |   16 +++
 /plan9.sh  |4 
 community-i686/PKGBUILD|   89 -
 community-i686/acme.desktop|   11 --
 community-i686/acme.sh |3 
 community-i686/plan9.install   |8 -
 community-i686/plan9.sh|4 
 community-x86_64/PKGBUILD  |   89 -
 community-x86_64/acme.desktop  |   11 --
 community-x86_64/acme.sh   |3 
 community-x86_64/plan9.install |8 -
 community-x86_64/plan9.sh  |4 
 15 files changed, 244 insertions(+), 230 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-06-30 11:47:29 UTC (rev 136154)
+++ community-i686/PKGBUILD 2015-06-30 12:06:31 UTC (rev 136155)
@@ -1,89 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# Contributor: phrakture aaronmgriffin--gmail--com
-# Contributor: Fazlul Shahriar
-# Contributor: Chris Brannon cmbranno...@gmail.com
-
-pkgname=plan9port
-pkgver=20140306
-pkgrel=2
-pkgdesc='Port of many programs from Plan 9 to Unix-like operating systems'
-arch=('x86_64' 'i686')
-url='http://swtch.com/plan9port/'
-license=('custom')
-depends=('xorg-server' 'libxt' 'libxext' 'fuse')
-makedepends=('gendesk')
-optdepends=('python2: for the codereview script')
-provides=('plan9')
-install='plan9.install'
-options=('!zipman' 'staticlibs')
-source=(http://$pkgname.googlecode.com/files/$pkgname-$pkgver.tgz;
-'plan9.sh' 'acme.png' 'acme.desktop' 'acme.sh')
-sha256sums=('cbb826cde693abdaa2051c49e7ebf75119bf2a4791fe3b3229f1ac36a408eaeb'
-'8768c080a8ceb0a52a3f866bd8ffc4b26f9deb97c6877ceea78ec0b316325a6b'
-'b9046c4b7ed5e8e22bf3ea669d65ff681e616663b9743909a225884ac6fb261b'
-'57fdddb70ba969ff4aa2f6c5b68dec02abe937a69044fe6726e1900d5ffe'
-'fa6d13acba9db07b5b394ffe828548efa532ff8cc8e1d321b65ae6fc65e1f444')
-
-
-prepare() {
-  # Generate a desktop shortcut for the Acme editor
-  gendesk -f --pkgname acme --name Acme --genericname Editor \
---comment 'Editor from Plan9' --categories 
'Application;Development;TextEditor'
-}
-
-package() {
-  cd $pkgname
-
-  # Try the gentoo way for fixing hardcoded paths
-  PLAN9=/usr/lib/plan9
-  grep --null -l -r '/usr/local/plan9' | xargs --null sed -i 
s!/usr/local/plan9!${PLAN9}!g
-
-  d=usr/lib
-
-  ./INSTALL -b
-  install -Dm755 ../plan9.sh $pkgdir/etc/profile.d/plan9.sh
-  install -d $pkgdir/$d
-  install -d $pkgdir/usr/share/doc/$pkgname
-  cp -r $srcdir/$pkgname $pkgdir/$d/plan9
-  cd $pkgdir/$d/plan9
-  ./INSTALL -c -r $pkgdir/$d/plan9
-  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-
-  # Clean up
-  rm -rf .hg/
-  rm -f .hgignore .hgtags
-  find . -name '.cvsignore' -print0 |xargs -0 rm -f
-  rm -f config install.log install.sum install.txt configure Makefile INSTALL \
-LICENSE
-
-  # Fix python scripts
-  find $pkgdir -name '*.py' 

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

2015-06-30 Thread Evangelos Foutras
Date: Tuesday, June 30, 2015 @ 12:20:09
  Author: foutrelis
Revision: 136150

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-06-30 10:19:58 UTC (rev 136149)
+++ community-i686/PKGBUILD 2015-06-30 10:20:09 UTC (rev 136150)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-
-pkgname=usb_modeswitch
-pkgver=2.2.1
-pkgrel=1
-_pkgdata=20150115
-pkgdesc=Activating switchable USB devices on Linux.
-arch=('i686' 'x86_64')
-url=http://www.draisberghof.de/usb_modeswitch/;
-license=('GPL')
-depends=('libusb' 'tcl')
-makedepends=('gcc' 'make')
-backup=(etc/$pkgname.conf)
-source=(http://www.draisberghof.de/usb_modeswitch/usb-modeswitch-${pkgver}.tar.bz2;
-   
http://www.draisberghof.de/usb_modeswitch/usb-modeswitch-data-${_pkgdata}.tar.bz2;
-   
usb-modeswitch-${pkgver}-device_reference.txt::http://www.draisberghof.de/usb_modeswitch/device_reference.txt;)
-md5sums=('46cd7fa937655ab2df616c1d5dfb121e'
- '662bcd56a97e560ea974bc710822de51'
- '080bac4145f002466b1cbd1b973bba44')
-
-prepare() {
-  cd $srcdir/usb-modeswitch-$pkgver/
-  sed -i 's|/usr/sbin/usb_mode|/usr/bin/usb_mode|g' 
usb_modeswitch.{conf,tcl,sh}
-}
-
-build() {
-  cd $srcdir/usb-modeswitch-$pkgver/
-  make clean
-  make SBINDIR=/usr/bin
-}
-
-package() {
-  cd $srcdir/usb-modeswitch-$pkgver/
-
-  mkdir -p $pkgdir/usr/lib/udev
-  mkdir -p $pkgdir/etc
-  mkdir -p $pkgdir/usr/share/man/man1
-
-  make DESTDIR=${pkgdir} UDEVDIR=${pkgdir}/usr/lib/udev 
SBINDIR=$pkgdir/usr/bin install
-
-  cp $srcdir/usb-modeswitch-${pkgver}-device_reference.txt 
$pkgdir/etc/usb_modeswitch.setup
-
-  cd $srcdir/usb-modeswitch-data-${_pkgdata}
-  make DESTDIR=$pkgdir install RULESDIR=${pkgdir}/usr/lib/udev/rules.d
-}

Copied: usb_modeswitch/repos/community-i686/PKGBUILD (from rev 136149, 
usb_modeswitch/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-06-30 10:20:09 UTC (rev 136150)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=usb_modeswitch
+pkgver=2.2.3
+pkgrel=1
+_pkgdata=20150627
+pkgdesc=Activating switchable USB devices on Linux.
+arch=('i686' 'x86_64')
+url=http://www.draisberghof.de/usb_modeswitch/;
+license=('GPL')
+depends=('libusb' 'tcl')
+makedepends=('gcc' 'make')
+backup=(etc/$pkgname.conf)
+source=(http://www.draisberghof.de/usb_modeswitch/usb-modeswitch-${pkgver}.tar.bz2;
+   
http://www.draisberghof.de/usb_modeswitch/usb-modeswitch-data-${_pkgdata}.tar.bz2;
+   
usb-modeswitch-${pkgver}-device_reference.txt::http://www.draisberghof.de/usb_modeswitch/device_reference.txt;)
+md5sums=('4f124ea01fade58d989cb8051fc8d26c'
+ 'd6bfc2cb5348f068762e66b313d9b72f'
+ '080bac4145f002466b1cbd1b973bba44')
+
+prepare() {
+  cd $srcdir/usb-modeswitch-$pkgver/
+  sed -i 's|/usr/sbin/usb_mode|/usr/bin/usb_mode|g' 
usb_modeswitch.{conf,tcl,sh}
+}
+
+build() {
+  cd $srcdir/usb-modeswitch-$pkgver/
+  make clean
+  make SBINDIR=/usr/bin
+}
+
+package() {
+  cd $srcdir/usb-modeswitch-$pkgver/
+
+  mkdir -p $pkgdir/usr/lib/udev
+  mkdir -p $pkgdir/etc
+  mkdir -p $pkgdir/usr/share/man/man1
+
+  make DESTDIR=${pkgdir} UDEVDIR=${pkgdir}/usr/lib/udev 
SBINDIR=$pkgdir/usr/bin install
+
+  cp $srcdir/usb-modeswitch-${pkgver}-device_reference.txt 
$pkgdir/etc/usb_modeswitch.setup
+
+  cd $srcdir/usb-modeswitch-data-${_pkgdata}
+  make DESTDIR=$pkgdir install RULESDIR=${pkgdir}/usr/lib/udev/rules.d
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-06-30 10:19:58 UTC (rev 136149)
+++ community-x86_64/PKGBUILD   2015-06-30 10:20:09 UTC (rev 136150)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-
-pkgname=usb_modeswitch
-pkgver=2.2.1
-pkgrel=1
-_pkgdata=20150115
-pkgdesc=Activating switchable USB devices on Linux.
-arch=('i686' 'x86_64')
-url=http://www.draisberghof.de/usb_modeswitch/;
-license=('GPL')
-depends=('libusb' 'tcl')
-makedepends=('gcc' 'make')
-backup=(etc/$pkgname.conf)
-source=(http://www.draisberghof.de/usb_modeswitch/usb-modeswitch-${pkgver}.tar.bz2;
-   

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

2015-06-30 Thread Evangelos Foutras
Date: Tuesday, June 30, 2015 @ 12:19:58
  Author: foutrelis
Revision: 136149

upgpkg: usb_modeswitch 2.2.3-1

New upstream release.

Modified:
  usb_modeswitch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-30 09:44:32 UTC (rev 136148)
+++ PKGBUILD2015-06-30 10:19:58 UTC (rev 136149)
@@ -2,9 +2,9 @@
 # Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
 
 pkgname=usb_modeswitch
-pkgver=2.2.1
+pkgver=2.2.3
 pkgrel=1
-_pkgdata=20150115
+_pkgdata=20150627
 pkgdesc=Activating switchable USB devices on Linux.
 arch=('i686' 'x86_64')
 url=http://www.draisberghof.de/usb_modeswitch/;
@@ -15,8 +15,8 @@
 
source=(http://www.draisberghof.de/usb_modeswitch/usb-modeswitch-${pkgver}.tar.bz2;

http://www.draisberghof.de/usb_modeswitch/usb-modeswitch-data-${_pkgdata}.tar.bz2;

usb-modeswitch-${pkgver}-device_reference.txt::http://www.draisberghof.de/usb_modeswitch/device_reference.txt;)
-md5sums=('46cd7fa937655ab2df616c1d5dfb121e'
- '662bcd56a97e560ea974bc710822de51'
+md5sums=('4f124ea01fade58d989cb8051fc8d26c'
+ 'd6bfc2cb5348f068762e66b313d9b72f'
  '080bac4145f002466b1cbd1b973bba44')
 
 prepare() {


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

2015-06-30 Thread Alexander Rødseth
Date: Tuesday, June 30, 2015 @ 12:22:57
  Author: arodseth
Revision: 136151

Updated getver comment

Modified:
  swi-prolog/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-30 10:20:09 UTC (rev 136150)
+++ PKGBUILD2015-06-30 10:22:57 UTC (rev 136151)
@@ -44,5 +44,5 @@
   chmod +x $pkgdir/usr/lib/swipl-$pkgver/library/dialect/sicstus/swipl-lfr.pl
 }
 
-# getver: -u 2 http://www.swi-prolog.org/download/stable #
+# getver: swi-prolog.org/download/stable
 # vim:set ts=2 sw=2 et:


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

2015-06-30 Thread Alexander Rødseth
Date: Tuesday, June 30, 2015 @ 12:30:37
  Author: arodseth
Revision: 136152

upgpkg: python2-rst2pdf 0.93-8

Modified:
  python2-rst2pdf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-30 10:22:57 UTC (rev 136151)
+++ PKGBUILD2015-06-30 10:30:37 UTC (rev 136152)
@@ -5,12 +5,12 @@
 
 pkgname=python2-rst2pdf
 pkgver=0.93
-pkgrel=7
+pkgrel=8
 pkgdesc='Create PDFs from simple text markup, no LaTeX required'
 arch=('any')
-url='http://rst2pdf.googlecode.com/'
+url='https://github.com/ralsina/rst2pdf'
 license=('MIT')
-makedepends=('python2-setuptools')
+makedepends=('python2-setuptools' 'git')
 depends=('python2-docutils' 'python2-reportlab' 'python2-pygments' 'pygmentize'
  'python2-pdfrw')
 optdepends=('uniconvertor: vector images support'
@@ -18,11 +18,11 @@
 'inkscape: best SVG support'
 #'python2-wordaxe: hyphenation'
 'python2-pillow: non-JPEG bitmap image formats')
-source=(http://rst2pdf.googlecode.com/files/rst2pdf-$pkgver.tar.gz;)
-sha256sums=('3af44283ced19030a8286e8f8d71106ca6c78efe4bc95e9af42d678c363efcbc')
+source=(git://github.com/ralsina/rst2pdf.git#tag=$pkgver)
+md5sums=('SKIP')
 
 prepare() {
-  cd rst2pdf-$pkgver
+  cd rst2pdf
 
   find . -name *.py -exec sed -i '0,/env python/s//env python2/' {} \;
   sed -i 's/import Image/from PIL import Image/' rst2pdf/math_flowable.py
@@ -29,7 +29,7 @@
 }
 
 build() {
-  cd rst2pdf-$pkgver
+  cd rst2pdf
 
   python2 setup.py build
   cd doc 
@@ -37,7 +37,7 @@
 }
 
 package() {
-  cd rst2pdf-$pkgver
+  cd rst2pdf
 
   python2 setup.py install --root=$pkgdir --optimize=1
   install -Dm644 LICENSE.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
@@ -44,4 +44,5 @@
   install -Dm644 doc/rst2pdf.1 $pkgdir/usr/share/man/man1/rst2pdf.1
 }
 
+# getver: raw.githubusercontent.com/ralsina/rst2pdf/master/setup.py
 # vim:set ts=2 sw=2 et:


[arch-commits] Commit in python2-rst2pdf/repos/community-any (PKGBUILD PKGBUILD)

2015-06-30 Thread Alexander Rødseth
Date: Tuesday, June 30, 2015 @ 12:30:44
  Author: arodseth
Revision: 136153

archrelease: copy trunk to community-any

Added:
  python2-rst2pdf/repos/community-any/PKGBUILD
(from rev 136152, python2-rst2pdf/trunk/PKGBUILD)
Deleted:
  python2-rst2pdf/repos/community-any/PKGBUILD

--+
 PKGBUILD |   95 ++---
 1 file changed, 48 insertions(+), 47 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-06-30 10:30:37 UTC (rev 136152)
+++ PKGBUILD2015-06-30 10:30:44 UTC (rev 136153)
@@ -1,47 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# Contributor: Angel Velasquez an...@archlinux.org
-# Contributor: Roberto Alsina rals...@kde.org
-
-pkgname=python2-rst2pdf
-pkgver=0.93
-pkgrel=7
-pkgdesc='Create PDFs from simple text markup, no LaTeX required'
-arch=('any')
-url='http://rst2pdf.googlecode.com/'
-license=('MIT')
-makedepends=('python2-setuptools')
-depends=('python2-docutils' 'python2-reportlab' 'python2-pygments' 'pygmentize'
- 'python2-pdfrw')
-optdepends=('uniconvertor: vector images support'
-#'python2-svglib: some SVG support'
-'inkscape: best SVG support'
-#'python2-wordaxe: hyphenation'
-'python2-pillow: non-JPEG bitmap image formats')
-source=(http://rst2pdf.googlecode.com/files/rst2pdf-$pkgver.tar.gz;)
-sha256sums=('3af44283ced19030a8286e8f8d71106ca6c78efe4bc95e9af42d678c363efcbc')
-
-prepare() {
-  cd rst2pdf-$pkgver
-
-  find . -name *.py -exec sed -i '0,/env python/s//env python2/' {} \;
-  sed -i 's/import Image/from PIL import Image/' rst2pdf/math_flowable.py
-}
-
-build() {
-  cd rst2pdf-$pkgver
-
-  python2 setup.py build
-  cd doc 
-  rst2man2 rst2pdf.txt rst2pdf.1
-}
-
-package() {
-  cd rst2pdf-$pkgver
-
-  python2 setup.py install --root=$pkgdir --optimize=1
-  install -Dm644 LICENSE.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
-  install -Dm644 doc/rst2pdf.1 $pkgdir/usr/share/man/man1/rst2pdf.1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python2-rst2pdf/repos/community-any/PKGBUILD (from rev 136152, 
python2-rst2pdf/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-06-30 10:30:44 UTC (rev 136153)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Angel Velasquez an...@archlinux.org
+# Contributor: Roberto Alsina rals...@kde.org
+
+pkgname=python2-rst2pdf
+pkgver=0.93
+pkgrel=8
+pkgdesc='Create PDFs from simple text markup, no LaTeX required'
+arch=('any')
+url='https://github.com/ralsina/rst2pdf'
+license=('MIT')
+makedepends=('python2-setuptools' 'git')
+depends=('python2-docutils' 'python2-reportlab' 'python2-pygments' 'pygmentize'
+ 'python2-pdfrw')
+optdepends=('uniconvertor: vector images support'
+#'python2-svglib: some SVG support'
+'inkscape: best SVG support'
+#'python2-wordaxe: hyphenation'
+'python2-pillow: non-JPEG bitmap image formats')
+source=(git://github.com/ralsina/rst2pdf.git#tag=$pkgver)
+md5sums=('SKIP')
+
+prepare() {
+  cd rst2pdf
+
+  find . -name *.py -exec sed -i '0,/env python/s//env python2/' {} \;
+  sed -i 's/import Image/from PIL import Image/' rst2pdf/math_flowable.py
+}
+
+build() {
+  cd rst2pdf
+
+  python2 setup.py build
+  cd doc 
+  rst2man2 rst2pdf.txt rst2pdf.1
+}
+
+package() {
+  cd rst2pdf
+
+  python2 setup.py install --root=$pkgdir --optimize=1
+  install -Dm644 LICENSE.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
+  install -Dm644 doc/rst2pdf.1 $pkgdir/usr/share/man/man1/rst2pdf.1
+}
+
+# getver: raw.githubusercontent.com/ralsina/rst2pdf/master/setup.py
+# vim:set ts=2 sw=2 et:


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

2015-06-30 Thread Sébastien Luttringer
Date: Tuesday, June 30, 2015 @ 12:47:13
  Author: seblu
Revision: 241423

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

Added:
  lz4/repos/testing-i686/
  lz4/repos/testing-i686/PKGBUILD
(from rev 241422, lz4/trunk/PKGBUILD)
  lz4/repos/testing-x86_64/
  lz4/repos/testing-x86_64/PKGBUILD
(from rev 241422, lz4/trunk/PKGBUILD)

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

Copied: lz4/repos/testing-i686/PKGBUILD (from rev 241422, lz4/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-06-30 10:47:13 UTC (rev 241423)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+
+# Contacted by mail, author use svn commit as release version.
+# He only push tested release code into svn and support using revision as 
version
+
+pkgname=lz4
+pkgver=131
+pkgrel=1
+pkgdesc='Very fast lossless compression algorithm'
+arch=('i686' 'x86_64')
+url='https://github.com/Cyan4973/lz4'
+license=('GPL2')
+makedepends=('git')
+checkdepends=('diffutils')
+depends=('glibc')
+source=(git+https://github.com/Cyan4973/lz4.git#tag=r$pkgver;)
+md5sums=('SKIP')
+
+build() {
+  cd $pkgname
+  make PREFIX=/usr
+}
+
+check() {
+  $pkgname/programs/lz4 /etc/passwd passwd.lz4
+  $pkgname/programs/lz4 -d passwd.lz4 passwd
+  diff -q /etc/passwd passwd
+  rm passwd
+}
+
+package() {
+  cd $pkgname
+  make install PREFIX=/usr DESTDIR=$pkgdir
+}
+
+# vim:set ts=2 sw=2 et:

Copied: lz4/repos/testing-x86_64/PKGBUILD (from rev 241422, lz4/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2015-06-30 10:47:13 UTC (rev 241423)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+
+# Contacted by mail, author use svn commit as release version.
+# He only push tested release code into svn and support using revision as 
version
+
+pkgname=lz4
+pkgver=131
+pkgrel=1
+pkgdesc='Very fast lossless compression algorithm'
+arch=('i686' 'x86_64')
+url='https://github.com/Cyan4973/lz4'
+license=('GPL2')
+makedepends=('git')
+checkdepends=('diffutils')
+depends=('glibc')
+source=(git+https://github.com/Cyan4973/lz4.git#tag=r$pkgver;)
+md5sums=('SKIP')
+
+build() {
+  cd $pkgname
+  make PREFIX=/usr
+}
+
+check() {
+  $pkgname/programs/lz4 /etc/passwd passwd.lz4
+  $pkgname/programs/lz4 -d passwd.lz4 passwd
+  diff -q /etc/passwd passwd
+  rm passwd
+}
+
+package() {
+  cd $pkgname
+  make install PREFIX=/usr DESTDIR=$pkgdir
+}
+
+# vim:set ts=2 sw=2 et:


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

2015-06-30 Thread Sébastien Luttringer
Date: Tuesday, June 30, 2015 @ 12:46:57
  Author: seblu
Revision: 241422

upgpkg: lz4 131-1

Modified:
  lz4/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-30 08:11:24 UTC (rev 241421)
+++ PKGBUILD2015-06-30 10:46:57 UTC (rev 241422)
@@ -5,7 +5,7 @@
 # He only push tested release code into svn and support using revision as 
version
 
 pkgname=lz4
-pkgver=130
+pkgver=131
 pkgrel=1
 pkgdesc='Very fast lossless compression algorithm'
 arch=('i686' 'x86_64')


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

2015-06-30 Thread Alexander Rødseth
Date: Tuesday, June 30, 2015 @ 11:44:20
  Author: arodseth
Revision: 136147

upgpkg: julia 2:0.3.10-2

Modified:
  julia/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-30 06:54:09 UTC (rev 136146)
+++ PKGBUILD2015-06-30 09:44:20 UTC (rev 136147)
@@ -9,7 +9,7 @@
 pkgname=('julia' 'julia-docs')
 epoch=2
 pkgver=0.3.10
-pkgrel=1
+pkgrel=2
 pkgdesc='High-level, high-performance, dynamic programming language'
 arch=('x86_64' 'i686')
 url='http://julialang.org/'
@@ -94,6 +94,9 @@
   rm -rvf $pkgdir/usr/share/doc/
   rm -rvf $pkgdir/usr/share/julia/doc/
   rm -rvf $pkgdir/usr/share/julia/examples/
+
+  cd $pkgname
+  install -Dm644 LICENSE.md $pkgdir/usr/share/licenses/$pkgname/LICENSE.md
 }
 
 package_julia-docs() {


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

2015-06-30 Thread Alexander Rødseth
Date: Tuesday, June 30, 2015 @ 11:44:32
  Author: arodseth
Revision: 136148

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

Added:
  julia/repos/community-i686/PKGBUILD
(from rev 136147, julia/trunk/PKGBUILD)
  julia/repos/community-i686/sysfix.install
(from rev 136147, julia/trunk/sysfix.install)
  julia/repos/community-x86_64/PKGBUILD
(from rev 136147, julia/trunk/PKGBUILD)
  julia/repos/community-x86_64/sysfix.install
(from rev 136147, julia/trunk/sysfix.install)
Deleted:
  julia/repos/community-i686/PKGBUILD
  julia/repos/community-i686/sysfix.install
  julia/repos/community-x86_64/PKGBUILD
  julia/repos/community-x86_64/sysfix.install

-+
 /PKGBUILD   |  222 ++
 /sysfix.install |   20 +++
 community-i686/PKGBUILD |  108 --
 community-i686/sysfix.install   |   10 -
 community-x86_64/PKGBUILD   |  108 --
 community-x86_64/sysfix.install |   10 -
 6 files changed, 242 insertions(+), 236 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-06-30 09:44:20 UTC (rev 136147)
+++ community-i686/PKGBUILD 2015-06-30 09:44:32 UTC (rev 136148)
@@ -1,108 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# Contributor: Lex Black autumn-wind at web dot de
-# Contributor: Michael Jakl jakl.mich...@gmail.com
-# Contributor: devmotion nospam-archlinux@devmotion.de
-# Contributor: Valentin Churavy v.chur...@gmail.com
-
-pkgbase=julia
-pkgname=('julia' 'julia-docs')
-epoch=2
-pkgver=0.3.10
-pkgrel=1
-pkgdesc='High-level, high-performance, dynamic programming language'
-arch=('x86_64' 'i686')
-url='http://julialang.org/'
-license=('GPL')
-makedepends=('gcc-fortran' 'python2' 'libuv' 'git' 'blas' 'lapack' 'arpack' 
'libunwind' 'fftw' 'gmp' 'mpfr' 'pcre' 'zlib' 'suitesparse')
-optdepends=('gnuplot: If using the Gaston Package from julia')
-options=('!emptydirs' 'staticlibs')
-backup=('etc/ld.so.conf.d/julia.conf' 'etc/julia/juliarc.jl')
-source=(git://github.com/JuliaLang/julia.git#tag=v$pkgver)
-sha256sums=('SKIP')
-
-prepare() {
-  # For /etc/ld.so.conf.d/
-  echo '/usr/lib/julia'  julia.conf
-}
-
-build() {
-  make -C $pkgname prefix=/usr sysconfdir=/etc \
-MARCH=${CARCH/_/-} \
-USE_SYSTEM_LLVM=0 \
-USE_SYSTEM_LIBUNWIND=1 \
-USE_SYSTEM_READLINE=0 \
-USE_SYSTEM_PCRE=1 \
-USE_SYSTEM_LIBM=1 \
-USE_SYSTEM_OPENLIBM=0 \
-USE_SYSTEM_OPENSPECFUN=0 \
-USE_SYSTEM_BLAS=0 \
-USE_SYSTEM_LAPACK=1 \
-USE_SYSTEM_FFTW=1 \
-USE_SYSTEM_GMP=1 \
-USE_SYSTEM_MPFR=1 \
-USE_SYSTEM_ARPACK=1 \
-USE_SYSTEM_SUITESPARSE=1 \
-USE_SYSTEM_ZLIB=1 \
-USE_SYSTEM_GRISU=0 \
-USE_SYSTEM_RMATH=0 \
-USE_SYSTEM_LIBUV=0 \
-USE_SYSTEM_UTF8PROC=0 \
-USE_MKL=0 \
-USE_BLAS64=0 \
-USE_LLVM_SHLIB=0
-}
-
-package_julia() {
-  depends=('arpack' 'fftw' 'git' 'gmp' 'libunwind' 'mpfr' 'pcre' 'zlib' 
'lapack' 'suitesparse')
-  install='sysfix.install'
-
-  make -C $pkgname DESTDIR=$pkgdir \
-prefix=/usr sysconfdir=/etc  \
-MARCH=${CARCH/_/-} \
-USE_SYSTEM_LLVM=0 \
-USE_SYSTEM_LIBUNWIND=1 \
-USE_SYSTEM_READLINE=0 \
-USE_SYSTEM_PCRE=1 \
-USE_SYSTEM_LIBM=1 \
-USE_SYSTEM_OPENLIBM=0 \
-USE_SYSTEM_OPENSPECFUN=0 \
-USE_SYSTEM_BLAS=0 \
-USE_SYSTEM_LAPACK=1 \
-USE_SYSTEM_FFTW=1 \
-USE_SYSTEM_GMP=1 \
-USE_SYSTEM_MPFR=1 \
-USE_SYSTEM_ARPACK=1 \
-USE_SYSTEM_SUITESPARSE=1 \
-USE_SYSTEM_ZLIB=1 \
-USE_SYSTEM_GRISU=0 \
-USE_SYSTEM_RMATH=0 \
-USE_SYSTEM_LIBUV=0 \
-USE_SYSTEM_UTF8PROC=0 \
-USE_MKL=0 \
-USE_BLAS64=0 \
-USE_LLVM_SHLIB=0 \
-install
-
-  # Remove duplicate man-page from julia/doc
-  rm -rvf $pkgdir/usr/share/julia/doc/man
-
-  # For /etc/ld.so.conf.d, FS#41731
-  install -Dm644 julia.conf $pkgdir/etc/ld.so.conf.d/julia.conf
-
-  # Documentation and examples are in the julia-docs package
-  rm -rvf $pkgdir/usr/share/doc/
-  rm -rvf $pkgdir/usr/share/julia/doc/
-  rm -rvf $pkgdir/usr/share/julia/examples/
-}
-
-package_julia-docs() {
-  pkgdesc='Documentation and examples for Julia'
-
-  install -d $pkgdir/usr/share/doc
-  cp -rv $srcdir/$pkgbase/doc $pkgdir/usr/share/doc/$pkgbase
-  cp -rv $srcdir/$pkgbase/examples $pkgdir/usr/share/doc/$pkgbase/examples
-}
-
-# getver: julialang.org/downloads
-# vim:set ts=2 sw=2 et:

Copied: julia/repos/community-i686/PKGBUILD (from rev 136147, 
julia/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-06-30 09:44:32 UTC (rev 136148)
@@ -0,0 +1,111 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Lex Black autumn-wind at web dot de
+# Contributor: Michael Jakl jakl.mich...@gmail.com
+# 

[arch-commits] Commit in perl-devel-checkcompiler/repos/community-any (2 files)

2015-06-30 Thread Felix Yan
Date: Tuesday, June 30, 2015 @ 15:49:51
  Author: fyan
Revision: 136157

archrelease: copy trunk to community-any

Added:
  perl-devel-checkcompiler/repos/community-any/PKGBUILD
(from rev 136156, perl-devel-checkcompiler/trunk/PKGBUILD)
Deleted:
  perl-devel-checkcompiler/repos/community-any/PKGBUILD

--+
 PKGBUILD |   89 +
 1 file changed, 37 insertions(+), 52 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-06-30 13:49:39 UTC (rev 136156)
+++ PKGBUILD2015-06-30 13:49:51 UTC (rev 136157)
@@ -1,52 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@gmail.com
-# Contributor: John D Jones III 
j[nospace]n[nospace]b[nospace]e[nospace]k[nospace]1972 -_AT_- the domain name 
google offers a mail service at ending in dot com
-# Generator  : CPANPLUS::Dist::Arch 1.28
-
-pkgname=perl-devel-checkcompiler
-pkgver=0.05
-pkgrel=1
-pkgdesc=Check the compiler's availability
-arch=('any')
-license=('PerlArtistic' 'GPL')
-options=('!emptydirs')
-depends=('perl')
-makedepends=('perl-module-build')
-checkdepends=('perl-test-requires')
-url='http://search.cpan.org/dist/Devel-CheckCompiler'
-source=('http://search.cpan.org/CPAN/authors/id/S/SY/SYOHEX/Devel-CheckCompiler-0.05.tar.gz')
-sha512sums=('5bf40abc7df914a9bbd5b185a40d597272f2f8fb0a94f95b1790ed247a529af8c31bc8ddfcae75ceab4d504ad8faf86ed63eefbc5081a208bcccf0902464d73e')
-_distdir=Devel-CheckCompiler-0.05
-
-build() {
-  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB= \
-  PERL_AUTOINSTALL=--skipdeps\
-  PERL_MM_OPT=INSTALLDIRS=vendor DESTDIR='$pkgdir' \
-  PERL_MB_OPT=--installdirs vendor --destdir '$pkgdir' \
-  MODULEBUILDRC=/dev/null
-
-cd $srcdir/$_distdir
-/usr/bin/perl Build.PL
-/usr/bin/perl Build
-  )
-}
-
-check() {
-  cd $srcdir/$_distdir
-  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB=
-/usr/bin/perl Build test
-  )
-}
-
-package() {
-  cd $srcdir/$_distdir
-  /usr/bin/perl Build install
-
-  find $pkgdir -name .packlist -o -name perllocal.pod -delete
-}
-
-# Local Variables:
-# mode: shell-script
-# sh-basic-offset: 2
-# End:
-# vim:set ts=2 sw=2 et:

Copied: perl-devel-checkcompiler/repos/community-any/PKGBUILD (from rev 136156, 
perl-devel-checkcompiler/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-06-30 13:49:51 UTC (rev 136157)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: John D Jones III 
j[nospace]n[nospace]b[nospace]e[nospace]k[nospace]1972 -_AT_- the domain name 
google offers a mail service at ending in dot com
+# Generator  : CPANPLUS::Dist::Arch 1.28
+
+pkgname=perl-devel-checkcompiler
+pkgver=0.06
+pkgrel=1
+pkgdesc=Check the compiler's availability
+arch=('any')
+license=('PerlArtistic' 'GPL')
+options=('!emptydirs')
+depends=('perl')
+makedepends=('perl-module-build')
+checkdepends=('perl-test-requires')
+url='http://search.cpan.org/dist/Devel-CheckCompiler'
+source=('http://search.cpan.org/CPAN/authors/id/S/SY/SYOHEX/Devel-CheckCompiler-0.05.tar.gz')
+sha512sums=('5bf40abc7df914a9bbd5b185a40d597272f2f8fb0a94f95b1790ed247a529af8c31bc8ddfcae75ceab4d504ad8faf86ed63eefbc5081a208bcccf0902464d73e')
+_distdir=Devel-CheckCompiler-0.05
+
+build() {
+  cd $srcdir/$_distdir
+  perl Build.PL installdirs=vendor
+  perl Build
+}
+
+check() {
+  cd $srcdir/$_distdir
+  perl Build test
+}
+
+package() {
+  cd $srcdir/$_distdir
+  perl Build install destdir=$pkgdir
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in perl-devel-checkcompiler/trunk (PKGBUILD)

2015-06-30 Thread Felix Yan
Date: Tuesday, June 30, 2015 @ 15:49:39
  Author: fyan
Revision: 136156

upgpkg: perl-devel-checkcompiler 0.06-1

Modified:
  perl-devel-checkcompiler/trunk/PKGBUILD

--+
 PKGBUILD |   29 +++--
 1 file changed, 7 insertions(+), 22 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-06-30 12:06:31 UTC (rev 136155)
+++ PKGBUILD2015-06-30 13:49:39 UTC (rev 136156)
@@ -1,10 +1,10 @@
 # $Id$
-# Maintainer: Felix Yan felixonm...@gmail.com
+# Maintainer: Felix Yan felixonm...@archlinux.org
 # Contributor: John D Jones III 
j[nospace]n[nospace]b[nospace]e[nospace]k[nospace]1972 -_AT_- the domain name 
google offers a mail service at ending in dot com
 # Generator  : CPANPLUS::Dist::Arch 1.28
 
 pkgname=perl-devel-checkcompiler
-pkgver=0.05
+pkgver=0.06
 pkgrel=1
 pkgdesc=Check the compiler's availability
 arch=('any')
@@ -19,34 +19,19 @@
 _distdir=Devel-CheckCompiler-0.05
 
 build() {
-  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB= \
-  PERL_AUTOINSTALL=--skipdeps\
-  PERL_MM_OPT=INSTALLDIRS=vendor DESTDIR='$pkgdir' \
-  PERL_MB_OPT=--installdirs vendor --destdir '$pkgdir' \
-  MODULEBUILDRC=/dev/null
-
-cd $srcdir/$_distdir
-/usr/bin/perl Build.PL
-/usr/bin/perl Build
-  )
+  cd $srcdir/$_distdir
+  perl Build.PL installdirs=vendor
+  perl Build
 }
 
 check() {
   cd $srcdir/$_distdir
-  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB=
-/usr/bin/perl Build test
-  )
+  perl Build test
 }
 
 package() {
   cd $srcdir/$_distdir
-  /usr/bin/perl Build install
-
-  find $pkgdir -name .packlist -o -name perllocal.pod -delete
+  perl Build install destdir=$pkgdir
 }
 
-# Local Variables:
-# mode: shell-script
-# sh-basic-offset: 2
-# End:
 # vim:set ts=2 sw=2 et:


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

2015-06-30 Thread Felix Yan
Date: Tuesday, June 30, 2015 @ 15:53:24
  Author: fyan
Revision: 136159

archrelease: copy trunk to community-any

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

--+
 PKGBUILD |   98 ++---
 1 file changed, 49 insertions(+), 49 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-06-30 13:53:10 UTC (rev 136158)
+++ PKGBUILD2015-06-30 13:53:24 UTC (rev 136159)
@@ -1,49 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-
-pkgname=python-phonenumbers
-pkgname=(python-phonenumbers python2-phonenumbers)
-_pypiname=phonenumbers
-pkgver=7.0.6
-pkgrel=1
-pkgdesc=Python version of Google's common library for parsing, formatting, 
storing and validating international phone numbers
-arch=('any')
-url=https://github.com/daviddrysdale/python-phonenumbers;
-license=('Apache')
-makedepends=(python-setuptools python2-setuptools)
-source=(https://pypi.python.org/packages/source/p/$_pypiname/$_pypiname-$pkgver.tar.gz;)
-sha512sums=('f6fa4784fe5680105221b384bfd3d4ffb2a359e1d6637539e071fe7a3d06cd36620cde70943a48671e54a00207de459fc574f31dad1390974362620fa99c932e')
-
-prepare() {
-  cp -a $_pypiname-$pkgver{,-py2}
-}
-
-build() {
-  cd $_pypiname-$pkgver
-  python setup.py build
-
-  cd ../$_pypiname-$pkgver
-  python2 setup.py build
-}
-
-check() {
-  cd $_pypiname-$pkgver
-  python setup.py test
-
-  cd ../$_pypiname-$pkgver
-  python2 setup.py test
-}
-
-package_python-phonenumbers() {
-  depends=('python')
-
-  cd $_pypiname-$pkgver
-  python setup.py install -O1 --root ${pkgdir}
-}
-
-package_python2-phonenumbers() {
-  depends=('python2')
-
-  cd $_pypiname-$pkgver
-  python2 setup.py install -O1 --root ${pkgdir}
-}

Copied: python-phonenumbers/repos/community-any/PKGBUILD (from rev 136158, 
python-phonenumbers/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-06-30 13:53:24 UTC (rev 136159)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+
+pkgname=python-phonenumbers
+pkgname=(python-phonenumbers python2-phonenumbers)
+_pypiname=phonenumbers
+pkgver=7.0.7
+pkgrel=1
+pkgdesc=Python version of Google's common library for parsing, formatting, 
storing and validating international phone numbers
+arch=('any')
+url=https://github.com/daviddrysdale/python-phonenumbers;
+license=('Apache')
+makedepends=(python-setuptools python2-setuptools)
+source=(https://pypi.python.org/packages/source/p/$_pypiname/$_pypiname-$pkgver.tar.gz;)
+sha512sums=('75677d0ec3c842873ff5c92a2db22ec536bccff2e9769b7dfbb0a6e4d810ce367a655f0ebe4c7e423db927dc067130e3dc144d46220db5379d86a6eab296477f')
+
+prepare() {
+  cp -a $_pypiname-$pkgver{,-py2}
+}
+
+build() {
+  cd $_pypiname-$pkgver
+  python setup.py build
+
+  cd ../$_pypiname-$pkgver
+  python2 setup.py build
+}
+
+check() {
+  cd $_pypiname-$pkgver
+  python setup.py test
+
+  cd ../$_pypiname-$pkgver
+  python2 setup.py test
+}
+
+package_python-phonenumbers() {
+  depends=('python')
+
+  cd $_pypiname-$pkgver
+  python setup.py install -O1 --root ${pkgdir}
+}
+
+package_python2-phonenumbers() {
+  depends=('python2')
+
+  cd $_pypiname-$pkgver
+  python2 setup.py install -O1 --root ${pkgdir}
+}


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

2015-06-30 Thread Felix Yan
Date: Tuesday, June 30, 2015 @ 15:53:10
  Author: fyan
Revision: 136158

upgpkg: python-phonenumbers 7.0.7-1

Modified:
  python-phonenumbers/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-30 13:49:51 UTC (rev 136157)
+++ PKGBUILD2015-06-30 13:53:10 UTC (rev 136158)
@@ -4,7 +4,7 @@
 pkgname=python-phonenumbers
 pkgname=(python-phonenumbers python2-phonenumbers)
 _pypiname=phonenumbers
-pkgver=7.0.6
+pkgver=7.0.7
 pkgrel=1
 pkgdesc=Python version of Google's common library for parsing, formatting, 
storing and validating international phone numbers
 arch=('any')
@@ -12,7 +12,7 @@
 license=('Apache')
 makedepends=(python-setuptools python2-setuptools)
 
source=(https://pypi.python.org/packages/source/p/$_pypiname/$_pypiname-$pkgver.tar.gz;)
-sha512sums=('f6fa4784fe5680105221b384bfd3d4ffb2a359e1d6637539e071fe7a3d06cd36620cde70943a48671e54a00207de459fc574f31dad1390974362620fa99c932e')
+sha512sums=('75677d0ec3c842873ff5c92a2db22ec536bccff2e9769b7dfbb0a6e4d810ce367a655f0ebe4c7e423db927dc067130e3dc144d46220db5379d86a6eab296477f')
 
 prepare() {
   cp -a $_pypiname-$pkgver{,-py2}


[arch-commits] Commit in python-virtualenv-clone/repos/community-any (2 files)

2015-06-30 Thread Evangelos Foutras
Date: Wednesday, July 1, 2015 @ 06:30:05
  Author: foutrelis
Revision: 136183

archrelease: copy trunk to community-any

Added:
  python-virtualenv-clone/repos/community-any/PKGBUILD
(from rev 136182, python-virtualenv-clone/trunk/PKGBUILD)
Deleted:
  python-virtualenv-clone/repos/community-any/PKGBUILD

--+
 PKGBUILD |   66 ++---
 1 file changed, 33 insertions(+), 33 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-07-01 04:29:56 UTC (rev 136182)
+++ PKGBUILD2015-07-01 04:30:05 UTC (rev 136183)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Evangelos Foutras evange...@foutrelis.com
-
-pkgname=('python-virtualenv-clone' 'python2-virtualenv-clone')
-pkgver=0.2.5
-pkgrel=1
-pkgdesc=A script for cloning a non-relocatable virtualenv.
-arch=('any')
-url=https://github.com/edwardgeorge/virtualenv-clone;
-license=('GPL')
-makedepends=('python-distribute' 'python2-distribute')
-options=('!emptydirs')
-source=(http://pypi.python.org/packages/source/v/virtualenv-clone/virtualenv-clone-$pkgver.tar.gz)
-sha256sums=('7087ba4eb48acfd5209a3fd03e15d072f28742619127c98333057e32748d91c4')
-
-package_python-virtualenv-clone() {
-  depends=('python-distribute')
-
-  cd $srcdir/virtualenv-clone-$pkgver
-  python3 setup.py install --root=$pkgdir -O1
-}
-
-package_python2-virtualenv-clone() {
-  depends=('python2')
-
-  cd $srcdir/virtualenv-clone-$pkgver
-  python2 setup.py install --root=$pkgdir -O1
-
-  # virtualenv-clone is provided by the python-virtualenv-clone package
-  rm $pkgdir/usr/bin/virtualenv-clone
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-virtualenv-clone/repos/community-any/PKGBUILD (from rev 136182, 
python-virtualenv-clone/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-07-01 04:30:05 UTC (rev 136183)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Evangelos Foutras evange...@foutrelis.com
+
+pkgname=('python-virtualenv-clone' 'python2-virtualenv-clone')
+pkgver=0.2.6
+pkgrel=1
+pkgdesc=A script for cloning a non-relocatable virtualenv.
+arch=('any')
+url=https://github.com/edwardgeorge/virtualenv-clone;
+license=('GPL')
+makedepends=('python-distribute' 'python2-distribute')
+options=('!emptydirs')
+source=(http://pypi.python.org/packages/source/v/virtualenv-clone/virtualenv-clone-$pkgver.tar.gz)
+sha256sums=('6b3be5cab59e455f08c9eda573d23006b7d6fb41fae974ddaa2b275c93cc4405')
+
+package_python-virtualenv-clone() {
+  depends=('python-distribute')
+
+  cd $srcdir/virtualenv-clone-$pkgver
+  python3 setup.py install --root=$pkgdir -O1
+}
+
+package_python2-virtualenv-clone() {
+  depends=('python2')
+
+  cd $srcdir/virtualenv-clone-$pkgver
+  python2 setup.py install --root=$pkgdir -O1
+
+  # virtualenv-clone is provided by the python-virtualenv-clone package
+  rm $pkgdir/usr/bin/virtualenv-clone
+}
+
+# vim:set ts=2 sw=2 et:


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

2015-06-30 Thread Evangelos Foutras
Date: Wednesday, July 1, 2015 @ 06:29:56
  Author: foutrelis
Revision: 136182

upgpkg: python-virtualenv-clone 0.2.6-1

New upstream release.

Modified:
  python-virtualenv-clone/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-07-01 03:11:12 UTC (rev 136181)
+++ PKGBUILD2015-07-01 04:29:56 UTC (rev 136182)
@@ -2,7 +2,7 @@
 # Maintainer: Evangelos Foutras evange...@foutrelis.com
 
 pkgname=('python-virtualenv-clone' 'python2-virtualenv-clone')
-pkgver=0.2.5
+pkgver=0.2.6
 pkgrel=1
 pkgdesc=A script for cloning a non-relocatable virtualenv.
 arch=('any')
@@ -11,7 +11,7 @@
 makedepends=('python-distribute' 'python2-distribute')
 options=('!emptydirs')
 
source=(http://pypi.python.org/packages/source/v/virtualenv-clone/virtualenv-clone-$pkgver.tar.gz)
-sha256sums=('7087ba4eb48acfd5209a3fd03e15d072f28742619127c98333057e32748d91c4')
+sha256sums=('6b3be5cab59e455f08c9eda573d23006b7d6fb41fae974ddaa2b275c93cc4405')
 
 package_python-virtualenv-clone() {
   depends=('python-distribute')


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

2015-06-30 Thread Gaetan Bisson
Date: Wednesday, July 1, 2015 @ 07:21:46
  Author: bisson
Revision: 241658

upstream update

Modified:
  openssh/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-07-01 04:33:57 UTC (rev 241657)
+++ PKGBUILD2015-07-01 05:21:46 UTC (rev 241658)
@@ -4,8 +4,8 @@
 # Contributor: judd jvi...@zeroflux.org
 
 pkgname=openssh
-pkgver=6.8p1
-pkgrel=3
+pkgver=6.9p1
+pkgrel=1
 pkgdesc='Free version of the SSH connectivity tools'
 url='http://www.openssh.org/portable.html'
 license=('custom:BSD')
@@ -16,8 +16,6 @@
 'x11-ssh-askpass: input passphrase in X')
 validpgpkeys=('59C2118ED206D927E667EBE3D3E5F56B6D920D30')
 
source=(ftp://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/${pkgname}-${pkgver}.tar.gz{,.asc}
-'error.patch'
-'dispatch.patch'
 'sshdgenkeys.service'
 'sshd@.service'
 'sshd.service'
@@ -24,9 +22,7 @@
 'sshd.socket'
 'sshd.conf'
 'sshd.pam')
-sha1sums=('cdbc51e46a902b30d263b05fdc71340920e91c92' 'SKIP'
-  '1b6b11efe9b20b9d1e51a59ac4b16eefb1dc84b8'
-  'e629d45e899bbb2b3e702080f37cb40f3dc2b9b4'
+sha1sums=('86ab57f00d0fd9bf302760f2f6deac1b6e9df265' 'SKIP'
   'cc1ceec606c98c7407e7ac21ade23aed81e31405'
   '6a0ff3305692cf83aca96e10f3bb51e1c26fccda'
   'ec49c6beba923e201505f5669cea48cad29014db'
@@ -38,12 +34,6 @@
 
 install=install
 
-prepare() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   patch -p1 -i ../error.patch
-   patch -p1 -i ../dispatch.patch
-}
-
 build() {
cd ${srcdir}/${pkgname}-${pkgver}
 


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

2015-06-30 Thread Jan Steffens
Date: Wednesday, July 1, 2015 @ 06:33:01
  Author: heftig
Revision: 241656

Add patches (mainly from Fedora), fix kDBus, don't remove user on uninstall, 
add py3 lib

Added:
  avahi/trunk/avahi.install
(from rev 241549, avahi/trunk/install)
Modified:
  avahi/trunk/PKGBUILD
Deleted:
  avahi/trunk/install

---+
 PKGBUILD  |  106 +++-
 avahi.install |6 +++
 install   |   11 -
 3 files changed, 58 insertions(+), 65 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-07-01 03:01:11 UTC (rev 241655)
+++ PKGBUILD2015-07-01 04:33:01 UTC (rev 241656)
@@ -1,17 +1,20 @@
 # $Id$
-# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+# Contributor: Gaetan Bisson bis...@archlinux.org
 # Contributor: Douglas Soares de Andrade doug...@archlinux.org
 
 pkgname=avahi
 pkgver=0.6.31
-pkgrel=15
-pkgdesc='Multicast/unicast DNS-SD framework'
+pkgrel=16
+_commit=573e3b5
+pkgdesc='Multicast DNS-SD / Zeroconf Suite'
 #url='http://www.avahi.org/'
 url='http://git.0pointer.net/avahi.git'
-license=('LGPL')
-arch=('i686' 'x86_64')
-options=('!emptydirs')
-depends=('expat' 'libdaemon' 'glib2' 'libcap' 'gdbm' 'dbus')
+license=(LGPL)
+arch=(i686 x86_64)
+depends=(expat libdaemon glib2 libcap gdbm dbus)
+makedepends=(git qt4 pygtk mono intltool python2-dbus gtk-sharp-2 
gobject-introspection gtk3
+ xmltoman python-dbus)
 optdepends=('gtk3: avahi-discover-standalone, bshell, bssh, bvnc'
 'gtk2: gtk2 bindings'
 'qt4: qt4 bindings'
@@ -20,64 +23,59 @@
 'mono: mono bindings'
 'python2-dbus: avahi-discover'
 'nss-mdns: NSS support for mDNS')
-makedepends=('git' 'qt4' 'pygtk' 'mono' 'intltool' 'python2-dbus'
- 'gtk-sharp-2' 'gobject-introspection' 'gtk3' 'xmltoman')
-backup=('etc/avahi/hosts'
-'etc/avahi/avahi-daemon.conf'
-'etc/avahi/services/ssh.service'
-'etc/avahi/services/sftp-ssh.service'
-'usr/lib/avahi/service-types.db'
-'usr/share/avahi/service-types')
-#source=(http://www.avahi.org/download/avahi-${pkgver}.tar.gz;)
-#sha1sums=('7e05bd78572c9088b03b1207a0ad5aba38490684')
-source=('git://git.0pointer.net/avahi.git#commit=147cdce70b22ae7cee9fb4fe123db40952f31c9e')
-sha1sums=('SKIP')
+conflicts=(howl mdnsresponder)
+provides=(howl mdnsresponder)
+install=avahi.install
+options=(!emptydirs)
+backup=(etc/avahi/{hosts,avahi-daemon.conf,services/{ssh,sftp-ssh}.service}
+usr/lib/avahi/service-types.db usr/share/avahi/service-types)
+source=(git+https://github.com/heftig/avahi#commit=$_commit;)
+sha256sums=('SKIP')
 
-conflicts=('howl' 'mdnsresponder')
-provides=('howl' 'mdnsresponder')
 
-install=install
-
 prepare() {
-   cd ${srcdir}/${pkgname} #-${pkgver}
-   sed '/^Libs:/s:$: -ldbus-1:' -i avahi-client.pc.in
-   sed 's:/sbin/resolvconf:/usr/sbin/resolvconf:g' -i */*.action
-   sed 's:-DG[^ ]*_DISABLE_DEPRECATED=1::g' -i avahi-ui/Makefile.*
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
 }
 
 build() {
-   cd ${srcdir}/${pkgname} #-${pkgver}
-   export MOC_QT4=/usr/bin/moc-qt4
-   export PYTHON=/usr/bin/python2
+  cd $pkgname
+  export MOC_QT4=/usr/bin/moc-qt4 PYTHON=/usr/bin/python2
 
-   ./autogen.sh || true
-   ./configure \
-   --prefix=/usr \
-   --sysconfdir=/etc \
-   --localstatedir=/var \
-   --sbindir=/usr/bin \
-   --disable-monodoc \
-   --disable-qt3 \
-   --enable-compat-libdns_sd \
-   --enable-compat-howl \
-   --with-distro=archlinux \
-   --with-avahi-priv-access-group=network \
-   --with-autoipd-user=avahi \
-   --with-autoipd-group=avahi \
-   --with-systemdsystemunitdir=/usr/lib/systemd/system \
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--sbindir=/usr/bin \
+--disable-monodoc \
+--disable-qt3 \
+--enable-compat-libdns_sd \
+--enable-compat-howl \
+--with-distro=archlinux \
+--with-avahi-priv-access-group=network \
+--with-autoipd-user=avahi \
+--with-autoipd-group=avahi \
+--with-systemdsystemunitdir=/usr/lib/systemd/system
 
-   make
+  cp -a avahi-python/avahi avahi-python/avahi3
+
+  make
+  make -C avahi-python/avahi3 PYTHON=/usr/bin/python3
 }
 
 package() {
-   cd ${srcdir}/${pkgname} #-${pkgver}
-   make DESTDIR=${pkgdir} install
-   rm -fr ${pkgdir}/etc/rc.d
+  cd $pkgname
+  make DESTDIR=$pkgdir install
+  make DESTDIR=$pkgdir -C avahi-python/avahi3 install \
+PYTHON=/usr/bin/python3 pythondir=/usr/lib/python3.4/site-packages
 
-   # howl and mdnsresponder compatability
-   cd ${pkgdir}/usr/include; ln -s avahi-compat-libdns_sd/dns_sd.h 
dns_sd.h; ln -s 

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

2015-06-30 Thread Jan Steffens
Date: Wednesday, July 1, 2015 @ 06:33:57
  Author: heftig
Revision: 241657

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

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

--+
 testing-i686/PKGBUILD|   81 +
 testing-i686/avahi.install   |6 +++
 testing-x86_64/PKGBUILD  |   81 +
 testing-x86_64/avahi.install |6 +++
 4 files changed, 174 insertions(+)

Copied: avahi/repos/testing-i686/PKGBUILD (from rev 241656, 
avahi/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-07-01 04:33:57 UTC (rev 241657)
@@ -0,0 +1,81 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+# Contributor: Gaetan Bisson bis...@archlinux.org
+# Contributor: Douglas Soares de Andrade doug...@archlinux.org
+
+pkgname=avahi
+pkgver=0.6.31
+pkgrel=16
+_commit=573e3b5
+pkgdesc='Multicast DNS-SD / Zeroconf Suite'
+#url='http://www.avahi.org/'
+url='http://git.0pointer.net/avahi.git'
+license=(LGPL)
+arch=(i686 x86_64)
+depends=(expat libdaemon glib2 libcap gdbm dbus)
+makedepends=(git qt4 pygtk mono intltool python2-dbus gtk-sharp-2 
gobject-introspection gtk3
+ xmltoman python-dbus)
+optdepends=('gtk3: avahi-discover-standalone, bshell, bssh, bvnc'
+'gtk2: gtk2 bindings'
+'qt4: qt4 bindings'
+'pygtk: avahi-bookmarks, avahi-discover'
+'python2-twisted: avahi-bookmarks'
+'mono: mono bindings'
+'python2-dbus: avahi-discover'
+'nss-mdns: NSS support for mDNS')
+conflicts=(howl mdnsresponder)
+provides=(howl mdnsresponder)
+install=avahi.install
+options=(!emptydirs)
+backup=(etc/avahi/{hosts,avahi-daemon.conf,services/{ssh,sftp-ssh}.service}
+usr/lib/avahi/service-types.db usr/share/avahi/service-types)
+source=(git+https://github.com/heftig/avahi#commit=$_commit;)
+sha256sums=('SKIP')
+
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+  export MOC_QT4=/usr/bin/moc-qt4 PYTHON=/usr/bin/python2
+
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--sbindir=/usr/bin \
+--disable-monodoc \
+--disable-qt3 \
+--enable-compat-libdns_sd \
+--enable-compat-howl \
+--with-distro=archlinux \
+--with-avahi-priv-access-group=network \
+--with-autoipd-user=avahi \
+--with-autoipd-group=avahi \
+--with-systemdsystemunitdir=/usr/lib/systemd/system
+
+  cp -a avahi-python/avahi avahi-python/avahi3
+
+  make
+  make -C avahi-python/avahi3 PYTHON=/usr/bin/python3
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR=$pkgdir install
+  make DESTDIR=$pkgdir -C avahi-python/avahi3 install \
+PYTHON=/usr/bin/python3 pythondir=/usr/lib/python3.4/site-packages
+
+  # howl compat
+  ln -s avahi-compat-howl $pkgdir/usr/include/howl
+  ln -s avahi-compat-howl.pc $pkgdir/usr/lib/pkgconfig/howl.pc
+
+  # mdnsresponder compat
+  ln -s avahi-compat-libdns_sd/dns_sd.h $pkgdir/usr/include/dns_sd.h
+
+  # see FS#42638
+  ln -s avahi-daemon.service 
$pkgdir/usr/lib/systemd/system/dbus-org.freedesktop.Avahi.service
+}

Copied: avahi/repos/testing-i686/avahi.install (from rev 241656, 
avahi/trunk/avahi.install)
===
--- testing-i686/avahi.install  (rev 0)
+++ testing-i686/avahi.install  2015-07-01 04:33:57 UTC (rev 241657)
@@ -0,0 +1,6 @@
+post_install() {
+  if ! getent passwd avahi /dev/null; then
+groupadd -r -g 84 avahi
+useradd -r -u 84 -g avahi -d / -s /bin/nologin -c avahi avahi
+  fi
+}

Copied: avahi/repos/testing-x86_64/PKGBUILD (from rev 241656, 
avahi/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2015-07-01 04:33:57 UTC (rev 241657)
@@ -0,0 +1,81 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+# Contributor: Gaetan Bisson bis...@archlinux.org
+# Contributor: Douglas Soares de Andrade doug...@archlinux.org
+
+pkgname=avahi
+pkgver=0.6.31
+pkgrel=16
+_commit=573e3b5
+pkgdesc='Multicast DNS-SD / Zeroconf Suite'
+#url='http://www.avahi.org/'
+url='http://git.0pointer.net/avahi.git'
+license=(LGPL)
+arch=(i686 x86_64)
+depends=(expat libdaemon glib2 libcap gdbm dbus)
+makedepends=(git qt4 pygtk mono intltool python2-dbus gtk-sharp-2 

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

2015-06-30 Thread Daniel Micay
Date: Tuesday, June 30, 2015 @ 17:46:57
  Author: thestinger
Revision: 136163

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-06-30 15:46:23 UTC (rev 136162)
+++ community-i686/PKGBUILD 2015-06-30 15:46:57 UTC (rev 136163)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Daniel Micay danielmi...@gmail.com
-# Contributor: Federico Cinelli cine...@aur.archlinux.org
-
-pkgname=envoy
-pkgver=13
-pkgrel=1
-pkgdesc='A ssh-agent/gpg-agent keychain and process monitor'
-arch=('i686' 'x86_64')
-url='https://github.com/vodik/envoy'
-license=('GPL')
-depends=('openssh' 'systemd')
-optdepends=('gnupg: gpg-agent support')
-makedepends=('ragel')
-source=($pkgname-$pkgver.tar.gz::https://github.com/vodik/$pkgname/archive/v$pkgver.tar.gz;
-clique.tar.gz::https://github.com/vodik/clique/archive/v0.1.tar.gz;)
-md5sums=('ac118099ac3bfaf0c8461cea3d2713fa'
- '8c4f3fd488fc8f92196a8aa42ac9567e')
-
-prepare() {
-  cd $pkgname-$pkgver
-  rm -fr clique
-  ln -s ../clique-0.1 clique
-}
-
-build() {
-  make -C $pkgname-$pkgver
-}
-
-package() {
-  make -C $pkgname-$pkgver DESTDIR=$pkgdir install
-}

Copied: envoy/repos/community-i686/PKGBUILD (from rev 136162, 
envoy/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-06-30 15:46:57 UTC (rev 136163)
@@ -0,0 +1,24 @@
+# $Id$
+# Maintainer: Daniel Micay danielmi...@gmail.com
+# Contributor: Federico Cinelli cine...@aur.archlinux.org
+
+pkgname=envoy
+pkgver=14
+pkgrel=1
+pkgdesc='A ssh-agent/gpg-agent keychain and process monitor'
+arch=('i686' 'x86_64')
+url='https://github.com/vodik/envoy'
+license=('GPL')
+depends=('openssh' 'systemd')
+optdepends=('gnupg: gpg-agent support')
+makedepends=('ragel')
+source=($pkgname-$pkgver.tar.gz::https://github.com/vodik/$pkgname/archive/v$pkgver.tar.gz;)
+md5sums=('3c79bbc933e402542fcbe39ca1abac7a')
+
+build() {
+  make -C $pkgname-$pkgver
+}
+
+package() {
+  make -C $pkgname-$pkgver DESTDIR=$pkgdir install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-06-30 15:46:23 UTC (rev 136162)
+++ community-x86_64/PKGBUILD   2015-06-30 15:46:57 UTC (rev 136163)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Daniel Micay danielmi...@gmail.com
-# Contributor: Federico Cinelli cine...@aur.archlinux.org
-
-pkgname=envoy
-pkgver=13
-pkgrel=1
-pkgdesc='A ssh-agent/gpg-agent keychain and process monitor'
-arch=('i686' 'x86_64')
-url='https://github.com/vodik/envoy'
-license=('GPL')
-depends=('openssh' 'systemd')
-optdepends=('gnupg: gpg-agent support')
-makedepends=('ragel')
-source=($pkgname-$pkgver.tar.gz::https://github.com/vodik/$pkgname/archive/v$pkgver.tar.gz;
-clique.tar.gz::https://github.com/vodik/clique/archive/v0.1.tar.gz;)
-md5sums=('ac118099ac3bfaf0c8461cea3d2713fa'
- '8c4f3fd488fc8f92196a8aa42ac9567e')
-
-prepare() {
-  cd $pkgname-$pkgver
-  rm -fr clique
-  ln -s ../clique-0.1 clique
-}
-
-build() {
-  make -C $pkgname-$pkgver
-}
-
-package() {
-  make -C $pkgname-$pkgver DESTDIR=$pkgdir install
-}

Copied: envoy/repos/community-x86_64/PKGBUILD (from rev 136162, 
envoy/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-06-30 15:46:57 UTC (rev 136163)
@@ -0,0 +1,24 @@
+# $Id$
+# Maintainer: Daniel Micay danielmi...@gmail.com
+# Contributor: Federico Cinelli cine...@aur.archlinux.org
+
+pkgname=envoy
+pkgver=14
+pkgrel=1
+pkgdesc='A ssh-agent/gpg-agent keychain and process monitor'
+arch=('i686' 'x86_64')
+url='https://github.com/vodik/envoy'
+license=('GPL')
+depends=('openssh' 'systemd')
+optdepends=('gnupg: gpg-agent support')
+makedepends=('ragel')
+source=($pkgname-$pkgver.tar.gz::https://github.com/vodik/$pkgname/archive/v$pkgver.tar.gz;)
+md5sums=('3c79bbc933e402542fcbe39ca1abac7a')
+
+build() {
+  make -C $pkgname-$pkgver
+}
+
+package() {
+  make -C $pkgname-$pkgver DESTDIR=$pkgdir install
+}


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

2015-06-30 Thread Daniel Micay
Date: Tuesday, June 30, 2015 @ 17:46:23
  Author: thestinger
Revision: 136162

upgpkg: envoy 14-1

Modified:
  envoy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-30 14:28:38 UTC (rev 136161)
+++ PKGBUILD2015-06-30 15:46:23 UTC (rev 136162)
@@ -3,7 +3,7 @@
 # Contributor: Federico Cinelli cine...@aur.archlinux.org
 
 pkgname=envoy
-pkgver=13
+pkgver=14
 pkgrel=1
 pkgdesc='A ssh-agent/gpg-agent keychain and process monitor'
 arch=('i686' 'x86_64')
@@ -12,17 +12,9 @@
 depends=('openssh' 'systemd')
 optdepends=('gnupg: gpg-agent support')
 makedepends=('ragel')
-source=($pkgname-$pkgver.tar.gz::https://github.com/vodik/$pkgname/archive/v$pkgver.tar.gz;
-clique.tar.gz::https://github.com/vodik/clique/archive/v0.1.tar.gz;)
-md5sums=('ac118099ac3bfaf0c8461cea3d2713fa'
- '8c4f3fd488fc8f92196a8aa42ac9567e')
+source=($pkgname-$pkgver.tar.gz::https://github.com/vodik/$pkgname/archive/v$pkgver.tar.gz;)
+md5sums=('3c79bbc933e402542fcbe39ca1abac7a')
 
-prepare() {
-  cd $pkgname-$pkgver
-  rm -fr clique
-  ln -s ../clique-0.1 clique
-}
-
 build() {
   make -C $pkgname-$pkgver
 }


[arch-commits] Commit in lib32-libdrm/repos/multilib-x86_64 (PKGBUILD PKGBUILD)

2015-06-30 Thread Laurent Carlier
Date: Tuesday, June 30, 2015 @ 16:28:38
  Author: lcarlier
Revision: 136161

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-libdrm/repos/multilib-x86_64/PKGBUILD
(from rev 136160, lib32-libdrm/trunk/PKGBUILD)
Deleted:
  lib32-libdrm/repos/multilib-x86_64/PKGBUILD

--+
 PKGBUILD |  105 -
 1 file changed, 56 insertions(+), 49 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-06-30 14:28:33 UTC (rev 136160)
+++ PKGBUILD2015-06-30 14:28:38 UTC (rev 136161)
@@ -1,49 +0,0 @@
-# $Id$
-# Maintainer: Laurent Carlier lordhea...@gmail.com
-# Contributor: Jan de Groot j...@archlinux.org
-
-_pkgbasename=libdrm
-pkgname=lib32-$_pkgbasename
-pkgver=2.4.61
-pkgrel=1
-pkgdesc=Userspace interface to kernel DRM services (32-bit)
-arch=(x86_64)
-license=('custom')
-depends=('lib32-libpciaccess' $_pkgbasename)
-makedepends=(gcc-multilib xorg-util-macros)
-options=('!libtool')
-url=http://dri.freedesktop.org/;
-source=(http://dri.freedesktop.org/${_pkgbasename}/${_pkgbasename}-${pkgver}.tar.bz2{,.sig})
-sha256sums=('8b549092c8961a393a7e1d9a1bccddcea8e2af67c0d7d7c67babb9fc3b47699c'
-'SKIP')
-validpgpkeys=('B97BD6A80CAC4981091AE547FE558C72A67013C3') # Maarten Lankhorst 
maarten.lankho...@canonical.com
-validpgpkeys+=('215DEE688925CCB965BE5DA97C03D7797B6E1AE2') # Damien Lespiau 
damien.lesp...@intel.com
-validpgpkeys+=('10A6D91DA1B05BD29F6DEBAC0C74F35979C486BE') # David Airlie 
airl...@redhat.com
-
-build() {
-  cd ${srcdir}/${_pkgbasename}-${pkgver}
-
-  export CC=gcc -m32
-  export CXX=g++ -m32
-  export PKG_CONFIG_PATH=/usr/lib32/pkgconfig
-
-  # pthread is useless in Linux
-  sed -i /pthread-stubs/d configure.ac
-  autoreconf --force --install
-
-  ./configure --prefix=/usr --libdir=/usr/lib32 \
-  --enable-udev 
-
-  make
-}
-
-package() {
-  cd ${srcdir}/${_pkgbasename}-${pkgver}
-
-  make DESTDIR=${pkgdir} install
-
-  rm -rf ${pkgdir}/usr/{include,share,bin}
-  mkdir -p $pkgdir/usr/share/licenses
-  ln -s $_pkgbasename $pkgdir/usr/share/licenses/$pkgname
-}
-

Copied: lib32-libdrm/repos/multilib-x86_64/PKGBUILD (from rev 136160, 
lib32-libdrm/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-06-30 14:28:38 UTC (rev 136161)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Laurent Carlier lordhea...@gmail.com
+# Contributor: Jan de Groot j...@archlinux.org
+
+_pkgbasename=libdrm
+pkgname=lib32-$_pkgbasename
+pkgver=2.4.62
+pkgrel=1
+pkgdesc=Userspace interface to kernel DRM services (32-bit)
+arch=(x86_64)
+license=('custom')
+depends=('lib32-libpciaccess' $_pkgbasename)
+makedepends=(gcc-multilib xorg-util-macros valgrind-multilib)
+options=('!libtool')
+url=http://dri.freedesktop.org/;
+source=(http://dri.freedesktop.org/${_pkgbasename}/${_pkgbasename}-${pkgver}.tar.bz2{,.sig})
+sha256sums=('906c294bdbe1c94c3ca084305d61a6e5a8367f3b4986e6cc13b1e9b3f75931dc'
+'SKIP')
+validpgpkeys=('B97BD6A80CAC4981091AE547FE558C72A67013C3') # Maarten Lankhorst 
maarten.lankho...@canonical.com
+validpgpkeys+=('215DEE688925CCB965BE5DA97C03D7797B6E1AE2') # Damien Lespiau 
damien.lesp...@intel.com
+validpgpkeys+=('10A6D91DA1B05BD29F6DEBAC0C74F35979C486BE') # David Airlie 
airl...@redhat.com
+validpgpkeys+=('8703B6700E7EE06D7A39B8D6EDAE37B02CEB490D') # Emil Velikov 
emil.l.veli...@gmail.com
+
+build() {
+  cd ${srcdir}/${_pkgbasename}-${pkgver}
+
+  export CC=gcc -m32
+  export CXX=g++ -m32
+  export PKG_CONFIG_PATH=/usr/lib32/pkgconfig
+
+  # pthread is useless in Linux
+  sed -i /pthread-stubs/d configure.ac
+  autoreconf --force --install
+
+  ./configure --prefix=/usr \
+ --libdir=/usr/lib32 \
+ --enable-udev
+
+  make
+}
+
+check() {
+  cd ${srcdir}/${_pkgbasename}-${pkgver}
+  make -k check
+}
+
+package() {
+  cd ${srcdir}/${_pkgbasename}-${pkgver}
+
+  make DESTDIR=${pkgdir} install
+
+  rm -rf ${pkgdir}/usr/{include,share,bin}
+  mkdir -p $pkgdir/usr/share/licenses
+  ln -s $_pkgbasename $pkgdir/usr/share/licenses/$pkgname
+}
+


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

2015-06-30 Thread Laurent Carlier
Date: Tuesday, June 30, 2015 @ 16:28:33
  Author: lcarlier
Revision: 136160

upgpkg: lib32-libdrm 2.4.62-1

upstream update 2.4.62

Modified:
  lib32-libdrm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-30 13:53:24 UTC (rev 136159)
+++ PKGBUILD2015-06-30 14:28:33 UTC (rev 136160)
@@ -4,21 +4,22 @@
 
 _pkgbasename=libdrm
 pkgname=lib32-$_pkgbasename
-pkgver=2.4.61
+pkgver=2.4.62
 pkgrel=1
 pkgdesc=Userspace interface to kernel DRM services (32-bit)
 arch=(x86_64)
 license=('custom')
 depends=('lib32-libpciaccess' $_pkgbasename)
-makedepends=(gcc-multilib xorg-util-macros)
+makedepends=(gcc-multilib xorg-util-macros valgrind-multilib)
 options=('!libtool')
 url=http://dri.freedesktop.org/;
 
source=(http://dri.freedesktop.org/${_pkgbasename}/${_pkgbasename}-${pkgver}.tar.bz2{,.sig})
-sha256sums=('8b549092c8961a393a7e1d9a1bccddcea8e2af67c0d7d7c67babb9fc3b47699c'
+sha256sums=('906c294bdbe1c94c3ca084305d61a6e5a8367f3b4986e6cc13b1e9b3f75931dc'
 'SKIP')
 validpgpkeys=('B97BD6A80CAC4981091AE547FE558C72A67013C3') # Maarten Lankhorst 
maarten.lankho...@canonical.com
 validpgpkeys+=('215DEE688925CCB965BE5DA97C03D7797B6E1AE2') # Damien Lespiau 
damien.lesp...@intel.com
 validpgpkeys+=('10A6D91DA1B05BD29F6DEBAC0C74F35979C486BE') # David Airlie 
airl...@redhat.com
+validpgpkeys+=('8703B6700E7EE06D7A39B8D6EDAE37B02CEB490D') # Emil Velikov 
emil.l.veli...@gmail.com
 
 build() {
   cd ${srcdir}/${_pkgbasename}-${pkgver}
@@ -31,12 +32,18 @@
   sed -i /pthread-stubs/d configure.ac
   autoreconf --force --install
 
-  ./configure --prefix=/usr --libdir=/usr/lib32 \
-  --enable-udev 
+  ./configure --prefix=/usr \
+ --libdir=/usr/lib32 \
+ --enable-udev
 
   make
 }
 
+check() {
+  cd ${srcdir}/${_pkgbasename}-${pkgver}
+  make -k check
+}
+
 package() {
   cd ${srcdir}/${_pkgbasename}-${pkgver}
 


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

2015-06-30 Thread Laurent Carlier
Date: Tuesday, June 30, 2015 @ 16:14:16
  Author: lcarlier
Revision: 241435

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

Added:
  libdrm/repos/extra-i686/COPYING
(from rev 241434, libdrm/trunk/COPYING)
  libdrm/repos/extra-i686/PKGBUILD
(from rev 241434, libdrm/trunk/PKGBUILD)
  libdrm/repos/extra-x86_64/COPYING
(from rev 241434, libdrm/trunk/COPYING)
  libdrm/repos/extra-x86_64/PKGBUILD
(from rev 241434, libdrm/trunk/PKGBUILD)
Deleted:
  libdrm/repos/extra-i686/COPYING
  libdrm/repos/extra-i686/PKGBUILD
  libdrm/repos/extra-x86_64/COPYING
  libdrm/repos/extra-x86_64/PKGBUILD

---+
 /COPYING  |   96 +++
 /PKGBUILD |   98 
 extra-i686/COPYING|   48 ---
 extra-i686/PKGBUILD   |   48 ---
 extra-x86_64/COPYING  |   48 ---
 extra-x86_64/PKGBUILD |   48 ---
 6 files changed, 194 insertions(+), 192 deletions(-)

Deleted: extra-i686/COPYING
===
--- extra-i686/COPYING  2015-06-30 14:14:07 UTC (rev 241434)
+++ extra-i686/COPYING  2015-06-30 14:14:16 UTC (rev 241435)
@@ -1,48 +0,0 @@
- Copyright 2005 Adam Jackson.
-
- Permission is hereby granted, free of charge, to any person obtaining
- a copy of this software and associated documentation files (the
- Software), to deal in the Software without restriction, including
- without limitation on the rights to use, copy, modify, merge,
- publish, distribute, sub license, and/or sell copies of the Software,
- and to permit persons to whom the Software is furnished to do so,
- subject to the following conditions:
-
- The above copyright notice and this permission notice (including the
- next paragraph) shall be included in all copies or substantial
- portions of the Software.
-
- THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND,
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- NON-INFRINGEMENT.  IN NO EVENT SHALL ADAM JACKSON BE LIABLE FOR ANY
- CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
- SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
-
-
- Copyright 1999 Precision Insight, Inc., Cedar Park, Texas.
- Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
- All Rights Reserved.
-
- Permission is hereby granted, free of charge, to any person obtaining
- a copy of this software and associated documentation files (the
- Software), to deal in the Software without restriction, including
- without limitation the rights to use, copy, modify, merge, publish,
- distribute, sublicense, and/or sell copies of the Software, and to
- permit persons to whom the Software is furnished to do so, subject to
- the following conditions:
-
- The above copyright notice and this permission notice (including the
- next paragraph) shall be included in all copies or substantial
- portions of the Software.
-
- THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND,
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- NONINFRINGEMENT.  IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS
- SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
- DEALINGS IN THE SOFTWARE.

Copied: libdrm/repos/extra-i686/COPYING (from rev 241434, libdrm/trunk/COPYING)
===
--- extra-i686/COPYING  (rev 0)
+++ extra-i686/COPYING  2015-06-30 14:14:16 UTC (rev 241435)
@@ -0,0 +1,48 @@
+ Copyright 2005 Adam Jackson.
+
+ Permission is hereby granted, free of charge, to any person obtaining
+ a copy of this software and associated documentation files (the
+ Software), to deal in the Software without restriction, including
+ without limitation on the rights to use, copy, modify, merge,
+ publish, distribute, sub license, and/or sell copies of the Software,
+ and to permit persons to whom the Software is furnished to do so,
+ subject to the following conditions:
+
+ The above copyright notice and this permission notice (including the
+ next paragraph) shall be included in all copies or substantial
+ portions of the Software.
+
+ THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND,
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+ NON-INFRINGEMENT.  IN NO EVENT SHALL ADAM JACKSON BE LIABLE FOR ANY
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
+ TORT 

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

2015-06-30 Thread Laurent Carlier
Date: Tuesday, June 30, 2015 @ 16:14:07
  Author: lcarlier
Revision: 241434

upgpkg: libdrm 2.4.62-1

upstream update 2.4.62

Modified:
  libdrm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-30 11:48:53 UTC (rev 241433)
+++ PKGBUILD2015-06-30 14:14:07 UTC (rev 241434)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=libdrm
-pkgver=2.4.61
+pkgver=2.4.62
 pkgrel=1
 pkgdesc=Userspace interface to kernel DRM services
 arch=(i686 x86_64)
@@ -14,12 +14,13 @@
 url=http://dri.freedesktop.org/;
 source=(http://dri.freedesktop.org/$pkgname/$pkgname-$pkgver.tar.bz2{,.sig}
 COPYING)
-sha256sums=('8b549092c8961a393a7e1d9a1bccddcea8e2af67c0d7d7c67babb9fc3b47699c'
+sha256sums=('906c294bdbe1c94c3ca084305d61a6e5a8367f3b4986e6cc13b1e9b3f75931dc'
 'SKIP'
 '9631d4f694952e3e6ae5a05534c2e93e994e47d3413677a3a00e45c8cef6db93')
 validpgpkeys=('B97BD6A80CAC4981091AE547FE558C72A67013C3') # Maarten Lankhorst 
maarten.lankho...@canonical.com
 validpgpkeys+=('215DEE688925CCB965BE5DA97C03D7797B6E1AE2') # Damien Lespiau 
damien.lesp...@intel.com
 validpgpkeys+=('10A6D91DA1B05BD29F6DEBAC0C74F35979C486BE') # David Airlie 
airl...@redhat.com
+validpgpkeys+=('8703B6700E7EE06D7A39B8D6EDAE37B02CEB490D') # Emil Velikov 
emil.l.veli...@gmail.com
 
 prepare() {
   cd $pkgname-$pkgver


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

2015-06-30 Thread Dave Reisner
Date: Tuesday, June 30, 2015 @ 16:38:16
  Author: dreisner
Revision: 241437

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

Added:
  curl/repos/testing-i686/
  curl/repos/testing-i686/PKGBUILD
(from rev 241436, curl/trunk/PKGBUILD)
  curl/repos/testing-i686/curlbuild.h
(from rev 241436, curl/trunk/curlbuild.h)
  curl/repos/testing-x86_64/
  curl/repos/testing-x86_64/PKGBUILD
(from rev 241436, curl/trunk/PKGBUILD)
  curl/repos/testing-x86_64/curlbuild.h
(from rev 241436, curl/trunk/curlbuild.h)
Deleted:
  curl/repos/testing-i686/PKGBUILD
  curl/repos/testing-i686/curlbuild.h
  curl/repos/testing-x86_64/PKGBUILD
  curl/repos/testing-x86_64/curlbuild.h

+
 /PKGBUILD  |  140 +++
 /curlbuild.h   |   18 +
 testing-i686/PKGBUILD  |   65 ---
 testing-i686/curlbuild.h   |9 --
 testing-x86_64/PKGBUILD|   65 ---
 testing-x86_64/curlbuild.h |9 --
 6 files changed, 158 insertions(+), 148 deletions(-)

Deleted: testing-i686/PKGBUILD
===
--- testing-i686/PKGBUILD   2015-06-21 21:33:13 UTC (rev 241170)
+++ testing-i686/PKGBUILD   2015-06-30 14:38:16 UTC (rev 241437)
@@ -1,65 +0,0 @@
-# $Id$
-# Maintainer: Dave Reisner dreis...@archlinux.org
-# Contributor: Angel Velasquez an...@archlinux.org
-# Contributor: Eric Belanger e...@archlinux.org
-# Contributor: Lucien Immink l.imm...@student.fnt.hvu.nl
-# Contributor: Daniel J Griffiths ghost1...@archlinux.us
-
-pkgname=curl
-pkgver=7.43.0
-pkgrel=1
-pkgdesc=An URL retrieval utility and library
-arch=('i686' 'x86_64')
-url=http://curl.haxx.se;
-license=('MIT')
-depends=('ca-certificates' 'krb5' 'libssh2' 'libidn' 'openssl' 'zlib')
-provides=('libcurl.so')
-options=('strip' 'debug')
-source=(http://curl.haxx.se/download/$pkgname-$pkgver.tar.gz{,.asc}
-curlbuild.h)
-md5sums=('3037f0b6ce03d434618e9db5506ae6be'
- 'SKIP'
- '751bd433ede935c8fae727377625a8ae')
-validpgpkeys=('914C533DF9B2ADA2204F586D78E11C6B279D5C91')  # Daniel Stenberg
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./configure \
-  --prefix=/usr \
-  --mandir=/usr/share/man \
-  --disable-ldap \
-  --disable-ldaps \
-  --enable-ipv6 \
-  --enable-manual \
-  --enable-versioned-symbols \
-  --enable-threaded-resolver \
-  --with-gssapi \
-  --with-libidn \
-  --with-random=/dev/urandom \
-  --with-ca-bundle=/etc/ssl/certs/ca-certificates.crt
-
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  make DESTDIR=$pkgdir install
-
-  local ptrsize=$(cpp '__SIZEOF_POINTER__' | sed '/^#/d')
-  case $ptrsize in
-8) _curlbuild=curlbuild-64.h ;;
-4) _curlbuild=curlbuild-32.h ;;
-*) error unknown pointer size for architecture: %s bytes $ptrsize
-  exit 1
-  ;;
-  esac
-
-  # license
-  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
-
-  # devel
-  mv $pkgdir/usr/include/curl/curlbuild.h 
$pkgdir/usr/include/curl/$_curlbuild
-  install -m644 $srcdir/curlbuild.h $pkgdir/usr/include/curl/curlbuild.h
-}

Copied: curl/repos/testing-i686/PKGBUILD (from rev 241436, curl/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-06-30 14:38:16 UTC (rev 241437)
@@ -0,0 +1,70 @@
+# $Id$
+# Maintainer: Dave Reisner dreis...@archlinux.org
+# Contributor: Angel Velasquez an...@archlinux.org
+# Contributor: Eric Belanger e...@archlinux.org
+# Contributor: Lucien Immink l.imm...@student.fnt.hvu.nl
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+
+pkgname=curl
+pkgver=7.43.0
+pkgrel=2
+pkgdesc=An URL retrieval utility and library
+arch=('i686' 'x86_64')
+url=http://curl.haxx.se;
+license=('MIT')
+depends=('ca-certificates' 'krb5' 'libssh2' 'openssl' 'zlib')
+provides=('libcurl.so')
+options=('strip' 'debug')
+source=(http://curl.haxx.se/download/$pkgname-$pkgver.tar.gz{,.asc}
+curlbuild.h)
+md5sums=('3037f0b6ce03d434618e9db5506ae6be'
+ 'SKIP'
+ '751bd433ede935c8fae727377625a8ae')
+validpgpkeys=('914C533DF9B2ADA2204F586D78E11C6B279D5C91')  # Daniel Stenberg
+
+build() {
+  cd $pkgname-$pkgver
+
+  # Consider re-adding libidn support once upstream security issues are
+  # resolved. As of version 1.30, it does not handle bad utf-8 properly.
+  # http://curl.haxx.se/mail/lib-2015-06/0143.html
+  # https://lists.gnu.org/archive/html/bug-wget/2015-06/msg2.html
+
+  ./configure \
+  --prefix=/usr \
+  --mandir=/usr/share/man \
+  --disable-ldap \
+  --disable-ldaps \
+  --enable-ipv6 \
+  --enable-manual \
+  --enable-versioned-symbols \
+  --enable-threaded-resolver \
+  --with-gssapi \
+  --without-libidn \
+  --with-random=/dev/urandom \
+  

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

2015-06-30 Thread Dave Reisner
Date: Tuesday, June 30, 2015 @ 16:18:45
  Author: dreisner
Revision: 241436

upgpkg: curl 7.43.0-2

- drop libidn for now
ref: http://curl.haxx.se/mail/lib-2015-06/0143.html

Modified:
  curl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-30 14:14:16 UTC (rev 241435)
+++ PKGBUILD2015-06-30 14:18:45 UTC (rev 241436)
@@ -7,12 +7,12 @@
 
 pkgname=curl
 pkgver=7.43.0
-pkgrel=1
+pkgrel=2
 pkgdesc=An URL retrieval utility and library
 arch=('i686' 'x86_64')
 url=http://curl.haxx.se;
 license=('MIT')
-depends=('ca-certificates' 'krb5' 'libssh2' 'libidn' 'openssl' 'zlib')
+depends=('ca-certificates' 'krb5' 'libssh2' 'openssl' 'zlib')
 provides=('libcurl.so')
 options=('strip' 'debug')
 source=(http://curl.haxx.se/download/$pkgname-$pkgver.tar.gz{,.asc}
@@ -25,6 +25,11 @@
 build() {
   cd $pkgname-$pkgver
 
+  # Consider re-adding libidn support once upstream security issues are
+  # resolved. As of version 1.30, it does not handle bad utf-8 properly.
+  # http://curl.haxx.se/mail/lib-2015-06/0143.html
+  # https://lists.gnu.org/archive/html/bug-wget/2015-06/msg2.html
+
   ./configure \
   --prefix=/usr \
   --mandir=/usr/share/man \
@@ -35,7 +40,7 @@
   --enable-versioned-symbols \
   --enable-threaded-resolver \
   --with-gssapi \
-  --with-libidn \
+  --without-libidn \
   --with-random=/dev/urandom \
   --with-ca-bundle=/etc/ssl/certs/ca-certificates.crt
 


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

2015-06-30 Thread Jonathan Steel
Date: Tuesday, June 30, 2015 @ 19:15:44
  Author: jsteel
Revision: 136165

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-06-30 17:15:27 UTC (rev 136164)
+++ community-i686/PKGBUILD 2015-06-30 17:15:44 UTC (rev 136165)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Jonathan Steel jsteel at archlinux.org
-# Contributor: Greg Sutcliffe facter_aur (at) emeraldreverie.orgr
-# Contributor: Hyacinthe Cartiaux hyacinthe.carti...@free.fr
-# Contributor: Thomas S Hatch thatch45 (at) Gmail.com
-# Contributor: Dave Simons miouhpi (at) Gmail (dot) com
-# Contributor: Niels Abspoel aboe76 (at) Gmail (dot) com
-
-pkgname=facter
-pkgver=3.0.0
-pkgrel=1
-pkgdesc=Collect and display system facts
-arch=('i686' 'x86_64')
-url=http://puppetlabs.com/facter;
-license=('APACHE')
-depends=('ruby' 'yaml-cpp' 'boost-libs' 'curl')
-makedepends=('boost' 'cmake')
-replaces=('cfacter')
-source=(http://downloads.puppetlabs.com/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('a7015bb0f4919b8d709cace19ae84278')
-
-build() {
-  cd $pkgname-$pkgver
-
-  cmake -DCMAKE_INSTALL_PREFIX=/usr
-
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  make install DESTDIR=$pkgdir
-
-  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}

Copied: facter/repos/community-i686/PKGBUILD (from rev 136164, 
facter/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-06-30 17:15:44 UTC (rev 136165)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Jonathan Steel jsteel at archlinux.org
+# Contributor: Greg Sutcliffe facter_aur (at) emeraldreverie.orgr
+# Contributor: Hyacinthe Cartiaux hyacinthe.carti...@free.fr
+# Contributor: Thomas S Hatch thatch45 (at) Gmail.com
+# Contributor: Dave Simons miouhpi (at) Gmail (dot) com
+# Contributor: Niels Abspoel aboe76 (at) Gmail (dot) com
+
+pkgname=facter
+pkgver=3.0.1
+pkgrel=1
+pkgdesc=Collect and display system facts
+arch=('i686' 'x86_64')
+url=http://puppetlabs.com/facter;
+license=('APACHE')
+depends=('ruby' 'yaml-cpp' 'boost-libs' 'curl')
+makedepends=('boost' 'cmake')
+replaces=('cfacter')
+source=(http://downloads.puppetlabs.com/$pkgname/$pkgname-$pkgver.tar.gz)
+md5sums=('c5ce03ec246c10a0694dea397c59bc1f')
+
+build() {
+  cd $pkgname-$pkgver
+
+  cmake -DCMAKE_INSTALL_PREFIX=/usr
+
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make install DESTDIR=$pkgdir
+
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-06-30 17:15:27 UTC (rev 136164)
+++ community-x86_64/PKGBUILD   2015-06-30 17:15:44 UTC (rev 136165)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Jonathan Steel jsteel at archlinux.org
-# Contributor: Greg Sutcliffe facter_aur (at) emeraldreverie.orgr
-# Contributor: Hyacinthe Cartiaux hyacinthe.carti...@free.fr
-# Contributor: Thomas S Hatch thatch45 (at) Gmail.com
-# Contributor: Dave Simons miouhpi (at) Gmail (dot) com
-# Contributor: Niels Abspoel aboe76 (at) Gmail (dot) com
-
-pkgname=facter
-pkgver=3.0.0
-pkgrel=1
-pkgdesc=Collect and display system facts
-arch=('i686' 'x86_64')
-url=http://puppetlabs.com/facter;
-license=('APACHE')
-depends=('ruby' 'yaml-cpp' 'boost-libs' 'curl')
-makedepends=('boost' 'cmake')
-replaces=('cfacter')
-source=(http://downloads.puppetlabs.com/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('a7015bb0f4919b8d709cace19ae84278')
-
-build() {
-  cd $pkgname-$pkgver
-
-  cmake -DCMAKE_INSTALL_PREFIX=/usr
-
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  make install DESTDIR=$pkgdir
-
-  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}

Copied: facter/repos/community-x86_64/PKGBUILD (from rev 136164, 
facter/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-06-30 17:15:44 UTC (rev 136165)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Jonathan Steel jsteel at archlinux.org
+# Contributor: Greg Sutcliffe facter_aur (at) emeraldreverie.orgr
+# Contributor: Hyacinthe Cartiaux hyacinthe.carti...@free.fr
+# Contributor: Thomas S Hatch thatch45 (at) 

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

2015-06-30 Thread Antonio Rojas
Date: Tuesday, June 30, 2015 @ 19:40:25
  Author: arojas
Revision: 241446

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

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

+
 /PKGBUILD  |   80 +++
 /baloo.install |   22 +++
 extra-i686/PKGBUILD|   40 -
 extra-i686/baloo.install   |   11 -
 extra-x86_64/PKGBUILD  |   40 -
 extra-x86_64/baloo.install |   11 -
 6 files changed, 102 insertions(+), 102 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-06-30 17:40:10 UTC (rev 241445)
+++ extra-i686/PKGBUILD 2015-06-30 17:40:25 UTC (rev 241446)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-
-pkgname=baloo
-pkgver=5.9.1
-_pkgver=5.3.1
-pkgrel=1
-pkgdesc=A framework for searching and managing metadata
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/kdelibs/baloo'
-license=('LGPL')
-depends=('xapian-core' 'kfilemetadata' 'kidletime' 'kdelibs4support')
-makedepends=('extra-cmake-modules' 'kdoctools' 'python')
-conflicts=('baloo-frameworks')
-replaces=('baloo-frameworks')
-provides=('baloo-frameworks')
-install=${pkgname}.install
-source=(http://download.kde.org/stable/plasma/${_pkgver}/$pkgname-$pkgver.tar.xz;)
-md5sums=('4a11a664e65325bf1b76ee1e9f8ad1b7')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DLIB_INSTALL_DIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=${pkgdir} install
-}

Copied: baloo/repos/extra-i686/PKGBUILD (from rev 241445, baloo/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-06-30 17:40:25 UTC (rev 241446)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+
+pkgname=baloo
+pkgver=5.9.2
+_pkgver=5.3.2
+pkgrel=1
+pkgdesc=A framework for searching and managing metadata
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/kdelibs/baloo'
+license=('LGPL')
+depends=('xapian-core' 'kfilemetadata' 'kidletime' 'kdelibs4support')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+conflicts=('baloo-frameworks')
+replaces=('baloo-frameworks')
+provides=('baloo-frameworks')
+install=${pkgname}.install
+source=(http://download.kde.org/stable/plasma/${_pkgver}/$pkgname-$pkgver.tar.xz;)
+md5sums=('2fb26fe7937565d3c8d54a11ee8b21a5')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-i686/baloo.install
===
--- extra-i686/baloo.install2015-06-30 17:40:10 UTC (rev 241445)
+++ extra-i686/baloo.install2015-06-30 17:40:25 UTC (rev 241446)
@@ -1,11 +0,0 @@
-post_install() {
-[[ -x xdg-icon-resource ]]  xdg-icon-resource forceupdate --theme 
hicolor  /dev/null || true
-}
-
-post_upgrade() {
-post_install
-}
-
-post_remove() {
-post_install
-}

Copied: baloo/repos/extra-i686/baloo.install (from rev 241445, 
baloo/trunk/baloo.install)
===
--- extra-i686/baloo.install(rev 0)
+++ extra-i686/baloo.install2015-06-30 17:40:25 UTC (rev 241446)
@@ -0,0 +1,11 @@
+post_install() {
+[[ -x xdg-icon-resource ]]  xdg-icon-resource forceupdate --theme 
hicolor  /dev/null || true
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-06-30 17:40:10 UTC (rev 241445)
+++ extra-x86_64/PKGBUILD   2015-06-30 17:40:25 UTC (rev 241446)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-
-pkgname=baloo
-pkgver=5.9.1

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

2015-06-30 Thread Antonio Rojas
Date: Tuesday, June 30, 2015 @ 19:40:42
  Author: arojas
Revision: 241447

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

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

---+
 /PKGBUILD |  166 
 extra-i686/PKGBUILD   |   82 ---
 extra-x86_64/PKGBUILD |   82 ---
 3 files changed, 166 insertions(+), 164 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-06-30 17:40:25 UTC (rev 241446)
+++ extra-i686/PKGBUILD 2015-06-30 17:40:42 UTC (rev 241447)
@@ -1,82 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Antonio Rojas
-
-pkgbase=breeze
-pkgname=('breeze' 'breeze-icons' 'breeze-kde4')
-pkgver=5.3.1
-pkgrel=2
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/workspace/breeze'
-license=('LGPL')
-makedepends=('extra-cmake-modules' 'frameworkintegration' 'kdelibs'
- 'automoc4' 'kdecoration' 'kcmutils')
-source=(http://download.kde.org/stable/plasma/${pkgver}/$pkgbase-$pkgver.tar.xz;)
-md5sums=('343dee76ac0652a18007d10e7dbc7d29')
-
-prepare() {
-  mkdir build{,-kde4}
-}
-
-build() {
-  cd build
-  cmake ../${pkgbase}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DLIB_INSTALL_DIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-
-  cd ../build-kde4
-  cmake ../${pkgbase}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DUSE_KDE4=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package_breeze() {
-  depends=('frameworkintegration' 'kdecoration' 'breeze-icons')
-  pkgdesc='Artwork, styles and assets for the Breeze visual style for the 
Plasma Desktop'
-  optdepends=('breeze-kde4: Breeze widget style for KDE4 applications'
-   'gtk-theme-orion: GTK theme matching Breeze'
-   'kcmutils: for breeze-settings')
-  groups=('plasma')
-
-  cd build
-  make DESTDIR=$pkgdir install
-
-  # split off icons
-  rm -r $pkgdir/usr/share/icons/{breeze,breeze-dark}
-
-  # make QtCurve preset and color scheme available for KDE4 too
-  install -d $pkgdir/usr/share/apps/{QtCurve,color-schemes}
-  ln -s /usr/share/QtCurve/Breeze.qtcurve $pkgdir/usr/share/apps/QtCurve/
-  ln -s /usr/share/color-schemes/Breeze{,Dark}.colors 
$pkgdir/usr/share/apps/color-schemes/
-}
-
-package_breeze-icons() {
-  pkgdesc='Breeze icon themes for KDE Plasma'
-  optdepends=('oxygen-icons: fallback icon theme')
-  
-  cd build/icons
-  make DESTDIR=$pkgdir install
-
-  cd ../icons-dark
-  make DESTDIR=$pkgdir install
-}
-
-package_breeze-kde4() {
-  pkgdesc='Artwork, styles and assets for the Breeze visual style for the KDE4'
-  depends=('kdelibs')
-
-  cd build-kde4
-  make DESTDIR=$pkgdir install
-
-  # needed for pure Qt4 apps
-  install -d $pkgdir/usr/lib/qt4/plugins/styles
-  ln -s /usr/lib/kde4/plugins/styles/breeze.so 
$pkgdir/usr/lib/qt4/plugins/styles
-}

Copied: breeze/repos/extra-i686/PKGBUILD (from rev 241446, 
breeze/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-06-30 17:40:42 UTC (rev 241447)
@@ -0,0 +1,83 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Antonio Rojas
+
+pkgbase=breeze
+pkgname=('breeze' 'breeze-icons' 'breeze-kde4')
+pkgver=5.3.2
+pkgrel=1
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/workspace/breeze'
+license=('LGPL')
+makedepends=('extra-cmake-modules' 'frameworkintegration' 'kdelibs'
+ 'automoc4' 'kdecoration' 'kcmutils')
+source=(http://download.kde.org/stable/plasma/${pkgver}/$pkgbase-$pkgver.tar.xz;)
+md5sums=('09e3f4753b5b00e8d3951dffc77996f8')
+
+prepare() {
+  mkdir build{,-kde4}
+}
+
+build() {
+  cd build
+  cmake ../${pkgbase}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+
+  cd ../build-kde4
+  cmake ../${pkgbase}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DUSE_KDE4=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package_breeze() {
+  depends=('frameworkintegration' 'kdecoration' 'breeze-icons')
+  pkgdesc='Artwork, styles and assets for the Breeze visual style for the 
Plasma Desktop'
+  optdepends=('breeze-kde4: Breeze widget style for KDE4 applications'
+   'gtk-theme-orion: GTK theme matching Breeze'
+   'kcmutils: for 

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

2015-06-30 Thread Anatol Pomozov
Date: Tuesday, June 30, 2015 @ 20:20:32
  Author: anatolik
Revision: 241474

upgpkg: elfutils 0.163-1

Modified:
  elfutils/trunk/PKGBUILD
Deleted:
  elfutils/trunk/0001-tests-Make-deleted-and-vdsosyms-testcases-work-with-.patch
  elfutils/trunk/CVE-2014-9447.patch

-+
 0001-tests-Make-deleted-and-vdsosyms-testcases-work-with-.patch |   63 
--
 CVE-2014-9447.patch |   53 
 PKGBUILD|   23 ---
 3 files changed, 5 insertions(+), 134 deletions(-)

Deleted: 0001-tests-Make-deleted-and-vdsosyms-testcases-work-with-.patch
===
--- 0001-tests-Make-deleted-and-vdsosyms-testcases-work-with-.patch 
2015-06-30 17:47:33 UTC (rev 241473)
+++ 0001-tests-Make-deleted-and-vdsosyms-testcases-work-with-.patch 
2015-06-30 18:20:32 UTC (rev 241474)
@@ -1,63 +0,0 @@
-From 224e6776cfe6fc23a207cd05bf75b1e3548853a0 Mon Sep 17 00:00:00 2001
-From: Mark Wielaard m...@redhat.com
-Date: Thu, 15 Jan 2015 13:39:06 +0100
-Subject: [PATCH] tests: Make deleted and vdsosyms testcases work with
- restricted ptrace.
-
-Some systems might have restricted ptrace that doesn't allow process
-inspection of arbitrary processes. Change the deleted testcase to
-explicitly allow any other process to inspect it using the PR_SET_PTRACER
-prctl set to PR_SET_PTRACER_ANY. Change the vdsosyms testcase to inspect
-the process itself which should always be allowed.
-
-Reported-by: Anatol Pomozov anatol.pomo...@gmail.com
-Signed-off-by: Mark Wielaard m...@redhat.com

- tests/ChangeLog  | 5 +
- tests/deleted.c  | 6 ++
- tests/vdsosyms.c | 5 +++--
- 3 files changed, 14 insertions(+), 2 deletions(-)
-
-diff --git a/tests/deleted.c b/tests/deleted.c
-index 32a310b..d071bf7 100644
 a/tests/deleted.c
-+++ b/tests/deleted.c
-@@ -23,6 +23,7 @@
- #include stdio.h
- #include error.h
- #include errno.h
-+#include sys/prctl.h
- 
- extern void libfunc (void);
- 
-@@ -42,6 +43,11 @@ main (int argc __attribute__ ((unused)), char **argv 
__attribute__ ((unused)))
-   assert (!err);
-   err = close (2);
-   assert (!err);
-+  /* Make sure eu-stack -p works on this process even with
-+   restricted ptrace.  */
-+#ifdef PR_SET_PTRACER_ANY
-+  prctl(PR_SET_PTRACER, PR_SET_PTRACER_ANY, 0, 0, 0);
-+#endif
-   libfunc ();
-   abort ();
- }
-diff --git a/tests/vdsosyms.c b/tests/vdsosyms.c
-index c1f8d89..4f12b9a 100644
 a/tests/vdsosyms.c
-+++ b/tests/vdsosyms.c
-@@ -80,8 +80,9 @@ main (int argc __attribute__ ((unused)), char **argv 
__attribute__ ((unused)))
-   if (dwfl == NULL)
- error (2, 0, dwfl_begin: %s, dwfl_errmsg (-1));
- 
--  /* Take our parent as arbitrary process to inspect.  */
--  pid_t pid = getppid();
-+  /* Take ourself as arbitrary process to inspect.  This should work
-+ even with restricted ptrace.  */
-+  pid_t pid = getpid();
- 
-   int result = dwfl_linux_proc_report (dwfl, pid);
-   if (result  0)
--- 
-1.8.3.1
-

Deleted: CVE-2014-9447.patch
===
--- CVE-2014-9447.patch 2015-06-30 17:47:33 UTC (rev 241473)
+++ CVE-2014-9447.patch 2015-06-30 18:20:32 UTC (rev 241474)
@@ -1,53 +0,0 @@
-From 147018e729e7c22eeabf15b82d26e4bf68a0d18e Mon Sep 17 00:00:00 2001
-From: Alexander Cherepanov chere...@mccme.ru
-Date: Sun, 28 Dec 2014 19:57:19 +0300
-Subject: libelf: Fix dir traversal vuln in ar extraction.
-
-read_long_names terminates names at the first '/' found but then skips
-one character without checking (it's supposed to be '\n'). Hence the
-next name could start with any character including '/'. This leads to
-a directory traversal vulnerability at the time the contents of the
-archive is extracted.
-
-The danger is mitigated by the fact that only one '/' is possible in a
-resulting filename and only in the leading position. Hence only files
-in the root directory can be written via this vuln and only when ar is
-executed as root.
-
-The fix for the vuln is to not skip any characters while looking
-for '/'.
-
-Signed-off-by: Alexander Cherepanov chere...@mccme.ru
-
-diff --git a/libelf/ChangeLog b/libelf/ChangeLog
-index 3b88d03..447c354 100644
 a/libelf/ChangeLog
-+++ b/libelf/ChangeLog
-@@ -1,3 +1,8 @@
-+2014-12-28  Alexander Cherepanov  chere...@mccme.ru
-+
-+  * elf_begin.c (read_long_names): Don't miss '/' right after
-+  another '/'. Fixes a dir traversal vuln in ar extraction.
-+
- 2014-12-18  Ulrich Drepper  drep...@gmail.com
- 
-   * Makefile.am: Suppress output of textrel_check command.
-diff --git a/libelf/elf_begin.c b/libelf/elf_begin.c
-index 30abe0b..cd3756c 100644
 a/libelf/elf_begin.c
-+++ b/libelf/elf_begin.c
-@@ -749,10 +749,7 @@ read_long_names (Elf *elf)
-   }
- 
- /* NUL-terminate the string.  */
--*runp = '\0';
--
--   

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

2015-06-30 Thread Anatol Pomozov
Date: Tuesday, June 30, 2015 @ 20:21:07
  Author: anatolik
Revision: 241475

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

Added:
  elfutils/repos/testing-i686/
  elfutils/repos/testing-i686/PKGBUILD
(from rev 241474, elfutils/trunk/PKGBUILD)
  elfutils/repos/testing-x86_64/
  elfutils/repos/testing-x86_64/PKGBUILD
(from rev 241474, elfutils/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   38 ++
 testing-x86_64/PKGBUILD |   38 ++
 2 files changed, 76 insertions(+)

Copied: elfutils/repos/testing-i686/PKGBUILD (from rev 241474, 
elfutils/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-06-30 18:21:07 UTC (rev 241475)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault steph...@archlinux.org
+# Contributor: Andrej Gelenberg andrej.gelenb...@udo.edu
+
+pkgname=elfutils
+pkgver=0.163
+pkgrel=1
+pkgdesc=Libraries and utilities to handle ELF object files and DWARF 
debugging information
+arch=('i686' 'x86_64')
+url=https://fedorahosted.org/elfutils/;
+license=('LGPL3' 'GPL' 'GPL3')
+depends=('gcc-libs' 'zlib' 'bzip2' 'xz')
+source=(https://fedorahosted.org/releases/e/l/elfutils/${pkgver}/elfutils-${pkgver}.tar.bz2{,.sig})
+options=('staticlibs')
+sha1sums=('7931b4961364a8a17c708138c70c552ae2881227'
+  'SKIP')
+validpgpkeys=('47CC0331081B8BC6D0FD4DA08370665B57816A6A')  # Mark J. Wielaard 
m...@klomp.org
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  CFLAGS+= -g  # required for test-suite success
+  ./configure --prefix=/usr --program-prefix=eu-
+
+  make
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+
+  make check
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+
+  make DESTDIR=${pkgdir} install
+}

Copied: elfutils/repos/testing-x86_64/PKGBUILD (from rev 241474, 
elfutils/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2015-06-30 18:21:07 UTC (rev 241475)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault steph...@archlinux.org
+# Contributor: Andrej Gelenberg andrej.gelenb...@udo.edu
+
+pkgname=elfutils
+pkgver=0.163
+pkgrel=1
+pkgdesc=Libraries and utilities to handle ELF object files and DWARF 
debugging information
+arch=('i686' 'x86_64')
+url=https://fedorahosted.org/elfutils/;
+license=('LGPL3' 'GPL' 'GPL3')
+depends=('gcc-libs' 'zlib' 'bzip2' 'xz')
+source=(https://fedorahosted.org/releases/e/l/elfutils/${pkgver}/elfutils-${pkgver}.tar.bz2{,.sig})
+options=('staticlibs')
+sha1sums=('7931b4961364a8a17c708138c70c552ae2881227'
+  'SKIP')
+validpgpkeys=('47CC0331081B8BC6D0FD4DA08370665B57816A6A')  # Mark J. Wielaard 
m...@klomp.org
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  CFLAGS+= -g  # required for test-suite success
+  ./configure --prefix=/usr --program-prefix=eu-
+
+  make
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+
+  make check
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+
+  make DESTDIR=${pkgdir} install
+}


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

2015-06-30 Thread Antonio Rojas
Date: Tuesday, June 30, 2015 @ 19:43:38
  Author: arojas
Revision: 241458

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

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

+
 /PKGBUILD  |   78 +++
 /kmenuedit.install |   24 
 extra-i686/PKGBUILD|   39 ---
 extra-i686/kmenuedit.install   |   12 --
 extra-x86_64/PKGBUILD  |   39 ---
 extra-x86_64/kmenuedit.install |   12 --
 6 files changed, 102 insertions(+), 102 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-06-30 17:43:23 UTC (rev 241457)
+++ extra-i686/PKGBUILD 2015-06-30 17:43:38 UTC (rev 241458)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Antonio Rojas
-
-pkgname=kmenuedit
-pkgver=5.3.1
-pkgrel=1
-pkgdesc='KDE menu editor'
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/workspace/kmenuedit'
-license=('LGPL')
-depends=('khotkeys')
-groups=('plasma')
-makedepends=('extra-cmake-modules' 'kdoctools' 'python')
-conflicts=('kdebase-workspace')
-install=${pkgname}.install
-source=(http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz;)
-md5sums=('336074bc605732390d9dce13543d6ee9')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DLIB_INSTALL_DIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=${pkgdir} install
-}

Copied: kmenuedit/repos/extra-i686/PKGBUILD (from rev 241457, 
kmenuedit/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-06-30 17:43:38 UTC (rev 241458)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Antonio Rojas
+
+pkgname=kmenuedit
+pkgver=5.3.2
+pkgrel=1
+pkgdesc='KDE menu editor'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/workspace/kmenuedit'
+license=('LGPL')
+depends=('khotkeys')
+groups=('plasma')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+conflicts=('kdebase-workspace')
+install=${pkgname}.install
+source=(http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz;)
+md5sums=('0065caeaeeb1999aad81e5ab110d3bfc')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-i686/kmenuedit.install
===
--- extra-i686/kmenuedit.install2015-06-30 17:43:23 UTC (rev 241457)
+++ extra-i686/kmenuedit.install2015-06-30 17:43:38 UTC (rev 241458)
@@ -1,12 +0,0 @@
-post_install() {
-xdg-icon-resource forceupdate --theme hicolor  /dev/null
-}
-
-post_upgrade() {
-post_install
-}
-
-post_remove() {
-post_install
-}
-

Copied: kmenuedit/repos/extra-i686/kmenuedit.install (from rev 241457, 
kmenuedit/trunk/kmenuedit.install)
===
--- extra-i686/kmenuedit.install(rev 0)
+++ extra-i686/kmenuedit.install2015-06-30 17:43:38 UTC (rev 241458)
@@ -0,0 +1,12 @@
+post_install() {
+xdg-icon-resource forceupdate --theme hicolor  /dev/null
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}
+

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-06-30 17:43:23 UTC (rev 241457)
+++ extra-x86_64/PKGBUILD   2015-06-30 17:43:38 UTC (rev 241458)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Antonio Rojas
-
-pkgname=kmenuedit
-pkgver=5.3.1
-pkgrel=1
-pkgdesc='KDE menu editor'
-arch=('i686' 'x86_64')

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

2015-06-30 Thread Antonio Rojas
Date: Tuesday, June 30, 2015 @ 19:43:23
  Author: arojas
Revision: 241457

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-06-30 17:43:08 UTC (rev 241456)
+++ extra-i686/PKGBUILD 2015-06-30 17:43:23 UTC (rev 241457)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Antonio Rojas
-
-pkgname=systemsettings
-pkgver=5.3.1
-pkgrel=1
-pkgdesc='KDE system settings'
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/workspace/systemsettings'
-license=('LGPL')
-depends=('kcmutils' 'khtml')
-makedepends=('extra-cmake-modules' 'kdoctools' 'python')
-conflicts=('kdebase-workspace')
-groups=('plasma')
-source=(http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz;)
-md5sums=('ebaa1d7e017cc208fa2fe62929d0791e')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DLIB_INSTALL_DIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=${pkgdir} install
-}

Copied: systemsettings/repos/extra-i686/PKGBUILD (from rev 241456, 
systemsettings/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-06-30 17:43:23 UTC (rev 241457)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Antonio Rojas
+
+pkgname=systemsettings
+pkgver=5.3.2
+pkgrel=1
+pkgdesc='KDE system settings'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/workspace/systemsettings'
+license=('LGPL')
+depends=('kcmutils' 'khtml')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+conflicts=('kdebase-workspace')
+groups=('plasma')
+source=(http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz;)
+md5sums=('7dc73643b9670e354101010701809565')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-06-30 17:43:08 UTC (rev 241456)
+++ extra-x86_64/PKGBUILD   2015-06-30 17:43:23 UTC (rev 241457)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Antonio Rojas
-
-pkgname=systemsettings
-pkgver=5.3.1
-pkgrel=1
-pkgdesc='KDE system settings'
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/workspace/systemsettings'
-license=('LGPL')
-depends=('kcmutils' 'khtml')
-makedepends=('extra-cmake-modules' 'kdoctools' 'python')
-conflicts=('kdebase-workspace')
-groups=('plasma')
-source=(http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz;)
-md5sums=('ebaa1d7e017cc208fa2fe62929d0791e')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DLIB_INSTALL_DIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=${pkgdir} install
-}

Copied: systemsettings/repos/extra-x86_64/PKGBUILD (from rev 241456, 
systemsettings/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2015-06-30 17:43:23 UTC (rev 241457)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Antonio Rojas
+
+pkgname=systemsettings
+pkgver=5.3.2
+pkgrel=1
+pkgdesc='KDE system settings'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/workspace/systemsettings'
+license=('LGPL')
+depends=('kcmutils' 'khtml')

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

2015-06-30 Thread Antonio Rojas
Date: Tuesday, June 30, 2015 @ 19:42:53
  Author: arojas
Revision: 241455

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

Added:
  kinfocenter/repos/extra-i686/PKGBUILD
(from rev 241454, kinfocenter/trunk/PKGBUILD)
  kinfocenter/repos/extra-i686/kcm-about-distrorc
(from rev 241454, kinfocenter/trunk/kcm-about-distrorc)
  kinfocenter/repos/extra-x86_64/PKGBUILD
(from rev 241454, kinfocenter/trunk/PKGBUILD)
  kinfocenter/repos/extra-x86_64/kcm-about-distrorc
(from rev 241454, kinfocenter/trunk/kcm-about-distrorc)
Deleted:
  kinfocenter/repos/extra-i686/PKGBUILD
  kinfocenter/repos/extra-i686/kcm-about-distrorc
  kinfocenter/repos/extra-x86_64/PKGBUILD
  kinfocenter/repos/extra-x86_64/kcm-about-distrorc

-+
 /PKGBUILD   |   90 ++
 /kcm-about-distrorc |4 +
 extra-i686/PKGBUILD |   45 ---
 extra-i686/kcm-about-distrorc   |2 
 extra-x86_64/PKGBUILD   |   45 ---
 extra-x86_64/kcm-about-distrorc |2 
 6 files changed, 94 insertions(+), 94 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-06-30 17:42:39 UTC (rev 241454)
+++ extra-i686/PKGBUILD 2015-06-30 17:42:53 UTC (rev 241455)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Antonio Rojas
-
-pkgname=kinfocenter
-pkgver=5.3.1
-pkgrel=1
-pkgdesc='A utility that provides information about a computer system'
-arch=('i686' 'x86_64')
-url='https://www.kde.org/applications/system/kinfocenter/'
-license=('LGPL')
-depends=('kdelibs4support' 'kcmutils' 'pciutils' 'glu' 'libraw1394' 'kwayland')
-makedepends=('extra-cmake-modules' 'kdoctools' 'python' 'plasma-framework')
-conflicts=('kdebase-workspace')
-groups=('plasma')
-source=(http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz;
 
-'archlinux-logo.svg::https://sources.archlinux.org/other/artwork/archlinux-logo-dark-scalable.svg'
 'kcm-about-distrorc')
-md5sums=('571e4fb927ed7038c970eabce41426d3'
- '518881f04ca9d4bd8526008767e40ba7'
- '4b4e2496ea1de3a09de501b5d508f666')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DLIB_INSTALL_DIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=${pkgdir} install
-
-# Install Arch logo
-  install -Dm644 $srcdir/archlinux-logo.svg 
$pkgdir/usr/share/about-distro/archlinux-logo.svg
-  install -Dm644 $srcdir/kcm-about-distrorc 
$pkgdir/etc/xdg/kcm-about-distrorc
-}

Copied: kinfocenter/repos/extra-i686/PKGBUILD (from rev 241454, 
kinfocenter/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-06-30 17:42:53 UTC (rev 241455)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Antonio Rojas
+
+pkgname=kinfocenter
+pkgver=5.3.2
+pkgrel=1
+pkgdesc='A utility that provides information about a computer system'
+arch=('i686' 'x86_64')
+url='https://www.kde.org/applications/system/kinfocenter/'
+license=('LGPL')
+depends=('kdelibs4support' 'kcmutils' 'pciutils' 'glu' 'libraw1394' 'kwayland')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python' 'plasma-framework')
+conflicts=('kdebase-workspace')
+groups=('plasma')
+source=(http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz;
 
+'archlinux-logo.svg::https://sources.archlinux.org/other/artwork/archlinux-logo-dark-scalable.svg'
 'kcm-about-distrorc')
+md5sums=('baf95f4bd09e886f3d25b5f2799cf2d8'
+ '518881f04ca9d4bd8526008767e40ba7'
+ '4b4e2496ea1de3a09de501b5d508f666')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+
+# Install Arch logo
+  install -Dm644 $srcdir/archlinux-logo.svg 
$pkgdir/usr/share/about-distro/archlinux-logo.svg
+  install -Dm644 $srcdir/kcm-about-distrorc 
$pkgdir/etc/xdg/kcm-about-distrorc
+}

Deleted: extra-i686/kcm-about-distrorc
===
--- extra-i686/kcm-about-distrorc   2015-06-30 17:42:39 UTC (rev 241454)
+++ extra-i686/kcm-about-distrorc   2015-06-30 17:42:53 UTC (rev 241455)
@@ -1,2 +0,0 @@
-[General]
-LogoPath=/usr/share/about-distro/archlinux-logo.svg

Copied: kinfocenter/repos/extra-i686/kcm-about-distrorc (from rev 241454, 

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

2015-06-30 Thread Antonio Rojas
Date: Tuesday, June 30, 2015 @ 19:43:08
  Author: arojas
Revision: 241456

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

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

+
 /PKGBUILD  |   80 +++
 /ksysguard.install |   24 +++
 extra-i686/PKGBUILD|   40 ---
 extra-i686/ksysguard.install   |   12 -
 extra-x86_64/PKGBUILD  |   40 ---
 extra-x86_64/ksysguard.install |   12 -
 6 files changed, 104 insertions(+), 104 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-06-30 17:42:53 UTC (rev 241455)
+++ extra-i686/PKGBUILD 2015-06-30 17:43:08 UTC (rev 241456)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Antonio Rojas
-
-pkgname=ksysguard
-pkgver=5.3.1
-pkgrel=1
-pkgdesc='Track and control the processes running in your system'
-arch=('i686' 'x86_64')
-url='https://userbase.kde.org/KSysGuard'
-license=('LGPL')
-depends=('knewstuff' 'libksysguard' 'lm_sensors' 'xdg-utils'
- 'hicolor-icon-theme' 'kdelibs4support')
-makedepends=('extra-cmake-modules' 'kdoctools' 'python')
-conflicts=('kdebase-workspace')
-groups=('plasma')
-install=${pkgname}.install
-source=(http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz;)
-md5sums=('401828c241fd6e15e3032dcde4a3d421')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DLIB_INSTALL_DIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=${pkgdir} install
-}

Copied: ksysguard/repos/extra-i686/PKGBUILD (from rev 241455, 
ksysguard/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-06-30 17:43:08 UTC (rev 241456)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Antonio Rojas
+
+pkgname=ksysguard
+pkgver=5.3.2
+pkgrel=1
+pkgdesc='Track and control the processes running in your system'
+arch=('i686' 'x86_64')
+url='https://userbase.kde.org/KSysGuard'
+license=('LGPL')
+depends=('knewstuff' 'libksysguard' 'lm_sensors' 'xdg-utils'
+ 'hicolor-icon-theme' 'kdelibs4support')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+conflicts=('kdebase-workspace')
+groups=('plasma')
+install=${pkgname}.install
+source=(http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz;)
+md5sums=('8046d2ce21f96aa9e99a2e7904875f12')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-i686/ksysguard.install
===
--- extra-i686/ksysguard.install2015-06-30 17:42:53 UTC (rev 241455)
+++ extra-i686/ksysguard.install2015-06-30 17:43:08 UTC (rev 241456)
@@ -1,12 +0,0 @@
-post_install() {
-xdg-icon-resource forceupdate --theme hicolor  /dev/null
-update-desktop-database -q
-}
-
-post_upgrade() {
-post_install
-}
-
-post_remove() {
-post_install
-}

Copied: ksysguard/repos/extra-i686/ksysguard.install (from rev 241455, 
ksysguard/trunk/ksysguard.install)
===
--- extra-i686/ksysguard.install(rev 0)
+++ extra-i686/ksysguard.install2015-06-30 17:43:08 UTC (rev 241456)
@@ -0,0 +1,12 @@
+post_install() {
+xdg-icon-resource forceupdate --theme hicolor  /dev/null
+update-desktop-database -q
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-06-30 17:42:53 UTC (rev 241455)
+++ extra-x86_64/PKGBUILD   2015-06-30 17:43:08 UTC 

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

2015-06-30 Thread Jonathan Steel
Date: Tuesday, June 30, 2015 @ 19:15:27
  Author: jsteel
Revision: 136164

upgpkg: facter 3.0.1-1

Modified:
  facter/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-30 15:46:57 UTC (rev 136163)
+++ PKGBUILD2015-06-30 17:15:27 UTC (rev 136164)
@@ -7,7 +7,7 @@
 # Contributor: Niels Abspoel aboe76 (at) Gmail (dot) com
 
 pkgname=facter
-pkgver=3.0.0
+pkgver=3.0.1
 pkgrel=1
 pkgdesc=Collect and display system facts
 arch=('i686' 'x86_64')
@@ -17,7 +17,7 @@
 makedepends=('boost' 'cmake')
 replaces=('cfacter')
 source=(http://downloads.puppetlabs.com/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('a7015bb0f4919b8d709cace19ae84278')
+md5sums=('c5ce03ec246c10a0694dea397c59bc1f')
 
 build() {
   cd $pkgname-$pkgver


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

2015-06-30 Thread Antonio Rojas
Date: Tuesday, June 30, 2015 @ 19:41:51
  Author: arojas
Revision: 241451

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-06-30 17:41:35 UTC (rev 241450)
+++ extra-i686/PKGBUILD 2015-06-30 17:41:51 UTC (rev 241451)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Antonio Rojas aro...@archlinux.org
-
-pkgname=libkscreen
-pkgver=5.3.1
-pkgrel=1
-pkgdesc='KDE screen management software'
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/extragear/libs/libkscreen'
-license=('LGPL')
-depends=('qt5-x11extras' 'libxrandr')
-makedepends=('extra-cmake-modules')
-conflicts=('libkscreen-frameworks')
-replaces=('libkscreen-frameworks')
-provides=('libkscreen-frameworks')
-source=(http://download.kde.org/stable/plasma/${pkgver}/libkscreen-$pkgver.tar.xz;)
-md5sums=('c5969c94320013740c67fe129bbea4c4')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../libkscreen-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DLIB_INSTALL_DIR=lib \
--DLIBEXEC_INSTALL_DIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=${pkgdir} install
-}

Copied: libkscreen/repos/extra-i686/PKGBUILD (from rev 241450, 
libkscreen/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-06-30 17:41:51 UTC (rev 241451)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Antonio Rojas aro...@archlinux.org
+
+pkgname=libkscreen
+pkgver=5.3.2
+pkgrel=1
+pkgdesc='KDE screen management software'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/extragear/libs/libkscreen'
+license=('LGPL')
+depends=('qt5-x11extras' 'libxrandr')
+makedepends=('extra-cmake-modules')
+conflicts=('libkscreen-frameworks')
+replaces=('libkscreen-frameworks')
+provides=('libkscreen-frameworks')
+source=(http://download.kde.org/stable/plasma/${pkgver}/libkscreen-$pkgver.tar.xz;)
+md5sums=('4960b3203462eb5c394b047a5b3ec467')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../libkscreen-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DLIBEXEC_INSTALL_DIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-06-30 17:41:35 UTC (rev 241450)
+++ extra-x86_64/PKGBUILD   2015-06-30 17:41:51 UTC (rev 241451)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Antonio Rojas aro...@archlinux.org
-
-pkgname=libkscreen
-pkgver=5.3.1
-pkgrel=1
-pkgdesc='KDE screen management software'
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/extragear/libs/libkscreen'
-license=('LGPL')
-depends=('qt5-x11extras' 'libxrandr')
-makedepends=('extra-cmake-modules')
-conflicts=('libkscreen-frameworks')
-replaces=('libkscreen-frameworks')
-provides=('libkscreen-frameworks')
-source=(http://download.kde.org/stable/plasma/${pkgver}/libkscreen-$pkgver.tar.xz;)
-md5sums=('c5969c94320013740c67fe129bbea4c4')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../libkscreen-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DLIB_INSTALL_DIR=lib \
--DLIBEXEC_INSTALL_DIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=${pkgdir} install
-}

Copied: libkscreen/repos/extra-x86_64/PKGBUILD (from rev 241450, 
libkscreen/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2015-06-30 17:41:51 UTC (rev 241451)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino 

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

2015-06-30 Thread Antonio Rojas
Date: Tuesday, June 30, 2015 @ 19:41:35
  Author: arojas
Revision: 241450

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-06-30 17:41:19 UTC (rev 241449)
+++ extra-i686/PKGBUILD 2015-06-30 17:41:35 UTC (rev 241450)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Antonio Rojas
-
-pkgname=libksysguard
-pkgver=5.3.1
-pkgrel=1
-pkgdesc='Libksysguard'
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/workspace/libksysguard'
-license=('LGPL')
-depends=('libxres' 'plasma-framework' 'qt5-webkit')
-makedepends=('extra-cmake-modules' 'kdoctools' 'python')
-conflicts=('kdebase-workspace')
-source=(http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz;)
-md5sums=('3aaf17820aae8fe0068d43fdd57535d1')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DLIB_INSTALL_DIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=${pkgdir} install
-}

Copied: libksysguard/repos/extra-i686/PKGBUILD (from rev 241449, 
libksysguard/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-06-30 17:41:35 UTC (rev 241450)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Antonio Rojas
+
+pkgname=libksysguard
+pkgver=5.3.2
+pkgrel=1
+pkgdesc='Libksysguard'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/workspace/libksysguard'
+license=('LGPL')
+depends=('libxres' 'plasma-framework' 'qt5-webkit')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+conflicts=('kdebase-workspace')
+source=(http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz;)
+md5sums=('8a84d8b6e61ad914fe7ca18b52635e9a')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-06-30 17:41:19 UTC (rev 241449)
+++ extra-x86_64/PKGBUILD   2015-06-30 17:41:35 UTC (rev 241450)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Antonio Rojas
-
-pkgname=libksysguard
-pkgver=5.3.1
-pkgrel=1
-pkgdesc='Libksysguard'
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/workspace/libksysguard'
-license=('LGPL')
-depends=('libxres' 'plasma-framework' 'qt5-webkit')
-makedepends=('extra-cmake-modules' 'kdoctools' 'python')
-conflicts=('kdebase-workspace')
-source=(http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz;)
-md5sums=('3aaf17820aae8fe0068d43fdd57535d1')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DLIB_INSTALL_DIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=${pkgdir} install
-}

Copied: libksysguard/repos/extra-x86_64/PKGBUILD (from rev 241449, 
libksysguard/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2015-06-30 17:41:35 UTC (rev 241450)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Antonio Rojas
+
+pkgname=libksysguard
+pkgver=5.3.2
+pkgrel=1
+pkgdesc='Libksysguard'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/workspace/libksysguard'
+license=('LGPL')
+depends=('libxres' 'plasma-framework' 'qt5-webkit')
+makedepends=('extra-cmake-modules' 

[arch-commits] Commit in kde-cli-tools/repos (4 files)

2015-06-30 Thread Antonio Rojas
Date: Tuesday, June 30, 2015 @ 19:41:03
  Author: arojas
Revision: 241448

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

Added:
  kde-cli-tools/repos/extra-i686/PKGBUILD
(from rev 241447, kde-cli-tools/trunk/PKGBUILD)
  kde-cli-tools/repos/extra-x86_64/PKGBUILD
(from rev 241447, kde-cli-tools/trunk/PKGBUILD)
Deleted:
  kde-cli-tools/repos/extra-i686/PKGBUILD
  kde-cli-tools/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-06-30 17:40:42 UTC (rev 241447)
+++ extra-i686/PKGBUILD 2015-06-30 17:41:03 UTC (rev 241448)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Antonio Rojas
-
-pkgname=kde-cli-tools
-pkgver=5.3.1
-pkgrel=1
-pkgdesc=Tools based on KDE Frameworks 5 to better interact with the system
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/workspace/kde-cli-tools'
-license=('LGPL')
-depends=('kdesu' 'kdelibs4support' 'kcmutils')
-makedepends=('extra-cmake-modules' 'kdoctools' 'python')
-source=(http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz;)
-md5sums=('40745282a738b0f5587fac3eca64a207')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DLIB_INSTALL_DIR=lib \
--DLIBEXEC_INSTALL_DIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=$pkgdir install
-
-  ln -s /usr/lib/kf5/kdesu $pkgdir/usr/bin/
-}

Copied: kde-cli-tools/repos/extra-i686/PKGBUILD (from rev 241447, 
kde-cli-tools/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-06-30 17:41:03 UTC (rev 241448)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Antonio Rojas
+
+pkgname=kde-cli-tools
+pkgver=5.3.2
+pkgrel=1
+pkgdesc=Tools based on KDE Frameworks 5 to better interact with the system
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/workspace/kde-cli-tools'
+license=('LGPL')
+depends=('kdesu' 'kdelibs4support' 'kcmutils')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+source=(http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz;)
+md5sums=('17ec549a653a89c694eb03bbe0d053d2')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DLIBEXEC_INSTALL_DIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+
+  ln -s /usr/lib/kf5/kdesu $pkgdir/usr/bin/
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-06-30 17:40:42 UTC (rev 241447)
+++ extra-x86_64/PKGBUILD   2015-06-30 17:41:03 UTC (rev 241448)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Antonio Rojas
-
-pkgname=kde-cli-tools
-pkgver=5.3.1
-pkgrel=1
-pkgdesc=Tools based on KDE Frameworks 5 to better interact with the system
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/workspace/kde-cli-tools'
-license=('LGPL')
-depends=('kdesu' 'kdelibs4support' 'kcmutils')
-makedepends=('extra-cmake-modules' 'kdoctools' 'python')
-source=(http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz;)
-md5sums=('40745282a738b0f5587fac3eca64a207')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DLIB_INSTALL_DIR=lib \
--DLIBEXEC_INSTALL_DIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=$pkgdir install
-
-  ln -s /usr/lib/kf5/kdesu $pkgdir/usr/bin/
-}

Copied: kde-cli-tools/repos/extra-x86_64/PKGBUILD (from rev 241447, 
kde-cli-tools/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2015-06-30 17:41:03 UTC (rev 241448)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: 

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

2015-06-30 Thread Antonio Rojas
Date: Tuesday, June 30, 2015 @ 19:41:19
  Author: arojas
Revision: 241449

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

Added:
  kio-extras/repos/extra-i686/PKGBUILD
(from rev 241448, kio-extras/trunk/PKGBUILD)
  kio-extras/repos/extra-i686/kio-extras.install
(from rev 241448, kio-extras/trunk/kio-extras.install)
  kio-extras/repos/extra-x86_64/PKGBUILD
(from rev 241448, kio-extras/trunk/PKGBUILD)
  kio-extras/repos/extra-x86_64/kio-extras.install
(from rev 241448, kio-extras/trunk/kio-extras.install)
Deleted:
  kio-extras/repos/extra-i686/PKGBUILD
  kio-extras/repos/extra-i686/kio-extras.install
  kio-extras/repos/extra-x86_64/PKGBUILD
  kio-extras/repos/extra-x86_64/kio-extras.install

-+
 /PKGBUILD   |   80 ++
 /kio-extras.install |   22 ++
 extra-i686/PKGBUILD |   40 ---
 extra-i686/kio-extras.install   |   11 -
 extra-x86_64/PKGBUILD   |   40 ---
 extra-x86_64/kio-extras.install |   11 -
 6 files changed, 102 insertions(+), 102 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-06-30 17:41:03 UTC (rev 241448)
+++ extra-i686/PKGBUILD 2015-06-30 17:41:19 UTC (rev 241449)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Antonio Rojas
-
-pkgname=kio-extras
-pkgver=5.3.1
-pkgrel=1
-pkgdesc=Additional components to increase the functionality of KIO
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/workspace/kio-extras'
-license=('LGPL')
-depends=('kdelibs4support' 'khtml' 'kdnssd' 'libssh' 'smbclient'
- 'exiv2' 'openexr' 'openslp' 'libmtp' 'kpty')
-makedepends=('extra-cmake-modules' 'kdoctools' 'python')
-groups=('plasma')
-install=${pkgname}.install
-source=(http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz;)
-md5sums=('8c53fd7088ae1c6a0a0054a6646bd4ac')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DLIB_INSTALL_DIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=${pkgdir} install
-}
-

Copied: kio-extras/repos/extra-i686/PKGBUILD (from rev 241448, 
kio-extras/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-06-30 17:41:19 UTC (rev 241449)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Antonio Rojas
+
+pkgname=kio-extras
+pkgver=5.3.2
+pkgrel=1
+pkgdesc=Additional components to increase the functionality of KIO
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/workspace/kio-extras'
+license=('LGPL')
+depends=('kdelibs4support' 'khtml' 'kdnssd' 'libssh' 'smbclient'
+ 'exiv2' 'openexr' 'openslp' 'libmtp' 'kpty')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+groups=('plasma')
+install=${pkgname}.install
+source=(http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz;)
+md5sums=('ee6f6308723206dbc871b3888317484b')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}
+

Deleted: extra-i686/kio-extras.install
===
--- extra-i686/kio-extras.install   2015-06-30 17:41:03 UTC (rev 241448)
+++ extra-i686/kio-extras.install   2015-06-30 17:41:19 UTC (rev 241449)
@@ -1,11 +0,0 @@
-post_install() {
-update-mime-database usr/share/mime  /dev/null
-}
-
-post_upgrade() {
-post_install
-}
-
-post_remove() {
-post_install
-}

Copied: kio-extras/repos/extra-i686/kio-extras.install (from rev 241448, 
kio-extras/trunk/kio-extras.install)
===
--- extra-i686/kio-extras.install   (rev 0)
+++ extra-i686/kio-extras.install   2015-06-30 17:41:19 UTC (rev 241449)
@@ -0,0 +1,11 @@
+post_install() {
+update-mime-database usr/share/mime  /dev/null
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-06-30 17:41:03 UTC (rev 241448)
+++ extra-x86_64/PKGBUILD   2015-06-30 17:41:19 UTC (rev 241449)
@@ -1,40 +0,0 @@
-# $Id$
-# 

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

2015-06-30 Thread Antonio Rojas
Date: Tuesday, June 30, 2015 @ 19:45:14
  Author: arojas
Revision: 241464

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-06-30 17:44:58 UTC (rev 241463)
+++ extra-i686/PKGBUILD 2015-06-30 17:45:14 UTC (rev 241464)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Antonio Rojas
-
-pkgname=kwrited
-pkgver=5.3.1
-pkgrel=1
-pkgdesc='KDE daemon listening for wall and write messages'
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/workspace/kwrited'
-license=('LGPL')
-depends=('kpty' 'knotifications')
-makedepends=('extra-cmake-modules' 'kdoctools' 'python')
-groups=('plasma')
-source=(http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz;)
-md5sums=('e0a80b1d489ab48e012459c3c0831804')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DLIB_INSTALL_DIR=lib \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=${pkgdir} install
-}

Copied: kwrited/repos/extra-i686/PKGBUILD (from rev 241463, 
kwrited/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-06-30 17:45:14 UTC (rev 241464)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Antonio Rojas
+
+pkgname=kwrited
+pkgver=5.3.2
+pkgrel=1
+pkgdesc='KDE daemon listening for wall and write messages'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/workspace/kwrited'
+license=('LGPL')
+depends=('kpty' 'knotifications')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+groups=('plasma')
+source=(http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz;)
+md5sums=('9f4af965c183e8b4b8311ba3d8e3909c')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DLIB_INSTALL_DIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-06-30 17:44:58 UTC (rev 241463)
+++ extra-x86_64/PKGBUILD   2015-06-30 17:45:14 UTC (rev 241464)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Antonio Rojas
-
-pkgname=kwrited
-pkgver=5.3.1
-pkgrel=1
-pkgdesc='KDE daemon listening for wall and write messages'
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/workspace/kwrited'
-license=('LGPL')
-depends=('kpty' 'knotifications')
-makedepends=('extra-cmake-modules' 'kdoctools' 'python')
-groups=('plasma')
-source=(http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz;)
-md5sums=('e0a80b1d489ab48e012459c3c0831804')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DLIB_INSTALL_DIR=lib \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=${pkgdir} install
-}

Copied: kwrited/repos/extra-x86_64/PKGBUILD (from rev 241463, 
kwrited/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2015-06-30 17:45:14 UTC (rev 241464)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Antonio Rojas
+
+pkgname=kwrited
+pkgver=5.3.2
+pkgrel=1
+pkgdesc='KDE daemon listening for wall and write messages'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/workspace/kwrited'
+license=('LGPL')
+depends=('kpty' 'knotifications')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+groups=('plasma')

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

2015-06-30 Thread Antonio Rojas
Date: Tuesday, June 30, 2015 @ 19:45:30
  Author: arojas
Revision: 241465

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-06-30 17:45:14 UTC (rev 241464)
+++ extra-i686/PKGBUILD 2015-06-30 17:45:30 UTC (rev 241465)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Antonio Rojas
-
-pkgname=khelpcenter
-pkgver=5.3.1
-pkgrel=1
-pkgdesc=Application to show KDE Applications' documentation
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/workspace/khelpcenter'
-license=('LGPL')
-groups=('plasma')
-depends=('khtml' 'kdelibs4support' 'kcmutils' 'kdoctools')
-makedepends=('extra-cmake-modules')
-source=(http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz;)
-md5sums=('02a5a0ab816fff398062363217ff7c45')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DLIB_INSTALL_DIR=lib \
--DLIBEXEC_INSTALL_DIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=${pkgdir} install
-}

Copied: khelpcenter/repos/extra-i686/PKGBUILD (from rev 241464, 
khelpcenter/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-06-30 17:45:30 UTC (rev 241465)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Antonio Rojas
+
+pkgname=khelpcenter
+pkgver=5.3.2
+pkgrel=1
+pkgdesc=Application to show KDE Applications' documentation
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/workspace/khelpcenter'
+license=('LGPL')
+groups=('plasma')
+depends=('khtml' 'kdelibs4support' 'kcmutils' 'kdoctools')
+makedepends=('extra-cmake-modules')
+source=(http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz;)
+md5sums=('ce2241f4a370b687dd5f7ecd2ed49b2e')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DLIBEXEC_INSTALL_DIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-06-30 17:45:14 UTC (rev 241464)
+++ extra-x86_64/PKGBUILD   2015-06-30 17:45:30 UTC (rev 241465)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Antonio Rojas
-
-pkgname=khelpcenter
-pkgver=5.3.1
-pkgrel=1
-pkgdesc=Application to show KDE Applications' documentation
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/workspace/khelpcenter'
-license=('LGPL')
-groups=('plasma')
-depends=('khtml' 'kdelibs4support' 'kcmutils' 'kdoctools')
-makedepends=('extra-cmake-modules')
-source=(http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz;)
-md5sums=('02a5a0ab816fff398062363217ff7c45')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DLIB_INSTALL_DIR=lib \
--DLIBEXEC_INSTALL_DIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=${pkgdir} install
-}

Copied: khelpcenter/repos/extra-x86_64/PKGBUILD (from rev 241464, 
khelpcenter/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2015-06-30 17:45:30 UTC (rev 241465)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Antonio Rojas
+
+pkgname=khelpcenter
+pkgver=5.3.2
+pkgrel=1
+pkgdesc=Application to show KDE Applications' documentation
+arch=('i686' 'x86_64')

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

2015-06-30 Thread Antonio Rojas
Date: Tuesday, June 30, 2015 @ 19:44:58
  Author: arojas
Revision: 241463

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

Added:
  plasma-nm/repos/extra-i686/PKGBUILD
(from rev 241462, plasma-nm/trunk/PKGBUILD)
  plasma-nm/repos/extra-x86_64/PKGBUILD
(from rev 241462, plasma-nm/trunk/PKGBUILD)
Deleted:
  plasma-nm/repos/extra-i686/PKGBUILD
  plasma-nm/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-06-30 17:44:41 UTC (rev 241462)
+++ extra-i686/PKGBUILD 2015-06-30 17:44:58 UTC (rev 241463)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-
-pkgname=plasma-nm
-pkgver=5.3.1
-pkgrel=1
-pkgdesc='Plasma applet written in QML for managing network connections'
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/workspace/plasma-nm'
-license=('GPL2')
-depends=('plasma-framework' 'modemmanager-qt' 'networkmanager-qt' 
'kdelibs4support')
-makedepends=('extra-cmake-modules' 'kdoctools' 'openconnect' 
'mobile-broadband-provider-info'
- 'python' 'kdelibs4support')
-optdepends=('mobile-broadband-provider-info: Database of mobile broadband 
service providers'
-'openconnect: Cisco AnyConnect VPN plugin')
-groups=('plasma')
-source=(http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz;)
-md5sums=('413fde9fcf235527f7a4fcaaed2a6978')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DLIB_INSTALL_DIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=${pkgdir} install
-}

Copied: plasma-nm/repos/extra-i686/PKGBUILD (from rev 241462, 
plasma-nm/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-06-30 17:44:58 UTC (rev 241463)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+
+pkgname=plasma-nm
+pkgver=5.3.2
+pkgrel=1
+pkgdesc='Plasma applet written in QML for managing network connections'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/workspace/plasma-nm'
+license=('GPL2')
+depends=('plasma-framework' 'modemmanager-qt' 'networkmanager-qt' 
'kdelibs4support')
+makedepends=('extra-cmake-modules' 'kdoctools' 'openconnect' 
'mobile-broadband-provider-info'
+ 'python' 'kdelibs4support')
+optdepends=('mobile-broadband-provider-info: Database of mobile broadband 
service providers'
+'openconnect: Cisco AnyConnect VPN plugin')
+groups=('plasma')
+source=(http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz;)
+md5sums=('f93d3975f8321d17b1649c89c28a041b')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DLIB_INSTALL_DIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-06-30 17:44:41 UTC (rev 241462)
+++ extra-x86_64/PKGBUILD   2015-06-30 17:44:58 UTC (rev 241463)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-
-pkgname=plasma-nm
-pkgver=5.3.1
-pkgrel=1
-pkgdesc='Plasma applet written in QML for managing network connections'
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/workspace/plasma-nm'
-license=('GPL2')
-depends=('plasma-framework' 'modemmanager-qt' 'networkmanager-qt' 
'kdelibs4support')
-makedepends=('extra-cmake-modules' 'kdoctools' 'openconnect' 
'mobile-broadband-provider-info'
- 'python' 'kdelibs4support')
-optdepends=('mobile-broadband-provider-info: Database of mobile broadband 
service providers'
-'openconnect: Cisco AnyConnect VPN plugin')
-groups=('plasma')
-source=(http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz;)
-md5sums=('413fde9fcf235527f7a4fcaaed2a6978')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DLIB_INSTALL_DIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make 

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

2015-06-30 Thread Antonio Rojas
Date: Tuesday, June 30, 2015 @ 19:45:44
  Author: arojas
Revision: 241466

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

Added:
  kdeplasma-addons/repos/extra-i686/PKGBUILD
(from rev 241465, kdeplasma-addons/trunk/PKGBUILD)
  kdeplasma-addons/repos/extra-i686/kdeplasma-addons.install
(from rev 241465, kdeplasma-addons/trunk/kdeplasma-addons.install)
  kdeplasma-addons/repos/extra-x86_64/PKGBUILD
(from rev 241465, kdeplasma-addons/trunk/PKGBUILD)
  kdeplasma-addons/repos/extra-x86_64/kdeplasma-addons.install
(from rev 241465, kdeplasma-addons/trunk/kdeplasma-addons.install)
Deleted:
  kdeplasma-addons/repos/extra-i686/PKGBUILD
  kdeplasma-addons/repos/extra-i686/kdeplasma-addons.install
  kdeplasma-addons/repos/extra-x86_64/PKGBUILD
  kdeplasma-addons/repos/extra-x86_64/kdeplasma-addons.install

---+
 /PKGBUILD |   84 
 /kdeplasma-addons.install |   22 
 extra-i686/PKGBUILD   |   42 
 extra-i686/kdeplasma-addons.install   |   11 
 extra-x86_64/PKGBUILD |   42 
 extra-x86_64/kdeplasma-addons.install |   11 
 6 files changed, 106 insertions(+), 106 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-06-30 17:45:30 UTC (rev 241465)
+++ extra-i686/PKGBUILD 2015-06-30 17:45:44 UTC (rev 241466)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-
-pkgname=kdeplasma-addons
-pkgver=5.3.1
-pkgrel=1
-pkgdesc='All kind of addons to improve your Plasma experience'
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/workspace/kdeplasma-addons'
-license=('LGPL')
-depends=('krunner' 'kdelibs4support' 'knewstuff' 'kross')
-makedepends=('extra-cmake-modules' 'kdoctools' 'libibus' 'scim')
-optdepends=('ibus: kimpanel IBUS support'
-'scim: kimpanel SCIM support')
-install=${pkgname}.install
-conflicts=('kdebase-workspace' 'kdeplasma-addons-frameworks')
-replaces=('kdeplasma-addons-frameworks')
-groups=('plasma')
-source=(http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz;)
-md5sums=('7eb35940d4df6e1c62685a6d071ddbad')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DLIB_INSTALL_DIR=lib \
--DLIBEXEC_INSTALL_DIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=${pkgdir} install
-}

Copied: kdeplasma-addons/repos/extra-i686/PKGBUILD (from rev 241465, 
kdeplasma-addons/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-06-30 17:45:44 UTC (rev 241466)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdeplasma-addons
+pkgver=5.3.2
+pkgrel=1
+pkgdesc='All kind of addons to improve your Plasma experience'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/workspace/kdeplasma-addons'
+license=('LGPL')
+depends=('krunner' 'kdelibs4support' 'knewstuff' 'kross')
+makedepends=('extra-cmake-modules' 'kdoctools' 'libibus' 'scim')
+optdepends=('ibus: kimpanel IBUS support'
+'scim: kimpanel SCIM support')
+install=${pkgname}.install
+conflicts=('kdebase-workspace' 'kdeplasma-addons-frameworks')
+replaces=('kdeplasma-addons-frameworks')
+groups=('plasma')
+source=(http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz;)
+md5sums=('04d3c086c0cc4650013dad955bd07788')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DLIB_INSTALL_DIR=lib \
+-DLIBEXEC_INSTALL_DIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-i686/kdeplasma-addons.install
===
--- extra-i686/kdeplasma-addons.install 2015-06-30 17:45:30 UTC (rev 241465)
+++ extra-i686/kdeplasma-addons.install 2015-06-30 17:45:44 UTC (rev 241466)
@@ -1,11 +0,0 @@
-post_install() {
-[[ -x xdg-icon-resource ]]  xdg-icon-resource forceupdate --theme 
hicolor  /dev/null || true
-}
-
-post_upgrade() {
-post_install
-}
-
-post_remove() {
-post_install
-}

Copied: kdeplasma-addons/repos/extra-i686/kdeplasma-addons.install (from rev 
241465, kdeplasma-addons/trunk/kdeplasma-addons.install)
===
--- extra-i686/kdeplasma-addons.install (rev 0)
+++ 

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

2015-06-30 Thread Gaetan Bisson
Date: Tuesday, June 30, 2015 @ 19:02:24
  Author: bisson
Revision: 241439

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

Added:
  conky/repos/extra-i686/PKGBUILD
(from rev 241438, conky/trunk/PKGBUILD)
  conky/repos/extra-i686/ascii.patch
(from rev 241438, conky/trunk/ascii.patch)
  conky/repos/extra-i686/lua53.patch
(from rev 241438, conky/trunk/lua53.patch)
  conky/repos/extra-x86_64/PKGBUILD
(from rev 241438, conky/trunk/PKGBUILD)
  conky/repos/extra-x86_64/ascii.patch
(from rev 241438, conky/trunk/ascii.patch)
  conky/repos/extra-x86_64/lua53.patch
(from rev 241438, conky/trunk/lua53.patch)
Deleted:
  conky/repos/extra-i686/PKGBUILD
  conky/repos/extra-i686/ascii.patch
  conky/repos/extra-i686/lua53.patch
  conky/repos/extra-x86_64/PKGBUILD
  conky/repos/extra-x86_64/ascii.patch
  conky/repos/extra-x86_64/lua53.patch

--+
 /PKGBUILD|  108 +
 /ascii.patch |   24 ++
 /lua53.patch |   92 ++
 extra-i686/PKGBUILD  |   53 --
 extra-i686/ascii.patch   |   12 -
 extra-i686/lua53.patch   |   46 ---
 extra-x86_64/PKGBUILD|   53 --
 extra-x86_64/ascii.patch |   12 -
 extra-x86_64/lua53.patch |   46 ---
 9 files changed, 224 insertions(+), 222 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-06-30 17:01:44 UTC (rev 241438)
+++ extra-i686/PKGBUILD 2015-06-30 17:02:24 UTC (rev 241439)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson bis...@archlinux.org
-# Contributor: Giovanni Scafora giova...@archlinux.org
-# Contributor: James Rayner ja...@archlinux.org
-# Contributor: Partha Chowdhury kira.lau...@gmail.com
-
-pkgname=conky
-pkgver=1.10.0
-pkgrel=1
-pkgdesc='Lightweight system monitor for X'
-url='http://conky.sourceforge.net/'
-license=('BSD' 'GPL')
-arch=('i686' 'x86_64')
-makedepends=('cmake' 'docbook2x' 'docbook-xml' 'man-db')
-depends=('glib2' 'curl' 'lua' 'wireless_tools' 'libxml2' 'libxft' 'libxdamage' 
'imlib2')
-source=(https://github.com/brndnmtthws/conky/archive/v${pkgver}.tar.gz;
-'ascii.patch'
-'lua53.patch')
-sha1sums=('d5863420150150002947180d0ee96c9ef56c43b1'
-  '96cdbc38e8706c8a3120601983df5c7265716128'
-  'a3a74542b6524e5663ad37aaba292b48e8bea3b1')
-
-prepare() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   patch -p1 -i ../ascii.patch # db2x_manxml fails on non-ascii chars
-   patch -p1 -i ../lua53.patch # lua_gettable returns an int in lua-5.3
-}
-
-build() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-
-   cmake \
-   -D CMAKE_BUILD_TYPE=Release \
-   -D MAINTAINER_MODE=ON \
-   -D BUILD_CURL=ON \
--D BUILD_IMLIB2=ON \
-   -D BUILD_RSS=ON \
-   -D BUILD_WEATHER_METAR=ON \
-   -D BUILD_WEATHER_XOAP=ON \
-   -D BUILD_WLAN=ON \
-   -D CMAKE_INSTALL_PREFIX=/usr \
-   .
-
-   make
-}
-
-package() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   make DESTDIR=${pkgdir} install
-   install -Dm644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-   install -Dm644 extras/vim/syntax/conkyrc.vim 
${pkgdir}/usr/share/vim/vimfiles/syntax/conkyrc.vim
-   install -Dm644 extras/vim/ftdetect/conkyrc.vim 
${pkgdir}/usr/share/vim/vimfiles/ftdetect/conkyrc.vim
-}

Copied: conky/repos/extra-i686/PKGBUILD (from rev 241438, conky/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-06-30 17:02:24 UTC (rev 241439)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: Giovanni Scafora giova...@archlinux.org
+# Contributor: James Rayner ja...@archlinux.org
+# Contributor: Partha Chowdhury kira.lau...@gmail.com
+
+pkgname=conky
+pkgver=1.10.0
+pkgrel=2
+pkgdesc='Lightweight system monitor for X'
+url='http://conky.sourceforge.net/'
+license=('BSD' 'GPL')
+arch=('i686' 'x86_64')
+makedepends=('cmake' 'docbook2x' 'docbook-xml' 'man-db')
+depends=('glib2' 'curl' 'lua' 'wireless_tools' 'libxml2' 'libxft' 'libxdamage' 
'imlib2')
+source=(https://github.com/brndnmtthws/conky/archive/v${pkgver}.tar.gz;
+'ascii.patch'
+'lua53.patch')
+sha1sums=('d5863420150150002947180d0ee96c9ef56c43b1'
+  '96cdbc38e8706c8a3120601983df5c7265716128'
+  'a3a74542b6524e5663ad37aaba292b48e8bea3b1')
+
+prepare() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   patch -p1 -i ../ascii.patch # db2x_manxml fails on non-ascii chars
+   patch -p1 -i ../lua53.patch # lua_gettable returns an int in lua-5.3
+}
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+
+   cmake \
+   -D 

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

2015-06-30 Thread Gaetan Bisson
Date: Tuesday, June 30, 2015 @ 19:01:44
  Author: bisson
Revision: 241438

implement FS#45506

Modified:
  conky/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-30 14:38:16 UTC (rev 241437)
+++ PKGBUILD2015-06-30 17:01:44 UTC (rev 241438)
@@ -6,7 +6,7 @@
 
 pkgname=conky
 pkgver=1.10.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Lightweight system monitor for X'
 url='http://conky.sourceforge.net/'
 license=('BSD' 'GPL')
@@ -33,7 +33,8 @@
-D CMAKE_BUILD_TYPE=Release \
-D MAINTAINER_MODE=ON \
-D BUILD_CURL=ON \
--D BUILD_IMLIB2=ON \
+   -D BUILD_XDBE=ON \
+   -D BUILD_IMLIB2=ON \
-D BUILD_RSS=ON \
-D BUILD_WEATHER_METAR=ON \
-D BUILD_WEATHER_XOAP=ON \


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

2015-06-30 Thread Antonio Rojas
Date: Tuesday, June 30, 2015 @ 19:39:52
  Author: arojas
Revision: 241444

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

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

---+
 /PKGBUILD |   80 
 /kwin.install |   22 
 extra-i686/PKGBUILD   |   40 --
 extra-i686/kwin.install   |   11 --
 extra-x86_64/PKGBUILD |   40 --
 extra-x86_64/kwin.install |   11 --
 6 files changed, 102 insertions(+), 102 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-06-30 17:39:38 UTC (rev 241443)
+++ extra-i686/PKGBUILD 2015-06-30 17:39:52 UTC (rev 241444)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-
-pkgname=kwin
-pkgver=5.3.1
-pkgrel=1
-pkgdesc='KDE Window manager'
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/workspace/kwin'
-license=('LGPL')
-depends=('qt5-multimedia' 'plasma-framework' 'knewstuff' 'xcb-util-cursor' 
'kinit'
- 'hicolor-icon-theme' 'kwayland' 'libinput' 'kdecoration')
-makedepends=('extra-cmake-modules' 'qt5-tools' 'kdoctools')
-groups=('plasma')
-install=${pkgname}.install
-conflicts=('kdebase-workspace')
-source=(http://download.kde.org/stable/plasma/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
-md5sums=('34607a1d125dc12fd88b5b8cdcc396b1')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DLIB_INSTALL_DIR=lib \
--DLIBEXEC_INSTALL_DIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=${pkgdir} install
-}

Copied: kwin/repos/extra-i686/PKGBUILD (from rev 241443, kwin/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-06-30 17:39:52 UTC (rev 241444)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+
+pkgname=kwin
+pkgver=5.3.2
+pkgrel=1
+pkgdesc='KDE Window manager'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/workspace/kwin'
+license=('LGPL')
+depends=('qt5-multimedia' 'plasma-framework' 'knewstuff' 'xcb-util-cursor' 
'kinit'
+ 'hicolor-icon-theme' 'kwayland' 'libinput' 'kdecoration')
+makedepends=('extra-cmake-modules' 'qt5-tools' 'kdoctools')
+groups=('plasma')
+install=${pkgname}.install
+conflicts=('kdebase-workspace')
+source=(http://download.kde.org/stable/plasma/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('55357eef894ba4e6c16b77c385a63675')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DLIBEXEC_INSTALL_DIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-i686/kwin.install
===
--- extra-i686/kwin.install 2015-06-30 17:39:38 UTC (rev 241443)
+++ extra-i686/kwin.install 2015-06-30 17:39:52 UTC (rev 241444)
@@ -1,11 +0,0 @@
-post_install() {
-  xdg-icon-resource forceupdate --theme hicolor  /dev/null
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: kwin/repos/extra-i686/kwin.install (from rev 241443, 
kwin/trunk/kwin.install)
===
--- extra-i686/kwin.install (rev 0)
+++ extra-i686/kwin.install 2015-06-30 17:39:52 UTC (rev 241444)
@@ -0,0 +1,11 @@
+post_install() {
+  xdg-icon-resource forceupdate --theme hicolor  /dev/null
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-06-30 17:39:38 UTC (rev 241443)
+++ extra-x86_64/PKGBUILD   2015-06-30 17:39:52 UTC (rev 241444)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-
-pkgname=kwin
-pkgver=5.3.1
-pkgrel=1
-pkgdesc='KDE Window 

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

2015-06-30 Thread Antonio Rojas
Date: Tuesday, June 30, 2015 @ 19:40:10
  Author: arojas
Revision: 241445

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-06-30 17:39:52 UTC (rev 241444)
+++ extra-i686/PKGBUILD 2015-06-30 17:40:10 UTC (rev 241445)
@@ -1,74 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Antonio Rojas
-
-pkgbase=oxygen
-pkgname=('oxygen' 'oxygen-cursors' 'oxygen-kde4')
-pkgver=5.3.1
-pkgrel=1
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/workspace/oxygen'
-license=('LGPL')
-makedepends=('frameworkintegration' 'kdecoration' 'extra-cmake-modules' 
'kdoctools' 'kdelibs' 'automoc4')
-source=(http://download.kde.org/stable/plasma/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
-md5sums=('8bf067d4ce962fa74e9794a6e2f76b52')
-
-prepare() {
-  mkdir build{,-kde4}
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DLIB_INSTALL_DIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-  cd ..
-
-  cd build-kde4
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DBUILD_TESTING=OFF \
--DUSE_KDE4=ON
-  make
-}
-
-package_oxygen() {
-  pkgdesc='KDE Oxygen style'
-  depends=('frameworkintegration' 'kdecoration')
-  optdepends=('oxygen-cursors: cursor themes for Plasma 5')
-  groups=('plasma')
-
-  cd build
-  make DESTDIR=${pkgdir} install
-
-  # Cursors conflicts with kdebase-workspace
-  rm -r ${pkgdir}/usr/share/icons/
-}
-
-package_oxygen-cursors() {
-  pkgdesc='KDE Oxygen cursor themes for Plasma 5'
-  groups=('plasma')
-  conflicts=('kdebase-workspace')
-
-  cd build/cursors
-  make DESTDIR=${pkgdir} install
-}
-
-package_oxygen-kde4() {
-  pkgdesc='KDE Oxygen style for KDE4 applications'
-  depends=('kdelibs')
-  conflicts=('kdebase-workspace')
-
-  cd build-kde4
-  make DESTDIR=${pkgdir} install
-
-  # needed so that pure Qt4 apps are correctly themed
-  install -d -m755 $pkgdir/usr/lib/qt4/plugins/styles
-  ln -s /usr/lib/kde4/plugins/styles/oxygen.so 
$pkgdir/usr/lib/qt4/plugins/styles
-}

Copied: oxygen/repos/extra-i686/PKGBUILD (from rev 241444, 
oxygen/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-06-30 17:40:10 UTC (rev 241445)
@@ -0,0 +1,74 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Antonio Rojas
+
+pkgbase=oxygen
+pkgname=('oxygen' 'oxygen-cursors' 'oxygen-kde4')
+pkgver=5.3.2
+pkgrel=1
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/workspace/oxygen'
+license=('LGPL')
+makedepends=('frameworkintegration' 'kdecoration' 'extra-cmake-modules' 
'kdoctools' 'kdelibs' 'automoc4')
+source=(http://download.kde.org/stable/plasma/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('675e7bdad3c28a808731c2eaa87e8b14')
+
+prepare() {
+  mkdir build{,-kde4}
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+  cd ..
+
+  cd build-kde4
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DBUILD_TESTING=OFF \
+-DUSE_KDE4=ON
+  make
+}
+
+package_oxygen() {
+  pkgdesc='KDE Oxygen style'
+  depends=('frameworkintegration' 'kdecoration')
+  optdepends=('oxygen-cursors: cursor themes for Plasma 5')
+  groups=('plasma')
+
+  cd build
+  make DESTDIR=${pkgdir} install
+
+  # Cursors conflicts with kdebase-workspace
+  rm -r ${pkgdir}/usr/share/icons/
+}
+
+package_oxygen-cursors() {
+  pkgdesc='KDE Oxygen cursor themes for Plasma 5'
+  groups=('plasma')
+  conflicts=('kdebase-workspace')
+
+  cd build/cursors
+  make DESTDIR=${pkgdir} install
+}
+
+package_oxygen-kde4() {
+  pkgdesc='KDE Oxygen style for KDE4 applications'
+  depends=('kdelibs')
+  conflicts=('kdebase-workspace')
+
+  cd build-kde4
+  make DESTDIR=${pkgdir} install
+
+  # needed so that pure Qt4 apps are correctly themed
+  install -d -m755 $pkgdir/usr/lib/qt4/plugins/styles
+  ln -s 

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

2015-06-30 Thread Antonio Rojas
Date: Tuesday, June 30, 2015 @ 19:39:38
  Author: arojas
Revision: 241443

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-06-30 17:39:21 UTC (rev 241442)
+++ extra-i686/PKGBUILD 2015-06-30 17:39:38 UTC (rev 241443)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Antonio Rojas aro...@archlinux.org
-
-pkgname=kdecoration
-pkgver=5.3.1
-pkgrel=1
-pkgdesc='Plugin based library to create window decorations'
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/workspace/kdecoration'
-license=('LGPL')
-depends=('qt5-base')
-makedepends=('extra-cmake-modules')
-source=(http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz;)
-md5sums=('97297617f2a3456e31d56fcd9feac889')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DLIB_INSTALL_DIR=lib \
--DSYSCONF_INSTALL_DIR=/etc \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=$pkgdir install
-}

Copied: kdecoration/repos/extra-i686/PKGBUILD (from rev 241442, 
kdecoration/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-06-30 17:39:38 UTC (rev 241443)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Antonio Rojas aro...@archlinux.org
+
+pkgname=kdecoration
+pkgver=5.3.2
+pkgrel=1
+pkgdesc='Plugin based library to create window decorations'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/workspace/kdecoration'
+license=('LGPL')
+depends=('qt5-base')
+makedepends=('extra-cmake-modules')
+source=(http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz;)
+md5sums=('4397c2a5494b33652fcf9bbcb493dbab')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DSYSCONF_INSTALL_DIR=/etc \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-06-30 17:39:21 UTC (rev 241442)
+++ extra-x86_64/PKGBUILD   2015-06-30 17:39:38 UTC (rev 241443)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Antonio Rojas aro...@archlinux.org
-
-pkgname=kdecoration
-pkgver=5.3.1
-pkgrel=1
-pkgdesc='Plugin based library to create window decorations'
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/workspace/kdecoration'
-license=('LGPL')
-depends=('qt5-base')
-makedepends=('extra-cmake-modules')
-source=(http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz;)
-md5sums=('97297617f2a3456e31d56fcd9feac889')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DLIB_INSTALL_DIR=lib \
--DSYSCONF_INSTALL_DIR=/etc \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=$pkgdir install
-}

Copied: kdecoration/repos/extra-x86_64/PKGBUILD (from rev 241442, 
kdecoration/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2015-06-30 17:39:38 UTC (rev 241443)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Antonio Rojas aro...@archlinux.org
+
+pkgname=kdecoration
+pkgver=5.3.2
+pkgrel=1
+pkgdesc='Plugin based library to create window decorations'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/workspace/kdecoration'
+license=('LGPL')
+depends=('qt5-base')
+makedepends=('extra-cmake-modules')

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

2015-06-30 Thread Antonio Rojas
Date: Tuesday, June 30, 2015 @ 19:39:21
  Author: arojas
Revision: 241442

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-06-30 17:39:05 UTC (rev 241441)
+++ extra-i686/PKGBUILD 2015-06-30 17:39:21 UTC (rev 241442)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Antonio Rojas
-
-pkgname=kwayland
-pkgver=5.3.1
-pkgrel=1
-pkgdesc='Qt-style Client and Server library wrapper for the Wayland libraries'
-arch=('i686' 'x86_64')
-url='http://www.kde.org'
-license=('LGPL')
-depends=('qt5-base')
-makedepends=('extra-cmake-modules')
-source=(http://download.kde.org/stable/plasma/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
-md5sums=('e361a5c875a9381ea653a655318b7022')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DLIB_INSTALL_DIR=lib \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=$pkgdir install
-}

Copied: kwayland/repos/extra-i686/PKGBUILD (from rev 241441, 
kwayland/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-06-30 17:39:21 UTC (rev 241442)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Antonio Rojas
+
+pkgname=kwayland
+pkgver=5.3.2
+pkgrel=1
+pkgdesc='Qt-style Client and Server library wrapper for the Wayland libraries'
+arch=('i686' 'x86_64')
+url='http://www.kde.org'
+license=('LGPL')
+depends=('qt5-base')
+makedepends=('extra-cmake-modules')
+source=(http://download.kde.org/stable/plasma/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('5ea31028a369b0a78da8322a442407f5')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-06-30 17:39:05 UTC (rev 241441)
+++ extra-x86_64/PKGBUILD   2015-06-30 17:39:21 UTC (rev 241442)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Antonio Rojas
-
-pkgname=kwayland
-pkgver=5.3.1
-pkgrel=1
-pkgdesc='Qt-style Client and Server library wrapper for the Wayland libraries'
-arch=('i686' 'x86_64')
-url='http://www.kde.org'
-license=('LGPL')
-depends=('qt5-base')
-makedepends=('extra-cmake-modules')
-source=(http://download.kde.org/stable/plasma/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
-md5sums=('e361a5c875a9381ea653a655318b7022')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DLIB_INSTALL_DIR=lib \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=$pkgdir install
-}

Copied: kwayland/repos/extra-x86_64/PKGBUILD (from rev 241441, 
kwayland/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2015-06-30 17:39:21 UTC (rev 241442)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Antonio Rojas
+
+pkgname=kwayland
+pkgver=5.3.2
+pkgrel=1
+pkgdesc='Qt-style Client and Server library wrapper for the Wayland libraries'
+arch=('i686' 'x86_64')
+url='http://www.kde.org'
+license=('LGPL')
+depends=('qt5-base')
+makedepends=('extra-cmake-modules')
+source=(http://download.kde.org/stable/plasma/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('5ea31028a369b0a78da8322a442407f5')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make 

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

2015-06-30 Thread Antonio Rojas
Date: Tuesday, June 30, 2015 @ 19:38:50
  Author: arojas
Revision: 241440

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

Added:
  ttf-oxygen/repos/extra-i686/PKGBUILD
(from rev 241439, ttf-oxygen/trunk/PKGBUILD)
  ttf-oxygen/repos/extra-i686/ttf-oxygen.install
(from rev 241439, ttf-oxygen/trunk/ttf-oxygen.install)
  ttf-oxygen/repos/extra-x86_64/PKGBUILD
(from rev 241439, ttf-oxygen/trunk/PKGBUILD)
  ttf-oxygen/repos/extra-x86_64/ttf-oxygen.install
(from rev 241439, ttf-oxygen/trunk/ttf-oxygen.install)
Deleted:
  ttf-oxygen/repos/extra-i686/PKGBUILD
  ttf-oxygen/repos/extra-i686/ttf-oxygen.install
  ttf-oxygen/repos/extra-x86_64/PKGBUILD
  ttf-oxygen/repos/extra-x86_64/ttf-oxygen.install

-+
 /PKGBUILD   |   96 ++
 /ttf-oxygen.install |   30 +++
 extra-i686/PKGBUILD |   48 ---
 extra-i686/ttf-oxygen.install   |   15 -
 extra-x86_64/PKGBUILD   |   48 ---
 extra-x86_64/ttf-oxygen.install |   15 -
 6 files changed, 126 insertions(+), 126 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-06-30 17:02:24 UTC (rev 241439)
+++ extra-i686/PKGBUILD 2015-06-30 17:38:50 UTC (rev 241440)
@@ -1,48 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Antonio Rojas aro...@archlinux.org
-
-pkgname=ttf-oxygen
-epoch=1
-pkgver=5.3.1
-pkgrel=1
-pkgdesc='The Oxygen font family. A desktop/gui font family for integrated use 
with the KDE desktop'
-url='https://projects.kde.org/projects/kde/workspace/oxygen-fonts'
-arch=('i686' 'x86_64') # CMake files are arch-dependent
-license=('custom:OFL' 'GPL' 'custom:GPL+FE')
-depends=('fontconfig' 'xorg-fonts-encodings' 'xorg-font-utils')
-makedepends=('extra-cmake-modules' 'qt5-base' 'fontforge')
-provides=('ttf-font')
-options=('!emptydirs')
-install=${pkgname}.install
-source=(http://download.kde.org/stable/plasma/${pkgver}/oxygen-fonts-${pkgver}.tar.xz;)
-md5sums=('7ef184bdfadad09b81bf69006391c37a')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../oxygen-fonts-${pkgver} \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DLIB_INSTALL_DIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=${pkgdir} install
-
-  # Fix install path
-  install -d ${pkgdir}/usr/share/fonts/TTF
-  mv ${pkgdir}/usr/share/fonts/truetype/oxygen/*.ttf \
-${pkgdir}/usr/share/fonts/TTF/
-
-  install -d ${pkgdir}/usr/share/licenses/${pkgname}
-  install -m644 ${srcdir}/oxygen-fonts-${pkgver}/COPYING-{GPL+FE.txt,OFL} \
-${pkgdir}/usr/share/licenses/${pkgname}
-}

Copied: ttf-oxygen/repos/extra-i686/PKGBUILD (from rev 241439, 
ttf-oxygen/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-06-30 17:38:50 UTC (rev 241440)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Antonio Rojas aro...@archlinux.org
+
+pkgname=ttf-oxygen
+epoch=1
+pkgver=5.3.2
+pkgrel=1
+pkgdesc='The Oxygen font family. A desktop/gui font family for integrated use 
with the KDE desktop'
+url='https://projects.kde.org/projects/kde/workspace/oxygen-fonts'
+arch=('i686' 'x86_64') # CMake files are arch-dependent
+license=('custom:OFL' 'GPL' 'custom:GPL+FE')
+depends=('fontconfig' 'xorg-fonts-encodings' 'xorg-font-utils')
+makedepends=('extra-cmake-modules' 'qt5-base' 'fontforge')
+provides=('ttf-font')
+options=('!emptydirs')
+install=${pkgname}.install
+source=(http://download.kde.org/stable/plasma/${pkgver}/oxygen-fonts-${pkgver}.tar.xz;)
+md5sums=('64400527a9519e2992f1e10e9db4b966')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../oxygen-fonts-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DLIB_INSTALL_DIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+
+  # Fix install path
+  install -d ${pkgdir}/usr/share/fonts/TTF
+  mv ${pkgdir}/usr/share/fonts/truetype/oxygen/*.ttf \
+${pkgdir}/usr/share/fonts/TTF/
+
+  install -d ${pkgdir}/usr/share/licenses/${pkgname}
+  install -m644 ${srcdir}/oxygen-fonts-${pkgver}/COPYING-{GPL+FE.txt,OFL} \
+${pkgdir}/usr/share/licenses/${pkgname}
+}

Deleted: extra-i686/ttf-oxygen.install
===
--- extra-i686/ttf-oxygen.install   2015-06-30 17:02:24 UTC (rev 241439)
+++ extra-i686/ttf-oxygen.install   2015-06-30 17:38:50 UTC (rev 241440)
@@ -1,15 +0,0 @@
-post_install() {
-  echo -n Updating font cache... 
-  fc-cache -s
-  mkfontscale 

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

2015-06-30 Thread Antonio Rojas
Date: Tuesday, June 30, 2015 @ 19:39:05
  Author: arojas
Revision: 241441

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-06-30 17:38:50 UTC (rev 241440)
+++ extra-i686/PKGBUILD 2015-06-30 17:39:05 UTC (rev 241441)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-
-pkgname=kfilemetadata
-pkgver=5.9.1
-_pkgver=5.3.1
-pkgrel=1
-pkgdesc=A library for extracting file metadata
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/kdelibs/kfilemetadata'
-license=('LGPL')
-depends=('ki18n' 'karchive' 'exiv2' 'poppler-qt5' 'taglib' 'ffmpeg' 
'ebook-tools')
-makedepends=('extra-cmake-modules' 'python2')
-optdepends=('catdoc: to extract text from Office 98 files') 
-conflicts=('kfilemetadata5')
-replaces=('kfilemetadata5')
-source=(http://download.kde.org/stable/plasma/${_pkgver}/$pkgname-$pkgver.tar.xz;)
-md5sums=('16cac34772a0b0559f91afb644dc42a3')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DLIB_INSTALL_DIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=${pkgdir} install
-}

Copied: kfilemetadata/repos/extra-i686/PKGBUILD (from rev 241440, 
kfilemetadata/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-06-30 17:39:05 UTC (rev 241441)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+
+pkgname=kfilemetadata
+pkgver=5.9.2
+_pkgver=5.3.2
+pkgrel=1
+pkgdesc=A library for extracting file metadata
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/kdelibs/kfilemetadata'
+license=('LGPL')
+depends=('ki18n' 'karchive' 'exiv2' 'poppler-qt5' 'taglib' 'ffmpeg' 
'ebook-tools')
+makedepends=('extra-cmake-modules' 'python2')
+optdepends=('catdoc: to extract text from Office 98 files') 
+conflicts=('kfilemetadata5')
+replaces=('kfilemetadata5')
+source=(http://download.kde.org/stable/plasma/${_pkgver}/$pkgname-$pkgver.tar.xz;)
+md5sums=('74d278d9c6dab71d3126ba51858a5d02')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-06-30 17:38:50 UTC (rev 241440)
+++ extra-x86_64/PKGBUILD   2015-06-30 17:39:05 UTC (rev 241441)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-
-pkgname=kfilemetadata
-pkgver=5.9.1
-_pkgver=5.3.1
-pkgrel=1
-pkgdesc=A library for extracting file metadata
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/kdelibs/kfilemetadata'
-license=('LGPL')
-depends=('ki18n' 'karchive' 'exiv2' 'poppler-qt5' 'taglib' 'ffmpeg' 
'ebook-tools')
-makedepends=('extra-cmake-modules' 'python2')
-optdepends=('catdoc: to extract text from Office 98 files') 
-conflicts=('kfilemetadata5')
-replaces=('kfilemetadata5')
-source=(http://download.kde.org/stable/plasma/${_pkgver}/$pkgname-$pkgver.tar.xz;)
-md5sums=('16cac34772a0b0559f91afb644dc42a3')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DLIB_INSTALL_DIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=${pkgdir} install
-}

Copied: kfilemetadata/repos/extra-x86_64/PKGBUILD (from rev 241440, 
kfilemetadata/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2015-06-30 17:39:05 UTC (rev 241441)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# 

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

2015-06-30 Thread Antonio Rojas
Date: Tuesday, June 30, 2015 @ 19:46:30
  Author: arojas
Revision: 241469

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

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

--+
 /PKGBUILD|   80 +
 /kscreen.install |   22 +++
 extra-i686/PKGBUILD  |   40 
 extra-i686/kscreen.install   |   11 -
 extra-x86_64/PKGBUILD|   40 
 extra-x86_64/kscreen.install |   11 -
 6 files changed, 102 insertions(+), 102 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-06-30 17:46:16 UTC (rev 241468)
+++ extra-i686/PKGBUILD 2015-06-30 17:46:30 UTC (rev 241469)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Antonio Rojas aro...@archlinux.org
-
-pkgname=kscreen
-pkgver=5.3.1
-pkgrel=1
-pkgdesc=KDE's screen management software
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/workspace/kscreen'
-license=('LGPL')
-depends=('kxmlgui' 'libkscreen' 'qt5-graphicaleffects')
-makedepends=('extra-cmake-modules' 'python')
-conflicts=('kscreen-frameworks')
-replaces=('kscreen-frameworks')
-groups=('plasma')
-install=$pkgname.install
-source=(http://download.kde.org/stable/plasma/${pkgver}/kscreen-$pkgver.tar.xz;)
-md5sums=('f03f06c9c640d3a6288f345de2e82275')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../kscreen-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DLIB_INSTALL_DIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=$pkgdir install
-}

Copied: kscreen/repos/extra-i686/PKGBUILD (from rev 241468, 
kscreen/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-06-30 17:46:30 UTC (rev 241469)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Antonio Rojas aro...@archlinux.org
+
+pkgname=kscreen
+pkgver=5.3.2
+pkgrel=1
+pkgdesc=KDE's screen management software
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/workspace/kscreen'
+license=('LGPL')
+depends=('kxmlgui' 'libkscreen' 'qt5-graphicaleffects')
+makedepends=('extra-cmake-modules' 'python')
+conflicts=('kscreen-frameworks')
+replaces=('kscreen-frameworks')
+groups=('plasma')
+install=$pkgname.install
+source=(http://download.kde.org/stable/plasma/${pkgver}/kscreen-$pkgver.tar.xz;)
+md5sums=('a7fc7838897832907af4a7afafb630df')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../kscreen-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+}

Deleted: extra-i686/kscreen.install
===
--- extra-i686/kscreen.install  2015-06-30 17:46:16 UTC (rev 241468)
+++ extra-i686/kscreen.install  2015-06-30 17:46:30 UTC (rev 241469)
@@ -1,11 +0,0 @@
-post_install() {
-[[ -x xdg-icon-resource ]]  xdg-icon-resource forceupdate --theme 
hicolor  /dev/null || true
-}
-
-post_upgrade() {
-post_install
-}
-
-post_remove() {
-post_install
-}

Copied: kscreen/repos/extra-i686/kscreen.install (from rev 241468, 
kscreen/trunk/kscreen.install)
===
--- extra-i686/kscreen.install  (rev 0)
+++ extra-i686/kscreen.install  2015-06-30 17:46:30 UTC (rev 241469)
@@ -0,0 +1,11 @@
+post_install() {
+[[ -x xdg-icon-resource ]]  xdg-icon-resource forceupdate --theme 
hicolor  /dev/null || true
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-06-30 17:46:16 UTC (rev 241468)
+++ extra-x86_64/PKGBUILD   2015-06-30 17:46:30 UTC (rev 241469)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino 

[arch-commits] Commit in kde-gtk-config/repos (8 files)

2015-06-30 Thread Antonio Rojas
Date: Tuesday, June 30, 2015 @ 19:46:16
  Author: arojas
Revision: 241468

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

Added:
  kde-gtk-config/repos/extra-i686/PKGBUILD
(from rev 241467, kde-gtk-config/trunk/PKGBUILD)
  kde-gtk-config/repos/extra-i686/kde-gtk-config.install
(from rev 241467, kde-gtk-config/trunk/kde-gtk-config.install)
  kde-gtk-config/repos/extra-x86_64/PKGBUILD
(from rev 241467, kde-gtk-config/trunk/PKGBUILD)
  kde-gtk-config/repos/extra-x86_64/kde-gtk-config.install
(from rev 241467, kde-gtk-config/trunk/kde-gtk-config.install)
Deleted:
  kde-gtk-config/repos/extra-i686/PKGBUILD
  kde-gtk-config/repos/extra-i686/kde-gtk-config.install
  kde-gtk-config/repos/extra-x86_64/PKGBUILD
  kde-gtk-config/repos/extra-x86_64/kde-gtk-config.install

-+
 /PKGBUILD   |   88 ++
 /kde-gtk-config.install |   24 +
 extra-i686/PKGBUILD |   44 -
 extra-i686/kde-gtk-config.install   |   12 
 extra-x86_64/PKGBUILD   |   44 -
 extra-x86_64/kde-gtk-config.install |   12 
 6 files changed, 112 insertions(+), 112 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-06-30 17:46:02 UTC (rev 241467)
+++ extra-i686/PKGBUILD 2015-06-30 17:46:16 UTC (rev 241468)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Antonio Rojas aro...@archlinux.org
-
-pkgname=kde-gtk-config
-pkgver=5.3.1
-pkgrel=1
-pkgdesc='GTK2 and GTK3 Configurator for KDE'
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/workspace/kde-gtk-config'
-license=('LGPL')
-depends=('knewstuff' 'kcmutils')
-makedepends=('extra-cmake-modules' 'gtk2' 'gtk3')
-optdepends=('gtk2: GTK2 apps support'
-'gtk3: GTK3 apps support')
-conflicts=('kde-gtk-config-frameworks')
-replaces=('kde-gtk-config-frameworks')
-groups=('plasma')
-install=$pkgname.install
-source=(http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz;)
-md5sums=('fd6891befdba935fbb17379139c236b2')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DLIB_INSTALL_DIR=lib \
--DLIBEXEC_INSTALL_DIR=lib \
--DSYSCONF_INSTALL_DIR=/etc \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=$pkgdir install
-}

Copied: kde-gtk-config/repos/extra-i686/PKGBUILD (from rev 241467, 
kde-gtk-config/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-06-30 17:46:16 UTC (rev 241468)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Antonio Rojas aro...@archlinux.org
+
+pkgname=kde-gtk-config
+pkgver=5.3.2
+pkgrel=1
+pkgdesc='GTK2 and GTK3 Configurator for KDE'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/workspace/kde-gtk-config'
+license=('LGPL')
+depends=('knewstuff' 'kde-cli-tools')
+makedepends=('extra-cmake-modules' 'gtk2' 'gtk3')
+optdepends=('gtk2: GTK2 apps support'
+'gtk3: GTK3 apps support')
+conflicts=('kde-gtk-config-frameworks')
+replaces=('kde-gtk-config-frameworks')
+groups=('plasma')
+install=$pkgname.install
+source=(http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz;)
+md5sums=('920309507c3f614d0f20b1ba0647b1eb')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DLIBEXEC_INSTALL_DIR=lib \
+-DSYSCONF_INSTALL_DIR=/etc \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+}

Deleted: extra-i686/kde-gtk-config.install
===
--- extra-i686/kde-gtk-config.install   2015-06-30 17:46:02 UTC (rev 241467)
+++ extra-i686/kde-gtk-config.install   2015-06-30 17:46:16 UTC (rev 241468)
@@ -1,12 +0,0 @@
-post_install() {
-xdg-icon-resource forceupdate --theme hicolor  /dev/null
-update-desktop-database -q
-}
-
-post_upgrade() {
-post_install
-}
-
-post_remove() {
-post_install
-}

Copied: kde-gtk-config/repos/extra-i686/kde-gtk-config.install (from rev 
241467, kde-gtk-config/trunk/kde-gtk-config.install)
===
--- extra-i686/kde-gtk-config.install   (rev 0)
+++ extra-i686/kde-gtk-config.install   2015-06-30 17:46:16 UTC (rev 241468)
@@ -0,0 +1,12 @@

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

2015-06-30 Thread Antonio Rojas
Date: Tuesday, June 30, 2015 @ 19:46:02
  Author: arojas
Revision: 241467

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

Added:
  bluedevil/repos/extra-i686/PKGBUILD
(from rev 241466, bluedevil/trunk/PKGBUILD)
  bluedevil/repos/extra-i686/bluedevil.install
(from rev 241466, bluedevil/trunk/bluedevil.install)
  bluedevil/repos/extra-i686/bluez-qt-5.11.patch
(from rev 241466, bluedevil/trunk/bluez-qt-5.11.patch)
  bluedevil/repos/extra-x86_64/PKGBUILD
(from rev 241466, bluedevil/trunk/PKGBUILD)
  bluedevil/repos/extra-x86_64/bluedevil.install
(from rev 241466, bluedevil/trunk/bluedevil.install)
  bluedevil/repos/extra-x86_64/bluez-qt-5.11.patch
(from rev 241466, bluedevil/trunk/bluez-qt-5.11.patch)
Deleted:
  bluedevil/repos/extra-i686/PKGBUILD
  bluedevil/repos/extra-i686/bluedevil.install
  bluedevil/repos/extra-i686/bluez-qt-5.11.patch
  bluedevil/repos/extra-x86_64/PKGBUILD
  bluedevil/repos/extra-x86_64/bluedevil.install
  bluedevil/repos/extra-x86_64/bluez-qt-5.11.patch

--+
 /PKGBUILD|   94 
 /bluedevil.install   |   24 +
 /bluez-qt-5.11.patch |  766 +
 extra-i686/PKGBUILD  |   47 --
 extra-i686/bluedevil.install |   12 
 extra-i686/bluez-qt-5.11.patch   |  383 --
 extra-x86_64/PKGBUILD|   47 --
 extra-x86_64/bluedevil.install   |   12 
 extra-x86_64/bluez-qt-5.11.patch |  383 --
 9 files changed, 884 insertions(+), 884 deletions(-)

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


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

2015-06-30 Thread Antonio Rojas
Date: Tuesday, June 30, 2015 @ 19:46:45
  Author: arojas
Revision: 241470

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

Added:
  ksshaskpass/repos/extra-i686/PKGBUILD
(from rev 241469, ksshaskpass/trunk/PKGBUILD)
  ksshaskpass/repos/extra-i686/ksshaskpass.sh
(from rev 241469, ksshaskpass/trunk/ksshaskpass.sh)
  ksshaskpass/repos/extra-x86_64/PKGBUILD
(from rev 241469, ksshaskpass/trunk/PKGBUILD)
  ksshaskpass/repos/extra-x86_64/ksshaskpass.sh
(from rev 241469, ksshaskpass/trunk/ksshaskpass.sh)
Deleted:
  ksshaskpass/repos/extra-i686/PKGBUILD
  ksshaskpass/repos/extra-i686/ksshaskpass.sh
  ksshaskpass/repos/extra-x86_64/PKGBUILD
  ksshaskpass/repos/extra-x86_64/ksshaskpass.sh

-+
 /PKGBUILD   |   86 ++
 /ksshaskpass.sh |2 
 extra-i686/PKGBUILD |   43 -
 extra-i686/ksshaskpass.sh   |1 
 extra-x86_64/PKGBUILD   |   43 -
 extra-x86_64/ksshaskpass.sh |1 
 6 files changed, 88 insertions(+), 88 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-06-30 17:46:30 UTC (rev 241469)
+++ extra-i686/PKGBUILD 2015-06-30 17:46:45 UTC (rev 241470)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: schuay jakob.gru...@gmail.com
-
-pkgname=ksshaskpass
-pkgver=5.3.1
-pkgrel=1
-pkgdesc='ssh-add helper that uses kwallet and kpassworddialog'
-url='https://projects.kde.org/projects/kde/workspace/ksshaskpass'
-license=('GPL')
-arch=('i686' 'x86_64')
-depends=('kwallet')
-makedepends=('extra-cmake-modules' 'kdoctools' 'python')
-provides=('x11-ssh-askpass' 'ksshaskpass-frameworks')
-conflicts=('x11-ssh-askpass' 'ksshaskpass-frameworks')
-replaces=('ksshaskpass-frameworks')
-groups=('plasma')
-source=(http://download.kde.org/stable/plasma/${pkgver}/${pkgname}-${pkgver}.tar.xz;
-$pkgname.sh)
-md5sums=('91b4249fcf8b48631c927fda4796a654'
- '70396ba019ae05cc91502456f548caff')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../ksshaskpass-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-package() {
-  cd build
-  make DESTDIR=$pkgdir install
-
-  install -Dm755 $srcdir/ksshaskpass.sh \
-${pkgdir}/etc/profile.d/ksshaskpass.sh
-}

Copied: ksshaskpass/repos/extra-i686/PKGBUILD (from rev 241469, 
ksshaskpass/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-06-30 17:46:45 UTC (rev 241470)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: schuay jakob.gru...@gmail.com
+
+pkgname=ksshaskpass
+pkgver=5.3.2
+pkgrel=1
+pkgdesc='ssh-add helper that uses kwallet and kpassworddialog'
+url='https://projects.kde.org/projects/kde/workspace/ksshaskpass'
+license=('GPL')
+arch=('i686' 'x86_64')
+depends=('kwallet')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+provides=('x11-ssh-askpass' 'ksshaskpass-frameworks')
+conflicts=('x11-ssh-askpass' 'ksshaskpass-frameworks')
+replaces=('ksshaskpass-frameworks')
+groups=('plasma')
+source=(http://download.kde.org/stable/plasma/${pkgver}/${pkgname}-${pkgver}.tar.xz;
+$pkgname.sh)
+md5sums=('946fec9696dc36119d3cb62b49d358c0'
+ '70396ba019ae05cc91502456f548caff')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../ksshaskpass-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+
+  install -Dm755 $srcdir/ksshaskpass.sh \
+${pkgdir}/etc/profile.d/ksshaskpass.sh
+}

Deleted: extra-i686/ksshaskpass.sh
===
--- extra-i686/ksshaskpass.sh   2015-06-30 17:46:30 UTC (rev 241469)
+++ extra-i686/ksshaskpass.sh   2015-06-30 17:46:45 UTC (rev 241470)
@@ -1 +0,0 @@
-test -f /usr/bin/ksshaskpass  export SSH_ASKPASS=/usr/bin/ksshaskpass

Copied: ksshaskpass/repos/extra-i686/ksshaskpass.sh (from rev 241469, 
ksshaskpass/trunk/ksshaskpass.sh)
===
--- extra-i686/ksshaskpass.sh   (rev 0)
+++ extra-i686/ksshaskpass.sh   2015-06-30 17:46:45 UTC (rev 241470)
@@ -0,0 +1 @@
+test -f /usr/bin/ksshaskpass  export SSH_ASKPASS=/usr/bin/ksshaskpass

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-06-30 17:46:30 UTC (rev 241469)
+++ extra-x86_64/PKGBUILD   2015-06-30 17:46:45 UTC 

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

2015-06-30 Thread Antonio Rojas
Date: Tuesday, June 30, 2015 @ 19:47:01
  Author: arojas
Revision: 241471

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

Added:
  sddm-kcm/repos/extra-i686/PKGBUILD
(from rev 241470, sddm-kcm/trunk/PKGBUILD)
  sddm-kcm/repos/extra-x86_64/PKGBUILD
(from rev 241470, sddm-kcm/trunk/PKGBUILD)
Deleted:
  sddm-kcm/repos/extra-i686/PKGBUILD
  sddm-kcm/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-06-30 17:46:45 UTC (rev 241470)
+++ extra-i686/PKGBUILD 2015-06-30 17:47:01 UTC (rev 241471)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Maintainer: Antonio Rojas
-
-pkgname=sddm-kcm
-pkgver=5.3.1
-pkgrel=1
-pkgdesc='KDE Config Module for SDDM'
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/workspace/sddm-kcm'
-license=('GPL')
-depends=('sddm' 'libxcursor' 'kio')
-makedepends=('extra-cmake-modules' 'kdoctools' 'qt5-tools')
-source=(http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz;)
-md5sums=('c28111930218ccdaac103d216c361558')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DLIB_INSTALL_DIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DSYSCONF_INSTALL_DIR=/etc \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=${pkgdir} install
-}
-

Copied: sddm-kcm/repos/extra-i686/PKGBUILD (from rev 241470, 
sddm-kcm/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-06-30 17:47:01 UTC (rev 241471)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Maintainer: Antonio Rojas
+
+pkgname=sddm-kcm
+pkgver=5.3.2
+pkgrel=1
+pkgdesc='KDE Config Module for SDDM'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/workspace/sddm-kcm'
+license=('GPL')
+depends=('sddm' 'libxcursor' 'kio')
+makedepends=('extra-cmake-modules' 'kdoctools' 'qt5-tools')
+source=(http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz;)
+md5sums=('8b6e50b709ca2dee2d46a13c1639885b')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DSYSCONF_INSTALL_DIR=/etc \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}
+

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-06-30 17:46:45 UTC (rev 241470)
+++ extra-x86_64/PKGBUILD   2015-06-30 17:47:01 UTC (rev 241471)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Maintainer: Antonio Rojas
-
-pkgname=sddm-kcm
-pkgver=5.3.1
-pkgrel=1
-pkgdesc='KDE Config Module for SDDM'
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/workspace/sddm-kcm'
-license=('GPL')
-depends=('sddm' 'libxcursor' 'kio')
-makedepends=('extra-cmake-modules' 'kdoctools' 'qt5-tools')
-source=(http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz;)
-md5sums=('c28111930218ccdaac103d216c361558')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DLIB_INSTALL_DIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DSYSCONF_INSTALL_DIR=/etc \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=${pkgdir} install
-}
-

Copied: sddm-kcm/repos/extra-x86_64/PKGBUILD (from rev 241470, 
sddm-kcm/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2015-06-30 17:47:01 UTC (rev 241471)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Maintainer: Antonio Rojas
+
+pkgname=sddm-kcm
+pkgver=5.3.2
+pkgrel=1
+pkgdesc='KDE Config Module for SDDM'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/workspace/sddm-kcm'
+license=('GPL')
+depends=('sddm' 'libxcursor' 'kio')
+makedepends=('extra-cmake-modules' 'kdoctools' 'qt5-tools')

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

2015-06-30 Thread Antonio Rojas
Date: Tuesday, June 30, 2015 @ 19:47:33
  Author: arojas
Revision: 241473

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

Added:
  plasma-sdk/repos/extra-i686/PKGBUILD
(from rev 241472, plasma-sdk/trunk/PKGBUILD)
  plasma-sdk/repos/extra-x86_64/PKGBUILD
(from rev 241472, plasma-sdk/trunk/PKGBUILD)
Deleted:
  plasma-sdk/repos/extra-i686/PKGBUILD
  plasma-sdk/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-06-30 17:47:17 UTC (rev 241472)
+++ extra-i686/PKGBUILD 2015-06-30 17:47:33 UTC (rev 241473)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas aro...@archlinux.org
-
-pkgname=plasma-sdk
-pkgver=5.3.1
-pkgrel=1
-pkgdesc=Applications useful for Plasma development
-arch=(i686 x86_64)
-url='https://projects.kde.org/projects/extragear/sdk/plasma-sdk'
-license=(LGPL)
-depends=(plasma-framework ktexteditor knewstuff qt5-webkit)
-makedepends=(extra-cmake-modules)
-source=(http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz;)
-md5sums=('72ffb0276e00fbdbd1d1f791e5e89ecc')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DLIB_INSTALL_DIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_TESTING=OFF
-}
-
-package() {
-  cd build
-  make DESTDIR=$pkgdir install
-}

Copied: plasma-sdk/repos/extra-i686/PKGBUILD (from rev 241472, 
plasma-sdk/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-06-30 17:47:33 UTC (rev 241473)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Antonio Rojas aro...@archlinux.org
+
+pkgname=plasma-sdk
+pkgver=5.3.2
+pkgrel=1
+pkgdesc=Applications useful for Plasma development
+arch=(i686 x86_64)
+url='https://projects.kde.org/projects/extragear/sdk/plasma-sdk'
+license=(LGPL)
+depends=(plasma-framework ktexteditor knewstuff qt5-webkit)
+makedepends=(extra-cmake-modules)
+source=(http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz;)
+md5sums=('c75095a584dbb9a93409d9f38d5c4210')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-06-30 17:47:17 UTC (rev 241472)
+++ extra-x86_64/PKGBUILD   2015-06-30 17:47:33 UTC (rev 241473)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas aro...@archlinux.org
-
-pkgname=plasma-sdk
-pkgver=5.3.1
-pkgrel=1
-pkgdesc=Applications useful for Plasma development
-arch=(i686 x86_64)
-url='https://projects.kde.org/projects/extragear/sdk/plasma-sdk'
-license=(LGPL)
-depends=(plasma-framework ktexteditor knewstuff qt5-webkit)
-makedepends=(extra-cmake-modules)
-source=(http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz;)
-md5sums=('72ffb0276e00fbdbd1d1f791e5e89ecc')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DLIB_INSTALL_DIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_TESTING=OFF
-}
-
-package() {
-  cd build
-  make DESTDIR=$pkgdir install
-}

Copied: plasma-sdk/repos/extra-x86_64/PKGBUILD (from rev 241472, 
plasma-sdk/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2015-06-30 17:47:33 UTC (rev 241473)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Antonio Rojas aro...@archlinux.org
+
+pkgname=plasma-sdk
+pkgver=5.3.2
+pkgrel=1
+pkgdesc=Applications useful for Plasma development
+arch=(i686 x86_64)
+url='https://projects.kde.org/projects/extragear/sdk/plasma-sdk'
+license=(LGPL)
+depends=(plasma-framework ktexteditor knewstuff qt5-webkit)
+makedepends=(extra-cmake-modules)
+source=(http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz;)
+md5sums=('c75095a584dbb9a93409d9f38d5c4210')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+}


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

2015-06-30 Thread Antonio Rojas
Date: Tuesday, June 30, 2015 @ 19:52:51
  Author: arojas
Revision: 136167

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

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

---+
 /PKGBUILD |   68 
 /muon.install |   24 ++
 community-i686/PKGBUILD   |   34 
 community-i686/muon.install   |   12 ---
 community-x86_64/PKGBUILD |   34 
 community-x86_64/muon.install |   12 ---
 6 files changed, 92 insertions(+), 92 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-06-30 17:52:04 UTC (rev 136166)
+++ community-i686/PKGBUILD 2015-06-30 17:52:51 UTC (rev 136167)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas aro...@archlinux.org 
-
-pkgname=muon
-pkgver=5.3.1
-pkgrel=1
-pkgdesc='A collection of package management tools for KDE'
-arch=(i686 x86_64)
-url='https://projects.kde.org/projects/kde/workspace/muon'
-license=(LGPL)
-depends=(packagekit-qt5 plasma-framework knewstuff appstream-qt 
archlinux-appstream-data hicolor-icon-theme)
-makedepends=(extra-cmake-modules python)
-source=(http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz;)
-install=$pkgname.install
-md5sums=('056efb8d201323d5a56a7628f9d456ff')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../muon-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DLIB_INSTALL_DIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=$pkgdir install
-}

Copied: muon/repos/community-i686/PKGBUILD (from rev 136166, 
muon/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-06-30 17:52:51 UTC (rev 136167)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Antonio Rojas aro...@archlinux.org 
+
+pkgname=muon
+pkgver=5.3.2
+pkgrel=1
+pkgdesc='A collection of package management tools for KDE'
+arch=(i686 x86_64)
+url='https://projects.kde.org/projects/kde/workspace/muon'
+license=(LGPL)
+depends=(packagekit-qt5 plasma-framework knewstuff appstream-qt 
archlinux-appstream-data hicolor-icon-theme)
+makedepends=(extra-cmake-modules python)
+source=(http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz;)
+install=$pkgname.install
+md5sums=('19ecabd8d2a43ff51d23d1452f1e3528')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../muon-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+}

Deleted: community-i686/muon.install
===
--- community-i686/muon.install 2015-06-30 17:52:04 UTC (rev 136166)
+++ community-i686/muon.install 2015-06-30 17:52:51 UTC (rev 136167)
@@ -1,12 +0,0 @@
-post_install() {
-  update-desktop-database -q
-  xdg-icon-resource forceupdate --theme hicolor  /dev/null
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  post_install $1
-}

Copied: muon/repos/community-i686/muon.install (from rev 136166, 
muon/trunk/muon.install)
===
--- community-i686/muon.install (rev 0)
+++ community-i686/muon.install 2015-06-30 17:52:51 UTC (rev 136167)
@@ -0,0 +1,12 @@
+post_install() {
+  update-desktop-database -q
+  xdg-icon-resource forceupdate --theme hicolor  /dev/null
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  post_install $1
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-06-30 17:52:04 UTC (rev 136166)
+++ community-x86_64/PKGBUILD   2015-06-30 17:52:51 UTC (rev 136167)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas aro...@archlinux.org 
-
-pkgname=muon
-pkgver=5.3.1
-pkgrel=1
-pkgdesc='A collection of package management tools for KDE'
-arch=(i686 x86_64)
-url='https://projects.kde.org/projects/kde/workspace/muon'
-license=(LGPL)
-depends=(packagekit-qt5 plasma-framework knewstuff appstream-qt 
archlinux-appstream-data hicolor-icon-theme)
-makedepends=(extra-cmake-modules python)

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

2015-06-30 Thread Antonio Rojas
Date: Tuesday, June 30, 2015 @ 19:43:54
  Author: arojas
Revision: 241459

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-06-30 17:43:38 UTC (rev 241458)
+++ extra-i686/PKGBUILD 2015-06-30 17:43:54 UTC (rev 241459)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Antonio Rojas
-
-pkgname=powerdevil
-pkgver=5.3.1
-pkgrel=1
-pkgdesc='Manages the power consumption settings of a Plasma Shell'
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/workspace/powerdevil'
-license=('LGPL')
-depends=('plasma-workspace' 'kidletime')
-makedepends=('extra-cmake-modules' 'kdoctools' 'python')
-conflicts=('kdebase-workspace')
-groups=('plasma')
-source=(http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz;)
-md5sums=('3f4924bd90fd05605645c49d5a4ed2e5')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DLIB_INSTALL_DIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=${pkgdir} install
-}

Copied: powerdevil/repos/extra-i686/PKGBUILD (from rev 241458, 
powerdevil/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-06-30 17:43:54 UTC (rev 241459)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Antonio Rojas
+
+pkgname=powerdevil
+pkgver=5.3.2
+pkgrel=1
+pkgdesc='Manages the power consumption settings of a Plasma Shell'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/workspace/powerdevil'
+license=('LGPL')
+depends=('plasma-workspace' 'kidletime')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+conflicts=('kdebase-workspace')
+groups=('plasma')
+source=(http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz;)
+md5sums=('b3ec73b792522fad1c5643e83dbe92b4')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-06-30 17:43:38 UTC (rev 241458)
+++ extra-x86_64/PKGBUILD   2015-06-30 17:43:54 UTC (rev 241459)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Antonio Rojas
-
-pkgname=powerdevil
-pkgver=5.3.1
-pkgrel=1
-pkgdesc='Manages the power consumption settings of a Plasma Shell'
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/workspace/powerdevil'
-license=('LGPL')
-depends=('plasma-workspace' 'kidletime')
-makedepends=('extra-cmake-modules' 'kdoctools' 'python')
-conflicts=('kdebase-workspace')
-groups=('plasma')
-source=(http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz;)
-md5sums=('3f4924bd90fd05605645c49d5a4ed2e5')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DLIB_INSTALL_DIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=${pkgdir} install
-}

Copied: powerdevil/repos/extra-x86_64/PKGBUILD (from rev 241458, 
powerdevil/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2015-06-30 17:43:54 UTC (rev 241459)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Antonio Rojas
+
+pkgname=powerdevil
+pkgver=5.3.2
+pkgrel=1
+pkgdesc='Manages the power consumption settings of a Plasma Shell'
+arch=('i686' 'x86_64')

[arch-commits] Commit in polkit-kde-agent/repos (4 files)

2015-06-30 Thread Antonio Rojas
Date: Tuesday, June 30, 2015 @ 19:44:10
  Author: arojas
Revision: 241460

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

Added:
  polkit-kde-agent/repos/extra-i686/PKGBUILD
(from rev 241459, polkit-kde-agent/trunk/PKGBUILD)
  polkit-kde-agent/repos/extra-x86_64/PKGBUILD
(from rev 241459, polkit-kde-agent/trunk/PKGBUILD)
Deleted:
  polkit-kde-agent/repos/extra-i686/PKGBUILD
  polkit-kde-agent/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-06-30 17:43:54 UTC (rev 241459)
+++ extra-i686/PKGBUILD 2015-06-30 17:44:10 UTC (rev 241460)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Antonio Rojas aro...@archlinux.org
-
-pkgname=polkit-kde-agent
-pkgver=5.3.1
-pkgrel=1
-pkgdesc='Daemon providing a polkit authentication UI for KDE'
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/workspace/polkit-kde-agent-1'
-license=('LGPL')
-depends=('knotifications')
-makedepends=('extra-cmake-modules' 'kdoctools' 'python')
-conflicts=('polkit-kde-frameworks')
-replaces=('polkit-kde-frameworks')
-source=(http://download.kde.org/stable/plasma/$pkgver/$pkgname-1-$pkgver.tar.xz;)
-md5sums=('e1f92e011891d1d5bb8e0c8ce622e9f1')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-1-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DLIB_INSTALL_DIR=lib \
--DLIBEXEC_INSTALL_DIR=lib/polkit-kde \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=$pkgdir install
-}

Copied: polkit-kde-agent/repos/extra-i686/PKGBUILD (from rev 241459, 
polkit-kde-agent/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-06-30 17:44:10 UTC (rev 241460)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Antonio Rojas aro...@archlinux.org
+
+pkgname=polkit-kde-agent
+pkgver=5.3.2
+pkgrel=1
+pkgdesc='Daemon providing a polkit authentication UI for KDE'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/workspace/polkit-kde-agent-1'
+license=('LGPL')
+depends=('knotifications')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+conflicts=('polkit-kde-frameworks')
+replaces=('polkit-kde-frameworks')
+source=(http://download.kde.org/stable/plasma/$pkgver/$pkgname-1-$pkgver.tar.xz;)
+md5sums=('7e86f9f03d35ac051035f444cb93c24a')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-1-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DLIBEXEC_INSTALL_DIR=lib/polkit-kde \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-06-30 17:43:54 UTC (rev 241459)
+++ extra-x86_64/PKGBUILD   2015-06-30 17:44:10 UTC (rev 241460)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Antonio Rojas aro...@archlinux.org
-
-pkgname=polkit-kde-agent
-pkgver=5.3.1
-pkgrel=1
-pkgdesc='Daemon providing a polkit authentication UI for KDE'
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/workspace/polkit-kde-agent-1'
-license=('LGPL')
-depends=('knotifications')
-makedepends=('extra-cmake-modules' 'kdoctools' 'python')
-conflicts=('polkit-kde-frameworks')
-replaces=('polkit-kde-frameworks')
-source=(http://download.kde.org/stable/plasma/$pkgver/$pkgname-1-$pkgver.tar.xz;)
-md5sums=('e1f92e011891d1d5bb8e0c8ce622e9f1')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-1-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DLIB_INSTALL_DIR=lib \
--DLIBEXEC_INSTALL_DIR=lib/polkit-kde \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=$pkgdir install
-}

Copied: polkit-kde-agent/repos/extra-x86_64/PKGBUILD (from rev 241459, 
polkit-kde-agent/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2015-06-30 17:44:10 UTC (rev 241460)
@@ -0,0 +1,39 @@
+# 

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

2015-06-30 Thread Antonio Rojas
Date: Tuesday, June 30, 2015 @ 19:44:41
  Author: arojas
Revision: 241462

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

Added:
  plasma-desktop/repos/extra-i686/PKGBUILD
(from rev 241461, plasma-desktop/trunk/PKGBUILD)
  plasma-desktop/repos/extra-i686/plasma-desktop.install
(from rev 241461, plasma-desktop/trunk/plasma-desktop.install)
  plasma-desktop/repos/extra-x86_64/PKGBUILD
(from rev 241461, plasma-desktop/trunk/PKGBUILD)
  plasma-desktop/repos/extra-x86_64/plasma-desktop.install
(from rev 241461, plasma-desktop/trunk/plasma-desktop.install)
Deleted:
  plasma-desktop/repos/extra-i686/PKGBUILD
  plasma-desktop/repos/extra-i686/plasma-desktop.install
  plasma-desktop/repos/extra-x86_64/PKGBUILD
  plasma-desktop/repos/extra-x86_64/plasma-desktop.install

-+
 /PKGBUILD   |   88 ++
 /plasma-desktop.install |   24 +
 extra-i686/PKGBUILD |   49 --
 extra-i686/plasma-desktop.install   |   12 
 extra-x86_64/PKGBUILD   |   49 --
 extra-x86_64/plasma-desktop.install |   12 
 6 files changed, 112 insertions(+), 122 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-06-30 17:44:21 UTC (rev 241461)
+++ extra-i686/PKGBUILD 2015-06-30 17:44:41 UTC (rev 241462)
@@ -1,49 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Antonio Rojas
-
-pkgname=plasma-desktop
-pkgver=5.3.1
-pkgrel=3
-pkgdesc='KDE Plasma Desktop'
-arch=('i686' 'x86_64')
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=('LGPL')
-depends=('powerdevil' 'polkit-kde-agent'
- 'libcanberra' 'kwin' 'libusb-compat' 'libxkbfile' 'kmenuedit'
- 'systemsettings' 'ksysguard' 'kpeople' 'baloo')
-makedepends=('extra-cmake-modules' 'kdoctools' 'boost' 'xf86-input-evdev' 
'xf86-input-synaptics' 'xorg-server-devel')
-optdepends=('plasma-nm: Network manager applet')
-conflicts=('kdebase-workspace' 'kcm-touchpad-frameworks')
-replaces=('kcm-touchpad-frameworks')
-install=${pkgname}.install
-groups=('plasma')
-source=(http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz;
 'trash-applet.patch')
-md5sums=('df4a3fabb26c7aa4f87405185835c20c'
- '1e13230b7b5858e6c2c9b327095917e7')
-
-prepare() {
-  mkdir build
-
-# Fix trash applet loading with plasma-framework 5.11 
https://bugs.kde.org/show_bug.cgi?id=349207
-  cd $pkgname-$pkgver
-  patch -p1 -i $srcdir/trash-applet.patch
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DLIB_INSTALL_DIR=lib \
--DLIBEXEC_INSTALL_DIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=${pkgdir} install
-}

Copied: plasma-desktop/repos/extra-i686/PKGBUILD (from rev 241461, 
plasma-desktop/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-06-30 17:44:41 UTC (rev 241462)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Antonio Rojas
+
+pkgname=plasma-desktop
+pkgver=5.3.2
+pkgrel=1
+pkgdesc='KDE Plasma Desktop'
+arch=('i686' 'x86_64')
+url='https://www.kde.org/workspaces/plasmadesktop/'
+license=('LGPL')
+depends=('powerdevil' 'polkit-kde-agent'
+ 'libcanberra' 'kwin' 'libusb-compat' 'libxkbfile' 'kmenuedit'
+ 'systemsettings' 'ksysguard' 'kpeople' 'baloo')
+makedepends=('extra-cmake-modules' 'kdoctools' 'boost' 'xf86-input-evdev' 
'xf86-input-synaptics' 'xorg-server-devel')
+optdepends=('plasma-nm: Network manager applet')
+conflicts=('kdebase-workspace' 'kcm-touchpad-frameworks')
+replaces=('kcm-touchpad-frameworks')
+install=${pkgname}.install
+groups=('plasma')
+source=(http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz;)
+md5sums=('535e062e140b8eb25d557aba7eb1bc24')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DLIBEXEC_INSTALL_DIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-i686/plasma-desktop.install
===
--- extra-i686/plasma-desktop.install   2015-06-30 17:44:21 UTC (rev 241461)
+++ extra-i686/plasma-desktop.install   2015-06-30 17:44:41 UTC (rev 241462)
@@ -1,12 +0,0 @@
-post_install() {
-xdg-icon-resource forceupdate --theme hicolor  /dev/null
-

[arch-commits] Commit in plasma-workspace-wallpapers/repos/extra-any (2 files)

2015-06-30 Thread Antonio Rojas
Date: Tuesday, June 30, 2015 @ 19:44:21
  Author: arojas
Revision: 241461

archrelease: copy trunk to extra-any

Added:
  plasma-workspace-wallpapers/repos/extra-any/PKGBUILD
(from rev 241460, plasma-workspace-wallpapers/trunk/PKGBUILD)
Deleted:
  plasma-workspace-wallpapers/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-06-30 17:44:10 UTC (rev 241460)
+++ PKGBUILD2015-06-30 17:44:21 UTC (rev 241461)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Antonio Rojas
-
-pkgname=plasma-workspace-wallpapers
-pkgver=5.3.1
-pkgrel=1
-pkgdesc='Additional wallpapers for the Plasma Workspace'
-arch=('any')
-url='https://projects.kde.org/projects/kde/workspace/plasma-workspace'
-license=('LGPL')
-makedepends=('extra-cmake-modules')
-groups=('plasma')
-source=(http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz;)
-md5sums=('a4bbe5510e26e04bf328aa173909fa29')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=${pkgdir} install
-}

Copied: plasma-workspace-wallpapers/repos/extra-any/PKGBUILD (from rev 241460, 
plasma-workspace-wallpapers/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-06-30 17:44:21 UTC (rev 241461)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Antonio Rojas
+
+pkgname=plasma-workspace-wallpapers
+pkgver=5.3.2
+pkgrel=1
+pkgdesc='Additional wallpapers for the Plasma Workspace'
+arch=('any')
+url='https://projects.kde.org/projects/kde/workspace/plasma-workspace'
+license=('LGPL')
+makedepends=('extra-cmake-modules')
+groups=('plasma')
+source=(http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz;)
+md5sums=('efb3cde527a0cdd081475356172bb3fb')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}


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

2015-06-30 Thread Antonio Rojas
Date: Tuesday, June 30, 2015 @ 19:52:04
  Author: arojas
Revision: 136166

Update to 5.3.2

Modified:
  muon/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-30 17:15:44 UTC (rev 136165)
+++ PKGBUILD2015-06-30 17:52:04 UTC (rev 136166)
@@ -2,7 +2,7 @@
 # Maintainer: Antonio Rojas aro...@archlinux.org 
 
 pkgname=muon
-pkgver=5.3.1
+pkgver=5.3.2
 pkgrel=1
 pkgdesc='A collection of package management tools for KDE'
 arch=(i686 x86_64)
@@ -12,7 +12,7 @@
 makedepends=(extra-cmake-modules python)
 
source=(http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz;)
 install=$pkgname.install
-md5sums=('056efb8d201323d5a56a7628f9d456ff')
+md5sums=('19ecabd8d2a43ff51d23d1452f1e3528')
 
 prepare() {
   mkdir -p build


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

2015-06-30 Thread Antonio Rojas
Date: Tuesday, June 30, 2015 @ 19:42:22
  Author: arojas
Revision: 241453

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

Added:
  plasma-workspace/repos/extra-i686/PKGBUILD
(from rev 241452, plasma-workspace/trunk/PKGBUILD)
  plasma-workspace/repos/extra-i686/kde.pam
(from rev 241452, plasma-workspace/trunk/kde.pam)
  plasma-workspace/repos/extra-x86_64/PKGBUILD
(from rev 241452, plasma-workspace/trunk/PKGBUILD)
  plasma-workspace/repos/extra-x86_64/kde.pam
(from rev 241452, plasma-workspace/trunk/kde.pam)
Deleted:
  plasma-workspace/repos/extra-i686/PKGBUILD
  plasma-workspace/repos/extra-i686/kde.pam
  plasma-workspace/repos/extra-x86_64/PKGBUILD
  plasma-workspace/repos/extra-x86_64/kde.pam

---+
 /PKGBUILD |  144 
 /kde.pam  |   12 
 extra-i686/PKGBUILD   |   72 
 extra-i686/kde.pam|6 --
 extra-x86_64/PKGBUILD |   72 
 extra-x86_64/kde.pam  |6 --
 6 files changed, 156 insertions(+), 156 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-06-30 17:42:06 UTC (rev 241452)
+++ extra-i686/PKGBUILD 2015-06-30 17:42:22 UTC (rev 241453)
@@ -1,72 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Antonio Rojas
-# Contributor: Alexey D. lq07829icatm at rambler.ru
-
-pkgbase=plasma-workspace
-pkgname=('plasma-workspace' 'drkonqi')
-pkgver=5.3.1
-pkgrel=1
-pkgdesc='KDE Plasma Workspace'
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/workspace/plasma-workspace'
-license=('LGPL')
-# note on libxdamage:
-# not detected by namcap because libgl depends on it
-# but nvidia providing libgl does not depend on libxdamage
-depends=('knewstuff' 'kjsembed' 'knotifyconfig' 'libxdamage' 'kwayland'
- 'libksysguard' 'libkscreen' 'ktexteditor' 'libqalculate'
- 'qt5-tools' 'kded' 'kde-cli-tools' 'xorg-xrdb' 'xorg-xsetroot'
- 'xorg-xmessage' 'xorg-xprop' 'milou' 'breeze')
-makedepends=('extra-cmake-modules' 'kdoctools' 'kwin' 'gpsd' 'baloo'
- 'krunner' 'kxmlrpcclient' 'networkmanager-qt')
-groups=('plasma')
-source=(http://download.kde.org/stable/plasma/${pkgver}/${pkgbase}-${pkgver}.tar.xz;
-'kde.pam')
-md5sums=('d76be06fa53bad880c2a1c5102f02b5b'
- '929b182dec8a096206ad493477c09d2c')
-
-prepare() {
-  mkdir build
-
-  cd ${pkgbase}-${pkgver}
-  # be sure to use the Qt5 version of qtpaths
-  sed -i 's:qtpaths:qtpaths-qt5:' startkde/startkde.cmake
-}
-
-build() {
-  cd build
-  cmake ../${pkgbase}-${pkgver} \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DLIB_INSTALL_DIR=lib \
--DLIBEXEC_INSTALL_DIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package_plasma-workspace() {
-  optdepends=('plasma-workspace-wallpapers: additional wallpapers'
-  'gpsd: GPS based geolocation' 'networkmanager-qt: IP based 
geolocation')
-  conflicts=('kdebase-workspace')
-
-  cd build
-  make DESTDIR=${pkgdir} install
-
-  install -D ${srcdir}/kde.pam \
-${pkgdir}/etc/pam.d/kde
-
-  # Remove conflicts with drkonqi
-  rm ${pkgdir}/usr/lib/drkonqi
-  rm -r ${pkgdir}/usr/share/drkonqi
-}
-
-package_drkonqi() {
-  pkgdesc='KDE crash handler'
-  depends=('kdewebkit' 'kxmlrpcclient')
-
-  cd build/drkonqi
-  make DESTDIR=${pkgdir} install
-}

Copied: plasma-workspace/repos/extra-i686/PKGBUILD (from rev 241452, 
plasma-workspace/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-06-30 17:42:22 UTC (rev 241453)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Antonio Rojas
+# Contributor: Alexey D. lq07829icatm at rambler.ru
+
+pkgbase=plasma-workspace
+pkgname=('plasma-workspace' 'drkonqi')
+pkgver=5.3.2
+pkgrel=1
+pkgdesc='KDE Plasma Workspace'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/workspace/plasma-workspace'
+license=('LGPL')
+# note on libxdamage:
+# not detected by namcap because libgl depends on it
+# but nvidia providing libgl does not depend on libxdamage
+depends=('knewstuff' 'kjsembed' 'knotifyconfig' 'libxdamage' 'kwayland'
+ 'libksysguard' 'libkscreen' 'ktexteditor' 'libqalculate'
+ 'qt5-tools' 'kded' 'kde-cli-tools' 'xorg-xrdb' 'xorg-xsetroot'
+ 'xorg-xmessage' 'xorg-xprop' 'milou' 'breeze')
+makedepends=('extra-cmake-modules' 'kdoctools' 'kwin' 'gpsd' 'baloo'
+ 'krunner' 'kxmlrpcclient' 'networkmanager-qt')
+groups=('plasma')
+source=(http://download.kde.org/stable/plasma/${pkgver}/${pkgbase}-${pkgver}.tar.xz;
+'kde.pam')

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

2015-06-30 Thread Antonio Rojas
Date: Tuesday, June 30, 2015 @ 19:42:06
  Author: arojas
Revision: 241452

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-06-30 17:41:51 UTC (rev 241451)
+++ extra-i686/PKGBUILD 2015-06-30 17:42:06 UTC (rev 241452)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Antonio Rojas
-
-pkgname=milou
-pkgver=5.3.1
-pkgrel=1
-pkgdesc=A dedicated search application built on top of Baloo
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/workspace/milou/'
-license=('LGPL')
-depends=('krunner')
-makedepends=('extra-cmake-modules' 'kdoctools' 'python')
-groups=('plasma')
-source=(http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz;)
-md5sums=('db724e09b969e3151a9ec11333d8e738')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DLIB_INSTALL_DIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=${pkgdir} install
-}

Copied: milou/repos/extra-i686/PKGBUILD (from rev 241451, milou/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-06-30 17:42:06 UTC (rev 241452)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Antonio Rojas
+
+pkgname=milou
+pkgver=5.3.2
+pkgrel=1
+pkgdesc=A dedicated search application built on top of Baloo
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/workspace/milou/'
+license=('LGPL')
+depends=('krunner')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+groups=('plasma')
+source=(http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz;)
+md5sums=('60265090f3243f2dddf81d90a14309d0')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-06-30 17:41:51 UTC (rev 241451)
+++ extra-x86_64/PKGBUILD   2015-06-30 17:42:06 UTC (rev 241452)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Antonio Rojas
-
-pkgname=milou
-pkgver=5.3.1
-pkgrel=1
-pkgdesc=A dedicated search application built on top of Baloo
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/workspace/milou/'
-license=('LGPL')
-depends=('krunner')
-makedepends=('extra-cmake-modules' 'kdoctools' 'python')
-groups=('plasma')
-source=(http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz;)
-md5sums=('db724e09b969e3151a9ec11333d8e738')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DLIB_INSTALL_DIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=${pkgdir} install
-}

Copied: milou/repos/extra-x86_64/PKGBUILD (from rev 241451, 
milou/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2015-06-30 17:42:06 UTC (rev 241452)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Antonio Rojas
+
+pkgname=milou
+pkgver=5.3.2
+pkgrel=1
+pkgdesc=A dedicated search application built on top of Baloo
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/workspace/milou/'
+license=('LGPL')
+depends=('krunner')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+groups=('plasma')
+source=(http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz;)

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

2015-06-30 Thread Antonio Rojas
Date: Tuesday, June 30, 2015 @ 19:42:39
  Author: arojas
Revision: 241454

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-06-30 17:42:22 UTC (rev 241453)
+++ extra-i686/PKGBUILD 2015-06-30 17:42:39 UTC (rev 241454)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Antonio Rojas
-
-pkgname=khotkeys
-pkgver=5.3.1
-pkgrel=1
-pkgdesc='KHotKeys'
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/workspace/khotkeys'
-license=('LGPL')
-depends=('plasma-workspace')
-makedepends=('extra-cmake-modules' 'kdoctools' 'python')
-conflicts=('kdebase-workspace')
-source=(http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz;)
-md5sums=('00b0d5c530424cb497347fefcf24f31b')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DLIB_INSTALL_DIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=${pkgdir} install
-}

Copied: khotkeys/repos/extra-i686/PKGBUILD (from rev 241453, 
khotkeys/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-06-30 17:42:39 UTC (rev 241454)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Antonio Rojas
+
+pkgname=khotkeys
+pkgver=5.3.2
+pkgrel=1
+pkgdesc='KHotKeys'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/workspace/khotkeys'
+license=('LGPL')
+depends=('plasma-workspace')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+conflicts=('kdebase-workspace')
+source=(http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz;)
+md5sums=('b8dfd877f63186c9029fbd1519e7e200')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-06-30 17:42:22 UTC (rev 241453)
+++ extra-x86_64/PKGBUILD   2015-06-30 17:42:39 UTC (rev 241454)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Antonio Rojas
-
-pkgname=khotkeys
-pkgver=5.3.1
-pkgrel=1
-pkgdesc='KHotKeys'
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/workspace/khotkeys'
-license=('LGPL')
-depends=('plasma-workspace')
-makedepends=('extra-cmake-modules' 'kdoctools' 'python')
-conflicts=('kdebase-workspace')
-source=(http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz;)
-md5sums=('00b0d5c530424cb497347fefcf24f31b')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DLIB_INSTALL_DIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=${pkgdir} install
-}

Copied: khotkeys/repos/extra-x86_64/PKGBUILD (from rev 241453, 
khotkeys/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2015-06-30 17:42:39 UTC (rev 241454)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Antonio Rojas
+
+pkgname=khotkeys
+pkgver=5.3.2
+pkgrel=1
+pkgdesc='KHotKeys'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/workspace/khotkeys'
+license=('LGPL')
+depends=('plasma-workspace')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+conflicts=('kdebase-workspace')
+source=(http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz;)
+md5sums=('b8dfd877f63186c9029fbd1519e7e200')
+

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

2015-06-30 Thread Antonio Rojas
Date: Tuesday, June 30, 2015 @ 19:47:17
  Author: arojas
Revision: 241472

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

Added:
  plasma-mediacenter/repos/extra-i686/PKGBUILD
(from rev 241471, plasma-mediacenter/trunk/PKGBUILD)
  plasma-mediacenter/repos/extra-x86_64/PKGBUILD
(from rev 241471, plasma-mediacenter/trunk/PKGBUILD)
Deleted:
  plasma-mediacenter/repos/extra-i686/PKGBUILD
  plasma-mediacenter/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-06-30 17:47:01 UTC (rev 241471)
+++ extra-i686/PKGBUILD 2015-06-30 17:47:17 UTC (rev 241472)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas aro...@archlinux.org
-# Contributor: Bhushan Shah bhush94 at gmail dot com
-
-pkgname=plasma-mediacenter
-pkgver=5.3.1
-pkgrel=1
-pkgdesc=A mediacenter user interface based on KDE Plasma components
-arch=(i686 x86_64)
-url=http://community.kde.org/Plasma/Plasma_Media_Center/;
-license=(GPL3)
-depends=(plasma-workspace baloo)
-makedepends=(extra-cmake-modules)
-groups=(plasma)
-source=(http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz;)
-md5sums=('2dfaabb811eb8126d796ad61a41196d4')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DLIB_INSTALL_DIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_TESTING=OFF
-}
-
-package() {
-  cd build
-  make DESTDIR=$pkgdir install
-}

Copied: plasma-mediacenter/repos/extra-i686/PKGBUILD (from rev 241471, 
plasma-mediacenter/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-06-30 17:47:17 UTC (rev 241472)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Antonio Rojas aro...@archlinux.org
+# Contributor: Bhushan Shah bhush94 at gmail dot com
+
+pkgname=plasma-mediacenter
+pkgver=5.3.2
+pkgrel=1
+pkgdesc=A mediacenter user interface based on KDE Plasma components
+arch=(i686 x86_64)
+url=http://community.kde.org/Plasma/Plasma_Media_Center/;
+license=(GPL3)
+depends=(plasma-workspace baloo)
+makedepends=(extra-cmake-modules)
+groups=(plasma)
+source=(http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz;)
+md5sums=('c778958bd03ba2940898cd10d76e3107')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-06-30 17:47:01 UTC (rev 241471)
+++ extra-x86_64/PKGBUILD   2015-06-30 17:47:17 UTC (rev 241472)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas aro...@archlinux.org
-# Contributor: Bhushan Shah bhush94 at gmail dot com
-
-pkgname=plasma-mediacenter
-pkgver=5.3.1
-pkgrel=1
-pkgdesc=A mediacenter user interface based on KDE Plasma components
-arch=(i686 x86_64)
-url=http://community.kde.org/Plasma/Plasma_Media_Center/;
-license=(GPL3)
-depends=(plasma-workspace baloo)
-makedepends=(extra-cmake-modules)
-groups=(plasma)
-source=(http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz;)
-md5sums=('2dfaabb811eb8126d796ad61a41196d4')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DLIB_INSTALL_DIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_TESTING=OFF
-}
-
-package() {
-  cd build
-  make DESTDIR=$pkgdir install
-}

Copied: plasma-mediacenter/repos/extra-x86_64/PKGBUILD (from rev 241471, 
plasma-mediacenter/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2015-06-30 17:47:17 UTC (rev 241472)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Antonio Rojas aro...@archlinux.org
+# Contributor: Bhushan Shah bhush94 at gmail dot com
+
+pkgname=plasma-mediacenter
+pkgver=5.3.2
+pkgrel=1
+pkgdesc=A mediacenter user interface based on KDE Plasma components
+arch=(i686 x86_64)
+url=http://community.kde.org/Plasma/Plasma_Media_Center/;
+license=(GPL3)
+depends=(plasma-workspace baloo)
+makedepends=(extra-cmake-modules)
+groups=(plasma)
+source=(http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz;)
+md5sums=('c778958bd03ba2940898cd10d76e3107')

[arch-commits] Commit in bmon/repos/community-i686 (3 files)

2015-06-30 Thread Jaroslav Lichtblau
Date: Tuesday, June 30, 2015 @ 21:30:09
  Author: jlichtblau
Revision: 136172

archrelease: copy trunk to community-i686

Added:
  bmon/repos/community-i686/PKGBUILD
(from rev 136171, bmon/trunk/PKGBUILD)
Deleted:
  bmon/repos/community-i686/PKGBUILD
  bmon/repos/community-i686/bmon-assertion.patch

--+
 PKGBUILD |   72 +
 bmon-assertion.patch |7 
 2 files changed, 32 insertions(+), 47 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-06-30 19:28:17 UTC (rev 136171)
+++ PKGBUILD2015-06-30 19:30:09 UTC (rev 136172)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau dragonl...@aur.archlinux.org
-
-pkgname=bmon
-pkgver=3.6
-pkgrel=2
-pkgdesc=Portable bandwidth monitor and rate estimator
-arch=('i686' 'x86_64')
-url=http://github.com/tgraf/bmon/;
-license=('MIT' 'BSD')
-depends=('ncurses' 'libnl' 'confuse')
-makedepends=('autoconf')
-source=(http://github.com/tgraf/$pkgname/archive/v$pkgver.tar.gz
-bmon-assertion.patch)
-sha256sums=('7d9d9b5af751cb61e267b43309506f03e82636282742fce89209f2378ae6a4b1'
-'b97843e0ad7ea3d12570b37654a6f597e61324887db4aefb10b368e998f1baa0')
-
-prepare() {
-  cd ${srcdir}/$pkgname-$pkgver
-
-  patch -Np0 -i ${srcdir}/bmon-assertion.patch
-}
-
-build() {
-  cd ${srcdir}/$pkgname-$pkgver
-
-  ./autogen.sh
-  ./configure --prefix=/usr --sysconfdir=/etc
-  make
-}
-
-package() {
-  cd ${srcdir}/$pkgname-$pkgver
-
-  make DESTDIR=${pkgdir} install
-
-# Licenses
-  install -d ${pkgdir}/usr/share/licenses/$pkgname
-  cp LICENSE.{BSD,MIT} ${pkgdir}/usr/share/licenses/$pkgname
-}

Copied: bmon/repos/community-i686/PKGBUILD (from rev 136171, 
bmon/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-06-30 19:30:09 UTC (rev 136172)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau dragonl...@aur.archlinux.org
+
+pkgname=bmon
+pkgver=3.7
+pkgrel=1
+pkgdesc=Portable bandwidth monitor and rate estimator
+arch=('i686' 'x86_64')
+url=http://github.com/tgraf/bmon/;
+license=('MIT' 'BSD')
+depends=('ncurses' 'libnl' 'confuse')
+makedepends=('autoconf')
+source=($pkgname-$pkgver.tar.gz::http://github.com/tgraf/$pkgname/archive/v$pkgver.tar.gz)
+sha256sums=('1e595c9936d8dbc85d91ecc00c3b6a4e49d4f6cade7a8bced3b291925894bb16')
+
+build() {
+  cd ${srcdir}/$pkgname-$pkgver
+
+  ./autogen.sh
+  ./configure --prefix=/usr --sysconfdir=/etc
+  make
+}
+
+package() {
+  cd ${srcdir}/$pkgname-$pkgver
+
+  make DESTDIR=${pkgdir} install
+
+# Licenses
+  install -d ${pkgdir}/usr/share/licenses/$pkgname
+  cp LICENSE.{BSD,MIT} ${pkgdir}/usr/share/licenses/$pkgname
+}

Deleted: bmon-assertion.patch
===
--- bmon-assertion.patch2015-06-30 19:28:17 UTC (rev 136171)
+++ bmon-assertion.patch2015-06-30 19:30:09 UTC (rev 136172)
@@ -1,7 +0,0 @@
 src/bmon.c.old 2014-11-22 13:33:24.0 +0100
-+++ src/bmon.c 2015-02-05 19:56:39.791716556 +0100
-@@ -222,3 +222,3 @@
-   case 'a':
--  cfg_setint(cfg, show_all, 1);
-+  cfg_setbool(cfg, show_all, cfg_true);
-   break;


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

2015-06-30 Thread Antonio Rojas
Date: Tuesday, June 30, 2015 @ 22:19:13
  Author: arojas
Revision: 241496

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-06-30 20:18:57 UTC (rev 241495)
+++ extra-i686/PKGBUILD 2015-06-30 20:19:13 UTC (rev 241496)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-
-pkgname=libkcompactdisc
-pkgver=15.04.2
-pkgrel=1
-pkgdesc=A library for interfacing with CDs
-url='https://projects.kde.org/projects/kde/kdemultimedia/libkcompactdisc'
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-depends=('kdelibs')
-makedepends=('cmake' 'automoc4')
-replaces=('kdemultimedia-kioslave')
-conflicts=('kdemultimedia-kioslave')
-source=(http://download.kde.org/stable/applications/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('e466028467364db896320a45eb606e461e6f97e4')
-
-build() {
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-}

Copied: libkcompactdisc/repos/extra-i686/PKGBUILD (from rev 241495, 
libkcompactdisc/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-06-30 20:19:13 UTC (rev 241496)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+
+pkgname=libkcompactdisc
+pkgver=15.04.3
+pkgrel=1
+pkgdesc=A library for interfacing with CDs
+url='https://projects.kde.org/projects/kde/kdemultimedia/libkcompactdisc'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdelibs')
+makedepends=('cmake' 'automoc4')
+replaces=('kdemultimedia-kioslave')
+conflicts=('kdemultimedia-kioslave')
+source=(http://download.kde.org/stable/applications/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('db281e6285a480f164175838158e01344041ce58')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-06-30 20:18:57 UTC (rev 241495)
+++ extra-x86_64/PKGBUILD   2015-06-30 20:19:13 UTC (rev 241496)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-
-pkgname=libkcompactdisc
-pkgver=15.04.2
-pkgrel=1
-pkgdesc=A library for interfacing with CDs
-url='https://projects.kde.org/projects/kde/kdemultimedia/libkcompactdisc'
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-depends=('kdelibs')
-makedepends=('cmake' 'automoc4')
-replaces=('kdemultimedia-kioslave')
-conflicts=('kdemultimedia-kioslave')
-source=(http://download.kde.org/stable/applications/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('e466028467364db896320a45eb606e461e6f97e4')
-
-build() {
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-}

Copied: libkcompactdisc/repos/extra-x86_64/PKGBUILD (from rev 241495, 
libkcompactdisc/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2015-06-30 20:19:13 UTC (rev 241496)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+
+pkgname=libkcompactdisc
+pkgver=15.04.3
+pkgrel=1
+pkgdesc=A library for interfacing with CDs
+url='https://projects.kde.org/projects/kde/kdemultimedia/libkcompactdisc'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdelibs')
+makedepends=('cmake' 'automoc4')
+replaces=('kdemultimedia-kioslave')
+conflicts=('kdemultimedia-kioslave')

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

2015-06-30 Thread Antonio Rojas
Date: Tuesday, June 30, 2015 @ 22:19:46
  Author: arojas
Revision: 241498

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-06-30 20:19:30 UTC (rev 241497)
+++ extra-i686/PKGBUILD 2015-06-30 20:19:46 UTC (rev 241498)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-
-pkgname=libkmahjongg
-pkgver=15.04.2
-pkgrel=1
-pkgdesc=Common code, backgrounds and tile sets for games using Mahjongg tiles
-url=https://projects.kde.org/projects/kde/kdegames/libmahjongg;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-depends=('kconfigwidgets' 'kcompletion' 'qt5-svg')
-makedepends=('extra-cmake-modules' 'python')
-source=(http://download.kde.org/stable/applications/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('0ca0286d4e073f237ec4a6a1df483c6826b2d5b8')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_TESTING=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=${pkgdir} install
-}

Copied: libkmahjongg/repos/extra-i686/PKGBUILD (from rev 241497, 
libkmahjongg/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-06-30 20:19:46 UTC (rev 241498)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+
+pkgname=libkmahjongg
+pkgver=15.04.3
+pkgrel=1
+pkgdesc=Common code, backgrounds and tile sets for games using Mahjongg tiles
+url=https://projects.kde.org/projects/kde/kdegames/libmahjongg;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kconfigwidgets' 'kcompletion' 'qt5-svg')
+makedepends=('extra-cmake-modules' 'python')
+source=(http://download.kde.org/stable/applications/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('48d84af206c96168062441f8bc04c00811f31b5b')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-06-30 20:19:30 UTC (rev 241497)
+++ extra-x86_64/PKGBUILD   2015-06-30 20:19:46 UTC (rev 241498)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-
-pkgname=libkmahjongg
-pkgver=15.04.2
-pkgrel=1
-pkgdesc=Common code, backgrounds and tile sets for games using Mahjongg tiles
-url=https://projects.kde.org/projects/kde/kdegames/libmahjongg;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-depends=('kconfigwidgets' 'kcompletion' 'qt5-svg')
-makedepends=('extra-cmake-modules' 'python')
-source=(http://download.kde.org/stable/applications/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('0ca0286d4e073f237ec4a6a1df483c6826b2d5b8')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_TESTING=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=${pkgdir} install
-}

Copied: libkmahjongg/repos/extra-x86_64/PKGBUILD (from rev 241497, 
libkmahjongg/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2015-06-30 20:19:46 UTC (rev 241498)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+
+pkgname=libkmahjongg
+pkgver=15.04.3
+pkgrel=1
+pkgdesc=Common code, backgrounds and tile sets for games using Mahjongg tiles
+url=https://projects.kde.org/projects/kde/kdegames/libmahjongg;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')

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

2015-06-30 Thread Antonio Rojas
Date: Tuesday, June 30, 2015 @ 22:19:30
  Author: arojas
Revision: 241497

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-06-30 20:19:13 UTC (rev 241496)
+++ extra-i686/PKGBUILD 2015-06-30 20:19:30 UTC (rev 241497)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-
-pkgname=libkdegames
-pkgver=15.04.2
-pkgrel=1
-pkgdesc=Common code and data for many KDE games
-url=https://projects.kde.org/projects/kde/kdegames/libkdegames;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-depends=('kdelibs4support' 'kdeclarative' 'kdnssd' 'knewstuff' 'openal')
-makedepends=('extra-cmake-modules' 'python' 'kdoctools')
-source=(http://download.kde.org/stable/applications/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('de37e58a7e977859132f7fa6a3f849fdbc53653e')
-
-build() {
-  mkdir build
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_TESTING=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=${pkgdir} install
-}

Copied: libkdegames/repos/extra-i686/PKGBUILD (from rev 241496, 
libkdegames/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-06-30 20:19:30 UTC (rev 241497)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+
+pkgname=libkdegames
+pkgver=15.04.3
+pkgrel=1
+pkgdesc=Common code and data for many KDE games
+url=https://projects.kde.org/projects/kde/kdegames/libkdegames;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdelibs4support' 'kdeclarative' 'kdnssd' 'knewstuff' 'openal')
+makedepends=('extra-cmake-modules' 'python' 'kdoctools')
+source=(http://download.kde.org/stable/applications/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('c23d5fa9ed75ec5c4067e9ed99ef01f41353dbef')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-06-30 20:19:13 UTC (rev 241496)
+++ extra-x86_64/PKGBUILD   2015-06-30 20:19:30 UTC (rev 241497)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-
-pkgname=libkdegames
-pkgver=15.04.2
-pkgrel=1
-pkgdesc=Common code and data for many KDE games
-url=https://projects.kde.org/projects/kde/kdegames/libkdegames;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-depends=('kdelibs4support' 'kdeclarative' 'kdnssd' 'knewstuff' 'openal')
-makedepends=('extra-cmake-modules' 'python' 'kdoctools')
-source=(http://download.kde.org/stable/applications/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('de37e58a7e977859132f7fa6a3f849fdbc53653e')
-
-build() {
-  mkdir build
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_TESTING=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=${pkgdir} install
-}

Copied: libkdegames/repos/extra-x86_64/PKGBUILD (from rev 241496, 
libkdegames/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2015-06-30 20:19:30 UTC (rev 241497)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+
+pkgname=libkdegames
+pkgver=15.04.3
+pkgrel=1
+pkgdesc=Common code and data for many KDE games
+url=https://projects.kde.org/projects/kde/kdegames/libkdegames;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdelibs4support' 'kdeclarative' 'kdnssd' 'knewstuff' 'openal')

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

2015-06-30 Thread Antonio Rojas
Date: Tuesday, June 30, 2015 @ 22:20:02
  Author: arojas
Revision: 241499

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-06-30 20:19:46 UTC (rev 241498)
+++ extra-i686/PKGBUILD 2015-06-30 20:20:02 UTC (rev 241499)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-
-pkgname=libkomparediff2
-pkgver=15.04.2
-pkgrel=1
-pkgdesc=Library to compare files and strings
-url='https://projects.kde.org/projects/kde/kdesdk/libkomparediff2'
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-depends=('kparts')
-makedepends=('extra-cmake-modules')
-source=(http://download.kde.org/stable/applications/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('267476bad7b45345c9255363cc1e348327cb1821')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_TESTING=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=${pkgdir} install
-}

Copied: libkomparediff2/repos/extra-i686/PKGBUILD (from rev 241498, 
libkomparediff2/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-06-30 20:20:02 UTC (rev 241499)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+
+pkgname=libkomparediff2
+pkgver=15.04.3
+pkgrel=1
+pkgdesc=Library to compare files and strings
+url='https://projects.kde.org/projects/kde/kdesdk/libkomparediff2'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kparts')
+makedepends=('extra-cmake-modules')
+source=(http://download.kde.org/stable/applications/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('b58d9829be53728cd3b62202e6c7808d5160ff89')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-06-30 20:19:46 UTC (rev 241498)
+++ extra-x86_64/PKGBUILD   2015-06-30 20:20:02 UTC (rev 241499)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-
-pkgname=libkomparediff2
-pkgver=15.04.2
-pkgrel=1
-pkgdesc=Library to compare files and strings
-url='https://projects.kde.org/projects/kde/kdesdk/libkomparediff2'
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-depends=('kparts')
-makedepends=('extra-cmake-modules')
-source=(http://download.kde.org/stable/applications/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('267476bad7b45345c9255363cc1e348327cb1821')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_TESTING=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=${pkgdir} install
-}

Copied: libkomparediff2/repos/extra-x86_64/PKGBUILD (from rev 241498, 
libkomparediff2/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2015-06-30 20:20:02 UTC (rev 241499)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+
+pkgname=libkomparediff2
+pkgver=15.04.3
+pkgrel=1
+pkgdesc=Library to compare files and strings
+url='https://projects.kde.org/projects/kde/kdesdk/libkomparediff2'
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kparts')
+makedepends=('extra-cmake-modules')
+source=(http://download.kde.org/stable/applications/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;)

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

2015-06-30 Thread Antonio Rojas
Date: Tuesday, June 30, 2015 @ 22:26:14
  Author: arojas
Revision: 241521

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

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

---+
 /PKGBUILD |   72 
 /kanagram.install |   22 
 extra-i686/PKGBUILD   |   36 
 extra-i686/kanagram.install   |   11 --
 extra-x86_64/PKGBUILD |   36 
 extra-x86_64/kanagram.install |   11 --
 6 files changed, 94 insertions(+), 94 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-06-30 20:25:59 UTC (rev 241520)
+++ extra-i686/PKGBUILD 2015-06-30 20:26:14 UTC (rev 241521)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-
-pkgname=kanagram
-pkgver=15.04.2
-pkgrel=1
-pkgdesc=Letter Order Game
-url=http://kde.org/applications/education/kanagram/;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kde-applications' 'kdeedu')
-depends=('libkeduvocdocument' 'kdeclarative' 'knewstuff' 'hicolor-icon-theme')
-makedepends=('extra-cmake-modules' 'kdoctools' 'python')
-replaces=('kdeedu-kanagram')
-conflicts=('kdeedu-kanagram')
-install=${pkgname}.install
-source=(http://download.kde.org/stable/applications/${pkgver}/src/kanagram-${pkgver}.tar.xz;)
-sha1sums=('f1f817dec131ab3e9396e4c5445498b9a4a8dd3a')
-
-build() {
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../kanagram-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_TESTING=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DSYSCONF_INSTALL_DIR=/etc
-  make
-}
-
-package() {
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-}

Copied: kanagram/repos/extra-i686/PKGBUILD (from rev 241520, 
kanagram/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-06-30 20:26:14 UTC (rev 241521)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+
+pkgname=kanagram
+pkgver=15.04.3
+pkgrel=1
+pkgdesc=Letter Order Game
+url=http://kde.org/applications/education/kanagram/;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdeedu')
+depends=('libkeduvocdocument' 'kdeclarative' 'knewstuff' 'hicolor-icon-theme')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+replaces=('kdeedu-kanagram')
+conflicts=('kdeedu-kanagram')
+install=${pkgname}.install
+source=(http://download.kde.org/stable/applications/${pkgver}/src/kanagram-${pkgver}.tar.xz;)
+sha1sums=('173b3930b13f3e9797545bf9b337064c0facb057')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../kanagram-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DSYSCONF_INSTALL_DIR=/etc
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-i686/kanagram.install
===
--- extra-i686/kanagram.install 2015-06-30 20:25:59 UTC (rev 241520)
+++ extra-i686/kanagram.install 2015-06-30 20:26:14 UTC (rev 241521)
@@ -1,11 +0,0 @@
-post_install() {
-   xdg-icon-resource forceupdate --theme hicolor  /dev/null
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: kanagram/repos/extra-i686/kanagram.install (from rev 241520, 
kanagram/trunk/kanagram.install)
===
--- extra-i686/kanagram.install (rev 0)
+++ extra-i686/kanagram.install 2015-06-30 20:26:14 UTC (rev 241521)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor  /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-06-30 20:25:59 UTC (rev 241520)
+++ extra-x86_64/PKGBUILD   2015-06-30 20:26:14 UTC (rev 241521)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-
-pkgname=kanagram
-pkgver=15.04.2

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

2015-06-30 Thread Antonio Rojas
Date: Tuesday, June 30, 2015 @ 22:25:59
  Author: arojas
Revision: 241520

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

Added:
  kdeedu-kalzium/repos/extra-i686/PKGBUILD
(from rev 241519, kdeedu-kalzium/trunk/PKGBUILD)
  kdeedu-kalzium/repos/extra-i686/kdeedu-kalzium.install
(from rev 241519, kdeedu-kalzium/trunk/kdeedu-kalzium.install)
  kdeedu-kalzium/repos/extra-x86_64/PKGBUILD
(from rev 241519, kdeedu-kalzium/trunk/PKGBUILD)
  kdeedu-kalzium/repos/extra-x86_64/kdeedu-kalzium.install
(from rev 241519, kdeedu-kalzium/trunk/kdeedu-kalzium.install)
Deleted:
  kdeedu-kalzium/repos/extra-i686/PKGBUILD
  kdeedu-kalzium/repos/extra-i686/kdeedu-kalzium.install
  kdeedu-kalzium/repos/extra-x86_64/PKGBUILD
  kdeedu-kalzium/repos/extra-x86_64/kdeedu-kalzium.install

-+
 /PKGBUILD   |   64 ++
 /kdeedu-kalzium.install |   24 
 extra-i686/PKGBUILD |   32 -
 extra-i686/kdeedu-kalzium.install   |   12 --
 extra-x86_64/PKGBUILD   |   32 -
 extra-x86_64/kdeedu-kalzium.install |   12 --
 6 files changed, 88 insertions(+), 88 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-06-30 20:25:44 UTC (rev 241519)
+++ extra-i686/PKGBUILD 2015-06-30 20:25:59 UTC (rev 241520)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-
-pkgname=kdeedu-kalzium
-pkgver=15.04.2
-pkgrel=1
-pkgdesc=Periodic Table of Elements
-url=http://kde.org/applications/education/kalzium/;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kde-applications' 'kdeedu')
-depends=('kdebase-runtime' 'avogadro' 'ocaml' 'chemical-mime-data')
-makedepends=('cmake' 'automoc4' 'mesa' 'eigen' 'eigen2' 'facile')
-install=${pkgname}.install
-source=(http://download.kde.org/stable/applications/${pkgver}/src/kalzium-${pkgver}.tar.xz;)
-sha1sums=('ec25594c6b5e69cec6f6a71315e1c763c4590d15')
-
-build() {
-  mkdir build
-  cd build
-  cmake ../kalzium-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=${pkgdir} install
-}

Copied: kdeedu-kalzium/repos/extra-i686/PKGBUILD (from rev 241519, 
kdeedu-kalzium/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-06-30 20:25:59 UTC (rev 241520)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdeedu-kalzium
+pkgver=15.04.3
+pkgrel=1
+pkgdesc=Periodic Table of Elements
+url=http://kde.org/applications/education/kalzium/;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdeedu')
+depends=('kdebase-runtime' 'avogadro' 'ocaml' 'chemical-mime-data')
+makedepends=('cmake' 'automoc4' 'mesa' 'eigen' 'eigen2' 'facile')
+install=${pkgname}.install
+source=(http://download.kde.org/stable/applications/${pkgver}/src/kalzium-${pkgver}.tar.xz;)
+sha1sums=('8a28cf600dbafe7b70d14f7ee99c522c89a9572c')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../kalzium-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-i686/kdeedu-kalzium.install
===
--- extra-i686/kdeedu-kalzium.install   2015-06-30 20:25:44 UTC (rev 241519)
+++ extra-i686/kdeedu-kalzium.install   2015-06-30 20:25:59 UTC (rev 241520)
@@ -1,12 +0,0 @@
-post_install() {
-   xdg-icon-resource forceupdate --theme hicolor  /dev/null
-update-desktop-database -q
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: kdeedu-kalzium/repos/extra-i686/kdeedu-kalzium.install (from rev 
241519, kdeedu-kalzium/trunk/kdeedu-kalzium.install)
===
--- extra-i686/kdeedu-kalzium.install   (rev 0)
+++ extra-i686/kdeedu-kalzium.install   2015-06-30 20:25:59 UTC (rev 241520)
@@ -0,0 +1,12 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor  /dev/null
+update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-06-30 20:25:44 UTC (rev 241519)
+++ extra-x86_64/PKGBUILD   2015-06-30 20:25:59 UTC (rev 241520)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino 

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

2015-06-30 Thread Antonio Rojas
Date: Tuesday, June 30, 2015 @ 22:27:03
  Author: arojas
Revision: 241524

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

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

---+
 /PKGBUILD |   78 
 /khangman.install |   22 +++
 extra-i686/PKGBUILD   |   39 
 extra-i686/khangman.install   |   11 -
 extra-x86_64/PKGBUILD |   39 
 extra-x86_64/khangman.install |   11 -
 6 files changed, 100 insertions(+), 100 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-06-30 20:26:47 UTC (rev 241523)
+++ extra-i686/PKGBUILD 2015-06-30 20:27:03 UTC (rev 241524)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-
-pkgname=khangman
-pkgver=15.04.2
-pkgrel=1
-pkgdesc=Hangman Game
-url=http://kde.org/applications/education/khangman/;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kde-applications' 'kdeedu')
-depends=('libkeduvocdocument' 'knewstuff' 'kdeclarative')
-makedepends=('extra-cmake-modules' 'kdoctools' 'python')
-replaces=('kdeedu-khangman')
-conflicts=('kdeedu-khangman')
-install=${pkgname}.install
-source=(http://download.kde.org/stable/applications/${pkgver}/src/khangman-${pkgver}.tar.xz;)
-sha1sums=('4418638d43dd6a7c1d73dc131238e220adfe33cf')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../khangman-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_TESTING=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DSYSCONF_INSTALL_DIR=/etc
-  make
-}
-
-package() {
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-}

Copied: khangman/repos/extra-i686/PKGBUILD (from rev 241523, 
khangman/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-06-30 20:27:03 UTC (rev 241524)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+
+pkgname=khangman
+pkgver=15.04.3
+pkgrel=1
+pkgdesc=Hangman Game
+url=http://kde.org/applications/education/khangman/;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdeedu')
+depends=('libkeduvocdocument' 'knewstuff' 'kdeclarative')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+replaces=('kdeedu-khangman')
+conflicts=('kdeedu-khangman')
+install=${pkgname}.install
+source=(http://download.kde.org/stable/applications/${pkgver}/src/khangman-${pkgver}.tar.xz;)
+sha1sums=('23831cf8fdc73173ffdbbeab246e5aa9f9ec2068')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../khangman-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DSYSCONF_INSTALL_DIR=/etc
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-i686/khangman.install
===
--- extra-i686/khangman.install 2015-06-30 20:26:47 UTC (rev 241523)
+++ extra-i686/khangman.install 2015-06-30 20:27:03 UTC (rev 241524)
@@ -1,11 +0,0 @@
-post_install() {
-   xdg-icon-resource forceupdate --theme hicolor  /dev/null
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: khangman/repos/extra-i686/khangman.install (from rev 241523, 
khangman/trunk/khangman.install)
===
--- extra-i686/khangman.install (rev 0)
+++ extra-i686/khangman.install 2015-06-30 20:27:03 UTC (rev 241524)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor  /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-06-30 20:26:47 UTC (rev 241523)
+++ extra-x86_64/PKGBUILD   2015-06-30 20:27:03 UTC (rev 241524)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-

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

2015-06-30 Thread Antonio Rojas
Date: Tuesday, June 30, 2015 @ 22:28:06
  Author: arojas
Revision: 241528

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-06-30 20:27:51 UTC (rev 241527)
+++ extra-i686/PKGBUILD 2015-06-30 20:28:06 UTC (rev 241528)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-
-pkgname=kmplot
-pkgver=15.04.2
-pkgrel=1
-pkgdesc=Mathematical Function Plotter
-url=http://kde.org/applications/education/kmplot/;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kde-applications' 'kdeedu')
-depends=('kdelibs4support')
-makedepends=('extra-cmake-modules' 'python' 'kdoctools')
-install=${pkgname}.install
-replaces=('kdeedu-kmplot')
-conflicts=('kdeedu-kmplot')
-source=(http://download.kde.org/stable/applications/${pkgver}/src/kmplot-${pkgver}.tar.xz;)
-sha1sums=('95b6848bd676a716ee4ebb8a0634e12ffc0913a1')
-
-build() {
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../kmplot-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_TESTING=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-}

Copied: kmplot/repos/extra-i686/PKGBUILD (from rev 241527, 
kmplot/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-06-30 20:28:06 UTC (rev 241528)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+
+pkgname=kmplot
+pkgver=15.04.3
+pkgrel=1
+pkgdesc=Mathematical Function Plotter
+url=http://kde.org/applications/education/kmplot/;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdeedu')
+depends=('kdelibs4support')
+makedepends=('extra-cmake-modules' 'python' 'kdoctools')
+install=${pkgname}.install
+replaces=('kdeedu-kmplot')
+conflicts=('kdeedu-kmplot')
+source=(http://download.kde.org/stable/applications/${pkgver}/src/kmplot-${pkgver}.tar.xz;)
+sha1sums=('3d42cebacf0e4b420f9f20bc08fee711d9e8dc68')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../kmplot-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-i686/kmplot.install
===
--- extra-i686/kmplot.install   2015-06-30 20:27:51 UTC (rev 241527)
+++ extra-i686/kmplot.install   2015-06-30 20:28:06 UTC (rev 241528)
@@ -1,12 +0,0 @@
-post_install() {
-   xdg-icon-resource forceupdate --theme hicolor  /dev/null
-update-desktop-database -q
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: kmplot/repos/extra-i686/kmplot.install (from rev 241527, 
kmplot/trunk/kmplot.install)
===
--- extra-i686/kmplot.install   (rev 0)
+++ extra-i686/kmplot.install   2015-06-30 20:28:06 UTC (rev 241528)
@@ -0,0 +1,12 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor  /dev/null
+update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-06-30 20:27:51 UTC (rev 241527)
+++ extra-x86_64/PKGBUILD   2015-06-30 20:28:06 UTC (rev 241528)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-
-pkgname=kmplot
-pkgver=15.04.2
-pkgrel=1
-pkgdesc=Mathematical Function Plotter

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

2015-06-30 Thread Antonio Rojas
Date: Tuesday, June 30, 2015 @ 22:27:51
  Author: arojas
Revision: 241527

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

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

---+
 /PKGBUILD |   72 
 /klettres.install |   22 
 extra-i686/PKGBUILD   |   36 
 extra-i686/klettres.install   |   11 --
 extra-x86_64/PKGBUILD |   36 
 extra-x86_64/klettres.install |   11 --
 6 files changed, 94 insertions(+), 94 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-06-30 20:27:34 UTC (rev 241526)
+++ extra-i686/PKGBUILD 2015-06-30 20:27:51 UTC (rev 241527)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-
-pkgname=klettres
-pkgver=15.04.2
-pkgrel=1
-pkgdesc=Learn The Alphabet
-url=http://kde.org/applications/education/klettres/;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kde-applications' 'kdeedu')
-depends=('kdelibs4support' 'knewstuff')
-makedepends=('extra-cmake-modules' 'python' 'kdoctools')
-install=${pkgname}.install
-replaces=('kdeedu-klettres')
-conflicts=('kdeedu-klettres')
-source=(http://download.kde.org/stable/applications/${pkgver}/src/klettres-${pkgver}.tar.xz;)
-sha1sums=('b7fa00348c563e2721fcbad64544ee1797e06361')
-
-build() {
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../klettres-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_TESTING=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-}

Copied: klettres/repos/extra-i686/PKGBUILD (from rev 241526, 
klettres/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-06-30 20:27:51 UTC (rev 241527)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+
+pkgname=klettres
+pkgver=15.04.3
+pkgrel=1
+pkgdesc=Learn The Alphabet
+url=http://kde.org/applications/education/klettres/;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdeedu')
+depends=('kdelibs4support' 'knewstuff')
+makedepends=('extra-cmake-modules' 'python' 'kdoctools')
+install=${pkgname}.install
+replaces=('kdeedu-klettres')
+conflicts=('kdeedu-klettres')
+source=(http://download.kde.org/stable/applications/${pkgver}/src/klettres-${pkgver}.tar.xz;)
+sha1sums=('d9afe0d3b7186fbabbc85dc0f506c36aa1747b90')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../klettres-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-i686/klettres.install
===
--- extra-i686/klettres.install 2015-06-30 20:27:34 UTC (rev 241526)
+++ extra-i686/klettres.install 2015-06-30 20:27:51 UTC (rev 241527)
@@ -1,11 +0,0 @@
-post_install() {
-   xdg-icon-resource forceupdate --theme hicolor  /dev/null
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: klettres/repos/extra-i686/klettres.install (from rev 241526, 
klettres/trunk/klettres.install)
===
--- extra-i686/klettres.install (rev 0)
+++ extra-i686/klettres.install 2015-06-30 20:27:51 UTC (rev 241527)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor  /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-06-30 20:27:34 UTC (rev 241526)
+++ extra-x86_64/PKGBUILD   2015-06-30 20:27:51 UTC (rev 241527)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-
-pkgname=klettres
-pkgver=15.04.2
-pkgrel=1
-pkgdesc=Learn The Alphabet

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

2015-06-30 Thread Antonio Rojas
Date: Tuesday, June 30, 2015 @ 22:27:34
  Author: arojas
Revision: 241526

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

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

+
 /PKGBUILD  |   78 +++
 /kiten.install |   22 
 extra-i686/PKGBUILD|   39 -
 extra-i686/kiten.install   |   11 --
 extra-x86_64/PKGBUILD  |   39 -
 extra-x86_64/kiten.install |   11 --
 6 files changed, 100 insertions(+), 100 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-06-30 20:27:19 UTC (rev 241525)
+++ extra-i686/PKGBUILD 2015-06-30 20:27:34 UTC (rev 241526)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-
-pkgname=kiten
-pkgver=15.04.2
-pkgrel=1
-pkgdesc=Japanese Reference/Study Tool
-url=http://kde.org/applications/education/kiten/;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kde-applications' 'kdeedu')
-depends=('khtml')
-makedepends=('extra-cmake-modules' 'python' 'kdoctools')
-install=${pkgname}.install
-conflicts=('kdeedu-kiten')
-replaces=('kdeedu-kiten')
-source=(http://download.kde.org/stable/applications/${pkgver}/src/kiten-${pkgver}.tar.xz;)
-sha1sums=('89383ab50c99b7233adbf03338bbe49b297a054d')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../kiten-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_TESTING=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-}

Copied: kiten/repos/extra-i686/PKGBUILD (from rev 241525, kiten/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-06-30 20:27:34 UTC (rev 241526)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+
+pkgname=kiten
+pkgver=15.04.3
+pkgrel=1
+pkgdesc=Japanese Reference/Study Tool
+url=http://kde.org/applications/education/kiten/;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdeedu')
+depends=('khtml')
+makedepends=('extra-cmake-modules' 'python' 'kdoctools')
+install=${pkgname}.install
+conflicts=('kdeedu-kiten')
+replaces=('kdeedu-kiten')
+source=(http://download.kde.org/stable/applications/${pkgver}/src/kiten-${pkgver}.tar.xz;)
+sha1sums=('0f59fc3b3a6462a65f4db141183fa8cfe7a02ef4')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../kiten-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-i686/kiten.install
===
--- extra-i686/kiten.install2015-06-30 20:27:19 UTC (rev 241525)
+++ extra-i686/kiten.install2015-06-30 20:27:34 UTC (rev 241526)
@@ -1,11 +0,0 @@
-post_install() {
-   xdg-icon-resource forceupdate --theme hicolor  /dev/null
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: kiten/repos/extra-i686/kiten.install (from rev 241525, 
kiten/trunk/kiten.install)
===
--- extra-i686/kiten.install(rev 0)
+++ extra-i686/kiten.install2015-06-30 20:27:34 UTC (rev 241526)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor  /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-06-30 20:27:19 UTC (rev 241525)
+++ extra-x86_64/PKGBUILD   2015-06-30 20:27:34 UTC (rev 241526)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-
-pkgname=kiten
-pkgver=15.04.2
-pkgrel=1
-pkgdesc=Japanese Reference/Study Tool
-url=http://kde.org/applications/education/kiten/;
-arch=('i686' 'x86_64')
-license=('GPL' 

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

2015-06-30 Thread Antonio Rojas
Date: Tuesday, June 30, 2015 @ 22:54:13
  Author: arojas
Revision: 241558

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

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

-+
 /PKGBUILD   |   70 ++
 /kmines.install |   22 +
 extra-i686/PKGBUILD |   35 -
 extra-i686/kmines.install   |   11 --
 extra-x86_64/PKGBUILD   |   35 -
 extra-x86_64/kmines.install |   11 --
 6 files changed, 92 insertions(+), 92 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-06-30 20:53:44 UTC (rev 241557)
+++ extra-i686/PKGBUILD 2015-06-30 20:54:13 UTC (rev 241558)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-
-pkgname=kmines
-pkgver=15.04.2
-pkgrel=1
-pkgdesc=The classic Minesweeper game
-url=http://kde.org/applications/games/kmines/;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kde-applications' 'kdegames')
-depends=('libkdegames' 'knotifyconfig')
-makedepends=('extra-cmake-modules' 'python' 'kdoctools')
-install=${pkgname}.install
-conflicts=('kdegames-kmines')
-replaces=('kdegames-kmines')
-source=(http://download.kde.org/stable/applications/${pkgver}/src/kmines-${pkgver}.tar.xz;)
-sha1sums=('1f926e474c435b844d4d3c6eee8892384768af36')
-
-build() {
-  mkdir build
-  cd build
-  cmake ../kmines-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_TESTING=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=${pkgdir} install
-}

Copied: kmines/repos/extra-i686/PKGBUILD (from rev 241557, 
kmines/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-06-30 20:54:13 UTC (rev 241558)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+
+pkgname=kmines
+pkgver=15.04.3
+pkgrel=1
+pkgdesc=The classic Minesweeper game
+url=http://kde.org/applications/games/kmines/;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde-applications' 'kdegames')
+depends=('libkdegames' 'knotifyconfig')
+makedepends=('extra-cmake-modules' 'python' 'kdoctools')
+install=${pkgname}.install
+conflicts=('kdegames-kmines')
+replaces=('kdegames-kmines')
+source=(http://download.kde.org/stable/applications/${pkgver}/src/kmines-${pkgver}.tar.xz;)
+sha1sums=('fba64af6cf9af985054e9235545e3e2c4cd020cc')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../kmines-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-i686/kmines.install
===
--- extra-i686/kmines.install   2015-06-30 20:53:44 UTC (rev 241557)
+++ extra-i686/kmines.install   2015-06-30 20:54:13 UTC (rev 241558)
@@ -1,11 +0,0 @@
-post_install() {
-   xdg-icon-resource forceupdate --theme hicolor  /dev/null
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: kmines/repos/extra-i686/kmines.install (from rev 241557, 
kmines/trunk/kmines.install)
===
--- extra-i686/kmines.install   (rev 0)
+++ extra-i686/kmines.install   2015-06-30 20:54:13 UTC (rev 241558)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor  /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-06-30 20:53:44 UTC (rev 241557)
+++ extra-x86_64/PKGBUILD   2015-06-30 20:54:13 UTC (rev 241558)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-
-pkgname=kmines
-pkgver=15.04.2
-pkgrel=1
-pkgdesc=The classic Minesweeper game
-url=http://kde.org/applications/games/kmines/;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kde-applications' 

  1   2   3   >