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

2016-06-17 Thread Jaroslav Lichtblau
Date: Saturday, June 18, 2016 @ 05:29:28
  Author: jlichtblau
Revision: 180414

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

Added:
  kmymoney/repos/community-i686/4.8_build.patch
(from rev 180413, kmymoney/trunk/4.8_build.patch)
  kmymoney/repos/community-i686/PKGBUILD
(from rev 180413, kmymoney/trunk/PKGBUILD)
  kmymoney/repos/community-i686/kmymoney.changelog
(from rev 180413, kmymoney/trunk/kmymoney.changelog)
  kmymoney/repos/community-x86_64/4.8_build.patch
(from rev 180413, kmymoney/trunk/4.8_build.patch)
  kmymoney/repos/community-x86_64/PKGBUILD
(from rev 180413, kmymoney/trunk/PKGBUILD)
  kmymoney/repos/community-x86_64/kmymoney.changelog
(from rev 180413, kmymoney/trunk/kmymoney.changelog)
Deleted:
  kmymoney/repos/community-i686/4.8_build.patch
  kmymoney/repos/community-x86_64/4.8_build.patch

-+
 /4.8_build.patch|  420 ++
 community-i686/4.8_build.patch  |  210 -
 community-i686/PKGBUILD |   49 +++
 community-i686/kmymoney.changelog   |   57 
 community-x86_64/4.8_build.patch|  210 -
 community-x86_64/PKGBUILD   |   49 +++
 community-x86_64/kmymoney.changelog |   57 
 7 files changed, 632 insertions(+), 420 deletions(-)

Deleted: community-i686/4.8_build.patch
===
--- community-i686/4.8_build.patch  2016-06-18 05:18:16 UTC (rev 180413)
+++ community-i686/4.8_build.patch  2016-06-18 05:29:28 UTC (rev 180414)
@@ -1,210 +0,0 @@
-From: Cristian Oneț 
-Date: Thu, 16 Jun 2016 07:06:32 +
-Subject: Fix the tests of the 4.8 build.
-X-Git-Url: 
http://quickgit.kde.org/?p=kmymoney.git=commitdiff=29ab40829f86f6bd32229ededcc09bf2736e67bd

-Fix the tests of the 4.8 build.
-
-Do this by backporting the change that is already in frameworks in commit 
77085ff468336f26f6bcf5f2a1a08e16409172e6. Did not use cherry pick because the 
testfile was moved in frameworks.
-
-BUG: 364355

-
-
 a/kmymoney/mymoney/storage/mymoneymap.h
-+++ b/kmymoney/mymoney/storage/mymoneymap.h
-@@ -195,7 +195,7 @@
- that = *(dynamic_cast* >(const_cast* 
>(this)));
-   }
- 
--  inline size_t count(void) const {
-+  inline int count(void) const {
- return QMap::count();
-   }
- 
-
 a/kmymoney/mymoney/storage/mymoneyseqaccessmgrtest.cpp
-+++ b/kmymoney/mymoney/storage/mymoneyseqaccessmgrtest.cpp
-@@ -58,13 +58,13 @@
-   QCOMPARE(m->m_nextPayeeID, 0ul);
-   QCOMPARE(m->m_nextScheduleID, 0ul);
-   QCOMPARE(m->m_nextReportID, 0ul);
--  QCOMPARE(m->m_institutionList.count(), 0ul);
--  QCOMPARE(m->m_accountList.count(), 5ul);
--  QCOMPARE(m->m_transactionList.count(), 0ul);
--  QCOMPARE(m->m_transactionKeys.count(), 0ul);
--  QCOMPARE(m->m_payeeList.count(), 0ul);
--  QCOMPARE(m->m_tagList.count(), 0ul);
--  QCOMPARE(m->m_scheduleList.count(), 0ul);
-+  QCOMPARE(m->m_institutionList.count(), 0);
-+  QCOMPARE(m->m_accountList.count(), 5);
-+  QCOMPARE(m->m_transactionList.count(), 0);
-+  QCOMPARE(m->m_transactionKeys.count(), 0);
-+  QCOMPARE(m->m_payeeList.count(), 0);
-+  QCOMPARE(m->m_tagList.count(), 0);
-+  QCOMPARE(m->m_scheduleList.count(), 0);
- 
-   QCOMPARE(m->m_dirty, false);
-   QCOMPARE(m->m_creationDate, QDate::currentDate());
-@@ -187,7 +187,7 @@
- 
-   QCOMPARE(m->m_nextAccountID, 1ul);
-   QCOMPARE(m->dirty(), true);
--  QCOMPARE(m->m_accountList.count(), static_cast(6));
-+  QCOMPARE(m->m_accountList.count(), 6);
-   QCOMPARE(m->m_accountList["A01"].name(), QLatin1String("AccountName"));
- }
- 
-@@ -235,7 +235,7 @@
-   m->m_dirty = false;
- 
-   QCOMPARE(m->m_nextAccountID, 2ul);
--  QCOMPARE(m->m_accountList.count(), static_cast(7));
-+  QCOMPARE(m->m_accountList.count(), 7);
- 
-   // try to add account to undefined account
-   try {
-@@ -271,7 +271,7 @@
-   i.setName("Inst Name");
- 
-   m->addInstitution(i);
--  QCOMPARE(m->m_institutionList.count(), static_cast(1));
-+  QCOMPARE(m->m_institutionList.count(), 1);
-   QCOMPARE(m->m_nextInstitutionID, 1ul);
-   QCOMPARE(m->m_institutionList["I01"].name(), QLatin1String("Inst 
Name"));
- }
-@@ -950,11 +950,11 @@
-   // check that we can remove an unreferenced payee
-   MyMoneyPayee p = m->payee("P01");
-   try {
--QCOMPARE(m->m_payeeList.count(), static_cast(1));
-+QCOMPARE(m->m_payeeList.count(), 1);
- m->removePayee(p);
- m->commitTransaction();
- m->startTransaction();
--QCOMPARE(m->m_payeeList.count(), static_cast(0));
-+QCOMPARE(m->m_payeeList.count(), 0);
- QCOMPARE(m->dirty(), true);
-   } catch (const MyMoneyException &) {
- QFAIL("Unexpected exception");
-@@ -996,7 +996,7 @@
- QFAIL("Expected exception");
-   } catch (const MyMoneyException &) {
-   }
--  QCOMPARE(m->m_payeeList.count(), static_cast(1));
-+  QCOMPARE(m->m_payeeList.count(), 1);
- }
- 
- 

[arch-commits] Commit in kmymoney/trunk (kmymoney.changelog)

2016-06-17 Thread Jaroslav Lichtblau
Date: Saturday, June 18, 2016 @ 05:18:16
  Author: jlichtblau
Revision: 180413

upgpkg: kmymoney 4.8.0-2 - i686 build fixed upstream

Modified:
  kmymoney/trunk/kmymoney.changelog

+
 kmymoney.changelog |3 +++
 1 file changed, 3 insertions(+)

Modified: kmymoney.changelog
===
--- kmymoney.changelog  2016-06-18 04:55:36 UTC (rev 180412)
+++ kmymoney.changelog  2016-06-18 05:18:16 UTC (rev 180413)
@@ -1,3 +1,6 @@
+2016-06-18 Jaroslav Lichtblau 
+   * kmymoney 4.8.0-2 #364355 fixed
+
 2016-06-15 Jaroslav Lichtblau 
* kmymoney 4.8.0-1 x86_64
* i686 build fails https://bugs.kde.org/show_bug.cgi?id=364355


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

2016-06-17 Thread Jaroslav Lichtblau
Date: Saturday, June 18, 2016 @ 04:55:36
  Author: jlichtblau
Revision: 180412

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

Deleted:
  kmymoney/repos/community-i686/PKGBUILD
  kmymoney/repos/community-i686/kmymoney.changelog
  kmymoney/repos/community-x86_64/PKGBUILD
  kmymoney/repos/community-x86_64/kmymoney.changelog

-+
 community-i686/PKGBUILD |   49 --
 community-i686/kmymoney.changelog   |   54 --
 community-x86_64/PKGBUILD   |   49 --
 community-x86_64/kmymoney.changelog |   54 --
 4 files changed, 206 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-06-18 04:45:44 UTC (rev 180411)
+++ community-i686/PKGBUILD 2016-06-18 04:55:36 UTC (rev 180412)
@@ -1,49 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau 
-# Maintainer: Laurent Carlier 
-# Contributor: Vamp898 
-# Contributor: Jaroslaw Swierczynski 
-# Contributor: Eric Belanger 
-# Contributor: Todd Maynard 
-
-pkgname=kmymoney
-pkgver=4.8.0
-pkgrel=2
-pkgdesc="Personal finance manager for KDE which operates similarly to MS-Money 
or Quicken"
-arch=('i686' 'x86_64')
-url="http://kmymoney2.sourceforge.net/;
-license=('GPL')
-depends=('kdebase-runtime' 'shared-mime-info' 'aqbanking' 'libofx' 
'libalkimia' 'boost-libs' 'kdepimlibs4')
-makedepends=('cmake' 'automoc4' 'docbook-xml' 'docbook-xsl' 'boost' 'doxygen' 
'patch')
-replaces=('kmymoney2')
-changelog=$pkgname.changelog
-source=(http://download.kde.org/stable/$pkgname/$pkgver/src/$pkgname-$pkgver.tar.xz
-4.8_build.patch)
-sha256sums=('c2a635710aafa6925a49803c480e043e0bf4bc5b62430689aa5eb95619f48ac2'
-'21cd9d7fece1b38b87ade8e4fc7f01397cf44a7fe0bc44cd08dda01d05207215')
-
-prepare() {
-  cd "${srcdir}"/$pkgname-$pkgver
-
-#https://bugs.kde.org/show_bug.cgi?id=364355
-  patch -Np1 -i "${srcdir}"/4.8_build.patch
-}
-
-
-build() {
-  cd "${srcdir}"/$pkgname-$pkgver
-
-  mkdir build
-  cd build
-
-  cmake ../ \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=RELEASE -DCMAKE_SKIP_RPATH=YES
-  make
-}
-
-package() {
-  cd "${srcdir}"/$pkgname-$pkgver/build
-
-  make DESTDIR="${pkgdir}" install
-}

Deleted: community-i686/kmymoney.changelog
===
--- community-i686/kmymoney.changelog   2016-06-18 04:45:44 UTC (rev 180411)
+++ community-i686/kmymoney.changelog   2016-06-18 04:55:36 UTC (rev 180412)
@@ -1,54 +0,0 @@
-2016-06-15 Jaroslav Lichtblau 
-   * kmymoney 4.8.0-1 x86_64
-   * i686 build fails https://bugs.kde.org/show_bug.cgi?id=364355
-
-2016-04-29 Jaroslav Lichtblau 
-   * kmymoney 4.7.2-4 pacman hooks rebuild
-
-2016-01-09 Jaroslav Lichtblau 
-   * kmymoney 4.7.2-3 libical rebuild
-
-2015-04-28 Jaroslav Lichtblau 
-   * kmymoney 4.7.2-1
-
-2014-11-02 Jaroslav Lichtblau 
-   * kmymoney 4.7.1-1
-
-2014-10-02 Jaroslav Lichtblau 
-   * kmymoney 4.7.0-1
-
-2013-10-06 Jaroslav Lichtblau 
-   * kmymoney 4.6.4-1
-
-2012-09-09 Jaroslav Lichtblau 
-   * kmymoney 4.6.3-1
-
-2012-08-09  Eric Belanger  
-* kmymoney 4.6.2-2
-   * Rebuild against libofx 0.9.5
-
-2011-02-19 Jaroslav Lichtblau 
-   * kmymoney 4.5.3
-
-2010-12-27 Jaroslav Lichtblau 
-   * kmymoney 4.5.2
-
-2010-10-20 Jaroslav Lichtblau 
-   * kmymoney 4.5.1
-   * Added aqbanking dependency
-
-2010-08-22 Jaroslav Lichtblau 
-   * Update to major release 4.5
-   * Package renamed to 'kmymoney'
-
-2010-05-20 Jaroslav Lichtblau 
-   * Update to major release 1.0.5
-
-2010-04-09 Jaroslav Lichtblau 
-   * Update to major release 1.0.4
-
-2010-04-09 Jaroslav Lichtblau 
-   * FS#18974 broken OFX imported fixed in 1.0.3-2
-
-2010-03-27 Jaroslav Lichtblau 
-   * Update to major release 1.0.3

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-06-18 04:45:44 UTC (rev 180411)
+++ community-x86_64/PKGBUILD   2016-06-18 04:55:36 UTC (rev 180412)
@@ -1,49 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau 
-# Maintainer: Laurent Carlier 
-# Contributor: Vamp898 

[arch-commits] Commit in kmymoney/trunk (4.8_build.patch PKGBUILD)

2016-06-17 Thread Jaroslav Lichtblau
Date: Saturday, June 18, 2016 @ 04:45:25
  Author: jlichtblau
Revision: 180410

upgpkg: kmymoney 4.8.0-2 - i686 build fixed upstream

Added:
  kmymoney/trunk/4.8_build.patch
Modified:
  kmymoney/trunk/PKGBUILD

-+
 4.8_build.patch |  210 ++
 PKGBUILD|   18 +++-
 2 files changed, 224 insertions(+), 4 deletions(-)

Added: 4.8_build.patch
===
--- 4.8_build.patch (rev 0)
+++ 4.8_build.patch 2016-06-18 04:45:25 UTC (rev 180410)
@@ -0,0 +1,210 @@
+From: Cristian Oneț 
+Date: Thu, 16 Jun 2016 07:06:32 +
+Subject: Fix the tests of the 4.8 build.
+X-Git-Url: 
http://quickgit.kde.org/?p=kmymoney.git=commitdiff=29ab40829f86f6bd32229ededcc09bf2736e67bd
+---
+Fix the tests of the 4.8 build.
+
+Do this by backporting the change that is already in frameworks in commit 
77085ff468336f26f6bcf5f2a1a08e16409172e6. Did not use cherry pick because the 
testfile was moved in frameworks.
+
+BUG: 364355
+---
+
+
+--- a/kmymoney/mymoney/storage/mymoneymap.h
 b/kmymoney/mymoney/storage/mymoneymap.h
+@@ -195,7 +195,7 @@
+ that = *(dynamic_cast* >(const_cast* 
>(this)));
+   }
+ 
+-  inline size_t count(void) const {
++  inline int count(void) const {
+ return QMap::count();
+   }
+ 
+
+--- a/kmymoney/mymoney/storage/mymoneyseqaccessmgrtest.cpp
 b/kmymoney/mymoney/storage/mymoneyseqaccessmgrtest.cpp
+@@ -58,13 +58,13 @@
+   QCOMPARE(m->m_nextPayeeID, 0ul);
+   QCOMPARE(m->m_nextScheduleID, 0ul);
+   QCOMPARE(m->m_nextReportID, 0ul);
+-  QCOMPARE(m->m_institutionList.count(), 0ul);
+-  QCOMPARE(m->m_accountList.count(), 5ul);
+-  QCOMPARE(m->m_transactionList.count(), 0ul);
+-  QCOMPARE(m->m_transactionKeys.count(), 0ul);
+-  QCOMPARE(m->m_payeeList.count(), 0ul);
+-  QCOMPARE(m->m_tagList.count(), 0ul);
+-  QCOMPARE(m->m_scheduleList.count(), 0ul);
++  QCOMPARE(m->m_institutionList.count(), 0);
++  QCOMPARE(m->m_accountList.count(), 5);
++  QCOMPARE(m->m_transactionList.count(), 0);
++  QCOMPARE(m->m_transactionKeys.count(), 0);
++  QCOMPARE(m->m_payeeList.count(), 0);
++  QCOMPARE(m->m_tagList.count(), 0);
++  QCOMPARE(m->m_scheduleList.count(), 0);
+ 
+   QCOMPARE(m->m_dirty, false);
+   QCOMPARE(m->m_creationDate, QDate::currentDate());
+@@ -187,7 +187,7 @@
+ 
+   QCOMPARE(m->m_nextAccountID, 1ul);
+   QCOMPARE(m->dirty(), true);
+-  QCOMPARE(m->m_accountList.count(), static_cast(6));
++  QCOMPARE(m->m_accountList.count(), 6);
+   QCOMPARE(m->m_accountList["A01"].name(), QLatin1String("AccountName"));
+ }
+ 
+@@ -235,7 +235,7 @@
+   m->m_dirty = false;
+ 
+   QCOMPARE(m->m_nextAccountID, 2ul);
+-  QCOMPARE(m->m_accountList.count(), static_cast(7));
++  QCOMPARE(m->m_accountList.count(), 7);
+ 
+   // try to add account to undefined account
+   try {
+@@ -271,7 +271,7 @@
+   i.setName("Inst Name");
+ 
+   m->addInstitution(i);
+-  QCOMPARE(m->m_institutionList.count(), static_cast(1));
++  QCOMPARE(m->m_institutionList.count(), 1);
+   QCOMPARE(m->m_nextInstitutionID, 1ul);
+   QCOMPARE(m->m_institutionList["I01"].name(), QLatin1String("Inst 
Name"));
+ }
+@@ -950,11 +950,11 @@
+   // check that we can remove an unreferenced payee
+   MyMoneyPayee p = m->payee("P01");
+   try {
+-QCOMPARE(m->m_payeeList.count(), static_cast(1));
++QCOMPARE(m->m_payeeList.count(), 1);
+ m->removePayee(p);
+ m->commitTransaction();
+ m->startTransaction();
+-QCOMPARE(m->m_payeeList.count(), static_cast(0));
++QCOMPARE(m->m_payeeList.count(), 0);
+ QCOMPARE(m->dirty(), true);
+   } catch (const MyMoneyException &) {
+ QFAIL("Unexpected exception");
+@@ -996,7 +996,7 @@
+ QFAIL("Expected exception");
+   } catch (const MyMoneyException &) {
+   }
+-  QCOMPARE(m->m_payeeList.count(), static_cast(1));
++  QCOMPARE(m->m_payeeList.count(), 1);
+ }
+ 
+ void MyMoneySeqAccessMgrTest::testAddTag()
+@@ -1046,11 +1046,11 @@
+   // check that we can remove an unreferenced tag
+   MyMoneyTag ta = m->tag("G01");
+   try {
+-QCOMPARE(m->m_tagList.count(), static_cast(1));
++QCOMPARE(m->m_tagList.count(), 1);
+ m->removeTag(ta);
+ m->commitTransaction();
+ m->startTransaction();
+-QCOMPARE(m->m_tagList.count(), static_cast(0));
++QCOMPARE(m->m_tagList.count(), 0);
+ QCOMPARE(m->dirty(), true);
+   } catch (const MyMoneyException &) {
+ QFAIL("Unexpected exception");
+@@ -1094,7 +1094,7 @@
+ QFAIL("Expected exception");
+   } catch (const MyMoneyException &) {
+   }
+-  QCOMPARE(m->m_tagList.count(), static_cast(1));
++  QCOMPARE(m->m_tagList.count(), 1);
+ }
+ 
+ void MyMoneySeqAccessMgrTest::testRemoveAccountFromTree()
+@@ -1267,7 +1267,7 @@
+ 
+ 
+   try {
+-QCOMPARE(m->m_scheduleList.count(), static_cast(0));
++QCOMPARE(m->m_scheduleList.count(), 0);
+ MyMoneyTransaction t1;
+ MyMoneySplit s1, 

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

2016-06-17 Thread Jaroslav Lichtblau
Date: Saturday, June 18, 2016 @ 04:45:44
  Author: jlichtblau
Revision: 180411

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

Added:
  kmymoney/repos/community-i686/4.8_build.patch
(from rev 180410, kmymoney/trunk/4.8_build.patch)
  kmymoney/repos/community-i686/PKGBUILD
(from rev 180410, kmymoney/trunk/PKGBUILD)
  kmymoney/repos/community-i686/kmymoney.changelog
(from rev 180410, kmymoney/trunk/kmymoney.changelog)
  kmymoney/repos/community-x86_64/4.8_build.patch
(from rev 180410, kmymoney/trunk/4.8_build.patch)
  kmymoney/repos/community-x86_64/PKGBUILD
(from rev 180410, kmymoney/trunk/PKGBUILD)
  kmymoney/repos/community-x86_64/kmymoney.changelog
(from rev 180410, kmymoney/trunk/kmymoney.changelog)
Deleted:
  kmymoney/repos/community-i686/PKGBUILD
  kmymoney/repos/community-i686/kmymoney.changelog
  kmymoney/repos/community-x86_64/PKGBUILD
  kmymoney/repos/community-x86_64/kmymoney.changelog

-+
 /PKGBUILD   |   98 +++
 /kmymoney.changelog |  108 +
 community-i686/4.8_build.patch  |  210 ++
 community-i686/PKGBUILD |   39 --
 community-i686/kmymoney.changelog   |   50 
 community-x86_64/4.8_build.patch|  210 ++
 community-x86_64/PKGBUILD   |   39 --
 community-x86_64/kmymoney.changelog |   54 
 8 files changed, 626 insertions(+), 182 deletions(-)

Copied: kmymoney/repos/community-i686/4.8_build.patch (from rev 180410, 
kmymoney/trunk/4.8_build.patch)
===
--- community-i686/4.8_build.patch  (rev 0)
+++ community-i686/4.8_build.patch  2016-06-18 04:45:44 UTC (rev 180411)
@@ -0,0 +1,210 @@
+From: Cristian Oneț 
+Date: Thu, 16 Jun 2016 07:06:32 +
+Subject: Fix the tests of the 4.8 build.
+X-Git-Url: 
http://quickgit.kde.org/?p=kmymoney.git=commitdiff=29ab40829f86f6bd32229ededcc09bf2736e67bd
+---
+Fix the tests of the 4.8 build.
+
+Do this by backporting the change that is already in frameworks in commit 
77085ff468336f26f6bcf5f2a1a08e16409172e6. Did not use cherry pick because the 
testfile was moved in frameworks.
+
+BUG: 364355
+---
+
+
+--- a/kmymoney/mymoney/storage/mymoneymap.h
 b/kmymoney/mymoney/storage/mymoneymap.h
+@@ -195,7 +195,7 @@
+ that = *(dynamic_cast* >(const_cast* 
>(this)));
+   }
+ 
+-  inline size_t count(void) const {
++  inline int count(void) const {
+ return QMap::count();
+   }
+ 
+
+--- a/kmymoney/mymoney/storage/mymoneyseqaccessmgrtest.cpp
 b/kmymoney/mymoney/storage/mymoneyseqaccessmgrtest.cpp
+@@ -58,13 +58,13 @@
+   QCOMPARE(m->m_nextPayeeID, 0ul);
+   QCOMPARE(m->m_nextScheduleID, 0ul);
+   QCOMPARE(m->m_nextReportID, 0ul);
+-  QCOMPARE(m->m_institutionList.count(), 0ul);
+-  QCOMPARE(m->m_accountList.count(), 5ul);
+-  QCOMPARE(m->m_transactionList.count(), 0ul);
+-  QCOMPARE(m->m_transactionKeys.count(), 0ul);
+-  QCOMPARE(m->m_payeeList.count(), 0ul);
+-  QCOMPARE(m->m_tagList.count(), 0ul);
+-  QCOMPARE(m->m_scheduleList.count(), 0ul);
++  QCOMPARE(m->m_institutionList.count(), 0);
++  QCOMPARE(m->m_accountList.count(), 5);
++  QCOMPARE(m->m_transactionList.count(), 0);
++  QCOMPARE(m->m_transactionKeys.count(), 0);
++  QCOMPARE(m->m_payeeList.count(), 0);
++  QCOMPARE(m->m_tagList.count(), 0);
++  QCOMPARE(m->m_scheduleList.count(), 0);
+ 
+   QCOMPARE(m->m_dirty, false);
+   QCOMPARE(m->m_creationDate, QDate::currentDate());
+@@ -187,7 +187,7 @@
+ 
+   QCOMPARE(m->m_nextAccountID, 1ul);
+   QCOMPARE(m->dirty(), true);
+-  QCOMPARE(m->m_accountList.count(), static_cast(6));
++  QCOMPARE(m->m_accountList.count(), 6);
+   QCOMPARE(m->m_accountList["A01"].name(), QLatin1String("AccountName"));
+ }
+ 
+@@ -235,7 +235,7 @@
+   m->m_dirty = false;
+ 
+   QCOMPARE(m->m_nextAccountID, 2ul);
+-  QCOMPARE(m->m_accountList.count(), static_cast(7));
++  QCOMPARE(m->m_accountList.count(), 7);
+ 
+   // try to add account to undefined account
+   try {
+@@ -271,7 +271,7 @@
+   i.setName("Inst Name");
+ 
+   m->addInstitution(i);
+-  QCOMPARE(m->m_institutionList.count(), static_cast(1));
++  QCOMPARE(m->m_institutionList.count(), 1);
+   QCOMPARE(m->m_nextInstitutionID, 1ul);
+   QCOMPARE(m->m_institutionList["I01"].name(), QLatin1String("Inst 
Name"));
+ }
+@@ -950,11 +950,11 @@
+   // check that we can remove an unreferenced payee
+   MyMoneyPayee p = m->payee("P01");
+   try {
+-QCOMPARE(m->m_payeeList.count(), static_cast(1));
++QCOMPARE(m->m_payeeList.count(), 1);
+ m->removePayee(p);
+ m->commitTransaction();
+ m->startTransaction();
+-QCOMPARE(m->m_payeeList.count(), static_cast(0));
++QCOMPARE(m->m_payeeList.count(), 0);
+ QCOMPARE(m->dirty(), true);
+   } catch (const MyMoneyException &) {
+ 

[arch-commits] Commit in virtualbox-guest-iso/repos/community-any (6 files)

2016-06-17 Thread Sébastien Luttringer
Date: Saturday, June 18, 2016 @ 02:49:55
  Author: seblu
Revision: 180409

archrelease: copy trunk to community-any

Added:
  virtualbox-guest-iso/repos/community-any/PKGBUILD
(from rev 180408, virtualbox-guest-iso/trunk/PKGBUILD)
  virtualbox-guest-iso/repos/community-any/license
(from rev 180408, virtualbox-guest-iso/trunk/license)
  virtualbox-guest-iso/repos/community-any/virtualbox-guest-iso.install
(from rev 180408, virtualbox-guest-iso/trunk/virtualbox-guest-iso.install)
Deleted:
  virtualbox-guest-iso/repos/community-any/PKGBUILD
  virtualbox-guest-iso/repos/community-any/license
  virtualbox-guest-iso/repos/community-any/virtualbox-guest-iso.install

--+
 PKGBUILD |   60 ++--
 license  |   68 -
 virtualbox-guest-iso.install |   36 ++---
 3 files changed, 82 insertions(+), 82 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-06-18 02:49:44 UTC (rev 180408)
+++ PKGBUILD2016-06-18 02:49:55 UTC (rev 180409)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Luttringer
-# Contributor: Jonathan Steel 
-# Contributor: Ionut Biru 
-# Contributor: Geoffroy Carrier 
-# Contributor: Andrea Scarpino 
-# Contributor: Roman Kyrylych 
-
-pkgname=virtualbox-guest-iso
-pkgver=5.0.20
-pkgrel=1
-pkgdesc='The official VirtualBox Guest Additions ISO image'
-arch=('any')
-url='http://www.virtualbox.org'
-license=('custom:PUEL')
-install=virtualbox-guest-iso.install
-source=("http://download.virtualbox.org/virtualbox/$pkgver/VBoxGuestAdditions_$pkgver.iso;
-'license')
-replaces=('virtualbox-additions' 'virtualbox-iso-additions')
-conflicts=('virtualbox-additions' 'virtualbox-iso-additions')
-noextract=(VBoxGuestAdditions_$pkgver.iso)
-md5sums=('cc94e3885689533e1214e1a73355dbba'
- 'b67febd9453cc6c4b8412a0456080e9f')
-
-package() {
-  install -Dm 644 VBoxGuestAdditions_$pkgver.iso \
-"$pkgdir/usr/lib/virtualbox/additions/VBoxGuestAdditions.iso"
-  install -Dm 644 "$srcdir/license" \
-"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: virtualbox-guest-iso/repos/community-any/PKGBUILD (from rev 180408, 
virtualbox-guest-iso/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-06-18 02:49:55 UTC (rev 180409)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+# Contributor: Jonathan Steel 
+# Contributor: Ionut Biru 
+# Contributor: Geoffroy Carrier 
+# Contributor: Andrea Scarpino 
+# Contributor: Roman Kyrylych 
+
+pkgname=virtualbox-guest-iso
+pkgver=5.0.22
+pkgrel=1
+pkgdesc='The official VirtualBox Guest Additions ISO image'
+arch=('any')
+url='http://www.virtualbox.org'
+license=('custom:PUEL')
+install=virtualbox-guest-iso.install
+source=("http://download.virtualbox.org/virtualbox/$pkgver/VBoxGuestAdditions_$pkgver.iso;
+'license')
+replaces=('virtualbox-additions' 'virtualbox-iso-additions')
+conflicts=('virtualbox-additions' 'virtualbox-iso-additions')
+noextract=(VBoxGuestAdditions_$pkgver.iso)
+md5sums=('94869b4da82027e4cd73c9aaf2dfd9bb'
+ 'b67febd9453cc6c4b8412a0456080e9f')
+
+package() {
+  install -Dm 644 VBoxGuestAdditions_$pkgver.iso \
+"$pkgdir/usr/lib/virtualbox/additions/VBoxGuestAdditions.iso"
+  install -Dm 644 "$srcdir/license" \
+"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}

Deleted: license
===
--- license 2016-06-18 02:49:44 UTC (rev 180408)
+++ license 2016-06-18 02:49:55 UTC (rev 180409)
@@ -1,34 +0,0 @@
-VirtualBox Personal Use and Evaluation License (PUEL) 
-
-This license applies if you download the full VirtualBox binaries from the 
Downloads page. It does not apply to the VirtualBox Open Source Edition (OSE), 
which falls under the GPL instead; see Editions for details about the 
differences between these releases.
-
-In summary, the VirtualBox PUEL allows you to use VirtualBox free of charge
-
-* for personal use or, alternatively,
-* for product evaluation. 
-
-In addition, academic use of VirtualBox is also permitted free of charge by 
the PUEL.
-
-If you do not belong to either category, you will have to purchase a 
commercial license. Do not hesitate to contact InnoTek in this matter.
-
-If you are confused by the legalese below, you may also want to take a look at 
our Licensing FAQ to answer a few common questions.
-VirtualBox PUEL terms and conditions ¶
-
-Version 1.2, 2007-02-21
-
-InnoTek Systemberatung GmbH, Werkstrasse 24, 71384 Weinstadt, Germany grants 
you the right to use the software product 

[arch-commits] Commit in virtualbox-guest-iso/trunk (PKGBUILD)

2016-06-17 Thread Sébastien Luttringer
Date: Saturday, June 18, 2016 @ 02:49:44
  Author: seblu
Revision: 180408

upgpkg: virtualbox-guest-iso 5.0.22-1

Modified:
  virtualbox-guest-iso/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-06-18 01:01:21 UTC (rev 180407)
+++ PKGBUILD2016-06-18 02:49:44 UTC (rev 180408)
@@ -7,7 +7,7 @@
 # Contributor: Roman Kyrylych 
 
 pkgname=virtualbox-guest-iso
-pkgver=5.0.20
+pkgver=5.0.22
 pkgrel=1
 pkgdesc='The official VirtualBox Guest Additions ISO image'
 arch=('any')
@@ -19,7 +19,7 @@
 replaces=('virtualbox-additions' 'virtualbox-iso-additions')
 conflicts=('virtualbox-additions' 'virtualbox-iso-additions')
 noextract=(VBoxGuestAdditions_$pkgver.iso)
-md5sums=('cc94e3885689533e1214e1a73355dbba'
+md5sums=('94869b4da82027e4cd73c9aaf2dfd9bb'
  'b67febd9453cc6c4b8412a0456080e9f')
 
 package() {


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

2016-06-17 Thread Sébastien Luttringer
Date: Saturday, June 18, 2016 @ 01:22:21
  Author: seblu
Revision: 270171

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

Added:
  
nftables/repos/extra-i686/01-payload-don-t-update-protocol-context-if-we-can-t-fi.patch
(from rev 270170, 
nftables/trunk/01-payload-don-t-update-protocol-context-if-we-can-t-fi.patch)
  nftables/repos/extra-i686/PKGBUILD
(from rev 270170, nftables/trunk/PKGBUILD)
  nftables/repos/extra-i686/nftables-reload
(from rev 270170, nftables/trunk/nftables-reload)
  nftables/repos/extra-i686/nftables.conf
(from rev 270170, nftables/trunk/nftables.conf)
  nftables/repos/extra-i686/nftables.service
(from rev 270170, nftables/trunk/nftables.service)
  
nftables/repos/extra-x86_64/01-payload-don-t-update-protocol-context-if-we-can-t-fi.patch
(from rev 270170, 
nftables/trunk/01-payload-don-t-update-protocol-context-if-we-can-t-fi.patch)
  nftables/repos/extra-x86_64/PKGBUILD
(from rev 270170, nftables/trunk/PKGBUILD)
  nftables/repos/extra-x86_64/nftables-reload
(from rev 270170, nftables/trunk/nftables-reload)
  nftables/repos/extra-x86_64/nftables.conf
(from rev 270170, nftables/trunk/nftables.conf)
  nftables/repos/extra-x86_64/nftables.service
(from rev 270170, nftables/trunk/nftables.service)
Deleted:
  nftables/repos/extra-i686/PKGBUILD
  nftables/repos/extra-i686/nftables-reload
  nftables/repos/extra-i686/nftables.conf
  nftables/repos/extra-i686/nftables.service
  nftables/repos/extra-x86_64/PKGBUILD
  nftables/repos/extra-x86_64/nftables-reload
  nftables/repos/extra-x86_64/nftables.conf
  nftables/repos/extra-x86_64/nftables.service

+
 /PKGBUILD  |  
124 ++
 /nftables-reload   |   
 6 
 /nftables.conf |   
76 ++
 /nftables.service  |   
30 ++
 extra-i686/01-payload-don-t-update-protocol-context-if-we-can-t-fi.patch   |  
108 
 extra-i686/PKGBUILD|   
60 
 extra-i686/nftables-reload |   
 3 
 extra-i686/nftables.conf   |   
38 ---
 extra-i686/nftables.service|   
15 -
 extra-x86_64/01-payload-don-t-update-protocol-context-if-we-can-t-fi.patch |  
108 
 extra-x86_64/PKGBUILD  |   
60 
 extra-x86_64/nftables-reload   |   
 3 
 extra-x86_64/nftables.conf |   
38 ---
 extra-x86_64/nftables.service  |   
15 -
 14 files changed, 452 insertions(+), 232 deletions(-)

Copied: 
nftables/repos/extra-i686/01-payload-don-t-update-protocol-context-if-we-can-t-fi.patch
 (from rev 270170, 
nftables/trunk/01-payload-don-t-update-protocol-context-if-we-can-t-fi.patch)
===
--- extra-i686/01-payload-don-t-update-protocol-context-if-we-can-t-fi.patch
(rev 0)
+++ extra-i686/01-payload-don-t-update-protocol-context-if-we-can-t-fi.patch
2016-06-18 01:22:21 UTC (rev 270171)
@@ -0,0 +1,108 @@
+From 3503738f77cdbe521da1054a37f59ac2e442b4cf Mon Sep 17 00:00:00 2001
+From: Florian Westphal 
+Date: Mon, 6 Jun 2016 21:52:28 +0200
+Subject: [PATCH 2/7] payload: don't update protocol context if we can't find a
+ description
+
+Since commit
+20b1131c07acd2fc ("payload: fix stacked headers protocol context tracking")
+we deref null pointer if we can't find a description for the desired
+protocol, so "ip protocol 254" crashes while testing protocols 6 or 17
+(tcp, udp) works.
+
+Also add a test case for this.
+
+Closes: https://bugzilla.netfilter.org/show_bug.cgi?id=1072
+Signed-off-by: Florian Westphal 
+Acked-by: Pablo Neira Ayuso 
+---
+ src/payload.c   | 3 +++
+ tests/py/ip/ip.t| 3 +++
+ tests/py/ip/ip.t.payload| 5 +
+ tests/py/ip/ip.t.payload.inet   | 7 +++
+ tests/py/ip/ip.t.payload.netdev | 7 +++
+ 5 files changed, 25 insertions(+)
+
+diff --git a/src/payload.c b/src/payload.c
+index ac0e917..9ba980a 100644
+--- a/src/payload.c
 b/src/payload.c
+@@ -85,6 +85,9 @@ static void payload_expr_pctx_update(struct proto_ctx *ctx,
+   base = ctx->protocol[left->payload.base].desc;
+   desc = proto_find_upper(base, proto);
+ 
++  if (!desc)
++  return;
++
+   assert(desc->base <= PROTO_BASE_MAX);
+   if (desc->base == base->base) {
+   assert(base->length > 0);
+diff --git a/tests/py/ip/ip.t 

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

2016-06-17 Thread Sébastien Luttringer
Date: Saturday, June 18, 2016 @ 01:21:39
  Author: seblu
Revision: 270170

upgpkg: nftables 1:0.6-2

- FS#49597

Added:
  nftables/trunk/01-payload-don-t-update-protocol-context-if-we-can-t-fi.patch
Modified:
  nftables/trunk/PKGBUILD

---+
 01-payload-don-t-update-protocol-context-if-we-can-t-fi.patch |  108 ++
 PKGBUILD  |4 
 2 files changed, 111 insertions(+), 1 deletion(-)

Added: 01-payload-don-t-update-protocol-context-if-we-can-t-fi.patch
===
--- 01-payload-don-t-update-protocol-context-if-we-can-t-fi.patch   
(rev 0)
+++ 01-payload-don-t-update-protocol-context-if-we-can-t-fi.patch   
2016-06-18 01:21:39 UTC (rev 270170)
@@ -0,0 +1,108 @@
+From 3503738f77cdbe521da1054a37f59ac2e442b4cf Mon Sep 17 00:00:00 2001
+From: Florian Westphal 
+Date: Mon, 6 Jun 2016 21:52:28 +0200
+Subject: [PATCH 2/7] payload: don't update protocol context if we can't find a
+ description
+
+Since commit
+20b1131c07acd2fc ("payload: fix stacked headers protocol context tracking")
+we deref null pointer if we can't find a description for the desired
+protocol, so "ip protocol 254" crashes while testing protocols 6 or 17
+(tcp, udp) works.
+
+Also add a test case for this.
+
+Closes: https://bugzilla.netfilter.org/show_bug.cgi?id=1072
+Signed-off-by: Florian Westphal 
+Acked-by: Pablo Neira Ayuso 
+---
+ src/payload.c   | 3 +++
+ tests/py/ip/ip.t| 3 +++
+ tests/py/ip/ip.t.payload| 5 +
+ tests/py/ip/ip.t.payload.inet   | 7 +++
+ tests/py/ip/ip.t.payload.netdev | 7 +++
+ 5 files changed, 25 insertions(+)
+
+diff --git a/src/payload.c b/src/payload.c
+index ac0e917..9ba980a 100644
+--- a/src/payload.c
 b/src/payload.c
+@@ -85,6 +85,9 @@ static void payload_expr_pctx_update(struct proto_ctx *ctx,
+   base = ctx->protocol[left->payload.base].desc;
+   desc = proto_find_upper(base, proto);
+ 
++  if (!desc)
++  return;
++
+   assert(desc->base <= PROTO_BASE_MAX);
+   if (desc->base == base->base) {
+   assert(base->length > 0);
+diff --git a/tests/py/ip/ip.t b/tests/py/ip/ip.t
+index 594136c..a265b75 100644
+--- a/tests/py/ip/ip.t
 b/tests/py/ip/ip.t
+@@ -75,6 +75,9 @@ ip protocol != tcp;ok;ip protocol != 6
+ ip protocol { icmp, esp, ah, comp, udp, udplite, tcp, dccp, sctp} 
accept;ok;ip protocol { 33, 136, 17, 51, 50, 6, 132, 1, 108} accept
+ - ip protocol != { icmp, esp, ah, comp, udp, udplite, tcp, dccp, sctp} 
accept;ok
+ 
++ip protocol 255;ok
++ip protocol 256;fail
++
+ ip checksum 13172 drop;ok
+ ip checksum 22;ok
+ ip checksum != 233;ok
+diff --git a/tests/py/ip/ip.t.payload b/tests/py/ip/ip.t.payload
+index 3bd3358..15cc590 100644
+--- a/tests/py/ip/ip.t.payload
 b/tests/py/ip/ip.t.payload
+@@ -204,6 +204,11 @@ ip test-ip4 input
+   [ lookup reg 1 set __set%d ]
+   [ immediate reg 0 accept ]
+ 
++# ip protocol 255
++ip test-ip4 input
++  [ payload load 1b @ network header + 9 => reg 1 ]
++  [ cmp eq reg 1 0x00ff ]
++
+ # ip checksum 13172 drop
+ ip test-ip4 input
+   [ payload load 2b @ network header + 10 => reg 1 ]
+diff --git a/tests/py/ip/ip.t.payload.inet b/tests/py/ip/ip.t.payload.inet
+index ef4692e..e495246 100644
+--- a/tests/py/ip/ip.t.payload.inet
 b/tests/py/ip/ip.t.payload.inet
+@@ -268,6 +268,13 @@ inet test-inet input
+   [ lookup reg 1 set __set%d ]
+   [ immediate reg 0 accept ]
+ 
++# ip protocol 255
++ip test-ip4 input
++  [ meta load nfproto => reg 1 ]
++  [ cmp eq reg 1 0x0002 ]
++  [ payload load 1b @ network header + 9 => reg 1 ]
++  [ cmp eq reg 1 0x00ff ]
++
+ # ip checksum 13172 drop
+ inet test-inet input
+   [ meta load nfproto => reg 1 ]
+diff --git a/tests/py/ip/ip.t.payload.netdev b/tests/py/ip/ip.t.payload.netdev
+index 4feaa27..8eaee4c 100644
+--- a/tests/py/ip/ip.t.payload.netdev
 b/tests/py/ip/ip.t.payload.netdev
+@@ -204,6 +204,13 @@ netdev test-netdev ingress
+   [ lookup reg 1 set __set%d ]
+   [ immediate reg 0 accept ]
+ 
++# ip protocol 255
++ip test-ip4 input
++  [ meta load protocol => reg 1 ]
++  [ cmp eq reg 1 0x0008 ]
++  [ payload load 1b @ network header + 9 => reg 1 ]
++  [ cmp eq reg 1 0x00ff ]
++
+ # ip checksum 13172 drop
+ netdev test-netdev ingress 
+   [ meta load protocol => reg 1 ]
+-- 
+2.8.3
+

Modified: PKGBUILD
===
--- PKGBUILD2016-06-18 01:10:30 UTC (rev 270169)
+++ PKGBUILD2016-06-18 01:21:39 UTC (rev 270170)
@@ -4,7 +4,7 @@
 pkgname=nftables
 epoch=1
 pkgver=0.6
-pkgrel=1
+pkgrel=2
 pkgdesc='Netfilter tables userspace tools'
 arch=('i686' 'x86_64')
 url='http://netfilter.org/projects/nftables/'
@@ -14,11 +14,13 @@
 backup=('etc/nftables.conf')
 

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

2016-06-17 Thread Sébastien Luttringer
Date: Saturday, June 18, 2016 @ 01:10:30
  Author: seblu
Revision: 270169

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

Added:
  bind/repos/extra-i686/127.0.0.zone
(from rev 270168, bind/trunk/127.0.0.zone)
  bind/repos/extra-i686/PKGBUILD
(from rev 270168, bind/trunk/PKGBUILD)
  bind/repos/extra-i686/bind.install
(from rev 270168, bind/trunk/bind.install)
  bind/repos/extra-i686/empty.zone
(from rev 270168, bind/trunk/empty.zone)
  bind/repos/extra-i686/localhost.ip6.zone
(from rev 270168, bind/trunk/localhost.ip6.zone)
  bind/repos/extra-i686/localhost.zone
(from rev 270168, bind/trunk/localhost.zone)
  bind/repos/extra-i686/named.conf
(from rev 270168, bind/trunk/named.conf)
  bind/repos/extra-i686/named.service
(from rev 270168, bind/trunk/named.service)
  bind/repos/extra-i686/sysusers.conf
(from rev 270168, bind/trunk/sysusers.conf)
  bind/repos/extra-i686/tmpfiles.conf
(from rev 270168, bind/trunk/tmpfiles.conf)
  bind/repos/extra-x86_64/127.0.0.zone
(from rev 270168, bind/trunk/127.0.0.zone)
  bind/repos/extra-x86_64/PKGBUILD
(from rev 270168, bind/trunk/PKGBUILD)
  bind/repos/extra-x86_64/bind.install
(from rev 270168, bind/trunk/bind.install)
  bind/repos/extra-x86_64/empty.zone
(from rev 270168, bind/trunk/empty.zone)
  bind/repos/extra-x86_64/localhost.ip6.zone
(from rev 270168, bind/trunk/localhost.ip6.zone)
  bind/repos/extra-x86_64/localhost.zone
(from rev 270168, bind/trunk/localhost.zone)
  bind/repos/extra-x86_64/named.conf
(from rev 270168, bind/trunk/named.conf)
  bind/repos/extra-x86_64/named.service
(from rev 270168, bind/trunk/named.service)
  bind/repos/extra-x86_64/sysusers.conf
(from rev 270168, bind/trunk/sysusers.conf)
  bind/repos/extra-x86_64/tmpfiles.conf
(from rev 270168, bind/trunk/tmpfiles.conf)
Deleted:
  bind/repos/extra-i686/127.0.0.zone
  bind/repos/extra-i686/PKGBUILD
  bind/repos/extra-i686/bind.install
  bind/repos/extra-i686/empty.zone
  bind/repos/extra-i686/localhost.ip6.zone
  bind/repos/extra-i686/localhost.zone
  bind/repos/extra-i686/named.conf
  bind/repos/extra-i686/named.service
  bind/repos/extra-i686/sysusers.conf
  bind/repos/extra-i686/tmpfiles.conf
  bind/repos/extra-x86_64/127.0.0.zone
  bind/repos/extra-x86_64/PKGBUILD
  bind/repos/extra-x86_64/bind.install
  bind/repos/extra-x86_64/empty.zone
  bind/repos/extra-x86_64/localhost.ip6.zone
  bind/repos/extra-x86_64/localhost.zone
  bind/repos/extra-x86_64/named.conf
  bind/repos/extra-x86_64/named.service
  bind/repos/extra-x86_64/sysusers.conf
  bind/repos/extra-x86_64/tmpfiles.conf

-+
 /127.0.0.zone   |   20 +++
 /PKGBUILD   |  236 ++
 /bind.install   |   26 
 /empty.zone |   16 ++
 /localhost.ip6.zone |   20 +++
 /localhost.zone |   22 +++
 /named.conf |  144 +++
 /named.service  |   22 +++
 /sysusers.conf  |2 
 /tmpfiles.conf  |2 
 extra-i686/127.0.0.zone |   10 -
 extra-i686/PKGBUILD |  117 --
 extra-i686/bind.install |   13 --
 extra-i686/empty.zone   |8 -
 extra-i686/localhost.ip6.zone   |   10 -
 extra-i686/localhost.zone   |   11 -
 extra-i686/named.conf   |   72 ---
 extra-i686/named.service|   11 -
 extra-i686/sysusers.conf|1 
 extra-i686/tmpfiles.conf|1 
 extra-x86_64/127.0.0.zone   |   10 -
 extra-x86_64/PKGBUILD   |  117 --
 extra-x86_64/bind.install   |   13 --
 extra-x86_64/empty.zone |8 -
 extra-x86_64/localhost.ip6.zone |   10 -
 extra-x86_64/localhost.zone |   11 -
 extra-x86_64/named.conf |   72 ---
 extra-x86_64/named.service  |   11 -
 extra-x86_64/sysusers.conf  |1 
 extra-x86_64/tmpfiles.conf  |1 
 30 files changed, 510 insertions(+), 508 deletions(-)

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


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

2016-06-17 Thread Sébastien Luttringer
Date: Saturday, June 18, 2016 @ 01:04:21
  Author: seblu
Revision: 270168

upgpkg: bind 9.10.4.P1-2

- implement FS#49736

Modified:
  bind/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-06-18 00:59:44 UTC (rev 270167)
+++ PKGBUILD2016-06-18 01:04:21 UTC (rev 270168)
@@ -8,7 +8,7 @@
 pkgname=(bind bind-tools)
 _pkgver=9.10.4-P1
 pkgver=${_pkgver//-/.}
-pkgrel=1
+pkgrel=2
 url='http://www.isc.org/software/bind/'
 license=('custom:ISC')
 arch=('i686' 'x86_64')
@@ -56,6 +56,7 @@
 --with-python=/usr/bin/python \
 --with-geoip \
 --with-ipv6 \
+--enable-filter- \
 --with-idn \
 --with-openssl \
 --with-libjson \


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

2016-06-17 Thread Sébastien Luttringer
Date: Saturday, June 18, 2016 @ 01:01:21
  Author: seblu
Revision: 180407

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

Added:
  keepalived/repos/community-i686/PKGBUILD
(from rev 180406, keepalived/trunk/PKGBUILD)
  keepalived/repos/community-i686/keepalived.service
(from rev 180406, keepalived/trunk/keepalived.service)
  keepalived/repos/community-x86_64/PKGBUILD
(from rev 180406, keepalived/trunk/PKGBUILD)
  keepalived/repos/community-x86_64/keepalived.service
(from rev 180406, keepalived/trunk/keepalived.service)
Deleted:
  keepalived/repos/community-i686/PKGBUILD
  keepalived/repos/community-i686/keepalived.service
  keepalived/repos/community-x86_64/PKGBUILD
  keepalived/repos/community-x86_64/keepalived.service

-+
 /PKGBUILD   |   78 ++
 /keepalived.service |   18 +++
 community-i686/PKGBUILD |   39 -
 community-i686/keepalived.service   |9 ---
 community-x86_64/PKGBUILD   |   39 -
 community-x86_64/keepalived.service |9 ---
 6 files changed, 96 insertions(+), 96 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-06-18 00:58:09 UTC (rev 180406)
+++ community-i686/PKGBUILD 2016-06-18 01:01:21 UTC (rev 180407)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Luttringer
-# Contributor: Andrea Zucchelli 
-
-pkgname=keepalived
-pkgver=1.2.21
-pkgrel=1
-pkgdesc='Failover and monitoring daemon for LVS clusters'
-arch=('i686' 'x86_64')
-url='http://www.keepalived.org/'
-license=('GPL2')
-backup=('etc/keepalived/keepalived.conf')
-depends=('openssl' 'popt' 'libnl1')
-makedepends=('libnfnetlink')
-source=("http://www.keepalived.org/software/$pkgname-$pkgver.tar.gz;
-'keepalived.service')
-md5sums=('cd14f8c1926c8022e61f2860df11167e'
- '0a5171f4298528315e8a8004b55befb7')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --sbindir=/usr/bin
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-  # clean pacakge init scripts
-  rm -r "$pkgdir/etc/rc.d" "$pkgdir/etc/sysconfig"
-  # move examples to /usr/share
-  install -d -m 755 "$pkgdir/usr/share/$pkgname"
-  mv "$pkgdir/etc/keepalived/samples" "$pkgdir/usr/share/$pkgname/samples"
-  # systemd
-  install -D -m 644 "$srcdir/$pkgname.service" \
-"$pkgdir/usr/lib/systemd/system/$pkgname.service"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: keepalived/repos/community-i686/PKGBUILD (from rev 180406, 
keepalived/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-06-18 01:01:21 UTC (rev 180407)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+# Contributor: Andrea Zucchelli 
+
+pkgname=keepalived
+pkgver=1.2.22
+pkgrel=1
+pkgdesc='Failover and monitoring daemon for LVS clusters'
+arch=('i686' 'x86_64')
+url='http://www.keepalived.org/'
+license=('GPL2')
+backup=('etc/keepalived/keepalived.conf')
+depends=('openssl' 'popt' 'libnl1')
+makedepends=('libnfnetlink')
+source=("http://www.keepalived.org/software/$pkgname-$pkgver.tar.gz;
+'keepalived.service')
+md5sums=('eb86fc8da95b43a0a91fa798ed3df3c5'
+ '0a5171f4298528315e8a8004b55befb7')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --sbindir=/usr/bin
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  # clean pacakge init scripts
+  rm -r "$pkgdir/etc/rc.d" "$pkgdir/etc/sysconfig"
+  # move examples to /usr/share
+  install -d -m 755 "$pkgdir/usr/share/$pkgname"
+  mv "$pkgdir/etc/keepalived/samples" "$pkgdir/usr/share/$pkgname/samples"
+  # systemd
+  install -D -m 644 "$srcdir/$pkgname.service" \
+"$pkgdir/usr/lib/systemd/system/$pkgname.service"
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/keepalived.service
===
--- community-i686/keepalived.service   2016-06-18 00:58:09 UTC (rev 180406)
+++ community-i686/keepalived.service   2016-06-18 01:01:21 UTC (rev 180407)
@@ -1,9 +0,0 @@
-[Unit]
-Description=Keepalive Daemon
-After=network.target
-
-[Service]
-ExecStart=/usr/bin/keepalived --dont-fork
-
-[Install]
-WantedBy=multi-user.target

Copied: keepalived/repos/community-i686/keepalived.service (from rev 180406, 
keepalived/trunk/keepalived.service)
===
--- community-i686/keepalived.service   (rev 0)
+++ community-i686/keepalived.service   2016-06-18 01:01:21 UTC (rev 180407)
@@ -0,0 +1,9 @@
+[Unit]
+Description=Keepalive Daemon
+After=network.target
+
+[Service]
+ExecStart=/usr/bin/keepalived --dont-fork
+

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

2016-06-17 Thread Sébastien Luttringer
Date: Saturday, June 18, 2016 @ 00:59:44
  Author: seblu
Revision: 270167

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

Added:
  file/repos/testing-i686/
  file/repos/testing-i686/PKGBUILD
(from rev 270166, file/trunk/PKGBUILD)
  file/repos/testing-x86_64/
  file/repos/testing-x86_64/PKGBUILD
(from rev 270166, file/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   48 ++
 testing-x86_64/PKGBUILD |   48 ++
 2 files changed, 96 insertions(+)

Copied: file/repos/testing-i686/PKGBUILD (from rev 270166, file/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-06-18 00:59:44 UTC (rev 270167)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Sébastien Luttringer 
+# Contributor: Allan McRae 
+# Contributor: Andreas Radke 
+
+pkgname=file
+pkgver=5.28
+pkgrel=1
+pkgdesc='File type identification utility'
+arch=('i686' 'x86_64')
+license=('custom')
+groups=('base' 'base-devel')
+url='http://www.darwinsys.com/file/'
+depends=('glibc' 'zlib')
+source=("ftp://ftp.astron.com/pub/$pkgname/$pkgname-$pkgver.tar.gz;)
+md5sums=('3f7771424aa855f32094b49571e19b33')
+
+prepare() {
+  cd $pkgname-$pkgver
+  # apply patch from the source array (should be a pacman feature)
+  local filename
+  for filename in "${source[@]}"; do
+if [[ "$filename" =~ \.patch$ ]]; then
+  msg2 "Applying patch $filename"
+  patch -p1 -N -i "$srcdir/$filename"
+fi
+  done
+  :
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --datadir=/usr/share/file --enable-fsect-man5
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: file/repos/testing-x86_64/PKGBUILD (from rev 270166, 
file/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-06-18 00:59:44 UTC (rev 270167)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Sébastien Luttringer 
+# Contributor: Allan McRae 
+# Contributor: Andreas Radke 
+
+pkgname=file
+pkgver=5.28
+pkgrel=1
+pkgdesc='File type identification utility'
+arch=('i686' 'x86_64')
+license=('custom')
+groups=('base' 'base-devel')
+url='http://www.darwinsys.com/file/'
+depends=('glibc' 'zlib')
+source=("ftp://ftp.astron.com/pub/$pkgname/$pkgname-$pkgver.tar.gz;)
+md5sums=('3f7771424aa855f32094b49571e19b33')
+
+prepare() {
+  cd $pkgname-$pkgver
+  # apply patch from the source array (should be a pacman feature)
+  local filename
+  for filename in "${source[@]}"; do
+if [[ "$filename" =~ \.patch$ ]]; then
+  msg2 "Applying patch $filename"
+  patch -p1 -N -i "$srcdir/$filename"
+fi
+  done
+  :
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --datadir=/usr/share/file --enable-fsect-man5
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
+}
+
+# vim:set ts=2 sw=2 et:


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

2016-06-17 Thread Sébastien Luttringer
Date: Saturday, June 18, 2016 @ 00:58:09
  Author: seblu
Revision: 180406

upgpkg: keepalived 1.2.22-1

Modified:
  keepalived/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-06-18 00:56:49 UTC (rev 180405)
+++ PKGBUILD2016-06-18 00:58:09 UTC (rev 180406)
@@ -3,7 +3,7 @@
 # Contributor: Andrea Zucchelli 
 
 pkgname=keepalived
-pkgver=1.2.21
+pkgver=1.2.22
 pkgrel=1
 pkgdesc='Failover and monitoring daemon for LVS clusters'
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 makedepends=('libnfnetlink')
 source=("http://www.keepalived.org/software/$pkgname-$pkgver.tar.gz;
 'keepalived.service')
-md5sums=('cd14f8c1926c8022e61f2860df11167e'
+md5sums=('eb86fc8da95b43a0a91fa798ed3df3c5'
  '0a5171f4298528315e8a8004b55befb7')
 
 build() {


[arch-commits] Commit in salt/repos (3 files)

2016-06-17 Thread Sébastien Luttringer
Date: Saturday, June 18, 2016 @ 00:56:49
  Author: seblu
Revision: 180405

archrelease: copy trunk to community-testing-any

Added:
  salt/repos/community-testing-any/
  salt/repos/community-testing-any/PKGBUILD
(from rev 180404, salt/trunk/PKGBUILD)
  salt/repos/community-testing-any/salt.install
(from rev 180404, salt/trunk/salt.install)

--+
 PKGBUILD |   97 +
 salt.install |   15 
 2 files changed, 112 insertions(+)

Copied: salt/repos/community-testing-any/PKGBUILD (from rev 180404, 
salt/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2016-06-18 00:56:49 UTC (rev 180405)
@@ -0,0 +1,97 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+# Maintainer: Daniel Wallace 
+# Contibutor: Christer Edwards 
+
+pkgbase=salt
+pkgname=(salt-zmq salt-raet)
+pkgver=2016.3.1
+pkgrel=1
+pkgdesc='Central system and configuration manager'
+arch=('any')
+url='http://saltstack.org/'
+license=('Apache')
+makedepends=('python2'
+ 'python2-jinja'
+ 'python2-msgpack'
+ 'python2-yaml'
+ 'python2-markupsafe'
+ 'python2-requests'
+ 'python2-libnacl'
+ 'python2-ioflo'
+ 'python2-raet'
+ 'python2-pyzmq'
+ 'python2-crypto'
+ 'python2-m2crypto'
+ 'python2-systemd'
+ 'python2-tornado')
+optdepends=('dmidecode: decode SMBIOS/DMI tables'
+'python2-pygit2: gitfs support')
+backup=('etc/salt/master'
+'etc/salt/minion')
+install=salt.install
+conflicts=('salt')
+source=("https://github.com/saltstack/salt/releases/download/v$pkgver/salt-$pkgver.tar.gz;)
+md5sums=('04f763287fbcbb390ca53c6800e2eea7')
+
+package_salt-zmq() {
+  cd $pkgbase-$pkgver
+  provides=('salt' 'salt-api')
+  replaces=('salt<=2014.1.13' 'salt-api<2014.7')
+  depends=('python2-jinja'
+   'python2-msgpack'
+   'python2-yaml'
+   'python2-markupsafe'
+   'python2-requests'
+   'python2-pyzmq'
+   'python2-crypto'
+   'python2-m2crypto'
+   'python2-systemd'
+   'python2-tornado')
+  python2 setup.py clean
+  python2 setup.py --salt-pidfile-dir="/run/salt" install --root="$pkgdir" 
--optimize=1
+
+  # default config
+  install -Dm644 conf/master "$pkgdir/etc/salt/master"
+  install -Dm644 conf/minion "$pkgdir/etc/salt/minion"
+
+  # systemd services
+  for _svc in salt-master.service salt-syndic.service salt-minion.service 
salt-api.service; do
+install -Dm644 pkg/$_svc "$pkgdir/usr/lib/systemd/system/$_svc"
+  done
+  install -Dm644 pkg/salt.bash 
"$pkgdir/usr/share/bash-completion/completions/salt"
+  install -Dm644 pkg/zsh_completion.zsh 
"$pkgdir/usr/share/zsh/site-functions/_salt"
+}
+
+package_salt-raet() {
+  cd $pkgbase-$pkgver
+  provides=('salt' 'salt-api')
+  depends=('python2-jinja'
+   'python2-msgpack'
+   'python2-yaml'
+   'python2-markupsafe'
+   'python2-requests'
+   'python2-libnacl'
+   'python2-ioflo'
+   'python2-raet'
+   'python2-tornado'
+   'python2-systemd')
+  python2 setup.py clean
+  python2 setup.py --salt-pidfile-dir="/run/salt" --salt-transport=raet 
install --root="$pkgdir" --optimize=1
+
+  # default config
+  install -Dm644 conf/master "$pkgdir/etc/salt/master"
+  install -Dm644 conf/minion "$pkgdir/etc/salt/minion"
+  install -d "$pkgdir/etc/salt/master.d/" "$pkgdir/etc/salt/minion.d/"
+  echo 'transport: raet' > "$pkgdir/etc/salt/master.d/transport.conf"
+  echo 'transport: raet' > "$pkgdir/etc/salt/minion.d/transport.conf"
+
+  # systemd services
+  for _svc in salt-master.service salt-syndic.service salt-minion.service 
salt-api.service; do
+install -Dm644 pkg/$_svc "$pkgdir/usr/lib/systemd/system/$_svc"
+  done
+  install -Dm644 pkg/salt.bash 
"$pkgdir/usr/share/bash-completion/completions/salt"
+  install -Dm644 pkg/zsh_completion.zsh 
"$pkgdir/usr/share/zsh/site-functions/_salt"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: salt/repos/community-testing-any/salt.install (from rev 180404, 
salt/trunk/salt.install)
===
--- community-testing-any/salt.install  (rev 0)
+++ community-testing-any/salt.install  2016-06-18 00:56:49 UTC (rev 180405)
@@ -0,0 +1,15 @@
+#!/bin/bash
+
+# arg 1:  the new package version
+# arg 2:  the old package version
+post_upgrade() {
+  if [ "$(vercmp $2 2014.1.1-1)" -le 0 ]; then
+cat << EOF
+==> Since version 2014.1.1-2, salt-master runs by default as root user.
+==> You need to manually update your configuration and remove the salt user and
+==> group to follow the new default behavior.
+EOF
+fi
+}
+
+# vim:set ts=2 sw=2 ft=sh et:


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

2016-06-17 Thread Sébastien Luttringer
Date: Saturday, June 18, 2016 @ 00:56:35
  Author: seblu
Revision: 270166

upgpkg: file 5.28-1

Modified:
  file/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-06-18 00:29:21 UTC (rev 270165)
+++ PKGBUILD2016-06-18 00:56:35 UTC (rev 270166)
@@ -4,7 +4,7 @@
 # Contributor: Andreas Radke 
 
 pkgname=file
-pkgver=5.27
+pkgver=5.28
 pkgrel=1
 pkgdesc='File type identification utility'
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 url='http://www.darwinsys.com/file/'
 depends=('glibc' 'zlib')
 source=("ftp://ftp.astron.com/pub/$pkgname/$pkgname-$pkgver.tar.gz;)
-md5sums=('18f1c60aa27a296a26c2e9389ac92ba5')
+md5sums=('3f7771424aa855f32094b49571e19b33')
 
 prepare() {
   cd $pkgname-$pkgver


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

2016-06-17 Thread Sébastien Luttringer
Date: Saturday, June 18, 2016 @ 00:55:04
  Author: seblu
Revision: 180404

upgpkg: salt 2016.3.1-1

Modified:
  salt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-06-18 00:46:09 UTC (rev 180403)
+++ PKGBUILD2016-06-18 00:55:04 UTC (rev 180404)
@@ -5,7 +5,7 @@
 
 pkgbase=salt
 pkgname=(salt-zmq salt-raet)
-pkgver=2016.3.0
+pkgver=2016.3.1
 pkgrel=1
 pkgdesc='Central system and configuration manager'
 arch=('any')
@@ -32,7 +32,7 @@
 install=salt.install
 conflicts=('salt')
 
source=("https://github.com/saltstack/salt/releases/download/v$pkgver/salt-$pkgver.tar.gz;)
-md5sums=('8ed82cfb3f9b1764a035edbdacf0fea9')
+md5sums=('04f763287fbcbb390ca53c6800e2eea7')
 
 package_salt-zmq() {
   cd $pkgbase-$pkgver


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

2016-06-17 Thread Sébastien Luttringer
Date: Saturday, June 18, 2016 @ 00:45:56
  Author: seblu
Revision: 180402

upgpkg: unifi 5.0.7-2

- fix FS#49702

Modified:
  unifi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-06-18 00:28:19 UTC (rev 180401)
+++ PKGBUILD2016-06-18 00:45:56 UTC (rev 180402)
@@ -4,7 +4,7 @@
 
 pkgname=unifi
 pkgver=5.0.7
-pkgrel=1
+pkgrel=2
 pkgdesc='Centralized management system for Ubiquiti UniFi AP'
 arch=('any')
 url='https://community.ubnt.com/unifi'
@@ -11,8 +11,7 @@
 # We are allowed to ship the software in our repository
 # 
https://mailman.archlinux.org/mailman/private/arch-dev/2014-August/015690.html
 license=('custom')
-depends=('mongodb' 'jre7-openjdk-headless' 'fontconfig')
-makedepends=('jdk7-openjdk')
+depends=('mongodb' 'java-runtime-headless' 'fontconfig')
 conflicts=('tomcat-native')
 install=unifi.install
 source=("UniFi-$pkgver.zip::http://dl.ubnt.com/unifi/$pkgver/UniFi.unix.zip;


[arch-commits] Commit in unifi/repos/community-any (10 files)

2016-06-17 Thread Sébastien Luttringer
Date: Saturday, June 18, 2016 @ 00:46:09
  Author: seblu
Revision: 180403

archrelease: copy trunk to community-any

Added:
  unifi/repos/community-any/LICENSE
(from rev 180402, unifi/trunk/LICENSE)
  unifi/repos/community-any/PKGBUILD
(from rev 180402, unifi/trunk/PKGBUILD)
  unifi/repos/community-any/unifi.install
(from rev 180402, unifi/trunk/unifi.install)
  unifi/repos/community-any/unifi.service
(from rev 180402, unifi/trunk/unifi.service)
  unifi/repos/community-any/unifi.sysusers
(from rev 180402, unifi/trunk/unifi.sysusers)
Deleted:
  unifi/repos/community-any/LICENSE
  unifi/repos/community-any/PKGBUILD
  unifi/repos/community-any/unifi.install
  unifi/repos/community-any/unifi.service
  unifi/repos/community-any/unifi.sysusers

+
 LICENSE|6 +-
 PKGBUILD   |  111 +++
 unifi.install  |   16 +++
 unifi.service  |   24 +--
 unifi.sysusers |2 
 5 files changed, 79 insertions(+), 80 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2016-06-18 00:45:56 UTC (rev 180402)
+++ LICENSE 2016-06-18 00:46:09 UTC (rev 180403)
@@ -1,3 +0,0 @@
-Ubiquiti Networks - All Rights Reserved.
-Permission granted to Archlinux to re-package.
-https://mailman.archlinux.org/mailman/private/arch-dev/2014-August/015690.html

Copied: unifi/repos/community-any/LICENSE (from rev 180402, unifi/trunk/LICENSE)
===
--- LICENSE (rev 0)
+++ LICENSE 2016-06-18 00:46:09 UTC (rev 180403)
@@ -0,0 +1,3 @@
+Ubiquiti Networks - All Rights Reserved.
+Permission granted to Archlinux to re-package.
+https://mailman.archlinux.org/mailman/private/arch-dev/2014-August/015690.html

Deleted: PKGBUILD
===
--- PKGBUILD2016-06-18 00:45:56 UTC (rev 180402)
+++ PKGBUILD2016-06-18 00:46:09 UTC (rev 180403)
@@ -1,56 +0,0 @@
-# $Id$
-# Maintainer: Sébastien "Seblu" Luttringer 
-# Contributor: Frederik Schwan frederik dot schwan at linux dot com>
-
-pkgname=unifi
-pkgver=5.0.7
-pkgrel=1
-pkgdesc='Centralized management system for Ubiquiti UniFi AP'
-arch=('any')
-url='https://community.ubnt.com/unifi'
-# We are allowed to ship the software in our repository
-# 
https://mailman.archlinux.org/mailman/private/arch-dev/2014-August/015690.html
-license=('custom')
-depends=('mongodb' 'jre7-openjdk-headless' 'fontconfig')
-makedepends=('jdk7-openjdk')
-conflicts=('tomcat-native')
-install=unifi.install
-source=("UniFi-$pkgver.zip::http://dl.ubnt.com/unifi/$pkgver/UniFi.unix.zip;
-'unifi.service'
-'unifi.sysusers'
-'LICENSE')
-md5sums=('eb437c52d9fda7a584d09a520d43d1a9'
- '79998cabf110d9a96ba4d3367101c94c'
- 'a92291a0074a5dcf414da4dfe812bc2a'
- '63a6f9e67db6a466f31a40c228c16d63')
-
-package() {
-  # lib
-  install -dm755 "$pkgdir/usr/lib/unifi"
-  cp -r UniFi/{bin,dl,lib,webapps} "$pkgdir/usr/lib/unifi"
-
-  # data
-  install -dm750 "$pkgdir/var/lib/unifi"
-  for _d in data run work; do
-install -dm750 "$pkgdir/var/lib/unifi/$_d"
-ln -s "../../../var/lib/unifi/$_d" "$pkgdir/usr/lib/unifi/$_d"
-  done
-  chown -R 113:113 "$pkgdir/var/lib/unifi"
-
-  # log
-  install -dm750 "$pkgdir/var/log/unifi"
-  ln -s ../../../var/log/unifi "$pkgdir/usr/lib/unifi/logs"
-  chown -R 113:113 "$pkgdir/var/log/unifi"
-
-  # readme
-  install -Dm644 UniFi/readme.txt "$pkgdir/usr/share/doc/$pkgname/README"
-
-  # license
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-
-  # systemd
-  install -Dm644 $pkgname.service 
"$pkgdir/usr/lib/systemd/system/$pkgname.service"
-  install -Dm644 $pkgname.sysusers "$pkgdir/usr/lib/sysusers.d/$pkgname.conf"
-}
-
-# vim:set ts=2 sw=2 ft=sh et:

Copied: unifi/repos/community-any/PKGBUILD (from rev 180402, 
unifi/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-06-18 00:46:09 UTC (rev 180403)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Sébastien "Seblu" Luttringer 
+# Contributor: Frederik Schwan frederik dot schwan at linux dot com>
+
+pkgname=unifi
+pkgver=5.0.7
+pkgrel=2
+pkgdesc='Centralized management system for Ubiquiti UniFi AP'
+arch=('any')
+url='https://community.ubnt.com/unifi'
+# We are allowed to ship the software in our repository
+# 
https://mailman.archlinux.org/mailman/private/arch-dev/2014-August/015690.html
+license=('custom')
+depends=('mongodb' 'java-runtime-headless' 'fontconfig')
+conflicts=('tomcat-native')
+install=unifi.install
+source=("UniFi-$pkgver.zip::http://dl.ubnt.com/unifi/$pkgver/UniFi.unix.zip;
+'unifi.service'
+'unifi.sysusers'
+'LICENSE')
+md5sums=('eb437c52d9fda7a584d09a520d43d1a9'
+ 

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

2016-06-17 Thread Sébastien Luttringer
Date: Saturday, June 18, 2016 @ 00:29:21
  Author: seblu
Revision: 270165

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

Added:
  btrfs-progs/repos/testing-i686/
  btrfs-progs/repos/testing-i686/PKGBUILD
(from rev 270164, btrfs-progs/trunk/PKGBUILD)
  btrfs-progs/repos/testing-i686/btrfs-progs.install
(from rev 270164, btrfs-progs/trunk/btrfs-progs.install)
  btrfs-progs/repos/testing-i686/btrfs-scrub@.service
(from rev 270164, btrfs-progs/trunk/btrfs-scrub@.service)
  btrfs-progs/repos/testing-i686/btrfs-scrub@.timer
(from rev 270164, btrfs-progs/trunk/btrfs-scrub@.timer)
  btrfs-progs/repos/testing-i686/initcpio-hook-btrfs
(from rev 270164, btrfs-progs/trunk/initcpio-hook-btrfs)
  btrfs-progs/repos/testing-i686/initcpio-install-btrfs
(from rev 270164, btrfs-progs/trunk/initcpio-install-btrfs)
  btrfs-progs/repos/testing-x86_64/
  btrfs-progs/repos/testing-x86_64/PKGBUILD
(from rev 270164, btrfs-progs/trunk/PKGBUILD)
  btrfs-progs/repos/testing-x86_64/btrfs-progs.install
(from rev 270164, btrfs-progs/trunk/btrfs-progs.install)
  btrfs-progs/repos/testing-x86_64/btrfs-scrub@.service
(from rev 270164, btrfs-progs/trunk/btrfs-scrub@.service)
  btrfs-progs/repos/testing-x86_64/btrfs-scrub@.timer
(from rev 270164, btrfs-progs/trunk/btrfs-scrub@.timer)
  btrfs-progs/repos/testing-x86_64/initcpio-hook-btrfs
(from rev 270164, btrfs-progs/trunk/initcpio-hook-btrfs)
  btrfs-progs/repos/testing-x86_64/initcpio-install-btrfs
(from rev 270164, btrfs-progs/trunk/initcpio-install-btrfs)

---+
 testing-i686/PKGBUILD |   60 
 testing-i686/btrfs-progs.install  |   15 
 testing-i686/btrfs-scrub@.service |7 +++
 testing-i686/btrfs-scrub@.timer   |   10 +
 testing-i686/initcpio-hook-btrfs  |7 +++
 testing-i686/initcpio-install-btrfs   |   17 +
 testing-x86_64/PKGBUILD   |   60 
 testing-x86_64/btrfs-progs.install|   15 
 testing-x86_64/btrfs-scrub@.service   |7 +++
 testing-x86_64/btrfs-scrub@.timer |   10 +
 testing-x86_64/initcpio-hook-btrfs|7 +++
 testing-x86_64/initcpio-install-btrfs |   17 +
 12 files changed, 232 insertions(+)

Copied: btrfs-progs/repos/testing-i686/PKGBUILD (from rev 270164, 
btrfs-progs/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-06-18 00:29:21 UTC (rev 270165)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Sébastien "Seblu" Luttringer 
+# Contributor: Tom Gundersen 
+# Contributor: Tobias Powalowski 
+
+pkgname=btrfs-progs
+pkgver=4.6
+pkgrel=1
+pkgdesc='Btrfs filesystem utilities'
+arch=('i686' 'x86_64')
+depends=('glibc' 'libutil-linux' 'e2fsprogs' 'lzo' 'zlib')
+makedepends=('git' 'asciidoc' 'xmlto')
+url='http://btrfs.wiki.kernel.org/'
+replaces=('btrfs-progs-unstable')
+conflicts=('btrfs-progs-unstable')
+provides=('btrfs-progs-unstable')
+license=('GPL2')
+source=("git://git.kernel.org/pub/scm/linux/kernel/git/kdave/$pkgname.git#tag=v$pkgver"
+'initcpio-install-btrfs'
+'initcpio-hook-btrfs'
+'btrfs-scrub@.service'
+'btrfs-scrub@.timer')
+install=btrfs-progs.install
+options=(!staticlibs)
+md5sums=('SKIP'
+ '7241ba3a4286d08da0d50b7176941112'
+ 'b09688a915a0ec8f40e2f5aacbabc9ad'
+ '794b867e09451284c545bae112aa0cfd'
+ 'a290e0ab88b7b4675cd20f5a2befc8cb')
+
+build() {
+  cd $pkgname
+  ./autogen.sh
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd $pkgname
+ ./btrfs filesystem show
+}
+
+package() {
+  cd $pkgname
+  make prefix="$pkgdir"/usr install
+
+  # install bash completion (FS#44618)
+  install -Dm644 btrfs-completion 
"$pkgdir/usr/share/bash-completion/completions/btrfs"
+
+  # install mkinitcpio hooks
+  cd "$srcdir"
+  install -Dm644 initcpio-install-btrfs 
"$pkgdir/usr/lib/initcpio/install/btrfs"
+  install -Dm644 initcpio-hook-btrfs "$pkgdir/usr/lib/initcpio/hooks/btrfs"
+
+  # install scrub service/timer
+  install -Dm644 btrfs-scrub@.service 
"$pkgdir/usr/lib/systemd/system/btrfs-scrub@.service"
+  install -Dm644 btrfs-scrub@.timer 
"$pkgdir/usr/lib/systemd/system/btrfs-scrub@.timer"
+}
+
+# vim:set ts=2 sw=2 ft=sh et:

Copied: btrfs-progs/repos/testing-i686/btrfs-progs.install (from rev 270164, 
btrfs-progs/trunk/btrfs-progs.install)
===
--- testing-i686/btrfs-progs.install(rev 0)
+++ testing-i686/btrfs-progs.install2016-06-18 00:29:21 UTC (rev 270165)
@@ -0,0 +1,15 @@
+#!/bin/sh
+
+## arg 1:  the new package version
+## arg 2:  the old package version
+post_upgrade() {
+  if (( "$(vercmp "$2" 0.19.20121005)" < 0 )); then
+echo 'btrfs multi-device support 

[arch-commits] Commit in salt/repos (5 files)

2016-06-17 Thread Sébastien Luttringer
Date: Saturday, June 18, 2016 @ 00:28:19
  Author: seblu
Revision: 180401

db-move: moved salt from [community-testing] to [community] (any)

Added:
  salt/repos/community-any/PKGBUILD
(from rev 180400, salt/repos/community-testing-any/PKGBUILD)
  salt/repos/community-any/salt.install
(from rev 180400, salt/repos/community-testing-any/salt.install)
Deleted:
  salt/repos/community-any/PKGBUILD
  salt/repos/community-any/salt.install
  salt/repos/community-testing-any/

+
 /PKGBUILD  |   97 +++
 /salt.install  |   15 ++
 community-any/PKGBUILD |   97 ---
 community-any/salt.install |   15 --
 4 files changed, 112 insertions(+), 112 deletions(-)

Deleted: community-any/PKGBUILD
===
--- community-any/PKGBUILD  2016-06-18 00:20:30 UTC (rev 180400)
+++ community-any/PKGBUILD  2016-06-18 00:28:19 UTC (rev 180401)
@@ -1,97 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Luttringer
-# Maintainer: Daniel Wallace 
-# Contibutor: Christer Edwards 
-
-pkgbase=salt
-pkgname=(salt-zmq salt-raet)
-pkgver=2015.8.10
-pkgrel=1
-pkgdesc='Central system and configuration manager'
-arch=('any')
-url='http://saltstack.org/'
-license=('Apache')
-makedepends=('python2'
- 'python2-jinja'
- 'python2-msgpack'
- 'python2-yaml'
- 'python2-markupsafe'
- 'python2-requests'
- 'python2-libnacl'
- 'python2-ioflo'
- 'python2-raet'
- 'python2-pyzmq'
- 'python2-crypto'
- 'python2-m2crypto'
- 'python2-systemd'
- 'python2-tornado')
-optdepends=('dmidecode: decode SMBIOS/DMI tables'
-'python2-pygit2: gitfs support')
-backup=('etc/salt/master'
-'etc/salt/minion')
-install=salt.install
-conflicts=('salt')
-source=("https://github.com/saltstack/salt/releases/download/v$pkgver/salt-$pkgver.tar.gz;)
-md5sums=('88f4e2f81c7c3c0681cff172b390daa7')
-
-package_salt-zmq() {
-  cd $pkgbase-$pkgver
-  provides=('salt' 'salt-api')
-  replaces=('salt<=2014.1.13' 'salt-api<2014.7')
-  depends=('python2-jinja'
-   'python2-msgpack'
-   'python2-yaml'
-   'python2-markupsafe'
-   'python2-requests'
-   'python2-pyzmq'
-   'python2-crypto'
-   'python2-m2crypto'
-   'python2-systemd'
-   'python2-tornado')
-  python2 setup.py clean
-  python2 setup.py --salt-pidfile-dir="/run/salt" install --root="$pkgdir" 
--optimize=1
-
-  # default config
-  install -Dm644 conf/master "$pkgdir/etc/salt/master"
-  install -Dm644 conf/minion "$pkgdir/etc/salt/minion"
-
-  # systemd services
-  for _svc in salt-master.service salt-syndic.service salt-minion.service 
salt-api.service; do
-install -Dm644 pkg/$_svc "$pkgdir/usr/lib/systemd/system/$_svc"
-  done
-  install -Dm644 pkg/salt.bash 
"$pkgdir/usr/share/bash-completion/completions/salt"
-  install -Dm644 pkg/zsh_completion.zsh 
"$pkgdir/usr/share/zsh/site-functions/_salt"
-}
-
-package_salt-raet() {
-  cd $pkgbase-$pkgver
-  provides=('salt' 'salt-api')
-  depends=('python2-jinja'
-   'python2-msgpack'
-   'python2-yaml'
-   'python2-markupsafe'
-   'python2-requests'
-   'python2-libnacl'
-   'python2-ioflo'
-   'python2-raet'
-   'python2-tornado'
-   'python2-systemd')
-  python2 setup.py clean
-  python2 setup.py --salt-pidfile-dir="/run/salt" --salt-transport=raet 
install --root="$pkgdir" --optimize=1
-
-  # default config
-  install -Dm644 conf/master "$pkgdir/etc/salt/master"
-  install -Dm644 conf/minion "$pkgdir/etc/salt/minion"
-  install -d "$pkgdir/etc/salt/master.d/" "$pkgdir/etc/salt/minion.d/"
-  echo 'transport: raet' > "$pkgdir/etc/salt/master.d/transport.conf"
-  echo 'transport: raet' > "$pkgdir/etc/salt/minion.d/transport.conf"
-
-  # systemd services
-  for _svc in salt-master.service salt-syndic.service salt-minion.service 
salt-api.service; do
-install -Dm644 pkg/$_svc "$pkgdir/usr/lib/systemd/system/$_svc"
-  done
-  install -Dm644 pkg/salt.bash 
"$pkgdir/usr/share/bash-completion/completions/salt"
-  install -Dm644 pkg/zsh_completion.zsh 
"$pkgdir/usr/share/zsh/site-functions/_salt"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: salt/repos/community-any/PKGBUILD (from rev 180400, 
salt/repos/community-testing-any/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2016-06-18 00:28:19 UTC (rev 180401)
@@ -0,0 +1,97 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+# Maintainer: Daniel Wallace 
+# Contibutor: Christer Edwards 
+
+pkgbase=salt
+pkgname=(salt-zmq salt-raet)
+pkgver=2016.3.0

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

2016-06-17 Thread Sébastien Luttringer
Date: Saturday, June 18, 2016 @ 00:28:54
  Author: seblu
Revision: 270164

upgpkg: btrfs-progs 4.6-1

Modified:
  btrfs-progs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-06-17 23:37:52 UTC (rev 270163)
+++ PKGBUILD2016-06-18 00:28:54 UTC (rev 270164)
@@ -4,7 +4,7 @@
 # Contributor: Tobias Powalowski 
 
 pkgname=btrfs-progs
-pkgver=4.5.3
+pkgver=4.6
 pkgrel=1
 pkgdesc='Btrfs filesystem utilities'
 arch=('i686' 'x86_64')


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

2016-06-17 Thread Sébastien Luttringer
Date: Saturday, June 18, 2016 @ 00:20:30
  Author: seblu
Revision: 180400

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

Added:
  lldpd/repos/community-i686/LICENSE
(from rev 180399, lldpd/trunk/LICENSE)
  lldpd/repos/community-i686/PKGBUILD
(from rev 180399, lldpd/trunk/PKGBUILD)
  lldpd/repos/community-i686/lldpd.install
(from rev 180399, lldpd/trunk/lldpd.install)
  lldpd/repos/community-i686/lldpd.service
(from rev 180399, lldpd/trunk/lldpd.service)
  lldpd/repos/community-i686/lldpd.sysusers
(from rev 180399, lldpd/trunk/lldpd.sysusers)
  lldpd/repos/community-i686/lldpd.tmpfiles
(from rev 180399, lldpd/trunk/lldpd.tmpfiles)
  lldpd/repos/community-x86_64/LICENSE
(from rev 180399, lldpd/trunk/LICENSE)
  lldpd/repos/community-x86_64/PKGBUILD
(from rev 180399, lldpd/trunk/PKGBUILD)
  lldpd/repos/community-x86_64/lldpd.install
(from rev 180399, lldpd/trunk/lldpd.install)
  lldpd/repos/community-x86_64/lldpd.service
(from rev 180399, lldpd/trunk/lldpd.service)
  lldpd/repos/community-x86_64/lldpd.sysusers
(from rev 180399, lldpd/trunk/lldpd.sysusers)
  lldpd/repos/community-x86_64/lldpd.tmpfiles
(from rev 180399, lldpd/trunk/lldpd.tmpfiles)
Deleted:
  lldpd/repos/community-i686/LICENSE
  lldpd/repos/community-i686/PKGBUILD
  lldpd/repos/community-i686/lldpd.install
  lldpd/repos/community-i686/lldpd.service
  lldpd/repos/community-i686/lldpd.sysusers
  lldpd/repos/community-i686/lldpd.tmpfiles
  lldpd/repos/community-x86_64/LICENSE
  lldpd/repos/community-x86_64/PKGBUILD
  lldpd/repos/community-x86_64/lldpd.install
  lldpd/repos/community-x86_64/lldpd.service
  lldpd/repos/community-x86_64/lldpd.sysusers
  lldpd/repos/community-x86_64/lldpd.tmpfiles

-+
 /LICENSE|   22 ++
 /PKGBUILD   |  130 ++
 /lldpd.install  |   22 ++
 /lldpd.service  |   24 +++
 /lldpd.sysusers |2 
 /lldpd.tmpfiles |2 
 community-i686/LICENSE  |   11 ---
 community-i686/PKGBUILD |   65 ---
 community-i686/lldpd.install|   11 ---
 community-i686/lldpd.service|   12 ---
 community-i686/lldpd.sysusers   |1 
 community-i686/lldpd.tmpfiles   |1 
 community-x86_64/LICENSE|   11 ---
 community-x86_64/PKGBUILD   |   65 ---
 community-x86_64/lldpd.install  |   11 ---
 community-x86_64/lldpd.service  |   12 ---
 community-x86_64/lldpd.sysusers |1 
 community-x86_64/lldpd.tmpfiles |1 
 18 files changed, 202 insertions(+), 202 deletions(-)

Deleted: community-i686/LICENSE
===
--- community-i686/LICENSE  2016-06-18 00:19:54 UTC (rev 180399)
+++ community-i686/LICENSE  2016-06-18 00:20:30 UTC (rev 180400)
@@ -1,11 +0,0 @@
-Permission to use, copy, modify, and/or distribute this software for any
-purpose with or without fee is hereby granted, provided that the above
-copyright notice and this permission notice appear in all copies.
-
-THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
-WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
-MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
-ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
-WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
-ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
-OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

Copied: lldpd/repos/community-i686/LICENSE (from rev 180399, 
lldpd/trunk/LICENSE)
===
--- community-i686/LICENSE  (rev 0)
+++ community-i686/LICENSE  2016-06-18 00:20:30 UTC (rev 180400)
@@ -0,0 +1,11 @@
+Permission to use, copy, modify, and/or distribute this software for any
+purpose with or without fee is hereby granted, provided that the above
+copyright notice and this permission notice appear in all copies.
+
+THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-06-18 00:19:54 UTC (rev 180399)
+++ community-i686/PKGBUILD 2016-06-18 00:20:30 UTC (rev 180400)
@@ -1,65 +0,0 @@
-# $Id$
-# Maintainer: Sébastien "Seblu" Luttringer
-# Contributor: Brian 

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

2016-06-17 Thread Sébastien Luttringer
Date: Saturday, June 18, 2016 @ 00:19:54
  Author: seblu
Revision: 180399

upgpkg: lldpd 0.9.4-1

Modified:
  lldpd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-06-17 23:58:23 UTC (rev 180398)
+++ PKGBUILD2016-06-18 00:19:54 UTC (rev 180399)
@@ -3,7 +3,7 @@
 # Contributor: Brian Bidulock 
 
 pkgname=lldpd
-pkgver=0.9.2
+pkgver=0.9.4
 pkgrel=1
 pkgdesc='802.1ab implementation (LLDP) to help you locate neighbors'
 arch=('i686' 'x86_64')
@@ -18,7 +18,7 @@
 'lldpd.service'
 'lldpd.sysusers'
 'lldpd.tmpfiles')
-md5sums=('b809887bc927fb558fd5dd64b6c0a494'
+md5sums=('53f6c4db225159163f43e973d6c0160d'
  '8ae98663bac55afe5d989919d296f28a'
  'a650af7390db0632480184f9f2e7ee4a'
  '8623610442a9d553de764b50046cd6d3'


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

2016-06-17 Thread Anatol Pomozov
Date: Friday, June 17, 2016 @ 23:58:23
  Author: anatolik
Revision: 180398

archrelease: copy trunk to community-any

Added:
  codespell/repos/community-any/PKGBUILD
(from rev 180397, codespell/trunk/PKGBUILD)
Deleted:
  codespell/repos/community-any/PKGBUILD

--+
 PKGBUILD |   65 +++--
 1 file changed, 29 insertions(+), 36 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-06-17 23:57:42 UTC (rev 180397)
+++ PKGBUILD2016-06-17 23:58:23 UTC (rev 180398)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Anatol Pomozov
-
-pkgname=codespell
-pkgver=1.9.1
-pkgrel=2
-pkgdesc='Fix common misspellings in source code'
-arch=(any)
-url='https://github.com/lucasdemarchi/codespell'
-license=(GPL2)
-depends=(python)
-checkdepends=(python-nose)
-source=(https://pypi.io/packages/source/c/codespell/codespell-$pkgver.tar.gz
-
default_arg.patch::https://github.com/Eric89GXL/codespell/commit/e9d8629cd950fb92f2d951a1517e1d5a09d2d74b.patch)
-sha1sums=('633f23643a740bbb7157d910e400c863942c317a'
-  'f4c61625cc20d61a15e2e9ac5c720c5a65ca3118')
-
-prepare() {
-  cd codespell-$pkgver
-  patch -p1 < ../default_arg.patch
-}
-
-build() {
-  cd codespell-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd codespell-$pkgver
-  python setup.py test
-}
-
-package() {
-  cd codespell-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-}

Copied: codespell/repos/community-any/PKGBUILD (from rev 180397, 
codespell/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-06-17 23:58:23 UTC (rev 180398)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Anatol Pomozov
+
+pkgname=codespell
+pkgver=1.9.2
+pkgrel=1
+pkgdesc='Fix common misspellings in source code'
+arch=(any)
+url='https://github.com/lucasdemarchi/codespell'
+license=(GPL2)
+depends=(python)
+checkdepends=(python-nose)
+source=(https://pypi.io/packages/source/c/codespell/codespell-$pkgver.tar.gz)
+sha1sums=('65e62aa0ad23690ab390dbacdd16500cb77f3283')
+
+build() {
+  cd codespell-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd codespell-$pkgver
+  python setup.py test
+}
+
+package() {
+  cd codespell-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+}


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

2016-06-17 Thread Anatol Pomozov
Date: Friday, June 17, 2016 @ 23:57:42
  Author: anatolik
Revision: 180397

upgpkg: codespell 1.9.2-1

Modified:
  codespell/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-06-17 23:44:19 UTC (rev 180396)
+++ PKGBUILD2016-06-17 23:57:42 UTC (rev 180397)
@@ -2,8 +2,8 @@
 # Maintainer: Anatol Pomozov
 
 pkgname=codespell
-pkgver=1.9.1
-pkgrel=2
+pkgver=1.9.2
+pkgrel=1
 pkgdesc='Fix common misspellings in source code'
 arch=(any)
 url='https://github.com/lucasdemarchi/codespell'
@@ -10,16 +10,9 @@
 license=(GPL2)
 depends=(python)
 checkdepends=(python-nose)
-source=(https://pypi.io/packages/source/c/codespell/codespell-$pkgver.tar.gz
-
default_arg.patch::https://github.com/Eric89GXL/codespell/commit/e9d8629cd950fb92f2d951a1517e1d5a09d2d74b.patch)
-sha1sums=('633f23643a740bbb7157d910e400c863942c317a'
-  'f4c61625cc20d61a15e2e9ac5c720c5a65ca3118')
+source=(https://pypi.io/packages/source/c/codespell/codespell-$pkgver.tar.gz)
+sha1sums=('65e62aa0ad23690ab390dbacdd16500cb77f3283')
 
-prepare() {
-  cd codespell-$pkgver
-  patch -p1 < ../default_arg.patch
-}
-
 build() {
   cd codespell-$pkgver
   python setup.py build


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

2016-06-17 Thread Sébastien Luttringer
Date: Friday, June 17, 2016 @ 23:44:00
  Author: seblu
Revision: 180395

upgpkg: unifi 5.0.7-1

Modified:
  unifi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-06-17 20:51:00 UTC (rev 180394)
+++ PKGBUILD2016-06-17 23:44:00 UTC (rev 180395)
@@ -3,7 +3,7 @@
 # Contributor: Frederik Schwan frederik dot schwan at linux dot com>
 
 pkgname=unifi
-pkgver=5.0.6
+pkgver=5.0.7
 pkgrel=1
 pkgdesc='Centralized management system for Ubiquiti UniFi AP'
 arch=('any')
@@ -19,7 +19,7 @@
 'unifi.service'
 'unifi.sysusers'
 'LICENSE')
-md5sums=('7e11000a33e36a05b237629d8cde6760'
+md5sums=('eb437c52d9fda7a584d09a520d43d1a9'
  '79998cabf110d9a96ba4d3367101c94c'
  'a92291a0074a5dcf414da4dfe812bc2a'
  '63a6f9e67db6a466f31a40c228c16d63')


[arch-commits] Commit in unifi/repos/community-any (10 files)

2016-06-17 Thread Sébastien Luttringer
Date: Friday, June 17, 2016 @ 23:44:19
  Author: seblu
Revision: 180396

archrelease: copy trunk to community-any

Added:
  unifi/repos/community-any/LICENSE
(from rev 180395, unifi/trunk/LICENSE)
  unifi/repos/community-any/PKGBUILD
(from rev 180395, unifi/trunk/PKGBUILD)
  unifi/repos/community-any/unifi.install
(from rev 180395, unifi/trunk/unifi.install)
  unifi/repos/community-any/unifi.service
(from rev 180395, unifi/trunk/unifi.service)
  unifi/repos/community-any/unifi.sysusers
(from rev 180395, unifi/trunk/unifi.sysusers)
Deleted:
  unifi/repos/community-any/LICENSE
  unifi/repos/community-any/PKGBUILD
  unifi/repos/community-any/unifi.install
  unifi/repos/community-any/unifi.service
  unifi/repos/community-any/unifi.sysusers

+
 LICENSE|6 +-
 PKGBUILD   |  112 +++
 unifi.install  |   16 +++
 unifi.service  |   24 +--
 unifi.sysusers |2 
 5 files changed, 80 insertions(+), 80 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2016-06-17 23:44:00 UTC (rev 180395)
+++ LICENSE 2016-06-17 23:44:19 UTC (rev 180396)
@@ -1,3 +0,0 @@
-Ubiquiti Networks - All Rights Reserved.
-Permission granted to Archlinux to re-package.
-https://mailman.archlinux.org/mailman/private/arch-dev/2014-August/015690.html

Copied: unifi/repos/community-any/LICENSE (from rev 180395, unifi/trunk/LICENSE)
===
--- LICENSE (rev 0)
+++ LICENSE 2016-06-17 23:44:19 UTC (rev 180396)
@@ -0,0 +1,3 @@
+Ubiquiti Networks - All Rights Reserved.
+Permission granted to Archlinux to re-package.
+https://mailman.archlinux.org/mailman/private/arch-dev/2014-August/015690.html

Deleted: PKGBUILD
===
--- PKGBUILD2016-06-17 23:44:00 UTC (rev 180395)
+++ PKGBUILD2016-06-17 23:44:19 UTC (rev 180396)
@@ -1,56 +0,0 @@
-# $Id$
-# Maintainer: Sébastien "Seblu" Luttringer 
-# Contributor: Frederik Schwan frederik dot schwan at linux dot com>
-
-pkgname=unifi
-pkgver=5.0.6
-pkgrel=1
-pkgdesc='Centralized management system for Ubiquiti UniFi AP'
-arch=('any')
-url='https://community.ubnt.com/unifi'
-# We are allowed to ship the software in our repository
-# 
https://mailman.archlinux.org/mailman/private/arch-dev/2014-August/015690.html
-license=('custom')
-depends=('mongodb' 'jre7-openjdk-headless' 'fontconfig')
-makedepends=('jdk7-openjdk')
-conflicts=('tomcat-native')
-install=unifi.install
-source=("UniFi-$pkgver.zip::http://dl.ubnt.com/unifi/$pkgver/UniFi.unix.zip;
-'unifi.service'
-'unifi.sysusers'
-'LICENSE')
-md5sums=('7e11000a33e36a05b237629d8cde6760'
- '79998cabf110d9a96ba4d3367101c94c'
- 'a92291a0074a5dcf414da4dfe812bc2a'
- '63a6f9e67db6a466f31a40c228c16d63')
-
-package() {
-  # lib
-  install -dm755 "$pkgdir/usr/lib/unifi"
-  cp -r UniFi/{bin,dl,lib,webapps} "$pkgdir/usr/lib/unifi"
-
-  # data
-  install -dm750 "$pkgdir/var/lib/unifi"
-  for _d in data run work; do
-install -dm750 "$pkgdir/var/lib/unifi/$_d"
-ln -s "../../../var/lib/unifi/$_d" "$pkgdir/usr/lib/unifi/$_d"
-  done
-  chown -R 113:113 "$pkgdir/var/lib/unifi"
-
-  # log
-  install -dm750 "$pkgdir/var/log/unifi"
-  ln -s ../../../var/log/unifi "$pkgdir/usr/lib/unifi/logs"
-  chown -R 113:113 "$pkgdir/var/log/unifi"
-
-  # readme
-  install -Dm644 UniFi/readme.txt "$pkgdir/usr/share/doc/$pkgname/README"
-
-  # license
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-
-  # systemd
-  install -Dm644 $pkgname.service 
"$pkgdir/usr/lib/systemd/system/$pkgname.service"
-  install -Dm644 $pkgname.sysusers "$pkgdir/usr/lib/sysusers.d/$pkgname.conf"
-}
-
-# vim:set ts=2 sw=2 ft=sh et:

Copied: unifi/repos/community-any/PKGBUILD (from rev 180395, 
unifi/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-06-17 23:44:19 UTC (rev 180396)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Sébastien "Seblu" Luttringer 
+# Contributor: Frederik Schwan frederik dot schwan at linux dot com>
+
+pkgname=unifi
+pkgver=5.0.7
+pkgrel=1
+pkgdesc='Centralized management system for Ubiquiti UniFi AP'
+arch=('any')
+url='https://community.ubnt.com/unifi'
+# We are allowed to ship the software in our repository
+# 
https://mailman.archlinux.org/mailman/private/arch-dev/2014-August/015690.html
+license=('custom')
+depends=('mongodb' 'jre7-openjdk-headless' 'fontconfig')
+makedepends=('jdk7-openjdk')
+conflicts=('tomcat-native')
+install=unifi.install
+source=("UniFi-$pkgver.zip::http://dl.ubnt.com/unifi/$pkgver/UniFi.unix.zip;
+'unifi.service'
+'unifi.sysusers'
+'LICENSE')
+md5sums=('eb437c52d9fda7a584d09a520d43d1a9'
+ 

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

2016-06-17 Thread Sébastien Luttringer
Date: Friday, June 17, 2016 @ 23:37:52
  Author: seblu
Revision: 270163

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

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

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

Deleted: testing-i686/PKGBUILD
===
--- testing-i686/PKGBUILD   2016-06-17 23:37:07 UTC (rev 270162)
+++ testing-i686/PKGBUILD   2016-06-17 23:37:52 UTC (rev 270163)
@@ -1,59 +0,0 @@
-# $Id$
-# Maintainer: Sébastien "Seblu" Luttringer
-# Contributor: Allan McRae 
-# Contributor: Eric Belanger 
-# Contributor: John Proctor 
-
-pkgname=pcre
-pkgver=8.39
-pkgrel=1
-pkgdesc='A library that implements Perl 5-style regular expressions'
-arch=('i686' 'x86_64')
-url='http://www.pcre.org/'
-license=('BSD')
-depends=('gcc-libs' 'readline' 'zlib' 'bzip2' 'bash')
-validpgpkeys=('45F68D54BBE23FB3039B46E59766E084FB0F43D8') # Philip Hazel
-source=("ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/$pkgname-$pkgver.tar.bz2"{,.sig})
-md5sums=('e3fca7650a0556a2647821679d81f585'
- 'SKIP')
-
-prepare() {
-  cd $pkgname-$pkgver
-  # apply patch from the source array (should be a pacman feature)
-  local filename
-  for filename in "${source[@]}"; do
-if [[ "$filename" =~ \.patch$ ]]; then
-  msg2 "Applying patch $filename"
-  patch -p1 -N -i "$srcdir/$filename"
-fi
-  done
-  :
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure \
---prefix=/usr \
---enable-unicode-properties \
---enable-pcre16 \
---enable-pcre32 \
---enable-jit \
---enable-pcregrep-libz \
---enable-pcregrep-libbz2 \
---enable-pcretest-libreadline
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make -j1 check
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-
-  install -Dm644 LICENCE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: pcre/repos/testing-i686/PKGBUILD (from rev 270162, pcre/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-06-17 23:37:52 UTC (rev 270163)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Sébastien "Seblu" Luttringer
+# Contributor: Allan McRae 
+# Contributor: Eric Belanger 
+# Contributor: John Proctor 
+
+pkgname=pcre
+pkgver=8.39
+pkgrel=1
+pkgdesc='A library that implements Perl 5-style regular expressions'
+arch=('i686' 'x86_64')
+url='http://www.pcre.org/'
+license=('BSD')
+depends=('gcc-libs' 'readline' 'zlib' 'bzip2' 'bash')
+validpgpkeys=('45F68D54BBE23FB3039B46E59766E084FB0F43D8') # Philip Hazel
+source=("ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/$pkgname-$pkgver.tar.bz2"{,.sig})
+md5sums=('e3fca7650a0556a2647821679d81f585'
+ 'SKIP')
+
+prepare() {
+  cd $pkgname-$pkgver
+  # apply patch from the source array (should be a pacman feature)
+  local filename
+  for filename in "${source[@]}"; do
+if [[ "$filename" =~ \.patch$ ]]; then
+  msg2 "Applying patch $filename"
+  patch -p1 -N -i "$srcdir/$filename"
+fi
+  done
+  :
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure \
+--prefix=/usr \
+--enable-unicode-properties \
+--enable-pcre16 \
+--enable-pcre32 \
+--enable-jit \
+--enable-pcregrep-libz \
+--enable-pcregrep-libbz2 \
+--enable-pcretest-libreadline
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make -j1 check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+
+  install -Dm644 LICENCE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: testing-x86_64/PKGBUILD
===
--- testing-x86_64/PKGBUILD 2016-06-17 23:37:07 UTC (rev 270162)
+++ testing-x86_64/PKGBUILD 2016-06-17 23:37:52 UTC (rev 270163)
@@ -1,59 +0,0 @@
-# $Id$
-# Maintainer: Sébastien "Seblu" Luttringer
-# Contributor: Allan McRae 
-# Contributor: Eric Belanger 
-# Contributor: John Proctor 
-
-pkgname=pcre
-pkgver=8.39
-pkgrel=1
-pkgdesc='A library that implements Perl 5-style regular expressions'
-arch=('i686' 'x86_64')
-url='http://www.pcre.org/'
-license=('BSD')
-depends=('gcc-libs' 'readline' 'zlib' 'bzip2' 'bash')
-validpgpkeys=('45F68D54BBE23FB3039B46E59766E084FB0F43D8') # Philip Hazel

[arch-commits] Commit in pcre/trunk (01-CVE-2016-1283.patch PKGBUILD)

2016-06-17 Thread Sébastien Luttringer
Date: Friday, June 17, 2016 @ 23:36:55
  Author: seblu
Revision: 270161

upgpkg: pcre 8.39-1

Modified:
  pcre/trunk/PKGBUILD
Deleted:
  pcre/trunk/01-CVE-2016-1283.patch

+
 01-CVE-2016-1283.patch |   18 --
 PKGBUILD   |   12 +---
 2 files changed, 5 insertions(+), 25 deletions(-)

Deleted: 01-CVE-2016-1283.patch
===
--- 01-CVE-2016-1283.patch  2016-06-17 21:18:22 UTC (rev 270160)
+++ 01-CVE-2016-1283.patch  2016-06-17 23:36:55 UTC (rev 270161)
@@ -1,18 +0,0 @@
-Index: pcre_compile.c
-===
 a/pcre_compile.c   (revision 1635)
-+++ b/pcre_compile.c   (revision 1636)
-@@ -7311,7 +7311,12 @@
-   so far in order to get the number. If the name is not found, leave
-   the value of recno as 0 for a forward reference. */
- 
--  else
-+  /* This patch (removing "else") fixes a problem when a reference is
-+  to multiple identically named nested groups from within the nest.
-+  Once again, it is not the "proper" fix, and it results in an
-+  over-allocation of memory. */
-+
-+  /* else */
- {
- ng = cd->named_groups;
- for (i = 0; i < cd->names_found; i++, ng++)

Modified: PKGBUILD
===
--- PKGBUILD2016-06-17 21:18:22 UTC (rev 270160)
+++ PKGBUILD2016-06-17 23:36:55 UTC (rev 270161)
@@ -5,8 +5,8 @@
 # Contributor: John Proctor 
 
 pkgname=pcre
-pkgver=8.38
-pkgrel=3
+pkgver=8.39
+pkgrel=1
 pkgdesc='A library that implements Perl 5-style regular expressions'
 arch=('i686' 'x86_64')
 url='http://www.pcre.org/'
@@ -13,11 +13,9 @@
 license=('BSD')
 depends=('gcc-libs' 'readline' 'zlib' 'bzip2' 'bash')
 validpgpkeys=('45F68D54BBE23FB3039B46E59766E084FB0F43D8') # Philip Hazel
-source=("ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/$pkgname-$pkgver.tar.bz2"{,.sig}
-'01-CVE-2016-1283.patch')
-md5sums=('00aabbfe56d5a48b270f999b508c5ad2'
- 'SKIP'
- '722aba6455a3f0240eaa22289f0176a0')
+source=("ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/$pkgname-$pkgver.tar.bz2"{,.sig})
+md5sums=('e3fca7650a0556a2647821679d81f585'
+ 'SKIP')
 
 prepare() {
   cd $pkgname-$pkgver


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

2016-06-17 Thread Sébastien Luttringer
Date: Friday, June 17, 2016 @ 23:37:07
  Author: seblu
Revision: 270162

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

Added:
  pcre/repos/testing-i686/
  pcre/repos/testing-i686/PKGBUILD
(from rev 270161, pcre/trunk/PKGBUILD)
  pcre/repos/testing-x86_64/
  pcre/repos/testing-x86_64/PKGBUILD
(from rev 270161, pcre/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   59 ++
 testing-x86_64/PKGBUILD |   59 ++
 2 files changed, 118 insertions(+)

Copied: pcre/repos/testing-i686/PKGBUILD (from rev 270161, pcre/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-06-17 23:37:07 UTC (rev 270162)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Sébastien "Seblu" Luttringer
+# Contributor: Allan McRae 
+# Contributor: Eric Belanger 
+# Contributor: John Proctor 
+
+pkgname=pcre
+pkgver=8.39
+pkgrel=1
+pkgdesc='A library that implements Perl 5-style regular expressions'
+arch=('i686' 'x86_64')
+url='http://www.pcre.org/'
+license=('BSD')
+depends=('gcc-libs' 'readline' 'zlib' 'bzip2' 'bash')
+validpgpkeys=('45F68D54BBE23FB3039B46E59766E084FB0F43D8') # Philip Hazel
+source=("ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/$pkgname-$pkgver.tar.bz2"{,.sig})
+md5sums=('e3fca7650a0556a2647821679d81f585'
+ 'SKIP')
+
+prepare() {
+  cd $pkgname-$pkgver
+  # apply patch from the source array (should be a pacman feature)
+  local filename
+  for filename in "${source[@]}"; do
+if [[ "$filename" =~ \.patch$ ]]; then
+  msg2 "Applying patch $filename"
+  patch -p1 -N -i "$srcdir/$filename"
+fi
+  done
+  :
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure \
+--prefix=/usr \
+--enable-unicode-properties \
+--enable-pcre16 \
+--enable-pcre32 \
+--enable-jit \
+--enable-pcregrep-libz \
+--enable-pcregrep-libbz2 \
+--enable-pcretest-libreadline
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make -j1 check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+
+  install -Dm644 LICENCE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: pcre/repos/testing-x86_64/PKGBUILD (from rev 270161, 
pcre/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-06-17 23:37:07 UTC (rev 270162)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Sébastien "Seblu" Luttringer
+# Contributor: Allan McRae 
+# Contributor: Eric Belanger 
+# Contributor: John Proctor 
+
+pkgname=pcre
+pkgver=8.39
+pkgrel=1
+pkgdesc='A library that implements Perl 5-style regular expressions'
+arch=('i686' 'x86_64')
+url='http://www.pcre.org/'
+license=('BSD')
+depends=('gcc-libs' 'readline' 'zlib' 'bzip2' 'bash')
+validpgpkeys=('45F68D54BBE23FB3039B46E59766E084FB0F43D8') # Philip Hazel
+source=("ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/$pkgname-$pkgver.tar.bz2"{,.sig})
+md5sums=('e3fca7650a0556a2647821679d81f585'
+ 'SKIP')
+
+prepare() {
+  cd $pkgname-$pkgver
+  # apply patch from the source array (should be a pacman feature)
+  local filename
+  for filename in "${source[@]}"; do
+if [[ "$filename" =~ \.patch$ ]]; then
+  msg2 "Applying patch $filename"
+  patch -p1 -N -i "$srcdir/$filename"
+fi
+  done
+  :
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure \
+--prefix=/usr \
+--enable-unicode-properties \
+--enable-pcre16 \
+--enable-pcre32 \
+--enable-jit \
+--enable-pcregrep-libz \
+--enable-pcregrep-libbz2 \
+--enable-pcretest-libreadline
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make -j1 check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+
+  install -Dm644 LICENCE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in libreoffice-fresh/trunk (PKGBUILD.52)

2016-06-17 Thread Andreas Radke
Date: Friday, June 17, 2016 @ 21:18:22
  Author: andyrtr
Revision: 270160

prepare next major release

Modified:
  libreoffice-fresh/trunk/PKGBUILD.52

-+
 PKGBUILD.52 |   18 ++
 1 file changed, 6 insertions(+), 12 deletions(-)

Modified: PKGBUILD.52
===
--- PKGBUILD.52 2016-06-17 20:11:17 UTC (rev 270159)
+++ PKGBUILD.52 2016-06-17 21:18:22 UTC (rev 270160)
@@ -36,8 +36,8 @@
 _additional_source_url="http://dev-www.libreoffice.org/src;
 _additional_source_url2="http://dev-www.libreoffice.org/extern;
 source=(${_mirror}/libreoffice{,-help,-translations}-${_LOver}.tar.xz{,.asc}
-   ${_additional_source_url}/boost_1_59_0.tar.bz2
-   
${_additional_source_url}/1f24ab1d39f4a51faf22244c94a6203f-xmlsec1-1.2.14.tar.gz
+   ${_additional_source_url}/boost_1_60_0.tar.bz2
+   
${_additional_source_url}/ce12af00283eb90d9281956524250d6e-xmlsec1-1.2.20.tar.gz

${_additional_source_url}/35c94d2df8893241173de1d16b6034c0-swingExSrc.zip

${_additional_source_url}/798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip

${_additional_source_url}/a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip
@@ -69,8 +69,8 @@
update_liborcus_to_0.11.0.diff
remove_unnecessary_orcus_external_usage_from_makefiles.diff
gcc6_buildfix.diff)
-noextract=(boost_1_59_0.tar.bz2
-   1f24ab1d39f4a51faf22244c94a6203f-xmlsec1-1.2.14.tar.gz
+noextract=(boost_1_60_0.tar.bz2
+   ce12af00283eb90d9281956524250d6e-xmlsec1-1.2.20.tar.gz
35c94d2df8893241173de1d16b6034c0-swingExSrc.zip
798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip
a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip
@@ -104,8 +104,8 @@
  'SKIP'
  '946a70d47c609e15ba95b8640de77a5c'
  'SKIP'
- '6aa9a5c6a4ca1016edd0ed1178e3cb87'
- '1f24ab1d39f4a51faf22244c94a6203f'
+ '65a840e1a0b13a558ff19eeb2c4f0cbe'
+ 'ce12af00283eb90d9281956524250d6e'
  '35c94d2df8893241173de1d16b6034c0'
  '798b2ffdc8bcfe7bca2cf92b62caf685'
  'a7983f859eafb2677d7ff386a023bc40'
@@ -365,12 +365,6 @@
install -dm755 ${pkgdir}/etc/profile.d
install -m755 ${srcdir}/libreoffice-fresh.{sh,csh} 
${pkgdir}/etc/profile.d/
 
-   # move bash-completion files to its new place
-   install -dm755 ${pkgdir}/usr/share/bash-completion/completions
-   mv ${pkgdir}/etc/bash_completion.d/libreoffice.sh \
-   ${pkgdir}/usr/share/bash-completion/completions/libreoffice.sh 
# fails
-   rm -rf ${pkgdir}/etc/bash_completion.d
-
# make pyuno find its modules
install -dm755 ${pkgdir}/usr/lib/python3.5/site-packages
ln -svf /usr/lib/libreoffice/program/uno.py \


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

2016-06-17 Thread Anatol Pomozov
Date: Friday, June 17, 2016 @ 20:51:00
  Author: anatolik
Revision: 180394

archrelease: copy trunk to community-any

Added:
  codespell/repos/community-any/PKGBUILD
(from rev 180393, codespell/trunk/PKGBUILD)
Deleted:
  codespell/repos/community-any/PKGBUILD

--+
 PKGBUILD |   65 +
 1 file changed, 36 insertions(+), 29 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-06-17 20:50:36 UTC (rev 180393)
+++ PKGBUILD2016-06-17 20:51:00 UTC (rev 180394)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Anatol Pomozov
-
-pkgname=codespell
-pkgver=1.9.1
-pkgrel=1
-pkgdesc='Fix common misspellings in source code'
-arch=(any)
-url='https://github.com/lucasdemarchi/codespell'
-license=(GPL2)
-depends=(python)
-checkdepends=(python-nose)
-source=(https://pypi.io/packages/source/c/codespell/codespell-$pkgver.tar.gz)
-sha1sums=('633f23643a740bbb7157d910e400c863942c317a')
-
-build() {
-  cd "$srcdir/codespell-$pkgver"
-  python setup.py build
-}
-
-check() {
-  cd "$srcdir/codespell-$pkgver"
-  python setup.py test
-}
-
-package() {
-  cd "$srcdir/codespell-$pkgver"
-  python setup.py install --root="$pkgdir" --optimize=1
-}

Copied: codespell/repos/community-any/PKGBUILD (from rev 180393, 
codespell/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-06-17 20:51:00 UTC (rev 180394)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Anatol Pomozov
+
+pkgname=codespell
+pkgver=1.9.1
+pkgrel=2
+pkgdesc='Fix common misspellings in source code'
+arch=(any)
+url='https://github.com/lucasdemarchi/codespell'
+license=(GPL2)
+depends=(python)
+checkdepends=(python-nose)
+source=(https://pypi.io/packages/source/c/codespell/codespell-$pkgver.tar.gz
+
default_arg.patch::https://github.com/Eric89GXL/codespell/commit/e9d8629cd950fb92f2d951a1517e1d5a09d2d74b.patch)
+sha1sums=('633f23643a740bbb7157d910e400c863942c317a'
+  'f4c61625cc20d61a15e2e9ac5c720c5a65ca3118')
+
+prepare() {
+  cd codespell-$pkgver
+  patch -p1 < ../default_arg.patch
+}
+
+build() {
+  cd codespell-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd codespell-$pkgver
+  python setup.py test
+}
+
+package() {
+  cd codespell-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+}


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

2016-06-17 Thread Anatol Pomozov
Date: Friday, June 17, 2016 @ 20:50:36
  Author: anatolik
Revision: 180393

upgpkg: codespell 1.9.1-2

Fix 'https://github.com/lucasdemarchi/codespell/issues/84'

Modified:
  codespell/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-06-17 20:23:11 UTC (rev 180392)
+++ PKGBUILD2016-06-17 20:50:36 UTC (rev 180393)
@@ -3,7 +3,7 @@
 
 pkgname=codespell
 pkgver=1.9.1
-pkgrel=1
+pkgrel=2
 pkgdesc='Fix common misspellings in source code'
 arch=(any)
 url='https://github.com/lucasdemarchi/codespell'
@@ -10,20 +10,27 @@
 license=(GPL2)
 depends=(python)
 checkdepends=(python-nose)
-source=(https://pypi.io/packages/source/c/codespell/codespell-$pkgver.tar.gz)
-sha1sums=('633f23643a740bbb7157d910e400c863942c317a')
+source=(https://pypi.io/packages/source/c/codespell/codespell-$pkgver.tar.gz
+
default_arg.patch::https://github.com/Eric89GXL/codespell/commit/e9d8629cd950fb92f2d951a1517e1d5a09d2d74b.patch)
+sha1sums=('633f23643a740bbb7157d910e400c863942c317a'
+  'f4c61625cc20d61a15e2e9ac5c720c5a65ca3118')
 
+prepare() {
+  cd codespell-$pkgver
+  patch -p1 < ../default_arg.patch
+}
+
 build() {
-  cd "$srcdir/codespell-$pkgver"
+  cd codespell-$pkgver
   python setup.py build
 }
 
 check() {
-  cd "$srcdir/codespell-$pkgver"
+  cd codespell-$pkgver
   python setup.py test
 }
 
 package() {
-  cd "$srcdir/codespell-$pkgver"
+  cd codespell-$pkgver
   python setup.py install --root="$pkgdir" --optimize=1
 }


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

2016-06-17 Thread Antonio Rojas
Date: Friday, June 17, 2016 @ 20:23:11
  Author: arojas
Revision: 180392

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

Added:
  lbreakout2/repos/community-i686/PKGBUILD
(from rev 180391, lbreakout2/trunk/PKGBUILD)
  lbreakout2/repos/community-i686/lbreakout2.desktop
(from rev 180391, lbreakout2/trunk/lbreakout2.desktop)
  lbreakout2/repos/community-i686/lbreakout2.png
(from rev 180391, lbreakout2/trunk/lbreakout2.png)
  lbreakout2/repos/community-x86_64/PKGBUILD
(from rev 180391, lbreakout2/trunk/PKGBUILD)
  lbreakout2/repos/community-x86_64/lbreakout2.desktop
(from rev 180391, lbreakout2/trunk/lbreakout2.desktop)
  lbreakout2/repos/community-x86_64/lbreakout2.png
(from rev 180391, lbreakout2/trunk/lbreakout2.png)
Deleted:
  lbreakout2/repos/community-i686/PKGBUILD
  lbreakout2/repos/community-i686/lbreakout2.desktop
  lbreakout2/repos/community-i686/lbreakout2.png
  lbreakout2/repos/community-x86_64/PKGBUILD
  lbreakout2/repos/community-x86_64/lbreakout2.desktop
  lbreakout2/repos/community-x86_64/lbreakout2.png

-+
 /PKGBUILD   |   88 ++
 /lbreakout2.desktop |   20 +++
 community-i686/PKGBUILD |   44 -
 community-i686/lbreakout2.desktop   |   10 ---
 community-x86_64/PKGBUILD   |   44 -
 community-x86_64/lbreakout2.desktop |   10 ---
 6 files changed, 108 insertions(+), 108 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-06-17 20:22:36 UTC (rev 180391)
+++ community-i686/PKGBUILD 2016-06-17 20:23:11 UTC (rev 180392)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora 
-# Contributor: Tom Newsom 
-
-pkgname=lbreakout2
-pkgver=2.6.4
-pkgrel=2
-pkgdesc="A breakout game with nice effects, graphics, and sounds"
-arch=('i686' 'x86_64')
-url="http://lgames.sourceforge.net;
-license=('GPL')
-depends=('sdl_mixer' 'libpng')
-backup=('var/games/lbreakout2/lbreakout2.hscr')
-source=("http://downloads.sourceforge.net/lgames/${pkgname}-${pkgver/_/-}.tar.gz;
-'lbreakout2.desktop'
-   'lbreakout2.png')
-md5sums=('4849af72225a304267eb71a9c100cd48'
- '14cd34a72a8f4e3b8f385f9023625241'
- '94e2fa393eb2a7d4494641dec580573b')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver/_/-}
-
-  ./configure --prefix=/usr \
-  --localstatedir=/var/games/lbreakout2 
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver/_/-}
-
-  make DESTDIR=${pkgdir}/ doc_dir=/usr/share/doc install
-  
-  chmod -R 755 ${pkgdir}/usr
-  chown root:games ${pkgdir}/var/games
-  chmod 775 ${pkgdir}/var/games
-  chown root:games ${pkgdir}/var/games/lbreakout2
-  chmod 755 ${pkgdir}/var/games/lbreakout2
-  chown root:games ${pkgdir}/var/games/lbreakout2/lbreakout2.hscr
-  chmod 775 ${pkgdir}/var/games/lbreakout2/lbreakout2.hscr
-
-  install -Dm644 ${srcdir}/lbreakout2.png 
${pkgdir}/usr/share/pixmaps/lbreakout2.png
-  install -Dm644 ${srcdir}/lbreakout2.desktop 
${pkgdir}/usr/share/applications/lbreakout2.desktop
-}

Copied: lbreakout2/repos/community-i686/PKGBUILD (from rev 180391, 
lbreakout2/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-06-17 20:23:11 UTC (rev 180392)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Giovanni Scafora 
+# Contributor: Tom Newsom 
+
+pkgname=lbreakout2
+pkgver=2.6.5
+pkgrel=1
+pkgdesc="A breakout game with nice effects, graphics, and sounds"
+arch=('i686' 'x86_64')
+url="http://lgames.sourceforge.net;
+license=('GPL')
+depends=('sdl_mixer' 'libpng')
+backup=('var/games/lbreakout2/lbreakout2.hscr')
+source=("http://downloads.sourceforge.net/lgames/${pkgname}-${pkgver/_/-}.tar.gz;
+'lbreakout2.desktop'
+   'lbreakout2.png')
+md5sums=('1a9238b83f9f13f09b7a4d53e00b4e84'
+ '14cd34a72a8f4e3b8f385f9023625241'
+ '94e2fa393eb2a7d4494641dec580573b')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver/_/-}
+
+  ./configure --prefix=/usr \
+  --localstatedir=/var/games/lbreakout2 
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver/_/-}
+
+  make DESTDIR=${pkgdir}/ doc_dir=/usr/share/doc install
+  
+  chmod -R 755 ${pkgdir}/usr
+  chown root:games ${pkgdir}/var/games
+  chmod 775 ${pkgdir}/var/games
+  chown root:games ${pkgdir}/var/games/lbreakout2
+  chmod 755 ${pkgdir}/var/games/lbreakout2
+  chown root:games ${pkgdir}/var/games/lbreakout2/lbreakout2.hscr
+  chmod 775 ${pkgdir}/var/games/lbreakout2/lbreakout2.hscr
+
+  install -Dm644 ${srcdir}/lbreakout2.png 
${pkgdir}/usr/share/pixmaps/lbreakout2.png
+  install -Dm644 ${srcdir}/lbreakout2.desktop 
${pkgdir}/usr/share/applications/lbreakout2.desktop
+}

Deleted: 

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

2016-06-17 Thread Antonio Rojas
Date: Friday, June 17, 2016 @ 20:22:36
  Author: arojas
Revision: 180391

Update to 2.6.5

Modified:
  lbreakout2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-06-17 20:20:39 UTC (rev 180390)
+++ PKGBUILD2016-06-17 20:22:36 UTC (rev 180391)
@@ -3,8 +3,8 @@
 # Contributor: Tom Newsom 
 
 pkgname=lbreakout2
-pkgver=2.6.4
-pkgrel=2
+pkgver=2.6.5
+pkgrel=1
 pkgdesc="A breakout game with nice effects, graphics, and sounds"
 arch=('i686' 'x86_64')
 url="http://lgames.sourceforge.net;
@@ -14,7 +14,7 @@
 
source=("http://downloads.sourceforge.net/lgames/${pkgname}-${pkgver/_/-}.tar.gz;
 'lbreakout2.desktop'
'lbreakout2.png')
-md5sums=('4849af72225a304267eb71a9c100cd48'
+md5sums=('1a9238b83f9f13f09b7a4d53e00b4e84'
  '14cd34a72a8f4e3b8f385f9023625241'
  '94e2fa393eb2a7d4494641dec580573b')
 


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

2016-06-17 Thread Antonio Rojas
Date: Friday, June 17, 2016 @ 20:20:05
  Author: arojas
Revision: 180389

Update to 20160615

Modified:
  aspell-pl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-06-17 20:18:40 UTC (rev 180388)
+++ PKGBUILD2016-06-17 20:20:05 UTC (rev 180389)
@@ -5,7 +5,7 @@
 # Contributor: Jaroslav Lichtblau 
 
 pkgname=aspell-pl
-pkgver=20160208
+pkgver=20160615
 pkgrel=1
 pkgdesc='Polish dictionary for aspell'
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 license=('GPL' 'LGPL' 'MPL' 'CC SA' 'Apache')
 depends=('aspell')
 source=(http://sjp.pl/slownik/ort/sjp-aspell6-pl-6.0_$pkgver-0.tar.bz2)
-md5sums=('0adc05b76aa227d8c638f998f00bf407')
+md5sums=('b83a3d33609bf608986842bb8533bae0')
 
 build() {
   cd aspell6-pl-6.0_$pkgver-0


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

2016-06-17 Thread Antonio Rojas
Date: Friday, June 17, 2016 @ 20:20:39
  Author: arojas
Revision: 180390

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

Added:
  aspell-pl/repos/community-i686/PKGBUILD
(from rev 180389, aspell-pl/trunk/PKGBUILD)
  aspell-pl/repos/community-x86_64/PKGBUILD
(from rev 180389, aspell-pl/trunk/PKGBUILD)
Deleted:
  aspell-pl/repos/community-i686/PKGBUILD
  aspell-pl/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-06-17 20:20:05 UTC (rev 180389)
+++ community-i686/PKGBUILD 2016-06-17 20:20:39 UTC (rev 180390)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Bartłomiej Piotrowski 
-# Contributor: Jaroslaw Swierczynski 
-# Contributor: Arkadiusz Laczynski 
-# Contributor: Jaroslav Lichtblau 
-
-pkgname=aspell-pl
-pkgver=20160208
-pkgrel=1
-pkgdesc='Polish dictionary for aspell'
-arch=('i686' 'x86_64')
-url="http://www.sjp.pl/slownik/en/;
-license=('GPL' 'LGPL' 'MPL' 'CC SA' 'Apache')
-depends=('aspell')
-source=(http://sjp.pl/slownik/ort/sjp-aspell6-pl-6.0_$pkgver-0.tar.bz2)
-md5sums=('0adc05b76aa227d8c638f998f00bf407')
-
-build() {
-  cd aspell6-pl-6.0_$pkgver-0
-
-  ./configure
-  make
-}
-
-package() {
-  cd aspell6-pl-6.0_$pkgver-0
-
-  make DESTDIR="$pkgdir" install
-}

Copied: aspell-pl/repos/community-i686/PKGBUILD (from rev 180389, 
aspell-pl/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-06-17 20:20:39 UTC (rev 180390)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Bartłomiej Piotrowski 
+# Contributor: Jaroslaw Swierczynski 
+# Contributor: Arkadiusz Laczynski 
+# Contributor: Jaroslav Lichtblau 
+
+pkgname=aspell-pl
+pkgver=20160615
+pkgrel=1
+pkgdesc='Polish dictionary for aspell'
+arch=('i686' 'x86_64')
+url="http://www.sjp.pl/slownik/en/;
+license=('GPL' 'LGPL' 'MPL' 'CC SA' 'Apache')
+depends=('aspell')
+source=(http://sjp.pl/slownik/ort/sjp-aspell6-pl-6.0_$pkgver-0.tar.bz2)
+md5sums=('b83a3d33609bf608986842bb8533bae0')
+
+build() {
+  cd aspell6-pl-6.0_$pkgver-0
+
+  ./configure
+  make
+}
+
+package() {
+  cd aspell6-pl-6.0_$pkgver-0
+
+  make DESTDIR="$pkgdir" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-06-17 20:20:05 UTC (rev 180389)
+++ community-x86_64/PKGBUILD   2016-06-17 20:20:39 UTC (rev 180390)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Bartłomiej Piotrowski 
-# Contributor: Jaroslaw Swierczynski 
-# Contributor: Arkadiusz Laczynski 
-# Contributor: Jaroslav Lichtblau 
-
-pkgname=aspell-pl
-pkgver=20160208
-pkgrel=1
-pkgdesc='Polish dictionary for aspell'
-arch=('i686' 'x86_64')
-url="http://www.sjp.pl/slownik/en/;
-license=('GPL' 'LGPL' 'MPL' 'CC SA' 'Apache')
-depends=('aspell')
-source=(http://sjp.pl/slownik/ort/sjp-aspell6-pl-6.0_$pkgver-0.tar.bz2)
-md5sums=('0adc05b76aa227d8c638f998f00bf407')
-
-build() {
-  cd aspell6-pl-6.0_$pkgver-0
-
-  ./configure
-  make
-}
-
-package() {
-  cd aspell6-pl-6.0_$pkgver-0
-
-  make DESTDIR="$pkgdir" install
-}

Copied: aspell-pl/repos/community-x86_64/PKGBUILD (from rev 180389, 
aspell-pl/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-06-17 20:20:39 UTC (rev 180390)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Bartłomiej Piotrowski 
+# Contributor: Jaroslaw Swierczynski 
+# Contributor: Arkadiusz Laczynski 
+# Contributor: Jaroslav Lichtblau 
+
+pkgname=aspell-pl
+pkgver=20160615
+pkgrel=1
+pkgdesc='Polish dictionary for aspell'
+arch=('i686' 'x86_64')
+url="http://www.sjp.pl/slownik/en/;
+license=('GPL' 'LGPL' 'MPL' 'CC SA' 'Apache')
+depends=('aspell')
+source=(http://sjp.pl/slownik/ort/sjp-aspell6-pl-6.0_$pkgver-0.tar.bz2)
+md5sums=('b83a3d33609bf608986842bb8533bae0')
+
+build() {
+  cd aspell6-pl-6.0_$pkgver-0
+
+  ./configure
+  make
+}
+
+package() {
+  cd aspell6-pl-6.0_$pkgver-0
+
+  make DESTDIR="$pkgdir" install
+}


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

2016-06-17 Thread Antonio Rojas
Date: Friday, June 17, 2016 @ 20:18:40
  Author: arojas
Revision: 180388

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-06-17 20:18:14 UTC (rev 180387)
+++ PKGBUILD2016-06-17 20:18:40 UTC (rev 180388)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Anatol Pomozov
-
-pkgbase=python-txaio
-pkgname=(python-txaio python2-txaio)
-pkgver=2.3.1
-pkgrel=1
-pkgdesc='Utilities to support code that runs unmodified on Twisted and asyncio'
-arch=(any)
-url='https://github.com/tavendo/txaio'
-license=(MIT)
-makedepends=(python-setuptools python2-setuptools python-twisted 
python2-twisted)
-source=(https://pypi.python.org/packages/source/t/txaio/txaio-$pkgver.tar.gz)
-sha1sums=('965053e2f6a0fc4e62cb1c7ac8c0de2f5b0babf6')
-
-prepare() {
-  cp -a txaio-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir/txaio-$pkgver"
-  python setup.py build
-
-  cd "$srcdir/txaio-$pkgver-py2"
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir/txaio-$pkgver"
-  python setup.py test
-
-  cd "$srcdir/txaio-$pkgver-py2"
-  python2 setup.py test
-}
-
-package_python-txaio() {
-  depends=(python python-six python-twisted)
-
-  cd "$srcdir/txaio-$pkgver"
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-package_python2-txaio() {
-  depends=(python2 python2-six python2-twisted)
-
-  cd "$srcdir/txaio-$pkgver-py2"
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: python-txaio/repos/community-any/PKGBUILD (from rev 180387, 
python-txaio/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-06-17 20:18:40 UTC (rev 180388)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Anatol Pomozov
+
+pkgbase=python-txaio
+pkgname=(python-txaio python2-txaio)
+pkgver=2.4.0
+pkgrel=1
+pkgdesc='Utilities to support code that runs unmodified on Twisted and asyncio'
+arch=(any)
+url='https://github.com/tavendo/txaio'
+license=(MIT)
+makedepends=(python-setuptools python2-setuptools python-twisted 
python2-twisted)
+source=(https://pypi.io/packages/source/t/txaio/txaio-$pkgver.tar.gz)
+sha1sums=('43f6b924fdb83307cf3660609ad40ae822fe5156')
+
+prepare() {
+  cp -a txaio-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir/txaio-$pkgver"
+  python setup.py build
+
+  cd "$srcdir/txaio-$pkgver-py2"
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir/txaio-$pkgver"
+  python setup.py test
+
+  cd "$srcdir/txaio-$pkgver-py2"
+  python2 setup.py test
+}
+
+package_python-txaio() {
+  depends=(python python-six python-twisted)
+
+  cd "$srcdir/txaio-$pkgver"
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_python2-txaio() {
+  depends=(python2 python2-six python2-twisted)
+
+  cd "$srcdir/txaio-$pkgver-py2"
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2016-06-17 Thread Antonio Rojas
Date: Friday, June 17, 2016 @ 20:18:14
  Author: arojas
Revision: 180387

Update to 2.4.0

Modified:
  python-txaio/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-06-17 20:15:47 UTC (rev 180386)
+++ PKGBUILD2016-06-17 20:18:14 UTC (rev 180387)
@@ -3,7 +3,7 @@
 
 pkgbase=python-txaio
 pkgname=(python-txaio python2-txaio)
-pkgver=2.3.1
+pkgver=2.4.0
 pkgrel=1
 pkgdesc='Utilities to support code that runs unmodified on Twisted and asyncio'
 arch=(any)
@@ -10,8 +10,8 @@
 url='https://github.com/tavendo/txaio'
 license=(MIT)
 makedepends=(python-setuptools python2-setuptools python-twisted 
python2-twisted)
-source=(https://pypi.python.org/packages/source/t/txaio/txaio-$pkgver.tar.gz)
-sha1sums=('965053e2f6a0fc4e62cb1c7ac8c0de2f5b0babf6')
+source=(https://pypi.io/packages/source/t/txaio/txaio-$pkgver.tar.gz)
+sha1sums=('43f6b924fdb83307cf3660609ad40ae822fe5156')
 
 prepare() {
   cp -a txaio-$pkgver{,-py2}


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

2016-06-17 Thread Antonio Rojas
Date: Friday, June 17, 2016 @ 20:15:47
  Author: arojas
Revision: 180386

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

Added:
  cinnamon-menus/repos/community-i686/PKGBUILD
(from rev 180385, cinnamon-menus/trunk/PKGBUILD)
  cinnamon-menus/repos/community-x86_64/PKGBUILD
(from rev 180385, cinnamon-menus/trunk/PKGBUILD)
Deleted:
  cinnamon-menus/repos/community-i686/PKGBUILD
  cinnamon-menus/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-06-17 20:15:10 UTC (rev 180385)
+++ community-i686/PKGBUILD 2016-06-17 20:15:47 UTC (rev 180386)
@@ -1,26 +0,0 @@
-#Maintainer: Alexandre Filgueira 
-
-pkgname=cinnamon-menus
-pkgver=3.0.1
-pkgrel=1
-pkgdesc="Cinnamon menu specifications"
-arch=('i686' 'x86_64')
-depends=('glib2')
-makedepends=('intltool' 'gobject-introspection' 'python2' 'gnome-common')
-license=('GPL' 'LGPL')
-url="https://github.com/linuxmint/cinnamon-menus;
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/linuxmint/cinnamon-menus/archive/${pkgver}.tar.gz;)
-sha256sums=('ac7c339ada5a4757dbf53fc7827b277e915c14db6ab7062f2112528232af14e7')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./autogen.sh --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var --disable-static \
-  --sbindir=/usr/bin
-  make
-}
-
-package(){
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="$pkgdir" install
-}

Copied: cinnamon-menus/repos/community-i686/PKGBUILD (from rev 180385, 
cinnamon-menus/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-06-17 20:15:47 UTC (rev 180386)
@@ -0,0 +1,26 @@
+#Maintainer: Alexandre Filgueira 
+
+pkgname=cinnamon-menus
+pkgver=3.0.2
+pkgrel=1
+pkgdesc="Cinnamon menu specifications"
+arch=('i686' 'x86_64')
+depends=('glib2')
+makedepends=('intltool' 'gobject-introspection' 'python2' 'gnome-common')
+license=('GPL' 'LGPL')
+url="https://github.com/linuxmint/cinnamon-menus;
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/linuxmint/cinnamon-menus/archive/${pkgver}.tar.gz;)
+sha256sums=('e17494e65edb6ca8b36e05ca21316db8ce6864d4f9bfa9312a661d5c39054ad7')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./autogen.sh --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-static \
+  --sbindir=/usr/bin
+  make
+}
+
+package(){
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="$pkgdir" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-06-17 20:15:10 UTC (rev 180385)
+++ community-x86_64/PKGBUILD   2016-06-17 20:15:47 UTC (rev 180386)
@@ -1,26 +0,0 @@
-#Maintainer: Alexandre Filgueira 
-
-pkgname=cinnamon-menus
-pkgver=3.0.1
-pkgrel=1
-pkgdesc="Cinnamon menu specifications"
-arch=('i686' 'x86_64')
-depends=('glib2')
-makedepends=('intltool' 'gobject-introspection' 'python2' 'gnome-common')
-license=('GPL' 'LGPL')
-url="https://github.com/linuxmint/cinnamon-menus;
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/linuxmint/cinnamon-menus/archive/${pkgver}.tar.gz;)
-sha256sums=('ac7c339ada5a4757dbf53fc7827b277e915c14db6ab7062f2112528232af14e7')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./autogen.sh --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var --disable-static \
-  --sbindir=/usr/bin
-  make
-}
-
-package(){
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="$pkgdir" install
-}

Copied: cinnamon-menus/repos/community-x86_64/PKGBUILD (from rev 180385, 
cinnamon-menus/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-06-17 20:15:47 UTC (rev 180386)
@@ -0,0 +1,26 @@
+#Maintainer: Alexandre Filgueira 
+
+pkgname=cinnamon-menus
+pkgver=3.0.2
+pkgrel=1
+pkgdesc="Cinnamon menu specifications"
+arch=('i686' 'x86_64')
+depends=('glib2')
+makedepends=('intltool' 'gobject-introspection' 'python2' 'gnome-common')
+license=('GPL' 'LGPL')
+url="https://github.com/linuxmint/cinnamon-menus;
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/linuxmint/cinnamon-menus/archive/${pkgver}.tar.gz;)
+sha256sums=('e17494e65edb6ca8b36e05ca21316db8ce6864d4f9bfa9312a661d5c39054ad7')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./autogen.sh --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var 

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

2016-06-17 Thread Antonio Rojas
Date: Friday, June 17, 2016 @ 20:15:10
  Author: arojas
Revision: 180385

Update to 3.0.2

Modified:
  cinnamon-menus/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-06-17 18:45:04 UTC (rev 180384)
+++ PKGBUILD2016-06-17 20:15:10 UTC (rev 180385)
@@ -1,7 +1,7 @@
 #Maintainer: Alexandre Filgueira 
 
 pkgname=cinnamon-menus
-pkgver=3.0.1
+pkgver=3.0.2
 pkgrel=1
 pkgdesc="Cinnamon menu specifications"
 arch=('i686' 'x86_64')
@@ -10,7 +10,7 @@
 license=('GPL' 'LGPL')
 url="https://github.com/linuxmint/cinnamon-menus;
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/linuxmint/cinnamon-menus/archive/${pkgver}.tar.gz;)
-sha256sums=('ac7c339ada5a4757dbf53fc7827b277e915c14db6ab7062f2112528232af14e7')
+sha256sums=('e17494e65edb6ca8b36e05ca21316db8ce6864d4f9bfa9312a661d5c39054ad7')
 
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"


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

2016-06-17 Thread Dave Reisner
Date: Friday, June 17, 2016 @ 20:11:17
  Author: dreisner
Revision: 270159

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

Added:
  libarchive/repos/testing-i686/
  libarchive/repos/testing-i686/PKGBUILD
(from rev 270158, libarchive/trunk/PKGBUILD)
  libarchive/repos/testing-i686/libarchive-3.1.2-acl.patch
(from rev 270158, libarchive/trunk/libarchive-3.1.2-acl.patch)
  libarchive/repos/testing-i686/libarchive-3.1.2-sparce-mtree.patch
(from rev 270158, libarchive/trunk/libarchive-3.1.2-sparce-mtree.patch)
  libarchive/repos/testing-x86_64/
  libarchive/repos/testing-x86_64/PKGBUILD
(from rev 270158, libarchive/trunk/PKGBUILD)
  libarchive/repos/testing-x86_64/libarchive-3.1.2-acl.patch
(from rev 270158, libarchive/trunk/libarchive-3.1.2-acl.patch)
  libarchive/repos/testing-x86_64/libarchive-3.1.2-sparce-mtree.patch
(from rev 270158, libarchive/trunk/libarchive-3.1.2-sparce-mtree.patch)

+
 testing-i686/PKGBUILD  |   39 +
 testing-i686/libarchive-3.1.2-acl.patch|  219 
 testing-i686/libarchive-3.1.2-sparce-mtree.patch   |  478 +++
 testing-x86_64/PKGBUILD|   39 +
 testing-x86_64/libarchive-3.1.2-acl.patch  |  219 
 testing-x86_64/libarchive-3.1.2-sparce-mtree.patch |  478 +++
 6 files changed, 1472 insertions(+)

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


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

2016-06-17 Thread Dave Reisner
Date: Friday, June 17, 2016 @ 20:10:43
  Author: dreisner
Revision: 270158

upgpkg: libarchive 3.2.0-1

Modified:
  libarchive/trunk/PKGBUILD
Deleted:
  libarchive/trunk/0001-Limit-write-requests-to-at-most-INT_MAX.patch
  libarchive/trunk/0001-mtree-fix-line-filename-length-calculation.patch

---+
 0001-Limit-write-requests-to-at-most-INT_MAX.patch|   32 -
 0001-mtree-fix-line-filename-length-calculation.patch |   29 
 PKGBUILD  |   38 +++-
 3 files changed, 9 insertions(+), 90 deletions(-)

Deleted: 0001-Limit-write-requests-to-at-most-INT_MAX.patch
===
--- 0001-Limit-write-requests-to-at-most-INT_MAX.patch  2016-06-17 18:42:27 UTC 
(rev 270157)
+++ 0001-Limit-write-requests-to-at-most-INT_MAX.patch  2016-06-17 20:10:43 UTC 
(rev 270158)
@@ -1,32 +0,0 @@
-From 22531545514043e04633e1c015c7540b9de9dbe4 Mon Sep 17 00:00:00 2001
-From: Tim Kientzle 
-Date: Fri, 22 Mar 2013 23:48:41 -0700
-Subject: [PATCH] Limit write requests to at most INT_MAX. This prevents a
- certain common programming error (passing -1 to write) from leading to other
- problems deeper in the library.
-

- libarchive/archive_write.c | 5 +
- 1 file changed, 5 insertions(+)
-
-diff --git a/libarchive/archive_write.c b/libarchive/archive_write.c
-index eede5e0..be85621 100644
 a/libarchive/archive_write.c
-+++ b/libarchive/archive_write.c
-@@ -673,8 +673,13 @@ static ssize_t
- _archive_write_data(struct archive *_a, const void *buff, size_t s)
- {
-   struct archive_write *a = (struct archive_write *)_a;
-+  const size_t max_write = INT_MAX;
-+
-   archive_check_magic(>archive, ARCHIVE_WRITE_MAGIC,
-   ARCHIVE_STATE_DATA, "archive_write_data");
-+  /* In particular, this catches attempts to pass negative values. */
-+  if (s > max_write)
-+  s = max_write;
-   archive_clear_error(>archive);
-   return ((a->format_write_data)(a, buff, s));
- }
--- 
-1.9.0
-

Deleted: 0001-mtree-fix-line-filename-length-calculation.patch
===
--- 0001-mtree-fix-line-filename-length-calculation.patch   2016-06-17 
18:42:27 UTC (rev 270157)
+++ 0001-mtree-fix-line-filename-length-calculation.patch   2016-06-17 
20:10:43 UTC (rev 270158)
@@ -1,29 +0,0 @@
-From e65bf287f0133426b26611fe3e80b51267987106 Mon Sep 17 00:00:00 2001
-From: Dave Reisner 
-Date: Thu, 21 Feb 2013 19:01:06 -0500
-Subject: [PATCH] mtree: fix line filename length calculation. Fixes #301.
- Signed-off-by: Andres Mejia 
-

- libarchive/archive_write_set_format_mtree.c | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/libarchive/archive_write_set_format_mtree.c 
b/libarchive/archive_write_set_format_mtree.c
-index 9c0613c..f37f723 100644
 a/libarchive/archive_write_set_format_mtree.c
-+++ b/libarchive/archive_write_set_format_mtree.c
-@@ -1855,9 +1855,9 @@ mtree_entry_setup_filenames(struct archive_write *a, 
struct mtree_entry *file,
-   return (ret);
-   }
- 
--  /* Make a basename from dirname and slash */
-+  /* Make a basename from file->parentdir.s and slash */
-   *slash  = '\0';
--  file->parentdir.length = slash - dirname;
-+  file->parentdir.length = slash - file->parentdir.s;
-   archive_strcpy(&(file->basename),  slash + 1);
-   return (ret);
- }
--- 
-1.8.1.4
-

Modified: PKGBUILD
===
--- PKGBUILD2016-06-17 18:42:27 UTC (rev 270157)
+++ PKGBUILD2016-06-17 20:10:43 UTC (rev 270158)
@@ -2,8 +2,8 @@
 # Maintainer: Dan McGee 
 
 pkgname=libarchive
-pkgver=3.1.2
-pkgrel=8
+pkgver=3.2.0
+pkgrel=1
 pkgdesc="library that can create and read several streaming archive formats"
 arch=('i686' 'x86_64')
 url="http://libarchive.org/;
@@ -11,37 +11,17 @@
 depends=('acl' 'attr' 'bzip2' 'expat' 'lzo' 'openssl' 'xz' 'zlib')
 options=('strip' 'debug' 'libtool')
 provides=('libarchive.so')
-source=("http://libarchive.org/downloads/$pkgname-$pkgver.tar.gz;
-'0001-mtree-fix-line-filename-length-calculation.patch'
-'0001-Limit-write-requests-to-at-most-INT_MAX.patch'
-'libarchive-3.1.2-acl.patch'
-'libarchive-3.1.2-sparce-mtree.patch')
-md5sums=('efad5a503f66329bb9d2f4308b5de98a'
- 'fda89c145bbcd793a96b06b463ef6a72'
- '9bf80940bd3ce861137a0a8dcacf5705'
- 'a5c995661c62429ceff2c23ea322393b'
- 'cb344a879b3c4550fe3faf86c3826f23')
+source=("http://libarchive.org/downloads/$pkgname-$pkgver.tar.gz;)
+md5sums=('596210b5a9c2ff74a0f7ca34838d655f')
 
-prepare() {
+build() {
   cd "$pkgname-$pkgver"
 
-  # https://code.google.com/p/libarchive/issues/detail?id=301
-  # upstream commit 

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

2016-06-17 Thread Jerome Leclanche
Date: Friday, June 17, 2016 @ 18:45:04
  Author: jleclanche
Revision: 180384

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-06-17 18:44:25 UTC (rev 180383)
+++ community-i686/PKGBUILD 2016-06-17 18:45:04 UTC (rev 180384)
@@ -1,45 +0,0 @@
-# $Id$
-
-pkgname=sway
-pkgver=0.7
-pkgrel=1
-pkgdesc="i3 compatible window manager for Wayland"
-arch=("i686" "x86_64")
-url="http://swaywm.org;
-license=("MIT")
-depends=(
-   "wlc" "xorg-server-xwayland" "json-c" "pango" "wayland" "gdk-pixbuf2"
-)
-optdepends=(
-   "rxvt-unicode: Default terminal emulator."
-   "dmenu: Default for launching applications."
-   "imagemagick: For taking screenshots."
-   "ffmpeg: For recording screencasts."
-   "i3status: To display system information with a bar."
-)
-makedepends=("cmake" "git" "asciidoc")
-source=(
-   
"$pkgname-$pkgver.tar.gz::https://github.com/SirCmpwn/$pkgname/archive/$pkgver.tar.gz;
-   
"$pkgname-$pkgver.tar.gz::https://github.com/SirCmpwn/$pkgname/archive/$pkgver.tar.gz.sig;
-)
-sha256sums=(
-   "87db6506a9035b7a94f78ab0ad7dfb667c30c134917d1198d852b826c8fcf1ae"
-   "SKIP"
-)
-
-
-build() {
-   mkdir -p build
-   cd build
-   cmake "$srcdir/$pkgname-$pkgver" \
-   -DCMAKE_BUILD_TYPE=Release \
-   -DCMAKE_INSTALL_SYSCONFDIR=/etc \
-   -DCMAKE_INSTALL_PREFIX=/usr
-   make
-}
-
-package() {
-   cd build
-   DESTDIR="$pkgdir" make install
-   install -Dm644 "$srcdir/$pkgname-$pkgver/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: sway/repos/community-i686/PKGBUILD (from rev 180383, 
sway/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-06-17 18:45:04 UTC (rev 180384)
@@ -0,0 +1,45 @@
+# $Id$
+
+pkgname=sway
+pkgver=0.8
+pkgrel=1
+pkgdesc="i3 compatible window manager for Wayland"
+arch=("i686" "x86_64")
+url="http://swaywm.org;
+license=("MIT")
+depends=(
+   "wlc" "xorg-server-xwayland" "json-c" "pango" "wayland" "gdk-pixbuf2"
+)
+optdepends=(
+   "rxvt-unicode: Default terminal emulator."
+   "dmenu: Default for launching applications."
+   "imagemagick: For taking screenshots."
+   "ffmpeg: For recording screencasts."
+   "i3status: To display system information with a bar."
+)
+makedepends=("cmake" "git" "asciidoc")
+source=(
+   
"$pkgname-$pkgver.tar.gz::https://github.com/SirCmpwn/$pkgname/archive/$pkgver.tar.gz;
+   
"$pkgname-$pkgver.tar.gz::https://github.com/SirCmpwn/$pkgname/archive/$pkgver.tar.gz.sig;
+)
+sha256sums=(
+   "eb229098f87b242ab9259d3057e7e9a8cad610659546988b73ffa866ec62f7fd"
+   "SKIP"
+)
+
+
+build() {
+   mkdir -p build
+   cd build
+   cmake "$srcdir/$pkgname-$pkgver" \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DCMAKE_INSTALL_SYSCONFDIR=/etc \
+   -DCMAKE_INSTALL_PREFIX=/usr
+   make
+}
+
+package() {
+   cd build
+   DESTDIR="$pkgdir" make install
+   install -Dm644 "$srcdir/$pkgname-$pkgver/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-06-17 18:44:25 UTC (rev 180383)
+++ community-x86_64/PKGBUILD   2016-06-17 18:45:04 UTC (rev 180384)
@@ -1,45 +0,0 @@
-# $Id$
-
-pkgname=sway
-pkgver=0.7
-pkgrel=1
-pkgdesc="i3 compatible window manager for Wayland"
-arch=("i686" "x86_64")
-url="http://swaywm.org;
-license=("MIT")
-depends=(
-   "wlc" "xorg-server-xwayland" "json-c" "pango" "wayland" "gdk-pixbuf2"
-)
-optdepends=(
-   "rxvt-unicode: Default terminal emulator."
-   "dmenu: Default for launching applications."
-   "imagemagick: For taking screenshots."
-   "ffmpeg: For recording screencasts."
-   "i3status: To display system information with a bar."
-)
-makedepends=("cmake" "git" "asciidoc")
-source=(
-   
"$pkgname-$pkgver.tar.gz::https://github.com/SirCmpwn/$pkgname/archive/$pkgver.tar.gz;
-   
"$pkgname-$pkgver.tar.gz::https://github.com/SirCmpwn/$pkgname/archive/$pkgver.tar.gz.sig;
-)
-sha256sums=(
-   "87db6506a9035b7a94f78ab0ad7dfb667c30c134917d1198d852b826c8fcf1ae"
- 

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

2016-06-17 Thread Jerome Leclanche
Date: Friday, June 17, 2016 @ 18:44:25
  Author: jleclanche
Revision: 180383

upgpkg: sway 0.8-1

Upstream release 0.8

Modified:
  sway/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-06-17 17:49:23 UTC (rev 180382)
+++ PKGBUILD2016-06-17 18:44:25 UTC (rev 180383)
@@ -1,7 +1,7 @@
 # $Id$
 
 pkgname=sway
-pkgver=0.7
+pkgver=0.8
 pkgrel=1
 pkgdesc="i3 compatible window manager for Wayland"
 arch=("i686" "x86_64")
@@ -23,7 +23,7 @@

"$pkgname-$pkgver.tar.gz::https://github.com/SirCmpwn/$pkgname/archive/$pkgver.tar.gz.sig;
 )
 sha256sums=(
-   "87db6506a9035b7a94f78ab0ad7dfb667c30c134917d1198d852b826c8fcf1ae"
+   "eb229098f87b242ab9259d3057e7e9a8cad610659546988b73ffa866ec62f7fd"
"SKIP"
 )
 


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

2016-06-17 Thread Jan Steffens
Date: Friday, June 17, 2016 @ 18:42:27
  Author: heftig
Revision: 270157

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

Added:
  grilo-plugins/repos/extra-i686/PKGBUILD
(from rev 270156, grilo-plugins/trunk/PKGBUILD)
  grilo-plugins/repos/extra-x86_64/PKGBUILD
(from rev 270156, grilo-plugins/trunk/PKGBUILD)
Deleted:
  grilo-plugins/repos/extra-i686/PKGBUILD
  grilo-plugins/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-06-17 18:41:34 UTC (rev 270156)
+++ extra-i686/PKGBUILD 2016-06-17 18:42:27 UTC (rev 270157)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=grilo-plugins
-pkgver=0.3.1
-pkgrel=1
-pkgdesc="Plugins for Grilo"
-url="http://www.gnome.org;
-arch=(i686 x86_64)
-license=(LGPL)
-depends=(grilo lua libmediaart libgdata libtracker-sparql gom libdmapsharing)
-makedepends=(intltool itstool yelp-tools)
-optdepends=('dleyna-server: DLNA plugin'
-'tracker: Tracker plugin')
-options=('!emptydirs')
-groups=('gnome')
-source=(https://download.gnome.org/sources/${pkgname}/${pkgver:0:3}/${pkgname}-${pkgver}.tar.xz)
-sha256sums=('605d04c40a9ed4fec4c590ff3e0da0de175e3a064bba96bdb26c5a7c0d3e6daa')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --disable-static
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-#  make -k check
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: grilo-plugins/repos/extra-i686/PKGBUILD (from rev 270156, 
grilo-plugins/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-06-17 18:42:27 UTC (rev 270157)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=grilo-plugins
+pkgver=0.3.2
+pkgrel=1
+pkgdesc="Plugins for Grilo"
+url="http://www.gnome.org;
+arch=(i686 x86_64)
+license=(LGPL)
+depends=(grilo lua libmediaart libgdata libtracker-sparql gom libdmapsharing 
chromaprint
+ gst-plugins-bad)
+makedepends=(intltool itstool yelp-tools)
+optdepends=('dleyna-server: DLNA plugin'
+'tracker: Tracker plugin')
+options=('!emptydirs')
+groups=('gnome')
+source=(https://download.gnome.org/sources/${pkgname}/${pkgver:0:3}/${pkgname}-${pkgver}.tar.xz)
+sha256sums=('791b89289781272c001545931a8f58f499d14e46e038a9caa82dfe2494301afd')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --disable-static
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+#  make -k check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-06-17 18:41:34 UTC (rev 270156)
+++ extra-x86_64/PKGBUILD   2016-06-17 18:42:27 UTC (rev 270157)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=grilo-plugins
-pkgver=0.3.1
-pkgrel=1
-pkgdesc="Plugins for Grilo"
-url="http://www.gnome.org;
-arch=(i686 x86_64)
-license=(LGPL)
-depends=(grilo lua libmediaart libgdata libtracker-sparql gom libdmapsharing)
-makedepends=(intltool itstool yelp-tools)
-optdepends=('dleyna-server: DLNA plugin'
-'tracker: Tracker plugin')
-options=('!emptydirs')
-groups=('gnome')
-source=(https://download.gnome.org/sources/${pkgname}/${pkgver:0:3}/${pkgname}-${pkgver}.tar.xz)
-sha256sums=('605d04c40a9ed4fec4c590ff3e0da0de175e3a064bba96bdb26c5a7c0d3e6daa')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --disable-static
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-#  make -k check
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: grilo-plugins/repos/extra-x86_64/PKGBUILD (from rev 270156, 
grilo-plugins/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-06-17 18:42:27 UTC (rev 270157)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=grilo-plugins
+pkgver=0.3.2
+pkgrel=1
+pkgdesc="Plugins for Grilo"
+url="http://www.gnome.org;
+arch=(i686 x86_64)
+license=(LGPL)
+depends=(grilo lua libmediaart libgdata libtracker-sparql gom libdmapsharing 

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

2016-06-17 Thread Jan Steffens
Date: Friday, June 17, 2016 @ 18:41:34
  Author: heftig
Revision: 270156

add chromaprint plugin

Modified:
  grilo-plugins/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-06-17 18:38:43 UTC (rev 270155)
+++ PKGBUILD2016-06-17 18:41:34 UTC (rev 270156)
@@ -8,7 +8,8 @@
 url="http://www.gnome.org;
 arch=(i686 x86_64)
 license=(LGPL)
-depends=(grilo lua libmediaart libgdata libtracker-sparql gom libdmapsharing)
+depends=(grilo lua libmediaart libgdata libtracker-sparql gom libdmapsharing 
chromaprint
+ gst-plugins-bad)
 makedepends=(intltool itstool yelp-tools)
 optdepends=('dleyna-server: DLNA plugin'
 'tracker: Tracker plugin')


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

2016-06-17 Thread Jan Steffens
Date: Friday, June 17, 2016 @ 18:38:43
  Author: heftig
Revision: 270155

0.3.2-1

Modified:
  grilo-plugins/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-06-17 18:36:22 UTC (rev 270154)
+++ PKGBUILD2016-06-17 18:38:43 UTC (rev 270155)
@@ -2,7 +2,7 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgname=grilo-plugins
-pkgver=0.3.1
+pkgver=0.3.2
 pkgrel=1
 pkgdesc="Plugins for Grilo"
 url="http://www.gnome.org;
@@ -15,7 +15,7 @@
 options=('!emptydirs')
 groups=('gnome')
 
source=(https://download.gnome.org/sources/${pkgname}/${pkgver:0:3}/${pkgname}-${pkgver}.tar.xz)
-sha256sums=('605d04c40a9ed4fec4c590ff3e0da0de175e3a064bba96bdb26c5a7c0d3e6daa')
+sha256sums=('791b89289781272c001545931a8f58f499d14e46e038a9caa82dfe2494301afd')
 
 build() {
   cd $pkgname-$pkgver


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

2016-06-17 Thread Jan Steffens
Date: Friday, June 17, 2016 @ 18:36:22
  Author: heftig
Revision: 270154

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-06-17 18:35:42 UTC (rev 270153)
+++ extra-i686/PKGBUILD 2016-06-17 18:36:22 UTC (rev 270154)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=grilo
-pkgver=0.3.0
-pkgrel=1
-pkgdesc="Framework that provides access to various sources of multimedia 
content"
-url="http://www.gnome.org;
-arch=('i686' 'x86_64')
-license=('LGPL')
-depends=('gtk3' 'libxml2' 'libsoup' 'liboauth' 'totem-plparser')
-makedepends=('gobject-introspection' 'gtk-doc' 'vala' 'intltool')
-optdepends=('grilo-plugins: Plugins for grilo')
-options=('!emptydirs')
-source=(https://download.gnome.org/sources/${pkgname}/${pkgver:0:3}/${pkgname}-${pkgver}.tar.xz)
-sha256sums=('1fd1a87d606f56adb3086954baec3ea6e25d9ba3fb010f11d1d3ddc9ec66bc60')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr --sysconfdir=/etc --disable-static --disable-debug 
\
---libdir=/usr/lib
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-}

Copied: grilo/repos/extra-i686/PKGBUILD (from rev 270153, grilo/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-06-17 18:36:22 UTC (rev 270154)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=grilo
+pkgver=0.3.1
+pkgrel=1
+pkgdesc="Framework that provides access to various sources of multimedia 
content"
+url="http://www.gnome.org;
+arch=('i686' 'x86_64')
+license=('LGPL')
+depends=('gtk3' 'libxml2' 'libsoup' 'liboauth' 'totem-plparser')
+makedepends=('gobject-introspection' 'gtk-doc' 'vala' 'intltool')
+optdepends=('grilo-plugins: Plugins for grilo')
+options=('!emptydirs')
+source=(https://download.gnome.org/sources/${pkgname}/${pkgver:0:3}/${pkgname}-${pkgver}.tar.xz)
+sha256sums=('ebbdc61dc7920a8cac436895e8625a0ee64d6a4b352987fb5d361ef87243cd4c')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr --sysconfdir=/etc --disable-static --disable-debug 
\
+--libdir=/usr/lib
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-06-17 18:35:42 UTC (rev 270153)
+++ extra-x86_64/PKGBUILD   2016-06-17 18:36:22 UTC (rev 270154)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=grilo
-pkgver=0.3.0
-pkgrel=1
-pkgdesc="Framework that provides access to various sources of multimedia 
content"
-url="http://www.gnome.org;
-arch=('i686' 'x86_64')
-license=('LGPL')
-depends=('gtk3' 'libxml2' 'libsoup' 'liboauth' 'totem-plparser')
-makedepends=('gobject-introspection' 'gtk-doc' 'vala' 'intltool')
-optdepends=('grilo-plugins: Plugins for grilo')
-options=('!emptydirs')
-source=(https://download.gnome.org/sources/${pkgname}/${pkgver:0:3}/${pkgname}-${pkgver}.tar.xz)
-sha256sums=('1fd1a87d606f56adb3086954baec3ea6e25d9ba3fb010f11d1d3ddc9ec66bc60')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr --sysconfdir=/etc --disable-static --disable-debug 
\
---libdir=/usr/lib
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-}

Copied: grilo/repos/extra-x86_64/PKGBUILD (from rev 270153, 
grilo/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-06-17 18:36:22 UTC (rev 270154)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=grilo
+pkgver=0.3.1
+pkgrel=1
+pkgdesc="Framework that provides access to various sources of multimedia 
content"
+url="http://www.gnome.org;
+arch=('i686' 'x86_64')
+license=('LGPL')
+depends=('gtk3' 'libxml2' 'libsoup' 'liboauth' 

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

2016-06-17 Thread Jan Steffens
Date: Friday, June 17, 2016 @ 18:35:42
  Author: heftig
Revision: 270153

0.3.1-1

Modified:
  grilo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-06-17 16:36:20 UTC (rev 270152)
+++ PKGBUILD2016-06-17 18:35:42 UTC (rev 270153)
@@ -2,7 +2,7 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgname=grilo
-pkgver=0.3.0
+pkgver=0.3.1
 pkgrel=1
 pkgdesc="Framework that provides access to various sources of multimedia 
content"
 url="http://www.gnome.org;
@@ -13,7 +13,7 @@
 optdepends=('grilo-plugins: Plugins for grilo')
 options=('!emptydirs')
 
source=(https://download.gnome.org/sources/${pkgname}/${pkgver:0:3}/${pkgname}-${pkgver}.tar.xz)
-sha256sums=('1fd1a87d606f56adb3086954baec3ea6e25d9ba3fb010f11d1d3ddc9ec66bc60')
+sha256sums=('ebbdc61dc7920a8cac436895e8625a0ee64d6a4b352987fb5d361ef87243cd4c')
 
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"


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

2016-06-17 Thread Sven-Hendrik Haase
Date: Friday, June 17, 2016 @ 17:49:23
  Author: svenstaro
Revision: 180382

archrelease: copy trunk to community-any

Added:
  fabric/repos/community-any/PKGBUILD
(from rev 180381, fabric/trunk/PKGBUILD)
  fabric/repos/community-any/paramiko.patch
(from rev 180381, fabric/trunk/paramiko.patch)
Deleted:
  fabric/repos/community-any/PKGBUILD
  fabric/repos/community-any/paramiko.patch

+
 PKGBUILD   |   42 +-
 paramiko.patch |   48 
 2 files changed, 45 insertions(+), 45 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-06-17 17:49:17 UTC (rev 180381)
+++ PKGBUILD2016-06-17 17:49:23 UTC (rev 180382)
@@ -1,21 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Francois Boulogne 
-
-pkgname=fabric
-pkgver=1.11.1
-pkgrel=1
-pkgdesc="Python library and command-line tool designed to streamline deploying 
applications or performing system administration tasks via the SSH protocol"
-url="http://fabfile.org/;
-license=('BSD')
-arch=('any')
-depends=('python2' 'pycrypto' 'python2-paramiko' 'python2-setuptools')
-source=("http://pypi.python.org/packages/source/F/Fabric/Fabric-${pkgver}.tar.gz;)
-md5sums=('e9ec969802d3e9427111ffc5c3ea142c')
-
-package() {
-  cd ${srcdir}/Fabric-${pkgver}
-  python2 setup.py install --root=${pkgdir} --optimize=1
-
-  install -D -m644 README.rst ${pkgdir}/usr/share/doc/${pkgname}/README.rst
-  install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: fabric/repos/community-any/PKGBUILD (from rev 180381, 
fabric/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-06-17 17:49:23 UTC (rev 180382)
@@ -0,0 +1,21 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Francois Boulogne 
+
+pkgname=fabric
+pkgver=1.11.1
+pkgrel=2
+pkgdesc="Python library and command-line tool designed to streamline deploying 
applications or performing system administration tasks via the SSH protocol"
+url="http://fabfile.org/;
+license=('BSD')
+arch=('any')
+depends=('python2' 'pycrypto' 'python2-paramiko1' 'python2-setuptools')
+source=("http://pypi.python.org/packages/source/F/Fabric/Fabric-${pkgver}.tar.gz;)
+md5sums=('e9ec969802d3e9427111ffc5c3ea142c')
+
+package() {
+  cd ${srcdir}/Fabric-${pkgver}
+  python2 setup.py install --root=${pkgdir} --optimize=1
+
+  install -D -m644 README.rst ${pkgdir}/usr/share/doc/${pkgname}/README.rst
+  install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}

Deleted: paramiko.patch
===
--- paramiko.patch  2016-06-17 17:49:17 UTC (rev 180381)
+++ paramiko.patch  2016-06-17 17:49:23 UTC (rev 180382)
@@ -1,24 +0,0 @@
 setup.py
-+++ setup.py
-@@ -26,6 +26,11 @@ pip, with `pip install fabric==dev`.
- For more information, please see the Fabric website or execute ``fab --help``.
- """ % (get_version('branch'), readme)
-
-+if sys.version_info[:2] < (2, 6):
-+install_requires=['paramiko>=1.10,<1.13']
-+else:
-+install_requires=['paramiko>=1.10']
-+
- setup(
- name='Fabric',
- version=get_version('short'),
-@@ -37,7 +42,7 @@ setup(
- packages=find_packages(),
- test_suite='nose.collector',
- tests_require=['nose', 'fudge<1.0'],
--install_requires=['paramiko>=1.10,<1.13'],
-+install_requires=install_requires,
- entry_points={
- 'console_scripts': [
- 'fab = fabric.main:main',
-

Copied: fabric/repos/community-any/paramiko.patch (from rev 180381, 
fabric/trunk/paramiko.patch)
===
--- paramiko.patch  (rev 0)
+++ paramiko.patch  2016-06-17 17:49:23 UTC (rev 180382)
@@ -0,0 +1,24 @@
+--- setup.py
 setup.py
+@@ -26,6 +26,11 @@ pip, with `pip install fabric==dev`.
+ For more information, please see the Fabric website or execute ``fab --help``.
+ """ % (get_version('branch'), readme)
+
++if sys.version_info[:2] < (2, 6):
++install_requires=['paramiko>=1.10,<1.13']
++else:
++install_requires=['paramiko>=1.10']
++
+ setup(
+ name='Fabric',
+ version=get_version('short'),
+@@ -37,7 +42,7 @@ setup(
+ packages=find_packages(),
+ test_suite='nose.collector',
+ tests_require=['nose', 'fudge<1.0'],
+-install_requires=['paramiko>=1.10,<1.13'],
++install_requires=install_requires,
+ entry_points={
+ 'console_scripts': [
+ 'fab = fabric.main:main',
+


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

2016-06-17 Thread Sven-Hendrik Haase
Date: Friday, June 17, 2016 @ 17:49:17
  Author: svenstaro
Revision: 180381

upgpkg: fabric 1.11.1-2

fabric doesn't work with paramiko>=2.0.0

Modified:
  fabric/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-06-17 17:47:39 UTC (rev 180380)
+++ PKGBUILD2016-06-17 17:49:17 UTC (rev 180381)
@@ -3,12 +3,12 @@
 
 pkgname=fabric
 pkgver=1.11.1
-pkgrel=1
+pkgrel=2
 pkgdesc="Python library and command-line tool designed to streamline deploying 
applications or performing system administration tasks via the SSH protocol"
 url="http://fabfile.org/;
 license=('BSD')
 arch=('any')
-depends=('python2' 'pycrypto' 'python2-paramiko' 'python2-setuptools')
+depends=('python2' 'pycrypto' 'python2-paramiko1' 'python2-setuptools')
 
source=("http://pypi.python.org/packages/source/F/Fabric/Fabric-${pkgver}.tar.gz;)
 md5sums=('e9ec969802d3e9427111ffc5c3ea142c')
 


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

2016-06-17 Thread Sven-Hendrik Haase
Date: Friday, June 17, 2016 @ 17:47:39
  Author: svenstaro
Revision: 180380

archrelease: copy trunk to community-any

Added:
  python-paramiko1/repos/community-any/
  python-paramiko1/repos/community-any/PKGBUILD
(from rev 180379, python-paramiko1/trunk/PKGBUILD)

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

Copied: python-paramiko1/repos/community-any/PKGBUILD (from rev 180379, 
python-paramiko1/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2016-06-17 17:47:39 UTC (rev 180380)
@@ -0,0 +1,60 @@
+# $Id: PKGBUILD 172879 2016-04-30 04:50:53Z fyan $
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Angel Velasquez 
+# Contributor: Felix Yan 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: Mario Danic 
+
+pkgbase=python-paramiko1
+pkgname=(python-paramiko1 python2-paramiko1)
+pkgver=1.16.0
+pkgrel=1
+pkgdesc="Python module that implements the SSH2 protocol (compatibility 
version)"
+url="https://github.com/paramiko/paramiko/;
+license=('LGPL')
+arch=('any')
+makedepends=('python-ecdsa' 'python2-ecdsa' 'python-crypto' 'python2-crypto' 
'git')
+source=("git+https://github.com/paramiko/paramiko.git#tag=$pkgver;)
+md5sums=('SKIP')
+
+prepare() {
+  cp -a paramiko{,-py2}
+
+  find paramiko-py2 -name '*.py' -print0 | xargs -0 \
+sed -i -e 's,^#!/usr/bin/env python$,#!/usr/bin/env python2,' \
+-e 's,^#!/usr/bin/python$,#!/usr/bin/python2,'
+}
+
+check() {
+  cd "$srcdir/paramiko"
+  LANG=en_US.UTF-8 python test.py
+
+  cd "$srcdir/paramiko-py2"
+  LANG=en_US.UTF-8 python2 test.py
+}
+
+package_python-paramiko1() {
+  depends=('python-setuptools' 'python-cryptography')
+  conflicts=('python-paramiko')
+  provides=('python-paramiko==1.8.0')
+
+  cd "$srcdir/paramiko"
+
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -dm755 "$pkgdir/usr/share/doc/$pkgname/demos"
+  install -m644 demos/* "$pkgdir/usr/share/doc/$pkgname/demos"
+  chmod 755 "$pkgdir/usr/share/doc/$pkgname/demos/"*.py
+}
+
+package_python2-paramiko1() {
+  depends=('python2-setuptools' 'python2-cryptography')
+  conflicts=('python2-paramiko')
+  provides=('python2-paramiko==1.8.0')
+
+  cd "$srcdir/paramiko-py2"
+
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -dm755 "$pkgdir/usr/share/doc/$pkgname/demos"
+  install -m644 demos/* "$pkgdir/usr/share/doc/$pkgname/demos"
+  chmod 755 "$pkgdir/usr/share/doc/$pkgname/demos/"*.py
+}


[arch-commits] Commit in (4 files)

2016-06-17 Thread Sven-Hendrik Haase
Date: Friday, June 17, 2016 @ 17:46:54
  Author: svenstaro
Revision: 180379

Old paramiko for compatibility

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

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

Added: python-paramiko1/trunk/PKGBUILD
===
--- python-paramiko1/trunk/PKGBUILD (rev 0)
+++ python-paramiko1/trunk/PKGBUILD 2016-06-17 17:46:54 UTC (rev 180379)
@@ -0,0 +1,60 @@
+# $Id: PKGBUILD 172879 2016-04-30 04:50:53Z fyan $
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Angel Velasquez 
+# Contributor: Felix Yan 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: Mario Danic 
+
+pkgbase=python-paramiko1
+pkgname=(python-paramiko1 python2-paramiko1)
+pkgver=1.16.0
+pkgrel=1
+pkgdesc="Python module that implements the SSH2 protocol (compatibility 
version)"
+url="https://github.com/paramiko/paramiko/;
+license=('LGPL')
+arch=('any')
+makedepends=('python-ecdsa' 'python2-ecdsa' 'python-crypto' 'python2-crypto' 
'git')
+source=("git+https://github.com/paramiko/paramiko.git#tag=$pkgver;)
+md5sums=('SKIP')
+
+prepare() {
+  cp -a paramiko{,-py2}
+
+  find paramiko-py2 -name '*.py' -print0 | xargs -0 \
+sed -i -e 's,^#!/usr/bin/env python$,#!/usr/bin/env python2,' \
+-e 's,^#!/usr/bin/python$,#!/usr/bin/python2,'
+}
+
+check() {
+  cd "$srcdir/paramiko"
+  LANG=en_US.UTF-8 python test.py
+
+  cd "$srcdir/paramiko-py2"
+  LANG=en_US.UTF-8 python2 test.py
+}
+
+package_python-paramiko1() {
+  depends=('python-setuptools' 'python-cryptography')
+  conflicts=('python-paramiko')
+  provides=('python-paramiko==1.8.0')
+
+  cd "$srcdir/paramiko"
+
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -dm755 "$pkgdir/usr/share/doc/$pkgname/demos"
+  install -m644 demos/* "$pkgdir/usr/share/doc/$pkgname/demos"
+  chmod 755 "$pkgdir/usr/share/doc/$pkgname/demos/"*.py
+}
+
+package_python2-paramiko1() {
+  depends=('python2-setuptools' 'python2-cryptography')
+  conflicts=('python2-paramiko')
+  provides=('python2-paramiko==1.8.0')
+
+  cd "$srcdir/paramiko-py2"
+
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -dm755 "$pkgdir/usr/share/doc/$pkgname/demos"
+  install -m644 demos/* "$pkgdir/usr/share/doc/$pkgname/demos"
+  chmod 755 "$pkgdir/usr/share/doc/$pkgname/demos/"*.py
+}


[arch-commits] Commit in diffoscope/trunk (PKGBUILD sqlite-magic.patch)

2016-06-17 Thread Levente Polyak
Date: Friday, June 17, 2016 @ 17:27:50
  Author: anthraxx
Revision: 180377

upgpkg: diffoscope 54-1

- adding file magic patch that broke sqlite check

Added:
  diffoscope/trunk/sqlite-magic.patch
Modified:
  diffoscope/trunk/PKGBUILD

+
 PKGBUILD   |9 ++---
 sqlite-magic.patch |   34 ++
 2 files changed, 40 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-06-17 17:20:05 UTC (rev 180376)
+++ PKGBUILD2016-06-17 17:27:50 UTC (rev 180377)
@@ -1,7 +1,7 @@
 # Maintainer: Levente Polyak 
 
 pkgname=diffoscope
-pkgver=52
+pkgver=54
 pkgrel=1
 pkgdesc='Tool for in-depth comparison of files, archives, and directories'
 url='https://diffoscope.org/'
@@ -41,12 +41,15 @@
 checkdepends=(
   'python-pytest' 'acl' 'binutils' 'bzip2' 'cdrkit' 'colord' 'cpio' 
'diffutils' 'e2fsprogs' 'enjarify' 'java-environment>=8' 'fontforge' 'gettext' 
'ghc' 'gnupg'
   'mono-tools' 'poppler' 'sqlite' 'squashfs-tools' 'tlsh' 'unzip' 'gzip' 'tar' 
'vim' 'xz')
-source=(${pkgname}-${pkgver}.tar.xz::https://anonscm.debian.org/cgit/reproducible/${pkgname}.git/snapshot/${pkgname}-${pkgver}.tar.xz)
-sha512sums=('809a5e86860325e47ede97caf12f60f6048185b986c5a1792574aca1b79f86caf5f66441264dc048b2f8be0bc53b755950b77edaf6e54aedf6f553d54c4988b7')
+source=(${pkgname}-${pkgver}.tar.xz::https://anonscm.debian.org/cgit/reproducible/${pkgname}.git/snapshot/${pkgname}-${pkgver}.tar.xz
+sqlite-magic.patch)
+sha512sums=('8adbff01652243954aa47f404057f600567d46d0265cdc22f2d9c33740de1b64ff2cb238d147649598488c955637df0b9a1b57a2965686f86d9d2712b38c17eb'
+
'3450c114f01a223c968fa75d230321fa188eae81146a2aad36b095a3ce96332167c638a46458c032343adaabc24fd0f1fc7bd5e9ec26ff26c9cdd534ab23')
 
 prepare() {
   cd ${pkgname}-${pkgver}
   sed '/python-magic/d' -i setup.py
+  patch -p1 < "${srcdir}/sqlite-magic.patch"
 }
 
 build() {

Added: sqlite-magic.patch
===
--- sqlite-magic.patch  (rev 0)
+++ sqlite-magic.patch  2016-06-17 17:27:50 UTC (rev 180377)
@@ -0,0 +1,34 @@
+From 9dd11793b1b1bf0c742ed8e73484e37d772a4aeb Mon Sep 17 00:00:00 2001
+From: anthraxx 
+Date: Mon, 6 Jun 2016 20:23:14 +0200
+Subject: [PATCH] fix sqlite3 magic recognition when using file >= 5.27
+
+this fixes the recognition problems of sqlite3 as newer
+file versions add additional information to the magic
+recognition.
+The new string is like:
+  SQLite 3.x database, last written using SQLite version 3008011
+
+To be compatible with both, newer and older file versions we
+check if the magic_file_type has any value and starts with the expected
+recognition string.
+---
+ diffoscope/comparators/sqlite.py | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/diffoscope/comparators/sqlite.py 
b/diffoscope/comparators/sqlite.py
+index e361dea..16706d7 100644
+--- a/diffoscope/comparators/sqlite.py
 b/diffoscope/comparators/sqlite.py
+@@ -32,7 +32,7 @@ class Sqlite3Dump(Command):
+ class Sqlite3Database(File):
+ @staticmethod
+ def recognizes(file):
+-return file.magic_file_type == 'SQLite 3.x database'
++return file.magic_file_type and 
file.magic_file_type.startswith('SQLite 3.x database')
+ 
+ def compare_details(self, other, source=None):
+ return [Difference.from_command(Sqlite3Dump, self.path, other.path)]
+-- 
+2.8.3
+


[arch-commits] Commit in diffoscope/repos/community-x86_64 (3 files)

2016-06-17 Thread Levente Polyak
Date: Friday, June 17, 2016 @ 17:27:56
  Author: anthraxx
Revision: 180378

archrelease: copy trunk to community-x86_64

Added:
  diffoscope/repos/community-x86_64/PKGBUILD
(from rev 180377, diffoscope/trunk/PKGBUILD)
  diffoscope/repos/community-x86_64/sqlite-magic.patch
(from rev 180377, diffoscope/trunk/sqlite-magic.patch)
Deleted:
  diffoscope/repos/community-x86_64/PKGBUILD

+
 PKGBUILD   |  139 ++-
 sqlite-magic.patch |   34 
 2 files changed, 105 insertions(+), 68 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-06-17 17:27:50 UTC (rev 180377)
+++ PKGBUILD2016-06-17 17:27:56 UTC (rev 180378)
@@ -1,68 +0,0 @@
-# Maintainer: Levente Polyak 
-
-pkgname=diffoscope
-pkgver=52
-pkgrel=1
-pkgdesc='Tool for in-depth comparison of files, archives, and directories'
-url='https://diffoscope.org/'
-arch=('x86_64')
-license=('GPL3')
-depends=('python-magic' 'python-libarchive-c' 'python-setuptools')
-optdepends=(
-  'acl: access control list utilities support'
-  'binutils: binary utilities support'
-  'bzip2: bzip2 utilities support'
-  'cdrkit: ISO utilities support'
-  'colord: ICC profiles support'
-  'cpio: cpio archive support'
-  'diffutils: diff utilities support'
-  'e2fsprogs: Ext2/3/4 filesystem utilities support'
-  'enjarify: Android dex file support'
-  'fpc: Free Pascal utilities support'
-  'java-environment: java utilities support'
-  #'libcaca: image compare support'
-  'fontforge: bitmap font utilities support'
-  'gettext: GNU internationalization utilities support'
-  'ghc: haskell utilities support'
-  'gnupg: GNU privacy guard support'
-  'mono-tools: mono utilities support'
-  'poppler: PDF utilities support'
-  'sqlite: SQLite support'
-  'squashfs-tools: squashfs filesystem support'
-  #'python-guestfs: guestfs filesystem support'
-  'tlsh: fuzzy matching supprt'
-  'unzip: zip utilities support'
-  'gzip: gzip utilities support'
-  'tar: tar utilities support'
-  'vim: Vi IMproved (xxd) utilities support'
-  'xz: XZ and LZMA utilities support'
-)
-# TODO: readd fpc
-checkdepends=(
-  'python-pytest' 'acl' 'binutils' 'bzip2' 'cdrkit' 'colord' 'cpio' 
'diffutils' 'e2fsprogs' 'enjarify' 'java-environment>=8' 'fontforge' 'gettext' 
'ghc' 'gnupg'
-  'mono-tools' 'poppler' 'sqlite' 'squashfs-tools' 'tlsh' 'unzip' 'gzip' 'tar' 
'vim' 'xz')
-source=(${pkgname}-${pkgver}.tar.xz::https://anonscm.debian.org/cgit/reproducible/${pkgname}.git/snapshot/${pkgname}-${pkgver}.tar.xz)
-sha512sums=('809a5e86860325e47ede97caf12f60f6048185b986c5a1792574aca1b79f86caf5f66441264dc048b2f8be0bc53b755950b77edaf6e54aedf6f553d54c4988b7')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-  sed '/python-magic/d' -i setup.py
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-  python setup.py build
-}
-
-check() {
-  cd ${pkgname}-${pkgver}
-  PYTHONPATH=".:${PYTHONPATH}" py.test
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  python setup.py install --skip-build -O1 --root="${pkgdir}"
-  install -Dm 644 README.rst "${pkgdir}/usr/share/doc/${pkgname}/README"
-}
-
-# vim: ts=2 sw=2 et:

Copied: diffoscope/repos/community-x86_64/PKGBUILD (from rev 180377, 
diffoscope/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-06-17 17:27:56 UTC (rev 180378)
@@ -0,0 +1,71 @@
+# Maintainer: Levente Polyak 
+
+pkgname=diffoscope
+pkgver=54
+pkgrel=1
+pkgdesc='Tool for in-depth comparison of files, archives, and directories'
+url='https://diffoscope.org/'
+arch=('x86_64')
+license=('GPL3')
+depends=('python-magic' 'python-libarchive-c' 'python-setuptools')
+optdepends=(
+  'acl: access control list utilities support'
+  'binutils: binary utilities support'
+  'bzip2: bzip2 utilities support'
+  'cdrkit: ISO utilities support'
+  'colord: ICC profiles support'
+  'cpio: cpio archive support'
+  'diffutils: diff utilities support'
+  'e2fsprogs: Ext2/3/4 filesystem utilities support'
+  'enjarify: Android dex file support'
+  'fpc: Free Pascal utilities support'
+  'java-environment: java utilities support'
+  #'libcaca: image compare support'
+  'fontforge: bitmap font utilities support'
+  'gettext: GNU internationalization utilities support'
+  'ghc: haskell utilities support'
+  'gnupg: GNU privacy guard support'
+  'mono-tools: mono utilities support'
+  'poppler: PDF utilities support'
+  'sqlite: SQLite support'
+  'squashfs-tools: squashfs filesystem support'
+  #'python-guestfs: guestfs filesystem support'
+  'tlsh: fuzzy matching supprt'
+  'unzip: zip utilities support'
+  'gzip: gzip utilities support'
+  'tar: tar utilities support'
+  'vim: Vi IMproved (xxd) utilities support'
+  'xz: XZ and LZMA utilities support'
+)
+# TODO: readd fpc
+checkdepends=(
+  'python-pytest' 'acl' 'binutils' 'bzip2' 

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

2016-06-17 Thread Levente Polyak
Date: Friday, June 17, 2016 @ 17:20:05
  Author: anthraxx
Revision: 180376

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

Added:
  hydra/repos/community-i686/PKGBUILD
(from rev 180375, hydra/trunk/PKGBUILD)
  hydra/repos/community-x86_64/PKGBUILD
(from rev 180375, hydra/trunk/PKGBUILD)
Deleted:
  hydra/repos/community-i686/PKGBUILD
  hydra/repos/community-i686/fix-locations.patch
  hydra/repos/community-x86_64/PKGBUILD
  hydra/repos/community-x86_64/fix-locations.patch

--+
 /PKGBUILD|   78 +
 community-i686/PKGBUILD  |   44 --
 community-i686/fix-locations.patch   |   53 --
 community-x86_64/PKGBUILD|   44 --
 community-x86_64/fix-locations.patch |   53 --
 5 files changed, 78 insertions(+), 194 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-06-17 17:19:53 UTC (rev 180375)
+++ community-i686/PKGBUILD 2016-06-17 17:20:05 UTC (rev 180376)
@@ -1,44 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Rudy Matela 
-# Contributor: Bartek Piotrowski 
-# Contributor: Thomas S Hatch 
-# Contributor: pootzko 
-# Contributor: Jinx 
-# Contributor: Timothée Ravier 
-
-pkgname=hydra
-pkgver=8.1
-pkgrel=5
-pkgdesc='A very fast network logon cracker which support many different 
services'
-url='https://www.thc.org/thc-hydra/'
-arch=('i686' 'x86_64')
-license=('GPL3')
-depends=('postgresql-libs' 'subversion' 'libssh' 'libmariadbclient' 'libidn' 
'libfbclient' 'afpfs-ng')
-optdepends=(
-  'gtk2: graphical front-end (xhydra)'
-)
-makedepends=('gtk2')
-source=(${pkgname}-${pkgver}.tar.gz::https://www.thc.org/releases/${pkgname}-${pkgver}.tar.gz
-fix-locations.patch)
-sha512sums=('7608dd365865e5976bea446faedaad9f0334e7572fd0ee47a601c471471fc7c8a922c7114f4df08705b34b29144d3a6552e66148adf6b0f92c67301119c94959'
-
'229fdaff59c6970a030ec81a78a2d34861a6caa947e7c2f6f9186cfd3bc0bf35ec96deadaae58ff1eaa45574f268fa5d9b9688df8c033fcee35ddeb302fb2069')
-DLAGENTS=('https::/usr/bin/curl -fLC - --retry 3 --retry-delay 3 -o %o %u -k')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-  patch -p1 < "${srcdir}/fix-locations.patch"
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" MANDIR="/share/man/man1" 
DATADIR="/share/${pkgname}" install
-  install -Dm 644 README "${pkgdir}/usr/share/doc/${pkgname}/README"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: hydra/repos/community-i686/PKGBUILD (from rev 180375, 
hydra/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-06-17 17:20:05 UTC (rev 180376)
@@ -0,0 +1,39 @@
+# Maintainer: Levente Polyak 
+# Contributor: Rudy Matela 
+# Contributor: Bartek Piotrowski 
+# Contributor: Thomas S Hatch 
+# Contributor: pootzko 
+# Contributor: Jinx 
+# Contributor: Timothée Ravier 
+
+pkgname=hydra
+pkgver=8.2
+pkgrel=1
+pkgdesc='A very fast network logon cracker which support many different 
services'
+url='https://www.thc.org/thc-hydra/'
+arch=('i686' 'x86_64')
+license=('GPL3')
+depends=('postgresql-libs' 'subversion' 'libssh' 'libmariadbclient' 'libidn' 
'libfbclient' 'afpfs-ng' 'zlib' 'openssl' 'ncurses' 'pcre')
+optdepends=('gtk2: graphical front-end (xhydra)')
+makedepends=('gtk2' 'pkg-config')
+source=(${pkgname}-${pkgver}.tar.gz::https://www.thc.org/releases/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('0e2e6f4800060171681bffbb97e4fb4f4230d621573f2faf567515aabdd3546962815db9abdf0bd46ff2948418145c1485dd109ee356eb9c1e814c32ee50c618')
+DLAGENTS=('https::/usr/bin/curl -fLC - --retry 3 --retry-delay 3 -o %o %u -k')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --fhs
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -Dm 644 README "${pkgdir}/usr/share/doc/${pkgname}/README"
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/fix-locations.patch
===
--- community-i686/fix-locations.patch  2016-06-17 17:19:53 UTC (rev 180375)
+++ community-i686/fix-locations.patch  2016-06-17 17:20:05 UTC (rev 180376)
@@ -1,53 +0,0 @@
-From 2c49f3ee2d9bac505543548301872fd0f36f31bc Mon Sep 17 00:00:00 2001
-From: anthraxx 
-Date: Sat, 6 Jun 2015 17:49:45 +0200
-Subject: [PATCH] configurable locations
-

- Makefile.am | 

[arch-commits] Commit in hydra/trunk (fix-locations.patch)

2016-06-17 Thread Levente Polyak
Date: Friday, June 17, 2016 @ 17:19:53
  Author: anthraxx
Revision: 180375

upgpkg: hydra 8.2-1

Deleted:
  hydra/trunk/fix-locations.patch

-+
 fix-locations.patch |   53 --
 1 file changed, 53 deletions(-)

Deleted: fix-locations.patch
===
--- fix-locations.patch 2016-06-17 17:19:17 UTC (rev 180374)
+++ fix-locations.patch 2016-06-17 17:19:53 UTC (rev 180375)
@@ -1,53 +0,0 @@
-From 2c49f3ee2d9bac505543548301872fd0f36f31bc Mon Sep 17 00:00:00 2001
-From: anthraxx 
-Date: Sat, 6 Jun 2015 17:49:45 +0200
-Subject: [PATCH] configurable locations
-

- Makefile.am | 23 +--
- 1 file changed, 13 insertions(+), 10 deletions(-)
-
-diff --git a/Makefile.am b/Makefile.am
-index 89fb354..8a6f200 100644
 a/Makefile.am
-+++ b/Makefile.am
-@@ -4,7 +4,10 @@
- OPTS=-I. -O3
- # -Wall -g -pedantic
- LIBS=-lm
--DIR=/bin
-+BINDIR = /bin
-+MANDIR ?= /man/man1
-+DATADIR ?= /etc
-+DESTDIR ?=
- 
- SRC = hydra-vnc.c hydra-pcnfs.c hydra-rexec.c hydra-nntp.c hydra-socks5.c \
-   hydra-telnet.c hydra-cisco.c hydra-http.c hydra-ftp.c hydra-imap.c \
-@@ -57,15 +60,15 @@ strip: all
-   -echo OK > /dev/null && test -x xhydra && strip xhydra || echo OK > 
/dev/null
- 
- install:  strip
--  -mkdir -p $(PREFIX)$(DIR)
--  cp -f hydra-wizard.sh $(BINS) $(PREFIX)$(DIR) && cd $(PREFIX)$(DIR) && 
chmod 755 hydra-wizard.sh $(BINS)
--  -echo OK > /dev/null && test -x xhydra && cp xhydra $(PREFIX)$(DIR) && 
cd $(PREFIX)$(DIR) && chmod 755 xhydra || echo OK > /dev/null
--  -sed -e "s|^INSTALLDIR=.*|INSTALLDIR="$(PREFIX)"|" dpl4hydra.sh > 
$(PREFIX)/bin/dpl4hydra.sh
--  -chmod 755 $(PREFIX)/bin/dpl4hydra.sh
--  -mkdir -p $(PREFIX)/etc/
--  -cp -f *.csv $(PREFIX)/etc/
--  -mkdir -p $(PREFIX)/man/man1
--  -cp -f hydra.1 xhydra.1 pw-inspector.1 $(PREFIX)/man/man1
-+  -mkdir -p $(DESTDIR)$(PREFIX)$(BINDIR)
-+  cp -f hydra-wizard.sh $(BINS) $(DESTDIR)$(PREFIX)$(BINDIR) && cd 
$(DESTDIR)$(PREFIX)$(BINDIR) && chmod 755 hydra-wizard.sh $(BINS)
-+  -echo OK > /dev/null && test -x xhydra && cp xhydra 
$(DESTDIR)$(PREFIX)$(BINDIR) && cd $(DESTDIR)$(PREFIX)$(BINDIR) && chmod 755 
xhydra || echo OK > /dev/null
-+  -sed -e "s|^INSTALLDIR=.*|INSTALLDIR="$(PREFIX)"|" dpl4hydra.sh | sed 
-e "s|^LOCATION=.*|LOCATION="$(DATADIR)"|" > 
$(DESTDIR)$(PREFIX)$(BINDIR)/dpl4hydra.sh
-+  -chmod 755 $(DESTDIR)$(PREFIX)$(BINDIR)/dpl4hydra.sh
-+  -mkdir -p $(DESTDIR)$(PREFIX)$(DATADIR)
-+  -cp -f *.csv $(DESTDIR)$(PREFIX)$(DATADIR)
-+  -mkdir -p $(DESTDIR)$(PREFIX)$(MANDIR)
-+  -cp -f hydra.1 xhydra.1 pw-inspector.1 $(DESTDIR)$(PREFIX)$(MANDIR)
- 
- clean:
-   rm -rf xhydra pw-inspector hydra *.o core *.core *.stackdump *~ 
Makefile.in Makefile dev_rfc hydra.restore arm/*.ipk arm/ipkg/usr/bin/* 
hydra-gtk/src/*.o hydra-gtk/src/xhydra hydra-gtk/stamp-h 
hydra-gtk/config.status hydra-gtk/errors hydra-gtk/config.log 
hydra-gtk/src/.deps hydra-gtk/src/Makefile hydra-gtk/Makefile
--- 
-2.4.2
-


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

2016-06-17 Thread Levente Polyak
Date: Friday, June 17, 2016 @ 17:19:17
  Author: anthraxx
Revision: 180374

upgpkg: hydra 8.2-1

Modified:
  hydra/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-06-17 15:37:17 UTC (rev 180373)
+++ PKGBUILD2016-06-17 17:19:17 UTC (rev 180374)
@@ -7,37 +7,32 @@
 # Contributor: Timothée Ravier 
 
 pkgname=hydra
-pkgver=8.1
-pkgrel=5
+pkgver=8.2
+pkgrel=1
 pkgdesc='A very fast network logon cracker which support many different 
services'
 url='https://www.thc.org/thc-hydra/'
 arch=('i686' 'x86_64')
 license=('GPL3')
-depends=('postgresql-libs' 'subversion' 'libssh' 'libmariadbclient' 'libidn' 
'libfbclient' 'afpfs-ng')
-optdepends=(
-  'gtk2: graphical front-end (xhydra)'
-)
-makedepends=('gtk2')
-source=(${pkgname}-${pkgver}.tar.gz::https://www.thc.org/releases/${pkgname}-${pkgver}.tar.gz
-fix-locations.patch)
-sha512sums=('7608dd365865e5976bea446faedaad9f0334e7572fd0ee47a601c471471fc7c8a922c7114f4df08705b34b29144d3a6552e66148adf6b0f92c67301119c94959'
-
'229fdaff59c6970a030ec81a78a2d34861a6caa947e7c2f6f9186cfd3bc0bf35ec96deadaae58ff1eaa45574f268fa5d9b9688df8c033fcee35ddeb302fb2069')
+depends=('postgresql-libs' 'subversion' 'libssh' 'libmariadbclient' 'libidn' 
'libfbclient' 'afpfs-ng' 'zlib' 'openssl' 'ncurses' 'pcre')
+optdepends=('gtk2: graphical front-end (xhydra)')
+makedepends=('gtk2' 'pkg-config')
+source=(${pkgname}-${pkgver}.tar.gz::https://www.thc.org/releases/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('0e2e6f4800060171681bffbb97e4fb4f4230d621573f2faf567515aabdd3546962815db9abdf0bd46ff2948418145c1485dd109ee356eb9c1e814c32ee50c618')
 DLAGENTS=('https::/usr/bin/curl -fLC - --retry 3 --retry-delay 3 -o %o %u -k')
 
 prepare() {
   cd ${pkgname}-${pkgver}
-  patch -p1 < "${srcdir}/fix-locations.patch"
 }
 
 build() {
   cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr
+  ./configure --fhs
   make
 }
 
 package() {
   cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" MANDIR="/share/man/man1" 
DATADIR="/share/${pkgname}" install
+  make DESTDIR="${pkgdir}" install
   install -Dm 644 README "${pkgdir}/usr/share/doc/${pkgname}/README"
 }
 


[arch-commits] Commit in lvm2/trunk (02-pvscan-fix-lvmlockd-global-lock.patch)

2016-06-17 Thread Christian Hesse
Date: Friday, June 17, 2016 @ 16:35:58
  Author: eworm
Revision: 270151

remove upstream patch

Deleted:
  lvm2/trunk/02-pvscan-fix-lvmlockd-global-lock.patch

--+
 02-pvscan-fix-lvmlockd-global-lock.patch |   27 ---
 1 file changed, 27 deletions(-)

Deleted: 02-pvscan-fix-lvmlockd-global-lock.patch
===
--- 02-pvscan-fix-lvmlockd-global-lock.patch2016-06-17 16:18:48 UTC (rev 
270150)
+++ 02-pvscan-fix-lvmlockd-global-lock.patch2016-06-17 16:35:58 UTC (rev 
270151)
@@ -1,27 +0,0 @@
-From 944ae4d2df0f15afb29ac0a68d0dd012d9df9acf Mon Sep 17 00:00:00 2001
-From: David Teigland 
-Date: Wed, 15 Jun 2016 16:51:36 -0500
-Subject: pvscan: fix lvmlockd global lock
-
-This should have been removed when pvscan was
-recently converted to use process_each_pv which
-does the lvmlockd locking.

- tools/pvscan.c | 4 
- 1 file changed, 4 deletions(-)
-
-diff --git a/tools/pvscan.c b/tools/pvscan.c
-index 5987e8b..78dad82 100644
 a/tools/pvscan.c
-+++ b/tools/pvscan.c
-@@ -624,10 +624,6 @@ int pvscan(struct cmd_context *cmd, int argc, char **argv)
-   return ECMD_FAILED;
-   }
- 
--  /* Needed for a current listing of the global VG namespace. */
--  if (!lockd_gl(cmd, "sh", 0))
--  return_ECMD_FAILED;
--
-   if (!(handle = init_processing_handle(cmd))) {
-   log_error("Failed to initialize processing handle.");
-   ret = ECMD_FAILED;


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

2016-06-17 Thread Christian Hesse
Date: Friday, June 17, 2016 @ 16:36:20
  Author: eworm
Revision: 270152

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

Added:
  lvm2/repos/testing-i686/01-lvm2-make-sockets-static.patch
(from rev 270151, lvm2/trunk/01-lvm2-make-sockets-static.patch)
  lvm2/repos/testing-i686/11-dm-initramfs.rules
(from rev 270151, lvm2/trunk/11-dm-initramfs.rules)
  lvm2/repos/testing-i686/PKGBUILD
(from rev 270151, lvm2/trunk/PKGBUILD)
  lvm2/repos/testing-i686/lvm2.install
(from rev 270151, lvm2/trunk/lvm2.install)
  lvm2/repos/testing-i686/lvm2_hook
(from rev 270151, lvm2/trunk/lvm2_hook)
  lvm2/repos/testing-i686/lvm2_install
(from rev 270151, lvm2/trunk/lvm2_install)
  lvm2/repos/testing-i686/sd-lvm2_install
(from rev 270151, lvm2/trunk/sd-lvm2_install)
  lvm2/repos/testing-x86_64/01-lvm2-make-sockets-static.patch
(from rev 270151, lvm2/trunk/01-lvm2-make-sockets-static.patch)
  lvm2/repos/testing-x86_64/11-dm-initramfs.rules
(from rev 270151, lvm2/trunk/11-dm-initramfs.rules)
  lvm2/repos/testing-x86_64/PKGBUILD
(from rev 270151, lvm2/trunk/PKGBUILD)
  lvm2/repos/testing-x86_64/lvm2.install
(from rev 270151, lvm2/trunk/lvm2.install)
  lvm2/repos/testing-x86_64/lvm2_hook
(from rev 270151, lvm2/trunk/lvm2_hook)
  lvm2/repos/testing-x86_64/lvm2_install
(from rev 270151, lvm2/trunk/lvm2_install)
  lvm2/repos/testing-x86_64/sd-lvm2_install
(from rev 270151, lvm2/trunk/sd-lvm2_install)

--+
 testing-i686/01-lvm2-make-sockets-static.patch   |   20 
 testing-i686/11-dm-initramfs.rules   |3 
 testing-i686/PKGBUILD|  103 +
 testing-i686/lvm2.install|   25 +
 testing-i686/lvm2_hook   |   12 ++
 testing-i686/lvm2_install|   34 ++
 testing-i686/sd-lvm2_install |   32 ++
 testing-x86_64/01-lvm2-make-sockets-static.patch |   20 
 testing-x86_64/11-dm-initramfs.rules |3 
 testing-x86_64/PKGBUILD  |  103 +
 testing-x86_64/lvm2.install  |   25 +
 testing-x86_64/lvm2_hook |   12 ++
 testing-x86_64/lvm2_install  |   34 ++
 testing-x86_64/sd-lvm2_install   |   32 ++
 14 files changed, 458 insertions(+)

Copied: lvm2/repos/testing-i686/01-lvm2-make-sockets-static.patch (from rev 
270151, lvm2/trunk/01-lvm2-make-sockets-static.patch)
===
--- testing-i686/01-lvm2-make-sockets-static.patch  
(rev 0)
+++ testing-i686/01-lvm2-make-sockets-static.patch  2016-06-17 16:36:20 UTC 
(rev 270152)
@@ -0,0 +1,20 @@
+diff -Nur LVM2.2.02.106.orig/scripts/dm_event_systemd_red_hat.socket.in 
LVM2.2.02.106/scripts/dm_event_systemd_red_hat.socket.in
+--- LVM2.2.02.106.orig/scripts/dm_event_systemd_red_hat.socket.in  
2014-04-10 17:38:46.0 +0200
 LVM2.2.02.106/scripts/dm_event_systemd_red_hat.socket.in   2014-04-26 
14:21:10.097269315 +0200
+@@ -8,6 +8,3 @@
+ ListenFIFO=@DEFAULT_DM_RUN_DIR@/dmeventd-client
+ SocketMode=0600
+ RemoveOnStop=true
+-
+-[Install]
+-WantedBy=sockets.target
+diff -Nur LVM2.2.02.106.orig/scripts/lvm2_lvmetad_systemd_red_hat.socket.in 
LVM2.2.02.106/scripts/lvm2_lvmetad_systemd_red_hat.socket.in
+--- LVM2.2.02.106.orig/scripts/lvm2_lvmetad_systemd_red_hat.socket.in  
2014-04-10 17:38:46.0 +0200
 LVM2.2.02.106/scripts/lvm2_lvmetad_systemd_red_hat.socket.in   
2014-04-26 14:21:15.287156152 +0200
+@@ -7,6 +7,3 @@
+ ListenStream=@DEFAULT_RUN_DIR@/lvmetad.socket
+ SocketMode=0600
+ RemoveOnStop=true
+-
+-[Install]
+-WantedBy=sysinit.target

Copied: lvm2/repos/testing-i686/11-dm-initramfs.rules (from rev 270151, 
lvm2/trunk/11-dm-initramfs.rules)
===
--- testing-i686/11-dm-initramfs.rules  (rev 0)
+++ testing-i686/11-dm-initramfs.rules  2016-06-17 16:36:20 UTC (rev 270152)
@@ -0,0 +1,3 @@
+# needed with new udev/mkinitcpio and as implemented in dracut:
+# 

+SUBSYSTEM=="block", KERNEL=="dm-[0-9]*", ACTION=="add|change", 
OPTIONS="db_persist"

Copied: lvm2/repos/testing-i686/PKGBUILD (from rev 270151, lvm2/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-06-17 16:36:20 UTC (rev 270152)
@@ -0,0 +1,103 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+# Maintainer: Thomas Bächler 
+
+pkgbase=lvm2
+pkgname=('lvm2' 'device-mapper')
+pkgver=2.02.157
+pkgrel=1
+arch=('i686' 'x86_64')
+url="http://sourceware.org/lvm2/;

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

2016-06-17 Thread Christian Hesse
Date: Friday, June 17, 2016 @ 16:18:48
  Author: eworm
Revision: 270150

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

Deleted:
  lvm2/repos/testing-i686/01-lvm2-make-sockets-static.patch
  lvm2/repos/testing-i686/11-dm-initramfs.rules
  lvm2/repos/testing-i686/PKGBUILD
  lvm2/repos/testing-i686/lvm2.install
  lvm2/repos/testing-i686/lvm2_hook
  lvm2/repos/testing-i686/lvm2_install
  lvm2/repos/testing-i686/sd-lvm2_install
  lvm2/repos/testing-x86_64/01-lvm2-make-sockets-static.patch
  lvm2/repos/testing-x86_64/11-dm-initramfs.rules
  lvm2/repos/testing-x86_64/PKGBUILD
  lvm2/repos/testing-x86_64/lvm2.install
  lvm2/repos/testing-x86_64/lvm2_hook
  lvm2/repos/testing-x86_64/lvm2_install
  lvm2/repos/testing-x86_64/sd-lvm2_install

--+
 testing-i686/01-lvm2-make-sockets-static.patch   |   20 ---
 testing-i686/11-dm-initramfs.rules   |3 
 testing-i686/PKGBUILD|  108 -
 testing-i686/lvm2.install|   25 
 testing-i686/lvm2_hook   |   12 --
 testing-i686/lvm2_install|   34 --
 testing-i686/sd-lvm2_install |   32 --
 testing-x86_64/01-lvm2-make-sockets-static.patch |   20 ---
 testing-x86_64/11-dm-initramfs.rules |3 
 testing-x86_64/PKGBUILD  |  108 -
 testing-x86_64/lvm2.install  |   25 
 testing-x86_64/lvm2_hook |   12 --
 testing-x86_64/lvm2_install  |   34 --
 testing-x86_64/sd-lvm2_install   |   32 --
 14 files changed, 468 deletions(-)

Deleted: testing-i686/01-lvm2-make-sockets-static.patch
===
--- testing-i686/01-lvm2-make-sockets-static.patch  2016-06-17 16:18:27 UTC 
(rev 270149)
+++ testing-i686/01-lvm2-make-sockets-static.patch  2016-06-17 16:18:48 UTC 
(rev 270150)
@@ -1,20 +0,0 @@
-diff -Nur LVM2.2.02.106.orig/scripts/dm_event_systemd_red_hat.socket.in 
LVM2.2.02.106/scripts/dm_event_systemd_red_hat.socket.in
 LVM2.2.02.106.orig/scripts/dm_event_systemd_red_hat.socket.in  
2014-04-10 17:38:46.0 +0200
-+++ LVM2.2.02.106/scripts/dm_event_systemd_red_hat.socket.in   2014-04-26 
14:21:10.097269315 +0200
-@@ -8,6 +8,3 @@
- ListenFIFO=@DEFAULT_DM_RUN_DIR@/dmeventd-client
- SocketMode=0600
- RemoveOnStop=true
--
--[Install]
--WantedBy=sockets.target
-diff -Nur LVM2.2.02.106.orig/scripts/lvm2_lvmetad_systemd_red_hat.socket.in 
LVM2.2.02.106/scripts/lvm2_lvmetad_systemd_red_hat.socket.in
 LVM2.2.02.106.orig/scripts/lvm2_lvmetad_systemd_red_hat.socket.in  
2014-04-10 17:38:46.0 +0200
-+++ LVM2.2.02.106/scripts/lvm2_lvmetad_systemd_red_hat.socket.in   
2014-04-26 14:21:15.287156152 +0200
-@@ -7,6 +7,3 @@
- ListenStream=@DEFAULT_RUN_DIR@/lvmetad.socket
- SocketMode=0600
- RemoveOnStop=true
--
--[Install]
--WantedBy=sysinit.target

Deleted: testing-i686/11-dm-initramfs.rules
===
--- testing-i686/11-dm-initramfs.rules  2016-06-17 16:18:27 UTC (rev 270149)
+++ testing-i686/11-dm-initramfs.rules  2016-06-17 16:18:48 UTC (rev 270150)
@@ -1,3 +0,0 @@
-# needed with new udev/mkinitcpio and as implemented in dracut:
-# 

-SUBSYSTEM=="block", KERNEL=="dm-[0-9]*", ACTION=="add|change", 
OPTIONS="db_persist"

Deleted: testing-i686/PKGBUILD
===
--- testing-i686/PKGBUILD   2016-06-17 16:18:27 UTC (rev 270149)
+++ testing-i686/PKGBUILD   2016-06-17 16:18:48 UTC (rev 270150)
@@ -1,108 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-# Maintainer: Thomas Bächler 
-
-pkgbase=lvm2
-pkgname=('lvm2' 'device-mapper')
-pkgver=2.02.156
-pkgrel=2
-arch=('i686' 'x86_64')
-url="http://sourceware.org/lvm2/;
-license=('GPL2' 'LGPL2.1')
-makedepends=('systemd' 'thin-provisioning-tools')
-groups=('base')
-source=(ftp://sources.redhat.com/pub/lvm2/LVM2.${pkgver}.tgz{,.asc}
-lvm2_install
-lvm2_hook
-sd-lvm2_install
-11-dm-initramfs.rules
-01-lvm2-make-sockets-static.patch
-02-pvscan-fix-lvmlockd-global-lock.patch)
-sha1sums=('35756b700c33e5a19a864656493aace33da79661'
-  'SKIP'
-  '056bb0227d07e35a3d365db02f439585314cfc76'
-  'ff0fdf0a3005a41acd4b36865056109effc3474b'
-  'f6ac78163ab3aba5b51a71655d6e53d05014bfa4'
-  'f6a554eea9557c3c236df2943bb6e7e723945c41'
-  'b084512af42f2e16cdccd8b7ee4de27b574d1f94'
-  'df8b2110203464f2bb55fb728cdd07e6d71f1a10')
-validpgpkeys=('88437EF5C077BD113D3B7224228191C1567E2C17')
-
-prepare() {
-  cd LVM2.${pkgver}
-
-  # enable lvmetad
-  sed -i 

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

2016-06-17 Thread Christian Hesse
Date: Friday, June 17, 2016 @ 16:18:27
  Author: eworm
Revision: 270149

upgpkg: lvm2 2.02.157-1

new upstream release

Modified:
  lvm2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-06-17 13:37:17 UTC (rev 270148)
+++ PKGBUILD2016-06-17 16:18:27 UTC (rev 270149)
@@ -4,8 +4,8 @@
 
 pkgbase=lvm2
 pkgname=('lvm2' 'device-mapper')
-pkgver=2.02.156
-pkgrel=2
+pkgver=2.02.157
+pkgrel=1
 arch=('i686' 'x86_64')
 url="http://sourceware.org/lvm2/;
 license=('GPL2' 'LGPL2.1')
@@ -16,16 +16,14 @@
 lvm2_hook
 sd-lvm2_install
 11-dm-initramfs.rules
-01-lvm2-make-sockets-static.patch
-02-pvscan-fix-lvmlockd-global-lock.patch)
-sha1sums=('35756b700c33e5a19a864656493aace33da79661'
+   01-lvm2-make-sockets-static.patch)
+sha1sums=('38c2aacef277a58cb32d2777a2378a2a08af'
   'SKIP'
   '056bb0227d07e35a3d365db02f439585314cfc76'
   'ff0fdf0a3005a41acd4b36865056109effc3474b'
   'f6ac78163ab3aba5b51a71655d6e53d05014bfa4'
   'f6a554eea9557c3c236df2943bb6e7e723945c41'
-  'b084512af42f2e16cdccd8b7ee4de27b574d1f94'
-  'df8b2110203464f2bb55fb728cdd07e6d71f1a10')
+ 'b084512af42f2e16cdccd8b7ee4de27b574d1f94')
 validpgpkeys=('88437EF5C077BD113D3B7224228191C1567E2C17')
 
 prepare() {
@@ -36,9 +34,6 @@
 
   # make systemd sockets static
   patch -p1 -i "${srcdir}/01-lvm2-make-sockets-static.patch"
-
-  # pvscan: fix lvmlockd global lock
-  patch -p1 -i "${srcdir}/02-pvscan-fix-lvmlockd-global-lock.patch"
 }
 
 build() {


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

2016-06-17 Thread Anatol Pomozov
Date: Friday, June 17, 2016 @ 15:37:17
  Author: anatolik
Revision: 180373

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-06-17 15:36:07 UTC (rev 180372)
+++ community-i686/PKGBUILD 2016-06-17 15:37:17 UTC (rev 180373)
@@ -1,77 +0,0 @@
-# $Id$
-# Maintainer: Anatol Pomozov 
-# Contributor: Jonne Haß 
-
-pkgname=crystal
-pkgver=0.18.0
-pkgrel=1
-_binary_rel=1
-pkgdesc='The Crystal Programming Language'
-arch=(i686 x86_64)
-url='http://crystal-lang.org'
-license=(Apache)
-depends=(gc libatomic_ops pcre libevent libffi)
-# depend on previous llvm version until 
https://github.com/crystal-lang/crystal/issues/1614 is resolved
-makedepends=(libxml2 llvm35)
-checkdepends=(libyaml libxml2 gmp inetutils git)
-optdepends=('shards: crystal language package manager'
-'libyaml: For YAML support'
-'gmp: For BigInt support'
-'libxml2: For XML support')
-source=(crystal-$pkgver.tar.gz::https://github.com/crystal-lang/crystal/archive/$pkgver.tar.gz)
-source_i686+=(https://github.com/crystal-lang/crystal/releases/download/$pkgver/$pkgname-$pkgver-$_binary_rel-linux-i686.tar.gz)
-source_x86_64+=(https://github.com/crystal-lang/crystal/releases/download/$pkgver/$pkgname-$pkgver-$_binary_rel-linux-x86_64.tar.gz)
-sha256sums=('e0511268558f0400f72b970db049a453212ca94d9ba3250912bfffa3abcb69e4')
-sha256sums_i686=('d2892b474c8f848b0c1ef57a359965dfca13c099328e3e61fbaf53b5946432d7')
-sha256sums_x86_64=('36e4346f645a136e373b932bb1dd4b0457ba6ba55cce3b671e402603b0d28899')
-
-prepare() {
-  cd $pkgname-$pkgver
-  sed -i 's|Please install shards: https://github.com/ysbaddaden/shards|Please 
install shards: pacman -S shards|' src/compiler/crystal/command.cr
-}
-
-build() {
-  cd $pkgname-$pkgver
-
-  make release=1 \
-   PATH="$srcdir/$pkgname-$pkgver-$_binary_rel/bin:$PATH" \
-   CRYSTAL_PATH="$srcdir/$pkgname-$pkgver/src" \
-   CRYSTAL_CONFIG_VERSION="$pkgver" \
-   CRYSTAL_CONFIG_PATH="libs:/usr/lib/crystal" \
-   CRYSTAL_CACHE_DIR="/tmp/crystal"
-  make doc CRYSTAL_CACHE_DIR="/tmp/crystal"
-}
-
-check() {
-  cd $pkgname-$pkgver
-
-  # splitting all_spec into 'compiler_spec std_spec' as a workaround for
-  # https://github.com/crystal-lang/crystal/issues/2789
-  make compiler_spec std_spec \
-CRYSTAL_PATH="$srcdir/$pkgname-$pkgver/src" \
-CRYSTAL_CONFIG_VERSION="$pkgver" \
-CRYSTAL_CACHE_DIR="/tmp/crystal"
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  # /usr/bin/crystalcompiled executable
-  # /usr/lib/crystal/   compiler src & core libs
-  # /usr/share/doc/crystal/api  api docs
-  # /usr/share/doc/crystal/samples/ samples
-
-  install -Dm755 ".build/crystal" "$pkgdir/usr/bin/crystal"
-
-  install -dm755 "$pkgdir/usr/lib"
-  cp -r src "$pkgdir/usr/lib/crystal"
-
-  install -dm755 "$pkgdir/usr/share/doc/crystal"
-  cp -r doc "$pkgdir/usr/share/doc/crystal/api"
-  cp -r samples "$pkgdir/usr/share/doc/crystal/"
-
-  install -Dm644 etc/completion.bash 
"$pkgdir/usr/share/bash-completion/completions/crystal"
-  install -Dm644 etc/completion.zsh 
"$pkgdir/usr/share/zsh/site-functions/_crystal"
-
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: crystal/repos/community-i686/PKGBUILD (from rev 180372, 
crystal/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-06-17 15:37:17 UTC (rev 180373)
@@ -0,0 +1,77 @@
+# $Id$
+# Maintainer: Anatol Pomozov 
+# Contributor: Jonne Haß 
+
+pkgname=crystal
+pkgver=0.18.2
+pkgrel=1
+_binary_rel=1
+pkgdesc='The Crystal Programming Language'
+arch=(i686 x86_64)
+url='http://crystal-lang.org'
+license=(Apache)
+depends=(gc libatomic_ops pcre libevent libffi)
+# depend on previous llvm version until 
https://github.com/crystal-lang/crystal/issues/1614 is resolved
+makedepends=(libxml2 llvm35)
+checkdepends=(libyaml libxml2 gmp inetutils git)
+optdepends=('shards: crystal language package manager'
+'libyaml: For YAML support'
+'gmp: For BigInt support'
+'libxml2: For XML support')

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

2016-06-17 Thread Anatol Pomozov
Date: Friday, June 17, 2016 @ 15:36:07
  Author: anatolik
Revision: 180372

upgpkg: crystal 0.18.2-1

Modified:
  crystal/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-06-17 14:51:46 UTC (rev 180371)
+++ PKGBUILD2016-06-17 15:36:07 UTC (rev 180372)
@@ -3,7 +3,7 @@
 # Contributor: Jonne Haß 
 
 pkgname=crystal
-pkgver=0.18.0
+pkgver=0.18.2
 pkgrel=1
 _binary_rel=1
 pkgdesc='The Crystal Programming Language'
@@ -21,9 +21,9 @@
 
source=(crystal-$pkgver.tar.gz::https://github.com/crystal-lang/crystal/archive/$pkgver.tar.gz)
 
source_i686+=(https://github.com/crystal-lang/crystal/releases/download/$pkgver/$pkgname-$pkgver-$_binary_rel-linux-i686.tar.gz)
 
source_x86_64+=(https://github.com/crystal-lang/crystal/releases/download/$pkgver/$pkgname-$pkgver-$_binary_rel-linux-x86_64.tar.gz)
-sha256sums=('e0511268558f0400f72b970db049a453212ca94d9ba3250912bfffa3abcb69e4')
-sha256sums_i686=('d2892b474c8f848b0c1ef57a359965dfca13c099328e3e61fbaf53b5946432d7')
-sha256sums_x86_64=('36e4346f645a136e373b932bb1dd4b0457ba6ba55cce3b671e402603b0d28899')
+sha256sums=('59f09e4132b3ebced24cfc9123d5629f87f79901241aec704c7a89f2a6fab4ab')
+sha256sums_i686=('9197f5c408f331762aa156140119877e779ab899c366124ae75cdb867252f091')
+sha256sums_x86_64=('63d9d811785f6156072c4eb9017b0e3c7e6e15cf80ffed9d637c860c3ce19455')
 
 prepare() {
   cd $pkgname-$pkgver


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

2016-06-17 Thread Levente Polyak
Date: Friday, June 17, 2016 @ 14:51:46
  Author: anthraxx
Revision: 180371

archrelease: copy trunk to community-any

Added:
  gradle/repos/community-any/PKGBUILD
(from rev 180370, gradle/trunk/PKGBUILD)
  gradle/repos/community-any/gradle.sh
(from rev 180370, gradle/trunk/gradle.sh)
Deleted:
  gradle/repos/community-any/PKGBUILD
  gradle/repos/community-any/gradle.sh

---+
 PKGBUILD  |  148 ++--
 gradle.sh |4 -
 2 files changed, 76 insertions(+), 76 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-06-17 14:51:41 UTC (rev 180370)
+++ PKGBUILD2016-06-17 14:51:46 UTC (rev 180371)
@@ -1,74 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Simon Legner 
-# Contributor: Chris Molozian (novabyte) 
-# Contributor: Sanjuro Makabe (itti) 
-
-pkgbase=gradle
-pkgname=('gradle' 'gradle-doc' 'gradle-src')
-pkgver=2.13
-pkgrel=1
-pkgdesc='A powerful build system for the JVM'
-url='https://gradle.org/'
-arch=('any')
-license=('Apache')
-depends=('java-environment' 'bash')
-source=(https://services.gradle.org/distributions/${pkgbase}-${pkgver}-all.zip
-${pkgbase}.sh)
-sha512sums=('78fd6fe5f6540e13bac476bf8c34cc8a175ccf5350a970dd85c7ac003102a55cf10544fcb7cfe5e74c47458a6aed39b3fed5975ffec24bcd3029af884389faf2'
-
'f38e9b26e22948366acf6580d6f38e2c88c3791c425b24922368fe1bc78c744fa516a03ffdbef02e3755859da620a6259997d4b4e5f97e3dc8cb49b74a694616')
-
-package_gradle() {
-  cd ${pkgbase}-${pkgver}
-
-  # install profile.d script
-  install -Dm 755 "${srcdir}/${pkgbase}.sh" 
"${pkgdir}/etc/profile.d/${pkgbase}.sh"
-
-  # create the necessary directory structure
-  install -d "${pkgdir}/usr/share/java/${pkgname}/bin"
-  install -d "${pkgdir}/usr/share/java/${pkgname}/lib/plugins"
-  install -d "${pkgdir}/usr/share/java/${pkgname}/init.d"
-  install -d "${pkgdir}/usr/bin"
-
-  # copy across jar files
-  install -Dm 644 lib/*.jar "${pkgdir}/usr/share/java/${pkgname}/lib"
-  install -Dm 644 lib/plugins/*.jar 
"${pkgdir}/usr/share/java/${pkgname}/lib/plugins"
-
-  # copy across supporting text documentation and scripts
-  install -m 644 NOTICE "${pkgdir}/usr/share/java/${pkgname}"
-  install -m 644 LICENSE "${pkgdir}/usr/share/java/${pkgname}"
-  install -m 644 *.txt "${pkgdir}/usr/share/java/${pkgname}"
-  install -m 644 *.html "${pkgdir}/usr/share/java/${pkgname}"
-  install -m 755 bin/gradle "${pkgdir}/usr/share/java/${pkgname}/bin"
-  install -m 644 init.d/*.* "${pkgdir}/usr/share/java/${pkgname}/init.d"
-
-  # link gradle script to /usr/bin
-  ln -s /usr/share/java/${pkgname}/bin/${pkgname} "${pkgdir}/usr/bin"
-}
-
-package_gradle-doc() {
-  pkgdesc='A powerful build system for the JVM (documentation and samples)'
-  options=('!strip')
-  optdepends=('gradle')
-
-  cd ${pkgbase}-${pkgver}
-
-  # create the necessary directory structure
-  install -d "${pkgdir}/usr/share/java/gradle/docs"
-  install -d "${pkgdir}/usr/share/java/gradle/samples"
-
-  # copy across documentation and samples
-  cp -r docs/* "${pkgdir}/usr/share/java/gradle/docs"
-  cp -r samples/* "${pkgdir}/usr/share/java/gradle/samples"
-}
-
-package_gradle-src() {
-  pkgdesc='A powerful build system for the JVM (sources)'
-  options=('!strip')
-  optdepends=('gradle')
-
-  cd ${pkgbase}-${pkgver}
-  install -d "${pkgdir}/usr/share/java/gradle/src"
-  cp -r src/* "${pkgdir}/usr/share/java/gradle/src"
-}
-
-# vim: ts=2 sw=2 et:

Copied: gradle/repos/community-any/PKGBUILD (from rev 180370, 
gradle/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-06-17 14:51:46 UTC (rev 180371)
@@ -0,0 +1,74 @@
+# Maintainer: Levente Polyak 
+# Contributor: Simon Legner 
+# Contributor: Chris Molozian (novabyte) 
+# Contributor: Sanjuro Makabe (itti) 
+
+pkgbase=gradle
+pkgname=('gradle' 'gradle-doc' 'gradle-src')
+pkgver=2.14
+pkgrel=1
+pkgdesc='A powerful build system for the JVM'
+url='https://gradle.org/'
+arch=('any')
+license=('Apache')
+depends=('java-environment' 'bash')
+source=(https://services.gradle.org/distributions/${pkgbase}-${pkgver}-all.zip
+${pkgbase}.sh)
+sha512sums=('1d5448183d1ba7ff12f9f8714bc77c55788b8bbd5c9736a9eb764433e877a56deb2f2445cdc9e9a6d0bfcf26fe0aa9ff5f825a58ff3d2a868ef38c87d7562c64'
+
'f38e9b26e22948366acf6580d6f38e2c88c3791c425b24922368fe1bc78c744fa516a03ffdbef02e3755859da620a6259997d4b4e5f97e3dc8cb49b74a694616')
+
+package_gradle() {
+  cd ${pkgbase}-${pkgver}
+
+  # install profile.d script
+  install -Dm 755 "${srcdir}/${pkgbase}.sh" 
"${pkgdir}/etc/profile.d/${pkgbase}.sh"
+
+  # create the necessary directory structure
+  install -d "${pkgdir}/usr/share/java/${pkgname}/bin"
+  install -d "${pkgdir}/usr/share/java/${pkgname}/lib/plugins"
+  

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

2016-06-17 Thread Levente Polyak
Date: Friday, June 17, 2016 @ 14:51:41
  Author: anthraxx
Revision: 180370

upgpkg: gradle 2.14-1

Modified:
  gradle/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-06-17 14:49:38 UTC (rev 180369)
+++ PKGBUILD2016-06-17 14:51:41 UTC (rev 180370)
@@ -5,7 +5,7 @@
 
 pkgbase=gradle
 pkgname=('gradle' 'gradle-doc' 'gradle-src')
-pkgver=2.13
+pkgver=2.14
 pkgrel=1
 pkgdesc='A powerful build system for the JVM'
 url='https://gradle.org/'
@@ -14,7 +14,7 @@
 depends=('java-environment' 'bash')
 source=(https://services.gradle.org/distributions/${pkgbase}-${pkgver}-all.zip
 ${pkgbase}.sh)
-sha512sums=('78fd6fe5f6540e13bac476bf8c34cc8a175ccf5350a970dd85c7ac003102a55cf10544fcb7cfe5e74c47458a6aed39b3fed5975ffec24bcd3029af884389faf2'
+sha512sums=('1d5448183d1ba7ff12f9f8714bc77c55788b8bbd5c9736a9eb764433e877a56deb2f2445cdc9e9a6d0bfcf26fe0aa9ff5f825a58ff3d2a868ef38c87d7562c64'
 
'f38e9b26e22948366acf6580d6f38e2c88c3791c425b24922368fe1bc78c744fa516a03ffdbef02e3755859da620a6259997d4b4e5f97e3dc8cb49b74a694616')
 
 package_gradle() {


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

2016-06-17 Thread Levente Polyak
Date: Friday, June 17, 2016 @ 14:49:32
  Author: anthraxx
Revision: 180368

upgpkg: ropper 1.9.10-1

Modified:
  ropper/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-06-17 13:20:00 UTC (rev 180367)
+++ PKGBUILD2016-06-17 14:49:32 UTC (rev 180368)
@@ -3,18 +3,16 @@
 pkgbase=ropper
 pkgname=('ropper' 'python-ropper' 'python2-ropper')
 _pkgname=Ropper
-pkgver=1.9.5
+pkgver=1.9.10
 pkgrel=1
 pkgdesc="Show information about binary files and find gadgets to build rop 
chains for different architectures"
 url="https://github.com/sashs/Ropper;
 arch=('any')
 license=('GPL2')
-optdepends=('sqlite: gadgets database support'
-'python-keystone: assemble command support')
 makedepends=('python-setuptools' 'python-capstone' 'python-filebytes' 
'python2-setuptools' 'python2-capstone' 'python2-filebytes')
 checkdepends=('sqlite')
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/sashs/${_pkgname}/archive/v${pkgver}.tar.gz)
-sha512sums=('cb14b763ab181c6e0e6ffb17a2fa533aef897d14775ea42037a66929e6d1992c69aa323693830a8e48510ffee48c84510d1fa7047d9fd6777c9549dbac8ac403')
+sha512sums=('467ec8b4d15278313ea0725b11fed0358820c846ec1741f564118479631c664d05ba8149fe5a0af8ce1cd4dbcda7e3bb068539e29013d4fac50c1ca0f96ff622')
 
 prepare() {
   cp -ra ${_pkgname}-${pkgver}{,-py2}
@@ -41,6 +39,8 @@
 
 package_ropper() {
   depends=('python' 'python-ropper')
+  optdepends=('sqlite: gadgets database support'
+  'python-keystone: assemble command support')
   cd ${_pkgname}-${pkgver}
   python setup.py install -O1 --root="${pkgdir}" --skip-build
   install -Dm 644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md"
@@ -49,20 +49,24 @@
 
 package_python-ropper() {
   depends=('python-capstone' 'python-filebytes')
+  optdepends=('sqlite: gadgets database support'
+  'python-keystone: assemble command support')
   cd ${_pkgname}-${pkgver}
   python setup.py install -O1 --root="${pkgdir}" --skip-build
   install -Dm 644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md"
   install -Dm 644 sample.py "${pkgdir}/usr/share/doc/${pkgname}/sample.py"
-  rm "${pkgdir}/usr/bin/ropper"
+  rm -r "${pkgdir}/usr/bin"
 }
 
 package_python2-ropper() {
   depends=('python2-capstone' 'python2-filebytes')
+  optdepends=('sqlite: gadgets database support'
+  'python2-keystone: assemble command support')
   cd ${_pkgname}-${pkgver}-py2
   python2 setup.py install -O1 --root="${pkgdir}" --skip-build
   install -Dm 644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md"
   install -Dm 644 sample.py "${pkgdir}/usr/share/doc/${pkgname}/sample.py"
-  rm "${pkgdir}/usr/bin/ropper"
+  rm -r "${pkgdir}/usr/bin"
 }
 
 # vim: ts=2 sw=2 et:


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

2016-06-17 Thread Levente Polyak
Date: Friday, June 17, 2016 @ 14:49:38
  Author: anthraxx
Revision: 180369

archrelease: copy trunk to community-any

Added:
  ropper/repos/community-any/PKGBUILD
(from rev 180368, ropper/trunk/PKGBUILD)
Deleted:
  ropper/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-06-17 14:49:32 UTC (rev 180368)
+++ PKGBUILD2016-06-17 14:49:38 UTC (rev 180369)
@@ -1,68 +0,0 @@
-# Maintainer: Levente Polyak 
-
-pkgbase=ropper
-pkgname=('ropper' 'python-ropper' 'python2-ropper')
-_pkgname=Ropper
-pkgver=1.9.5
-pkgrel=1
-pkgdesc="Show information about binary files and find gadgets to build rop 
chains for different architectures"
-url="https://github.com/sashs/Ropper;
-arch=('any')
-license=('GPL2')
-optdepends=('sqlite: gadgets database support'
-'python-keystone: assemble command support')
-makedepends=('python-setuptools' 'python-capstone' 'python-filebytes' 
'python2-setuptools' 'python2-capstone' 'python2-filebytes')
-checkdepends=('sqlite')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/sashs/${_pkgname}/archive/v${pkgver}.tar.gz)
-sha512sums=('cb14b763ab181c6e0e6ffb17a2fa533aef897d14775ea42037a66929e6d1992c69aa323693830a8e48510ffee48c84510d1fa7047d9fd6777c9549dbac8ac403')
-
-prepare() {
-  cp -ra ${_pkgname}-${pkgver}{,-py2}
-  sed -r 's|(env python)|\12|' -i ${_pkgname}-${pkgver}-py2/sample.py
-}
-
-build() {
-  (cd ${_pkgname}-${pkgver}
-python setup.py build
-  )
-  (cd ${_pkgname}-${pkgver}-py2
-python2 setup.py build
-  )
-}
-
-check() {
-  (cd ${_pkgname}-${pkgver}
-python test.py
-  )
-  (cd ${_pkgname}-${pkgver}-py2
-python2 test.py
-  )
-}
-
-package_ropper() {
-  depends=('python' 'python-ropper')
-  cd ${_pkgname}-${pkgver}
-  python setup.py install -O1 --root="${pkgdir}" --skip-build
-  install -Dm 644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md"
-  rm -r "${pkgdir}/usr/lib"
-}
-
-package_python-ropper() {
-  depends=('python-capstone' 'python-filebytes')
-  cd ${_pkgname}-${pkgver}
-  python setup.py install -O1 --root="${pkgdir}" --skip-build
-  install -Dm 644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md"
-  install -Dm 644 sample.py "${pkgdir}/usr/share/doc/${pkgname}/sample.py"
-  rm "${pkgdir}/usr/bin/ropper"
-}
-
-package_python2-ropper() {
-  depends=('python2-capstone' 'python2-filebytes')
-  cd ${_pkgname}-${pkgver}-py2
-  python2 setup.py install -O1 --root="${pkgdir}" --skip-build
-  install -Dm 644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md"
-  install -Dm 644 sample.py "${pkgdir}/usr/share/doc/${pkgname}/sample.py"
-  rm "${pkgdir}/usr/bin/ropper"
-}
-
-# vim: ts=2 sw=2 et:

Copied: ropper/repos/community-any/PKGBUILD (from rev 180368, 
ropper/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-06-17 14:49:38 UTC (rev 180369)
@@ -0,0 +1,72 @@
+# Maintainer: Levente Polyak 
+
+pkgbase=ropper
+pkgname=('ropper' 'python-ropper' 'python2-ropper')
+_pkgname=Ropper
+pkgver=1.9.10
+pkgrel=1
+pkgdesc="Show information about binary files and find gadgets to build rop 
chains for different architectures"
+url="https://github.com/sashs/Ropper;
+arch=('any')
+license=('GPL2')
+makedepends=('python-setuptools' 'python-capstone' 'python-filebytes' 
'python2-setuptools' 'python2-capstone' 'python2-filebytes')
+checkdepends=('sqlite')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/sashs/${_pkgname}/archive/v${pkgver}.tar.gz)
+sha512sums=('467ec8b4d15278313ea0725b11fed0358820c846ec1741f564118479631c664d05ba8149fe5a0af8ce1cd4dbcda7e3bb068539e29013d4fac50c1ca0f96ff622')
+
+prepare() {
+  cp -ra ${_pkgname}-${pkgver}{,-py2}
+  sed -r 's|(env python)|\12|' -i ${_pkgname}-${pkgver}-py2/sample.py
+}
+
+build() {
+  (cd ${_pkgname}-${pkgver}
+python setup.py build
+  )
+  (cd ${_pkgname}-${pkgver}-py2
+python2 setup.py build
+  )
+}
+
+check() {
+  (cd ${_pkgname}-${pkgver}
+python test.py
+  )
+  (cd ${_pkgname}-${pkgver}-py2
+python2 test.py
+  )
+}
+
+package_ropper() {
+  depends=('python' 'python-ropper')
+  optdepends=('sqlite: gadgets database support'
+  'python-keystone: assemble command support')
+  cd ${_pkgname}-${pkgver}
+  python setup.py install -O1 --root="${pkgdir}" --skip-build
+  install -Dm 644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md"
+  rm -r "${pkgdir}/usr/lib"
+}
+
+package_python-ropper() {
+  depends=('python-capstone' 'python-filebytes')
+  optdepends=('sqlite: gadgets database support'
+  'python-keystone: assemble command support')
+  cd ${_pkgname}-${pkgver}
+  python setup.py install -O1 --root="${pkgdir}" --skip-build
+  install -Dm 644 

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

2016-06-17 Thread Antonio Rojas
Date: Friday, June 17, 2016 @ 13:35:16
  Author: arojas
Revision: 270140

archrelease: copy kde-unstable to kde-unstable-i686, kde-unstable-x86_64

Added:
  sddm-kcm/repos/kde-unstable-i686/
  sddm-kcm/repos/kde-unstable-i686/PKGBUILD
(from rev 270139, sddm-kcm/kde-unstable/PKGBUILD)
  sddm-kcm/repos/kde-unstable-x86_64/
  sddm-kcm/repos/kde-unstable-x86_64/PKGBUILD
(from rev 270139, sddm-kcm/kde-unstable/PKGBUILD)

--+
 kde-unstable-i686/PKGBUILD   |   41 +
 kde-unstable-x86_64/PKGBUILD |   41 +
 2 files changed, 82 insertions(+)

Copied: sddm-kcm/repos/kde-unstable-i686/PKGBUILD (from rev 270139, 
sddm-kcm/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2016-06-17 13:35:16 UTC (rev 270140)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Maintainer: Antonio Rojas
+
+pkgname=sddm-kcm
+pkgver=5.6.95
+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/unstable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('8d473da0fefb8a6cc8b618bcf7186b0d3d304d74633b46c7957549d43573b33b'
+'SKIP')
+validpgpkeys=('13C16D03EDE728514473AA73A506E6D4DD4D5088'  # Jonathan Riddell
+  '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/kde-unstable-x86_64/PKGBUILD (from rev 270139, 
sddm-kcm/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2016-06-17 13:35:16 UTC (rev 270140)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Maintainer: Antonio Rojas
+
+pkgname=sddm-kcm
+pkgver=5.6.95
+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/unstable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('8d473da0fefb8a6cc8b618bcf7186b0d3d304d74633b46c7957549d43573b33b'
+'SKIP')
+validpgpkeys=('13C16D03EDE728514473AA73A506E6D4DD4D5088'  # Jonathan Riddell
+  '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
+}
+


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

2016-06-17 Thread Antonio Rojas
Date: Friday, June 17, 2016 @ 13:35:48
  Author: arojas
Revision: 270142

archrelease: copy kde-unstable to kde-unstable-i686, kde-unstable-x86_64

Added:
  plasma-sdk/repos/kde-unstable-i686/
  plasma-sdk/repos/kde-unstable-i686/PKGBUILD
(from rev 270141, plasma-sdk/kde-unstable/PKGBUILD)
  plasma-sdk/repos/kde-unstable-x86_64/
  plasma-sdk/repos/kde-unstable-x86_64/PKGBUILD
(from rev 270141, plasma-sdk/kde-unstable/PKGBUILD)

--+
 kde-unstable-i686/PKGBUILD   |   36 
 kde-unstable-x86_64/PKGBUILD |   36 
 2 files changed, 72 insertions(+)

Copied: plasma-sdk/repos/kde-unstable-i686/PKGBUILD (from rev 270141, 
plasma-sdk/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2016-06-17 13:35:48 UTC (rev 270142)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+
+pkgname=plasma-sdk
+pkgver=5.6.95
+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)
+makedepends=(extra-cmake-modules qt5-webkit kitemmodels knewstuff python2)
+groups=(plasma)
+source=("http://download.kde.org/unstable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('67339c0301e7cf721355f02da289c7204137a82da78b440513d1f44d67f7d8df'
+'SKIP')
+validpgpkeys=('13C16D03EDE728514473AA73A506E6D4DD4D5088'  # Jonathan Riddell
+  '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/kde-unstable-x86_64/PKGBUILD (from rev 270141, 
plasma-sdk/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2016-06-17 13:35:48 UTC (rev 270142)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+
+pkgname=plasma-sdk
+pkgver=5.6.95
+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)
+makedepends=(extra-cmake-modules qt5-webkit kitemmodels knewstuff python2)
+groups=(plasma)
+source=("http://download.kde.org/unstable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('67339c0301e7cf721355f02da289c7204137a82da78b440513d1f44d67f7d8df'
+'SKIP')
+validpgpkeys=('13C16D03EDE728514473AA73A506E6D4DD4D5088'  # Jonathan Riddell
+  '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
+}


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

2016-06-17 Thread Antonio Rojas
Date: Friday, June 17, 2016 @ 13:37:17
  Author: arojas
Revision: 270148

archrelease: copy kde-unstable to kde-unstable-any

Added:
  breeze-grub/repos/kde-unstable-any/
  breeze-grub/repos/kde-unstable-any/PKGBUILD
(from rev 270147, breeze-grub/kde-unstable/PKGBUILD)

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

Copied: breeze-grub/repos/kde-unstable-any/PKGBUILD (from rev 270147, 
breeze-grub/kde-unstable/PKGBUILD)
===
--- kde-unstable-any/PKGBUILD   (rev 0)
+++ kde-unstable-any/PKGBUILD   2016-06-17 13:37:17 UTC (rev 270148)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+
+pkgname=breeze-grub
+pkgver=5.6.95
+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/unstable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('76a5bc6fc1fc3d0b947aa52ebdae779a513cf887b0c55a3346e01aa03f9f328c'
+'SKIP')
+validpgpkeys=('13C16D03EDE728514473AA73A506E6D4DD4D5088'  # Jonathan Riddell
+  '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 breeze-gtk/repos (4 files)

2016-06-17 Thread Antonio Rojas
Date: Friday, June 17, 2016 @ 13:37:07
  Author: arojas
Revision: 270147

archrelease: copy kde-unstable to kde-unstable-i686, kde-unstable-x86_64

Added:
  breeze-gtk/repos/kde-unstable-i686/
  breeze-gtk/repos/kde-unstable-i686/PKGBUILD
(from rev 270146, breeze-gtk/kde-unstable/PKGBUILD)
  breeze-gtk/repos/kde-unstable-x86_64/
  breeze-gtk/repos/kde-unstable-x86_64/PKGBUILD
(from rev 270146, breeze-gtk/kde-unstable/PKGBUILD)

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

Copied: breeze-gtk/repos/kde-unstable-i686/PKGBUILD (from rev 270146, 
breeze-gtk/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2016-06-17 13:37:07 UTC (rev 270147)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+
+pkgname=breeze-gtk
+pkgver=5.6.95
+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/unstable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('f70f1ed16cd135702d3ee3e536a9bd4ea22e67ba1f27aa5c239a4e3e5f4e14a2'
+'SKIP')
+validpgpkeys=('13C16D03EDE728514473AA73A506E6D4DD4D5088'  # Jonathan Riddell
+  '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/kde-unstable-x86_64/PKGBUILD (from rev 270146, 
breeze-gtk/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2016-06-17 13:37:07 UTC (rev 270147)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+
+pkgname=breeze-gtk
+pkgver=5.6.95
+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/unstable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('f70f1ed16cd135702d3ee3e536a9bd4ea22e67ba1f27aa5c239a4e3e5f4e14a2'
+'SKIP')
+validpgpkeys=('13C16D03EDE728514473AA73A506E6D4DD4D5088'  # Jonathan Riddell
+  '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
+}


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

2016-06-17 Thread Antonio Rojas
Date: Friday, June 17, 2016 @ 13:36:19
  Author: arojas
Revision: 270144

archrelease: copy kde-unstable to kde-unstable-i686, kde-unstable-x86_64

Added:
  user-manager/repos/kde-unstable-i686/
  user-manager/repos/kde-unstable-i686/PKGBUILD
(from rev 270143, user-manager/kde-unstable/PKGBUILD)
  user-manager/repos/kde-unstable-x86_64/
  user-manager/repos/kde-unstable-x86_64/PKGBUILD
(from rev 270143, user-manager/kde-unstable/PKGBUILD)

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

Copied: user-manager/repos/kde-unstable-i686/PKGBUILD (from rev 270143, 
user-manager/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2016-06-17 13:36:19 UTC (rev 270144)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer:Antonio Rojas 
+
+pkgname=user-manager
+pkgver=5.6.95
+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/unstable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('f36acab94c95a380350a6f1d739c43a83c640778cec8d8c77f36255d95d6449c'
+'SKIP')
+validpgpkeys=('13C16D03EDE728514473AA73A506E6D4DD4D5088'  # Jonathan Riddell
+  '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/kde-unstable-x86_64/PKGBUILD (from rev 270143, 
user-manager/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2016-06-17 13:36:19 UTC (rev 270144)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer:Antonio Rojas 
+
+pkgname=user-manager
+pkgver=5.6.95
+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/unstable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('f36acab94c95a380350a6f1d739c43a83c640778cec8d8c77f36255d95d6449c'
+'SKIP')
+validpgpkeys=('13C16D03EDE728514473AA73A506E6D4DD4D5088'  # Jonathan Riddell
+  '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
+}


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

2016-06-17 Thread Antonio Rojas
Date: Friday, June 17, 2016 @ 13:36:51
  Author: arojas
Revision: 270146

archrelease: copy kde-unstable to kde-unstable-i686, kde-unstable-x86_64

Added:
  kgamma5/repos/kde-unstable-i686/
  kgamma5/repos/kde-unstable-i686/PKGBUILD
(from rev 270145, kgamma5/kde-unstable/PKGBUILD)
  kgamma5/repos/kde-unstable-x86_64/
  kgamma5/repos/kde-unstable-x86_64/PKGBUILD
(from rev 270145, kgamma5/kde-unstable/PKGBUILD)

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

Copied: kgamma5/repos/kde-unstable-i686/PKGBUILD (from rev 270145, 
kgamma5/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2016-06-17 13:36:51 UTC (rev 270146)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer:Antonio Rojas 
+
+pkgname=kgamma5
+pkgver=5.6.95
+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/unstable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('7ec04855dc1eb03412470dae66e5cae84fdcee01130ce64f8e8640a22747d9ba'
+'SKIP')
+validpgpkeys=('13C16D03EDE728514473AA73A506E6D4DD4D5088'  # Jonathan Riddell
+  '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/kde-unstable-x86_64/PKGBUILD (from rev 270145, 
kgamma5/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2016-06-17 13:36:51 UTC (rev 270146)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer:Antonio Rojas 
+
+pkgname=kgamma5
+pkgver=5.6.95
+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/unstable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('7ec04855dc1eb03412470dae66e5cae84fdcee01130ce64f8e8640a22747d9ba'
+'SKIP')
+validpgpkeys=('13C16D03EDE728514473AA73A506E6D4DD4D5088'  # Jonathan Riddell
+  '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
+}


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

2016-06-17 Thread Antonio Rojas
Date: Friday, June 17, 2016 @ 13:36:04
  Author: arojas
Revision: 270143

archrelease: copy kde-unstable to kde-unstable-i686, kde-unstable-x86_64

Added:
  kwayland-integration/repos/kde-unstable-i686/
  kwayland-integration/repos/kde-unstable-i686/PKGBUILD
(from rev 270142, kwayland-integration/kde-unstable/PKGBUILD)
  kwayland-integration/repos/kde-unstable-x86_64/
  kwayland-integration/repos/kde-unstable-x86_64/PKGBUILD
(from rev 270142, kwayland-integration/kde-unstable/PKGBUILD)

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

Copied: kwayland-integration/repos/kde-unstable-i686/PKGBUILD (from rev 270142, 
kwayland-integration/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2016-06-17 13:36:04 UTC (rev 270143)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer:Antonio Rojas 
+
+pkgname=kwayland-integration
+pkgver=5.6.95
+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/unstable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('aefbc09d4fe58762e8092fd9b3352a44e3af47affbaec7f4e07e8461f1d1a7a8'
+'SKIP')
+validpgpkeys=('13C16D03EDE728514473AA73A506E6D4DD4D5088'  # Jonathan Riddell
+  '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/kde-unstable-x86_64/PKGBUILD (from rev 
270142, kwayland-integration/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2016-06-17 13:36:04 UTC (rev 270143)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer:Antonio Rojas 
+
+pkgname=kwayland-integration
+pkgver=5.6.95
+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/unstable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('aefbc09d4fe58762e8092fd9b3352a44e3af47affbaec7f4e07e8461f1d1a7a8'
+'SKIP')
+validpgpkeys=('13C16D03EDE728514473AA73A506E6D4DD4D5088'  # Jonathan Riddell
+  '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
+}


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

2016-06-17 Thread Antonio Rojas
Date: Friday, June 17, 2016 @ 13:36:36
  Author: arojas
Revision: 270145

archrelease: copy kde-unstable to kde-unstable-i686, kde-unstable-x86_64

Added:
  kwallet-pam/repos/kde-unstable-i686/
  kwallet-pam/repos/kde-unstable-i686/PKGBUILD
(from rev 270144, kwallet-pam/kde-unstable/PKGBUILD)
  kwallet-pam/repos/kde-unstable-x86_64/
  kwallet-pam/repos/kde-unstable-x86_64/PKGBUILD
(from rev 270144, kwallet-pam/kde-unstable/PKGBUILD)

--+
 kde-unstable-i686/PKGBUILD   |   48 +
 kde-unstable-x86_64/PKGBUILD |   48 +
 2 files changed, 96 insertions(+)

Copied: kwallet-pam/repos/kde-unstable-i686/PKGBUILD (from rev 270144, 
kwallet-pam/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2016-06-17 13:36:36 UTC (rev 270145)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer:Antonio Rojas 
+
+pkgname=kwallet-pam
+pkgver=5.6.95
+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/unstable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('7ef27016e2d39d83fc1fe54e8ed26d52462cd3eaf62b164ae84ced3131fe36cb'
+'SKIP')
+validpgpkeys=('13C16D03EDE728514473AA73A506E6D4DD4D5088'  # Jonathan Riddell
+  '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/kde-unstable-x86_64/PKGBUILD (from rev 270144, 
kwallet-pam/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2016-06-17 13:36:36 UTC (rev 270145)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer:Antonio Rojas 
+
+pkgname=kwallet-pam
+pkgver=5.6.95
+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/unstable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('7ef27016e2d39d83fc1fe54e8ed26d52462cd3eaf62b164ae84ced3131fe36cb'
+'SKIP')
+validpgpkeys=('13C16D03EDE728514473AA73A506E6D4DD4D5088'  # Jonathan Riddell
+  '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
+}


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

2016-06-17 Thread Antonio Rojas
Date: Friday, June 17, 2016 @ 13:35:32
  Author: arojas
Revision: 270141

archrelease: copy kde-unstable to kde-unstable-i686, kde-unstable-x86_64

Added:
  plasma-mediacenter/repos/kde-unstable-i686/
  plasma-mediacenter/repos/kde-unstable-i686/PKGBUILD
(from rev 270140, plasma-mediacenter/kde-unstable/PKGBUILD)
  plasma-mediacenter/repos/kde-unstable-x86_64/
  plasma-mediacenter/repos/kde-unstable-x86_64/PKGBUILD
(from rev 270140, plasma-mediacenter/kde-unstable/PKGBUILD)

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

Copied: plasma-mediacenter/repos/kde-unstable-i686/PKGBUILD (from rev 270140, 
plasma-mediacenter/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2016-06-17 13:35:32 UTC (rev 270141)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Contributor: Bhushan Shah 
+
+pkgname=plasma-mediacenter
+pkgver=5.6.95
+pkgrel=1
+pkgdesc="A mediacenter user interface based on KDE Plasma components"
+arch=(i686 x86_64)
+url="http://community.kde.org/Plasma/Plasma_Media_Center/;
+license=(GPL3)
+depends=(plasma-workspace baloo hicolor-icon-theme)
+makedepends=(extra-cmake-modules python)
+groups=(plasma)
+source=("http://download.kde.org/unstable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('583e6e746b4020dca2ce90da1a56550a9cd4afa85f920e525039e18f70435501'
+'SKIP')
+validpgpkeys=('13C16D03EDE728514473AA73A506E6D4DD4D5088'  # Jonathan Riddell
+  '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-mediacenter/repos/kde-unstable-x86_64/PKGBUILD (from rev 270140, 
plasma-mediacenter/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2016-06-17 13:35:32 UTC (rev 270141)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Contributor: Bhushan Shah 
+
+pkgname=plasma-mediacenter
+pkgver=5.6.95
+pkgrel=1
+pkgdesc="A mediacenter user interface based on KDE Plasma components"
+arch=(i686 x86_64)
+url="http://community.kde.org/Plasma/Plasma_Media_Center/;
+license=(GPL3)
+depends=(plasma-workspace baloo hicolor-icon-theme)
+makedepends=(extra-cmake-modules python)
+groups=(plasma)
+source=("http://download.kde.org/unstable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('583e6e746b4020dca2ce90da1a56550a9cd4afa85f920e525039e18f70435501'
+'SKIP')
+validpgpkeys=('13C16D03EDE728514473AA73A506E6D4DD4D5088'  # Jonathan Riddell
+  '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
+}


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

2016-06-17 Thread Antonio Rojas
Date: Friday, June 17, 2016 @ 13:35:00
  Author: arojas
Revision: 270139

archrelease: copy kde-unstable to kde-unstable-i686, kde-unstable-x86_64

Added:
  ksshaskpass/repos/kde-unstable-i686/
  ksshaskpass/repos/kde-unstable-i686/PKGBUILD
(from rev 270138, ksshaskpass/kde-unstable/PKGBUILD)
  ksshaskpass/repos/kde-unstable-i686/ksshaskpass.install
(from rev 270138, ksshaskpass/kde-unstable/ksshaskpass.install)
  ksshaskpass/repos/kde-unstable-x86_64/
  ksshaskpass/repos/kde-unstable-x86_64/PKGBUILD
(from rev 270138, ksshaskpass/kde-unstable/PKGBUILD)
  ksshaskpass/repos/kde-unstable-x86_64/ksshaskpass.install
(from rev 270138, ksshaskpass/kde-unstable/ksshaskpass.install)

-+
 kde-unstable-i686/PKGBUILD  |   41 ++
 kde-unstable-i686/ksshaskpass.install   |5 +++
 kde-unstable-x86_64/PKGBUILD|   41 ++
 kde-unstable-x86_64/ksshaskpass.install |5 +++
 4 files changed, 92 insertions(+)

Copied: ksshaskpass/repos/kde-unstable-i686/PKGBUILD (from rev 270138, 
ksshaskpass/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2016-06-17 13:35:00 UTC (rev 270139)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: schuay 
+
+pkgname=ksshaskpass
+pkgver=5.6.95
+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/unstable/plasma/${pkgver}/${pkgname}-${pkgver}.tar.xz"{,.sig})
+install=$pkgname.install
+sha256sums=('00b7b72f92b17d81bdea9fb60df5f25c1e74bc2434067fa9bca2f9f5ea27edf8'
+'SKIP')
+validpgpkeys=('13C16D03EDE728514473AA73A506E6D4DD4D5088'  # Jonathan Riddell
+  '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/kde-unstable-i686/ksshaskpass.install (from rev 
270138, ksshaskpass/kde-unstable/ksshaskpass.install)
===
--- kde-unstable-i686/ksshaskpass.install   (rev 0)
+++ kde-unstable-i686/ksshaskpass.install   2016-06-17 13:35:00 UTC (rev 
270139)
@@ -0,0 +1,5 @@
+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/kde-unstable-x86_64/PKGBUILD (from rev 270138, 
ksshaskpass/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2016-06-17 13:35:00 UTC (rev 270139)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: schuay 
+
+pkgname=ksshaskpass
+pkgver=5.6.95
+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/unstable/plasma/${pkgver}/${pkgname}-${pkgver}.tar.xz"{,.sig})
+install=$pkgname.install
+sha256sums=('00b7b72f92b17d81bdea9fb60df5f25c1e74bc2434067fa9bca2f9f5ea27edf8'
+'SKIP')
+validpgpkeys=('13C16D03EDE728514473AA73A506E6D4DD4D5088'  # Jonathan Riddell
+  '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/kde-unstable-x86_64/ksshaskpass.install (from rev 
270138, ksshaskpass/kde-unstable/ksshaskpass.install)
===
--- 

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

2016-06-17 Thread Antonio Rojas
Date: Friday, June 17, 2016 @ 13:34:46
  Author: arojas
Revision: 270138

archrelease: copy kde-unstable to kde-unstable-i686, kde-unstable-x86_64

Added:
  kscreen/repos/kde-unstable-i686/
  kscreen/repos/kde-unstable-i686/PKGBUILD
(from rev 270137, kscreen/kde-unstable/PKGBUILD)
  kscreen/repos/kde-unstable-x86_64/
  kscreen/repos/kde-unstable-x86_64/PKGBUILD
(from rev 270137, kscreen/kde-unstable/PKGBUILD)

--+
 kde-unstable-i686/PKGBUILD   |   41 +
 kde-unstable-x86_64/PKGBUILD |   41 +
 2 files changed, 82 insertions(+)

Copied: kscreen/repos/kde-unstable-i686/PKGBUILD (from rev 270137, 
kscreen/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2016-06-17 13:34:46 UTC (rev 270138)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Antonio Rojas 
+
+pkgname=kscreen
+pkgver=5.6.95
+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/unstable/plasma/${pkgver}/kscreen-$pkgver.tar.xz"{,.sig})
+sha256sums=('4115340091656973f53777f39e202d3393f3a26beb9130a5f0ac49216045d48b'
+'SKIP')
+validpgpkeys=('13C16D03EDE728514473AA73A506E6D4DD4D5088'  # Jonathan Riddell
+  '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/kde-unstable-x86_64/PKGBUILD (from rev 270137, 
kscreen/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2016-06-17 13:34:46 UTC (rev 270138)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Antonio Rojas 
+
+pkgname=kscreen
+pkgver=5.6.95
+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/unstable/plasma/${pkgver}/kscreen-$pkgver.tar.xz"{,.sig})
+sha256sums=('4115340091656973f53777f39e202d3393f3a26beb9130a5f0ac49216045d48b'
+'SKIP')
+validpgpkeys=('13C16D03EDE728514473AA73A506E6D4DD4D5088'  # Jonathan Riddell
+  '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
+}


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

2016-06-17 Thread Antonio Rojas
Date: Friday, June 17, 2016 @ 13:34:14
  Author: arojas
Revision: 270136

archrelease: copy kde-unstable to kde-unstable-i686, kde-unstable-x86_64

Added:
  bluedevil/repos/kde-unstable-i686/
  bluedevil/repos/kde-unstable-i686/PKGBUILD
(from rev 270135, bluedevil/kde-unstable/PKGBUILD)
  bluedevil/repos/kde-unstable-x86_64/
  bluedevil/repos/kde-unstable-x86_64/PKGBUILD
(from rev 270135, bluedevil/kde-unstable/PKGBUILD)

--+
 kde-unstable-i686/PKGBUILD   |   43 +
 kde-unstable-x86_64/PKGBUILD |   43 +
 2 files changed, 86 insertions(+)

Copied: bluedevil/repos/kde-unstable-i686/PKGBUILD (from rev 270135, 
bluedevil/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2016-06-17 13:34:14 UTC (rev 270136)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Antonio Rojas 
+
+pkgname=bluedevil
+pkgver=5.6.95
+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/unstable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('a9330cb4828fbc49ac6ff4ec04b8e7e33b221d533ed7aff280bea4d1ccb1ff75'
+'SKIP')
+validpgpkeys=('13C16D03EDE728514473AA73A506E6D4DD4D5088'  # Jonathan Riddell
+  '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/kde-unstable-x86_64/PKGBUILD (from rev 270135, 
bluedevil/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2016-06-17 13:34:14 UTC (rev 270136)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Antonio Rojas 
+
+pkgname=bluedevil
+pkgver=5.6.95
+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/unstable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('a9330cb4828fbc49ac6ff4ec04b8e7e33b221d533ed7aff280bea4d1ccb1ff75'
+'SKIP')
+validpgpkeys=('13C16D03EDE728514473AA73A506E6D4DD4D5088'  # Jonathan Riddell
+  '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
+}


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

2016-06-17 Thread Antonio Rojas
Date: Friday, June 17, 2016 @ 13:34:30
  Author: arojas
Revision: 270137

archrelease: copy kde-unstable to kde-unstable-i686, kde-unstable-x86_64

Added:
  kde-gtk-config/repos/kde-unstable-i686/
  kde-gtk-config/repos/kde-unstable-i686/PKGBUILD
(from rev 270136, kde-gtk-config/kde-unstable/PKGBUILD)
  kde-gtk-config/repos/kde-unstable-x86_64/
  kde-gtk-config/repos/kde-unstable-x86_64/PKGBUILD
(from rev 270136, kde-gtk-config/kde-unstable/PKGBUILD)

--+
 kde-unstable-i686/PKGBUILD   |   45 +
 kde-unstable-x86_64/PKGBUILD |   45 +
 2 files changed, 90 insertions(+)

Copied: kde-gtk-config/repos/kde-unstable-i686/PKGBUILD (from rev 270136, 
kde-gtk-config/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2016-06-17 13:34:30 UTC (rev 270137)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Antonio Rojas 
+
+pkgname=kde-gtk-config
+pkgver=5.6.95
+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/unstable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('8c6567d860476c7dffa961d12f1fdcc64e87b1998bcfec74f4e56563755c9255'
+'SKIP')
+validpgpkeys=('13C16D03EDE728514473AA73A506E6D4DD4D5088'  # Jonathan Riddell
+  '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/kde-unstable-x86_64/PKGBUILD (from rev 270136, 
kde-gtk-config/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2016-06-17 13:34:30 UTC (rev 270137)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Antonio Rojas 
+
+pkgname=kde-gtk-config
+pkgver=5.6.95
+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/unstable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('8c6567d860476c7dffa961d12f1fdcc64e87b1998bcfec74f4e56563755c9255'
+'SKIP')
+validpgpkeys=('13C16D03EDE728514473AA73A506E6D4DD4D5088'  # Jonathan Riddell
+  '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
+}


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

2016-06-17 Thread Antonio Rojas
Date: Friday, June 17, 2016 @ 13:33:56
  Author: arojas
Revision: 270135

archrelease: copy kde-unstable to kde-unstable-i686, kde-unstable-x86_64

Added:
  kdeplasma-addons/repos/kde-unstable-i686/
  kdeplasma-addons/repos/kde-unstable-i686/PKGBUILD
(from rev 270134, kdeplasma-addons/kde-unstable/PKGBUILD)
  kdeplasma-addons/repos/kde-unstable-x86_64/
  kdeplasma-addons/repos/kde-unstable-x86_64/PKGBUILD
(from rev 270134, kdeplasma-addons/kde-unstable/PKGBUILD)

--+
 kde-unstable-i686/PKGBUILD   |   44 +
 kde-unstable-x86_64/PKGBUILD |   44 +
 2 files changed, 88 insertions(+)

Copied: kdeplasma-addons/repos/kde-unstable-i686/PKGBUILD (from rev 270134, 
kdeplasma-addons/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2016-06-17 13:33:56 UTC (rev 270135)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kdeplasma-addons
+pkgver=5.6.95
+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' 'purpose' '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/unstable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('07d55709cbb805c15a33968a5433188564df2cf1e1540cf7b76ae3e3fb0bf140'
+'SKIP')
+validpgpkeys=('13C16D03EDE728514473AA73A506E6D4DD4D5088'  # Jonathan Riddell
+  '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/kde-unstable-x86_64/PKGBUILD (from rev 270134, 
kdeplasma-addons/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2016-06-17 13:33:56 UTC (rev 270135)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kdeplasma-addons
+pkgver=5.6.95
+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' 'purpose' '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/unstable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('07d55709cbb805c15a33968a5433188564df2cf1e1540cf7b76ae3e3fb0bf140'
+'SKIP')
+validpgpkeys=('13C16D03EDE728514473AA73A506E6D4DD4D5088'  # Jonathan Riddell
+  '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
+}


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

2016-06-17 Thread Antonio Rojas
Date: Friday, June 17, 2016 @ 13:33:40
  Author: arojas
Revision: 270134

archrelease: copy kde-unstable to kde-unstable-i686, kde-unstable-x86_64

Added:
  kwrited/repos/kde-unstable-i686/
  kwrited/repos/kde-unstable-i686/PKGBUILD
(from rev 270133, kwrited/kde-unstable/PKGBUILD)
  kwrited/repos/kde-unstable-x86_64/
  kwrited/repos/kde-unstable-x86_64/PKGBUILD
(from rev 270133, kwrited/kde-unstable/PKGBUILD)

--+
 kde-unstable-i686/PKGBUILD   |   39 +++
 kde-unstable-x86_64/PKGBUILD |   39 +++
 2 files changed, 78 insertions(+)

Copied: kwrited/repos/kde-unstable-i686/PKGBUILD (from rev 270133, 
kwrited/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2016-06-17 13:33:40 UTC (rev 270134)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Antonio Rojas
+
+pkgname=kwrited
+pkgver=5.6.95
+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/unstable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('32b33994ac5b2bf737b3850e852459a2506b9840f29b6935c3846c073c0c24bb'
+'SKIP')
+validpgpkeys=('13C16D03EDE728514473AA73A506E6D4DD4D5088'  # Jonathan Riddell
+  '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/kde-unstable-x86_64/PKGBUILD (from rev 270133, 
kwrited/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2016-06-17 13:33:40 UTC (rev 270134)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Antonio Rojas
+
+pkgname=kwrited
+pkgver=5.6.95
+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/unstable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('32b33994ac5b2bf737b3850e852459a2506b9840f29b6935c3846c073c0c24bb'
+'SKIP')
+validpgpkeys=('13C16D03EDE728514473AA73A506E6D4DD4D5088'  # Jonathan Riddell
+  '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
+}


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

2016-06-17 Thread Antonio Rojas
Date: Friday, June 17, 2016 @ 13:33:24
  Author: arojas
Revision: 270133

archrelease: copy kde-unstable to kde-unstable-i686, kde-unstable-x86_64

Added:
  plasma-pa/repos/kde-unstable-i686/
  plasma-pa/repos/kde-unstable-i686/PKGBUILD
(from rev 270132, plasma-pa/kde-unstable/PKGBUILD)
  plasma-pa/repos/kde-unstable-x86_64/
  plasma-pa/repos/kde-unstable-x86_64/PKGBUILD
(from rev 270132, plasma-pa/kde-unstable/PKGBUILD)

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

Copied: plasma-pa/repos/kde-unstable-i686/PKGBUILD (from rev 270132, 
plasma-pa/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2016-06-17 13:33:24 UTC (rev 270133)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer:Antonio Rojas 
+
+pkgname=plasma-pa
+pkgver=5.6.95
+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)
+makedepends=(extra-cmake-modules kdoctools python)
+groups=(plasma)
+source=("http://download.kde.org/unstable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('933f426b43bfa3baf867ad0e657290a675b94f6345a7d794f63d8f406fcea4ea'
+'SKIP')
+validpgpkeys=('13C16D03EDE728514473AA73A506E6D4DD4D5088'  # Jonathan Riddell
+  '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/kde-unstable-x86_64/PKGBUILD (from rev 270132, 
plasma-pa/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2016-06-17 13:33:24 UTC (rev 270133)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer:Antonio Rojas 
+
+pkgname=plasma-pa
+pkgver=5.6.95
+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)
+makedepends=(extra-cmake-modules kdoctools python)
+groups=(plasma)
+source=("http://download.kde.org/unstable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('933f426b43bfa3baf867ad0e657290a675b94f6345a7d794f63d8f406fcea4ea'
+'SKIP')
+validpgpkeys=('13C16D03EDE728514473AA73A506E6D4DD4D5088'  # Jonathan Riddell
+  '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
+}


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

2016-06-17 Thread Antonio Rojas
Date: Friday, June 17, 2016 @ 13:33:07
  Author: arojas
Revision: 270132

archrelease: copy kde-unstable to kde-unstable-i686, kde-unstable-x86_64

Added:
  plasma-nm/repos/kde-unstable-i686/
  plasma-nm/repos/kde-unstable-i686/PKGBUILD
(from rev 270131, plasma-nm/kde-unstable/PKGBUILD)
  plasma-nm/repos/kde-unstable-x86_64/
  plasma-nm/repos/kde-unstable-x86_64/PKGBUILD
(from rev 270131, plasma-nm/kde-unstable/PKGBUILD)

--+
 kde-unstable-i686/PKGBUILD   |   41 +
 kde-unstable-x86_64/PKGBUILD |   41 +
 2 files changed, 82 insertions(+)

Copied: plasma-nm/repos/kde-unstable-i686/PKGBUILD (from rev 270131, 
plasma-nm/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2016-06-17 13:33:07 UTC (rev 270132)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=plasma-nm
+pkgver=5.6.95
+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/unstable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('e206a05826398141b7ed5f04cceac8af50748e90e69e165fc3130c8da0e0c58c'
+'SKIP')
+validpgpkeys=('13C16D03EDE728514473AA73A506E6D4DD4D5088'  # Jonathan Riddell
+  '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/kde-unstable-x86_64/PKGBUILD (from rev 270131, 
plasma-nm/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2016-06-17 13:33:07 UTC (rev 270132)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=plasma-nm
+pkgver=5.6.95
+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/unstable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('e206a05826398141b7ed5f04cceac8af50748e90e69e165fc3130c8da0e0c58c'
+'SKIP')
+validpgpkeys=('13C16D03EDE728514473AA73A506E6D4DD4D5088'  # Jonathan Riddell
+  '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
+}


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

2016-06-17 Thread Antonio Rojas
Date: Friday, June 17, 2016 @ 13:32:40
  Author: arojas
Revision: 270131

archrelease: copy kde-unstable to kde-unstable-i686, kde-unstable-x86_64

Added:
  plasma-desktop/repos/kde-unstable-i686/
  plasma-desktop/repos/kde-unstable-i686/PKGBUILD
(from rev 270130, plasma-desktop/kde-unstable/PKGBUILD)
  plasma-desktop/repos/kde-unstable-x86_64/
  plasma-desktop/repos/kde-unstable-x86_64/PKGBUILD
(from rev 270130, plasma-desktop/kde-unstable/PKGBUILD)

--+
 kde-unstable-i686/PKGBUILD   |   47 +
 kde-unstable-x86_64/PKGBUILD |   47 +
 2 files changed, 94 insertions(+)

Copied: plasma-desktop/repos/kde-unstable-i686/PKGBUILD (from rev 270130, 
plasma-desktop/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2016-06-17 13:32:40 UTC (rev 270131)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=plasma-desktop
+pkgver=5.6.95
+pkgrel=1
+pkgdesc='KDE Plasma Desktop'
+arch=('i686' 'x86_64')
+url='https://www.kde.org/workspaces/plasmadesktop/'
+license=('LGPL')
+source=("http://download.kde.org/unstable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
+depends=('powerdevil' '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'
+'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=('dcb45bca8c17eb6e2d73497ee45eca3bcf9f5e9c6c30cc2a82aaf08f3b7c9af6'
+'SKIP')
+validpgpkeys=('13C16D03EDE728514473AA73A506E6D4DD4D5088'  # Jonathan Riddell
+  '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/kde-unstable-x86_64/PKGBUILD (from rev 270130, 
plasma-desktop/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2016-06-17 13:32:40 UTC (rev 270131)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=plasma-desktop
+pkgver=5.6.95
+pkgrel=1
+pkgdesc='KDE Plasma Desktop'
+arch=('i686' 'x86_64')
+url='https://www.kde.org/workspaces/plasmadesktop/'
+license=('LGPL')
+source=("http://download.kde.org/unstable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
+depends=('powerdevil' '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'
+'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=('dcb45bca8c17eb6e2d73497ee45eca3bcf9f5e9c6c30cc2a82aaf08f3b7c9af6'
+'SKIP')
+validpgpkeys=('13C16D03EDE728514473AA73A506E6D4DD4D5088'  # Jonathan Riddell
+  '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
+}


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

2016-06-17 Thread Antonio Rojas
Date: Friday, June 17, 2016 @ 13:31:51
  Author: arojas
Revision: 270130

archrelease: copy kde-unstable to kde-unstable-any

Added:
  plasma-workspace-wallpapers/repos/kde-unstable-any/
  plasma-workspace-wallpapers/repos/kde-unstable-any/PKGBUILD
(from rev 270129, plasma-workspace-wallpapers/kde-unstable/PKGBUILD)

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

Copied: plasma-workspace-wallpapers/repos/kde-unstable-any/PKGBUILD (from rev 
270129, plasma-workspace-wallpapers/kde-unstable/PKGBUILD)
===
--- kde-unstable-any/PKGBUILD   (rev 0)
+++ kde-unstable-any/PKGBUILD   2016-06-17 13:31:51 UTC (rev 270130)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Antonio Rojas
+
+pkgname=plasma-workspace-wallpapers
+pkgver=5.6.95
+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/unstable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('a4e43a5584ca17800dcecb3e47b7f8de051fde9966f3d66fe4307f84cc471187'
+'SKIP')
+validpgpkeys=('13C16D03EDE728514473AA73A506E6D4DD4D5088'  # Jonathan Riddell
+  '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 polkit-kde-agent/repos (4 files)

2016-06-17 Thread Antonio Rojas
Date: Friday, June 17, 2016 @ 13:31:39
  Author: arojas
Revision: 270129

archrelease: copy kde-unstable to kde-unstable-i686, kde-unstable-x86_64

Added:
  polkit-kde-agent/repos/kde-unstable-i686/
  polkit-kde-agent/repos/kde-unstable-i686/PKGBUILD
(from rev 270128, polkit-kde-agent/kde-unstable/PKGBUILD)
  polkit-kde-agent/repos/kde-unstable-x86_64/
  polkit-kde-agent/repos/kde-unstable-x86_64/PKGBUILD
(from rev 270128, polkit-kde-agent/kde-unstable/PKGBUILD)

--+
 kde-unstable-i686/PKGBUILD   |   41 +
 kde-unstable-x86_64/PKGBUILD |   41 +
 2 files changed, 82 insertions(+)

Copied: polkit-kde-agent/repos/kde-unstable-i686/PKGBUILD (from rev 270128, 
polkit-kde-agent/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2016-06-17 13:31:39 UTC (rev 270129)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Antonio Rojas 
+
+pkgname=polkit-kde-agent
+pkgver=5.6.95
+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')
+source=("http://download.kde.org/unstable/plasma/$pkgver/$pkgname-1-$pkgver.tar.xz"{,.sig})
+sha256sums=('12d5f0d597ba96110d3e3acf65d0bb560e2133ddd513b78991295ff60aa83b69'
+'SKIP')
+validpgpkeys=('13C16D03EDE728514473AA73A506E6D4DD4D5088'  # Jonathan Riddell
+  '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/kde-unstable-x86_64/PKGBUILD (from rev 270128, 
polkit-kde-agent/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2016-06-17 13:31:39 UTC (rev 270129)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Antonio Rojas 
+
+pkgname=polkit-kde-agent
+pkgver=5.6.95
+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')
+source=("http://download.kde.org/unstable/plasma/$pkgver/$pkgname-1-$pkgver.tar.xz"{,.sig})
+sha256sums=('12d5f0d597ba96110d3e3acf65d0bb560e2133ddd513b78991295ff60aa83b69'
+'SKIP')
+validpgpkeys=('13C16D03EDE728514473AA73A506E6D4DD4D5088'  # Jonathan Riddell
+  '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
+}


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

2016-06-17 Thread Antonio Rojas
Date: Friday, June 17, 2016 @ 13:31:06
  Author: arojas
Revision: 270127

archrelease: copy kde-unstable to kde-unstable-i686, kde-unstable-x86_64

Added:
  kmenuedit/repos/kde-unstable-i686/
  kmenuedit/repos/kde-unstable-i686/PKGBUILD
(from rev 270125, kmenuedit/kde-unstable/PKGBUILD)
  kmenuedit/repos/kde-unstable-x86_64/
  kmenuedit/repos/kde-unstable-x86_64/PKGBUILD
(from rev 270126, kmenuedit/kde-unstable/PKGBUILD)

--+
 kde-unstable-i686/PKGBUILD   |   40 
 kde-unstable-x86_64/PKGBUILD |   40 
 2 files changed, 80 insertions(+)

Copied: kmenuedit/repos/kde-unstable-i686/PKGBUILD (from rev 270125, 
kmenuedit/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2016-06-17 13:31:06 UTC (rev 270127)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Antonio Rojas
+
+pkgname=kmenuedit
+pkgver=5.6.95
+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/unstable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('4364e20a08af35fbe39c4ceda59e08a054ada38e65214a892d97f9657ab10c3c'
+'SKIP')
+validpgpkeys=('13C16D03EDE728514473AA73A506E6D4DD4D5088'  # Jonathan Riddell
+  '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/kde-unstable-x86_64/PKGBUILD (from rev 270126, 
kmenuedit/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2016-06-17 13:31:06 UTC (rev 270127)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Antonio Rojas
+
+pkgname=kmenuedit
+pkgver=5.6.95
+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/unstable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('4364e20a08af35fbe39c4ceda59e08a054ada38e65214a892d97f9657ab10c3c'
+'SKIP')
+validpgpkeys=('13C16D03EDE728514473AA73A506E6D4DD4D5088'  # Jonathan Riddell
+  '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
+}


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

2016-06-17 Thread Antonio Rojas
Date: Friday, June 17, 2016 @ 13:31:23
  Author: arojas
Revision: 270128

archrelease: copy kde-unstable to kde-unstable-i686, kde-unstable-x86_64

Added:
  powerdevil/repos/kde-unstable-i686/
  powerdevil/repos/kde-unstable-i686/PKGBUILD
(from rev 270127, powerdevil/kde-unstable/PKGBUILD)
  powerdevil/repos/kde-unstable-x86_64/
  powerdevil/repos/kde-unstable-x86_64/PKGBUILD
(from rev 270127, powerdevil/kde-unstable/PKGBUILD)

--+
 kde-unstable-i686/PKGBUILD   |   40 
 kde-unstable-x86_64/PKGBUILD |   40 
 2 files changed, 80 insertions(+)

Copied: powerdevil/repos/kde-unstable-i686/PKGBUILD (from rev 270127, 
powerdevil/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2016-06-17 13:31:23 UTC (rev 270128)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Antonio Rojas
+
+pkgname=powerdevil
+pkgver=5.6.95
+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/unstable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('001843ba3df8211b7bbe4b21132e959231471c074c81fde4aa606d0a23c45091'
+'SKIP')
+validpgpkeys=('13C16D03EDE728514473AA73A506E6D4DD4D5088'  # Jonathan Riddell
+  '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/kde-unstable-x86_64/PKGBUILD (from rev 270127, 
powerdevil/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2016-06-17 13:31:23 UTC (rev 270128)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Antonio Rojas
+
+pkgname=powerdevil
+pkgver=5.6.95
+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/unstable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('001843ba3df8211b7bbe4b21132e959231471c074c81fde4aa606d0a23c45091'
+'SKIP')
+validpgpkeys=('13C16D03EDE728514473AA73A506E6D4DD4D5088'  # Jonathan Riddell
+  '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
+}


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

2016-06-17 Thread Antonio Rojas
Date: Friday, June 17, 2016 @ 13:30:48
  Author: arojas
Revision: 270123

archrelease: copy kde-unstable to kde-unstable-i686, kde-unstable-x86_64

Added:
  systemsettings/repos/kde-unstable-i686/
  systemsettings/repos/kde-unstable-i686/PKGBUILD
(from rev 270122, systemsettings/kde-unstable/PKGBUILD)
  systemsettings/repos/kde-unstable-x86_64/
  systemsettings/repos/kde-unstable-x86_64/PKGBUILD
(from rev 270122, systemsettings/kde-unstable/PKGBUILD)

--+
 kde-unstable-i686/PKGBUILD   |   40 
 kde-unstable-x86_64/PKGBUILD |   40 
 2 files changed, 80 insertions(+)

Copied: systemsettings/repos/kde-unstable-i686/PKGBUILD (from rev 270122, 
systemsettings/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2016-06-17 13:30:48 UTC (rev 270123)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Antonio Rojas
+
+pkgname=systemsettings
+pkgver=5.6.95
+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/unstable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('7b5dd19d1388f060c86b3d6c863f59c6bc9de38eafaa994c007e044b2ed1'
+'SKIP')
+validpgpkeys=('13C16D03EDE728514473AA73A506E6D4DD4D5088'  # Jonathan Riddell
+  '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/kde-unstable-x86_64/PKGBUILD (from rev 270122, 
systemsettings/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2016-06-17 13:30:48 UTC (rev 270123)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Antonio Rojas
+
+pkgname=systemsettings
+pkgver=5.6.95
+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/unstable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('7b5dd19d1388f060c86b3d6c863f59c6bc9de38eafaa994c007e044b2ed1'
+'SKIP')
+validpgpkeys=('13C16D03EDE728514473AA73A506E6D4DD4D5088'  # Jonathan Riddell
+  '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
+}


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

2016-06-17 Thread Antonio Rojas
Date: Friday, June 17, 2016 @ 13:30:31
  Author: arojas
Revision: 270122

archrelease: copy kde-unstable to kde-unstable-i686, kde-unstable-x86_64

Added:
  ksysguard/repos/kde-unstable-i686/
  ksysguard/repos/kde-unstable-i686/PKGBUILD
(from rev 270121, ksysguard/kde-unstable/PKGBUILD)
  ksysguard/repos/kde-unstable-x86_64/
  ksysguard/repos/kde-unstable-x86_64/PKGBUILD
(from rev 270121, ksysguard/kde-unstable/PKGBUILD)

--+
 kde-unstable-i686/PKGBUILD   |   40 
 kde-unstable-x86_64/PKGBUILD |   40 
 2 files changed, 80 insertions(+)

Copied: ksysguard/repos/kde-unstable-i686/PKGBUILD (from rev 270121, 
ksysguard/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2016-06-17 13:30:31 UTC (rev 270122)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Antonio Rojas
+
+pkgname=ksysguard
+pkgver=5.6.95
+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/unstable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('29bc6ee34f821ce9533e136690459d1f402bdae1b46015774b908afe967a5464'
+'SKIP')
+validpgpkeys=('13C16D03EDE728514473AA73A506E6D4DD4D5088'  # Jonathan Riddell
+  '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/kde-unstable-x86_64/PKGBUILD (from rev 270121, 
ksysguard/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2016-06-17 13:30:31 UTC (rev 270122)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Antonio Rojas
+
+pkgname=ksysguard
+pkgver=5.6.95
+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/unstable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('29bc6ee34f821ce9533e136690459d1f402bdae1b46015774b908afe967a5464'
+'SKIP')
+validpgpkeys=('13C16D03EDE728514473AA73A506E6D4DD4D5088'  # Jonathan Riddell
+  '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
+}


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

2016-06-17 Thread Antonio Rojas
Date: Friday, June 17, 2016 @ 13:30:12
  Author: arojas
Revision: 270121

archrelease: copy kde-unstable to kde-unstable-i686, kde-unstable-x86_64

Added:
  kinfocenter/repos/kde-unstable-i686/
  kinfocenter/repos/kde-unstable-i686/PKGBUILD
(from rev 270120, kinfocenter/kde-unstable/PKGBUILD)
  kinfocenter/repos/kde-unstable-i686/kcm-about-distrorc
(from rev 270120, kinfocenter/kde-unstable/kcm-about-distrorc)
  kinfocenter/repos/kde-unstable-x86_64/
  kinfocenter/repos/kde-unstable-x86_64/PKGBUILD
(from rev 270120, kinfocenter/kde-unstable/PKGBUILD)
  kinfocenter/repos/kde-unstable-x86_64/kcm-about-distrorc
(from rev 270120, kinfocenter/kde-unstable/kcm-about-distrorc)

+
 kde-unstable-i686/PKGBUILD |   47 +++
 kde-unstable-i686/kcm-about-distrorc   |2 +
 kde-unstable-x86_64/PKGBUILD   |   47 +++
 kde-unstable-x86_64/kcm-about-distrorc |2 +
 4 files changed, 98 insertions(+)

Copied: kinfocenter/repos/kde-unstable-i686/PKGBUILD (from rev 270120, 
kinfocenter/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2016-06-17 13:30:12 UTC (rev 270121)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Antonio Rojas
+
+pkgname=kinfocenter
+pkgver=5.6.95
+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/unstable/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=('65f160bd04101160b65010bd7f94ad0503ba21cafa367a34d741cfa775161c96'
+'SKIP'
+'a7f37c9c87f0e0e37454b47ec1221b61416aa9e319cc46a1f0b5b70c4a1dcb6e'
+'02ae86f5ef8de5fabb97db2043065c9b6b77b7c6a71a1115161e559e39c01451')
+validpgpkeys=('13C16D03EDE728514473AA73A506E6D4DD4D5088'  # Jonathan Riddell
+  '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/kde-unstable-i686/kcm-about-distrorc (from rev 
270120, kinfocenter/kde-unstable/kcm-about-distrorc)
===
--- kde-unstable-i686/kcm-about-distrorc(rev 0)
+++ kde-unstable-i686/kcm-about-distrorc2016-06-17 13:30:12 UTC (rev 
270121)
@@ -0,0 +1,2 @@
+[General]
+LogoPath=/usr/share/about-distro/archlinux-logo.svg

Copied: kinfocenter/repos/kde-unstable-x86_64/PKGBUILD (from rev 270120, 
kinfocenter/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2016-06-17 13:30:12 UTC (rev 270121)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Antonio Rojas
+
+pkgname=kinfocenter
+pkgver=5.6.95
+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/unstable/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=('65f160bd04101160b65010bd7f94ad0503ba21cafa367a34d741cfa775161c96'
+'SKIP'
+'a7f37c9c87f0e0e37454b47ec1221b61416aa9e319cc46a1f0b5b70c4a1dcb6e'
+'02ae86f5ef8de5fabb97db2043065c9b6b77b7c6a71a1115161e559e39c01451')

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

2016-06-17 Thread Antonio Rojas
Date: Friday, June 17, 2016 @ 13:29:57
  Author: arojas
Revision: 270120

archrelease: copy kde-unstable to kde-unstable-i686, kde-unstable-x86_64

Added:
  khotkeys/repos/kde-unstable-i686/
  khotkeys/repos/kde-unstable-i686/PKGBUILD
(from rev 270119, khotkeys/kde-unstable/PKGBUILD)
  khotkeys/repos/kde-unstable-x86_64/
  khotkeys/repos/kde-unstable-x86_64/PKGBUILD
(from rev 270119, khotkeys/kde-unstable/PKGBUILD)

--+
 kde-unstable-i686/PKGBUILD   |   39 +++
 kde-unstable-x86_64/PKGBUILD |   39 +++
 2 files changed, 78 insertions(+)

Copied: khotkeys/repos/kde-unstable-i686/PKGBUILD (from rev 270119, 
khotkeys/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2016-06-17 13:29:57 UTC (rev 270120)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Antonio Rojas
+
+pkgname=khotkeys
+pkgver=5.6.95
+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')
+source=("http://download.kde.org/unstable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('2468ff38afbe911633b0a864494dd7948515d9ee377f3d34f84b31d3cc15d132'
+'SKIP')
+validpgpkeys=('13C16D03EDE728514473AA73A506E6D4DD4D5088'  # Jonathan Riddell
+  '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/kde-unstable-x86_64/PKGBUILD (from rev 270119, 
khotkeys/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2016-06-17 13:29:57 UTC (rev 270120)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Antonio Rojas
+
+pkgname=khotkeys
+pkgver=5.6.95
+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')
+source=("http://download.kde.org/unstable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('2468ff38afbe911633b0a864494dd7948515d9ee377f3d34f84b31d3cc15d132'
+'SKIP')
+validpgpkeys=('13C16D03EDE728514473AA73A506E6D4DD4D5088'  # Jonathan Riddell
+  '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
+}


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

2016-06-17 Thread Antonio Rojas
Date: Friday, June 17, 2016 @ 13:29:14
  Author: arojas
Revision: 270118

archrelease: copy kde-unstable to kde-unstable-i686, kde-unstable-x86_64

Added:
  plasma-integration/repos/kde-unstable-i686/
  plasma-integration/repos/kde-unstable-i686/PKGBUILD
(from rev 270117, plasma-integration/kde-unstable/PKGBUILD)
  plasma-integration/repos/kde-unstable-x86_64/
  plasma-integration/repos/kde-unstable-x86_64/PKGBUILD
(from rev 270117, plasma-integration/kde-unstable/PKGBUILD)

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

Copied: plasma-integration/repos/kde-unstable-i686/PKGBUILD (from rev 270117, 
plasma-integration/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2016-06-17 13:29:14 UTC (rev 270118)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+
+pkgname=plasma-integration
+pkgver=5.6.95
+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-oxygen)
+makedepends=(extra-cmake-modules python breeze)
+source=("http://download.kde.org/unstable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('64fd68e7cdf22743e467a62f52431c39f82f81513d3dc0f8685a0e38a67622ff'
+'SKIP')
+validpgpkeys=('13C16D03EDE728514473AA73A506E6D4DD4D5088'  # Jonathan Riddell
+  '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/kde-unstable-x86_64/PKGBUILD (from rev 270117, 
plasma-integration/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2016-06-17 13:29:14 UTC (rev 270118)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+
+pkgname=plasma-integration
+pkgver=5.6.95
+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-oxygen)
+makedepends=(extra-cmake-modules python breeze)
+source=("http://download.kde.org/unstable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('64fd68e7cdf22743e467a62f52431c39f82f81513d3dc0f8685a0e38a67622ff'
+'SKIP')
+validpgpkeys=('13C16D03EDE728514473AA73A506E6D4DD4D5088'  # Jonathan Riddell
+  '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
+}


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

2016-06-17 Thread Antonio Rojas
Date: Friday, June 17, 2016 @ 13:29:29
  Author: arojas
Revision: 270119

archrelease: copy kde-unstable to kde-unstable-i686, kde-unstable-x86_64

Added:
  plasma-workspace/repos/kde-unstable-i686/
  plasma-workspace/repos/kde-unstable-i686/PKGBUILD
(from rev 270118, plasma-workspace/kde-unstable/PKGBUILD)
  plasma-workspace/repos/kde-unstable-i686/kde.pam
(from rev 270118, plasma-workspace/kde-unstable/kde.pam)
  plasma-workspace/repos/kde-unstable-x86_64/
  plasma-workspace/repos/kde-unstable-x86_64/PKGBUILD
(from rev 270118, plasma-workspace/kde-unstable/PKGBUILD)
  plasma-workspace/repos/kde-unstable-x86_64/kde.pam
(from rev 270118, plasma-workspace/kde-unstable/kde.pam)

--+
 kde-unstable-i686/PKGBUILD   |   98 +
 kde-unstable-i686/kde.pam|9 +++
 kde-unstable-x86_64/PKGBUILD |   98 +
 kde-unstable-x86_64/kde.pam  |9 +++
 4 files changed, 214 insertions(+)

Copied: plasma-workspace/repos/kde-unstable-i686/PKGBUILD (from rev 270118, 
plasma-workspace/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2016-06-17 13:29:29 UTC (rev 270119)
@@ -0,0 +1,98 @@
+# $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.6.95
+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-frameworks' 'kwin' 
'plasma-integration')
+makedepends=('extra-cmake-modules' 'kdoctools' 'gpsd' 'baloo'
+ 'krunner' 'kxmlrpcclient' 'networkmanager-qt' 'kdesignerplugin')
+groups=('plasma')
+source=("http://download.kde.org/unstable/plasma/${pkgver}/${pkgbase}-${pkgver}.tar.xz"{,.sig}
 'kde.pam')
+sha256sums=('308003ebdc18a3cfe63335340c7651cacab67cd99c06ca0148b220affc4b75de'
+'SKIP'
+'00090291204baabe9d6857d3b1419832376dd2e279087d718b64792691e86739')
+validpgpkeys=('13C16D03EDE728514473AA73A506E6D4DD4D5088'  # Jonathan Riddell
+  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
+
+prepare() {
+  mkdir -p build
+
+  cd $pkgbase-$pkgver
+  # be sure to use the Qt5 version of qtpaths
+  sed -e 's:qtpaths:qtpaths-qt5:' -i startkde/start*.cmake
+}
+
+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')
+  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')
+  groups=()
+
+  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/kde-unstable-i686/kde.pam (from rev 270118, 
plasma-workspace/kde-unstable/kde.pam)
===
--- kde-unstable-i686/kde.pam   (rev 0)
+++ kde-unstable-i686/kde.pam   2016-06-17 13:29:29 UTC (rev 270119)
@@ -0,0 +1,9 @@

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

2016-06-17 Thread Antonio Rojas
Date: Friday, June 17, 2016 @ 13:28:59
  Author: arojas
Revision: 270117

archrelease: copy kde-unstable to kde-unstable-i686, kde-unstable-x86_64

Added:
  milou/repos/kde-unstable-i686/
  milou/repos/kde-unstable-i686/PKGBUILD
(from rev 270116, milou/kde-unstable/PKGBUILD)
  milou/repos/kde-unstable-x86_64/
  milou/repos/kde-unstable-x86_64/PKGBUILD
(from rev 270116, milou/kde-unstable/PKGBUILD)

--+
 kde-unstable-i686/PKGBUILD   |   39 +++
 kde-unstable-x86_64/PKGBUILD |   39 +++
 2 files changed, 78 insertions(+)

Copied: milou/repos/kde-unstable-i686/PKGBUILD (from rev 270116, 
milou/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2016-06-17 13:28:59 UTC (rev 270117)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Antonio Rojas
+
+pkgname=milou
+pkgver=5.6.95
+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/unstable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('a6c437dc530ce344eb3bb3ce72f1c6f184dc31b994f928aa2ce1a2e5ed71815b'
+'SKIP')
+validpgpkeys=('13C16D03EDE728514473AA73A506E6D4DD4D5088'  # Jonathan Riddell
+  '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/kde-unstable-x86_64/PKGBUILD (from rev 270116, 
milou/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2016-06-17 13:28:59 UTC (rev 270117)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Antonio Rojas
+
+pkgname=milou
+pkgver=5.6.95
+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/unstable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('a6c437dc530ce344eb3bb3ce72f1c6f184dc31b994f928aa2ce1a2e5ed71815b'
+'SKIP')
+validpgpkeys=('13C16D03EDE728514473AA73A506E6D4DD4D5088'  # Jonathan Riddell
+  '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
+}


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

2016-06-17 Thread Antonio Rojas
Date: Friday, June 17, 2016 @ 13:28:10
  Author: arojas
Revision: 270114

archrelease: copy kde-unstable to kde-unstable-i686, kde-unstable-x86_64

Added:
  kde-cli-tools/repos/kde-unstable-i686/
  kde-cli-tools/repos/kde-unstable-i686/PKGBUILD
(from rev 270113, kde-cli-tools/kde-unstable/PKGBUILD)
  kde-cli-tools/repos/kde-unstable-x86_64/
  kde-cli-tools/repos/kde-unstable-x86_64/PKGBUILD
(from rev 270113, kde-cli-tools/kde-unstable/PKGBUILD)

--+
 kde-unstable-i686/PKGBUILD   |   41 +
 kde-unstable-x86_64/PKGBUILD |   41 +
 2 files changed, 82 insertions(+)

Copied: kde-cli-tools/repos/kde-unstable-i686/PKGBUILD (from rev 270113, 
kde-cli-tools/kde-unstable/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2016-06-17 13:28:10 UTC (rev 270114)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Antonio Rojas
+
+pkgname=kde-cli-tools
+pkgver=5.6.95
+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')
+source=("http://download.kde.org/unstable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('5406946163a31ff1f1844a08091ad6a8c3dc34a2e6dbd3e1c4e1cb8d910e267f'
+'SKIP')
+validpgpkeys=('13C16D03EDE728514473AA73A506E6D4DD4D5088'  # Jonathan Riddell
+  '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/kde-unstable-x86_64/PKGBUILD (from rev 270113, 
kde-cli-tools/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2016-06-17 13:28:10 UTC (rev 270114)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Antonio Rojas
+
+pkgname=kde-cli-tools
+pkgver=5.6.95
+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')
+source=("http://download.kde.org/unstable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('5406946163a31ff1f1844a08091ad6a8c3dc34a2e6dbd3e1c4e1cb8d910e267f'
+'SKIP')
+validpgpkeys=('13C16D03EDE728514473AA73A506E6D4DD4D5088'  # Jonathan Riddell
+  '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/
+}


  1   2   >