[arch-commits] Commit in girara/repos/community-i686 (4 files)

2016-10-18 Thread Johannes Löthberg
Date: Tuesday, October 18, 2016 @ 07:47:16
  Author: demize
Revision: 192485

archrelease: copy trunk to community-i686

Added:
  girara/repos/community-i686/PKGBUILD
(from rev 192484, girara/trunk/PKGBUILD)
  girara/repos/community-i686/fix-font-handling-gtk-3.21.patch
(from rev 192484, girara/trunk/fix-font-handling-gtk-3.21.patch)
  girara/repos/community-i686/revert-incorrect-changes.patch
(from rev 192484, girara/trunk/revert-incorrect-changes.patch)
Deleted:
  girara/repos/community-i686/PKGBUILD

--+
 PKGBUILD |   87 
 fix-font-handling-gtk-3.21.patch |  190 +
 revert-incorrect-changes.patch   |   30 +
 3 files changed, 265 insertions(+), 42 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-10-18 07:47:10 UTC (rev 192484)
+++ PKGBUILD2016-10-18 07:47:16 UTC (rev 192485)
@@ -1,42 +0,0 @@
-# $Id: PKGBUILD 192327 2016-10-15 22:02:26Z demize $
-# Maintainer: Johannes Löthberg 
-# Contributor: Daniel Wallace 
-# Contributor: Sergej Pupykin 
-# Contributor: mlq 
-
-pkgname=girara
-pkgver=0.2.6
-pkgrel=3
-
-pkgdesc="User interface library focused on simplicity and minimalism"
-url="http://pwmt.org/projects/girara";
-arch=('i686' 'x86_64')
-license=('custom')
-
-provides=('girara-gtk3' 'girara-common')
-replaces=('girara-gtk3' 'girara-common')
-conflicts=('girara-gtk3' 'girara-common')
-
-depends=('gtk3')
-
-source=(http://pwmt.org/projects/girara/download/girara-$pkgver.tar.gz
-fix-font-handling-gtk-3.21.patch)
-sha1sums=('674e4294fe091fe93a1c186d95b3263b30cd8a5e'
-  '609f469dc6ad4570959dea028fd36f8ba8562231')
-
-prepare() {
-  cd girara-$pkgver
-  patch -p1 <"$srcdir"/fix-font-handling-gtk-3.21.patch
-}
-
-build() {
-  cd girara-$pkgver
-  touch colors.mk
-  make GIRARA_GTK_VERSION=3
-}
-
-package() {
-  cd girara-$pkgver
-  make GIRARA_GTK_VERSION=3 DESTDIR="$pkgdir/" install
-  install -D -m664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: girara/repos/community-i686/PKGBUILD (from rev 192484, 
girara/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-10-18 07:47:16 UTC (rev 192485)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Johannes Löthberg 
+# Contributor: Daniel Wallace 
+# Contributor: Sergej Pupykin 
+# Contributor: mlq 
+
+pkgname=girara
+pkgver=0.2.6
+pkgrel=3
+
+pkgdesc="User interface library focused on simplicity and minimalism"
+url="http://pwmt.org/projects/girara";
+arch=('i686' 'x86_64')
+license=('custom')
+
+provides=('girara-gtk3' 'girara-common')
+replaces=('girara-gtk3' 'girara-common')
+conflicts=('girara-gtk3' 'girara-common')
+
+depends=('gtk3')
+
+source=(http://pwmt.org/projects/girara/download/girara-$pkgver.tar.gz
+fix-font-handling-gtk-3.21.patch
+revert-incorrect-changes.patch)
+sha1sums=('674e4294fe091fe93a1c186d95b3263b30cd8a5e'
+  '609f469dc6ad4570959dea028fd36f8ba8562231'
+  '21b31fe5589fa127772cb3cc29a461fd0b24ac08')
+
+prepare() {
+  cd girara-$pkgver
+  patch -p1 <"$srcdir"/fix-font-handling-gtk-3.21.patch
+  patch -p1 <"$srcdir"/revert-incorrect-changes.patch
+}
+
+build() {
+  cd girara-$pkgver
+  touch colors.mk
+  make GIRARA_GTK_VERSION=3
+}
+
+package() {
+  cd girara-$pkgver
+  make GIRARA_GTK_VERSION=3 DESTDIR="$pkgdir/" install
+  install -D -m664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}

Copied: girara/repos/community-i686/fix-font-handling-gtk-3.21.patch (from rev 
192484, girara/trunk/fix-font-handling-gtk-3.21.patch)
===
--- fix-font-handling-gtk-3.21.patch(rev 0)
+++ fix-font-handling-gtk-3.21.patch2016-10-18 07:47:16 UTC (rev 192485)
@@ -0,0 +1,190 @@
+From 949c879aa84e9496fabc7d3602060e29f9dc42a1 Mon Sep 17 00:00:00 2001
+From: Sebastian Ramacher 
+Date: Sat, 3 Sep 2016 11:54:53 +0200
+Subject: [PATCH] Update font handling for changes in Gtk+ 3.21
+
+Signed-off-by: Sebastian Ramacher 
+---
+ data/girara-post-3.20.css_t | 11 ++-
+ girara/config.c |  3 +--
+ girara/internal.h   |  2 ++
+ girara/session.c| 93 
++---
+ 4 files changed, 103 insertions(+), 6 deletions(-)
+
+diff --git a/data/girara-post-3.20.css_t b/data/girara-post-3.20.css_t
+index 491e08e..29758de 100644
+--- a/data/girara-post-3.20.css_t
 b/data/girara-post-3.20.css_t
+@@ -2,7 +2,15 @@
+   color: @default-fg@;
+   background-color: @default-bg@;
+   background-image: none;
+-  font: @font@;
++  font-family: @font-family@;
++  font-size: @font-size@;
++  font-weight: @font-weight@;
++  box-shadow: none;
++  border-style: none;
++  margin: 0px;
++  padding: @bottombox-padding1@px @bottom

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

2016-10-18 Thread Johannes Löthberg
Date: Tuesday, October 18, 2016 @ 07:47:10
  Author: demize
Revision: 192484

SVN screwup

Modified:
  girara/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-18 06:26:32 UTC (rev 192483)
+++ PKGBUILD2016-10-18 07:47:10 UTC (rev 192484)
@@ -6,7 +6,7 @@
 
 pkgname=girara
 pkgver=0.2.6
-pkgrel=4
+pkgrel=3
 
 pkgdesc="User interface library focused on simplicity and minimalism"
 url="http://pwmt.org/projects/girara";


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

2016-10-18 Thread Johannes Löthberg
Date: Tuesday, October 18, 2016 @ 07:47:27
  Author: demize
Revision: 192486

archrelease: copy trunk to community-x86_64

Added:
  girara/repos/community-x86_64/PKGBUILD
(from rev 192485, girara/trunk/PKGBUILD)
  girara/repos/community-x86_64/fix-font-handling-gtk-3.21.patch
(from rev 192485, girara/trunk/fix-font-handling-gtk-3.21.patch)
  girara/repos/community-x86_64/revert-incorrect-changes.patch
(from rev 192485, girara/trunk/revert-incorrect-changes.patch)
Deleted:
  girara/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   87 
 fix-font-handling-gtk-3.21.patch |  190 +
 revert-incorrect-changes.patch   |   30 +
 3 files changed, 265 insertions(+), 42 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-10-18 07:47:16 UTC (rev 192485)
+++ PKGBUILD2016-10-18 07:47:27 UTC (rev 192486)
@@ -1,42 +0,0 @@
-# $Id: PKGBUILD 192327 2016-10-15 22:02:26Z demize $
-# Maintainer: Johannes Löthberg 
-# Contributor: Daniel Wallace 
-# Contributor: Sergej Pupykin 
-# Contributor: mlq 
-
-pkgname=girara
-pkgver=0.2.6
-pkgrel=3
-
-pkgdesc="User interface library focused on simplicity and minimalism"
-url="http://pwmt.org/projects/girara";
-arch=('i686' 'x86_64')
-license=('custom')
-
-provides=('girara-gtk3' 'girara-common')
-replaces=('girara-gtk3' 'girara-common')
-conflicts=('girara-gtk3' 'girara-common')
-
-depends=('gtk3')
-
-source=(http://pwmt.org/projects/girara/download/girara-$pkgver.tar.gz
-fix-font-handling-gtk-3.21.patch)
-sha1sums=('674e4294fe091fe93a1c186d95b3263b30cd8a5e'
-  '609f469dc6ad4570959dea028fd36f8ba8562231')
-
-prepare() {
-  cd girara-$pkgver
-  patch -p1 <"$srcdir"/fix-font-handling-gtk-3.21.patch
-}
-
-build() {
-  cd girara-$pkgver
-  touch colors.mk
-  make GIRARA_GTK_VERSION=3
-}
-
-package() {
-  cd girara-$pkgver
-  make GIRARA_GTK_VERSION=3 DESTDIR="$pkgdir/" install
-  install -D -m664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: girara/repos/community-x86_64/PKGBUILD (from rev 192485, 
girara/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-10-18 07:47:27 UTC (rev 192486)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Johannes Löthberg 
+# Contributor: Daniel Wallace 
+# Contributor: Sergej Pupykin 
+# Contributor: mlq 
+
+pkgname=girara
+pkgver=0.2.6
+pkgrel=3
+
+pkgdesc="User interface library focused on simplicity and minimalism"
+url="http://pwmt.org/projects/girara";
+arch=('i686' 'x86_64')
+license=('custom')
+
+provides=('girara-gtk3' 'girara-common')
+replaces=('girara-gtk3' 'girara-common')
+conflicts=('girara-gtk3' 'girara-common')
+
+depends=('gtk3')
+
+source=(http://pwmt.org/projects/girara/download/girara-$pkgver.tar.gz
+fix-font-handling-gtk-3.21.patch
+revert-incorrect-changes.patch)
+sha1sums=('674e4294fe091fe93a1c186d95b3263b30cd8a5e'
+  '609f469dc6ad4570959dea028fd36f8ba8562231'
+  '21b31fe5589fa127772cb3cc29a461fd0b24ac08')
+
+prepare() {
+  cd girara-$pkgver
+  patch -p1 <"$srcdir"/fix-font-handling-gtk-3.21.patch
+  patch -p1 <"$srcdir"/revert-incorrect-changes.patch
+}
+
+build() {
+  cd girara-$pkgver
+  touch colors.mk
+  make GIRARA_GTK_VERSION=3
+}
+
+package() {
+  cd girara-$pkgver
+  make GIRARA_GTK_VERSION=3 DESTDIR="$pkgdir/" install
+  install -D -m664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}

Copied: girara/repos/community-x86_64/fix-font-handling-gtk-3.21.patch (from 
rev 192485, girara/trunk/fix-font-handling-gtk-3.21.patch)
===
--- fix-font-handling-gtk-3.21.patch(rev 0)
+++ fix-font-handling-gtk-3.21.patch2016-10-18 07:47:27 UTC (rev 192486)
@@ -0,0 +1,190 @@
+From 949c879aa84e9496fabc7d3602060e29f9dc42a1 Mon Sep 17 00:00:00 2001
+From: Sebastian Ramacher 
+Date: Sat, 3 Sep 2016 11:54:53 +0200
+Subject: [PATCH] Update font handling for changes in Gtk+ 3.21
+
+Signed-off-by: Sebastian Ramacher 
+---
+ data/girara-post-3.20.css_t | 11 ++-
+ girara/config.c |  3 +--
+ girara/internal.h   |  2 ++
+ girara/session.c| 93 
++---
+ 4 files changed, 103 insertions(+), 6 deletions(-)
+
+diff --git a/data/girara-post-3.20.css_t b/data/girara-post-3.20.css_t
+index 491e08e..29758de 100644
+--- a/data/girara-post-3.20.css_t
 b/data/girara-post-3.20.css_t
+@@ -2,7 +2,15 @@
+   color: @default-fg@;
+   background-color: @default-bg@;
+   background-image: none;
+-  font: @font@;
++  font-family: @font-family@;
++  font-size: @font-size@;
++  font-weight: @font-weight@;
++  box-shadow: none;
++  border-style: none;
++  margin: 0px;
++  padding: @bottombox-paddi

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

2016-10-18 Thread Jonathan Steel
Date: Tuesday, October 18, 2016 @ 08:06:02
  Author: jsteel
Revision: 192487

upgpkg: python-botocore 1.4.63-1

Modified:
  python-botocore/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-18 07:47:27 UTC (rev 192486)
+++ PKGBUILD2016-10-18 08:06:02 UTC (rev 192487)
@@ -4,7 +4,7 @@
 # Contributor: Chris Fordham
 
 pkgname=python-botocore
-pkgver=1.4.62
+pkgver=1.4.63
 pkgrel=1
 pkgdesc='A low-level interface to a growing number of Amazon Web Services'
 arch=('any')
@@ -13,7 +13,7 @@
 depends=('python-dateutil' 'python-jmespath' 'python-docutils')
 makedepends=('python-setuptools')
 source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
-md5sums=('6c1336717a5d8053f6ba94a01e5fbab6')
+md5sums=('6bc45558e6c4140f86125bc0ea5548e2')
 
 build() {
   cd botocore-$pkgver


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

2016-10-18 Thread Jonathan Steel
Date: Tuesday, October 18, 2016 @ 08:06:19
  Author: jsteel
Revision: 192489

upgpkg: aws-cli 1.11.6-1

Modified:
  aws-cli/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-18 08:06:12 UTC (rev 192488)
+++ PKGBUILD2016-10-18 08:06:19 UTC (rev 192489)
@@ -3,7 +3,7 @@
 # Contributor: Alper KANAT 
 
 pkgname=aws-cli
-pkgver=1.11.4
+pkgver=1.11.6
 pkgrel=1
 pkgdesc='Universal Command Line Interface for Amazon Web Services'
 arch=('any')
@@ -14,7 +14,7 @@
  'python-s3transfer')
 makedepends=('python-setuptools')
 source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
-md5sums=('66f3be00522e11a7ea78c1890e9ba9f9')
+md5sums=('278f1be91461c8c5dd09e6f56a788c42')
 
 build() {
   cd $pkgname-$pkgver


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

2016-10-18 Thread Jonathan Steel
Date: Tuesday, October 18, 2016 @ 08:06:12
  Author: jsteel
Revision: 192488

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-10-18 08:06:02 UTC (rev 192487)
+++ PKGBUILD2016-10-18 08:06:12 UTC (rev 192488)
@@ -1,30 +0,0 @@
-# Maintainer: Jonathan Steel 
-# Contributor: Chris Severance aur.severach AatT spamgourmet.com
-# Contributor: Ainola
-# Contributor: Chris Fordham
-
-pkgname=python-botocore
-pkgver=1.4.62
-pkgrel=1
-pkgdesc='A low-level interface to a growing number of Amazon Web Services'
-arch=('any')
-url="https://github.com/boto/botocore";
-license=('Apache')
-depends=('python-dateutil' 'python-jmespath' 'python-docutils')
-makedepends=('python-setuptools')
-source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
-md5sums=('6c1336717a5d8053f6ba94a01e5fbab6')
-
-build() {
-  cd botocore-$pkgver
-
-  python setup.py build
-}
-
-package() {
-  cd botocore-$pkgver
-
-  python setup.py install --root="$pkgdir" --optimize=1
-
-  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-botocore/repos/community-any/PKGBUILD (from rev 192487, 
python-botocore/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-10-18 08:06:12 UTC (rev 192488)
@@ -0,0 +1,30 @@
+# Maintainer: Jonathan Steel 
+# Contributor: Chris Severance aur.severach AatT spamgourmet.com
+# Contributor: Ainola
+# Contributor: Chris Fordham
+
+pkgname=python-botocore
+pkgver=1.4.63
+pkgrel=1
+pkgdesc='A low-level interface to a growing number of Amazon Web Services'
+arch=('any')
+url="https://github.com/boto/botocore";
+license=('Apache')
+depends=('python-dateutil' 'python-jmespath' 'python-docutils')
+makedepends=('python-setuptools')
+source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
+md5sums=('6bc45558e6c4140f86125bc0ea5548e2')
+
+build() {
+  cd botocore-$pkgver
+
+  python setup.py build
+}
+
+package() {
+  cd botocore-$pkgver
+
+  python setup.py install --root="$pkgdir" --optimize=1
+
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


[arch-commits] Commit in aws-cli/repos/community-any (PKGBUILD PKGBUILD)

2016-10-18 Thread Jonathan Steel
Date: Tuesday, October 18, 2016 @ 08:06:25
  Author: jsteel
Revision: 192490

archrelease: copy trunk to community-any

Added:
  aws-cli/repos/community-any/PKGBUILD
(from rev 192489, aws-cli/trunk/PKGBUILD)
Deleted:
  aws-cli/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-10-18 08:06:19 UTC (rev 192489)
+++ PKGBUILD2016-10-18 08:06:25 UTC (rev 192490)
@@ -1,34 +0,0 @@
-# Maintainer: Jonathan Steel 
-# Contributor: Chris Severance aur.severach AatT spamgourmet.com
-# Contributor: Alper KANAT 
-
-pkgname=aws-cli
-pkgver=1.11.4
-pkgrel=1
-pkgdesc='Universal Command Line Interface for Amazon Web Services'
-arch=('any')
-url="https://github.com/aws/aws-cli";
-license=('Apache')
-depends=('python-botocore' 'python-dateutil' 'python-jmespath'
- 'python-colorama' 'python-docutils' 'python-rsa'
- 'python-s3transfer')
-makedepends=('python-setuptools')
-source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
-md5sums=('66f3be00522e11a7ea78c1890e9ba9f9')
-
-build() {
-  cd $pkgname-$pkgver
-
-  python setup.py build
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  python setup.py install --root="$pkgdir" --optimize=1
-
-  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-  install -Dm644 bin/aws_bash_completer 
"$pkgdir"/usr/share/bash-completion/completions/aws
-
-  rm -f "$pkgdir"/usr/bin/{aws.cmd,aws_bash_completer}
-}

Copied: aws-cli/repos/community-any/PKGBUILD (from rev 192489, 
aws-cli/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-10-18 08:06:25 UTC (rev 192490)
@@ -0,0 +1,34 @@
+# Maintainer: Jonathan Steel 
+# Contributor: Chris Severance aur.severach AatT spamgourmet.com
+# Contributor: Alper KANAT 
+
+pkgname=aws-cli
+pkgver=1.11.6
+pkgrel=1
+pkgdesc='Universal Command Line Interface for Amazon Web Services'
+arch=('any')
+url="https://github.com/aws/aws-cli";
+license=('Apache')
+depends=('python-botocore' 'python-dateutil' 'python-jmespath'
+ 'python-colorama' 'python-docutils' 'python-rsa'
+ 'python-s3transfer')
+makedepends=('python-setuptools')
+source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
+md5sums=('278f1be91461c8c5dd09e6f56a788c42')
+
+build() {
+  cd $pkgname-$pkgver
+
+  python setup.py build
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  python setup.py install --root="$pkgdir" --optimize=1
+
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+  install -Dm644 bin/aws_bash_completer 
"$pkgdir"/usr/share/bash-completion/completions/aws
+
+  rm -f "$pkgdir"/usr/bin/{aws.cmd,aws_bash_completer}
+}


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

2016-10-18 Thread Felix Yan
Date: Tuesday, October 18, 2016 @ 08:19:20
  Author: felixonmars
Revision: 192491

upgpkg: python-testfixtures 4.12.0-1

Modified:
  python-testfixtures/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-18 08:06:25 UTC (rev 192490)
+++ PKGBUILD2016-10-18 08:19:20 UTC (rev 192491)
@@ -3,7 +3,7 @@
 
 pkgbase=python-testfixtures
 pkgname=('python-testfixtures' 'python2-testfixtures')
-pkgver=4.11.0
+pkgver=4.12.0
 pkgrel=1
 pkgdesc="A collection of helpers and mock objects that are useful when writing 
unit tests or doc tests"
 arch=('any')


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

2016-10-18 Thread Felix Yan
Date: Tuesday, October 18, 2016 @ 08:19:54
  Author: felixonmars
Revision: 192492

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-10-18 08:19:20 UTC (rev 192491)
+++ PKGBUILD2016-10-18 08:19:54 UTC (rev 192492)
@@ -1,52 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgbase=python-testfixtures
-pkgname=('python-testfixtures' 'python2-testfixtures')
-pkgver=4.11.0
-pkgrel=1
-pkgdesc="A collection of helpers and mock objects that are useful when writing 
unit tests or doc tests"
-arch=('any')
-license=('MIT')
-url="https://github.com/Simplistix/testfixtures";
-makedepends=('python-setuptools' 'python2-setuptools' 'git')
-checkdepends=('python-nose' 'python2-nose' 'python-mock' 'python2-mock'
-  'python-manuel' 'python2-manuel' 'python-nose-fixes' 
'python2-nose-fixes')
-source=("git+https://github.com/Simplistix/testfixtures.git#tag=$pkgver";)
-sha512sums=('SKIP')
-
-prepare() {
-  cp -a testfixtures{,-py2}
-}
-
-build() {
-  cd "$srcdir"/testfixtures
-  python setup.py build
-
-  cd "$srcdir"/testfixtures-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/testfixtures
-  nosetests3
-
-  cd "$srcdir"/testfixtures-py2
-  nosetests2
-}
-
-package_python-testfixtures() {
-  depends=('python')
-
-  cd testfixtures
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -D -m644 docs/license.txt 
"$pkgdir/usr/share/licenses/$pkgname/license.txt"
-}
-
-package_python2-testfixtures() {
-  depends=('python2')
-
-  cd testfixtures-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  install -D -m644 docs/license.txt 
"$pkgdir/usr/share/licenses/$pkgname/license.txt"
-}

Copied: python-testfixtures/repos/community-any/PKGBUILD (from rev 192491, 
python-testfixtures/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-10-18 08:19:54 UTC (rev 192492)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-testfixtures
+pkgname=('python-testfixtures' 'python2-testfixtures')
+pkgver=4.12.0
+pkgrel=1
+pkgdesc="A collection of helpers and mock objects that are useful when writing 
unit tests or doc tests"
+arch=('any')
+license=('MIT')
+url="https://github.com/Simplistix/testfixtures";
+makedepends=('python-setuptools' 'python2-setuptools' 'git')
+checkdepends=('python-nose' 'python2-nose' 'python-mock' 'python2-mock'
+  'python-manuel' 'python2-manuel' 'python-nose-fixes' 
'python2-nose-fixes')
+source=("git+https://github.com/Simplistix/testfixtures.git#tag=$pkgver";)
+sha512sums=('SKIP')
+
+prepare() {
+  cp -a testfixtures{,-py2}
+}
+
+build() {
+  cd "$srcdir"/testfixtures
+  python setup.py build
+
+  cd "$srcdir"/testfixtures-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/testfixtures
+  nosetests3
+
+  cd "$srcdir"/testfixtures-py2
+  nosetests2
+}
+
+package_python-testfixtures() {
+  depends=('python')
+
+  cd testfixtures
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 docs/license.txt 
"$pkgdir/usr/share/licenses/$pkgname/license.txt"
+}
+
+package_python2-testfixtures() {
+  depends=('python2')
+
+  cd testfixtures-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 docs/license.txt 
"$pkgdir/usr/share/licenses/$pkgname/license.txt"
+}


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

2016-10-18 Thread Timothy Redaelli
Date: Tuesday, October 18, 2016 @ 08:59:22
  Author: tredaelli
Revision: 192493

upgpkg: electrum 2.7.9-1

Modified:
  electrum/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-18 08:19:54 UTC (rev 192492)
+++ PKGBUILD2016-10-18 08:59:22 UTC (rev 192493)
@@ -5,7 +5,7 @@
 # http://bitcoin-otc.com/viewgpg.php?nick=ThomasV
 
 pkgname=electrum
-pkgver=2.7.7
+pkgver=2.7.9
 pkgrel=1
 pkgdesc="Lightweight Bitcoin wallet"
 arch=('any')
@@ -18,9 +18,9 @@
 url="https://electrum.org";
 license=(MIT)
 
source=("https://download.electrum.org/${pkgver}/${pkgname^}-${pkgver}.tar.gz"{,.asc})
-md5sums=('7e1e923ac2012b0151fcab02da4e2cb6'
+md5sums=('e8314c87cb49944e04801f3be8c37bfc'
  'SKIP')
-sha256sums=('11bbe2044e7a82509dbdcc9c52aa31ceaf6ad2498f1cafd60c9aedd9776dddcb'
+sha256sums=('3005c4b1abbf3ac56bd55674e5749a45deef7bc70ea0c9601cafe0ec996b6b28'
 'SKIP')
 validpgpkeys=('6694D8DE7BE8EE5631BED9502BD5824B7F9470E6')
 


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

2016-10-18 Thread Timothy Redaelli
Date: Tuesday, October 18, 2016 @ 08:59:28
  Author: tredaelli
Revision: 192494

archrelease: copy trunk to community-any

Added:
  electrum/repos/community-any/PKGBUILD
(from rev 192493, electrum/trunk/PKGBUILD)
Deleted:
  electrum/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-10-18 08:59:22 UTC (rev 192493)
+++ PKGBUILD2016-10-18 08:59:28 UTC (rev 192494)
@@ -1,48 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli 
-# Contributor: Andy Weidenbaum 
-# ThomasV PGP key: gpg --recv-key 6694D8DE7BE8EE5631BED9502BD5824B7F9470E6
-# http://bitcoin-otc.com/viewgpg.php?nick=ThomasV
-
-pkgname=electrum
-pkgver=2.7.7
-pkgrel=1
-pkgdesc="Lightweight Bitcoin wallet"
-arch=('any')
-depends=('python2-ecdsa' 'python2-jsonrpclib' 'python2-pbkdf2' 
'python2-requests' 'python2-pyasn1' 'python2-pyasn1-modules' 'python2-qrcode'
- 'python2-protobuf' 'python2-tlslite' 'python2-dnspython' 
'python2-pyqt4' 'python2-sip' 'python2-slowaes')
-makedepends=('gettext' 'python2-pycurl' 'python2-setuptools' 
'desktop-file-utils')
-optdepends=('python2-btchip: BTChip hardware wallet support'
-'python2-matplotlib: plot transaction history in graphical mode'
-'zbar: QR code reading support')
-url="https://electrum.org";
-license=(MIT)
-source=("https://download.electrum.org/${pkgver}/${pkgname^}-${pkgver}.tar.gz"{,.asc})
-md5sums=('7e1e923ac2012b0151fcab02da4e2cb6'
- 'SKIP')
-sha256sums=('11bbe2044e7a82509dbdcc9c52aa31ceaf6ad2498f1cafd60c9aedd9776dddcb'
-'SKIP')
-validpgpkeys=('6694D8DE7BE8EE5631BED9502BD5824B7F9470E6')
-
-provides=('electrum')
-
-prepare() {
-  cd ${pkgname^}-${pkgver}
-
-  find . -type f -exec sed -i 's#/usr/bin/python$#/usr/bin/python2#g' {} +
-  find . -type f -exec sed -i 's#/usr/bin/env python$#/usr/bin/env python2#g' 
{} +
-}
-
-build() {
-  cd ${pkgname^}-${pkgver}
-
-  pyrcc4 icons.qrc -o gui/qt/icons_rc.py
-  python2 setup.py build
-}
-
-package() {
-  cd ${pkgname^}-${pkgver}
-
-  python2 setup.py install --root="${pkgdir}" --optimize=1
-  install -D -m644 LICENCE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: electrum/repos/community-any/PKGBUILD (from rev 192493, 
electrum/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-10-18 08:59:28 UTC (rev 192494)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Timothy Redaelli 
+# Contributor: Andy Weidenbaum 
+# ThomasV PGP key: gpg --recv-key 6694D8DE7BE8EE5631BED9502BD5824B7F9470E6
+# http://bitcoin-otc.com/viewgpg.php?nick=ThomasV
+
+pkgname=electrum
+pkgver=2.7.9
+pkgrel=1
+pkgdesc="Lightweight Bitcoin wallet"
+arch=('any')
+depends=('python2-ecdsa' 'python2-jsonrpclib' 'python2-pbkdf2' 
'python2-requests' 'python2-pyasn1' 'python2-pyasn1-modules' 'python2-qrcode'
+ 'python2-protobuf' 'python2-tlslite' 'python2-dnspython' 
'python2-pyqt4' 'python2-sip' 'python2-slowaes')
+makedepends=('gettext' 'python2-pycurl' 'python2-setuptools' 
'desktop-file-utils')
+optdepends=('python2-btchip: BTChip hardware wallet support'
+'python2-matplotlib: plot transaction history in graphical mode'
+'zbar: QR code reading support')
+url="https://electrum.org";
+license=(MIT)
+source=("https://download.electrum.org/${pkgver}/${pkgname^}-${pkgver}.tar.gz"{,.asc})
+md5sums=('e8314c87cb49944e04801f3be8c37bfc'
+ 'SKIP')
+sha256sums=('3005c4b1abbf3ac56bd55674e5749a45deef7bc70ea0c9601cafe0ec996b6b28'
+'SKIP')
+validpgpkeys=('6694D8DE7BE8EE5631BED9502BD5824B7F9470E6')
+
+provides=('electrum')
+
+prepare() {
+  cd ${pkgname^}-${pkgver}
+
+  find . -type f -exec sed -i 's#/usr/bin/python$#/usr/bin/python2#g' {} +
+  find . -type f -exec sed -i 's#/usr/bin/env python$#/usr/bin/env python2#g' 
{} +
+}
+
+build() {
+  cd ${pkgname^}-${pkgver}
+
+  pyrcc4 icons.qrc -o gui/qt/icons_rc.py
+  python2 setup.py build
+}
+
+package() {
+  cd ${pkgname^}-${pkgver}
+
+  python2 setup.py install --root="${pkgdir}" --optimize=1
+  install -D -m644 LICENCE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}


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

2016-10-18 Thread Florian Pritz
Date: Tuesday, October 18, 2016 @ 09:06:57
  Author: bluewind
Revision: 278914

upgpkg: pacman-mirrorlist 20161018-1

upstream update

Modified:
  pacman-mirrorlist/trunk/PKGBUILD
  pacman-mirrorlist/trunk/mirrorlist

+
 PKGBUILD   |6 +++---
 mirrorlist |8 ++--
 2 files changed, 5 insertions(+), 9 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-10-17 22:50:06 UTC (rev 278913)
+++ PKGBUILD2016-10-18 09:06:57 UTC (rev 278914)
@@ -2,7 +2,7 @@
 # Maintainer: Dan McGee 
 
 pkgname=pacman-mirrorlist
-pkgver=20161013
+pkgver=20161018
 pkgrel=1
 pkgdesc="Arch Linux mirror list for use by pacman"
 arch=('any')
@@ -27,5 +27,5 @@
   install -m644 $srcdir/mirrorlist $pkgdir/etc/pacman.d/
 }
 
-md5sums=('872d5b28dd381e0d8aca867fa6045d77')
-sha256sums=('82f4ce5f84709d9bff19e32a8619480177ef45ca8f28f5cf0f46962845245faa')
+md5sums=('6c8b3d03d5bf7ae43a42d539af6e4401')
+sha256sums=('442259ce4573d768cb65e4d412dc0d4172ba08359cbf9373ad304ff5af734f0b')

Modified: mirrorlist
===
--- mirrorlist  2016-10-17 22:50:06 UTC (rev 278913)
+++ mirrorlist  2016-10-18 09:06:57 UTC (rev 278914)
@@ -1,6 +1,6 @@
 ##
 ## Arch Linux repository mirrorlist
-## Generated on 2016-10-13
+## Generated on 2016-10-18
 ##
 
 ## Worldwide
@@ -35,7 +35,6 @@
 ## Brazil
 #Server = http://archlinux-br.mirror.host1plus.com/$repo/os/$arch
 #Server = http://archlinux.c3sl.ufpr.br/$repo/os/$arch
-#Server = http://www.lasca.ic.unicamp.br/pub/archlinux/$repo/os/$arch
 #Server = http://linorg.usp.br/archlinux/$repo/os/$arch
 #Server = http://pet.inf.ufsc.br/mirrors/archlinux/$repo/os/$arch
 #Server = http://archlinux.pop-es.rnp.br/$repo/os/$arch
@@ -64,8 +63,6 @@
 ## China
 #Server = http://mirrors.163.com/archlinux/$repo/os/$arch
 #Server = http://mirrors.cqu.edu.cn/archlinux/$repo/os/$arch
-#Server = http://mirrors.cug.edu.cn/archlinux/$repo/os/$arch
-#Server = http://mirrors.cug6.edu.cn/archlinux/$repo/os/$arch
 #Server = http://mirror.lzu.edu.cn/archlinux/$repo/os/$arch
 #Server = http://mirrors.neusoft.edu.cn/archlinux/$repo/os/$arch
 #Server = http://run.hit.edu.cn/archlinux/$repo/os/$arch
@@ -120,6 +117,7 @@
 #Server = https://mirror.armbrust.me/archlinux/$repo/os/$arch
 #Server = http://fooo.biz/archlinux/$repo/os/$arch
 #Server = https://fooo.biz/archlinux/$repo/os/$arch
+#Server = http://mirror.gerhard.re/archlinux/$repo/os/$arch
 #Server = http://mirror.ibcp.fr/pub/archlinux/$repo/os/$arch
 #Server = http://mirror.lastmikoi.net/archlinux/$repo/os/$arch
 #Server = http://archlinux.mailtunnel.eu/$repo/os/$arch
@@ -281,8 +279,6 @@
 #Server = http://mirror.i3d.net/pub/archlinux/$repo/os/$arch
 #Server = https://mirror.i3d.net/pub/archlinux/$repo/os/$arch
 #Server = http://mirror.nl.leaseweb.net/archlinux/$repo/os/$arch
-#Server = http://archlinux.lucysan.net/$repo/os/$arch
-#Server = https://archlinux.lucysan.net/$repo/os/$arch
 #Server = http://ftp.nluug.nl/os/Linux/distr/archlinux/$repo/os/$arch
 #Server = http://ftp.snt.utwente.nl/pub/os/linux/archlinux/$repo/os/$arch
 


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

2016-10-18 Thread Sven-Hendrik Haase
Date: Tuesday, October 18, 2016 @ 11:06:15
  Author: svenstaro
Revision: 192495

upgpkg: gitlab 8.12.7-1

upstream release 8.12.7

Modified:
  gitlab/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-18 08:59:28 UTC (rev 192494)
+++ PKGBUILD2016-10-18 11:06:15 UTC (rev 192495)
@@ -7,7 +7,7 @@
 # Contributor: Caleb Maclennan 
 
 pkgname=gitlab
-pkgver=8.12.6
+pkgver=8.12.7
 pkgrel=1
 pkgdesc="Project management and code hosting application"
 arch=('i686' 'x86_64')
@@ -42,7 +42,7 @@
 nginx-ssl.conf.example
 lighttpd.conf.example)
 install='gitlab.install'
-sha256sums=('ab03dfccaebde1c1f555bcd79fa362f7937b013a14e0b8503775dc1861705788'
+sha256sums=('d033c06d86c346d80f0b45313bdade1eb48b2817791ace62f6f054a9205828af'
 '0dabb9c10f6ba49404c13d6be2d0d6cf1bf7e5a0b95f0dea566e33c356997307'
 'a348d69cf0d08a1aa0713deb615815ae5a2305a1a1c386bcee29f49eae446757'
 'e16a68539eeb49d24d2ab4a53ff95e33c67264a674b611c006dc5c8a24f41e0e'


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

2016-10-18 Thread Antonio Rojas
Date: Tuesday, October 18, 2016 @ 11:25:28
  Author: arojas
Revision: 192497

Update to 10.1.0

Modified:
  ntl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-18 11:06:35 UTC (rev 192496)
+++ PKGBUILD2016-10-18 11:25:28 UTC (rev 192497)
@@ -3,20 +3,20 @@
 # Contributor: Brad Conte 
 
 pkgname=ntl
-pkgver=9.11.0
+pkgver=10.1.0
 pkgrel=1
 pkgdesc="A Library for doing Number Theory"
 arch=(i686 x86_64)
 url="http://www.shoup.net/ntl/";
-license=(GPL)
+license=(LGPL)
 depends=(gf2x gmp)
 makedepends=()
 source=("http://www.shoup.net/$pkgname/$pkgname-$pkgver.tar.gz";)
-md5sums=('e87daf6ca33fbbb628df1984303f3e2c')
+md5sums=('16b3449335163a753d45b5f1231bee23')
 
 build() {
   cd $pkgname-$pkgver/src
-  ./configure DEF_PREFIX=/usr SHARED=on NTL_GF2X_LIB=on NATIVE=off
+  ./configure DEF_PREFIX=/usr SHARED=on NTL_GF2X_LIB=on NATIVE=off TUNE=generic
   make
 }
 


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

2016-10-18 Thread Antonio Rojas
Date: Tuesday, October 18, 2016 @ 11:26:14
  Author: arojas
Revision: 192498

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

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

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

Copied: ntl/repos/community-staging-i686/PKGBUILD (from rev 192497, 
ntl/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-10-18 11:26:14 UTC (rev 192498)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Contributor: Brad Conte 
+
+pkgname=ntl
+pkgver=10.1.0
+pkgrel=1
+pkgdesc="A Library for doing Number Theory"
+arch=(i686 x86_64)
+url="http://www.shoup.net/ntl/";
+license=(LGPL)
+depends=(gf2x gmp)
+makedepends=()
+source=("http://www.shoup.net/$pkgname/$pkgname-$pkgver.tar.gz";)
+md5sums=('16b3449335163a753d45b5f1231bee23')
+
+build() {
+  cd $pkgname-$pkgver/src
+  ./configure DEF_PREFIX=/usr SHARED=on NTL_GF2X_LIB=on NATIVE=off TUNE=generic
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver/src
+  make -k check
+}
+
+package() {
+  cd $pkgname-$pkgver/src
+  make PREFIX="$pkgdir/usr" install
+}

Copied: ntl/repos/community-staging-x86_64/PKGBUILD (from rev 192497, 
ntl/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-10-18 11:26:14 UTC (rev 192498)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Contributor: Brad Conte 
+
+pkgname=ntl
+pkgver=10.1.0
+pkgrel=1
+pkgdesc="A Library for doing Number Theory"
+arch=(i686 x86_64)
+url="http://www.shoup.net/ntl/";
+license=(LGPL)
+depends=(gf2x gmp)
+makedepends=()
+source=("http://www.shoup.net/$pkgname/$pkgname-$pkgver.tar.gz";)
+md5sums=('16b3449335163a753d45b5f1231bee23')
+
+build() {
+  cd $pkgname-$pkgver/src
+  ./configure DEF_PREFIX=/usr SHARED=on NTL_GF2X_LIB=on NATIVE=off TUNE=generic
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver/src
+  make -k check
+}
+
+package() {
+  cd $pkgname-$pkgver/src
+  make PREFIX="$pkgdir/usr" install
+}


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

2016-10-18 Thread Kyle Keen
Date: Tuesday, October 18, 2016 @ 11:36:25
  Author: kkeen
Revision: 192499

upgpkg: simplescreenrecorder 0.3.7-1

Modified:
  simplescreenrecorder/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-18 11:26:14 UTC (rev 192498)
+++ PKGBUILD2016-10-18 11:36:25 UTC (rev 192499)
@@ -3,8 +3,8 @@
 # Contributor: Maarten Baert
 
 pkgname=simplescreenrecorder
-pkgver=0.3.6
-pkgrel=4
+pkgver=0.3.7
+pkgrel=1
 pkgdesc="A feature-rich screen recorder that supports X11 and OpenGL."
 arch=("i686" "x86_64")
 url="http://www.maartenbaert.be/simplescreenrecorder/";


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

2016-10-18 Thread Kyle Keen
Date: Tuesday, October 18, 2016 @ 11:37:04
  Author: kkeen
Revision: 192500

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

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

---+
 /PKGBUILD |   72 
 /simplescreenrecorder.install |   18 ++
 community-i686/PKGBUILD   |   36 
 community-i686/simplescreenrecorder.install   |9 ---
 community-x86_64/PKGBUILD |   36 
 community-x86_64/simplescreenrecorder.install |9 ---
 6 files changed, 90 insertions(+), 90 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-10-18 11:36:25 UTC (rev 192499)
+++ community-i686/PKGBUILD 2016-10-18 11:37:04 UTC (rev 192500)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen 
-# Contributor: Maarten Baert
-
-pkgname=simplescreenrecorder
-pkgver=0.3.6
-pkgrel=4
-pkgdesc="A feature-rich screen recorder that supports X11 and OpenGL."
-arch=("i686" "x86_64")
-url="http://www.maartenbaert.be/simplescreenrecorder/";
-license=("GPL3")
-# upstream reports crashes with Qt5, reverting FS#45104
-#depends=("qt5-base" "qt5-x11extras" "qt5-tools" "ffmpeg" "alsa-lib" 
"libpulse" "jack" "libgl" "glu" "libx11" "libxext" "libxfixes" "libxi")
-depends=("qt4" "ffmpeg" "alsa-lib" "libpulse" "jack" "libgl" "glu"
-"libx11" "libxext" "libxfixes" "libxi"
-"desktop-file-utils" "gtk-update-icon-cache")
-optdepends=("lib32-simplescreenrecorder: OpenGL recording of 32-bit 
applications")
-makedepends=("git")
-source=("git+https://github.com/MaartenBaert/ssr.git#tag=$pkgver";)
-md5sums=("SKIP")
-
-options=("!libtool")
-install=simplescreenrecorder.install
-
-build() {
-  cd ssr
-  # fPIC is only required for qt5 + gcc5
-  #CXXFLAGS="$CXXFLAGS -fPIC"
-  #./configure --prefix=/usr --disable-assert --with-qt5
-  ./configure --prefix=/usr --disable-assert
-  make
-}
-package() {
-  cd ssr
-  make DESTDIR="$pkgdir" install
-}

Copied: simplescreenrecorder/repos/community-i686/PKGBUILD (from rev 192499, 
simplescreenrecorder/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-10-18 11:37:04 UTC (rev 192500)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Kyle Keen 
+# Contributor: Maarten Baert
+
+pkgname=simplescreenrecorder
+pkgver=0.3.7
+pkgrel=1
+pkgdesc="A feature-rich screen recorder that supports X11 and OpenGL."
+arch=("i686" "x86_64")
+url="http://www.maartenbaert.be/simplescreenrecorder/";
+license=("GPL3")
+# upstream reports crashes with Qt5, reverting FS#45104
+#depends=("qt5-base" "qt5-x11extras" "qt5-tools" "ffmpeg" "alsa-lib" 
"libpulse" "jack" "libgl" "glu" "libx11" "libxext" "libxfixes" "libxi")
+depends=("qt4" "ffmpeg" "alsa-lib" "libpulse" "jack" "libgl" "glu"
+"libx11" "libxext" "libxfixes" "libxi"
+"desktop-file-utils" "gtk-update-icon-cache")
+optdepends=("lib32-simplescreenrecorder: OpenGL recording of 32-bit 
applications")
+makedepends=("git")
+source=("git+https://github.com/MaartenBaert/ssr.git#tag=$pkgver";)
+md5sums=("SKIP")
+
+options=("!libtool")
+install=simplescreenrecorder.install
+
+build() {
+  cd ssr
+  # fPIC is only required for qt5 + gcc5
+  #CXXFLAGS="$CXXFLAGS -fPIC"
+  #./configure --prefix=/usr --disable-assert --with-qt5
+  ./configure --prefix=/usr --disable-assert
+  make
+}
+package() {
+  cd ssr
+  make DESTDIR="$pkgdir" install
+}

Deleted: community-i686/simplescreenrecorder.install
===
--- community-i686/simplescreenrecorder.install 2016-10-18 11:36:25 UTC (rev 
192499)
+++ community-i686/simplescreenrecorder.install 2016-10-18 11:37:04 UTC (rev 
192500)
@@ -1,9 +0,0 @@
-post_install() {
-   ldconfig
-}
-post_upgrade() {
-   post_install
-}
-post_remove() {
-   post_install
-}

Copied: simplescreenrecorder/repos/community-i686/simplescreenrecorder.install 
(from rev 192499, simplescreenrecorder/trunk/simplescreenrecorder.install)
===

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

2016-10-18 Thread Kyle Keen
Date: Tuesday, October 18, 2016 @ 11:39:00
  Author: kkeen
Revision: 192501

upgpkg: lib32-simplescreenrecorder 0.3.7-1

Modified:
  lib32-simplescreenrecorder/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-18 11:37:04 UTC (rev 192500)
+++ PKGBUILD2016-10-18 11:39:00 UTC (rev 192501)
@@ -3,8 +3,8 @@
 # Contributor: Maarten Baert
 
 pkgname=lib32-simplescreenrecorder
-pkgver=0.3.6
-pkgrel=2
+pkgver=0.3.7
+pkgrel=1
 pkgdesc="Record 32-bit OpenGL applications with SimpleScreenRecorder."
 arch=("x86_64")
 url="http://www.maartenbaert.be/simplescreenrecorder/";


[arch-commits] Commit in lib32-simplescreenrecorder/repos/multilib-x86_64 (4 files)

2016-10-18 Thread Kyle Keen
Date: Tuesday, October 18, 2016 @ 11:39:16
  Author: kkeen
Revision: 192502

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-simplescreenrecorder/repos/multilib-x86_64/PKGBUILD
(from rev 192501, lib32-simplescreenrecorder/trunk/PKGBUILD)
  
lib32-simplescreenrecorder/repos/multilib-x86_64/lib32-simplescreenrecorder.install
(from rev 192501, 
lib32-simplescreenrecorder/trunk/lib32-simplescreenrecorder.install)
Deleted:
  lib32-simplescreenrecorder/repos/multilib-x86_64/PKGBUILD
  
lib32-simplescreenrecorder/repos/multilib-x86_64/lib32-simplescreenrecorder.install

+
 PKGBUILD   |   62 +--
 lib32-simplescreenrecorder.install |   18 +-
 2 files changed, 40 insertions(+), 40 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-10-18 11:39:00 UTC (rev 192501)
+++ PKGBUILD2016-10-18 11:39:16 UTC (rev 192502)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen 
-# Contributor: Maarten Baert
-
-pkgname=lib32-simplescreenrecorder
-pkgver=0.3.6
-pkgrel=2
-pkgdesc="Record 32-bit OpenGL applications with SimpleScreenRecorder."
-arch=("x86_64")
-url="http://www.maartenbaert.be/simplescreenrecorder/";
-license=("GPL3")
-depends=("lib32-libgl" "lib32-glu" "lib32-libx11" "lib32-libxext" 
"lib32-libxfixes")
-makedepends=("git" "gcc-multilib")
-options=("!libtool")
-install=lib32-simplescreenrecorder.install
-source=("git+https://github.com/MaartenBaert/ssr.git#tag=$pkgver";)
-md5sums=("SKIP")
-
-build() {
-  cd ssr
-  export CC="gcc -m32"
-  export CXX="g++ -m32"
-  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
-  ./configure --prefix=/usr --libdir=/usr/lib32 --disable-ssrprogram 
--disable-assert
-  make
-}
-
-package() {
-  cd ssr
-  make DESTDIR="${pkgdir}" install
-}

Copied: lib32-simplescreenrecorder/repos/multilib-x86_64/PKGBUILD (from rev 
192501, lib32-simplescreenrecorder/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-10-18 11:39:16 UTC (rev 192502)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Kyle Keen 
+# Contributor: Maarten Baert
+
+pkgname=lib32-simplescreenrecorder
+pkgver=0.3.7
+pkgrel=1
+pkgdesc="Record 32-bit OpenGL applications with SimpleScreenRecorder."
+arch=("x86_64")
+url="http://www.maartenbaert.be/simplescreenrecorder/";
+license=("GPL3")
+depends=("lib32-libgl" "lib32-glu" "lib32-libx11" "lib32-libxext" 
"lib32-libxfixes")
+makedepends=("git" "gcc-multilib")
+options=("!libtool")
+install=lib32-simplescreenrecorder.install
+source=("git+https://github.com/MaartenBaert/ssr.git#tag=$pkgver";)
+md5sums=("SKIP")
+
+build() {
+  cd ssr
+  export CC="gcc -m32"
+  export CXX="g++ -m32"
+  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
+  ./configure --prefix=/usr --libdir=/usr/lib32 --disable-ssrprogram 
--disable-assert
+  make
+}
+
+package() {
+  cd ssr
+  make DESTDIR="${pkgdir}" install
+}

Deleted: lib32-simplescreenrecorder.install
===
--- lib32-simplescreenrecorder.install  2016-10-18 11:39:00 UTC (rev 192501)
+++ lib32-simplescreenrecorder.install  2016-10-18 11:39:16 UTC (rev 192502)
@@ -1,9 +0,0 @@
-post_install() {
-   ldconfig
-}
-post_upgrade() {
-   post_install
-}
-post_remove() {
-   post_install
-}

Copied: 
lib32-simplescreenrecorder/repos/multilib-x86_64/lib32-simplescreenrecorder.install
 (from rev 192501, 
lib32-simplescreenrecorder/trunk/lib32-simplescreenrecorder.install)
===
--- lib32-simplescreenrecorder.install  (rev 0)
+++ lib32-simplescreenrecorder.install  2016-10-18 11:39:16 UTC (rev 192502)
@@ -0,0 +1,9 @@
+post_install() {
+   ldconfig
+}
+post_upgrade() {
+   post_install
+}
+post_remove() {
+   post_install
+}


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

2016-10-18 Thread Antonio Rojas
Date: Tuesday, October 18, 2016 @ 11:46:46
  Author: arojas
Revision: 192503

NTL 10.1 rebuild

Modified:
  flint/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-18 11:39:16 UTC (rev 192502)
+++ PKGBUILD2016-10-18 11:46:46 UTC (rev 192503)
@@ -5,7 +5,7 @@
 
 pkgname=flint
 pkgver=2.5.2
-pkgrel=14
+pkgrel=15
 pkgdesc="A C library for doing number theory"
 arch=(i686 x86_64)
 url="http://www.flintlib.org";


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

2016-10-18 Thread Antonio Rojas
Date: Tuesday, October 18, 2016 @ 11:47:51
  Author: arojas
Revision: 192504

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

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

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

Copied: flint/repos/community-staging-i686/PKGBUILD (from rev 192503, 
flint/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-10-18 11:47:51 UTC (rev 192504)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Contributor: Rémy Oudompheng 
+# Contributor: Alessandro "jakedust" Andrioni 
+
+pkgname=flint
+pkgver=2.5.2
+pkgrel=15
+pkgdesc="A C library for doing number theory"
+arch=(i686 x86_64)
+url="http://www.flintlib.org";
+license=(GPL)
+depends=(mpfr ntl)
+source=("http://www.flintlib.org/flint-$pkgver.tar.gz";)
+md5sums=('cda885309362150196aed66a5e0f0383')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --with-gmp=/usr --with-mpfr=/usr --with-ntl=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Copied: flint/repos/community-staging-x86_64/PKGBUILD (from rev 192503, 
flint/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-10-18 11:47:51 UTC (rev 192504)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Contributor: Rémy Oudompheng 
+# Contributor: Alessandro "jakedust" Andrioni 
+
+pkgname=flint
+pkgver=2.5.2
+pkgrel=15
+pkgdesc="A C library for doing number theory"
+arch=(i686 x86_64)
+url="http://www.flintlib.org";
+license=(GPL)
+depends=(mpfr ntl)
+source=("http://www.flintlib.org/flint-$pkgver.tar.gz";)
+md5sums=('cda885309362150196aed66a5e0f0383')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --with-gmp=/usr --with-mpfr=/usr --with-ntl=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}


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

2016-10-18 Thread Massimiliano Torromeo
Date: Tuesday, October 18, 2016 @ 12:03:29
  Author: mtorromeo
Revision: 192506

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-10-18 12:03:03 UTC (rev 192505)
+++ community-i686/PKGBUILD 2016-10-18 12:03:29 UTC (rev 192506)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Massimiliano Torromeo 
-
-pkgname=python-cchardet
-pkgname=(python-cchardet python2-cchardet)
-pkgver=1.0.0
-pkgrel=3
-pkgdesc="Universal encoding detector faster than chardet."
-url="http://pypi.python.org/pypi/cchardet/";
-makedepends=('cython' 'cython2' 'python-setuptools' 'python2-setuptools')
-license=('MIT')
-arch=('i686' 'x86_64')
-source=(http://pypi.python.org/packages/source/c/cchardet/cchardet-$pkgver.tar.gz)
-sha256sums=('98e6dc7ca225abfa7e559a6450404aeb2f5bea0713afd6dd492c1a51cec57e63')
-
-build() {
-cd "$srcdir/cchardet-$pkgver"
-
-rm -rf ../buildpy3; mkdir ../buildpy3
-python setup.py build -b ../buildpy3
-
-rm -rf ../buildpy2; mkdir ../buildpy2
-python2 setup.py build -b ../buildpy2
-find ../buildpy2 -name \*.py -exec sed -r 's|^#!(.*)python$|#!\1python2|' 
-i {} +
-}
-
-package_python-cchardet() {
-depends=(python)
-
-cd "$srcdir/cchardet-$pkgver"
-rm -rf build; ln -s ../buildpy3 build
-python setup.py install --skip-build -O1 --root="$pkgdir"
-}
-
-package_python2-cchardet() {
-depends=(python2)
-
-cd "$srcdir/cchardet-$pkgver"
-rm -rf build; ln -s ../buildpy2 build
-python2 setup.py install --skip-build -O1 --root="$pkgdir"
-}
-

Copied: python-cchardet/repos/community-i686/PKGBUILD (from rev 192505, 
python-cchardet/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-10-18 12:03:29 UTC (rev 192506)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo 
+
+pkgname=python-cchardet
+pkgname=(python-cchardet python2-cchardet)
+pkgver=1.1.0
+pkgrel=1
+pkgdesc="Universal encoding detector faster than chardet."
+url="http://pypi.python.org/pypi/cchardet/";
+makedepends=('cython' 'cython2' 'python-setuptools' 'python2-setuptools')
+license=('MIT')
+arch=('i686' 'x86_64')
+source=(https://files.pythonhosted.org/packages/source/c/cchardet/cchardet-$pkgver.tar.gz)
+sha256sums=('78de7d602d7a5504e3362e41cf382b2c2187acef6987660b1623bcb3c98eef18')
+
+build() {
+cd "$srcdir/cchardet-$pkgver"
+
+rm -rf ../buildpy3; mkdir ../buildpy3
+python setup.py build -b ../buildpy3
+
+rm -rf ../buildpy2; mkdir ../buildpy2
+python2 setup.py build -b ../buildpy2
+find ../buildpy2 -name \*.py -exec sed -r 's|^#!(.*)python$|#!\1python2|' 
-i {} +
+}
+
+package_python-cchardet() {
+depends=(python)
+
+cd "$srcdir/cchardet-$pkgver"
+rm -rf build; ln -s ../buildpy3 build
+python setup.py install --skip-build -O1 --root="$pkgdir"
+}
+
+package_python2-cchardet() {
+depends=(python2)
+
+cd "$srcdir/cchardet-$pkgver"
+rm -rf build; ln -s ../buildpy2 build
+python2 setup.py install --skip-build -O1 --root="$pkgdir"
+}
+

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-10-18 12:03:03 UTC (rev 192505)
+++ community-x86_64/PKGBUILD   2016-10-18 12:03:29 UTC (rev 192506)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Massimiliano Torromeo 
-
-pkgname=python-cchardet
-pkgname=(python-cchardet python2-cchardet)
-pkgver=1.0.0
-pkgrel=3
-pkgdesc="Universal encoding detector faster than chardet."
-url="http://pypi.python.org/pypi/cchardet/";
-makedepends=('cython' 'cython2' 'python-setuptools' 'python2-setuptools')
-license=('MIT')
-arch=('i686' 'x86_64')
-source=(http://pypi.python.org/packages/source/c/cchardet/cchardet-$pkgver.tar.gz)
-sha256sums=('98e6dc7ca225abfa7e559a6450404aeb2f5bea0713afd6dd492c1a51cec57e63')
-
-build() {
-cd "$srcdir/cchardet-$pkgver"
-
-rm -rf ../buildpy3; mkdir ../buildpy3
-python setup.py build -b ../buildpy3
-
-rm -rf ../buildpy2; mkdir ../buildpy2
-python2 setup.py build -b ../buildpy2
-find ../buildpy2 -name \*.py -exec sed -r 's|^#!(.*)python$|#!\1python2|' 
-i {} +
-}
-
-package_python-cchardet() {
-depends=(python)
-
-cd "$srcdir/cchard

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

2016-10-18 Thread Massimiliano Torromeo
Date: Tuesday, October 18, 2016 @ 12:03:03
  Author: mtorromeo
Revision: 192505

upgpkg: python-cchardet 1.1.0-1

Modified:
  python-cchardet/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-18 11:47:51 UTC (rev 192504)
+++ PKGBUILD2016-10-18 12:03:03 UTC (rev 192505)
@@ -3,15 +3,15 @@
 
 pkgname=python-cchardet
 pkgname=(python-cchardet python2-cchardet)
-pkgver=1.0.0
-pkgrel=3
+pkgver=1.1.0
+pkgrel=1
 pkgdesc="Universal encoding detector faster than chardet."
 url="http://pypi.python.org/pypi/cchardet/";
 makedepends=('cython' 'cython2' 'python-setuptools' 'python2-setuptools')
 license=('MIT')
 arch=('i686' 'x86_64')
-source=(http://pypi.python.org/packages/source/c/cchardet/cchardet-$pkgver.tar.gz)
-sha256sums=('98e6dc7ca225abfa7e559a6450404aeb2f5bea0713afd6dd492c1a51cec57e63')
+source=(https://files.pythonhosted.org/packages/source/c/cchardet/cchardet-$pkgver.tar.gz)
+sha256sums=('78de7d602d7a5504e3362e41cf382b2c2187acef6987660b1623bcb3c98eef18')
 
 build() {
 cd "$srcdir/cchardet-$pkgver"


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

2016-10-18 Thread Antonio Rojas
Date: Tuesday, October 18, 2016 @ 12:07:44
  Author: arojas
Revision: 192507

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

Added:
  flint/repos/community-staging-i686/PKGBUILD
(from rev 192506, flint/trunk/PKGBUILD)
  flint/repos/community-staging-x86_64/PKGBUILD
(from rev 192506, flint/trunk/PKGBUILD)
Deleted:
  flint/repos/community-staging-i686/PKGBUILD
  flint/repos/community-staging-x86_64/PKGBUILD

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

Deleted: community-staging-i686/PKGBUILD
===
--- community-staging-i686/PKGBUILD 2016-10-18 12:03:29 UTC (rev 192506)
+++ community-staging-i686/PKGBUILD 2016-10-18 12:07:44 UTC (rev 192507)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-# Contributor: Rémy Oudompheng 
-# Contributor: Alessandro "jakedust" Andrioni 
-
-pkgname=flint
-pkgver=2.5.2
-pkgrel=15
-pkgdesc="A C library for doing number theory"
-arch=(i686 x86_64)
-url="http://www.flintlib.org";
-license=(GPL)
-depends=(mpfr ntl)
-source=("http://www.flintlib.org/flint-$pkgver.tar.gz";)
-md5sums=('cda885309362150196aed66a5e0f0383')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --with-gmp=/usr --with-mpfr=/usr --with-ntl=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: flint/repos/community-staging-i686/PKGBUILD (from rev 192506, 
flint/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-10-18 12:07:44 UTC (rev 192507)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Contributor: Rémy Oudompheng 
+# Contributor: Alessandro "jakedust" Andrioni 
+
+pkgname=flint
+pkgver=2.5.2
+pkgrel=15
+pkgdesc="A C library for doing number theory"
+arch=(i686 x86_64)
+url="http://www.flintlib.org";
+license=(GPL)
+depends=(mpfr ntl)
+source=("http://www.flintlib.org/flint-$pkgver.tar.gz";)
+md5sums=('cda885309362150196aed66a5e0f0383')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --with-gmp=/usr --with-mpfr=/usr --with-ntl=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: community-staging-x86_64/PKGBUILD
===
--- community-staging-x86_64/PKGBUILD   2016-10-18 12:03:29 UTC (rev 192506)
+++ community-staging-x86_64/PKGBUILD   2016-10-18 12:07:44 UTC (rev 192507)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-# Contributor: Rémy Oudompheng 
-# Contributor: Alessandro "jakedust" Andrioni 
-
-pkgname=flint
-pkgver=2.5.2
-pkgrel=15
-pkgdesc="A C library for doing number theory"
-arch=(i686 x86_64)
-url="http://www.flintlib.org";
-license=(GPL)
-depends=(mpfr ntl)
-source=("http://www.flintlib.org/flint-$pkgver.tar.gz";)
-md5sums=('cda885309362150196aed66a5e0f0383')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --with-gmp=/usr --with-mpfr=/usr --with-ntl=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: flint/repos/community-staging-x86_64/PKGBUILD (from rev 192506, 
flint/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-10-18 12:07:44 UTC (rev 192507)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Contributor: Rémy Oudompheng 
+# Contributor: Alessandro "jakedust" Andrioni 
+
+pkgname=flint
+pkgver=2.5.2
+pkgrel=15
+pkgdesc="A C library for doing number theory"
+arch=(i686 x86_64)
+url="http://www.flintlib.org";
+license=(GPL)
+depends=(mpfr ntl)
+source=("http://www.flintlib.org/flint-$pkgver.tar.gz";)
+md5sums=('cda885309362150196aed66a5e0f0383')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --with-gmp=/usr --with-mpfr=/usr --with-ntl=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}


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

2016-10-18 Thread Ike Devolder
Date: Tuesday, October 18, 2016 @ 13:06:56
  Author: idevolder
Revision: 192509

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-10-18 13:06:44 UTC (rev 192508)
+++ community-i686/PKGBUILD 2016-10-18 13:06:56 UTC (rev 192509)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: BlackIkeEagle 
-
-pkgname=libnfs
-pkgver=1.10.0
-pkgrel=1
-pkgdesc="client library for accessing NFS shares"
-arch=('i686' 'x86_64')
-url="https://github.com/sahlberg/libnfs";
-license=('GPL')
-depends=('glibc')
-source=(
-   "https://github.com/sahlberg/$pkgname/archive/$pkgname-$pkgver.tar.gz";
-)
-sha256sums=('7f6c62a05c7e0f0749f2b13f178a4ed7aaf17bd09e65a10bb147bfe9807da272')
-
-#prepare() {
-  #cd "$pkgname-$pkgname-$pkgver"
-
-#}
-
-build() {
-   cd "$pkgname-$pkgname-$pkgver"
-
-   autoreconf -vif
-   ./configure --prefix=/usr
-   make
-}
-
-package() {
-   cd "$pkgname-$pkgname-$pkgver"
-   make DESTDIR="$pkgdir" install
-}
-

Copied: libnfs/repos/community-i686/PKGBUILD (from rev 192508, 
libnfs/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-10-18 13:06:56 UTC (rev 192509)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: BlackIkeEagle 
+
+pkgname=libnfs
+pkgver=1.11.0
+pkgrel=1
+pkgdesc="client library for accessing NFS shares"
+arch=('i686' 'x86_64')
+url="https://github.com/sahlberg/libnfs";
+license=('GPL')
+depends=('glibc')
+source=(
+   "https://github.com/sahlberg/$pkgname/archive/$pkgname-$pkgver.tar.gz";
+)
+sha256sums=('fc2e45df14d8714ccd07dc2bbe919e45a2e36318bae7f045cbbb883a7854640f')
+
+#prepare() {
+  #cd "$pkgname-$pkgname-$pkgver"
+
+#}
+
+build() {
+   cd "$pkgname-$pkgname-$pkgver"
+
+   autoreconf -vif
+   ./configure --prefix=/usr
+   make
+}
+
+package() {
+   cd "$pkgname-$pkgname-$pkgver"
+   make DESTDIR="$pkgdir" install
+}
+

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-10-18 13:06:44 UTC (rev 192508)
+++ community-x86_64/PKGBUILD   2016-10-18 13:06:56 UTC (rev 192509)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: BlackIkeEagle 
-
-pkgname=libnfs
-pkgver=1.10.0
-pkgrel=1
-pkgdesc="client library for accessing NFS shares"
-arch=('i686' 'x86_64')
-url="https://github.com/sahlberg/libnfs";
-license=('GPL')
-depends=('glibc')
-source=(
-   "https://github.com/sahlberg/$pkgname/archive/$pkgname-$pkgver.tar.gz";
-)
-sha256sums=('7f6c62a05c7e0f0749f2b13f178a4ed7aaf17bd09e65a10bb147bfe9807da272')
-
-#prepare() {
-  #cd "$pkgname-$pkgname-$pkgver"
-
-#}
-
-build() {
-   cd "$pkgname-$pkgname-$pkgver"
-
-   autoreconf -vif
-   ./configure --prefix=/usr
-   make
-}
-
-package() {
-   cd "$pkgname-$pkgname-$pkgver"
-   make DESTDIR="$pkgdir" install
-}
-

Copied: libnfs/repos/community-x86_64/PKGBUILD (from rev 192508, 
libnfs/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-10-18 13:06:56 UTC (rev 192509)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: BlackIkeEagle 
+
+pkgname=libnfs
+pkgver=1.11.0
+pkgrel=1
+pkgdesc="client library for accessing NFS shares"
+arch=('i686' 'x86_64')
+url="https://github.com/sahlberg/libnfs";
+license=('GPL')
+depends=('glibc')
+source=(
+   "https://github.com/sahlberg/$pkgname/archive/$pkgname-$pkgver.tar.gz";
+)
+sha256sums=('fc2e45df14d8714ccd07dc2bbe919e45a2e36318bae7f045cbbb883a7854640f')
+
+#prepare() {
+  #cd "$pkgname-$pkgname-$pkgver"
+
+#}
+
+build() {
+   cd "$pkgname-$pkgname-$pkgver"
+
+   autoreconf -vif
+   ./configure --prefix=/usr
+   make
+}
+
+package() {
+   cd "$pkgname-$pkgname-$pkgver"
+   make DESTDIR="$pkgdir" install
+}
+


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

2016-10-18 Thread Ike Devolder
Date: Tuesday, October 18, 2016 @ 13:06:44
  Author: idevolder
Revision: 192508

upgpkg: libnfs 1.11.0-1

Modified:
  libnfs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-18 12:07:44 UTC (rev 192507)
+++ PKGBUILD2016-10-18 13:06:44 UTC (rev 192508)
@@ -2,7 +2,7 @@
 # Maintainer: BlackIkeEagle 
 
 pkgname=libnfs
-pkgver=1.10.0
+pkgver=1.11.0
 pkgrel=1
 pkgdesc="client library for accessing NFS shares"
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 source=(
"https://github.com/sahlberg/$pkgname/archive/$pkgname-$pkgver.tar.gz";
 )
-sha256sums=('7f6c62a05c7e0f0749f2b13f178a4ed7aaf17bd09e65a10bb147bfe9807da272')
+sha256sums=('fc2e45df14d8714ccd07dc2bbe919e45a2e36318bae7f045cbbb883a7854640f')
 
 #prepare() {
   #cd "$pkgname-$pkgname-$pkgver"


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

2016-10-18 Thread Ike Devolder
Date: Tuesday, October 18, 2016 @ 13:07:07
  Author: idevolder
Revision: 192510

upgpkg: opera 40.0.2308.90-1

Modified:
  opera/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-18 13:06:56 UTC (rev 192509)
+++ PKGBUILD2016-10-18 13:07:07 UTC (rev 192510)
@@ -10,7 +10,7 @@
 # Contributor: eworm
 
 pkgname=opera
-pkgver=40.0.2308.62
+pkgver=40.0.2308.90
 pkgrel=1
 pkgdesc="A fast and secure web browser"
 url="http://www.opera.com/";
@@ -31,8 +31,8 @@
 
source_x86_64=("http://get.geo.opera.com/pub/${pkgname}/desktop/${pkgver}/linux/${pkgname}-stable_${pkgver}_amd64.deb";)
 sha256sums=('508512464e24126fddfb2c41a1e2e86624bdb0c0748084b6a922573b6cf6b9c5'
 '4913d97dec0ddc99d1e089b029b9123c2c86b7c88d631c4db119b09da027')
-sha256sums_i686=('6e0e5209caab2ad48ec4bcda2ac24addb7c91dbff1013c4a7dd9a01dfa0f8058')
-sha256sums_x86_64=('61c62a0de6759119d529ac0543af1bad1b30815ea796fa944ce5c1d5649ac2ed')
+sha256sums_i686=('93cc5cf5c0054bf418bc1957755fae91eb6172efe8bd175dda3e8c42ecea0bbb')
+sha256sums_x86_64=('cf4cc36aef8ce1459b54670d2d92950caceebb6e375be7e53a39ddc8bbfc358a')
 
 prepare() {
 sed -e "s/%pkgname%/$pkgname/g" -i "$srcdir/opera"


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

2016-10-18 Thread Ike Devolder
Date: Tuesday, October 18, 2016 @ 13:07:25
  Author: idevolder
Revision: 192511

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

Added:
  opera/repos/community-i686/PKGBUILD
(from rev 192510, opera/trunk/PKGBUILD)
  opera/repos/community-i686/default
(from rev 192510, opera/trunk/default)
  opera/repos/community-i686/opera
(from rev 192510, opera/trunk/opera)
  opera/repos/community-i686/opera.install
(from rev 192510, opera/trunk/opera.install)
  opera/repos/community-x86_64/PKGBUILD
(from rev 192510, opera/trunk/PKGBUILD)
  opera/repos/community-x86_64/default
(from rev 192510, opera/trunk/default)
  opera/repos/community-x86_64/opera
(from rev 192510, opera/trunk/opera)
  opera/repos/community-x86_64/opera.install
(from rev 192510, opera/trunk/opera.install)
Deleted:
  opera/repos/community-i686/PKGBUILD
  opera/repos/community-i686/default
  opera/repos/community-i686/opera
  opera/repos/community-i686/opera.install
  opera/repos/community-x86_64/PKGBUILD
  opera/repos/community-x86_64/default
  opera/repos/community-x86_64/opera
  opera/repos/community-x86_64/opera.install

+
 /PKGBUILD  |  136 +++
 /default   |8 ++
 /opera |   26 +++
 /opera.install |   78 ++
 community-i686/PKGBUILD|   68 ---
 community-i686/default |4 -
 community-i686/opera   |   13 ---
 community-i686/opera.install   |   39 ---
 community-x86_64/PKGBUILD  |   68 ---
 community-x86_64/default   |4 -
 community-x86_64/opera |   13 ---
 community-x86_64/opera.install |   39 ---
 12 files changed, 248 insertions(+), 248 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-10-18 13:07:07 UTC (rev 192510)
+++ community-i686/PKGBUILD 2016-10-18 13:07:25 UTC (rev 192511)
@@ -1,68 +0,0 @@
-# $Id$
-# vim:set ft=sh:
-# Maintainer: BlackEagle < ike DOT devolder AT gmail DOT com >
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Mateusz Herych 
-# Contributor: ruario 
-# Contributor: Daniel Isenmann 
-# Contributor: dorphell 
-# Contributor: Sigitas Mazaliauskas 
-# Contributor: eworm
-
-pkgname=opera
-pkgver=40.0.2308.62
-pkgrel=1
-pkgdesc="A fast and secure web browser"
-url="http://www.opera.com/";
-options=(!strip !zipman)
-license=('custom:opera')
-backup=("etc/$pkgname/default")
-arch=('i686' 'x86_64')
-depends=('gtk2' 'desktop-file-utils' 'shared-mime-info' 'libxtst' 'gconf' 
'libxss' 'alsa-lib' 'nss' 'ttf-font' 'libnotify' 'hicolor-icon-theme')
-optdepends=(
-'curl: opera crash reporter and autoupdate checker'
-'opera-ffmpeg-codecs: playback of proprietary video/audio'
-)
-source=(
-"opera"
-"default"
-)
-source_i686=("http://get.geo.opera.com/pub/${pkgname}/desktop/${pkgver}/linux/${pkgname}-stable_${pkgver}_i386.deb";)
-source_x86_64=("http://get.geo.opera.com/pub/${pkgname}/desktop/${pkgver}/linux/${pkgname}-stable_${pkgver}_amd64.deb";)
-sha256sums=('508512464e24126fddfb2c41a1e2e86624bdb0c0748084b6a922573b6cf6b9c5'
-'4913d97dec0ddc99d1e089b029b9123c2c86b7c88d631c4db119b09da027')
-sha256sums_i686=('6e0e5209caab2ad48ec4bcda2ac24addb7c91dbff1013c4a7dd9a01dfa0f8058')
-sha256sums_x86_64=('61c62a0de6759119d529ac0543af1bad1b30815ea796fa944ce5c1d5649ac2ed')
-
-prepare() {
-sed -e "s/%pkgname%/$pkgname/g" -i "$srcdir/opera"
-sed -e "s/%operabin%/$pkgname\/$pkgname/g" \
--i "$srcdir/opera"
-}
-
-package() {
-tar -xf data.tar.xz --exclude=usr/share/{lintian,menu} -C "$pkgdir/"
-
-# get rid of the extra subfolder {i386,x86_64}-linux-gnu
-(
-cd "$pkgdir/usr/lib/"*-linux-gnu/
-mv "$pkgname" ../
-)
-rm -rf "$pkgdir/usr/lib/"*-linux-gnu
-
-# suid opera_sandbox
-chmod 4755 "$pkgdir/usr/lib/$pkgname/opera_sandbox"
-
-# install default options
-install -Dm644 "$srcdir/default" "$pkgdir/etc/$pkgname/default"
-
-# install opera wrapper
-rm "$pkgdir/usr/bin/$pkgname"
-install -Dm755 "$srcdir/opera" "$pkgdir/usr/bin/$pkgname"
-
-# license
-install -Dm644 \
-"$pkgdir/usr/share/doc/${pkgname}-stable/copyright" \
-"$pkgdir/usr/share/licenses/$pkgname/copyright"
-}
-

Copied: opera/repos/community-i686/PKGBUILD (from rev 192510, 
opera/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-10-18 13:07:25 UTC (rev 192511)
@@ -0,0 +1,68 @@
+# $Id$
+# vim:set ft=sh:
+# Maintainer: BlackEagle < ike DOT devolder AT gmail DOT com >
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Mateusz Herych 
+# Contributor: ruario 
+# Contributor: Daniel Isenmann 
+# Contributor: dorphel

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

2016-10-18 Thread Ike Devolder
Date: Tuesday, October 18, 2016 @ 13:12:53
  Author: idevolder
Revision: 192513

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

Added:
  opera/repos/community-i686/PKGBUILD
(from rev 192512, opera/trunk/PKGBUILD)
  opera/repos/community-i686/default
(from rev 192512, opera/trunk/default)
  opera/repos/community-i686/opera
(from rev 192512, opera/trunk/opera)
  opera/repos/community-i686/opera.install
(from rev 192512, opera/trunk/opera.install)
  opera/repos/community-x86_64/PKGBUILD
(from rev 192512, opera/trunk/PKGBUILD)
  opera/repos/community-x86_64/default
(from rev 192512, opera/trunk/default)
  opera/repos/community-x86_64/opera
(from rev 192512, opera/trunk/opera)
  opera/repos/community-x86_64/opera.install
(from rev 192512, opera/trunk/opera.install)
Deleted:
  opera/repos/community-i686/PKGBUILD
  opera/repos/community-i686/default
  opera/repos/community-i686/opera
  opera/repos/community-i686/opera.install
  opera/repos/community-x86_64/PKGBUILD
  opera/repos/community-x86_64/default
  opera/repos/community-x86_64/opera
  opera/repos/community-x86_64/opera.install

+
 /PKGBUILD  |  136 +++
 /default   |8 ++
 /opera |   26 +++
 /opera.install |   78 ++
 community-i686/PKGBUILD|   68 ---
 community-i686/default |4 -
 community-i686/opera   |   13 ---
 community-i686/opera.install   |   39 ---
 community-x86_64/PKGBUILD  |   68 ---
 community-x86_64/default   |4 -
 community-x86_64/opera |   13 ---
 community-x86_64/opera.install |   39 ---
 12 files changed, 248 insertions(+), 248 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-10-18 13:12:31 UTC (rev 192512)
+++ community-i686/PKGBUILD 2016-10-18 13:12:53 UTC (rev 192513)
@@ -1,68 +0,0 @@
-# $Id$
-# vim:set ft=sh:
-# Maintainer: BlackEagle < ike DOT devolder AT gmail DOT com >
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Mateusz Herych 
-# Contributor: ruario 
-# Contributor: Daniel Isenmann 
-# Contributor: dorphell 
-# Contributor: Sigitas Mazaliauskas 
-# Contributor: eworm
-
-pkgname=opera
-pkgver=40.0.2308.90
-pkgrel=1
-pkgdesc="A fast and secure web browser"
-url="http://www.opera.com/";
-options=(!strip !zipman)
-license=('custom:opera')
-backup=("etc/$pkgname/default")
-arch=('i686' 'x86_64')
-depends=('gtk2' 'desktop-file-utils' 'shared-mime-info' 'libxtst' 'gconf' 
'libxss' 'alsa-lib' 'nss' 'ttf-font' 'libnotify' 'hicolor-icon-theme')
-optdepends=(
-'curl: opera crash reporter and autoupdate checker'
-'opera-ffmpeg-codecs: playback of proprietary video/audio'
-)
-source=(
-"opera"
-"default"
-)
-source_i686=("http://get.geo.opera.com/pub/${pkgname}/desktop/${pkgver}/linux/${pkgname}-stable_${pkgver}_i386.deb";)
-source_x86_64=("http://get.geo.opera.com/pub/${pkgname}/desktop/${pkgver}/linux/${pkgname}-stable_${pkgver}_amd64.deb";)
-sha256sums=('508512464e24126fddfb2c41a1e2e86624bdb0c0748084b6a922573b6cf6b9c5'
-'4913d97dec0ddc99d1e089b029b9123c2c86b7c88d631c4db119b09da027')
-sha256sums_i686=('93cc5cf5c0054bf418bc1957755fae91eb6172efe8bd175dda3e8c42ecea0bbb')
-sha256sums_x86_64=('cf4cc36aef8ce1459b54670d2d92950caceebb6e375be7e53a39ddc8bbfc358a')
-
-prepare() {
-sed -e "s/%pkgname%/$pkgname/g" -i "$srcdir/opera"
-sed -e "s/%operabin%/$pkgname\/$pkgname/g" \
--i "$srcdir/opera"
-}
-
-package() {
-tar -xf data.tar.xz --exclude=usr/share/{lintian,menu} -C "$pkgdir/"
-
-# get rid of the extra subfolder {i386,x86_64}-linux-gnu
-(
-cd "$pkgdir/usr/lib/"*-linux-gnu/
-mv "$pkgname" ../
-)
-rm -rf "$pkgdir/usr/lib/"*-linux-gnu
-
-# suid opera_sandbox
-chmod 4755 "$pkgdir/usr/lib/$pkgname/opera_sandbox"
-
-# install default options
-install -Dm644 "$srcdir/default" "$pkgdir/etc/$pkgname/default"
-
-# install opera wrapper
-rm "$pkgdir/usr/bin/$pkgname"
-install -Dm755 "$srcdir/opera" "$pkgdir/usr/bin/$pkgname"
-
-# license
-install -Dm644 \
-"$pkgdir/usr/share/doc/${pkgname}-stable/copyright" \
-"$pkgdir/usr/share/licenses/$pkgname/copyright"
-}
-

Copied: opera/repos/community-i686/PKGBUILD (from rev 192512, 
opera/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-10-18 13:12:53 UTC (rev 192513)
@@ -0,0 +1,68 @@
+# $Id$
+# vim:set ft=sh:
+# Maintainer: BlackEagle < ike DOT devolder AT gmail DOT com >
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Mateusz Herych 
+# Contributor: ruario 
+# Contributor: Daniel Isenmann 
+# Contributor: dorphel

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

2016-10-18 Thread Ike Devolder
Date: Tuesday, October 18, 2016 @ 13:12:31
  Author: idevolder
Revision: 192512

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-10-18 13:07:25 UTC (rev 192511)
+++ community-i686/PKGBUILD 2016-10-18 13:12:31 UTC (rev 192512)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: BlackIkeEagle 
-
-pkgname=libnfs
-pkgver=1.11.0
-pkgrel=1
-pkgdesc="client library for accessing NFS shares"
-arch=('i686' 'x86_64')
-url="https://github.com/sahlberg/libnfs";
-license=('GPL')
-depends=('glibc')
-source=(
-   "https://github.com/sahlberg/$pkgname/archive/$pkgname-$pkgver.tar.gz";
-)
-sha256sums=('fc2e45df14d8714ccd07dc2bbe919e45a2e36318bae7f045cbbb883a7854640f')
-
-#prepare() {
-  #cd "$pkgname-$pkgname-$pkgver"
-
-#}
-
-build() {
-   cd "$pkgname-$pkgname-$pkgver"
-
-   autoreconf -vif
-   ./configure --prefix=/usr
-   make
-}
-
-package() {
-   cd "$pkgname-$pkgname-$pkgver"
-   make DESTDIR="$pkgdir" install
-}
-

Copied: libnfs/repos/community-i686/PKGBUILD (from rev 192511, 
libnfs/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-10-18 13:12:31 UTC (rev 192512)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: BlackIkeEagle 
+
+pkgname=libnfs
+pkgver=1.11.0
+pkgrel=1
+pkgdesc="client library for accessing NFS shares"
+arch=('i686' 'x86_64')
+url="https://github.com/sahlberg/libnfs";
+license=('GPL')
+depends=('glibc')
+source=(
+   "https://github.com/sahlberg/$pkgname/archive/$pkgname-$pkgver.tar.gz";
+)
+sha256sums=('fc2e45df14d8714ccd07dc2bbe919e45a2e36318bae7f045cbbb883a7854640f')
+
+#prepare() {
+  #cd "$pkgname-$pkgname-$pkgver"
+
+#}
+
+build() {
+   cd "$pkgname-$pkgname-$pkgver"
+
+   autoreconf -vif
+   ./configure --prefix=/usr
+   make
+}
+
+package() {
+   cd "$pkgname-$pkgname-$pkgver"
+   make DESTDIR="$pkgdir" install
+}
+

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-10-18 13:07:25 UTC (rev 192511)
+++ community-x86_64/PKGBUILD   2016-10-18 13:12:31 UTC (rev 192512)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: BlackIkeEagle 
-
-pkgname=libnfs
-pkgver=1.11.0
-pkgrel=1
-pkgdesc="client library for accessing NFS shares"
-arch=('i686' 'x86_64')
-url="https://github.com/sahlberg/libnfs";
-license=('GPL')
-depends=('glibc')
-source=(
-   "https://github.com/sahlberg/$pkgname/archive/$pkgname-$pkgver.tar.gz";
-)
-sha256sums=('fc2e45df14d8714ccd07dc2bbe919e45a2e36318bae7f045cbbb883a7854640f')
-
-#prepare() {
-  #cd "$pkgname-$pkgname-$pkgver"
-
-#}
-
-build() {
-   cd "$pkgname-$pkgname-$pkgver"
-
-   autoreconf -vif
-   ./configure --prefix=/usr
-   make
-}
-
-package() {
-   cd "$pkgname-$pkgname-$pkgver"
-   make DESTDIR="$pkgdir" install
-}
-

Copied: libnfs/repos/community-x86_64/PKGBUILD (from rev 192511, 
libnfs/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-10-18 13:12:31 UTC (rev 192512)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: BlackIkeEagle 
+
+pkgname=libnfs
+pkgver=1.11.0
+pkgrel=1
+pkgdesc="client library for accessing NFS shares"
+arch=('i686' 'x86_64')
+url="https://github.com/sahlberg/libnfs";
+license=('GPL')
+depends=('glibc')
+source=(
+   "https://github.com/sahlberg/$pkgname/archive/$pkgname-$pkgver.tar.gz";
+)
+sha256sums=('fc2e45df14d8714ccd07dc2bbe919e45a2e36318bae7f045cbbb883a7854640f')
+
+#prepare() {
+  #cd "$pkgname-$pkgname-$pkgver"
+
+#}
+
+build() {
+   cd "$pkgname-$pkgname-$pkgver"
+
+   autoreconf -vif
+   ./configure --prefix=/usr
+   make
+}
+
+package() {
+   cd "$pkgname-$pkgname-$pkgver"
+   make DESTDIR="$pkgdir" install
+}
+


[arch-commits] Commit in (37 files)

2016-10-18 Thread Antonio Rojas
Date: Tuesday, October 18, 2016 @ 13:47:46
  Author: arojas
Revision: 278915

Plasma 5.8.2

Modified:
  bluedevil/trunk/PKGBUILD
  breeze-grub/trunk/PKGBUILD
  breeze-gtk/trunk/PKGBUILD
  breeze/trunk/PKGBUILD
  kactivitymanagerd/trunk/PKGBUILD
  kde-cli-tools/trunk/PKGBUILD
  kde-gtk-config/trunk/PKGBUILD
  kdecoration/trunk/PKGBUILD
  kdeplasma-addons/trunk/PKGBUILD
  kgamma5/trunk/PKGBUILD
  khotkeys/trunk/PKGBUILD
  kinfocenter/trunk/PKGBUILD
  kmenuedit/trunk/PKGBUILD
  kscreen/trunk/PKGBUILD
  kscreenlocker/trunk/PKGBUILD
  ksshaskpass/trunk/PKGBUILD
  ksysguard/trunk/PKGBUILD
  kwallet-pam/trunk/PKGBUILD
  kwayland-integration/trunk/PKGBUILD
  kwin/trunk/PKGBUILD
  kwrited/trunk/PKGBUILD
  libkscreen/trunk/PKGBUILD
  libksysguard/trunk/PKGBUILD
  milou/trunk/PKGBUILD
  oxygen/trunk/PKGBUILD
  plasma-desktop/trunk/PKGBUILD
  plasma-integration/trunk/PKGBUILD
  plasma-nm/trunk/PKGBUILD
  plasma-pa/trunk/PKGBUILD
  plasma-sdk/trunk/PKGBUILD
  plasma-workspace-wallpapers/trunk/PKGBUILD
  plasma-workspace/trunk/PKGBUILD
  polkit-kde-agent/trunk/PKGBUILD
  powerdevil/trunk/PKGBUILD
  sddm-kcm/trunk/PKGBUILD
  systemsettings/trunk/PKGBUILD
  user-manager/trunk/PKGBUILD

+
 bluedevil/trunk/PKGBUILD   |4 ++--
 breeze-grub/trunk/PKGBUILD |4 ++--
 breeze-gtk/trunk/PKGBUILD  |4 ++--
 breeze/trunk/PKGBUILD  |4 ++--
 kactivitymanagerd/trunk/PKGBUILD   |4 ++--
 kde-cli-tools/trunk/PKGBUILD   |4 ++--
 kde-gtk-config/trunk/PKGBUILD  |4 ++--
 kdecoration/trunk/PKGBUILD |4 ++--
 kdeplasma-addons/trunk/PKGBUILD|4 ++--
 kgamma5/trunk/PKGBUILD |4 ++--
 khotkeys/trunk/PKGBUILD|4 ++--
 kinfocenter/trunk/PKGBUILD |4 ++--
 kmenuedit/trunk/PKGBUILD   |4 ++--
 kscreen/trunk/PKGBUILD |4 ++--
 kscreenlocker/trunk/PKGBUILD   |4 ++--
 ksshaskpass/trunk/PKGBUILD |4 ++--
 ksysguard/trunk/PKGBUILD   |4 ++--
 kwallet-pam/trunk/PKGBUILD |4 ++--
 kwayland-integration/trunk/PKGBUILD|4 ++--
 kwin/trunk/PKGBUILD|4 ++--
 kwrited/trunk/PKGBUILD |4 ++--
 libkscreen/trunk/PKGBUILD  |4 ++--
 libksysguard/trunk/PKGBUILD|4 ++--
 milou/trunk/PKGBUILD   |4 ++--
 oxygen/trunk/PKGBUILD  |4 ++--
 plasma-desktop/trunk/PKGBUILD  |4 ++--
 plasma-integration/trunk/PKGBUILD  |4 ++--
 plasma-nm/trunk/PKGBUILD   |4 ++--
 plasma-pa/trunk/PKGBUILD   |4 ++--
 plasma-sdk/trunk/PKGBUILD  |4 ++--
 plasma-workspace-wallpapers/trunk/PKGBUILD |4 ++--
 plasma-workspace/trunk/PKGBUILD|4 ++--
 polkit-kde-agent/trunk/PKGBUILD|4 ++--
 powerdevil/trunk/PKGBUILD  |4 ++--
 sddm-kcm/trunk/PKGBUILD|4 ++--
 systemsettings/trunk/PKGBUILD  |4 ++--
 user-manager/trunk/PKGBUILD|4 ++--
 37 files changed, 74 insertions(+), 74 deletions(-)

Modified: bluedevil/trunk/PKGBUILD
===
--- bluedevil/trunk/PKGBUILD2016-10-18 09:06:57 UTC (rev 278914)
+++ bluedevil/trunk/PKGBUILD2016-10-18 13:47:46 UTC (rev 278915)
@@ -4,7 +4,7 @@
 # Contributor: Antonio Rojas 
 
 pkgname=bluedevil
-pkgver=5.8.1
+pkgver=5.8.2
 pkgrel=1
 epoch=1
 pkgdesc='Integrate the Bluetooth technology within KDE workspace and 
applications'
@@ -17,7 +17,7 @@
 replaces=('bluedevil-frameworks')
 groups=('plasma')
 
source=("http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('e1b224c366cdadb4490762511640c2be9efe56c6700d39820e94418645cf5548'
+sha256sums=('cd6a3629703313e8ca66c927e629afd550a7fbc259b3e83187c8a923e0860bd5'
 'SKIP')
 validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
   '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon

Modified: breeze/trunk/PKGBUILD
===
--- breeze/trunk/PKGBUILD   2016-10-18 09:06:57 UTC (rev 278914)
+++ breeze/trunk/PKGBUILD   2016-10-18 13:47:46 UTC (rev 278915)
@@ -5,7 +5,7 @@
 
 pkgbase=breeze
 pkgname=('breeze' 'breeze-kde4')
-pkgver=5.8.1
+pkgver=5.8.2
 pkgrel=1
 arch=('i686' 'x86_64')
 url='https://www.kde.org/workspaces/plasmadesktop/'
@@ -13,7 +13,7 @@
 makedepends=('extra-cmake-modules' 'frameworkintegration' 'kdelibs'
  'automoc4' 'kdecoration' 'kcmutils' 'plasma-framework' 'python')
 
source=("http://download.kde.org/stable/plasma/${pkgver}/$pkgbase-$pkgver.tar.xz"{,.sig})
-sha256sums=('778c3319

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

2016-10-18 Thread Antonio Rojas
Date: Tuesday, October 18, 2016 @ 13:51:35
  Author: arojas
Revision: 278916

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

Added:
  kactivitymanagerd/repos/extra-i686/PKGBUILD
(from rev 278915, kactivitymanagerd/trunk/PKGBUILD)
  kactivitymanagerd/repos/extra-x86_64/PKGBUILD
(from rev 278915, kactivitymanagerd/trunk/PKGBUILD)
Deleted:
  kactivitymanagerd/repos/extra-i686/PKGBUILD
  kactivitymanagerd/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 2016-10-18 13:47:46 UTC (rev 278915)
+++ extra-i686/PKGBUILD 2016-10-18 13:51:35 UTC (rev 278916)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-# Maintainer: Felix Yan 
-
-pkgname=kactivitymanagerd
-pkgver=5.8.1
-pkgrel=1
-pkgdesc="System service to manage user's activities and track the usage 
patterns"
-arch=(i686 x86_64)
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=(LGPL)
-depends=(kio)
-makedepends=(extra-cmake-modules boost python)
-groups=(plasma)
-source=("http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('9538a5c237ef54602a233c025eb38a4426b51195a12b6d153e5b988a5325b95d'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
-  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_LIBDIR=lib \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: kactivitymanagerd/repos/extra-i686/PKGBUILD (from rev 278915, 
kactivitymanagerd/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-10-18 13:51:35 UTC (rev 278916)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+
+pkgname=kactivitymanagerd
+pkgver=5.8.2
+pkgrel=1
+pkgdesc="System service to manage user's activities and track the usage 
patterns"
+arch=(i686 x86_64)
+url='https://www.kde.org/workspaces/plasmadesktop/'
+license=(LGPL)
+depends=(kio)
+makedepends=(extra-cmake-modules boost python)
+groups=(plasma)
+source=("http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('4c53828d5ab9f2beab592b8690c769c8af20ee72af298d12a1e0b7d9dbededb5'
+'SKIP')
+validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
+  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
+  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-10-18 13:47:46 UTC (rev 278915)
+++ extra-x86_64/PKGBUILD   2016-10-18 13:51:35 UTC (rev 278916)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-# Maintainer: Felix Yan 
-
-pkgname=kactivitymanagerd
-pkgver=5.8.1
-pkgrel=1
-pkgdesc="System service to manage user's activities and track the usage 
patterns"
-arch=(i686 x86_64)
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=(LGPL)
-depends=(kio)
-makedepends=(extra-cmake-modules boost python)
-groups=(plasma)
-source=("http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('9538a5c237ef54602a233c025eb38a4426b51195a12b6d153e5b988a5325b95d'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
-  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_LIBDIR=lib \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: kactivitymanagerd/repos/extra-x86_64/PKGBUILD (from rev 278915, 
kactivitymanagerd/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ ext

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

2016-10-18 Thread Antonio Rojas
Date: Tuesday, October 18, 2016 @ 13:51:41
  Author: arojas
Revision: 278917

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

Added:
  kscreenlocker/repos/extra-i686/PKGBUILD
(from rev 278916, kscreenlocker/trunk/PKGBUILD)
  kscreenlocker/repos/extra-x86_64/PKGBUILD
(from rev 278916, kscreenlocker/trunk/PKGBUILD)
Deleted:
  kscreenlocker/repos/extra-i686/PKGBUILD
  kscreenlocker/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 2016-10-18 13:51:35 UTC (rev 278916)
+++ extra-i686/PKGBUILD 2016-10-18 13:51:41 UTC (rev 278917)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-
-pkgname=kscreenlocker
-pkgver=5.8.1
-pkgrel=1
-pkgdesc='Library and components for secure lock screen architecture'
-arch=(i686 x86_64)
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=(LGPL)
-groups=(plasma)
-depends=(kidletime kwayland kdeclarative)
-makedepends=(extra-cmake-modules python kdoctools kcmutils libxcursor)
-source=("http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('30d3fd72a400720a37877c2a3bf0ce8ef1f84cb8807ac6ca35b7076ec8b92b22'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
-  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_LIBEXECDIR=/usr/lib \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: kscreenlocker/repos/extra-i686/PKGBUILD (from rev 278916, 
kscreenlocker/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-10-18 13:51:41 UTC (rev 278917)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+
+pkgname=kscreenlocker
+pkgver=5.8.2
+pkgrel=1
+pkgdesc='Library and components for secure lock screen architecture'
+arch=(i686 x86_64)
+url='https://www.kde.org/workspaces/plasmadesktop/'
+license=(LGPL)
+groups=(plasma)
+depends=(kidletime kwayland kdeclarative)
+makedepends=(extra-cmake-modules python kdoctools kcmutils libxcursor)
+source=("http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('e17abef1b648a6ed77d5646d3378a44273ddd9d4a06c2747fbbf2a4f0a145e55'
+'SKIP')
+validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
+  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
+  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_LIBEXECDIR=/usr/lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-10-18 13:51:35 UTC (rev 278916)
+++ extra-x86_64/PKGBUILD   2016-10-18 13:51:41 UTC (rev 278917)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-
-pkgname=kscreenlocker
-pkgver=5.8.1
-pkgrel=1
-pkgdesc='Library and components for secure lock screen architecture'
-arch=(i686 x86_64)
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=(LGPL)
-groups=(plasma)
-depends=(kidletime kwayland kdeclarative)
-makedepends=(extra-cmake-modules python kdoctools kcmutils libxcursor)
-source=("http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('30d3fd72a400720a37877c2a3bf0ce8ef1f84cb8807ac6ca35b7076ec8b92b22'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
-  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_LIBEXECDIR=/usr/lib \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: kscreenlocker/repos/extra-x86_64/PKGBUILD (from rev 278916, 
kscreenlocker/trunk/PKGBUILD)

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

2016-10-18 Thread Antonio Rojas
Date: Tuesday, October 18, 2016 @ 13:51:48
  Author: arojas
Revision: 278918

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-10-18 13:51:41 UTC (rev 278917)
+++ extra-i686/PKGBUILD 2016-10-18 13:51:48 UTC (rev 278918)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Antonio Rojas 
-
-pkgname=kdecoration
-pkgver=5.8.1
-pkgrel=1
-pkgdesc='Plugin based library to create window decorations'
-arch=('i686' 'x86_64')
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=('LGPL')
-depends=('qt5-base')
-makedepends=('extra-cmake-modules')
-groups=(plasma)
-source=("http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('f205ab039ebb135a5b04f2325ea216c2c76749dbe95bde10d4706b09824ba525'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
-  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_SYSCONFDIR=/etc \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: kdecoration/repos/extra-i686/PKGBUILD (from rev 278917, 
kdecoration/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-10-18 13:51:48 UTC (rev 278918)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Antonio Rojas 
+
+pkgname=kdecoration
+pkgver=5.8.2
+pkgrel=1
+pkgdesc='Plugin based library to create window decorations'
+arch=('i686' 'x86_64')
+url='https://www.kde.org/workspaces/plasmadesktop/'
+license=('LGPL')
+depends=('qt5-base')
+makedepends=('extra-cmake-modules')
+groups=(plasma)
+source=("http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('c69c6bf3478a1633a86597de1158eef937c6a1cd8a1eb6437428e834c7377171'
+'SKIP')
+validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
+  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
+  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_SYSCONFDIR=/etc \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-10-18 13:51:41 UTC (rev 278917)
+++ extra-x86_64/PKGBUILD   2016-10-18 13:51:48 UTC (rev 278918)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Antonio Rojas 
-
-pkgname=kdecoration
-pkgver=5.8.1
-pkgrel=1
-pkgdesc='Plugin based library to create window decorations'
-arch=('i686' 'x86_64')
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=('LGPL')
-depends=('qt5-base')
-makedepends=('extra-cmake-modules')
-groups=(plasma)
-source=("http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('f205ab039ebb135a5b04f2325ea216c2c76749dbe95bde10d4706b09824ba525'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
-  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_SYSCONFDIR=/etc \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: kdecoration/repos/extra-x86_64/PKGBUILD (from rev 278917, 
kdecoration/trunk/PKGBUILD)
===

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

2016-10-18 Thread Antonio Rojas
Date: Tuesday, October 18, 2016 @ 13:52:39
  Author: arojas
Revision: 278928

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

Added:
  plasma-integration/repos/extra-i686/PKGBUILD
(from rev 278927, plasma-integration/trunk/PKGBUILD)
  plasma-integration/repos/extra-x86_64/PKGBUILD
(from rev 278927, plasma-integration/trunk/PKGBUILD)
Deleted:
  plasma-integration/repos/extra-i686/PKGBUILD
  plasma-integration/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 2016-10-18 13:52:33 UTC (rev 278927)
+++ extra-i686/PKGBUILD 2016-10-18 13:52:39 UTC (rev 278928)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-# Maintainer: Felix Yan 
-
-pkgname=plasma-integration
-pkgver=5.8.1
-pkgrel=1
-pkgdesc="Qt Platform Theme integration plugins for the Plasma workspaces"
-arch=(i686 x86_64)
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=(LGPL)
-depends=(kio kwayland libxcursor noto-fonts ttf-hack)
-makedepends=(extra-cmake-modules python breeze)
-groups=(plasma)
-source=("http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('c754aeed43dbf51c32094fe150d1243fcc4cd9817cc7e35765ccb157ac3dccf5'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
-  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_LIBDIR=lib \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: plasma-integration/repos/extra-i686/PKGBUILD (from rev 278927, 
plasma-integration/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-10-18 13:52:39 UTC (rev 278928)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+
+pkgname=plasma-integration
+pkgver=5.8.2
+pkgrel=1
+pkgdesc="Qt Platform Theme integration plugins for the Plasma workspaces"
+arch=(i686 x86_64)
+url='https://www.kde.org/workspaces/plasmadesktop/'
+license=(LGPL)
+depends=(kio kwayland libxcursor noto-fonts ttf-hack)
+makedepends=(extra-cmake-modules python breeze)
+groups=(plasma)
+source=("http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('2e13ec9fc4fd9d61e0328fb96218d42462ed79ca04134e760c4c517a6469f7fc'
+'SKIP')
+validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
+  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
+  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-10-18 13:52:33 UTC (rev 278927)
+++ extra-x86_64/PKGBUILD   2016-10-18 13:52:39 UTC (rev 278928)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-# Maintainer: Felix Yan 
-
-pkgname=plasma-integration
-pkgver=5.8.1
-pkgrel=1
-pkgdesc="Qt Platform Theme integration plugins for the Plasma workspaces"
-arch=(i686 x86_64)
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=(LGPL)
-depends=(kio kwayland libxcursor noto-fonts ttf-hack)
-makedepends=(extra-cmake-modules python breeze)
-groups=(plasma)
-source=("http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('c754aeed43dbf51c32094fe150d1243fcc4cd9817cc7e35765ccb157ac3dccf5'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
-  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_LIBDIR=lib \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: plasma-integration/repos/extra-x86_64/PKGBUILD (from rev 278927, 
plasma-integration/trunk/PKGBUILD)
==

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

2016-10-18 Thread Antonio Rojas
Date: Tuesday, October 18, 2016 @ 13:52:20
  Author: arojas
Revision: 278925

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-10-18 13:52:14 UTC (rev 278924)
+++ extra-i686/PKGBUILD 2016-10-18 13:52:20 UTC (rev 278925)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Antonio Rojas
-
-pkgname=libksysguard
-pkgver=5.8.1
-pkgrel=1
-pkgdesc='Libksysguard'
-arch=('i686' 'x86_64')
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=('LGPL')
-depends=('libxres' 'plasma-framework' 'qt5-webkit')
-makedepends=('extra-cmake-modules' 'kdoctools' 'python')
-conflicts=('kdebase-workspace')
-groups=(plasma)
-source=("http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('771c487cce44e64040fa976ff038972ee2099d1f9b39839f8d712ca373e42fd1'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
-  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_LIBDIR=lib \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: libksysguard/repos/extra-i686/PKGBUILD (from rev 278924, 
libksysguard/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-10-18 13:52:20 UTC (rev 278925)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Antonio Rojas
+
+pkgname=libksysguard
+pkgver=5.8.2
+pkgrel=1
+pkgdesc='Libksysguard'
+arch=('i686' 'x86_64')
+url='https://www.kde.org/workspaces/plasmadesktop/'
+license=('LGPL')
+depends=('libxres' 'plasma-framework' 'qt5-webkit')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+conflicts=('kdebase-workspace')
+groups=(plasma)
+source=("http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('d42456a89bcbd6e5198489fd2105688d436e212a4c43d8d5e0ebe9bb38181695'
+'SKIP')
+validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
+  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
+  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-10-18 13:52:14 UTC (rev 278924)
+++ extra-x86_64/PKGBUILD   2016-10-18 13:52:20 UTC (rev 278925)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Antonio Rojas
-
-pkgname=libksysguard
-pkgver=5.8.1
-pkgrel=1
-pkgdesc='Libksysguard'
-arch=('i686' 'x86_64')
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=('LGPL')
-depends=('libxres' 'plasma-framework' 'qt5-webkit')
-makedepends=('extra-cmake-modules' 'kdoctools' 'python')
-conflicts=('kdebase-workspace')
-groups=(plasma)
-source=("http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('771c487cce44e64040fa976ff038972ee2099d1f9b39839f8d712ca373e42fd1'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
-  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_LIBDIR=lib \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: libksysguard/repos/extra-x86_64/PKGBUILD (from rev 278924, 
libksysguard/trunk/PKGBUILD)

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

2016-10-18 Thread Antonio Rojas
Date: Tuesday, October 18, 2016 @ 13:52:46
  Author: arojas
Revision: 278929

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

Added:
  plasma-workspace/repos/extra-i686/PKGBUILD
(from rev 278928, plasma-workspace/trunk/PKGBUILD)
  plasma-workspace/repos/extra-i686/kde.pam
(from rev 278928, plasma-workspace/trunk/kde.pam)
  plasma-workspace/repos/extra-x86_64/PKGBUILD
(from rev 278928, plasma-workspace/trunk/PKGBUILD)
  plasma-workspace/repos/extra-x86_64/kde.pam
(from rev 278928, 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 |  190 
 /kde.pam  |   18 
 extra-i686/PKGBUILD   |   95 
 extra-i686/kde.pam|9 --
 extra-x86_64/PKGBUILD |   95 
 extra-x86_64/kde.pam  |9 --
 6 files changed, 208 insertions(+), 208 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-10-18 13:52:39 UTC (rev 278928)
+++ extra-i686/PKGBUILD 2016-10-18 13:52:46 UTC (rev 278929)
@@ -1,95 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Maintainer: Antonio Rojas 
-# Contributor: Andrea Scarpino 
-# Contributor: Alexey D. 
-
-pkgbase=plasma-workspace
-pkgname=('plasma-workspace' 'drkonqi' 'kuiserver' 'plasma-wayland-session')
-pkgver=5.8.1
-pkgrel=1
-pkgdesc='KDE Plasma Workspace'
-arch=('i686' 'x86_64')
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=('LGPL')
-# note on libxdamage:
-# not detected by namcap because libgl depends on it
-# but nvidia providing libgl does not depend on libxdamage
-depends=('kjsembed' 'knotifyconfig' 'libxdamage' 'libksysguard' 'ktexteditor' 
'libqalculate'
- 'qt5-tools' 'kde-cli-tools' 'xorg-xrdb' 'xorg-xsetroot' 'iso-codes' 
'kactivitymanagerd' 'kholidays'
- 'xorg-xmessage' 'xorg-xprop' 'milou' 'prison' 'kwin' 
'plasma-integration')
-makedepends=('extra-cmake-modules' 'kdoctools' 'gpsd' 'baloo'
- 'krunner' 'kxmlrpcclient' 'networkmanager-qt' 'kdesignerplugin')
-groups=('plasma')
-source=("http://download.kde.org/stable/plasma/${pkgver}/${pkgbase}-${pkgver}.tar.xz"{,.sig}
 'kde.pam')
-sha256sums=('c05a38b94fb815957d6b572dfb43f1d8624654c3e23d9344751063118c4aed5c'
-'SKIP'
-'00090291204baabe9d6857d3b1419832376dd2e279087d718b64792691e86739')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
-  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgbase-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DKDE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_LIBEXECDIR=lib \
--DBUILD_TESTING=OFF
-  make
-}
-
-package_plasma-workspace() {
-  depends+=('kuiserver')
-  optdepends=('plasma-workspace-wallpapers: additional wallpapers'
-  'gpsd: GPS based geolocation' 'networkmanager-qt: IP based 
geolocation'
-  'kdepim-addons: displaying PIM events in the calendar')
-  conflicts=('kdebase-workspace')
-
-  cd build
-  make DESTDIR="$pkgdir" install
-
-  install -Dm644 "$srcdir"/kde.pam "$pkgdir"/etc/pam.d/kde
-
-  # Remove conflicts with drkonqi
-  rm "$pkgdir"/usr/lib/drkonqi
-  rm -r "$pkgdir"/usr/share/drkonqi
-
-  # Remove conflicts with kuiserver
-  rm "$pkgdir"/usr/bin/kuiserver5
-  rm "$pkgdir"/usr/lib/libkdeinit5_kuiserver5.so
-  rm "$pkgdir"/usr/share/dbus-1/services/kf5_org.kde.kuiserver.service
-  rm "$pkgdir"/usr/share/kservices5/kuiserver.desktop
-
-  # Split plasma-wayland scripts
-  rm -r "$pkgdir"/usr/share/wayland-sessions
-}
-
-package_drkonqi() {
-  pkgdesc='KDE crash handler'
-  depends=('kxmlrpcclient' 'kidletime' 'gdb')
-
-  cd build/drkonqi
-  make DESTDIR="$pkgdir" install
-}
-
-package_kuiserver() {
-  pkgdesc='KDE Progress Info UI server'
-  depends=('kxmlgui')
-
-  cd build/kuiserver
-  make DESTDIR="$pkgdir" install
-}
-
-package_plasma-wayland-session() {
-  pkgdesc='Plasma Wayland session'
-  depends=('plasma-workspace' 'qt5-wayland' 'kwayland-integration' 
'xorg-server-xwayland')
-  groups=()
-
-  install -Dm644 build/plasmawayland.desktop 
"$pkgdir"/usr/share/wayland-sessions/plasmawayland.desktop
-}

Copied: plasma-workspace/repos/extra-i686/PKGBUILD (from rev 278928, 
plasma-workspace/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-10-18 13:52:46 UTC (rev 278929)
@@ -0,0 +1,95 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+# Contributor: Alexey D. 
+
+pkgbas

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

2016-10-18 Thread Antonio Rojas
Date: Tuesday, October 18, 2016 @ 13:52:53
  Author: arojas
Revision: 278931

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-10-18 13:52:49 UTC (rev 278930)
+++ extra-i686/PKGBUILD 2016-10-18 13:52:53 UTC (rev 278931)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Antonio Rojas
-
-pkgname=khotkeys
-pkgver=5.8.1
-pkgrel=1
-pkgdesc='KHotKeys'
-arch=('i686' 'x86_64')
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=('LGPL')
-depends=('plasma-workspace')
-makedepends=('extra-cmake-modules' 'kdoctools' 'python' 'kdesignerplugin')
-conflicts=('kdebase-workspace')
-groups=(plasma)
-source=("http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('b12a9e41d588856168ff24908c17d88c830686cc1075534a5228f62a766a78bc'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
-  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_LIBDIR=lib \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: khotkeys/repos/extra-i686/PKGBUILD (from rev 278930, 
khotkeys/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-10-18 13:52:53 UTC (rev 278931)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Antonio Rojas
+
+pkgname=khotkeys
+pkgver=5.8.2
+pkgrel=1
+pkgdesc='KHotKeys'
+arch=('i686' 'x86_64')
+url='https://www.kde.org/workspaces/plasmadesktop/'
+license=('LGPL')
+depends=('plasma-workspace')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python' 'kdesignerplugin')
+conflicts=('kdebase-workspace')
+groups=(plasma)
+source=("http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('452d824790d7b3de20701d852678ca7966704faa9842a7da64e04694bca5959d'
+'SKIP')
+validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
+  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
+  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-10-18 13:52:49 UTC (rev 278930)
+++ extra-x86_64/PKGBUILD   2016-10-18 13:52:53 UTC (rev 278931)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Antonio Rojas
-
-pkgname=khotkeys
-pkgver=5.8.1
-pkgrel=1
-pkgdesc='KHotKeys'
-arch=('i686' 'x86_64')
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=('LGPL')
-depends=('plasma-workspace')
-makedepends=('extra-cmake-modules' 'kdoctools' 'python' 'kdesignerplugin')
-conflicts=('kdebase-workspace')
-groups=(plasma)
-source=("http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('b12a9e41d588856168ff24908c17d88c830686cc1075534a5228f62a766a78bc'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
-  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_LIBDIR=lib \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: khotkeys/repos/extra-x86_64/PKGBUILD (from rev 278930, 
khotkeys/trunk/PKGBUILD)
===
--- extra-x

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

2016-10-18 Thread Antonio Rojas
Date: Tuesday, October 18, 2016 @ 13:53:30
  Author: arojas
Revision: 278937

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-10-18 13:53:24 UTC (rev 278936)
+++ extra-i686/PKGBUILD 2016-10-18 13:53:30 UTC (rev 278937)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Antonio Rojas 
-
-pkgname=polkit-kde-agent
-pkgver=5.8.1
-pkgrel=1
-pkgdesc='Daemon providing a polkit authentication UI for KDE'
-arch=('i686' 'x86_64')
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=('LGPL')
-depends=('kiconthemes' 'kdbusaddons' 'kcrash')
-makedepends=('extra-cmake-modules' 'kdoctools' 'python')
-conflicts=('polkit-kde-frameworks')
-replaces=('polkit-kde-frameworks')
-groups=(plasma)
-source=("http://download.kde.org/stable/plasma/$pkgver/$pkgname-1-$pkgver.tar.xz"{,.sig})
-sha256sums=('fbedcac5b754654a73bc8772d43d34e373875522203b807756d82b044676bce0'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
-  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-1-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_LIBEXECDIR=lib/polkit-kde \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: polkit-kde-agent/repos/extra-i686/PKGBUILD (from rev 278936, 
polkit-kde-agent/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-10-18 13:53:30 UTC (rev 278937)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Antonio Rojas 
+
+pkgname=polkit-kde-agent
+pkgver=5.8.2
+pkgrel=1
+pkgdesc='Daemon providing a polkit authentication UI for KDE'
+arch=('i686' 'x86_64')
+url='https://www.kde.org/workspaces/plasmadesktop/'
+license=('LGPL')
+depends=('kiconthemes' 'kdbusaddons' 'kcrash')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+conflicts=('polkit-kde-frameworks')
+replaces=('polkit-kde-frameworks')
+groups=(plasma)
+source=("http://download.kde.org/stable/plasma/$pkgver/$pkgname-1-$pkgver.tar.xz"{,.sig})
+sha256sums=('0e71455004718a67f5c44ae1c1d743000de898d4dfe1aabca5883582fb88f4c6'
+'SKIP')
+validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
+  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
+  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-1-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_LIBEXECDIR=lib/polkit-kde \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-10-18 13:53:24 UTC (rev 278936)
+++ extra-x86_64/PKGBUILD   2016-10-18 13:53:30 UTC (rev 278937)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Antonio Rojas 
-
-pkgname=polkit-kde-agent
-pkgver=5.8.1
-pkgrel=1
-pkgdesc='Daemon providing a polkit authentication UI for KDE'
-arch=('i686' 'x86_64')
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=('LGPL')
-depends=('kiconthemes' 'kdbusaddons' 'kcrash')
-makedepends=('extra-cmake-modules' 'kdoctools' 'python')
-conflicts=('polkit-kde-frameworks')
-replaces=('polkit-kde-frameworks')
-groups=(plasma)
-source=("http://download.kde.org/stable/plasma/$pkgver/$pkgname-1-$pkgver.tar.xz"{,.sig})
-sha256sums=('fbedcac5b754654a73bc8772d43d34e373875522203b807756d82b044676bce0'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
-  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
-
-prepare() {
-  mkdir -p build
-}
-
-bui

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

2016-10-18 Thread Antonio Rojas
Date: Tuesday, October 18, 2016 @ 13:53:24
  Author: arojas
Revision: 278936

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-10-18 13:53:18 UTC (rev 278935)
+++ extra-i686/PKGBUILD 2016-10-18 13:53:24 UTC (rev 278936)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Antonio Rojas
-
-pkgname=powerdevil
-pkgver=5.8.1
-pkgrel=1
-pkgdesc='Manages the power consumption settings of a Plasma Shell'
-arch=('i686' 'x86_64')
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=('LGPL')
-depends=('plasma-workspace' 'bluez-qt' 'networkmanager-qt' 'libkscreen')
-makedepends=('extra-cmake-modules' 'kdoctools' 'python' 'kdesignerplugin')
-conflicts=('kdebase-workspace')
-groups=('plasma')
-source=("http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('5b6ad450bba8e9d63efa44853e4f472376de2fba44a8b443e3a0c631996d7562'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
-  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_LIBDIR=lib \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: powerdevil/repos/extra-i686/PKGBUILD (from rev 278935, 
powerdevil/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-10-18 13:53:24 UTC (rev 278936)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Antonio Rojas
+
+pkgname=powerdevil
+pkgver=5.8.2
+pkgrel=1
+pkgdesc='Manages the power consumption settings of a Plasma Shell'
+arch=('i686' 'x86_64')
+url='https://www.kde.org/workspaces/plasmadesktop/'
+license=('LGPL')
+depends=('plasma-workspace' 'bluez-qt' 'networkmanager-qt' 'libkscreen')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python' 'kdesignerplugin')
+conflicts=('kdebase-workspace')
+groups=('plasma')
+source=("http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('fdc8a5f43c27ebfa78940de031b113880ea6213e47b33b3e233ed2351c02532e'
+'SKIP')
+validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
+  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
+  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-10-18 13:53:18 UTC (rev 278935)
+++ extra-x86_64/PKGBUILD   2016-10-18 13:53:24 UTC (rev 278936)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Antonio Rojas
-
-pkgname=powerdevil
-pkgver=5.8.1
-pkgrel=1
-pkgdesc='Manages the power consumption settings of a Plasma Shell'
-arch=('i686' 'x86_64')
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=('LGPL')
-depends=('plasma-workspace' 'bluez-qt' 'networkmanager-qt' 'libkscreen')
-makedepends=('extra-cmake-modules' 'kdoctools' 'python' 'kdesignerplugin')
-conflicts=('kdebase-workspace')
-groups=('plasma')
-source=("http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('5b6ad450bba8e9d63efa44853e4f472376de2fba44a8b443e3a0c631996d7562'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
-  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \

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

2016-10-18 Thread Antonio Rojas
Date: Tuesday, October 18, 2016 @ 13:53:34
  Author: arojas
Revision: 278938

archrelease: copy trunk to extra-any

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

--+
 PKGBUILD |   78 ++---
 1 file changed, 39 insertions(+), 39 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-10-18 13:53:30 UTC (rev 278937)
+++ PKGBUILD2016-10-18 13:53:34 UTC (rev 278938)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Antonio Rojas
-
-pkgname=plasma-workspace-wallpapers
-pkgver=5.8.1
-pkgrel=1
-pkgdesc='Additional wallpapers for the Plasma Workspace'
-arch=('any')
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=('LGPL')
-makedepends=('extra-cmake-modules' 'qt5-base')
-conflicts=('kde-wallpapers')
-groups=('plasma')
-source=("http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('3aa9154305eff97de123eb341021ce1e2fcb446d2bd8e3a5f5dfbfeb6e39bf9f'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
-  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
-
-prepare() {
-  mkdir -p 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 278937, 
plasma-workspace-wallpapers/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-10-18 13:53:34 UTC (rev 278938)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Antonio Rojas
+
+pkgname=plasma-workspace-wallpapers
+pkgver=5.8.2
+pkgrel=1
+pkgdesc='Additional wallpapers for the Plasma Workspace'
+arch=('any')
+url='https://www.kde.org/workspaces/plasmadesktop/'
+license=('LGPL')
+makedepends=('extra-cmake-modules' 'qt5-base')
+conflicts=('kde-wallpapers')
+groups=('plasma')
+source=("http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('b167834a2e716f0f47966d749e306cad661e8c59f56b6ae463f13d6303bd7372'
+'SKIP')
+validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
+  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
+  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
+
+prepare() {
+  mkdir -p 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 kdeplasma-addons/repos (4 files)

2016-10-18 Thread Antonio Rojas
Date: Tuesday, October 18, 2016 @ 13:54:07
  Author: arojas
Revision: 278943

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-10-18 13:54:00 UTC (rev 278942)
+++ extra-i686/PKGBUILD 2016-10-18 13:54:07 UTC (rev 278943)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=kdeplasma-addons
-pkgver=5.8.1
-pkgrel=1
-pkgdesc='All kind of addons to improve your Plasma experience'
-arch=('i686' 'x86_64')
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=('LGPL')
-depends=('plasma-workspace')
-makedepends=('extra-cmake-modules' 'kdoctools' 'kross' 'python' 
'kdesignerplugin')
-optdepends=('kross: comic applet'
-'purpose: Quickshare applet'
-'quota-tools: disk quota applet')
-conflicts=('kdebase-workspace' 'kdeplasma-addons-frameworks')
-replaces=('kdeplasma-addons-frameworks')
-groups=('plasma')
-source=("http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('7d51f414c203a20b5eb15a572a658de445ad0e257af1e18bbfdab73c5b9f8884'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
-  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DKDE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_LIBEXECDIR=lib \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: kdeplasma-addons/repos/extra-i686/PKGBUILD (from rev 278942, 
kdeplasma-addons/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-10-18 13:54:07 UTC (rev 278943)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kdeplasma-addons
+pkgver=5.8.2
+pkgrel=1
+pkgdesc='All kind of addons to improve your Plasma experience'
+arch=('i686' 'x86_64')
+url='https://www.kde.org/workspaces/plasmadesktop/'
+license=('LGPL')
+depends=('plasma-workspace')
+makedepends=('extra-cmake-modules' 'kdoctools' 'kross' 'python' 
'kdesignerplugin')
+optdepends=('kross: comic applet'
+'purpose: Quickshare applet'
+'quota-tools: disk quota applet')
+conflicts=('kdebase-workspace' 'kdeplasma-addons-frameworks')
+replaces=('kdeplasma-addons-frameworks')
+groups=('plasma')
+source=("http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('18db83b75ef8122c18f14ad769c4fc86cdafa1947a7b10eaa393e4cda350a9a1'
+'SKIP')
+validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
+  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
+  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_LIBEXECDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-10-18 13:54:00 UTC (rev 278942)
+++ extra-x86_64/PKGBUILD   2016-10-18 13:54:07 UTC (rev 278943)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=kdeplasma-addons
-pkgver=5.8.1
-pkgrel=1
-pkgdesc='All kind of addons to improve your Plasma experience'
-arch=('i686' 'x86_64')
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=('LGPL')
-depends=('plasma-workspace')
-makedepends=('extra-cmake-modules' 'kdoctools' 'kross' 'python' 
'kdesignerplugin')
-optdepends=('kross: comic applet'
-'purpose: Quickshare applet'
-'quota-tools: disk quota applet')
-conflicts=('kdebase-workspace' 'kdeplasma-addons-frameworks')
-replaces=('kdeplasma-addons-frameworks')
-groups=('plasma')
-source=("http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.t

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

2016-10-18 Thread Antonio Rojas
Date: Tuesday, October 18, 2016 @ 13:54:27
  Author: arojas
Revision: 278946

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-10-18 13:54:19 UTC (rev 278945)
+++ extra-i686/PKGBUILD 2016-10-18 13:54:27 UTC (rev 278946)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Antonio Rojas 
-
-pkgname=kscreen
-pkgver=5.8.1
-pkgrel=1
-pkgdesc="KDE's screen management software"
-arch=('i686' 'x86_64')
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=('LGPL')
-depends=('kxmlgui' 'libkscreen' 'qt5-graphicaleffects' 'hicolor-icon-theme')
-makedepends=('extra-cmake-modules' 'python')
-conflicts=('kscreen-frameworks')
-replaces=('kscreen-frameworks')
-groups=('plasma')
-source=("http://download.kde.org/stable/plasma/${pkgver}/kscreen-$pkgver.tar.xz"{,.sig})
-sha256sums=('d16d16a7d58e5775e0392ebb26683486d790632d71a119ffdc68c44d6e6d2d55'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
-  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../kscreen-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_LIBDIR=lib \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: kscreen/repos/extra-i686/PKGBUILD (from rev 278945, 
kscreen/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-10-18 13:54:27 UTC (rev 278946)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Antonio Rojas 
+
+pkgname=kscreen
+pkgver=5.8.2
+pkgrel=1
+pkgdesc="KDE's screen management software"
+arch=('i686' 'x86_64')
+url='https://www.kde.org/workspaces/plasmadesktop/'
+license=('LGPL')
+depends=('kxmlgui' 'libkscreen' 'qt5-graphicaleffects' 'hicolor-icon-theme')
+makedepends=('extra-cmake-modules' 'python')
+conflicts=('kscreen-frameworks')
+replaces=('kscreen-frameworks')
+groups=('plasma')
+source=("http://download.kde.org/stable/plasma/${pkgver}/kscreen-$pkgver.tar.xz"{,.sig})
+sha256sums=('99cfd99f1c5631894fe0f83a759b6edf2a87e7668acf85860f8d60aa2eff220e'
+'SKIP')
+validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
+  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
+  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../kscreen-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-10-18 13:54:19 UTC (rev 278945)
+++ extra-x86_64/PKGBUILD   2016-10-18 13:54:27 UTC (rev 278946)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Antonio Rojas 
-
-pkgname=kscreen
-pkgver=5.8.1
-pkgrel=1
-pkgdesc="KDE's screen management software"
-arch=('i686' 'x86_64')
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=('LGPL')
-depends=('kxmlgui' 'libkscreen' 'qt5-graphicaleffects' 'hicolor-icon-theme')
-makedepends=('extra-cmake-modules' 'python')
-conflicts=('kscreen-frameworks')
-replaces=('kscreen-frameworks')
-groups=('plasma')
-source=("http://download.kde.org/stable/plasma/${pkgver}/kscreen-$pkgver.tar.xz"{,.sig})
-sha256sums=('d16d16a7d58e5775e0392ebb26683486d790632d71a119ffdc68c44d6e6d2d55'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
-  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../kscreen-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_LIBDIR=lib \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd buil

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

2016-10-18 Thread Antonio Rojas
Date: Tuesday, October 18, 2016 @ 13:54:39
  Author: arojas
Revision: 278948

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-10-18 13:54:33 UTC (rev 278947)
+++ extra-i686/PKGBUILD 2016-10-18 13:54:39 UTC (rev 278948)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Maintainer: Antonio Rojas
-
-pkgname=sddm-kcm
-pkgver=5.8.1
-pkgrel=1
-pkgdesc='KDE Config Module for SDDM'
-arch=('i686' 'x86_64')
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=('GPL')
-depends=('sddm' 'libxcursor' 'kio')
-makedepends=('extra-cmake-modules' 'kdoctools' 'qt5-tools' 'python')
-groups=('plasma')
-source=("http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('27cc7848eace2791ab9668f3173defdd331412befa76ba425b2fe0815956d44d'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
-  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_SYSCONFDIR=/etc \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}
-

Copied: sddm-kcm/repos/extra-i686/PKGBUILD (from rev 278947, 
sddm-kcm/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-10-18 13:54:39 UTC (rev 278948)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Maintainer: Antonio Rojas
+
+pkgname=sddm-kcm
+pkgver=5.8.2
+pkgrel=1
+pkgdesc='KDE Config Module for SDDM'
+arch=('i686' 'x86_64')
+url='https://www.kde.org/workspaces/plasmadesktop/'
+license=('GPL')
+depends=('sddm' 'libxcursor' 'kio')
+makedepends=('extra-cmake-modules' 'kdoctools' 'qt5-tools' 'python')
+groups=('plasma')
+source=("http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('a3cb792e8ed07eac190e292642dbffb31023eeebc4ddf9fee7b1ebcc251479d8'
+'SKIP')
+validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
+  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
+  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_SYSCONFDIR=/etc \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}
+

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-10-18 13:54:33 UTC (rev 278947)
+++ extra-x86_64/PKGBUILD   2016-10-18 13:54:39 UTC (rev 278948)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Maintainer: Antonio Rojas
-
-pkgname=sddm-kcm
-pkgver=5.8.1
-pkgrel=1
-pkgdesc='KDE Config Module for SDDM'
-arch=('i686' 'x86_64')
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=('GPL')
-depends=('sddm' 'libxcursor' 'kio')
-makedepends=('extra-cmake-modules' 'kdoctools' 'qt5-tools' 'python')
-groups=('plasma')
-source=("http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('27cc7848eace2791ab9668f3173defdd331412befa76ba425b2fe0815956d44d'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
-  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_SYSCONFDIR=/etc \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}
-

Copied: sddm-kcm/repos/extra-x86_64/PKGBUILD (from rev 278947, 
sddm-kcm/trunk/PKGBUILD)
==

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

2016-10-18 Thread Antonio Rojas
Date: Tuesday, October 18, 2016 @ 13:54:45
  Author: arojas
Revision: 278949

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

Added:
  plasma-sdk/repos/extra-i686/PKGBUILD
(from rev 278948, plasma-sdk/trunk/PKGBUILD)
  plasma-sdk/repos/extra-x86_64/PKGBUILD
(from rev 278948, plasma-sdk/trunk/PKGBUILD)
Deleted:
  plasma-sdk/repos/extra-i686/PKGBUILD
  plasma-sdk/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 2016-10-18 13:54:39 UTC (rev 278948)
+++ extra-i686/PKGBUILD 2016-10-18 13:54:45 UTC (rev 278949)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-
-pkgname=plasma-sdk
-pkgver=5.8.1
-pkgrel=1
-pkgdesc="Applications useful for Plasma development"
-arch=(i686 x86_64)
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=(LGPL)
-depends=(plasma-framework ktexteditor kirigami)
-makedepends=(extra-cmake-modules qt5-webkit kitemmodels knewstuff python2 
kdevplatform kdelibs4support kdesignerplugin kdoctools)
-optdepends=('kdevplatform: for plasmate')
-groups=(plasma)
-source=("http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('552b8363ac7e45bb49b6c2d5b28cac12c9ea557c9e02429caf8976bbce325b3d'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
-  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_LIBDIR=lib \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_TESTING=OFF
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: plasma-sdk/repos/extra-i686/PKGBUILD (from rev 278948, 
plasma-sdk/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-10-18 13:54:45 UTC (rev 278949)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+
+pkgname=plasma-sdk
+pkgver=5.8.2
+pkgrel=1
+pkgdesc="Applications useful for Plasma development"
+arch=(i686 x86_64)
+url='https://www.kde.org/workspaces/plasmadesktop/'
+license=(LGPL)
+depends=(plasma-framework ktexteditor kirigami)
+makedepends=(extra-cmake-modules qt5-webkit kitemmodels knewstuff python2 
kdevplatform kdelibs4support kdesignerplugin kdoctools)
+optdepends=('kdevplatform: for plasmate')
+groups=(plasma)
+source=("http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('be247c71ee89dc8b1d10d408e77e5586fa3551d0dfdb6470eb4057def148c340'
+'SKIP')
+validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
+  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
+  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-10-18 13:54:39 UTC (rev 278948)
+++ extra-x86_64/PKGBUILD   2016-10-18 13:54:45 UTC (rev 278949)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-
-pkgname=plasma-sdk
-pkgver=5.8.1
-pkgrel=1
-pkgdesc="Applications useful for Plasma development"
-arch=(i686 x86_64)
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=(LGPL)
-depends=(plasma-framework ktexteditor kirigami)
-makedepends=(extra-cmake-modules qt5-webkit kitemmodels knewstuff python2 
kdevplatform kdelibs4support kdesignerplugin kdoctools)
-optdepends=('kdevplatform: for plasmate')
-groups=(plasma)
-source=("http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('552b8363ac7e45bb49b6c2d5b28cac12c9ea557c9e02429caf8976bbce325b3d'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
-  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_LIBDIR=lib \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_TESTING=OFF
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: plasma-sdk/r

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

2016-10-18 Thread Antonio Rojas
Date: Tuesday, October 18, 2016 @ 13:54:51
  Author: arojas
Revision: 278950

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

Added:
  kwayland-integration/repos/extra-i686/PKGBUILD
(from rev 278949, kwayland-integration/trunk/PKGBUILD)
  kwayland-integration/repos/extra-x86_64/PKGBUILD
(from rev 278949, kwayland-integration/trunk/PKGBUILD)
Deleted:
  kwayland-integration/repos/extra-i686/PKGBUILD
  kwayland-integration/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 2016-10-18 13:54:45 UTC (rev 278949)
+++ extra-i686/PKGBUILD 2016-10-18 13:54:51 UTC (rev 278950)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer:Antonio Rojas 
-
-pkgname=kwayland-integration
-pkgver=5.8.1
-pkgrel=1
-pkgdesc='Provides integration plugins for various KDE frameworks for the 
wayland windowing system'
-arch=(i686 x86_64)
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=(LGPL)
-depends=(kwindowsystem kidletime kwayland)
-makedepends=(extra-cmake-modules)
-groups=(plasma)
-source=("http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('307688799889e4d6dbecdd811397a3167cab17b9d0d50de3fff96433cfa68de3'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
-  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_LIBDIR=lib \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: kwayland-integration/repos/extra-i686/PKGBUILD (from rev 278949, 
kwayland-integration/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-10-18 13:54:51 UTC (rev 278950)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer:Antonio Rojas 
+
+pkgname=kwayland-integration
+pkgver=5.8.2
+pkgrel=1
+pkgdesc='Provides integration plugins for various KDE frameworks for the 
wayland windowing system'
+arch=(i686 x86_64)
+url='https://www.kde.org/workspaces/plasmadesktop/'
+license=(LGPL)
+depends=(kwindowsystem kidletime kwayland)
+makedepends=(extra-cmake-modules)
+groups=(plasma)
+source=("http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('ea064b1dfd33dd52e6b7c3068ef5498e5da95ff1aefa03c6fdc59f104270f58b'
+'SKIP')
+validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
+  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
+  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-10-18 13:54:45 UTC (rev 278949)
+++ extra-x86_64/PKGBUILD   2016-10-18 13:54:51 UTC (rev 278950)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer:Antonio Rojas 
-
-pkgname=kwayland-integration
-pkgver=5.8.1
-pkgrel=1
-pkgdesc='Provides integration plugins for various KDE frameworks for the 
wayland windowing system'
-arch=(i686 x86_64)
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=(LGPL)
-depends=(kwindowsystem kidletime kwayland)
-makedepends=(extra-cmake-modules)
-groups=(plasma)
-source=("http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('307688799889e4d6dbecdd811397a3167cab17b9d0d50de3fff96433cfa68de3'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
-  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_LIBDIR=lib \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: kwayland-integration/repos/extra-x86_64/PKGBUILD (from rev 278949, 
kwayland-integration/trunk/PKGBUILD)
===
--- extra-x86_

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

2016-10-18 Thread Antonio Rojas
Date: Tuesday, October 18, 2016 @ 13:55:17
  Author: arojas
Revision: 278954

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

Added:
  breeze-gtk/repos/extra-i686/PKGBUILD
(from rev 278953, breeze-gtk/trunk/PKGBUILD)
  breeze-gtk/repos/extra-x86_64/PKGBUILD
(from rev 278953, breeze-gtk/trunk/PKGBUILD)
Deleted:
  breeze-gtk/repos/extra-i686/PKGBUILD
  breeze-gtk/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 2016-10-18 13:55:11 UTC (rev 278953)
+++ extra-i686/PKGBUILD 2016-10-18 13:55:17 UTC (rev 278954)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-
-pkgname=breeze-gtk
-pkgver=5.8.1
-pkgrel=1
-pkgdesc="Breeze widget theme for GTK 2 and 3"
-arch=(i686 x86_64)
-url='https://quickgit.kde.org/?p=breeze-gtk.git'
-license=(LGPL)
-depends=(qt5-base)
-makedepends=(extra-cmake-modules)
-groups=(plasma)
-source=("http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('5f63e047cc3ae280ff8fb2caf5f250c918ee1bdd7dc48cfd38b4e03d1334ae5a'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
-  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
-
-prepare(){
-  mkdir -p build
-}
-
-build(){
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DWITH_GTK3_VERSION=3.20
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: breeze-gtk/repos/extra-i686/PKGBUILD (from rev 278953, 
breeze-gtk/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-10-18 13:55:17 UTC (rev 278954)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+
+pkgname=breeze-gtk
+pkgver=5.8.2
+pkgrel=1
+pkgdesc="Breeze widget theme for GTK 2 and 3"
+arch=(i686 x86_64)
+url='https://quickgit.kde.org/?p=breeze-gtk.git'
+license=(LGPL)
+depends=(qt5-base)
+makedepends=(extra-cmake-modules)
+groups=(plasma)
+source=("http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('f36c98a0f1d41c6c6084341f26f179439456a308526d665a970cd91da03db6ed'
+'SKIP')
+validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
+  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
+  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
+
+prepare(){
+  mkdir -p build
+}
+
+build(){
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DWITH_GTK3_VERSION=3.20
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-10-18 13:55:11 UTC (rev 278953)
+++ extra-x86_64/PKGBUILD   2016-10-18 13:55:17 UTC (rev 278954)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-
-pkgname=breeze-gtk
-pkgver=5.8.1
-pkgrel=1
-pkgdesc="Breeze widget theme for GTK 2 and 3"
-arch=(i686 x86_64)
-url='https://quickgit.kde.org/?p=breeze-gtk.git'
-license=(LGPL)
-depends=(qt5-base)
-makedepends=(extra-cmake-modules)
-groups=(plasma)
-source=("http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('5f63e047cc3ae280ff8fb2caf5f250c918ee1bdd7dc48cfd38b4e03d1334ae5a'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
-  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
-
-prepare(){
-  mkdir -p build
-}
-
-build(){
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DWITH_GTK3_VERSION=3.20
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: breeze-gtk/repos/extra-x86_64/PKGBUILD (from rev 278953, 
breeze-gtk/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-10-18 13:55:17 UTC (rev 278954)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+
+pkgname=breeze-gtk
+pkgver=5.8.2
+pkgrel=1
+pkgdesc="Breeze widget theme for GTK 2 and 3"
+arch=(i686 x86_64)
+url='https://quickgit.kde.org/?p=breeze-gtk.git'
+license=(LGPL)
+d

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

2016-10-18 Thread Antonio Rojas
Date: Tuesday, October 18, 2016 @ 13:55:11
  Author: arojas
Revision: 278953

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

Added:
  kgamma5/repos/extra-i686/PKGBUILD
(from rev 278952, kgamma5/trunk/PKGBUILD)
  kgamma5/repos/extra-x86_64/PKGBUILD
(from rev 278952, kgamma5/trunk/PKGBUILD)
Deleted:
  kgamma5/repos/extra-i686/PKGBUILD
  kgamma5/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 2016-10-18 13:55:05 UTC (rev 278952)
+++ extra-i686/PKGBUILD 2016-10-18 13:55:11 UTC (rev 278953)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer:Antonio Rojas 
-
-pkgname=kgamma5
-pkgver=5.8.1
-pkgrel=1
-pkgdesc="Adjust your monitor's gamma settings"
-arch=(i686 x86_64)
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=(LGPL)
-depends=(kdelibs4support)
-makedepends=(extra-cmake-modules kdoctools python kdesignerplugin)
-groups=(plasma)
-source=("http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('af944cc5c51d6a63a042e431e2e46c6244f247f703246de315db94e6a80469ec'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
-  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_LIBDIR=lib \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: kgamma5/repos/extra-i686/PKGBUILD (from rev 278952, 
kgamma5/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-10-18 13:55:11 UTC (rev 278953)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer:Antonio Rojas 
+
+pkgname=kgamma5
+pkgver=5.8.2
+pkgrel=1
+pkgdesc="Adjust your monitor's gamma settings"
+arch=(i686 x86_64)
+url='https://www.kde.org/workspaces/plasmadesktop/'
+license=(LGPL)
+depends=(kdelibs4support)
+makedepends=(extra-cmake-modules kdoctools python kdesignerplugin)
+groups=(plasma)
+source=("http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('769777585d87dbca1ce475882ce3e595df808e24045cae3ce967ef9b95e0e350'
+'SKIP')
+validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
+  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
+  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-10-18 13:55:05 UTC (rev 278952)
+++ extra-x86_64/PKGBUILD   2016-10-18 13:55:11 UTC (rev 278953)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer:Antonio Rojas 
-
-pkgname=kgamma5
-pkgver=5.8.1
-pkgrel=1
-pkgdesc="Adjust your monitor's gamma settings"
-arch=(i686 x86_64)
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=(LGPL)
-depends=(kdelibs4support)
-makedepends=(extra-cmake-modules kdoctools python kdesignerplugin)
-groups=(plasma)
-source=("http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('af944cc5c51d6a63a042e431e2e46c6244f247f703246de315db94e6a80469ec'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
-  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_LIBDIR=lib \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: kgamma5/repos/extra-x86_64/PKGBUILD (from rev 278952, 
kgamma5/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-10-18 13:55:11 UTC (rev 278953)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer:Antonio Rojas 
+
+pkgname=kgamma5
+pkgver=5.8.2
+pkgrel=1
+pkgdesc="Adjust your monitor's gamma settings"
+arch=(i686 x86_

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

2016-10-18 Thread Antonio Rojas
Date: Tuesday, October 18, 2016 @ 13:54:58
  Author: arojas
Revision: 278951

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

Added:
  user-manager/repos/extra-i686/PKGBUILD
(from rev 278950, user-manager/trunk/PKGBUILD)
  user-manager/repos/extra-x86_64/PKGBUILD
(from rev 278950, user-manager/trunk/PKGBUILD)
Deleted:
  user-manager/repos/extra-i686/PKGBUILD
  user-manager/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 2016-10-18 13:54:51 UTC (rev 278950)
+++ extra-i686/PKGBUILD 2016-10-18 13:54:58 UTC (rev 278951)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer:Antonio Rojas 
-
-pkgname=user-manager
-pkgver=5.8.1
-pkgrel=1
-pkgdesc='A simple system settings module to manage the users of your system'
-arch=(i686 x86_64)
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=(LGPL)
-depends=(accountsservice kdelibs4support libpwquality)
-makedepends=(extra-cmake-modules kdoctools python kdesignerplugin)
-groups=(plasma)
-source=("http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('e7a9d7026e94c1b4c868ab5f3f836a1c564bd30abc2404eb7ca86c7bfd8a8cad'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
-  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_LIBDIR=lib \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: user-manager/repos/extra-i686/PKGBUILD (from rev 278950, 
user-manager/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-10-18 13:54:58 UTC (rev 278951)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer:Antonio Rojas 
+
+pkgname=user-manager
+pkgver=5.8.2
+pkgrel=1
+pkgdesc='A simple system settings module to manage the users of your system'
+arch=(i686 x86_64)
+url='https://www.kde.org/workspaces/plasmadesktop/'
+license=(LGPL)
+depends=(accountsservice kdelibs4support libpwquality)
+makedepends=(extra-cmake-modules kdoctools python kdesignerplugin)
+groups=(plasma)
+source=("http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('2139e68bd23d5f9d84fc2c1a6e7a342a770ec060112bbb79328c6b9affc6848c'
+'SKIP')
+validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
+  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
+  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-10-18 13:54:51 UTC (rev 278950)
+++ extra-x86_64/PKGBUILD   2016-10-18 13:54:58 UTC (rev 278951)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer:Antonio Rojas 
-
-pkgname=user-manager
-pkgver=5.8.1
-pkgrel=1
-pkgdesc='A simple system settings module to manage the users of your system'
-arch=(i686 x86_64)
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=(LGPL)
-depends=(accountsservice kdelibs4support libpwquality)
-makedepends=(extra-cmake-modules kdoctools python kdesignerplugin)
-groups=(plasma)
-source=("http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('e7a9d7026e94c1b4c868ab5f3f836a1c564bd30abc2404eb7ca86c7bfd8a8cad'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
-  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_LIBDIR=lib \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: user-manager/repos/extra-x86_64/PKGBUILD (from rev 278950, 
user-manager/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   

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

2016-10-18 Thread Antonio Rojas
Date: Tuesday, October 18, 2016 @ 13:55:05
  Author: arojas
Revision: 278952

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

Added:
  kwallet-pam/repos/extra-i686/PKGBUILD
(from rev 278951, kwallet-pam/trunk/PKGBUILD)
  kwallet-pam/repos/extra-x86_64/PKGBUILD
(from rev 278951, kwallet-pam/trunk/PKGBUILD)
Deleted:
  kwallet-pam/repos/extra-i686/PKGBUILD
  kwallet-pam/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-10-18 13:54:58 UTC (rev 278951)
+++ extra-i686/PKGBUILD 2016-10-18 13:55:05 UTC (rev 278952)
@@ -1,49 +0,0 @@
-# $Id$
-# Maintainer:Antonio Rojas 
-
-pkgname=kwallet-pam
-pkgver=5.8.1
-pkgrel=1
-pkgdesc='KWallet PAM integration'
-arch=(i686 x86_64)
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=(LGPL)
-depends=(pam libgcrypt socat)
-makedepends=(extra-cmake-modules qt5-base)
-groups=(plasma)
-source=("http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('9e4d8acd454105b64593956e428ac4f9231c00edc53a4f6f83580b1dcea280da'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
-  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
-
-prepare() {
-  mkdir -p build{,4}
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_LIBEXECDIR=lib
-  make
-
-  cd ../build4
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_LIBEXECDIR=lib \
--DKWALLET4=1
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-  cd ../build4
-  make DESTDIR="$pkgdir" install
-}

Copied: kwallet-pam/repos/extra-i686/PKGBUILD (from rev 278951, 
kwallet-pam/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-10-18 13:55:05 UTC (rev 278952)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer:Antonio Rojas 
+
+pkgname=kwallet-pam
+pkgver=5.8.2
+pkgrel=1
+pkgdesc='KWallet PAM integration'
+arch=(i686 x86_64)
+url='https://www.kde.org/workspaces/plasmadesktop/'
+license=(LGPL)
+depends=(pam libgcrypt socat)
+makedepends=(extra-cmake-modules qt5-base)
+groups=(plasma)
+source=("http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('4b0bc61aec955815924439eec10f9a9e6c79819776f9e02076924f42b26788c7'
+'SKIP')
+validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
+  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
+  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
+
+prepare() {
+  mkdir -p build{,4}
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_LIBEXECDIR=lib
+  make
+
+  cd ../build4
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_LIBEXECDIR=lib \
+-DKWALLET4=1
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+  cd ../build4
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-10-18 13:54:58 UTC (rev 278951)
+++ extra-x86_64/PKGBUILD   2016-10-18 13:55:05 UTC (rev 278952)
@@ -1,49 +0,0 @@
-# $Id$
-# Maintainer:Antonio Rojas 
-
-pkgname=kwallet-pam
-pkgver=5.8.1
-pkgrel=1
-pkgdesc='KWallet PAM integration'
-arch=(i686 x86_64)
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=(LGPL)
-depends=(pam libgcrypt socat)
-makedepends=(extra-cmake-modules qt5-base)
-groups=(plasma)
-source=("http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('9e4d8acd454105b64593956e428ac4f9231c00edc53a4f6f83580b1dcea280da'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
-  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
-
-prepare() {
-  mkdir -p build{,4}
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_LIBEXECDIR=lib
-  make

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

2016-10-18 Thread Antonio Rojas
Date: Tuesday, October 18, 2016 @ 13:53:06
  Author: arojas
Revision: 278933

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-10-18 13:53:00 UTC (rev 278932)
+++ extra-i686/PKGBUILD 2016-10-18 13:53:06 UTC (rev 278933)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Antonio Rojas
-
-pkgname=ksysguard
-pkgver=5.8.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' 'hicolor-icon-theme')
-makedepends=('extra-cmake-modules' 'kdoctools' 'python')
-conflicts=('kdebase-workspace')
-groups=('plasma')
-source=("http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('c9b2d50e65ca6a2a5d52cc7ec0c7bc80e9b4e7c72d9bf8d0f1c1144b29ec59d7'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
-  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_LIBDIR=lib \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: ksysguard/repos/extra-i686/PKGBUILD (from rev 278932, 
ksysguard/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-10-18 13:53:06 UTC (rev 278933)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Antonio Rojas
+
+pkgname=ksysguard
+pkgver=5.8.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' 'hicolor-icon-theme')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+conflicts=('kdebase-workspace')
+groups=('plasma')
+source=("http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('d6ee1f2b83471c6e5cd3774c7a4b1e86c9a42d779f37c551d8721dbb8011cfd7'
+'SKIP')
+validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
+  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
+  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-10-18 13:53:00 UTC (rev 278932)
+++ extra-x86_64/PKGBUILD   2016-10-18 13:53:06 UTC (rev 278933)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Antonio Rojas
-
-pkgname=ksysguard
-pkgver=5.8.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' 'hicolor-icon-theme')
-makedepends=('extra-cmake-modules' 'kdoctools' 'python')
-conflicts=('kdebase-workspace')
-groups=('plasma')
-source=("http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('c9b2d50e65ca6a2a5d52cc7ec0c7bc80e9b4e7c72d9bf8d0f1c1144b29ec59d7'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
-  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_LIBDIR=lib \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDI

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

2016-10-18 Thread Antonio Rojas
Date: Tuesday, October 18, 2016 @ 13:53:00
  Author: arojas
Revision: 278932

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

Added:
  kinfocenter/repos/extra-i686/PKGBUILD
(from rev 278931, kinfocenter/trunk/PKGBUILD)
  kinfocenter/repos/extra-i686/kcm-about-distrorc
(from rev 278931, kinfocenter/trunk/kcm-about-distrorc)
  kinfocenter/repos/extra-x86_64/PKGBUILD
(from rev 278931, kinfocenter/trunk/PKGBUILD)
  kinfocenter/repos/extra-x86_64/kcm-about-distrorc
(from rev 278931, 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   |   96 ++
 /kcm-about-distrorc |4 +
 extra-i686/PKGBUILD |   48 ---
 extra-i686/kcm-about-distrorc   |2 
 extra-x86_64/PKGBUILD   |   48 ---
 extra-x86_64/kcm-about-distrorc |2 
 6 files changed, 100 insertions(+), 100 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-10-18 13:52:53 UTC (rev 278931)
+++ extra-i686/PKGBUILD 2016-10-18 13:53:00 UTC (rev 278932)
@@ -1,48 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Antonio Rojas
-
-pkgname=kinfocenter
-pkgver=5.8.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' 
'kdesignerplugin')
-conflicts=('kdebase-workspace')
-groups=('plasma')
-source=("http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz"{,.sig}
 
-'archlinux-logo.svg::https://sources.archlinux.org/other/artwork/archlinux-logo-dark-scalable.svg'
 'kcm-about-distrorc')
-sha256sums=('adf14bf48bb457ea82c4c61149630e648fe2449b512cad282d14e0cb4f825945'
-'SKIP'
-'a7f37c9c87f0e0e37454b47ec1221b61416aa9e319cc46a1f0b5b70c4a1dcb6e'
-'02ae86f5ef8de5fabb97db2043065c9b6b77b7c6a71a1115161e559e39c01451')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
-  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_LIBDIR=lib \
--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 278931, 
kinfocenter/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-10-18 13:53:00 UTC (rev 278932)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Antonio Rojas
+
+pkgname=kinfocenter
+pkgver=5.8.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' 
'kdesignerplugin')
+conflicts=('kdebase-workspace')
+groups=('plasma')
+source=("http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz"{,.sig}
 
+'archlinux-logo.svg::https://sources.archlinux.org/other/artwork/archlinux-logo-dark-scalable.svg'
 'kcm-about-distrorc')
+sha256sums=('c52037d88850ec8237eae7fda3e4c9e4bbedf7e5ac02e7da205e1ffe991b34c8'
+'SKIP'
+'a7f37c9c87f0e0e37454b47ec1221b61416aa9e319cc46a1f0b5b70c4a1dcb6e'
+'02ae86f5ef8de5fabb97db2043065c9b6b77b7c6a71a1115161e559e39c01451')
+validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
+  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
+  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+
+# Install Arch

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

2016-10-18 Thread Antonio Rojas
Date: Tuesday, October 18, 2016 @ 13:53:47
  Author: arojas
Revision: 278940

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-10-18 13:53:41 UTC (rev 278939)
+++ extra-i686/PKGBUILD 2016-10-18 13:53:47 UTC (rev 278940)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=plasma-nm
-pkgver=5.8.1
-pkgrel=1
-pkgdesc='Plasma applet written in QML for managing network connections'
-arch=('i686' 'x86_64')
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=('GPL2')
-depends=('plasma-workspace' 'modemmanager-qt' 'networkmanager-qt' 'qca-qt5')
-makedepends=('extra-cmake-modules' 'kdoctools' 'openconnect' 
'mobile-broadband-provider-info'
- 'python' 'kdelibs4support' 'kdesignerplugin')
-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"{,.sig})
-sha256sums=('e6b6d0a1dde044aca48c53fc134f1ed0fbcd0cef49f91147b4f11300d8b6646c'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
-  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DKDE_INSTALL_LIBDIR=lib \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: plasma-nm/repos/extra-i686/PKGBUILD (from rev 278939, 
plasma-nm/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-10-18 13:53:47 UTC (rev 278940)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=plasma-nm
+pkgver=5.8.2
+pkgrel=1
+pkgdesc='Plasma applet written in QML for managing network connections'
+arch=('i686' 'x86_64')
+url='https://www.kde.org/workspaces/plasmadesktop/'
+license=('GPL2')
+depends=('plasma-workspace' 'modemmanager-qt' 'networkmanager-qt' 'qca-qt5')
+makedepends=('extra-cmake-modules' 'kdoctools' 'openconnect' 
'mobile-broadband-provider-info'
+ 'python' 'kdelibs4support' 'kdesignerplugin')
+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"{,.sig})
+sha256sums=('4260fbcd437b899eb17001f58a0a3973131faab2dc0702dab8ef9cf49186b60c'
+'SKIP')
+validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
+  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
+  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-10-18 13:53:41 UTC (rev 278939)
+++ extra-x86_64/PKGBUILD   2016-10-18 13:53:47 UTC (rev 278940)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=plasma-nm
-pkgver=5.8.1
-pkgrel=1
-pkgdesc='Plasma applet written in QML for managing network connections'
-arch=('i686' 'x86_64')
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=('GPL2')
-depends=('plasma-workspace' 'modemmanager-qt' 'networkmanager-qt' 'qca-qt5')
-makedepends=('extra-cmake-modules' 'kdoctools' 'openconnect' 
'mobile-broadband-provider-info'
- 'python' 'kdelibs4support' 'kdesignerplugin')
-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

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

2016-10-18 Thread Antonio Rojas
Date: Tuesday, October 18, 2016 @ 13:53:18
  Author: arojas
Revision: 278935

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-10-18 13:53:12 UTC (rev 278934)
+++ extra-i686/PKGBUILD 2016-10-18 13:53:18 UTC (rev 278935)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Antonio Rojas
-
-pkgname=kmenuedit
-pkgver=5.8.1
-pkgrel=1
-pkgdesc='KDE menu editor'
-arch=('i686' 'x86_64')
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=('LGPL')
-depends=('khotkeys')
-groups=('plasma')
-makedepends=('extra-cmake-modules' 'kdoctools' 'python' 'kdesignerplugin')
-conflicts=('kdebase-workspace')
-source=("http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('376fac8c45c2e0f8ac30c4ade66cf3de7cef4f1c431770d1196b66c3bbc50c89'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
-  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_LIBDIR=lib \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: kmenuedit/repos/extra-i686/PKGBUILD (from rev 278934, 
kmenuedit/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-10-18 13:53:18 UTC (rev 278935)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Antonio Rojas
+
+pkgname=kmenuedit
+pkgver=5.8.2
+pkgrel=1
+pkgdesc='KDE menu editor'
+arch=('i686' 'x86_64')
+url='https://www.kde.org/workspaces/plasmadesktop/'
+license=('LGPL')
+depends=('khotkeys')
+groups=('plasma')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python' 'kdesignerplugin')
+conflicts=('kdebase-workspace')
+source=("http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('41f4aa6ee77318d64a228fd4c501707af771266744fe5b032d22557c85264164'
+'SKIP')
+validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
+  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
+  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-10-18 13:53:12 UTC (rev 278934)
+++ extra-x86_64/PKGBUILD   2016-10-18 13:53:18 UTC (rev 278935)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Antonio Rojas
-
-pkgname=kmenuedit
-pkgver=5.8.1
-pkgrel=1
-pkgdesc='KDE menu editor'
-arch=('i686' 'x86_64')
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=('LGPL')
-depends=('khotkeys')
-groups=('plasma')
-makedepends=('extra-cmake-modules' 'kdoctools' 'python' 'kdesignerplugin')
-conflicts=('kdebase-workspace')
-source=("http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('376fac8c45c2e0f8ac30c4ade66cf3de7cef4f1c431770d1196b66c3bbc50c89'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
-  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_LIBDIR=lib \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: kmenuedit/repos/extra-x86_64/PKGBUILD (from rev 278934, 
kmenuedit/trunk/PKGBUILD)
===

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

2016-10-18 Thread Antonio Rojas
Date: Tuesday, October 18, 2016 @ 13:52:33
  Author: arojas
Revision: 278927

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

Added:
  milou/repos/extra-i686/PKGBUILD
(from rev 278926, milou/trunk/PKGBUILD)
  milou/repos/extra-x86_64/PKGBUILD
(from rev 278926, milou/trunk/PKGBUILD)
Deleted:
  milou/repos/extra-i686/PKGBUILD
  milou/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 2016-10-18 13:52:27 UTC (rev 278926)
+++ extra-i686/PKGBUILD 2016-10-18 13:52:33 UTC (rev 278927)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Antonio Rojas
-
-pkgname=milou
-pkgver=5.8.1
-pkgrel=1
-pkgdesc="A dedicated search application built on top of Baloo"
-arch=('i686' 'x86_64')
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=('LGPL')
-depends=('krunner')
-makedepends=('extra-cmake-modules' 'kdoctools' 'python')
-groups=('plasma')
-source=("http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('f5eb5e0a9decf0a98f226a2e4ee14ff8fa3ee5508cdd2584fff00d086a65dd7e'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
-  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_LIBDIR=lib \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: milou/repos/extra-i686/PKGBUILD (from rev 278926, milou/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-10-18 13:52:33 UTC (rev 278927)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Antonio Rojas
+
+pkgname=milou
+pkgver=5.8.2
+pkgrel=1
+pkgdesc="A dedicated search application built on top of Baloo"
+arch=('i686' 'x86_64')
+url='https://www.kde.org/workspaces/plasmadesktop/'
+license=('LGPL')
+depends=('krunner')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+groups=('plasma')
+source=("http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('091399bd1f20e8a15bc9f107282f5c336f95503bc9d206b3319b3431bb506b46'
+'SKIP')
+validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
+  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
+  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-10-18 13:52:27 UTC (rev 278926)
+++ extra-x86_64/PKGBUILD   2016-10-18 13:52:33 UTC (rev 278927)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Antonio Rojas
-
-pkgname=milou
-pkgver=5.8.1
-pkgrel=1
-pkgdesc="A dedicated search application built on top of Baloo"
-arch=('i686' 'x86_64')
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=('LGPL')
-depends=('krunner')
-makedepends=('extra-cmake-modules' 'kdoctools' 'python')
-groups=('plasma')
-source=("http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('f5eb5e0a9decf0a98f226a2e4ee14ff8fa3ee5508cdd2584fff00d086a65dd7e'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
-  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_LIBDIR=lib \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: milou/repos/extra-x86_64/PKGBUILD (from rev 278926, 
milou/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD

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

2016-10-18 Thread Antonio Rojas
Date: Tuesday, October 18, 2016 @ 13:53:41
  Author: arojas
Revision: 278939

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-10-18 13:53:34 UTC (rev 278938)
+++ extra-i686/PKGBUILD 2016-10-18 13:53:41 UTC (rev 278939)
@@ -1,49 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Maintainer: Antonio Rojas 
-# Contributor: Andrea Scarpino 
-
-pkgname=plasma-desktop
-pkgver=5.8.1
-pkgrel=1
-pkgdesc='KDE Plasma Desktop'
-arch=('i686' 'x86_64')
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=('LGPL')
-source=("http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
-depends=('polkit-kde-agent' 'libcanberra' 'libxkbfile' 'kmenuedit'
- 'systemsettings' 'ksysguard' 'kpeople' 'baloo' 'qt5-graphicaleffects' 
'kactivities-stats')
-makedepends=('extra-cmake-modules' 'kdoctools' 'boost' 'xf86-input-evdev' 
'xf86-input-synaptics' 'xorg-server-devel'
- 'libibus' 'scim' 'python' 'kdesignerplugin')
-optdepends=('plasma-nm: Network manager applet'
-'powerdevil: power management'
-'ibus: kimpanel IBUS support'
-'scim: kimpanel SCIM support')
-conflicts=('kdebase-workspace' 'kcm-touchpad-frameworks' 
'kdeplasma-addons<5.5.95' 'kactivities<5.19.0-3')
-replaces=('kcm-touchpad-frameworks')
-groups=('plasma')
-sha256sums=('997cfdfe282daf5d5e06f30428a5cc0b7d16f7f69615679c833ecf3b3c3349b5'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
-  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_LIBEXECDIR=lib \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: plasma-desktop/repos/extra-i686/PKGBUILD (from rev 278938, 
plasma-desktop/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-10-18 13:53:41 UTC (rev 278939)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=plasma-desktop
+pkgver=5.8.2
+pkgrel=1
+pkgdesc='KDE Plasma Desktop'
+arch=('i686' 'x86_64')
+url='https://www.kde.org/workspaces/plasmadesktop/'
+license=('LGPL')
+source=("http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
+depends=('polkit-kde-agent' 'libcanberra' 'libxkbfile' 'kmenuedit'
+ 'systemsettings' 'ksysguard' 'kpeople' 'baloo' 'qt5-graphicaleffects' 
'kactivities-stats')
+makedepends=('extra-cmake-modules' 'kdoctools' 'boost' 'xf86-input-evdev' 
'xf86-input-synaptics' 'xorg-server-devel'
+ 'libibus' 'scim' 'python' 'kdesignerplugin')
+optdepends=('plasma-nm: Network manager applet'
+'powerdevil: power management'
+'ibus: kimpanel IBUS support'
+'scim: kimpanel SCIM support')
+conflicts=('kdebase-workspace' 'kcm-touchpad-frameworks' 
'kdeplasma-addons<5.5.95' 'kactivities<5.19.0-3')
+replaces=('kcm-touchpad-frameworks')
+groups=('plasma')
+sha256sums=('127be446ffbb48bd3aa07e27cc799e7ee33da079917fb1cf550c4cebc6e24300'
+'SKIP')
+validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
+  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
+  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_LIBEXECDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-10-18 13:53:34 UTC (rev 278938)
+++ extra-x86_64/PKGBUILD   2016-10-18 13:53:41 UTC (rev 278939)
@@ -1,49 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Maintainer: Antonio Rojas 
-# Contributor: Andre

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

2016-10-18 Thread Antonio Rojas
Date: Tuesday, October 18, 2016 @ 13:51:54
  Author: arojas
Revision: 278920

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-10-18 13:51:50 UTC (rev 278919)
+++ extra-i686/PKGBUILD 2016-10-18 13:51:54 UTC (rev 278920)
@@ -1,67 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Antonio Rojas
-
-pkgbase=oxygen
-pkgname=('oxygen' 'oxygen-kde4')
-pkgver=5.8.1
-pkgrel=1
-arch=('i686' 'x86_64')
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=('LGPL')
-makedepends=('frameworkintegration' 'kcmutils' 'kdecoration' 
'extra-cmake-modules' 'kdoctools' 'kdelibs' 'automoc4'
- 'python')
-source=("http://download.kde.org/stable/plasma/${pkgver}/${pkgname}-${pkgver}.tar.xz"{,.sig})
-sha256sums=('93972771e0388567ab6665fd8aeb94231d1b414073a878e8eca938128c497239'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
-  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
-
-prepare() {
-  mkdir -p build{,-kde4}
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_LIBDIR=lib \
--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' 'kcmutils' 'kwayland')
-  conflicts=('oxygen-cursors')
-  replaces=('oxygen-cursors')
-  groups=('plasma')
-
-  cd build
-  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 278919, 
oxygen/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-10-18 13:51:54 UTC (rev 278920)
@@ -0,0 +1,67 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Antonio Rojas
+
+pkgbase=oxygen
+pkgname=('oxygen' 'oxygen-kde4')
+pkgver=5.8.2
+pkgrel=1
+arch=('i686' 'x86_64')
+url='https://www.kde.org/workspaces/plasmadesktop/'
+license=('LGPL')
+makedepends=('frameworkintegration' 'kcmutils' 'kdecoration' 
'extra-cmake-modules' 'kdoctools' 'kdelibs' 'automoc4'
+ 'python')
+source=("http://download.kde.org/stable/plasma/${pkgver}/${pkgname}-${pkgver}.tar.xz"{,.sig})
+sha256sums=('59e18bee1baaca6e07d10154098765f59f74670474db645a1b25817aec730fd8'
+'SKIP')
+validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
+  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
+  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
+
+prepare() {
+  mkdir -p build{,-kde4}
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-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' 'kcmutils' 'kwayland')
+  conflicts=('oxygen-cursors')
+  replaces=('oxygen-cursors')
+  groups=('plasma')
+
+  cd build
+  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
+}

Deleted: 

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

2016-10-18 Thread Antonio Rojas
Date: Tuesday, October 18, 2016 @ 13:52:08
  Author: arojas
Revision: 278923

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-10-18 13:52:03 UTC (rev 278922)
+++ extra-i686/PKGBUILD 2016-10-18 13:52:08 UTC (rev 278923)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=kwin
-pkgver=5.8.1
-pkgrel=1
-pkgdesc='KDE Window manager'
-arch=('i686' 'x86_64')
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=('LGPL')
-depends=('qt5-multimedia' 'kscreenlocker' 'knewstuff' 'xcb-util-cursor' 
'hicolor-icon-theme'
- 'plasma-framework' 'kcmutils' 'breeze')
-makedepends=('extra-cmake-modules' 'qt5-tools' 'kdoctools' 'python')
-optdepends=('qt5-virtualkeyboard: virtual keyboard support for kwin-wayland')
-groups=('plasma')
-conflicts=('kdebase-workspace')
-source=("http://download.kde.org/stable/plasma/${pkgver}/${pkgname}-${pkgver}.tar.xz"{,.sig})
-sha256sums=('74a976769cdcaca0b8c52e83cc2895d0860870b0e9dba22418deb983fe36372c'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
-  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_LIBEXECDIR=lib \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: kwin/repos/extra-i686/PKGBUILD (from rev 278922, kwin/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-10-18 13:52:08 UTC (rev 278923)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kwin
+pkgver=5.8.2
+pkgrel=1
+pkgdesc='KDE Window manager'
+arch=('i686' 'x86_64')
+url='https://www.kde.org/workspaces/plasmadesktop/'
+license=('LGPL')
+depends=('qt5-multimedia' 'kscreenlocker' 'knewstuff' 'xcb-util-cursor' 
'hicolor-icon-theme'
+ 'plasma-framework' 'kcmutils' 'breeze')
+makedepends=('extra-cmake-modules' 'qt5-tools' 'kdoctools' 'python')
+optdepends=('qt5-virtualkeyboard: virtual keyboard support for kwin-wayland')
+groups=('plasma')
+conflicts=('kdebase-workspace')
+source=("http://download.kde.org/stable/plasma/${pkgver}/${pkgname}-${pkgver}.tar.xz"{,.sig})
+sha256sums=('1e014a4fb7c197fa3bfb3591f064e33065d9bceafba843897bf720d2d65e8911'
+'SKIP')
+validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
+  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
+  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_LIBEXECDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-10-18 13:52:03 UTC (rev 278922)
+++ extra-x86_64/PKGBUILD   2016-10-18 13:52:08 UTC (rev 278923)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=kwin
-pkgver=5.8.1
-pkgrel=1
-pkgdesc='KDE Window manager'
-arch=('i686' 'x86_64')
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=('LGPL')
-depends=('qt5-multimedia' 'kscreenlocker' 'knewstuff' 'xcb-util-cursor' 
'hicolor-icon-theme'
- 'plasma-framework' 'kcmutils' 'breeze')
-makedepends=('extra-cmake-modules' 'qt5-tools' 'kdoctools' 'python')
-optdepends=('qt5-virtualkeyboard: virtual keyboard support for kwin-wayland')
-groups=('plasma')
-conflicts=('kdebase-workspace')
-source=("http://download.kde.org/stable/plasma/${pkgver}/${pkgname}-${pkgver}.tar.xz"{,.sig})
-sha256sums=('74a976769cdcaca0b8c52e83cc2895d0860870b0e9dba22418deb983fe36372c'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
-   

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

2016-10-18 Thread Antonio Rojas
Date: Tuesday, October 18, 2016 @ 13:52:01
  Author: arojas
Revision: 278921

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-10-18 13:51:54 UTC (rev 278920)
+++ extra-i686/PKGBUILD 2016-10-18 13:52:01 UTC (rev 278921)
@@ -1,66 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Maintainer: Antonio Rojas 
-# Contributor: Andrea Scarpino 
-
-pkgbase=breeze
-pkgname=('breeze' 'breeze-kde4')
-pkgver=5.8.1
-pkgrel=1
-arch=('i686' 'x86_64')
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=('LGPL')
-makedepends=('extra-cmake-modules' 'frameworkintegration' 'kdelibs'
- 'automoc4' 'kdecoration' 'kcmutils' 'plasma-framework' 'python')
-source=("http://download.kde.org/stable/plasma/${pkgver}/$pkgbase-$pkgver.tar.xz"{,.sig})
-sha256sums=('778c331931c9402ff06900b5c06616e85f027dc1549013b60f25e92f89443fe9'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
-  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
-
-prepare() {
-  mkdir -p build{,-kde4}
-}
-
-build() {
-  cd build
-  cmake ../${pkgbase}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_LIBDIR=lib \
--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' 'kwayland')
-  pkgdesc='Artwork, styles and assets for the Breeze visual style for the 
Plasma Desktop'
-  optdepends=('breeze-kde4: Breeze widget style for KDE4 applications'
-   'breeze-gtk: Breeze widget style for GTK applications'
-   'kcmutils: for breeze-settings')
-  groups=('plasma')
-
-  cd build
-  make DESTDIR="$pkgdir" install
-}
-
-package_breeze-kde4() {
-  pkgdesc='Breeze widget style for KDE4 applications'
-  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 278920, 
breeze/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-10-18 13:52:01 UTC (rev 278921)
@@ -0,0 +1,66 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgbase=breeze
+pkgname=('breeze' 'breeze-kde4')
+pkgver=5.8.2
+pkgrel=1
+arch=('i686' 'x86_64')
+url='https://www.kde.org/workspaces/plasmadesktop/'
+license=('LGPL')
+makedepends=('extra-cmake-modules' 'frameworkintegration' 'kdelibs'
+ 'automoc4' 'kdecoration' 'kcmutils' 'plasma-framework' 'python')
+source=("http://download.kde.org/stable/plasma/${pkgver}/$pkgbase-$pkgver.tar.xz"{,.sig})
+sha256sums=('680ea6e0c4a1d205b07a59ce0425a2fc991fa8e9665559dee567bdaeb6b007d9'
+'SKIP')
+validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
+  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
+  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
+
+prepare() {
+  mkdir -p build{,-kde4}
+}
+
+build() {
+  cd build
+  cmake ../${pkgbase}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-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' 'kwayland')
+  pkgdesc='Artwork, styles and assets for the Breeze visual style for the 
Plasma Desktop'
+  optdepends=('breeze-kde4: Breeze widget style for KDE4 applications'
+   'breeze-gtk: Breeze widget style for GTK applications'
+   'kcmutils: for breeze-settings')
+  groups=('plasma')
+
+  cd build
+  make DESTDIR="$pkgdir" install
+}
+
+package_breeze-kde4() {
+  pkgdesc='Breeze widget style for KDE4 applicat

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

2016-10-18 Thread Antonio Rojas
Date: Tuesday, October 18, 2016 @ 13:53:12
  Author: arojas
Revision: 278934

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-10-18 13:53:06 UTC (rev 278933)
+++ extra-i686/PKGBUILD 2016-10-18 13:53:12 UTC (rev 278934)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Antonio Rojas
-
-pkgname=systemsettings
-pkgver=5.8.1
-pkgrel=1
-pkgdesc='KDE system settings'
-arch=('i686' 'x86_64')
-url='https://www.kde.org/workspaces/plasmadesktop/'
-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"{,.sig})
-sha256sums=('a87d1595d355adf9d376d58057539ed5581e304141598296a4deff831ff9c011'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
-  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_LIBDIR=lib \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: systemsettings/repos/extra-i686/PKGBUILD (from rev 278933, 
systemsettings/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-10-18 13:53:12 UTC (rev 278934)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Antonio Rojas
+
+pkgname=systemsettings
+pkgver=5.8.2
+pkgrel=1
+pkgdesc='KDE system settings'
+arch=('i686' 'x86_64')
+url='https://www.kde.org/workspaces/plasmadesktop/'
+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"{,.sig})
+sha256sums=('71b3bf4496de31e42dd180b8fd9e48772698f1221c652913328bc07c9db2f394'
+'SKIP')
+validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
+  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
+  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-10-18 13:53:06 UTC (rev 278933)
+++ extra-x86_64/PKGBUILD   2016-10-18 13:53:12 UTC (rev 278934)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Antonio Rojas
-
-pkgname=systemsettings
-pkgver=5.8.1
-pkgrel=1
-pkgdesc='KDE system settings'
-arch=('i686' 'x86_64')
-url='https://www.kde.org/workspaces/plasmadesktop/'
-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"{,.sig})
-sha256sums=('a87d1595d355adf9d376d58057539ed5581e304141598296a4deff831ff9c011'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
-  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_LIBDIR=lib \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: systemsettings/repos/extra-x86_64/PKGBUILD (from rev 278933, 
systemsettings/trunk/PKGBUILD)

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

2016-10-18 Thread Antonio Rojas
Date: Tuesday, October 18, 2016 @ 13:52:14
  Author: arojas
Revision: 278924

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-10-18 13:52:08 UTC (rev 278923)
+++ extra-i686/PKGBUILD 2016-10-18 13:52:14 UTC (rev 278924)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Antonio Rojas
-
-pkgname=kde-cli-tools
-pkgver=5.8.1
-pkgrel=1
-pkgdesc="Tools based on KDE Frameworks 5 to better interact with the system"
-arch=('i686' 'x86_64')
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=('LGPL')
-depends=('kdesu' 'kdelibs4support' 'kcmutils')
-makedepends=('extra-cmake-modules' 'kdoctools' 'python' 'kdesignerplugin')
-groups=(plasma)
-source=("http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('01f81c351d939c71b81b903fdd6da26bfddce46d33c05433ae0cddc504cc71af'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
-  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_LIBEXECDIR=lib \
--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 278923, 
kde-cli-tools/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-10-18 13:52:14 UTC (rev 278924)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Antonio Rojas
+
+pkgname=kde-cli-tools
+pkgver=5.8.2
+pkgrel=1
+pkgdesc="Tools based on KDE Frameworks 5 to better interact with the system"
+arch=('i686' 'x86_64')
+url='https://www.kde.org/workspaces/plasmadesktop/'
+license=('LGPL')
+depends=('kdesu' 'kdelibs4support' 'kcmutils')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python' 'kdesignerplugin')
+groups=(plasma)
+source=("http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('8a2d9095112ac3d7030af4b562e7537cffccd93475921d58ef322a77273497bf'
+'SKIP')
+validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
+  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
+  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_LIBEXECDIR=lib \
+-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   2016-10-18 13:52:08 UTC (rev 278923)
+++ extra-x86_64/PKGBUILD   2016-10-18 13:52:14 UTC (rev 278924)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Antonio Rojas
-
-pkgname=kde-cli-tools
-pkgver=5.8.1
-pkgrel=1
-pkgdesc="Tools based on KDE Frameworks 5 to better interact with the system"
-arch=('i686' 'x86_64')
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=('LGPL')
-depends=('kdesu' 'kdelibs4support' 'kcmutils')
-makedepends=('extra-cmake-modules' 'kdoctools' 'python' 'kdesignerplugin')
-groups=(plasma)
-source=("http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('01f81c351d939c71b81b903fdd6da26bfddce46d33c05433ae0cddc504cc71af'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
-  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYP

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

2016-10-18 Thread Evangelos Foutras
Date: Tuesday, October 18, 2016 @ 13:51:50
  Author: foutrelis
Revision: 278919

upgpkg: xfce4-terminal 0.8.0-2

Pull upstream patch that sets window hints correctly.

Added:
  
xfce4-terminal/trunk/0001-Set-window-hints-properly-showes-columns-rows-when-r.patch
Modified:
  xfce4-terminal/trunk/PKGBUILD

-+
 0001-Set-window-hints-properly-showes-columns-rows-when-r.patch |   77 
++
 PKGBUILD|   15 +
 2 files changed, 89 insertions(+), 3 deletions(-)

Added: 0001-Set-window-hints-properly-showes-columns-rows-when-r.patch
===
--- 0001-Set-window-hints-properly-showes-columns-rows-when-r.patch 
(rev 0)
+++ 0001-Set-window-hints-properly-showes-columns-rows-when-r.patch 
2016-10-18 13:51:50 UTC (rev 278919)
@@ -0,0 +1,77 @@
+From 980003baf92afed64c7958dbaf1a92c3aca402cb Mon Sep 17 00:00:00 2001
+From: Igor 
+Date: Tue, 18 Oct 2016 14:56:47 +0300
+Subject: [PATCH] Set window hints properly; showes columns/rows when resizing
+
+Fixes https://bugzilla.xfce.org/show_bug.cgi?id=12793
+---
+ terminal/terminal-screen.c | 36 
+ 1 file changed, 24 insertions(+), 12 deletions(-)
+
+diff --git a/terminal/terminal-screen.c b/terminal/terminal-screen.c
+index 0351437..311f02f 100644
+--- a/terminal/terminal-screen.c
 b/terminal/terminal-screen.c
+@@ -1673,35 +1673,47 @@ terminal_screen_get_geometry (TerminalScreen *screen,
+  *
+  * I don't like this way, but its required to work-around a Gtk+
+  * bug (maybe also caused by a Vte bug, not sure).
++ *
++ * Code borrowed from gnome-terminal (terminal_window_update_geometry).
+  **/
+ void
+ terminal_screen_set_window_geometry_hints (TerminalScreen *screen,
+GtkWindow  *window)
+ {
+-  GdkGeometry  hints;
+-  gint xpad;
+-  gint ypad;
+-  glongchar_width;
+-  glongchar_height;
++  GdkGeometryhints;
++  GtkRequisition vbox_request;
++  GtkAllocation  toplevel_allocation, vbox_allocation;
++  glong  char_width, char_height;
++  glong  grid_width, grid_height;
++  glong  chrome_width, chrome_height;
++  gint   csd_width, csd_height;
+ 
+   terminal_return_if_fail (TERMINAL_IS_SCREEN (screen));
+   terminal_return_if_fail (VTE_IS_TERMINAL (screen->terminal));
+   terminal_return_if_fail (gtk_widget_get_realized (screen));
+   terminal_return_if_fail (gtk_widget_get_realized (window));
+ 
+-  terminal_screen_get_geometry (screen,
+-&char_width, &char_height,
+-&xpad, &ypad);
++  terminal_screen_get_geometry (screen, &char_width, &char_height, NULL, 
NULL);
++  terminal_screen_get_size (screen, &grid_width, &grid_height);
++
++  gtk_widget_get_preferred_size (TERMINAL_WINDOW (window)->vbox, NULL, 
&vbox_request);
++  chrome_width = vbox_request.width - (char_width * grid_width);
++  chrome_height = vbox_request.height - (char_height * grid_height);
++
++  gtk_widget_get_allocation (TERMINAL_WINDOW (window)->vbox, 
&vbox_allocation);
++  gtk_widget_get_allocation (GTK_WIDGET (window), &toplevel_allocation);
++  csd_width = toplevel_allocation.width - vbox_allocation.width;
++  csd_height = toplevel_allocation.height - vbox_allocation.height;
+ 
+-  hints.base_width = xpad;
+-  hints.base_height = ypad;
++  hints.base_width = chrome_width + csd_width;
++  hints.base_height = chrome_height + csd_height;
+   hints.width_inc = char_width;
+   hints.height_inc = char_height;
+   hints.min_width = hints.base_width + hints.width_inc * 4;
+   hints.min_height = hints.base_height + hints.height_inc * 2;
+ 
+-  gtk_window_set_geometry_hints (GTK_WINDOW (window),
+- screen->terminal,
++  gtk_window_set_geometry_hints (window,
++ NULL,
+  &hints,
+  GDK_HINT_RESIZE_INC
+  | GDK_HINT_MIN_SIZE
+-- 
+2.10.0
+

Modified: PKGBUILD
===
--- PKGBUILD2016-10-18 13:51:48 UTC (rev 278918)
+++ PKGBUILD2016-10-18 13:51:50 UTC (rev 278919)
@@ -5,7 +5,7 @@
 
 pkgname=xfce4-terminal
 pkgver=0.8.0
-pkgrel=1
+pkgrel=2
 pkgdesc="A modern terminal emulator primarly for the Xfce desktop environment"
 arch=('i686' 'x86_64')
 url="http://www.xfce.org/";
@@ -15,9 +15,18 @@
 makedepends=('intltool')
 conflicts=('terminal')
 replaces=('terminal')
-source=(http://archive.xfce.org/src/apps/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
-sha256sums=('e915c05a3d07b66d153e1ba8614f904f9c12b2dd8372b27d24c0d339743d5b0a')
+source=(http://archive.xfce.org/src/apps/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2
+0001-Set-window-hints-properly-showes-colum

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

2016-10-18 Thread Antonio Rojas
Date: Tuesday, October 18, 2016 @ 13:53:53
  Author: arojas
Revision: 278941

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

Added:
  plasma-pa/repos/extra-i686/PKGBUILD
(from rev 278940, plasma-pa/trunk/PKGBUILD)
  plasma-pa/repos/extra-x86_64/PKGBUILD
(from rev 278940, plasma-pa/trunk/PKGBUILD)
Deleted:
  plasma-pa/repos/extra-i686/PKGBUILD
  plasma-pa/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 2016-10-18 13:53:47 UTC (rev 278940)
+++ extra-i686/PKGBUILD 2016-10-18 13:53:53 UTC (rev 278941)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer:Antonio Rojas 
-
-pkgname=plasma-pa
-pkgver=5.8.1
-pkgrel=1
-pkgdesc='Plasma applet for audio volume management using PulseAudio'
-arch=(i686 x86_64)
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=(LGPL)
-depends=(plasma-workspace pulseaudio-gconf libcanberra)
-makedepends=(extra-cmake-modules kdoctools python)
-groups=(plasma)
-source=("http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('0b46318d109a8ab567ddaf30ef382b55ee67947cafa043242719c660b9a418b6'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
-  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_LIBDIR=lib \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: plasma-pa/repos/extra-i686/PKGBUILD (from rev 278940, 
plasma-pa/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-10-18 13:53:53 UTC (rev 278941)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer:Antonio Rojas 
+
+pkgname=plasma-pa
+pkgver=5.8.2
+pkgrel=1
+pkgdesc='Plasma applet for audio volume management using PulseAudio'
+arch=(i686 x86_64)
+url='https://www.kde.org/workspaces/plasmadesktop/'
+license=(LGPL)
+depends=(plasma-workspace pulseaudio-gconf libcanberra)
+makedepends=(extra-cmake-modules kdoctools python)
+groups=(plasma)
+source=("http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('11fa2025e3326a2c49d54d5291adf56a2395ee4beb9e5c6388e7409917c1a5c8'
+'SKIP')
+validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
+  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
+  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-10-18 13:53:47 UTC (rev 278940)
+++ extra-x86_64/PKGBUILD   2016-10-18 13:53:53 UTC (rev 278941)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer:Antonio Rojas 
-
-pkgname=plasma-pa
-pkgver=5.8.1
-pkgrel=1
-pkgdesc='Plasma applet for audio volume management using PulseAudio'
-arch=(i686 x86_64)
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=(LGPL)
-depends=(plasma-workspace pulseaudio-gconf libcanberra)
-makedepends=(extra-cmake-modules kdoctools python)
-groups=(plasma)
-source=("http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('0b46318d109a8ab567ddaf30ef382b55ee67947cafa043242719c660b9a418b6'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
-  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_LIBDIR=lib \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: plasma-pa/repos/extra-x86_64/PKGBUILD (from rev 278940, 
plasma-pa/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-10-18 13:53:53 UTC (rev 278941)
@@ -0,0 +1,38 @@
+# $Id$
+#

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

2016-10-18 Thread Antonio Rojas
Date: Tuesday, October 18, 2016 @ 13:55:21
  Author: arojas
Revision: 278955

archrelease: copy trunk to extra-any

Added:
  breeze-grub/repos/extra-any/PKGBUILD
(from rev 278954, breeze-grub/trunk/PKGBUILD)
Deleted:
  breeze-grub/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-10-18 13:55:17 UTC (rev 278954)
+++ PKGBUILD2016-10-18 13:55:21 UTC (rev 278955)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Maintainer: Antonio Rojas 
-
-pkgname=breeze-grub
-pkgver=5.8.1
-pkgrel=1
-pkgdesc="Breeze theme for GRUB"
-arch=(any)
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=(LGPL)
-depends=(grub)
-makedepends=()
-source=("http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('ac929bf1dd620aac21128e0e7d675960f9f0974dffc2876d71023d2f249b7ab4'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
-  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
-
-prepare() {
-  mkdir -p build
-}
-
-package() {
-  install -d "$pkgdir"/boot/grub/themes
-  cp -r $pkgname-$pkgver/breeze "$pkgdir"/boot/grub/themes
-}

Copied: breeze-grub/repos/extra-any/PKGBUILD (from rev 278954, 
breeze-grub/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-10-18 13:55:21 UTC (rev 278955)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+
+pkgname=breeze-grub
+pkgver=5.8.2
+pkgrel=1
+pkgdesc="Breeze theme for GRUB"
+arch=(any)
+url='https://www.kde.org/workspaces/plasmadesktop/'
+license=(LGPL)
+depends=(grub)
+makedepends=()
+source=("http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('c1d55c017f6278ef0601368c9f23e5801abfcd4f33b936e9315faabefb4191e0'
+'SKIP')
+validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
+  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
+  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
+
+prepare() {
+  mkdir -p build
+}
+
+package() {
+  install -d "$pkgdir"/boot/grub/themes
+  cp -r $pkgname-$pkgver/breeze "$pkgdir"/boot/grub/themes
+}


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

2016-10-18 Thread Antonio Rojas
Date: Tuesday, October 18, 2016 @ 13:54:33
  Author: arojas
Revision: 278947

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

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

--+
 /PKGBUILD|   84 +
 /ksshaskpass.install |   10 
 extra-i686/PKGBUILD  |   42 --
 extra-i686/ksshaskpass.install   |5 --
 extra-x86_64/PKGBUILD|   42 --
 extra-x86_64/ksshaskpass.install |5 --
 6 files changed, 94 insertions(+), 94 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-10-18 13:54:27 UTC (rev 278946)
+++ extra-i686/PKGBUILD 2016-10-18 13:54:33 UTC (rev 278947)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: schuay 
-
-pkgname=ksshaskpass
-pkgver=5.8.1
-pkgrel=1
-pkgdesc='ssh-add helper that uses kwallet and kpassworddialog'
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=('GPL')
-arch=('i686' 'x86_64')
-depends=('kwallet')
-makedepends=('extra-cmake-modules' 'kdoctools' 'python')
-provides=('x11-ssh-askpass' 'ksshaskpass-frameworks')
-conflicts=('ksshaskpass-frameworks')
-replaces=('ksshaskpass-frameworks')
-groups=('plasma')
-source=("http://download.kde.org/stable/plasma/${pkgver}/${pkgname}-${pkgver}.tar.xz"{,.sig})
-install=$pkgname.install
-sha256sums=('16d3ef59bee744453cd492916ae8418126cda5e4365b253fa03fa4dd1512aa7a'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
-  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../ksshaskpass-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DBUILD_TESTING=OFF
-  make
-}
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: ksshaskpass/repos/extra-i686/PKGBUILD (from rev 278946, 
ksshaskpass/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-10-18 13:54:33 UTC (rev 278947)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: schuay 
+
+pkgname=ksshaskpass
+pkgver=5.8.2
+pkgrel=1
+pkgdesc='ssh-add helper that uses kwallet and kpassworddialog'
+url='https://www.kde.org/workspaces/plasmadesktop/'
+license=('GPL')
+arch=('i686' 'x86_64')
+depends=('kwallet')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+provides=('x11-ssh-askpass' 'ksshaskpass-frameworks')
+conflicts=('ksshaskpass-frameworks')
+replaces=('ksshaskpass-frameworks')
+groups=('plasma')
+source=("http://download.kde.org/stable/plasma/${pkgver}/${pkgname}-${pkgver}.tar.xz"{,.sig})
+install=$pkgname.install
+sha256sums=('7a00622a12993d14d68e3def143a4291e32cef766e3e0b976e969e4c799668f2'
+'SKIP')
+validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
+  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
+  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../ksshaskpass-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DBUILD_TESTING=OFF
+  make
+}
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-i686/ksshaskpass.install
===
--- extra-i686/ksshaskpass.install  2016-10-18 13:54:27 UTC (rev 278946)
+++ extra-i686/ksshaskpass.install  2016-10-18 13:54:33 UTC (rev 278947)
@@ -1,5 +0,0 @@
-post_upgrade() {
-  if [[ $(vercmp 5.5.2-2 "$2") -eq 1 ]]; then
-echo "The SSH_ASKPASS environment variable is not exported by default 
anymore. Set it in /etc/profile to revert to the previous behavior"
-  fi
-}

Copied: ksshaskpass/repos/extra-i686/ksshaskpass.install (from rev 278946, 
ksshaskpass/trunk/ksshaskpass.install)
===
--- extra-i686/ksshaskpass.install  (rev 0)
+++ extra-i686/ksshaskpass.install  2016-10-18 13:54:33 UTC (rev 278947)
@@ 

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

2016-10-18 Thread Antonio Rojas
Date: Tuesday, October 18, 2016 @ 13:54:00
  Author: arojas
Revision: 278942

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

Added:
  kwrited/repos/extra-i686/PKGBUILD
(from rev 278941, kwrited/trunk/PKGBUILD)
  kwrited/repos/extra-x86_64/PKGBUILD
(from rev 278941, kwrited/trunk/PKGBUILD)
Deleted:
  kwrited/repos/extra-i686/PKGBUILD
  kwrited/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 2016-10-18 13:53:53 UTC (rev 278941)
+++ extra-i686/PKGBUILD 2016-10-18 13:54:00 UTC (rev 278942)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Antonio Rojas
-
-pkgname=kwrited
-pkgver=5.8.1
-pkgrel=1
-pkgdesc='KDE daemon listening for wall and write messages'
-arch=('i686' 'x86_64')
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=('LGPL')
-depends=('kpty' 'knotifications' 'kdbusaddons')
-makedepends=('extra-cmake-modules' 'kdoctools' 'python')
-groups=('plasma')
-source=("http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('feadce4242b85f89d1851cf8e5b1cb9cac6f894afac6753a39011eca33a7676a'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
-  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_LIBDIR=lib \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: kwrited/repos/extra-i686/PKGBUILD (from rev 278941, 
kwrited/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-10-18 13:54:00 UTC (rev 278942)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Antonio Rojas
+
+pkgname=kwrited
+pkgver=5.8.2
+pkgrel=1
+pkgdesc='KDE daemon listening for wall and write messages'
+arch=('i686' 'x86_64')
+url='https://www.kde.org/workspaces/plasmadesktop/'
+license=('LGPL')
+depends=('kpty' 'knotifications' 'kdbusaddons')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+groups=('plasma')
+source=("http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('43608730165073da39fd462f5d043a01035ba35de177987564102896073aa998'
+'SKIP')
+validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
+  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
+  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-10-18 13:53:53 UTC (rev 278941)
+++ extra-x86_64/PKGBUILD   2016-10-18 13:54:00 UTC (rev 278942)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Antonio Rojas
-
-pkgname=kwrited
-pkgver=5.8.1
-pkgrel=1
-pkgdesc='KDE daemon listening for wall and write messages'
-arch=('i686' 'x86_64')
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=('LGPL')
-depends=('kpty' 'knotifications' 'kdbusaddons')
-makedepends=('extra-cmake-modules' 'kdoctools' 'python')
-groups=('plasma')
-source=("http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('feadce4242b85f89d1851cf8e5b1cb9cac6f894afac6753a39011eca33a7676a'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
-  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_LIBDIR=lib \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: kwrited/repos/extra-x86_64/PKGBUILD (from rev 278941, 
kwrited/trunk/PKGBUILD)
==

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

2016-10-18 Thread Antonio Rojas
Date: Tuesday, October 18, 2016 @ 13:54:13
  Author: arojas
Revision: 278944

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-10-18 13:54:07 UTC (rev 278943)
+++ extra-i686/PKGBUILD 2016-10-18 13:54:13 UTC (rev 278944)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Antonio Rojas 
-
-pkgname=bluedevil
-pkgver=5.8.1
-pkgrel=1
-epoch=1
-pkgdesc='Integrate the Bluetooth technology within KDE workspace and 
applications'
-arch=('i686' 'x86_64')
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=('GPL2')
-depends=('bluez-qt' 'kio')
-makedepends=('extra-cmake-modules' 'plasma-framework' 'kded' 'python')
-conflicts=('bluedevil-frameworks')
-replaces=('bluedevil-frameworks')
-groups=('plasma')
-source=("http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('e1b224c366cdadb4490762511640c2be9efe56c6700d39820e94418645cf5548'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
-  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DKDE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_LIBEXECDIR=lib \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: bluedevil/repos/extra-i686/PKGBUILD (from rev 278943, 
bluedevil/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-10-18 13:54:13 UTC (rev 278944)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Antonio Rojas 
+
+pkgname=bluedevil
+pkgver=5.8.2
+pkgrel=1
+epoch=1
+pkgdesc='Integrate the Bluetooth technology within KDE workspace and 
applications'
+arch=('i686' 'x86_64')
+url='https://www.kde.org/workspaces/plasmadesktop/'
+license=('GPL2')
+depends=('bluez-qt' 'kio')
+makedepends=('extra-cmake-modules' 'plasma-framework' 'kded' 'python')
+conflicts=('bluedevil-frameworks')
+replaces=('bluedevil-frameworks')
+groups=('plasma')
+source=("http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('cd6a3629703313e8ca66c927e629afd550a7fbc259b3e83187c8a923e0860bd5'
+'SKIP')
+validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
+  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
+  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_LIBEXECDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-10-18 13:54:07 UTC (rev 278943)
+++ extra-x86_64/PKGBUILD   2016-10-18 13:54:13 UTC (rev 278944)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Antonio Rojas 
-
-pkgname=bluedevil
-pkgver=5.8.1
-pkgrel=1
-epoch=1
-pkgdesc='Integrate the Bluetooth technology within KDE workspace and 
applications'
-arch=('i686' 'x86_64')
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=('GPL2')
-depends=('bluez-qt' 'kio')
-makedepends=('extra-cmake-modules' 'plasma-framework' 'kded' 'python')
-conflicts=('bluedevil-frameworks')
-replaces=('bluedevil-frameworks')
-groups=('plasma')
-source=("http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('e1b224c366cdadb4490762511640c2be9efe56c6700d39820e94418645cf5548'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
-  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pk

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

2016-10-18 Thread Antonio Rojas
Date: Tuesday, October 18, 2016 @ 13:54:19
  Author: arojas
Revision: 278945

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-10-18 13:54:13 UTC (rev 278944)
+++ extra-i686/PKGBUILD 2016-10-18 13:54:19 UTC (rev 278945)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Antonio Rojas 
-
-pkgname=kde-gtk-config
-pkgver=5.8.1
-pkgrel=1
-pkgdesc='GTK2 and GTK3 Configurator for KDE'
-arch=('i686' 'x86_64')
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=('LGPL')
-depends=('knewstuff' 'kde-cli-tools')
-makedepends=('extra-cmake-modules' 'gtk2' 'gtk3' 'python')
-optdepends=('gtk2: GTK2 apps support'
-'gtk3: GTK3 apps support')
-conflicts=('kde-gtk-config-frameworks')
-replaces=('kde-gtk-config-frameworks')
-groups=('plasma')
-source=("http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('6ee8108c8e8838f23fe3d4b9830e08cebd28f7d2acd9465847574b1ced52e9fb'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
-  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_LIBEXECDIR=lib \
--DKDE_INSTALL_SYSCONFDIR=/etc \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: kde-gtk-config/repos/extra-i686/PKGBUILD (from rev 278944, 
kde-gtk-config/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-10-18 13:54:19 UTC (rev 278945)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Antonio Rojas 
+
+pkgname=kde-gtk-config
+pkgver=5.8.2
+pkgrel=1
+pkgdesc='GTK2 and GTK3 Configurator for KDE'
+arch=('i686' 'x86_64')
+url='https://www.kde.org/workspaces/plasmadesktop/'
+license=('LGPL')
+depends=('knewstuff' 'kde-cli-tools')
+makedepends=('extra-cmake-modules' 'gtk2' 'gtk3' 'python')
+optdepends=('gtk2: GTK2 apps support'
+'gtk3: GTK3 apps support')
+conflicts=('kde-gtk-config-frameworks')
+replaces=('kde-gtk-config-frameworks')
+groups=('plasma')
+source=("http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('4731d0e772578f719c124b3c7f4bb427f1a98dac97c77bdd953ff4703c37769a'
+'SKIP')
+validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
+  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
+  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_LIBEXECDIR=lib \
+-DKDE_INSTALL_SYSCONFDIR=/etc \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-10-18 13:54:13 UTC (rev 278944)
+++ extra-x86_64/PKGBUILD   2016-10-18 13:54:19 UTC (rev 278945)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Antonio Rojas 
-
-pkgname=kde-gtk-config
-pkgver=5.8.1
-pkgrel=1
-pkgdesc='GTK2 and GTK3 Configurator for KDE'
-arch=('i686' 'x86_64')
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=('LGPL')
-depends=('knewstuff' 'kde-cli-tools')
-makedepends=('extra-cmake-modules' 'gtk2' 'gtk3' 'python')
-optdepends=('gtk2: GTK2 apps support'
-'gtk3: GTK3 apps support')
-conflicts=('kde-gtk-config-frameworks')
-replaces=('kde-gtk-config-frameworks')
-groups=('plasma')
-source=("http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('6ee8108c8e8838f23fe3d4b9830e08cebd28f7d2acd9465847574b1ced52e9fb'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05

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

2016-10-18 Thread Evangelos Foutras
Date: Tuesday, October 18, 2016 @ 13:52:03
  Author: foutrelis
Revision: 278922

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

Added:
  
xfce4-terminal/repos/testing-i686/0001-Set-window-hints-properly-showes-columns-rows-when-r.patch
(from rev 278920, 
xfce4-terminal/trunk/0001-Set-window-hints-properly-showes-columns-rows-when-r.patch)
  xfce4-terminal/repos/testing-i686/PKGBUILD
(from rev 278920, xfce4-terminal/trunk/PKGBUILD)
  
xfce4-terminal/repos/testing-x86_64/0001-Set-window-hints-properly-showes-columns-rows-when-r.patch
(from rev 278920, 
xfce4-terminal/trunk/0001-Set-window-hints-properly-showes-columns-rows-when-r.patch)
  xfce4-terminal/repos/testing-x86_64/PKGBUILD
(from rev 278920, xfce4-terminal/trunk/PKGBUILD)
Deleted:
  xfce4-terminal/repos/testing-i686/PKGBUILD
  xfce4-terminal/repos/testing-x86_64/PKGBUILD

+
 /PKGBUILD  
|   96 ++
 testing-i686/0001-Set-window-hints-properly-showes-columns-rows-when-r.patch   
|   77 
 testing-i686/PKGBUILD  
|   39 
 testing-x86_64/0001-Set-window-hints-properly-showes-columns-rows-when-r.patch 
|   77 
 testing-x86_64/PKGBUILD
|   39 
 5 files changed, 250 insertions(+), 78 deletions(-)

Copied: 
xfce4-terminal/repos/testing-i686/0001-Set-window-hints-properly-showes-columns-rows-when-r.patch
 (from rev 278920, 
xfce4-terminal/trunk/0001-Set-window-hints-properly-showes-columns-rows-when-r.patch)
===
--- 
testing-i686/0001-Set-window-hints-properly-showes-columns-rows-when-r.patch
(rev 0)
+++ 
testing-i686/0001-Set-window-hints-properly-showes-columns-rows-when-r.patch
2016-10-18 13:52:03 UTC (rev 278922)
@@ -0,0 +1,77 @@
+From 980003baf92afed64c7958dbaf1a92c3aca402cb Mon Sep 17 00:00:00 2001
+From: Igor 
+Date: Tue, 18 Oct 2016 14:56:47 +0300
+Subject: [PATCH] Set window hints properly; showes columns/rows when resizing
+
+Fixes https://bugzilla.xfce.org/show_bug.cgi?id=12793
+---
+ terminal/terminal-screen.c | 36 
+ 1 file changed, 24 insertions(+), 12 deletions(-)
+
+diff --git a/terminal/terminal-screen.c b/terminal/terminal-screen.c
+index 0351437..311f02f 100644
+--- a/terminal/terminal-screen.c
 b/terminal/terminal-screen.c
+@@ -1673,35 +1673,47 @@ terminal_screen_get_geometry (TerminalScreen *screen,
+  *
+  * I don't like this way, but its required to work-around a Gtk+
+  * bug (maybe also caused by a Vte bug, not sure).
++ *
++ * Code borrowed from gnome-terminal (terminal_window_update_geometry).
+  **/
+ void
+ terminal_screen_set_window_geometry_hints (TerminalScreen *screen,
+GtkWindow  *window)
+ {
+-  GdkGeometry  hints;
+-  gint xpad;
+-  gint ypad;
+-  glongchar_width;
+-  glongchar_height;
++  GdkGeometryhints;
++  GtkRequisition vbox_request;
++  GtkAllocation  toplevel_allocation, vbox_allocation;
++  glong  char_width, char_height;
++  glong  grid_width, grid_height;
++  glong  chrome_width, chrome_height;
++  gint   csd_width, csd_height;
+ 
+   terminal_return_if_fail (TERMINAL_IS_SCREEN (screen));
+   terminal_return_if_fail (VTE_IS_TERMINAL (screen->terminal));
+   terminal_return_if_fail (gtk_widget_get_realized (screen));
+   terminal_return_if_fail (gtk_widget_get_realized (window));
+ 
+-  terminal_screen_get_geometry (screen,
+-&char_width, &char_height,
+-&xpad, &ypad);
++  terminal_screen_get_geometry (screen, &char_width, &char_height, NULL, 
NULL);
++  terminal_screen_get_size (screen, &grid_width, &grid_height);
++
++  gtk_widget_get_preferred_size (TERMINAL_WINDOW (window)->vbox, NULL, 
&vbox_request);
++  chrome_width = vbox_request.width - (char_width * grid_width);
++  chrome_height = vbox_request.height - (char_height * grid_height);
++
++  gtk_widget_get_allocation (TERMINAL_WINDOW (window)->vbox, 
&vbox_allocation);
++  gtk_widget_get_allocation (GTK_WIDGET (window), &toplevel_allocation);
++  csd_width = toplevel_allocation.width - vbox_allocation.width;
++  csd_height = toplevel_allocation.height - vbox_allocation.height;
+ 
+-  hints.base_width = xpad;
+-  hints.base_height = ypad;
++  hints.base_width = chrome_width + csd_width;
++  hints.base_height = chrome_height + csd_height;
+   hints.width_inc = char_width;
+   hints.height_inc = char_height;
+   hints.min_width = hints.base_width + hints.width_inc * 4;
+   hints.min_height = hints.base_height + hints.height_inc * 2;
+ 
+-  gtk_window_set_geometry_hints (GTK_WINDOW (window),
+- sc

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

2016-10-18 Thread Alexander Rødseth
Date: Tuesday, October 18, 2016 @ 14:15:06
  Author: arodseth
Revision: 192514

upgpkg: nuitka 0.5.23.1-1

Modified:
  nuitka/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-18 13:12:53 UTC (rev 192513)
+++ PKGBUILD2016-10-18 14:15:06 UTC (rev 192514)
@@ -3,7 +3,7 @@
 # Contributor: Panagiotis Mavrogiorgos 
 
 pkgname=nuitka
-pkgver=0.5.23.0
+pkgver=0.5.23.1
 pkgrel=1
 pkgdesc='Python to native compiler'
 arch=('any')
@@ -13,7 +13,7 @@
 options=('!emptydirs')
 optdepends=('chrpath: for building standalone executables')
 source=("http://nuitka.net/releases/Nuitka-${pkgver%.0}.tar.gz";)
-sha256sums=('9c59e41b8b502fd594d61daa92a368e7c000ce960081fdf6cc63c330f930d41d')
+sha256sums=('532095ebfecde55b317c23d4a1794932a490b7b07c570148be703a6e7a19f5b4')
 
 package() {
   cd "Nuitka-${pkgver%.0}"


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

2016-10-18 Thread Alexander Rødseth
Date: Tuesday, October 18, 2016 @ 14:15:15
  Author: arodseth
Revision: 192515

archrelease: copy trunk to community-any

Added:
  nuitka/repos/community-any/PKGBUILD
(from rev 192514, nuitka/trunk/PKGBUILD)
Deleted:
  nuitka/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-10-18 14:15:06 UTC (rev 192514)
+++ PKGBUILD2016-10-18 14:15:15 UTC (rev 192515)
@@ -1,25 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth 
-# Contributor: Panagiotis Mavrogiorgos 
-
-pkgname=nuitka
-pkgver=0.5.23.0
-pkgrel=1
-pkgdesc='Python to native compiler'
-arch=('any')
-url='http://nuitka.net/'
-license=('APACHE')
-depends=('python')
-options=('!emptydirs')
-optdepends=('chrpath: for building standalone executables')
-source=("http://nuitka.net/releases/Nuitka-${pkgver%.0}.tar.gz";)
-sha256sums=('9c59e41b8b502fd594d61daa92a368e7c000ce960081fdf6cc63c330f930d41d')
-
-package() {
-  cd "Nuitka-${pkgver%.0}"
-
-  python setup.py install --root="$pkgdir" --optimize=1
-}
-
-# getver: nuitka.net/pages/download.html
-# vim: sw=2 ts=2 et:

Copied: nuitka/repos/community-any/PKGBUILD (from rev 192514, 
nuitka/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-10-18 14:15:15 UTC (rev 192515)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Alexander F Rødseth 
+# Contributor: Panagiotis Mavrogiorgos 
+
+pkgname=nuitka
+pkgver=0.5.23.1
+pkgrel=1
+pkgdesc='Python to native compiler'
+arch=('any')
+url='http://nuitka.net/'
+license=('APACHE')
+depends=('python')
+options=('!emptydirs')
+optdepends=('chrpath: for building standalone executables')
+source=("http://nuitka.net/releases/Nuitka-${pkgver%.0}.tar.gz";)
+sha256sums=('532095ebfecde55b317c23d4a1794932a490b7b07c570148be703a6e7a19f5b4')
+
+package() {
+  cd "Nuitka-${pkgver%.0}"
+
+  python setup.py install --root="$pkgdir" --optimize=1
+}
+
+# getver: nuitka.net/pages/download.html
+# vim: sw=2 ts=2 et:


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

2016-10-18 Thread Antonio Rojas
Date: Tuesday, October 18, 2016 @ 13:52:27
  Author: arojas
Revision: 278926

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-10-18 13:52:20 UTC (rev 278925)
+++ extra-i686/PKGBUILD 2016-10-18 13:52:27 UTC (rev 278926)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Antonio Rojas 
-
-pkgname=libkscreen
-pkgver=5.8.1
-pkgrel=1
-pkgdesc='KDE screen management software'
-arch=('i686' 'x86_64')
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=('LGPL')
-depends=('qt5-x11extras' 'libxrandr' 'kwayland')
-makedepends=('extra-cmake-modules')
-conflicts=('libkscreen-frameworks')
-replaces=('libkscreen-frameworks')
-provides=('libkscreen-frameworks')
-groups=(plasma)
-source=("http://download.kde.org/stable/plasma/${pkgver}/libkscreen-$pkgver.tar.xz"{,.sig})
-sha256sums=('84edcebe39f39a0a8e0080b7e6999bff30a90fd2796fbb71f3a9cbb713b1f7dd'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
-  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../libkscreen-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_LIBEXECDIR=lib \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: libkscreen/repos/extra-i686/PKGBUILD (from rev 278925, 
libkscreen/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-10-18 13:52:27 UTC (rev 278926)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Antonio Rojas 
+
+pkgname=libkscreen
+pkgver=5.8.2
+pkgrel=1
+pkgdesc='KDE screen management software'
+arch=('i686' 'x86_64')
+url='https://www.kde.org/workspaces/plasmadesktop/'
+license=('LGPL')
+depends=('qt5-x11extras' 'libxrandr' 'kwayland')
+makedepends=('extra-cmake-modules')
+conflicts=('libkscreen-frameworks')
+replaces=('libkscreen-frameworks')
+provides=('libkscreen-frameworks')
+groups=(plasma)
+source=("http://download.kde.org/stable/plasma/${pkgver}/libkscreen-$pkgver.tar.xz"{,.sig})
+sha256sums=('ecdc4d514e3e19403d3db16da4b9cdd639cce98396cd6fb404b8b391f783565c'
+'SKIP')
+validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
+  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
+  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../libkscreen-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_LIBEXECDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-10-18 13:52:20 UTC (rev 278925)
+++ extra-x86_64/PKGBUILD   2016-10-18 13:52:27 UTC (rev 278926)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Antonio Rojas 
-
-pkgname=libkscreen
-pkgver=5.8.1
-pkgrel=1
-pkgdesc='KDE screen management software'
-arch=('i686' 'x86_64')
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=('LGPL')
-depends=('qt5-x11extras' 'libxrandr' 'kwayland')
-makedepends=('extra-cmake-modules')
-conflicts=('libkscreen-frameworks')
-replaces=('libkscreen-frameworks')
-provides=('libkscreen-frameworks')
-groups=(plasma)
-source=("http://download.kde.org/stable/plasma/${pkgver}/libkscreen-$pkgver.tar.xz"{,.sig})
-sha256sums=('84edcebe39f39a0a8e0080b7e6999bff30a90fd2796fbb71f3a9cbb713b1f7dd'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
-  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../libkscreen-${pkgver} \
--DCMAKE_BUILD_TYPE=Release 

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

2016-10-18 Thread Jan Steffens
Date: Tuesday, October 18, 2016 @ 14:35:59
  Author: heftig
Revision: 278956

3.22.1+32+g3287711-1

Modified:
  mutter/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-18 13:55:21 UTC (rev 278955)
+++ PKGBUILD2016-10-18 14:35:59 UTC (rev 278956)
@@ -4,7 +4,7 @@
 # Contributor: Michael Kanis 
 
 pkgname=mutter
-pkgver=3.22.1
+pkgver=3.22.1+32+g3287711
 pkgrel=1
 pkgdesc="A window manager for GNOME"
 url="https://git.gnome.org/browse/mutter";
@@ -16,7 +16,7 @@
 makedepends=(intltool gobject-introspection git gnome-common)
 groups=(gnome)
 options=(!emptydirs)
-_commit=f63bb024fa72887b845c8cfb6c06d5338f35f4dd  # tags/3.22.1^0
+_commit=32877118c3d24ca4a7bfbcfaff2ff49c0d0ff5b5  # gnome-3-22
 source=("git://git.gnome.org/mutter#commit=$_commit")
 sha256sums=('SKIP')
 


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

2016-10-18 Thread Jan Steffens
Date: Tuesday, October 18, 2016 @ 14:36:55
  Author: heftig
Revision: 278957

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

Added:
  mutter/repos/testing-i686/
  mutter/repos/testing-i686/PKGBUILD
(from rev 278956, mutter/trunk/PKGBUILD)
  mutter/repos/testing-x86_64/
  mutter/repos/testing-x86_64/PKGBUILD
(from rev 278956, mutter/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   51 ++
 testing-x86_64/PKGBUILD |   51 ++
 2 files changed, 102 insertions(+)

Copied: mutter/repos/testing-i686/PKGBUILD (from rev 278956, 
mutter/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-10-18 14:36:55 UTC (rev 278957)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Maintainer: Ionut Biru 
+# Contributor: Michael Kanis 
+
+pkgname=mutter
+pkgver=3.22.1+32+g3287711
+pkgrel=1
+pkgdesc="A window manager for GNOME"
+url="https://git.gnome.org/browse/mutter";
+arch=(i686 x86_64)
+license=(GPL)
+depends=(dconf gobject-introspection-runtime gsettings-desktop-schemas
+ libcanberra startup-notification zenity libsm gnome-desktop upower
+ libxkbcommon-x11 gnome-settings-daemon libgudev libinput)
+makedepends=(intltool gobject-introspection git gnome-common)
+groups=(gnome)
+options=(!emptydirs)
+_commit=32877118c3d24ca4a7bfbcfaff2ff49c0d0ff5b5  # gnome-3-22
+source=("git://git.gnome.org/mutter#commit=$_commit")
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+  --libexecdir=/usr/lib/$pkgname --disable-static \
+  --disable-schemas-compile --enable-compile-warnings=minimum \
+  --enable-gtk-doc
+
+  #https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -e 's/ -shared / -Wl,-O1,--as-needed\0/g' \
+  -i {.,cogl,clutter}/libtool
+
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}

Copied: mutter/repos/testing-x86_64/PKGBUILD (from rev 278956, 
mutter/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-10-18 14:36:55 UTC (rev 278957)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Maintainer: Ionut Biru 
+# Contributor: Michael Kanis 
+
+pkgname=mutter
+pkgver=3.22.1+32+g3287711
+pkgrel=1
+pkgdesc="A window manager for GNOME"
+url="https://git.gnome.org/browse/mutter";
+arch=(i686 x86_64)
+license=(GPL)
+depends=(dconf gobject-introspection-runtime gsettings-desktop-schemas
+ libcanberra startup-notification zenity libsm gnome-desktop upower
+ libxkbcommon-x11 gnome-settings-daemon libgudev libinput)
+makedepends=(intltool gobject-introspection git gnome-common)
+groups=(gnome)
+options=(!emptydirs)
+_commit=32877118c3d24ca4a7bfbcfaff2ff49c0d0ff5b5  # gnome-3-22
+source=("git://git.gnome.org/mutter#commit=$_commit")
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+  --libexecdir=/usr/lib/$pkgname --disable-static \
+  --disable-schemas-compile --enable-compile-warnings=minimum \
+  --enable-gtk-doc
+
+  #https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -e 's/ -shared / -Wl,-O1,--as-needed\0/g' \
+  -i {.,cogl,clutter}/libtool
+
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}


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

2016-10-18 Thread Felix Yan
Date: Tuesday, October 18, 2016 @ 14:52:57
  Author: felixonmars
Revision: 278959

archrelease: copy trunk to testing-any

Added:
  python-pycparser/repos/testing-any/
  python-pycparser/repos/testing-any/PKGBUILD
(from rev 278958, python-pycparser/trunk/PKGBUILD)

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

Copied: python-pycparser/repos/testing-any/PKGBUILD (from rev 278958, 
python-pycparser/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2016-10-18 14:52:57 UTC (rev 278959)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Justin Dray 
+# Contributor: Alexander Rødseth 
+# Contributor: lang2 
+
+pkgbase=python-pycparser
+pkgname=(python-pycparser python2-pycparser)
+pkgver=2.15
+_commit=9e9855b3254a8e234ac8f793154d600905b90a55
+pkgrel=1
+pkgdesc='C parser and AST generator written in Python'
+url='https://github.com/eliben/pycparser'
+makedepends=('python-ply' 'python2-ply' 'python-setuptools' 
'python2-setuptools' 'git')
+arch=('any')
+license=('BSD')
+source=("git+https://github.com/eliben/pycparser.git#commit=$_commit";)
+sha256sums=('SKIP')
+
+prepare() {
+  cp -a pycparser{,-py2}
+}
+
+build() {
+  cd "$srcdir"/pycparser
+  python setup.py build
+  cd pycparser
+  python _build_tables.py
+
+  cd "$srcdir"/pycparser-py2
+  python2 setup.py build
+  cd pycparser
+  python2 _build_tables.py
+}
+
+check() {
+  cd "$srcdir"/pycparser
+  python tests/all_tests.py
+
+  cd "$srcdir"/pycparser-py2
+  python2 tests/all_tests.py
+}
+
+package_python-pycparser() {
+  depends=('python-ply')
+
+  cd pycparser
+
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-pycparser() {
+  depends=('python2-ply')
+
+  cd pycparser-py2
+
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2016-10-18 Thread Felix Yan
Date: Tuesday, October 18, 2016 @ 14:53:51
  Author: felixonmars
Revision: 192517

archrelease: copy trunk to community-any

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

--+
 PKGBUILD |  118 ++---
 1 file changed, 59 insertions(+), 59 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-10-18 14:53:34 UTC (rev 192516)
+++ PKGBUILD2016-10-18 14:53:51 UTC (rev 192517)
@@ -1,59 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgbase=python-pytest-flake8
-pkgname=('python-pytest-flake8' 'python2-pytest-flake8')
-pkgver=0.7
-pkgrel=1
-pkgdesc='pytest plugin to check FLAKE8 requirements'
-arch=('any')
-license=('MIT')
-url='http://github.com/tholo/pytest-flake8'
-makedepends=('python-pytest' 'python2-pytest' 'flake8' 'python2-flake8' 'git')
-source=("git+https://github.com/tholo/pytest-flake8#tag=$pkgver";)
-md5sums=('SKIP')
-
-prepare() {
-  # https://github.com/tholo/pytest-flake8/pull/14
-  sed -i 's/flake8-ignore = E128/flake8-ignore = E128 E501/' 
pytest-flake8/tox.ini
-
-  cp -a pytest-flake8{,-py2}
-}
-
-build() {
-  cd "$srcdir"/pytest-flake8
-  python setup.py build
-
-  cd "$srcdir"/pytest-flake8-py2
-  python2 setup.py build
-}
-
-check() {
-  # Hack entry points by installing it
-
-  cd "$srcdir"/pytest-flake8
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.5/site-packages:$PYTHONPATH" 
py.test
-
-  cd "$srcdir"/pytest-flake8-py2
-  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH" 
py.test2
-}
-
-package_python-pytest-flake8() {
-  depends=('python-pytest' 'flake8')
-
-  cd pytest-flake8
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-pytest-flake8() {
-  depends=('python2-pytest' 'python2-flake8')
-
-  cd pytest-flake8-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-pytest-flake8/repos/community-any/PKGBUILD (from rev 192516, 
python-pytest-flake8/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-10-18 14:53:51 UTC (rev 192517)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-pytest-flake8
+pkgname=('python-pytest-flake8' 'python2-pytest-flake8')
+pkgver=0.8.1
+pkgrel=1
+pkgdesc='pytest plugin to check FLAKE8 requirements'
+arch=('any')
+license=('MIT')
+url='http://github.com/tholo/pytest-flake8'
+makedepends=('python-pytest' 'python2-pytest' 'flake8' 'python2-flake8' 'git')
+source=("git+https://github.com/tholo/pytest-flake8#tag=$pkgver";)
+md5sums=('SKIP')
+
+prepare() {
+  # https://github.com/tholo/pytest-flake8/pull/14
+  sed -i 's/flake8-ignore = E128/flake8-ignore = E128 E501/' 
pytest-flake8/tox.ini
+
+  cp -a pytest-flake8{,-py2}
+}
+
+build() {
+  cd "$srcdir"/pytest-flake8
+  python setup.py build
+
+  cd "$srcdir"/pytest-flake8-py2
+  python2 setup.py build
+}
+
+check() {
+  # Hack entry points by installing it
+
+  cd "$srcdir"/pytest-flake8
+  python setup.py install --root="$PWD/tmp_install" --optimize=1
+  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.5/site-packages:$PYTHONPATH" 
py.test
+
+  cd "$srcdir"/pytest-flake8-py2
+  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
+  PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH" 
py.test2
+}
+
+package_python-pytest-flake8() {
+  depends=('python-pytest' 'flake8')
+
+  cd pytest-flake8
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-pytest-flake8() {
+  depends=('python2-pytest' 'python2-flake8')
+
+  cd pytest-flake8-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


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

2016-10-18 Thread Felix Yan
Date: Tuesday, October 18, 2016 @ 14:53:34
  Author: felixonmars
Revision: 192516

upgpkg: python-pytest-flake8 0.8.1-1

Modified:
  python-pytest-flake8/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-18 14:15:15 UTC (rev 192515)
+++ PKGBUILD2016-10-18 14:53:34 UTC (rev 192516)
@@ -3,7 +3,7 @@
 
 pkgbase=python-pytest-flake8
 pkgname=('python-pytest-flake8' 'python2-pytest-flake8')
-pkgver=0.7
+pkgver=0.8.1
 pkgrel=1
 pkgdesc='pytest plugin to check FLAKE8 requirements'
 arch=('any')


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

2016-10-18 Thread Felix Yan
Date: Tuesday, October 18, 2016 @ 14:54:18
  Author: felixonmars
Revision: 192518

upgpkg: yapf 0.13.1-1

Modified:
  yapf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-18 14:53:51 UTC (rev 192517)
+++ PKGBUILD2016-10-18 14:54:18 UTC (rev 192518)
@@ -3,7 +3,7 @@
 
 pkgbase=yapf
 pkgname=("yapf" "python2-yapf")
-pkgver=0.13.0
+pkgver=0.13.1
 pkgrel=1
 pkgdesc="Python style guide checker"
 arch=('any')


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

2016-10-18 Thread Felix Yan
Date: Tuesday, October 18, 2016 @ 14:54:44
  Author: felixonmars
Revision: 192520

upgpkg: python-raven 5.28.0-1

Modified:
  python-raven/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-18 14:54:35 UTC (rev 192519)
+++ PKGBUILD2016-10-18 14:54:44 UTC (rev 192520)
@@ -4,7 +4,7 @@
 
 pkgbase=python-raven
 pkgname=(python-raven python2-raven)
-pkgver=5.27.1
+pkgver=5.28.0
 pkgrel=1
 pkgdesc="Python client for Sentry"
 arch=('any')


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

2016-10-18 Thread Felix Yan
Date: Tuesday, October 18, 2016 @ 14:54:35
  Author: felixonmars
Revision: 192519

archrelease: copy trunk to community-any

Added:
  yapf/repos/community-any/PKGBUILD
(from rev 192518, yapf/trunk/PKGBUILD)
Deleted:
  yapf/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-10-18 14:54:18 UTC (rev 192518)
+++ PKGBUILD2016-10-18 14:54:35 UTC (rev 192519)
@@ -1,52 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgbase=yapf
-pkgname=("yapf" "python2-yapf")
-pkgver=0.13.0
-pkgrel=1
-pkgdesc="Python style guide checker"
-arch=('any')
-url="http://github.com/google/yapf";
-license=('Apache')
-makedepends=('python-setuptools' 'python2-setuptools' 'git')
-checkdepends=('python-nose' 'python2-nose')
-source=("git+https://github.com/google/yapf.git#tag=v$pkgver";)
-sha256sums=('SKIP')
-
-prepare() {
-  cp -a yapf{,-py2}
-}
-
-build() {
-  cd "$srcdir"/yapf
-  python setup.py build
-
-  cd "$srcdir"/yapf-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/yapf
-  nosetests3
-
-  cd "$srcdir"/yapf-py2
-  nosetests2
-}
-
-package_yapf() {
-  depends=('python-setuptools')
-
-  cd yapf
-  python setup.py install -O1 --root="$pkgdir"
-}
-
-package_python2-yapf() {
-  depends=('python2-setuptools')
-
-  cd yapf-py2
-  python2 setup.py install -O1 --root="$pkgdir"
-  mv "$pkgdir"/usr/bin/yapf{,2}
-}
-
-# vim:set ts=2 sw=2 et:

Copied: yapf/repos/community-any/PKGBUILD (from rev 192518, yapf/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-10-18 14:54:35 UTC (rev 192519)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=yapf
+pkgname=("yapf" "python2-yapf")
+pkgver=0.13.1
+pkgrel=1
+pkgdesc="Python style guide checker"
+arch=('any')
+url="http://github.com/google/yapf";
+license=('Apache')
+makedepends=('python-setuptools' 'python2-setuptools' 'git')
+checkdepends=('python-nose' 'python2-nose')
+source=("git+https://github.com/google/yapf.git#tag=v$pkgver";)
+sha256sums=('SKIP')
+
+prepare() {
+  cp -a yapf{,-py2}
+}
+
+build() {
+  cd "$srcdir"/yapf
+  python setup.py build
+
+  cd "$srcdir"/yapf-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/yapf
+  nosetests3
+
+  cd "$srcdir"/yapf-py2
+  nosetests2
+}
+
+package_yapf() {
+  depends=('python-setuptools')
+
+  cd yapf
+  python setup.py install -O1 --root="$pkgdir"
+}
+
+package_python2-yapf() {
+  depends=('python2-setuptools')
+
+  cd yapf-py2
+  python2 setup.py install -O1 --root="$pkgdir"
+  mv "$pkgdir"/usr/bin/yapf{,2}
+}
+
+# vim:set ts=2 sw=2 et:


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

2016-10-18 Thread Felix Yan
Date: Tuesday, October 18, 2016 @ 14:55:00
  Author: felixonmars
Revision: 192521

archrelease: copy trunk to community-any

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

--+
 PKGBUILD |  144 ++---
 1 file changed, 72 insertions(+), 72 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-10-18 14:54:44 UTC (rev 192520)
+++ PKGBUILD2016-10-18 14:55:00 UTC (rev 192521)
@@ -1,72 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Benjamin A. Shelton 
-
-pkgbase=python-raven
-pkgname=(python-raven python2-raven)
-pkgver=5.27.1
-pkgrel=1
-pkgdesc="Python client for Sentry"
-arch=('any')
-url="http://pypi.python.org/pypi/raven";
-license=('BSD')
-makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2' 
'git')
-checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
-  'python-celery' 'python2-celery' 'python-django' 'python2-django'
-  'python-pycodestyle' 'python2-pycodestyle' 'python-mock' 
'python2-mock' 'python-nose'
-  'python2-nose' 'python2-gevent' 'python-pytz' 'python2-pytz' 
'python-exam'
-  'python2-exam' 'python-requests' 'python2-requests' 
'python-tornado'
-  'python2-tornado' 'python-paste' 'python2-paste' 'python-webob' 
'python2-webob'
-  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
-  'python-flask' 'python2-flask' 'python-blinker' 
'python2-blinker' 'python-logbook'
-  'python2-logbook' 'python-pytest-django' 'python2-pytest-django' 
'python2-webpy'
-  'python-flask-login' 'python2-flask-login' 
'python-pytest-timeout'
-  'python2-pytest-timeout')
-source=("git+https://github.com/getsentry/raven-python.git#tag=$pkgver";)
-md5sums=('SKIP')
-
-prepare() {
-  cp -a raven-python{,-py2}
-}
-
-build() {
-  cd "$srcdir"/raven-python
-  python setup.py build
-
-  cd "$srcdir"/raven-python-py2
-  python2 setup.py build
-}
-
-check() {
-  # Hack distribution check by installing it
-
-  cd "$srcdir"/raven-python
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.5/site-packages:$PYTHONPATH" \
-py.test tests
-
-  cd "$srcdir"/raven-python
-  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH" \
-py.test2 tests
-}
-
-package_python-raven() {
-  depends=('python')
-  optdepends=('python-setuptools: for "raven" script')
-
-  cd "$srcdir"/raven-python
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-raven() {
-  depends=('python2-contextlib2')
-  optdepends=('python2-setuptools: for "raven2" script')
-
-  cd "$srcdir"/raven-python-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  mv "$pkgdir"/usr/bin/raven{,2}
-
-  install -Dm664 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-raven/repos/community-any/PKGBUILD (from rev 192520, 
python-raven/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-10-18 14:55:00 UTC (rev 192521)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Benjamin A. Shelton 
+
+pkgbase=python-raven
+pkgname=(python-raven python2-raven)
+pkgver=5.28.0
+pkgrel=1
+pkgdesc="Python client for Sentry"
+arch=('any')
+url="http://pypi.python.org/pypi/raven";
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools' 'python2-contextlib2' 
'git')
+checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 
'python2-bottle'
+  'python-celery' 'python2-celery' 'python-django' 'python2-django'
+  'python-pycodestyle' 'python2-pycodestyle' 'python-mock' 
'python2-mock' 'python-nose'
+  'python2-nose' 'python2-gevent' 'python-pytz' 'python2-pytz' 
'python-exam'
+  'python2-exam' 'python-requests' 'python2-requests' 
'python-tornado'
+  'python2-tornado' 'python-paste' 'python2-paste' 'python-webob' 
'python2-webob'
+  'python-webtest' 'python2-webtest' 'python-anyjson' 
'python2-anyjson'
+  'python-flask' 'python2-flask' 'python-blinker' 
'python2-blinker' 'python-logbook'
+  'python2-logbook' 'python-pytest-django' 'python2-pytest-django' 
'python2-webpy'
+  'python-flask-login' 'python2-flask-login' 
'python-pytest-timeout'
+  'python2-pytest-timeout')
+source=("git+https://github.com/getsentry/raven-python.git#tag=$pkgver";)
+md5sums=('SKIP')
+
+prepare() {
+  cp -a raven-python{,-py2}
+}
+
+build() 

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

2016-10-18 Thread Felix Yan
Date: Tuesday, October 18, 2016 @ 14:52:43
  Author: felixonmars
Revision: 278958

upgpkg: python-pycparser 2.15-1

Modified:
  python-pycparser/trunk/PKGBUILD

--+
 PKGBUILD |   29 ++---
 1 file changed, 14 insertions(+), 15 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-10-18 14:36:55 UTC (rev 278957)
+++ PKGBUILD2016-10-18 14:52:43 UTC (rev 278958)
@@ -6,39 +6,38 @@
 
 pkgbase=python-pycparser
 pkgname=(python-pycparser python2-pycparser)
-pkgver=2.14
-pkgrel=2
+pkgver=2.15
+_commit=9e9855b3254a8e234ac8f793154d600905b90a55
+pkgrel=1
 pkgdesc='C parser and AST generator written in Python'
 url='https://github.com/eliben/pycparser'
 makedepends=('python-ply' 'python2-ply' 'python-setuptools' 
'python2-setuptools' 'git')
 arch=('any')
 license=('BSD')
-source=("https://github.com/eliben/pycparser/archive/release_v$pkgver.zip";)
-sha256sums=('8612b94df49ce0c69a56b7ba23530e69cfb91bf788cc7fde14e17a099feb4e25')
+source=("git+https://github.com/eliben/pycparser.git#commit=$_commit";)
+sha256sums=('SKIP')
 
 prepare() {
-  cp -a pycparser-release_v${pkgver}{,-py2}
+  cp -a pycparser{,-py2}
 }
 
 build() {
-  cd pycparser-release_v${pkgver}
+  cd "$srcdir"/pycparser
   python setup.py build
-
   cd pycparser
   python _build_tables.py
 
-  cd "$srcdir/pycparser-release_v${pkgver}-py2"
+  cd "$srcdir"/pycparser-py2
   python2 setup.py build
-
   cd pycparser
   python2 _build_tables.py
 }
 
 check() {
-  cd pycparser-release_v${pkgver}
+  cd "$srcdir"/pycparser
   python tests/all_tests.py
 
-  cd "$srcdir/pycparser-release_v${pkgver}-py2"
+  cd "$srcdir"/pycparser-py2
   python2 tests/all_tests.py
 }
 
@@ -45,17 +44,17 @@
 package_python-pycparser() {
   depends=('python-ply')
 
-  cd pycparser-release_v${pkgver}
+  cd pycparser
 
   python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
 }
 
 package_python2-pycparser() {
   depends=('python2-ply')
 
-  cd pycparser-release_v${pkgver}-py2
+  cd pycparser-py2
 
   python2 setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
 }


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

2016-10-18 Thread Felix Yan
Date: Tuesday, October 18, 2016 @ 15:02:29
  Author: felixonmars
Revision: 192522

upgpkg: alex 3.2.1-1

Modified:
  alex/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-18 14:55:00 UTC (rev 192521)
+++ PKGBUILD2016-10-18 15:02:29 UTC (rev 192522)
@@ -5,7 +5,7 @@
 # Contributor: Philip Nilsson 
 
 pkgname=alex
-pkgver=3.2.0
+pkgver=3.2.1
 pkgrel=1
 pkgdesc='Lexical analyser generator for Haskell'
 arch=('x86_64' 'i686')
@@ -14,7 +14,7 @@
 depends=('gmp' 'libffi')
 makedepends=('ghc=8.0.1' 'haskell-quickcheck' 'happy' 'libffi')
 
source=("http://hackage.haskell.org/packages/archive/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz";)
-sha256sums=('8034ef1e7f66145295a5b0e70de5b6caa409e36888fe4123d0e022aac97a4d92')
+sha256sums=('a4e7f7ec729f4fae5a5c778bc48421a90acf65c7278f6970cf123fb3b6230e6c')
 
 build() {
   cd "$pkgname-$pkgver"


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

2016-10-18 Thread Felix Yan
Date: Tuesday, October 18, 2016 @ 15:02:56
  Author: felixonmars
Revision: 192523

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

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

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

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

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

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

Copied: alex/repos/community-x86_64/PKGBUILD (from rev 192522, 
alex/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-10-18 15:02:56 UTC (rev 192523)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Contributor: Sergej Pupykin 
+# Contributor: Vesa Kaihlavirta 
+# Contributor: Philip Nilsson 
+
+pkgname=alex
+pkgver=3.2.1
+pkgrel=1
+pkgdesc='Lexical analyser generator for Haskell'
+arch=('x86_64' 'i686')

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

2016-10-18 Thread Jaroslav Lichtblau
Date: Tuesday, October 18, 2016 @ 15:37:32
  Author: jlichtblau
Revision: 192524

upgpkg: syncthing-gtk 1:0.9.2.3-1 - new upstream release

Modified:
  syncthing-gtk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-18 15:02:56 UTC (rev 192523)
+++ PKGBUILD2016-10-18 15:37:32 UTC (rev 192524)
@@ -4,7 +4,7 @@
 # Contributor: kozec 
 
 pkgname=syncthing-gtk
-pkgver=0.9.2.2
+pkgver=0.9.2.3
 pkgrel=1
 epoch=1
 pkgdesc='GTK3 based GUI and notification area icon for Syncthing'
@@ -17,7 +17,7 @@
 'python2-caja: file manager integration for Caja'
 'librsvg: to shown menu icons correctly if not using traditional 
window header')
 
source=($pkgname-$pkgver.tar.gz::https://github.com/syncthing/$pkgname/archive/v$pkgver.tar.gz)
-sha256sums=('e63bc8e8697d7214cb7a7700113e0b3f82c4c5f90fb068dbdc14a2c690bef8df')
+sha256sums=('649fc41aca0ab4cbbc62e7deba6ebba2ce62dd8d164e5eafe371284df159c07c')
 
 build() {
   cd $pkgname-$pkgver


[arch-commits] Commit in syncthing-gtk/repos/community-any (PKGBUILD PKGBUILD)

2016-10-18 Thread Jaroslav Lichtblau
Date: Tuesday, October 18, 2016 @ 15:38:00
  Author: jlichtblau
Revision: 192525

archrelease: copy trunk to community-any

Added:
  syncthing-gtk/repos/community-any/PKGBUILD
(from rev 192524, syncthing-gtk/trunk/PKGBUILD)
Deleted:
  syncthing-gtk/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-10-18 15:37:32 UTC (rev 192524)
+++ PKGBUILD2016-10-18 15:38:00 UTC (rev 192525)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Martin Wimpress 
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: kozec 
-
-pkgname=syncthing-gtk
-pkgver=0.9.2.2
-pkgrel=1
-epoch=1
-pkgdesc='GTK3 based GUI and notification area icon for Syncthing'
-arch=('any')
-url='https://github.com/syncthing/syncthing-gtk'
-license=('GPL2')
-depends=('gtk3' 'libnotify' 'python2-dateutil' 'python2-gobject' 
'python2-pyinotify' 'python2-cairo' 'syncthing>=0.13')
-makedepends=('python2-setuptools')
-optdepends=('python2-nautilus: file manager integration for Nautilus'
-'python2-caja: file manager integration for Caja'
-'librsvg: to shown menu icons correctly if not using traditional 
window header')
-source=($pkgname-$pkgver.tar.gz::https://github.com/syncthing/$pkgname/archive/v$pkgver.tar.gz)
-sha256sums=('e63bc8e8697d7214cb7a7700113e0b3f82c4c5f90fb068dbdc14a2c690bef8df')
-
-build() {
-  cd $pkgname-$pkgver
-  python2 setup.py build
-}
-
-package() {
-  cd $pkgname-$pkgver
-  python2 setup.py install --root="${pkgdir}" --optimize=1
-}

Copied: syncthing-gtk/repos/community-any/PKGBUILD (from rev 192524, 
syncthing-gtk/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-10-18 15:38:00 UTC (rev 192525)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Martin Wimpress 
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: kozec 
+
+pkgname=syncthing-gtk
+pkgver=0.9.2.3
+pkgrel=1
+epoch=1
+pkgdesc='GTK3 based GUI and notification area icon for Syncthing'
+arch=('any')
+url='https://github.com/syncthing/syncthing-gtk'
+license=('GPL2')
+depends=('gtk3' 'libnotify' 'python2-dateutil' 'python2-gobject' 
'python2-pyinotify' 'python2-cairo' 'syncthing>=0.13')
+makedepends=('python2-setuptools')
+optdepends=('python2-nautilus: file manager integration for Nautilus'
+'python2-caja: file manager integration for Caja'
+'librsvg: to shown menu icons correctly if not using traditional 
window header')
+source=($pkgname-$pkgver.tar.gz::https://github.com/syncthing/$pkgname/archive/v$pkgver.tar.gz)
+sha256sums=('649fc41aca0ab4cbbc62e7deba6ebba2ce62dd8d164e5eafe371284df159c07c')
+
+build() {
+  cd $pkgname-$pkgver
+  python2 setup.py build
+}
+
+package() {
+  cd $pkgname-$pkgver
+  python2 setup.py install --root="${pkgdir}" --optimize=1
+}


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

2016-10-18 Thread Antonio Rojas
Date: Tuesday, October 18, 2016 @ 15:38:52
  Author: arojas
Revision: 192526

Update to 5.8.2

Modified:
  discover/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-18 15:38:00 UTC (rev 192525)
+++ PKGBUILD2016-10-18 15:38:52 UTC (rev 192526)
@@ -2,7 +2,7 @@
 # Maintainer: Antonio Rojas  
 
 pkgname=discover
-pkgver=5.8.1
+pkgver=5.8.2
 pkgrel=1
 pkgdesc='A collection of package management tools for KDE'
 arch=(i686 x86_64)
@@ -13,7 +13,7 @@
 conflicts=(muon)
 replaces=(muon)
 
source=("http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
-md5sums=('fa24d9027a7bac1f1472f21369ffba88'
+md5sums=('143c4916451cbb7153a33ad16fb100f4'
  'SKIP')
 validpgpkeys=(2D1D5B0588357787DE9EE225EC94D18F7F05997E) # Jonathan Riddell 

 


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

2016-10-18 Thread Antonio Rojas
Date: Tuesday, October 18, 2016 @ 15:40:10
  Author: arojas
Revision: 192527

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-10-18 15:38:52 UTC (rev 192526)
+++ community-i686/PKGBUILD 2016-10-18 15:40:10 UTC (rev 192527)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas  
-
-pkgname=discover
-pkgver=5.8.1
-pkgrel=1
-pkgdesc='A collection of package management tools for KDE'
-arch=(i686 x86_64)
-url='https://projects.kde.org/projects/kde/workspace/discover'
-license=(LGPL)
-depends=(packagekit-qt5 knewstuff kdeclarative qt5-graphicaleffects 
appstream-qt archlinux-appstream-data hicolor-icon-theme kirigami)
-makedepends=(extra-cmake-modules python plasma-framework)
-conflicts=(muon)
-replaces=(muon)
-source=("http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
-md5sums=('fa24d9027a7bac1f1472f21369ffba88'
- 'SKIP')
-validpgpkeys=(2D1D5B0588357787DE9EE225EC94D18F7F05997E) # Jonathan Riddell 

-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_LIBDIR=lib \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: discover/repos/community-i686/PKGBUILD (from rev 192526, 
discover/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-10-18 15:40:10 UTC (rev 192527)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Antonio Rojas  
+
+pkgname=discover
+pkgver=5.8.2
+pkgrel=1
+pkgdesc='A collection of package management tools for KDE'
+arch=(i686 x86_64)
+url='https://projects.kde.org/projects/kde/workspace/discover'
+license=(LGPL)
+depends=(packagekit-qt5 knewstuff kdeclarative qt5-graphicaleffects 
appstream-qt archlinux-appstream-data hicolor-icon-theme kirigami)
+makedepends=(extra-cmake-modules python plasma-framework)
+conflicts=(muon)
+replaces=(muon)
+source=("http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
+md5sums=('143c4916451cbb7153a33ad16fb100f4'
+ 'SKIP')
+validpgpkeys=(2D1D5B0588357787DE9EE225EC94D18F7F05997E) # Jonathan Riddell 

+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-10-18 15:38:52 UTC (rev 192526)
+++ community-x86_64/PKGBUILD   2016-10-18 15:40:10 UTC (rev 192527)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas  
-
-pkgname=discover
-pkgver=5.8.1
-pkgrel=1
-pkgdesc='A collection of package management tools for KDE'
-arch=(i686 x86_64)
-url='https://projects.kde.org/projects/kde/workspace/discover'
-license=(LGPL)
-depends=(packagekit-qt5 knewstuff kdeclarative qt5-graphicaleffects 
appstream-qt archlinux-appstream-data hicolor-icon-theme kirigami)
-makedepends=(extra-cmake-modules python plasma-framework)
-conflicts=(muon)
-replaces=(muon)
-source=("http://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
-md5sums=('fa24d9027a7bac1f1472f21369ffba88'
- 'SKIP')
-validpgpkeys=(2D1D5B0588357787DE9EE225EC94D18F7F05997E) # Jonathan Riddell 

-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_LIBDIR=lib \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: discover/repos/community-x86_64/PKGBUILD (from rev 192526, 
discover/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-10-18 15:40:10 UTC (rev 192527)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Antonio Rojas  
+
+pkgname=discover
+pkgver=5.8.2
+pkgrel=1
+pkgdesc='A collection of package management tools for KDE'
+arch=(i686 x86_64)
+url='https

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

2016-10-18 Thread Jaroslav Lichtblau
Date: Tuesday, October 18, 2016 @ 15:45:47
  Author: jlichtblau
Revision: 192529

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

Added:
  syncthing/repos/community-i686/PKGBUILD
(from rev 192528, syncthing/trunk/PKGBUILD)
  syncthing/repos/community-i686/syncthing-relaysrv.install
(from rev 192528, syncthing/trunk/syncthing-relaysrv.install)
  syncthing/repos/community-i686/syncthing-relaysrv.service
(from rev 192528, syncthing/trunk/syncthing-relaysrv.service)
  syncthing/repos/community-i686/syncthing-relaysrv.sysusers
(from rev 192528, syncthing/trunk/syncthing-relaysrv.sysusers)
  syncthing/repos/community-i686/syncthing-relaysrv.tmpfiles
(from rev 192528, syncthing/trunk/syncthing-relaysrv.tmpfiles)
  syncthing/repos/community-i686/syncthing.install
(from rev 192528, syncthing/trunk/syncthing.install)
  syncthing/repos/community-x86_64/PKGBUILD
(from rev 192528, syncthing/trunk/PKGBUILD)
  syncthing/repos/community-x86_64/syncthing-relaysrv.install
(from rev 192528, syncthing/trunk/syncthing-relaysrv.install)
  syncthing/repos/community-x86_64/syncthing-relaysrv.service
(from rev 192528, syncthing/trunk/syncthing-relaysrv.service)
  syncthing/repos/community-x86_64/syncthing-relaysrv.sysusers
(from rev 192528, syncthing/trunk/syncthing-relaysrv.sysusers)
  syncthing/repos/community-x86_64/syncthing-relaysrv.tmpfiles
(from rev 192528, syncthing/trunk/syncthing-relaysrv.tmpfiles)
  syncthing/repos/community-x86_64/syncthing.install
(from rev 192528, syncthing/trunk/syncthing.install)
Deleted:
  syncthing/repos/community-i686/PKGBUILD
  syncthing/repos/community-i686/syncthing-relaysrv.install
  syncthing/repos/community-i686/syncthing-relaysrv.service
  syncthing/repos/community-i686/syncthing-relaysrv.sysusers
  syncthing/repos/community-i686/syncthing-relaysrv.tmpfiles
  syncthing/repos/community-i686/syncthing.install
  syncthing/repos/community-x86_64/PKGBUILD
  syncthing/repos/community-x86_64/syncthing-relaysrv.install
  syncthing/repos/community-x86_64/syncthing-relaysrv.service
  syncthing/repos/community-x86_64/syncthing-relaysrv.sysusers
  syncthing/repos/community-x86_64/syncthing-relaysrv.tmpfiles
  syncthing/repos/community-x86_64/syncthing.install

--+
 /PKGBUILD|  182 +
 /syncthing-relaysrv.install  |8 +
 /syncthing-relaysrv.service  |   34 
 /syncthing-relaysrv.sysusers |4 
 /syncthing-relaysrv.tmpfiles |2 
 /syncthing.install   |   24 +++
 community-i686/PKGBUILD  |   91 
 community-i686/syncthing-relaysrv.install|4 
 community-i686/syncthing-relaysrv.service|   17 --
 community-i686/syncthing-relaysrv.sysusers   |2 
 community-i686/syncthing-relaysrv.tmpfiles   |1 
 community-i686/syncthing.install |   12 -
 community-x86_64/PKGBUILD|   91 
 community-x86_64/syncthing-relaysrv.install  |4 
 community-x86_64/syncthing-relaysrv.service  |   17 --
 community-x86_64/syncthing-relaysrv.sysusers |2 
 community-x86_64/syncthing-relaysrv.tmpfiles |1 
 community-x86_64/syncthing.install   |   12 -
 18 files changed, 254 insertions(+), 254 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-10-18 15:45:22 UTC (rev 192528)
+++ community-i686/PKGBUILD 2016-10-18 15:45:47 UTC (rev 192529)
@@ -1,91 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: Martin Wimpress 
-# Contributor: Sauyon Lee 
-# Contributor: Kevin MacMartin 
-# Contributor: korjjj 
-
-pkgname=('syncthing' 'syncthing-relaysrv')
-pkgver=0.14.8
-pkgrel=1
-arch=('i686' 'x86_64')
-url="http://syncthing.net/";
-license=('MPL')
-depends=('glibc')
-makedepends=('git' 'go' 'inetutils')
-options=('!strip')
-source=(https://github.com/syncthing/syncthing/releases/download/v$pkgver/syncthing-source-v${pkgver}.tar.gz{,.asc}
-syncthing-relaysrv.sysusers
-syncthing-relaysrv.tmpfiles
-syncthing-relaysrv.service)
-validpgpkeys=('37C84554E7E0A261E4F76E1ED26E6ED000654A3E') # Syncthing Release 
Management
-sha256sums=('7f1e24895316f082b3c5ee084050ceb62df03b0414627e237625bb288d9a1c2c'
-'SKIP'
-'6ab96a5949e223d315d49663734ad27b70c72469c691a61ac198cb7794cb5eaa'
-'f88985f2d374af57f17ef6362c37a305467858195b74d1c1def71d97273f'
-'7c2fbc9608d81f8080f8a9102b867a52a050b61f426a0c182ccc1cb5815e4981')
-
-prepare() {
-  install -d "src/github.com/syncthing"
-  mv "${pkgbase}" "src/github.com/syncthing/${pkgbase}"
-}
-
-build() {
-  export GOPATH="${srcdir}" GOROOT_FINAL="/usr/bin"
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  go run build.go -no-upgrade -version v${pkgver} build
-

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

2016-10-18 Thread Jaroslav Lichtblau
Date: Tuesday, October 18, 2016 @ 15:45:22
  Author: jlichtblau
Revision: 192528

upgpkg: syncthing 0.14.9-1 - new upstream release

Modified:
  syncthing/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-18 15:40:10 UTC (rev 192527)
+++ PKGBUILD2016-10-18 15:45:22 UTC (rev 192528)
@@ -6,7 +6,7 @@
 # Contributor: korjjj 
 
 pkgname=('syncthing' 'syncthing-relaysrv')
-pkgver=0.14.8
+pkgver=0.14.9
 pkgrel=1
 arch=('i686' 'x86_64')
 url="http://syncthing.net/";
@@ -19,7 +19,7 @@
 syncthing-relaysrv.tmpfiles
 syncthing-relaysrv.service)
 validpgpkeys=('37C84554E7E0A261E4F76E1ED26E6ED000654A3E') # Syncthing Release 
Management
-sha256sums=('7f1e24895316f082b3c5ee084050ceb62df03b0414627e237625bb288d9a1c2c'
+sha256sums=('1c91fac216cd64a2fa2fa3960cb1b4da6b296da7a330cde9168a7e441061be16'
 'SKIP'
 '6ab96a5949e223d315d49663734ad27b70c72469c691a61ac198cb7794cb5eaa'
 'f88985f2d374af57f17ef6362c37a305467858195b74d1c1def71d97273f'


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

2016-10-18 Thread Jaroslav Lichtblau
Date: Tuesday, October 18, 2016 @ 15:59:23
  Author: jlichtblau
Revision: 192530

upgpkg: syncthing-inotify 0.8.4-1 - new upstream release

Modified:
  syncthing-inotify/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-18 15:45:47 UTC (rev 192529)
+++ PKGBUILD2016-10-18 15:59:23 UTC (rev 192530)
@@ -1,14 +1,15 @@
 # $Id: PKGBUILD 175562 2016-05-17 18:55:05Z jlichtblau $
-# Maintainer: Timothy Redaelli 
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Timothy Redaelli 
 # Contributor: Stefan Tatschner 
 
 pkgname=syncthing-inotify
-pkgver=0.8.3
+pkgver=0.8.4
 pkgrel=1
 pkgdesc="Inotify file watcher for Syncthing"
+arch=('i686' 'x86_64')
 url="https://github.com/syncthing/syncthing-inotify";
 license=('MPL')
-arch=('i686' 'x86_64')
 depends=('syncthing>=0.13')
 makedepends=('git' 'go' 'godep')
 
source=("$pkgname-$pkgver::git+https://github.com/syncthing/syncthing-inotify.git#tag=v${pkgver}";)


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

2016-10-18 Thread Jaroslav Lichtblau
Date: Tuesday, October 18, 2016 @ 15:59:40
  Author: jlichtblau
Revision: 192531

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

Added:
  syncthing-inotify/repos/community-i686/PKGBUILD
(from rev 192530, syncthing-inotify/trunk/PKGBUILD)
  syncthing-inotify/repos/community-x86_64/PKGBUILD
(from rev 192530, syncthing-inotify/trunk/PKGBUILD)
Deleted:
  syncthing-inotify/repos/community-i686/PKGBUILD
  syncthing-inotify/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   88 
 community-i686/PKGBUILD   |   43 -
 community-x86_64/PKGBUILD |   43 -
 3 files changed, 88 insertions(+), 86 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-10-18 15:59:23 UTC (rev 192530)
+++ community-i686/PKGBUILD 2016-10-18 15:59:40 UTC (rev 192531)
@@ -1,43 +0,0 @@
-# $Id: PKGBUILD 175562 2016-05-17 18:55:05Z jlichtblau $
-# Maintainer: Timothy Redaelli 
-# Contributor: Stefan Tatschner 
-
-pkgname=syncthing-inotify
-pkgver=0.8.3
-pkgrel=1
-pkgdesc="Inotify file watcher for Syncthing"
-url="https://github.com/syncthing/syncthing-inotify";
-license=('MPL')
-arch=('i686' 'x86_64')
-depends=('syncthing>=0.13')
-makedepends=('git' 'go' 'godep')
-source=("$pkgname-$pkgver::git+https://github.com/syncthing/syncthing-inotify.git#tag=v${pkgver}";)
-sha256sums=('SKIP')
-
-prepare() {
-cd "${srcdir}"
-mkdir -p "src/github.com/syncthing"
-mv "${pkgname}-${pkgver}" "src/github.com/syncthing/${pkgname}"
-}
-
-build() {
-export GOPATH="${srcdir}"
-cd "${srcdir}/src/github.com/syncthing/${pkgname}"
-go get
-go build
-}
-
-check() {
-export GOPATH="${srcdir}"
-cd "${srcdir}/src/github.com/syncthing/${pkgname}"
-#go test
-}
-
-package() {
-cd "${srcdir}/src/github.com/syncthing/${pkgname}"
-install -Dm755 ${pkgname} "${pkgdir}/usr/bin/${pkgname}"
-install -Dm644 "etc/linux-systemd/user/syncthing-inotify.service" 
"${pkgdir}/usr/lib/systemd/user/syncthing-inotify.service"
-install -Dm644 "etc/linux-systemd/system/syncthing-inotify@.service" 
"${pkgdir}/usr/lib/systemd/system/syncthing-inotify@.service"
-install -Dm644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md"
-install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: syncthing-inotify/repos/community-i686/PKGBUILD (from rev 192530, 
syncthing-inotify/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-10-18 15:59:40 UTC (rev 192531)
@@ -0,0 +1,44 @@
+# $Id: PKGBUILD 175562 2016-05-17 18:55:05Z jlichtblau $
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Timothy Redaelli 
+# Contributor: Stefan Tatschner 
+
+pkgname=syncthing-inotify
+pkgver=0.8.4
+pkgrel=1
+pkgdesc="Inotify file watcher for Syncthing"
+arch=('i686' 'x86_64')
+url="https://github.com/syncthing/syncthing-inotify";
+license=('MPL')
+depends=('syncthing>=0.13')
+makedepends=('git' 'go' 'godep')
+source=("$pkgname-$pkgver::git+https://github.com/syncthing/syncthing-inotify.git#tag=v${pkgver}";)
+sha256sums=('SKIP')
+
+prepare() {
+cd "${srcdir}"
+mkdir -p "src/github.com/syncthing"
+mv "${pkgname}-${pkgver}" "src/github.com/syncthing/${pkgname}"
+}
+
+build() {
+export GOPATH="${srcdir}"
+cd "${srcdir}/src/github.com/syncthing/${pkgname}"
+go get
+go build
+}
+
+check() {
+export GOPATH="${srcdir}"
+cd "${srcdir}/src/github.com/syncthing/${pkgname}"
+#go test
+}
+
+package() {
+cd "${srcdir}/src/github.com/syncthing/${pkgname}"
+install -Dm755 ${pkgname} "${pkgdir}/usr/bin/${pkgname}"
+install -Dm644 "etc/linux-systemd/user/syncthing-inotify.service" 
"${pkgdir}/usr/lib/systemd/user/syncthing-inotify.service"
+install -Dm644 "etc/linux-systemd/system/syncthing-inotify@.service" 
"${pkgdir}/usr/lib/systemd/system/syncthing-inotify@.service"
+install -Dm644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md"
+install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-10-18 15:59:23 UTC (rev 192530)
+++ community-x86_64/PKGBUILD   2016-10-18 15:59:40 UTC (rev 192531)
@@ -1,43 +0,0 @@
-# $Id: PKGBUILD 175562 2016-05-17 18:55:05Z jlichtblau $
-# Maintainer: Timothy Redaelli 
-# Contributor: Stefan Tatschner 
-
-pkgname=syncthing-inotify
-pkgver=0.8.3
-pkgrel=1
-pkgdesc="Inotify file watcher for Syncthing"
-url="https://github.com/syncthing/syncthing-inotify";
-license=('MPL')
-arch=('i686' 'x86_64')
-depends=('syncthing>=0.13')
-makedepends=('git' 'go' 'godep')
-source=("$pkgname-$pkgver::git+https://github.com/syncthing/syncthi

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

2016-10-18 Thread Felix Yan
Date: Tuesday, October 18, 2016 @ 16:05:17
  Author: felixonmars
Revision: 192534

upgpkg: eslint 3.8.1-1

Modified:
  eslint/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-18 16:05:08 UTC (rev 192533)
+++ PKGBUILD2016-10-18 16:05:17 UTC (rev 192534)
@@ -2,7 +2,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=eslint
-pkgver=3.8.0
+pkgver=3.8.1
 pkgrel=1
 pkgdesc='An AST-based pattern checker for JavaScript'
 arch=('any')
@@ -12,7 +12,7 @@
 makedepends=('npm')
 source=(http://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
 noextract=($pkgname-$pkgver.tgz)
-md5sums=('5907f1adf980d10d0ae0d81b27722568')
+md5sums=('615d8f5b8aaf58325ae916dab9543974')
 
 package() {
   npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz


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

2016-10-18 Thread Felix Yan
Date: Tuesday, October 18, 2016 @ 16:05:08
  Author: felixonmars
Revision: 192533

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-10-18 16:04:35 UTC (rev 192532)
+++ community-i686/PKGBUILD 2016-10-18 16:05:08 UTC (rev 192533)
@@ -1,62 +0,0 @@
-# $Id$ 
-# Maintainer: Angel Velasquez 
-# Maintainer: Felix Yan 
-# Contributor: Sébastien Luttringer 
-
-pkgbase=python-sqlalchemy
-pkgname=('python-sqlalchemy' 'python2-sqlalchemy')
-pkgver=1.1.1
-pkgrel=1
-arch=('i686' 'x86_64') # python2 package contain .so
-url="http://www.sqlalchemy.org/";
-license=('MIT')
-makedepends=('python-setuptools' 'python2-setuptools')
-checkdepends=('python-pytest-runner' 'python2-pytest-runner' 
'python-pytest-xdist' 'python2-pytest-xdist' 'python-mock' 'python2-mock')
-source=("https://pypi.io/packages/source/S/SQLAlchemy/SQLAlchemy-$pkgver.tar.gz"{,.asc})
-validpgpkeys=('83AF7ACE251C13E6BB7DEFBD330239C1C4DAFEE1')
-md5sums=('21d37532c7eff674d303c94dee45c07c'
- 'SKIP')
-
-prepare() {
-  cp -a SQLAlchemy-$pkgver SQLAlchemy2-$pkgver
-}
-
-build() {
-  cd "$srcdir"/SQLAlchemy-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/SQLAlchemy2-$pkgver
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/SQLAlchemy-$pkgver
-  python setup.py ptr
- 
-  cd "$srcdir"/SQLAlchemy2-$pkgver  
-  python2 setup.py ptr
-}
-
-package_python-sqlalchemy() {
-  pkgdesc='Python SQL toolkit and Object Relational Mapper'
-  depends=('python')
-  optdepends=('python-psycopg2: connect to PostgreSQL database')
-
-  cd SQLAlchemy-$pkgver
-  python setup.py install --root="${pkgdir}"
-  install -D -m644 LICENSE \
- "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-package_python2-sqlalchemy() {
-  pkgdesc='Python 2 SQL toolkit and Object Relational Mapper'
-  depends=('python2')
-  optdepends=('python2-psycopg2: connect to PostgreSQL database')
-
-  cd SQLAlchemy2-$pkgver
-  python2 setup.py install --root="$pkgdir"
-  install -D -m644 LICENSE \
- "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# vim:set ts=2 sw=2 ft=sh et:

Copied: python-sqlalchemy/repos/community-i686/PKGBUILD (from rev 192532, 
python-sqlalchemy/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-10-18 16:05:08 UTC (rev 192533)
@@ -0,0 +1,62 @@
+# $Id$ 
+# Maintainer: Angel Velasquez 
+# Maintainer: Felix Yan 
+# Contributor: Sébastien Luttringer 
+
+pkgbase=python-sqlalchemy
+pkgname=('python-sqlalchemy' 'python2-sqlalchemy')
+pkgver=1.1.2
+pkgrel=1
+arch=('i686' 'x86_64') # python2 package contain .so
+url="http://www.sqlalchemy.org/";
+license=('MIT')
+makedepends=('python-setuptools' 'python2-setuptools')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 
'python-pytest-xdist' 'python2-pytest-xdist' 'python-mock' 'python2-mock')
+source=("https://pypi.io/packages/source/S/SQLAlchemy/SQLAlchemy-$pkgver.tar.gz"{,.asc})
+validpgpkeys=('83AF7ACE251C13E6BB7DEFBD330239C1C4DAFEE1')
+md5sums=('3b7f4029a9825ceaf39eeff2a6fcf3b9'
+ 'SKIP')
+
+prepare() {
+  cp -a SQLAlchemy-$pkgver SQLAlchemy2-$pkgver
+}
+
+build() {
+  cd "$srcdir"/SQLAlchemy-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/SQLAlchemy2-$pkgver
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/SQLAlchemy-$pkgver
+  python setup.py ptr
+ 
+  cd "$srcdir"/SQLAlchemy2-$pkgver  
+  python2 setup.py ptr
+}
+
+package_python-sqlalchemy() {
+  pkgdesc='Python SQL toolkit and Object Relational Mapper'
+  depends=('python')
+  optdepends=('python-psycopg2: connect to PostgreSQL database')
+
+  cd SQLAlchemy-$pkgver
+  python setup.py install --root="${pkgdir}"
+  install -D -m644 LICENSE \
+ "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_python2-sqlalchemy() {
+  pkgdesc='Python 2 SQL toolkit and Object Relational Mapper'
+  depends=('python2')
+  optdepends=('python2-psycopg2: connect to PostgreSQL database')
+
+  cd SQLAlchemy2-$pkgver
+  python2 setup.py install --root="$pkgdir"
+  install -D -m644 LICENSE \
+ "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 ft=sh et:

Deleted: community-x86_64/PKGBUILD
===

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

2016-10-18 Thread Felix Yan
Date: Tuesday, October 18, 2016 @ 16:04:35
  Author: felixonmars
Revision: 192532

upgpkg: python-sqlalchemy 1.1.2-1

Modified:
  python-sqlalchemy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-18 15:59:40 UTC (rev 192531)
+++ PKGBUILD2016-10-18 16:04:35 UTC (rev 192532)
@@ -5,7 +5,7 @@
 
 pkgbase=python-sqlalchemy
 pkgname=('python-sqlalchemy' 'python2-sqlalchemy')
-pkgver=1.1.1
+pkgver=1.1.2
 pkgrel=1
 arch=('i686' 'x86_64') # python2 package contain .so
 url="http://www.sqlalchemy.org/";
@@ -14,7 +14,7 @@
 checkdepends=('python-pytest-runner' 'python2-pytest-runner' 
'python-pytest-xdist' 'python2-pytest-xdist' 'python-mock' 'python2-mock')
 
source=("https://pypi.io/packages/source/S/SQLAlchemy/SQLAlchemy-$pkgver.tar.gz"{,.asc})
 validpgpkeys=('83AF7ACE251C13E6BB7DEFBD330239C1C4DAFEE1')
-md5sums=('21d37532c7eff674d303c94dee45c07c'
+md5sums=('3b7f4029a9825ceaf39eeff2a6fcf3b9'
  'SKIP')
 
 prepare() {


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

2016-10-18 Thread Felix Yan
Date: Tuesday, October 18, 2016 @ 16:05:36
  Author: felixonmars
Revision: 192535

archrelease: copy trunk to community-any

Added:
  eslint/repos/community-any/PKGBUILD
(from rev 192534, eslint/trunk/PKGBUILD)
Deleted:
  eslint/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-10-18 16:05:17 UTC (rev 192534)
+++ PKGBUILD2016-10-18 16:05:36 UTC (rev 192535)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgname=eslint
-pkgver=3.8.0
-pkgrel=1
-pkgdesc='An AST-based pattern checker for JavaScript'
-arch=('any')
-url='http://eslint.org'
-license=('MIT')
-depends=('nodejs' 'acorn')
-makedepends=('npm')
-source=(http://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
-noextract=($pkgname-$pkgver.tgz)
-md5sums=('5907f1adf980d10d0ae0d81b27722568')
-
-package() {
-  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
-  rm -r "$pkgdir"/usr/etc
-
-  # Fix permissions
-  find "$pkgdir/usr" -type d -exec chmod 755 '{}' +
-
-  install -dm755 "${pkgdir}/usr/share/licenses/${pkgname}"
-  ln -s ../../../lib/node_modules/eslint/LICENSE 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-
-  # Experimental dedup
-  cd "$pkgdir"/usr/lib/node_modules/$pkgname/node_modules
-  for dep in acorn; do
-rm -r $dep;
-npm link $dep;
-  done
-}

Copied: eslint/repos/community-any/PKGBUILD (from rev 192534, 
eslint/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-10-18 16:05:36 UTC (rev 192535)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=eslint
+pkgver=3.8.1
+pkgrel=1
+pkgdesc='An AST-based pattern checker for JavaScript'
+arch=('any')
+url='http://eslint.org'
+license=('MIT')
+depends=('nodejs' 'acorn')
+makedepends=('npm')
+source=(http://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
+noextract=($pkgname-$pkgver.tgz)
+md5sums=('615d8f5b8aaf58325ae916dab9543974')
+
+package() {
+  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
+  rm -r "$pkgdir"/usr/etc
+
+  # Fix permissions
+  find "$pkgdir/usr" -type d -exec chmod 755 '{}' +
+
+  install -dm755 "${pkgdir}/usr/share/licenses/${pkgname}"
+  ln -s ../../../lib/node_modules/eslint/LICENSE 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+
+  # Experimental dedup
+  cd "$pkgdir"/usr/lib/node_modules/$pkgname/node_modules
+  for dep in acorn; do
+rm -r $dep;
+npm link $dep;
+  done
+}


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

2016-10-18 Thread Evangelos Foutras
Date: Tuesday, October 18, 2016 @ 17:33:46
  Author: foutrelis
Revision: 278960

upgpkg: geoip-database 20161004-1

New upstream release.

Modified:
  geoip-database/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-18 14:52:57 UTC (rev 278959)
+++ PKGBUILD2016-10-18 17:33:46 UTC (rev 278960)
@@ -2,7 +2,7 @@
 # Maintainer: Evangelos Foutras 
 
 pkgname=('geoip-database' 'geoip-database-extra')
-pkgver=20160907
+pkgver=20161004
 pkgrel=1
 arch=('any')
 url="https://dev.maxmind.com/geoip/legacy/geolite/";
@@ -21,12 +21,12 @@
GeoLiteCityv6-$pkgver.dat.gz
GeoIPASNum-$pkgver.dat.gz
GeoIPASNumv6-$pkgver.dat.gz)
-sha256sums=('e9bc5c54578d22d5b18ae32eae7c4a354692ad8c63c70854c3e8795091fa8f4a'
-'8df6b2a578734fad9718d66714a371abe94328a2012a147d167e3ac9bddd8d85'
-'5cecbdf9187d70cc87fe37f13e2afbf3a1afc1e176950e2441a054a6df95bcde'
-'7cb4898fffcfb61bb3739674c0208c2b8fa3478f5f63538e7e2f9ddca5d2c5e1'
-'efb51a07dfb488f01879d881f499ff34d3ef55e80715d73f76ae4b0eb3cde585'
-'030945e0c7d51ae84e7eb6228201a679e7db4d7533d855bc01739119c553759c'
+sha256sums=('ad6f26a2f653858a166d18c289c675601ef6b6f8c857be5504f03001de8dc9a9'
+'cb67b9bd21b08f50764df5e0afb9597661922ca16d46962e17cec36f75433aaf'
+'b8f976c6d01fce8adb882383ac5eb8820f16889b03387df6a3c10561fc0508c6'
+'92dc7f85245052765c18edee0958018e1239b1606ffd56d05b5a9ae42cccaa9d'
+'f9d258b85e8fa3117174701265210d79522b99e774a1823e01ef49d32c889a9f'
+'3ac5ca13f20f4d823e7d3a2a46af9e8f5fab690546379b4c8f4f8facaf218bf0'
 '83a4cb82ef8953c0107886b49bc39fcf77590a222d30e778d48f5d92f5b5e383')
 
 prepare() {


[arch-commits] Commit in geoip-database/repos/extra-any (4 files)

2016-10-18 Thread Evangelos Foutras
Date: Tuesday, October 18, 2016 @ 17:33:59
  Author: foutrelis
Revision: 278961

archrelease: copy trunk to extra-any

Added:
  geoip-database/repos/extra-any/PKGBUILD
(from rev 278960, geoip-database/trunk/PKGBUILD)
  geoip-database/repos/extra-any/check-last-modified.sh
(from rev 278960, geoip-database/trunk/check-last-modified.sh)
Deleted:
  geoip-database/repos/extra-any/PKGBUILD
  geoip-database/repos/extra-any/check-last-modified.sh

+
 PKGBUILD   |  194 +++
 check-last-modified.sh |   52 ++--
 2 files changed, 123 insertions(+), 123 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-10-18 17:33:46 UTC (rev 278960)
+++ PKGBUILD2016-10-18 17:33:59 UTC (rev 278961)
@@ -1,97 +0,0 @@
-# $Id$
-# Maintainer: Evangelos Foutras 
-
-pkgname=('geoip-database' 'geoip-database-extra')
-pkgver=20160907
-pkgrel=1
-arch=('any')
-url="https://dev.maxmind.com/geoip/legacy/geolite/";
-license=('custom:OPEN DATA LICENSE')
-checkdepends=('geoip')
-source=(GeoIP-$pkgver.dat.gz::https://geolite.maxmind.com/download/geoip/database/GeoLiteCountry/GeoIP.dat.gz
-
GeoIPv6-$pkgver.dat.gz::https://geolite.maxmind.com/download/geoip/database/GeoIPv6.dat.gz
-
GeoLiteCity-$pkgver.dat.gz::https://geolite.maxmind.com/download/geoip/database/GeoLiteCity.dat.gz
-
GeoLiteCityv6-$pkgver.dat.gz::https://geolite.maxmind.com/download/geoip/database/GeoLiteCityv6-beta/GeoLiteCityv6.dat.gz
-
GeoIPASNum-$pkgver.dat.gz::https://download.maxmind.com/download/geoip/database/asnum/GeoIPASNum.dat.gz
-
GeoIPASNumv6-$pkgver.dat.gz::https://download.maxmind.com/download/geoip/database/asnum/GeoIPASNumv6.dat.gz
-
GeoIP-LICENSE.txt::https://geolite.maxmind.com/download/geoip/database/LICENSE.txt)
-noextract=(GeoIP-$pkgver.dat.gz
-   GeoIPv6-$pkgver.dat.gz
-   GeoLiteCity-$pkgver.dat.gz
-   GeoLiteCityv6-$pkgver.dat.gz
-   GeoIPASNum-$pkgver.dat.gz
-   GeoIPASNumv6-$pkgver.dat.gz)
-sha256sums=('e9bc5c54578d22d5b18ae32eae7c4a354692ad8c63c70854c3e8795091fa8f4a'
-'8df6b2a578734fad9718d66714a371abe94328a2012a147d167e3ac9bddd8d85'
-'5cecbdf9187d70cc87fe37f13e2afbf3a1afc1e176950e2441a054a6df95bcde'
-'7cb4898fffcfb61bb3739674c0208c2b8fa3478f5f63538e7e2f9ddca5d2c5e1'
-'efb51a07dfb488f01879d881f499ff34d3ef55e80715d73f76ae4b0eb3cde585'
-'030945e0c7d51ae84e7eb6228201a679e7db4d7533d855bc01739119c553759c'
-'83a4cb82ef8953c0107886b49bc39fcf77590a222d30e778d48f5d92f5b5e383')
-
-prepare() {
-  cd "$srcdir"
-
-  for _database_name in GeoIP GeoLiteCity GeoIPASNum; do
-gunzip -c $_database_name-$pkgver.dat.gz 
>${_database_name/GeoLite/GeoIP}.dat
-gunzip -c ${_database_name}v6-$pkgver.dat.gz 
>${_database_name/GeoLite/GeoIP}v6.dat
-  done
-}
-
-check() {
-  cd "$srcdir"
-
-  if [[ $(geoiplookup -f GeoIP.dat 8.8.8.8) != *'US, United States' ]]; then
-error 'Unable to resolve IPv4 address to country.'
-return 1
-  fi
-
-  if [[ $(geoiplookup6 -f GeoIPv6.dat 2001:4860:4860::) != *'US, United 
States' ]]; then
-error 'Unable to resolve IPv6 address to country.'
-return 1
-  fi
-
-  if [[ $(geoiplookup -f GeoIPCity.dat 8.8.8.8) != *'US, CA, California'* ]]; 
then
-error 'Unable to resolve IPv4 address to city.'
-return 1
-  fi
-
-  if [[ $(geoiplookup6 -f GeoIPCityv6.dat 2001:4860:4860::) != *'US, N/A, 
N/A'* ]]; then
-error 'Unable to resolve IPv6 address to city.'
-return 1
-  fi
-
-  if [[ $(geoiplookup -f GeoIPASNum.dat 8.8.8.8) != *'AS15169 Google Inc.' ]]; 
then
-error 'Unable to resolve IPv4 address to ASN.'
-return 1
-  fi
-
-  if [[ $(geoiplookup6 -f GeoIPASNumv6.dat 2001:4860:4860::) != *'AS15169 
Google Inc.' ]]; then
-error 'Unable to resolve IPv6 address to ASN.'
-return 1
-  fi
-}
-
-package_geoip-database() {
-  pkgdesc="GeoLite country geolocation database compiled by MaxMind"
-
-  cd "$srcdir"
-
-  install -d "$pkgdir/usr/share/GeoIP"
-  install -m644 -t "$pkgdir/usr/share/GeoIP" GeoIP{,v6}.dat
-
-  install -Dm644 GeoIP-LICENSE.txt 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
-}
-
-package_geoip-database-extra() {
-  pkgdesc="GeoLite city/ASN geolocation databases compiled by MaxMind"
-
-  cd "$srcdir"
-
-  install -d "$pkgdir/usr/share/GeoIP"
-  install -m644 -t "$pkgdir/usr/share/GeoIP" GeoIPCity{,v6}.dat 
GeoIPASNum{,v6}.dat
-
-  install -Dm644 GeoIP-LICENSE.txt 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: geoip-database/repos/extra-any/PKGBUILD (from rev 278960, 
geoip-database/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-10-18 17:33:59 UTC (rev 278961)
@@ -0,0 +1,97 @@
+# $Id$
+# Maintainer: Evangelos Fout

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

2016-10-18 Thread Evangelos Foutras
Date: Tuesday, October 18, 2016 @ 17:36:19
  Author: foutrelis
Revision: 192536

upgpkg: shorewall 5.0.13-1

New upstream release.

Modified:
  shorewall/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-10-18 16:05:36 UTC (rev 192535)
+++ PKGBUILD2016-10-18 17:36:19 UTC (rev 192536)
@@ -5,7 +5,7 @@
 # Contributor: FUBAR 
 
 pkgname=('shorewall' 'shorewall6' 'shorewall-core')
-pkgver=5.0.12.1
+pkgver=5.0.13
 pkgrel=1
 _v1=$(expr $pkgver : '\([0-9]\+\(\.[0-9]\+\)\{1\}\)') # 5.x
 _v2=$(expr $pkgver : '\([0-9]\+\(\.[0-9]\+\)\{2\}\)') # 5.x.x
@@ -15,11 +15,11 @@
 
source=(http://www.shorewall.net/pub/$pkgname/$_v1/$pkgname-$_v2/$pkgname-$pkgver.tar.bz2{,.asc}
 
http://www.shorewall.net/pub/$pkgname/$_v1/$pkgname-$_v2/shorewall6-$pkgver.tar.bz2{,.asc}
 
http://www.shorewall.net/pub/$pkgname/$_v1/$pkgname-$_v2/shorewall-core-$pkgver.tar.bz2{,.asc})
-sha256sums=('acb6d61da1a522f127a32931e691785324a5803bf359f1dd8784d8ce743d'
+sha256sums=('dd43baae4199e84937727fb07cb7a40cffd285660863af9ca2fe58bbee90b95f'
 'SKIP'
-'b8da035e95b8cb642bb21a8b440f8c6fb6d3d8d7722d8d421e8d8f6d9414524d'
+'d1c85c2f448d8a988d76bb1478c684a8e5cf79522bfe78ea711d1113505c2833'
 'SKIP'
-'24d19836a4c6f8323d77848afb4d603c87e926c5412e8e82944b1a1b7c439bc9'
+'8d9bde3ebfbd3082efb3066e2205ab2e621022bd2c111cb9b1f68e545f1b40ef'
 'SKIP')
 validpgpkeys=('7BDE11F3F2B42E2E52828F8AE368BD09153D38B1')
 


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

2016-10-18 Thread Evangelos Foutras
Date: Tuesday, October 18, 2016 @ 17:36:26
  Author: foutrelis
Revision: 192537

archrelease: copy trunk to community-any

Added:
  shorewall/repos/community-any/PKGBUILD
(from rev 192536, shorewall/trunk/PKGBUILD)
Deleted:
  shorewall/repos/community-any/PKGBUILD

--+
 PKGBUILD |  158 ++---
 1 file changed, 79 insertions(+), 79 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-10-18 17:36:19 UTC (rev 192536)
+++ PKGBUILD2016-10-18 17:36:26 UTC (rev 192537)
@@ -1,79 +0,0 @@
-# $Id$
-# Maintainer: Evangelos Foutras 
-# Contributor: Malte Rabenseifner 
-# Contributor: Andrea Scarpino 
-# Contributor: FUBAR 
-
-pkgname=('shorewall' 'shorewall6' 'shorewall-core')
-pkgver=5.0.12.1
-pkgrel=1
-_v1=$(expr $pkgver : '\([0-9]\+\(\.[0-9]\+\)\{1\}\)') # 5.x
-_v2=$(expr $pkgver : '\([0-9]\+\(\.[0-9]\+\)\{2\}\)') # 5.x.x
-arch=('any')
-url="http://www.shorewall.net/";
-license=('GPL')
-source=(http://www.shorewall.net/pub/$pkgname/$_v1/$pkgname-$_v2/$pkgname-$pkgver.tar.bz2{,.asc}
-
http://www.shorewall.net/pub/$pkgname/$_v1/$pkgname-$_v2/shorewall6-$pkgver.tar.bz2{,.asc}
-
http://www.shorewall.net/pub/$pkgname/$_v1/$pkgname-$_v2/shorewall-core-$pkgver.tar.bz2{,.asc})
-sha256sums=('acb6d61da1a522f127a32931e691785324a5803bf359f1dd8784d8ce743d'
-'SKIP'
-'b8da035e95b8cb642bb21a8b440f8c6fb6d3d8d7722d8d421e8d8f6d9414524d'
-'SKIP'
-'24d19836a4c6f8323d77848afb4d603c87e926c5412e8e82944b1a1b7c439bc9'
-'SKIP')
-validpgpkeys=('7BDE11F3F2B42E2E52828F8AE368BD09153D38B1')
-
-build() {
-  for product in shorewall{,6,-core}; do
-pushd "$srcdir/$product-$pkgver"
-./configure HOST=archlinux
-popd
-  done
-}
-
-package_shorewall() {
-  pkgdesc="An iptables-based firewall for Linux systems"
-  depends=('shorewall-core' 'perl')
-  
backup=(etc/shorewall/{accounting,actions,blrules,clear,conntrack,ecn,findgw,hosts,init,initdone,interfaces,lib.private,maclist,mangle,masq,nat,netmap,params,policy,providers,proxyarp,refresh,refreshed,restored,routes,stoppedrules,rtrules,rules,scfilter,secmarks,shorewall.conf,start,started,stop,stopped,tcclasses,tcclear,tcdevices,tcfilters,tcinterfaces,tcpri,tunnels,zones})
-
-  cd "$srcdir/$pkgname-$pkgver"
-
-  do_install
-}
-
-package_shorewall6() {
-  pkgdesc="An iptables-based firewall for Linux systems (with IPv6 support)"
-  depends=('shorewall')
-  
backup=(etc/shorewall6/{accounting,actions,blrules,clear,conntrack,findgw,hosts,init,interfaces,maclist,mangle,masq,netmap,params,policy,providers,proxyndp,refresh,refreshed,restored,routes,stoppedrules,rtrules,rules,scfilter,secmarks,shorewall6.conf,start,started,stop,stopped,tcclasses,tcclear,tcdevices,tcfilters,tcinterfaces,tcpri,tunnels,zones})
-
-  cd "$srcdir/$pkgname-$pkgver"
-
-  do_install 6
-}
-
-package_shorewall-core() {
-  pkgdesc="Core Shorewall libraries"
-  depends=('iptables' 'iproute2')
-
-  cd "$srcdir/$pkgname-$pkgver"
-
-  DESTDIR="$pkgdir" ./install.sh
-}
-
-do_install() {
-  local _name_suffix=$1
-
-  sed -i -e 's|^MODULE_SUFFIX=ko$|&.gz|' \
- -e 's|/subsys||' \
-  "configfiles/shorewall$_name_suffix.conf"
-
-  DESTDIR="$pkgdir" ./install.sh
-
-  install -d "$pkgdir/usr/share/doc/shorewall$_name_suffix/"
-  cp -r Samples$_name_suffix "$pkgdir/usr/share/doc/shorewall$_name_suffix/"
-
-  chmod -R 644 "$pkgdir/etc/shorewall$_name_suffix/"
-  chmod 755 "$pkgdir/etc/shorewall$_name_suffix/"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: shorewall/repos/community-any/PKGBUILD (from rev 192536, 
shorewall/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-10-18 17:36:26 UTC (rev 192537)
@@ -0,0 +1,79 @@
+# $Id$
+# Maintainer: Evangelos Foutras 
+# Contributor: Malte Rabenseifner 
+# Contributor: Andrea Scarpino 
+# Contributor: FUBAR 
+
+pkgname=('shorewall' 'shorewall6' 'shorewall-core')
+pkgver=5.0.13
+pkgrel=1
+_v1=$(expr $pkgver : '\([0-9]\+\(\.[0-9]\+\)\{1\}\)') # 5.x
+_v2=$(expr $pkgver : '\([0-9]\+\(\.[0-9]\+\)\{2\}\)') # 5.x.x
+arch=('any')
+url="http://www.shorewall.net/";
+license=('GPL')
+source=(http://www.shorewall.net/pub/$pkgname/$_v1/$pkgname-$_v2/$pkgname-$pkgver.tar.bz2{,.asc}
+
http://www.shorewall.net/pub/$pkgname/$_v1/$pkgname-$_v2/shorewall6-$pkgver.tar.bz2{,.asc}
+
http://www.shorewall.net/pub/$pkgname/$_v1/$pkgname-$_v2/shorewall-core-$pkgver.tar.bz2{,.asc})
+sha256sums=('dd43baae4199e84937727fb07cb7a40cffd285660863af9ca2fe58bbee90b95f'
+'SKIP'
+'d1c85c2f448d8a988d76bb1478c684a8e5cf79522bfe78ea711d1113505c2833'
+'SKIP'
+'8d9bde3ebfbd3082efb3066e2205ab2e621022bd2c111cb9b1f68e545f1b40ef'
+'SKIP')
+validpgpkeys=('7BDE11F3F2B42E2E52828F8AE368BD09153D38B1')
+
+build() {
+  for product in shorewall{,6,-core}; do

  1   2   >