[arch-commits] Commit in restbed/trunk (PKGBUILD async_read_until.patch strand.patch)

2018-03-31 Thread Baptiste Jonglez via arch-commits
Date: Saturday, March 31, 2018 @ 19:14:51
  Author: zorun
Revision: 313619

upgpkg: restbed 4.6+24+gb1f0182-1

patch "async_read_until.patch" merged upstream
patch "strand.patch" no longer needed with asio 1.12.0

Modified:
  restbed/trunk/PKGBUILD
Deleted:
  restbed/trunk/async_read_until.patch
  restbed/trunk/strand.patch

+
 PKGBUILD   |   24 ++---
 async_read_until.patch |  123 ---
 strand.patch   |   24 -
 3 files changed, 6 insertions(+), 165 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-03-31 19:04:56 UTC (rev 313618)
+++ PKGBUILD2018-03-31 19:14:51 UTC (rev 313619)
@@ -1,7 +1,7 @@
 # Maintainer: Baptiste Jonglez 
 # Contributor: Justin Wilcox 
 pkgname=restbed
-pkgver=4.6+17+gdf867a8
+pkgver=4.6+24+gb1f0182
 pkgrel=1
 pkgdesc="A framework for asynchronous RESTful functionality in C++11 
applications"
 arch=('x86_64')
@@ -11,23 +11,10 @@
 replaces=('restbed-latest')
 conflicts=('restbed-latest')
 makedepends=('cmake' 'asio' 'kashmir')
-_commit=df867a858dddc4cf6ca8642da02720bd65ba239a
-source=("https://github.com/Corvusoft/restbed/archive/${_commit}/$pkgname-$pkgver.tar.gz;
-"strand.patch"
-"async_read_until.patch")
-sha256sums=('0b752078d75e4d7f1e896bb208186bb65e2e558ea531c6a05a086c7e7504e060'
-'a67baa5ffce44a851ba6bd47cbd04089665e52abc154b73063f51515e2094a51'
-'9ba679d22448bb567766dccf58f98744cc90e0a851a5ccd37596bb4790396049')
+_commit=b1f0182c0ea74ea5e6dc08fd540462422fd0dc7f
+source=("https://github.com/Corvusoft/restbed/archive/${_commit}/$pkgname-$pkgver.tar.gz;)
+sha256sums=('fb7ee67eb36eb1297e18f6ada4ba3a6fa255a6c64ff4e70a1efef5ef76c484c9')
 
-prepare() {
-  cd "$srcdir/$pkgname-$_commit"
-
-  # Necessary to build against asio 1.10.X
-  patch -p1 < "$srcdir"/strand.patch
-  # https://github.com/Corvusoft/restbed/pull/273
-  patch -p1 < "$srcdir"/async_read_until.patch
-}
-
 build() {
   cd "$srcdir/$pkgname-$_commit"
 
@@ -36,7 +23,8 @@
   cmake .. \
 -DCMAKE_INSTALL_PREFIX=/usr \
 -DCMAKE_INSTALL_LIBDIR=lib \
--DBUILD_SHARED=on
+-DBUILD_SHARED=on \
+-DBUILD_SSL=on
   make
 }
 

Deleted: async_read_until.patch
===
--- async_read_until.patch  2018-03-31 19:04:56 UTC (rev 313618)
+++ async_read_until.patch  2018-03-31 19:14:51 UTC (rev 313619)
@@ -1,123 +0,0 @@
-From 09b542eea3fb3038d02ff056d41dea16bfe889bd Mon Sep 17 00:00:00 2001
-From: AmarOk 
-Date: Tue, 5 Dec 2017 10:45:53 -0600
-Subject: [PATCH]socket_impl: replace read_until by async_read_until
-

- source/corvusoft/restbed/detail/socket_impl.cpp | 62 +++--
- 1 file changed, 49 insertions(+), 13 deletions(-)
-
-diff --git a/source/corvusoft/restbed/detail/socket_impl.cpp 
b/source/corvusoft/restbed/detail/socket_impl.cpp
-index 90e8b04..379f1c7 100644
 a/source/corvusoft/restbed/detail/socket_impl.cpp
-+++ b/source/corvusoft/restbed/detail/socket_impl.cpp
-@@ -417,28 +417,47 @@ namespace restbed
- m_timer->expires_from_now( m_timeout );
- m_timer->async_wait( bind( 
::connection_timeout_handler, this, shared_from_this( ), _1 ) );
- 
-+
- size_t size = 0;
-+auto finished = std::make_shared(false);
-+auto sharedError = std::make_shared();
-+auto sharedSize = std::make_shared(0);
-+
- #ifdef BUILD_SSL
--
-+
- if ( m_socket not_eq nullptr )
- {
- #endif
--size = asio::read( *m_socket, *data, asio::transfer_at_least( 
length ), error );
-+asio::async_read( *m_socket, *data, asio::transfer_at_least( 
length ),
-+[ this, finished, sharedSize, sharedError ]( const 
error_code & error, size_t size ) {
-+*sharedError = error;
-+*sharedSize = size;
-+*finished = true;
-+});
- #ifdef BUILD_SSL
- }
- else
- {
--size = asio::read( *m_ssl_socket, *data, 
asio::transfer_at_least( length ), error );
-+asio::async_read( *m_ssl_socket, *data, 
asio::transfer_at_least( length ),
-+[ this, finished, sharedSize, sharedError ]( const 
error_code & error, size_t size ) {
-+*sharedError = error;
-+*sharedSize = size;
-+*finished = true;
-+});
- }
--
- #endif
-+auto& io_service = m_socket->get_io_service( );
-+while (!*finished)
-+io_service.run_one();
-+error = *sharedError;
-+size = *sharedSize;
- m_timer->cancel( );
--
-+
- if ( error )
- {
-  

[arch-commits] Commit in python-jedi/trunk (update_requires.patch)

2018-03-31 Thread Jelle van der Waa via arch-commits
Date: Saturday, March 31, 2018 @ 19:22:50
  Author: jelle
Revision: 313623

Remove leftover patch

Deleted:
  python-jedi/trunk/update_requires.patch

---+
 update_requires.patch |   16 
 1 file changed, 16 deletions(-)

Deleted: update_requires.patch
===
--- update_requires.patch   2018-03-31 19:20:29 UTC (rev 313622)
+++ update_requires.patch   2018-03-31 19:22:50 UTC (rev 313623)
@@ -1,16 +0,0 @@
-From fc0397732ea87c2d641f2d2fdef0b13096d945b8 Mon Sep 17 00:00:00 2001
-From: Dave Halter 
-Date: Sun, 5 Nov 2017 15:05:09 +0100
-Subject: [PATCH] Update the parso dependency
-

- requirements.txt | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/requirements.txt b/requirements.txt
-index 2c72b5f42..2af26c8c8 100644
 a/requirements.txt
-+++ b/requirements.txt
-@@ -1 +1 @@
--parso==0.1.0
-+parso==0.1.1


[arch-commits] Commit in libkscreen/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2018-03-31 Thread Antonio Rojas via arch-commits
Date: Saturday, March 31, 2018 @ 20:49:33
  Author: arojas
Revision: 320724

archrelease: copy trunk to extra-x86_64

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

--+
 PKGBUILD |   82 ++---
 1 file changed, 41 insertions(+), 41 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-03-31 20:49:17 UTC (rev 320723)
+++ PKGBUILD2018-03-31 20:49:33 UTC (rev 320724)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Maintainer: Antonio Rojas 
-# Contributor: Andrea Scarpino 
-
-pkgname=libkscreen
-pkgver=5.12.4
-pkgrel=1
-pkgdesc='KDE screen management software'
-arch=(x86_64)
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=(LGPL)
-depends=(qt5-x11extras libxrandr kwayland)
-makedepends=(extra-cmake-modules)
-groups=(plasma)
-source=("https://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('59634d2480732fe65e6318258de33f0d806f9fafafeb6bdf6fe4e37dfeaa05b7'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '0AAC775BB6437A8D9AF7A3ACFE0784117FBCE11D'  # Bhushan Shah 

-  'D07BD8662C56CB291B316EB2F5675605C74E02CF'  # David Edmundson
-  '1FA881591C26B276D7A5518EEAAF29B42A678C20') # Marco Martin 

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

Copied: libkscreen/repos/extra-x86_64/PKGBUILD (from rev 320723, 
libkscreen/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-03-31 20:49:33 UTC (rev 320724)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=libkscreen
+pkgver=5.12.4
+pkgrel=1
+pkgdesc='KDE screen management software'
+arch=(x86_64)
+url='https://www.kde.org/workspaces/plasmadesktop/'
+license=(LGPL)
+depends=(qt5-x11extras libxrandr kwayland)
+makedepends=(extra-cmake-modules)
+groups=(plasma)
+source=("https://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('59634d2480732fe65e6318258de33f0d806f9fafafeb6bdf6fe4e37dfeaa05b7'
+'SKIP')
+validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
+  '0AAC775BB6437A8D9AF7A3ACFE0784117FBCE11D'  # Bhushan Shah 

+  'D07BD8662C56CB291B316EB2F5675605C74E02CF'  # David Edmundson
+  '1FA881591C26B276D7A5518EEAAF29B42A678C20') # Marco Martin 

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


[arch-commits] Commit in user-manager/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2018-03-31 Thread Antonio Rojas via arch-commits
Date: Saturday, March 31, 2018 @ 21:03:12
  Author: arojas
Revision: 320768

archrelease: copy trunk to extra-x86_64

Added:
  user-manager/repos/extra-x86_64/PKGBUILD
(from rev 320767, user-manager/trunk/PKGBUILD)
Deleted:
  user-manager/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-03-31 21:02:57 UTC (rev 320767)
+++ PKGBUILD2018-03-31 21:03:12 UTC (rev 320768)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer:Antonio Rojas 
-
-pkgname=user-manager
-pkgver=5.12.3
-pkgrel=1
-pkgdesc='A simple system settings module to manage the users of your system'
-arch=(x86_64)
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=(LGPL)
-depends=(accountsservice libpwquality kio)
-makedepends=(extra-cmake-modules python kcmutils)
-groups=(plasma)
-source=("https://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('70ee5e5dfaf1bb610f70b42a57e102a9678bc27ef97c59cd4eca622218b3f485'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '0AAC775BB6437A8D9AF7A3ACFE0784117FBCE11D'  # Bhushan Shah 

-  'D07BD8662C56CB291B316EB2F5675605C74E02CF'  # David Edmundson
-  '1FA881591C26B276D7A5518EEAAF29B42A678C20') # Marco Martin 

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

Copied: user-manager/repos/extra-x86_64/PKGBUILD (from rev 320767, 
user-manager/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-03-31 21:03:12 UTC (rev 320768)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer:Antonio Rojas 
+
+pkgname=user-manager
+pkgver=5.12.4
+pkgrel=1
+pkgdesc='A simple system settings module to manage the users of your system'
+arch=(x86_64)
+url='https://www.kde.org/workspaces/plasmadesktop/'
+license=(LGPL)
+depends=(accountsservice libpwquality kio)
+makedepends=(extra-cmake-modules python kcmutils)
+groups=(plasma)
+source=("https://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('959af1859aaa8fdcd853ebae78d2b8a15e6700ca340c0ed3bd041315382524f8'
+'SKIP')
+validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
+  '0AAC775BB6437A8D9AF7A3ACFE0784117FBCE11D'  # Bhushan Shah 

+  'D07BD8662C56CB291B316EB2F5675605C74E02CF'  # David Edmundson
+  '1FA881591C26B276D7A5518EEAAF29B42A678C20') # Marco Martin 

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


[arch-commits] Commit in sddm-kcm/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2018-03-31 Thread Antonio Rojas via arch-commits
Date: Saturday, March 31, 2018 @ 21:02:57
  Author: arojas
Revision: 320767

archrelease: copy trunk to extra-x86_64

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

--+
 PKGBUILD |   83 ++---
 1 file changed, 41 insertions(+), 42 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-03-31 21:02:07 UTC (rev 320766)
+++ PKGBUILD2018-03-31 21:02:57 UTC (rev 320767)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Maintainer: Antonio Rojas 
-# Contributor: Andrea Scarpino 
-
-pkgname=sddm-kcm
-pkgver=5.12.3
-pkgrel=1
-pkgdesc='KDE Config Module for SDDM'
-arch=(x86_64)
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=(GPL)
-depends=(sddm libxcursor knewstuff)
-makedepends=(extra-cmake-modules kdoctools python)
-groups=(plasma)
-source=("https://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('e242e1b632f31fc64bd0abdb574029567f9dbbc57cf32fd4a2e6db6be2d4a3b9'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '0AAC775BB6437A8D9AF7A3ACFE0784117FBCE11D'  # Bhushan Shah 

-  'D07BD8662C56CB291B316EB2F5675605C74E02CF'  # David Edmundson
-  '1FA881591C26B276D7A5518EEAAF29B42A678C20') # Marco Martin 

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

Copied: sddm-kcm/repos/extra-x86_64/PKGBUILD (from rev 320766, 
sddm-kcm/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-03-31 21:02:57 UTC (rev 320767)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=sddm-kcm
+pkgver=5.12.4
+pkgrel=1
+pkgdesc='KDE Config Module for SDDM'
+arch=(x86_64)
+url='https://www.kde.org/workspaces/plasmadesktop/'
+license=(GPL)
+depends=(sddm libxcursor knewstuff)
+makedepends=(extra-cmake-modules kdoctools python)
+groups=(plasma)
+source=("https://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('072a8f71a381fff763c62e9a09752167a4cb3a0dca63674387c0464b7281a82e'
+'SKIP')
+validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
+  '0AAC775BB6437A8D9AF7A3ACFE0784117FBCE11D'  # Bhushan Shah 

+  'D07BD8662C56CB291B316EB2F5675605C74E02CF'  # David Edmundson
+  '1FA881591C26B276D7A5518EEAAF29B42A678C20') # Marco Martin 

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


[arch-commits] Commit in kio-gdrive/repos/community-x86_64 (PKGBUILD PKGBUILD)

2018-03-31 Thread Antonio Rojas via arch-commits
Date: Saturday, March 31, 2018 @ 21:03:14
  Author: arojas
Revision: 313637

archrelease: copy trunk to community-x86_64

Added:
  kio-gdrive/repos/community-x86_64/PKGBUILD
(from rev 313636, kio-gdrive/trunk/PKGBUILD)
Deleted:
  kio-gdrive/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-03-31 21:02:42 UTC (rev 313636)
+++ PKGBUILD2018-03-31 21:03:14 UTC (rev 313637)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-
-pkgname=kio-gdrive
-pkgver=1.2.1
-pkgrel=1
-arch=(i686 x86_64)
-pkgdesc="KIO Slave to access Google Drive"
-url="https://community.kde.org/KIO_GDrive;
-license=(GPL)
-depends=(libkgapi kaccounts-providers)
-makedepends=(extra-cmake-modules kdesignerplugin kdoctools python intltool)
-source=(https://download.kde.org/stable/$pkgname/$pkgver/src/$pkgname-$pkgver.tar.xz{,.sig})
-sha256sums=('d0c778538dc20412a944ccbd48fd99dc5f531e4df914bf8cbdf813371e857ca3'
-'SKIP')
-validpgpkeys=('F07D85CAA18ACF46A346FD017C7FC6EA8633B4EA') # Elvis Angelaccio 

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

Copied: kio-gdrive/repos/community-x86_64/PKGBUILD (from rev 313636, 
kio-gdrive/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-03-31 21:03:14 UTC (rev 313637)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+
+pkgname=kio-gdrive
+pkgver=1.2.2
+pkgrel=1
+arch=(x86_64)
+pkgdesc="KIO Slave to access Google Drive"
+url="https://community.kde.org/KIO_GDrive;
+license=(GPL)
+depends=(libkgapi kaccounts-providers)
+makedepends=(extra-cmake-modules kdesignerplugin kdoctools python intltool)
+source=(https://download.kde.org/stable/$pkgname/$pkgver/src/$pkgname-$pkgver.tar.xz{,.sig})
+sha256sums=('25dc91424ac79e882471ccb142ef9b50f9069e4b18775b8def875464d2627b5e'
+'SKIP')
+validpgpkeys=('F07D85CAA18ACF46A346FD017C7FC6EA8633B4EA') # Elvis Angelaccio 

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


[arch-commits] Commit in xdg-desktop-portal-kde/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2018-03-31 Thread Antonio Rojas via arch-commits
Date: Saturday, March 31, 2018 @ 21:03:29
  Author: arojas
Revision: 320769

archrelease: copy trunk to extra-x86_64

Added:
  xdg-desktop-portal-kde/repos/extra-x86_64/PKGBUILD
(from rev 320768, xdg-desktop-portal-kde/trunk/PKGBUILD)
Deleted:
  xdg-desktop-portal-kde/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-03-31 21:03:12 UTC (rev 320768)
+++ PKGBUILD2018-03-31 21:03:29 UTC (rev 320769)
@@ -1,41 +0,0 @@
-# $Id: PKGBUILD 295962 2017-05-13 12:58:56Z arojas $
-# Maintainer: Antonio Rojas 
-
-pkgname=xdg-desktop-portal-kde
-pkgver=5.12.3
-pkgrel=1
-pkgdesc='A backend implementation for xdg-desktop-portal using Qt/KF5'
-arch=(x86_64)
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=(LGPL)
-depends=(ki18n knotifications)
-makedepends=(extra-cmake-modules python)
-provides=(xdg-desktop-portal-impl)
-groups=(plasma)
-source=("https://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('69bed62e1c3b18e8ff2b1cce6bbfccb803b6abb17466e9635642efcfd8449e6b'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '0AAC775BB6437A8D9AF7A3ACFE0784117FBCE11D'  # Bhushan Shah 

-  'D07BD8662C56CB291B316EB2F5675605C74E02CF'  # David Edmundson
-  '1FA881591C26B276D7A5518EEAAF29B42A678C20') # Marco Martin 

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

Copied: xdg-desktop-portal-kde/repos/extra-x86_64/PKGBUILD (from rev 320768, 
xdg-desktop-portal-kde/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-03-31 21:03:29 UTC (rev 320769)
@@ -0,0 +1,40 @@
+# $Id: PKGBUILD 295962 2017-05-13 12:58:56Z arojas $
+# Maintainer: Antonio Rojas 
+
+pkgname=xdg-desktop-portal-kde
+pkgver=5.12.4
+pkgrel=1
+pkgdesc='A backend implementation for xdg-desktop-portal using Qt/KF5'
+arch=(x86_64)
+url='https://www.kde.org/workspaces/plasmadesktop/'
+license=(LGPL)
+depends=(ki18n knotifications)
+makedepends=(extra-cmake-modules python)
+provides=(xdg-desktop-portal-impl)
+groups=(plasma)
+source=("https://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('8c10609b7d15418242c4ca5389777c49a13df72ff1bdcc9f176e63e7573d69a1'
+'SKIP')
+validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
+  '0AAC775BB6437A8D9AF7A3ACFE0784117FBCE11D'  # Bhushan Shah 

+  'D07BD8662C56CB291B316EB2F5675605C74E02CF'  # David Edmundson
+  '1FA881591C26B276D7A5518EEAAF29B42A678C20') # Marco Martin 

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


[arch-commits] Commit in zam-plugins/repos (2 files)

2018-03-31 Thread David Runge via arch-commits
Date: Saturday, March 31, 2018 @ 21:55:59
  Author: dvzrv
Revision: 313655

archrelease: copy trunk to community-testing-x86_64

Added:
  zam-plugins/repos/community-testing-x86_64/
  zam-plugins/repos/community-testing-x86_64/PKGBUILD
(from rev 313654, zam-plugins/trunk/PKGBUILD)

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

Copied: zam-plugins/repos/community-testing-x86_64/PKGBUILD (from rev 313654, 
zam-plugins/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2018-03-31 21:55:59 UTC (rev 313655)
@@ -0,0 +1,38 @@
+# Maintainer: David Runge 
+pkgname=zam-plugins
+pkgver=3.10
+pkgrel=3
+pkgdesc="Collection of LADSPA/LV2/VST/JACK audio plugins for high-quality 
processing"
+arch=('x86_64')
+url="https://github.com/zamaudio/zam-plugins;
+license=('GPL2')
+groups=('ladspa-plugins' 'lv2-plugins' 'pro-audio' 'vst-plugins')
+depends=('fftw' 'libglvnd' 'jack' 'liblo' 'zita-convolver')
+makedepends=('git' 'ladspa' 'libx11' 'libgl' 'liblo' 'lv2')
+source=("$pkgname-$pkgver::git+https://github.com/zamaudio/${pkgname}.git#tag=${pkgver};
+"git+https://github.com/distrho/dpf.git;)
+md5sums=('SKIP'
+ 'SKIP')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+  git submodule init
+  git config submodule.dpf.url "${srcdir}/dpf"
+  git submodule update
+  # use system zita-convolver
+  sed -e 
's|\"../../lib/zita-convolver-3.1.0/zita-convolver.h\"||' \
+-i plugins/Zam{Verb,HeadX2}/convolution.{cpp,hpp}
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir/" PREFIX='/usr' install
+  # docs
+  install -t "${pkgdir}/usr/share/doc/${pkgname}/" \
+-vDm 644 {README.md,changelog}
+}


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

2018-03-31 Thread David Runge via arch-commits
Date: Saturday, March 31, 2018 @ 22:05:37
  Author: dvzrv
Revision: 313658

archrelease: copy trunk to community-testing-x86_64

Added:
  rt-tests/repos/community-testing-x86_64/
  rt-tests/repos/community-testing-x86_64/PKGBUILD
(from rev 313657, rt-tests/trunk/PKGBUILD)
  rt-tests/repos/community-testing-x86_64/use-the-ftrace-hwlatdetector.patch
(from rev 313657, rt-tests/trunk/use-the-ftrace-hwlatdetector.patch)

+
 PKGBUILD   |   33 ++
 use-the-ftrace-hwlatdetector.patch |  539 +++
 2 files changed, 572 insertions(+)

Copied: rt-tests/repos/community-testing-x86_64/PKGBUILD (from rev 313657, 
rt-tests/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2018-03-31 22:05:37 UTC (rev 313658)
@@ -0,0 +1,33 @@
+# Maintainer: David Runge 
+# Contributor: Joakim Hernberg 
+
+pkgname=rt-tests
+pkgver=1.1
+pkgrel=2
+pkgdesc="A collection of latency testing tools for the linux(-rt) kernel"
+arch=('x86_64')
+url="https://git.kernel.org/pub/scm/utils/rt-tests/rt-tests.git/about/;
+license=('GPL2')
+depends=('python2' 'numactl')
+source=("https://git.kernel.org/pub/scm/utils/${pkgname}/${pkgname}.git/snapshot/${pkgname}-1.1.tar.gz;
+'use-the-ftrace-hwlatdetector.patch')
+sha512sums=('2698bf131b21e9e632ffb4605d965f0e1158b5b3c332c9b8ca71f34a2eeb72cc5c5a18932aaf8ce9e5d03b8a81330d0e8306b99f321852b1234a80f7bf8fce2c'
+
'7ecf0a90cc9b37d3faf6572f33877f2e361c3d14959c8cec21a562fb01e75141e97be236b41076174c3d5353b9820f59e2e02f6d8e40af90f97e70abf4790470')
+
+prepare() {
+  cd "${pkgname}-${pkgver}"
+  sed -i s/'shell python'/'shell python2'/ Makefile
+  sed -i 's/python/python2/' src/hwlatdetect/hwlatdetect.py
+}
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  make
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  make prefix=/usr DESTDIR="${pkgdir}" install
+  install -vDm 644 {MAINTAINERS,README.markdown} \
+-t "${pkgdir}/usr/share/doc/${pkgname}"
+}

Copied: 
rt-tests/repos/community-testing-x86_64/use-the-ftrace-hwlatdetector.patch 
(from rev 313657, rt-tests/trunk/use-the-ftrace-hwlatdetector.patch)
===
--- community-testing-x86_64/use-the-ftrace-hwlatdetector.patch 
(rev 0)
+++ community-testing-x86_64/use-the-ftrace-hwlatdetector.patch 2018-03-31 
22:05:37 UTC (rev 313658)
@@ -0,0 +1,539 @@
+diff --git a/src/hwlatdetect/hwlatdetect.py b/src/hwlatdetect/hwlatdetect.py
+index e08c798..6c6687f 100755
+--- a/src/hwlatdetect/hwlatdetect.py
 b/src/hwlatdetect/hwlatdetect.py
+@@ -1,6 +1,6 @@
+ #!/usr/bin/python
+ 
+-# (C) 2015 Clark Williams 
++# (C) 2015,2016 Clark Williams 
+ # (C) 2009 Clark Williams 
+ #
+ # This program is free software; you can redistribute it and/or
+@@ -16,7 +16,7 @@ import subprocess
+ import errno
+ import os.path
+ 
+-version = "0.6"
++version = "0.7"
+ debugging = False
+ quiet = False
+ watch = False
+@@ -113,87 +113,81 @@ class DebugFS(object):
+ # leave it alone when cleaning up.
+ #
+ class Kmod(object):
+-''' class to manage loading and unloading hwlat.ko'''
++''' class to manage loading and unloading of kernel modules'''
+ 
+ names = ("hwlat_detector", "smi_detector")
+ def __check_builtin(self):
+ for l in open(os.path.join('/lib/modules', os.uname()[2], 
'modules.builtin'), "r"):
+-for m in Kmod.names:
+-if m in l:
+-debug("found %s as builtin" % m)
+-return m
+-return None
+-
+-def __find_modname(self):
+-debug("looking for modules")
++if self.name in l:
++debug("found %s as builtin" % self.namename)
++return True
++return False
++
++def __find_module(self):
++debug("looking for module %s" % self.name)
+ path = os.path.join("/lib/modules",
+ os.uname()[2],
+ "kernel/drivers/misc")
+ debug("module path: %s" % path)
+-for m in Kmod.names:
+-mpath = os.path.join(path, m) + ".ko"
+-debug("checking %s" % mpath)
+-if os.path.exists(mpath):
+-return m
+-raise RuntimeError("no detector module found!")
++mpath = os.path.join(path, self.name) + ".ko"
++debug("checking %s" % mpath)
++if os.path.exists(mpath):
++return True
++return False
+ 
+-def __init__(self):
++def __init__(self, name):
++if name not in Kmod.names:
++raise RuntimeError, "unsupported module name: %s" % name
++self.name = name
+ self.preloaded = False
+ self.builtin = False
+ 
+ # check 

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

2018-03-31 Thread Antonio Rojas via arch-commits
Date: Saturday, March 31, 2018 @ 23:35:46
  Author: arojas
Revision: 320782

libqalculate 2.3.0 rebuild

Modified:
  plasma-workspace/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-03-31 23:30:34 UTC (rev 320781)
+++ PKGBUILD2018-03-31 23:35:46 UTC (rev 320782)
@@ -7,7 +7,7 @@
 pkgbase=plasma-workspace
 pkgname=(plasma-workspace kuiserver plasma-wayland-session)
 pkgver=5.12.4
-pkgrel=1
+pkgrel=2
 pkgdesc='KDE Plasma Workspace'
 arch=(x86_64)
 url='https://www.kde.org/workspaces/plasmadesktop/'


[arch-commits] Commit in perl-filesys-df/repos/community-testing-x86_64 (2 files)

2018-03-31 Thread Fabio Castelli via arch-commits
Date: Sunday, April 1, 2018 @ 01:02:12
  Author: muflone
Revision: 313671

archrelease: copy trunk to community-testing-x86_64

Added:
  perl-filesys-df/repos/community-testing-x86_64/PKGBUILD
(from rev 313670, perl-filesys-df/trunk/PKGBUILD)
Deleted:
  perl-filesys-df/repos/community-testing-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-04-01 01:01:26 UTC (rev 313670)
+++ PKGBUILD2018-04-01 01:02:12 UTC (rev 313671)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Muflone http://www.muflone.com/contacts/english/
-# Contributor: Ian Guthrie 
-# Contributor: der_FeniX 
-
-pkgname=perl-filesys-df
-_perl_module=Filesys-Df
-pkgver=0.92
-pkgrel=4
-pkgdesc="Perl extension for filesystem disk space information"
-arch=('x86_64')
-url="https://metacpan.org/release/${_perl_module};
-license=('GPL3')
-depends=('perl')
-source=("https://cpan.metacpan.org/authors/id/I/IG/IGUTHRIE/${_perl_module}-${pkgver}.tar.gz;)
-sha256sums=('fe89cbb427e0e05f1cd97c2dd6d3866ac6b21bc7a85734ede159bdc35479552a')
-options=('!emptydirs')
-
-build() {
-   cd "${_perl_module}-${pkgver}"
-   perl Makefile.PL
-   make
-}
-
-package() {
-   cd "${_perl_module}-${pkgver}"
-   make pure_install DESTDIR="${pkgdir}"
-}

Copied: perl-filesys-df/repos/community-testing-x86_64/PKGBUILD (from rev 
313670, perl-filesys-df/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-04-01 01:02:12 UTC (rev 313671)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Muflone http://www.muflone.com/contacts/english/
+# Contributor: Ian Guthrie 
+# Contributor: der_FeniX 
+
+pkgname=perl-filesys-df
+_perl_module=Filesys-Df
+pkgver=0.92
+pkgrel=5
+pkgdesc="Perl extension for filesystem disk space information"
+arch=('x86_64')
+url="https://metacpan.org/release/${_perl_module};
+license=('GPL3')
+depends=('perl')
+source=("https://cpan.metacpan.org/authors/id/I/IG/IGUTHRIE/${_perl_module}-${pkgver}.tar.gz;)
+sha256sums=('fe89cbb427e0e05f1cd97c2dd6d3866ac6b21bc7a85734ede159bdc35479552a')
+options=('!emptydirs')
+
+build() {
+   cd "${_perl_module}-${pkgver}"
+   perl Makefile.PL
+   make
+}
+
+check() {
+   cd "${_perl_module}-${pkgver}"
+   make test
+}
+
+package() {
+   cd "${_perl_module}-${pkgver}"
+   make pure_install DESTDIR="${pkgdir}"
+}


[arch-commits] Commit in perl-filesys-df/trunk (PKGBUILD)

2018-03-31 Thread Fabio Castelli via arch-commits
Date: Sunday, April 1, 2018 @ 01:01:26
  Author: muflone
Revision: 313670

upgpkg: perl-filesys-df 0.92-5

Modified:
  perl-filesys-df/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-04-01 00:36:56 UTC (rev 313669)
+++ PKGBUILD2018-04-01 01:01:26 UTC (rev 313670)
@@ -6,7 +6,7 @@
 pkgname=perl-filesys-df
 _perl_module=Filesys-Df
 pkgver=0.92
-pkgrel=4
+pkgrel=5
 pkgdesc="Perl extension for filesystem disk space information"
 arch=('x86_64')
 url="https://metacpan.org/release/${_perl_module};
@@ -22,6 +22,11 @@
make
 }
 
+check() {
+   cd "${_perl_module}-${pkgver}"
+   make test
+}
+
 package() {
cd "${_perl_module}-${pkgver}"
make pure_install DESTDIR="${pkgdir}"


[arch-commits] Commit in perl-data-uuid/trunk (PKGBUILD)

2018-03-31 Thread Fabio Castelli via arch-commits
Date: Sunday, April 1, 2018 @ 01:52:45
  Author: muflone
Revision: 313684

upgpkg: perl-data-uuid 1.221-3

Modified:
  perl-data-uuid/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-04-01 01:47:40 UTC (rev 313683)
+++ PKGBUILD2018-04-01 01:52:45 UTC (rev 313684)
@@ -2,31 +2,32 @@
 # Maintainer: Muflone http://www.muflone.com/contacts/english/
 
 pkgname=perl-data-uuid
-_perl_module=Data-UUID
+_perl_namespace=Data
+_perl_module=UUID
 pkgver=1.221
-pkgrel=2
+pkgrel=3
 pkgdesc="Globally/Universally Unique Identifiers (GUIDs/UUIDs)"
 arch=('x86_64')
-url="https://metacpan.org/release/${_perl_module};
+url="https://metacpan.org/release/${_perl_namespace}-${_perl_module};
 license=('BSD')
 depends=('perl')
-source=("http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/${_perl_module}-${pkgver}.tar.gz;)
+source=("https://www.cpan.org/modules/by-module/${_perl_namespace}/${_perl_namespace}-${_perl_module}-${pkgver}.tar.gz;)
 sha256sums=('3cc7b2a3a7b74b45a059e013f7fd878078500ea4b7269036f84556b022078667')
 options=('!emptydirs')
 
 build() {
-  cd "${_perl_module}-${pkgver}"
+  cd "${_perl_namespace}-${_perl_module}-${pkgver}"
   perl Makefile.PL
   make
 }
 
 check() {
-  cd "${_perl_module}-${pkgver}"
+  cd "${_perl_namespace}-${_perl_module}-${pkgver}"
   make test
 }
 
 package() {
-  cd "${_perl_module}-${pkgver}"
+  cd "${_perl_namespace}-${_perl_module}-${pkgver}"
   make pure_install DESTDIR="${pkgdir}"
   # Install license file
   install -m 755 -d "${pkgdir}/usr/share/licenses/${pkgname}"


[arch-commits] Commit in wine-staging-nine/trunk (PKGBUILD)

2018-03-31 Thread Laurent Carlier via arch-commits
Date: Saturday, March 31, 2018 @ 19:04:43
  Author: lcarlier
Revision: 313617

upgpkg: wine-staging-nine 3.5-1

upstream update 3.5

Modified:
  wine-staging-nine/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-03-31 16:46:30 UTC (rev 313616)
+++ PKGBUILD2018-03-31 19:04:43 UTC (rev 313617)
@@ -7,7 +7,7 @@
 # Contributor: Giovanni Scafora 
 
 pkgname=wine-staging-nine
-pkgver=3.4
+pkgver=3.5
 pkgrel=1
 
 _pkgbasever=${pkgver/rc/-rc}
@@ -21,10 +21,10 @@
 wine-binfmt.conf
 harmony-fix.diff
 steam.patch)
-sha512sums=('5787bf3fa13d363302ee26f86b96ed728b2b06184572021efdbb00b2c8ebd088056c6d9e22c6c78f0edc0a0b12e26fa51f08970c8c5eaab4309e86b4286c'
+sha512sums=('c1e36f3db862fdedd00c3ac20c84c6eb799b53fe32e959b481a6168baf7d9725ed9bd0a97e7f9b651e3ccfba4f8fb623445369be03fde5010ed0fcb0a53e7d3f'
 'SKIP'
-
'f0cc2b3d91589a4d9536c1011001edf7db428387592407a64949381c0ac2f0bb79b0fbf04d3c85db50adbecba716188a8249e1ff166b5ec3004d9eb5f9e92f3f'
-
'e38e5d1f5f1e980b896a0b0d2d51c59cac15c6e450d0ba5621ca7bca4df7b470857c0c2bf737273647ef44f9252a794c26b82b20b233a95277d97df93b40efd7'
+
'39ce4fccac408d69c55fe53376744d218d546d09fc3fcaa5c8e87ba070de5ed52128ebdf0ed76cb5e3a5178a79c8fb25a8786b129e8b3eb59156732d7a4bf15c'
+
'4bde2b510f8726b002dd33af75884eb165b1050338ab553fee071653af343a08d27d338ee42b68600038171d6c645386cde8513fa80c805f8118eb0d9f6c5f4b'
 
'6e54ece7ec7022b3c9d94ad64bdf1017338da16c618966e8baf398e6f18f80f7b0576edf1d1da47ed77b96d577e4cbb2bb0156b0b11c183a0accf22654b0a2bb'
 
'bdde7ae015d8a98ba55e84b86dc05aca1d4f8de85be7e4bd6187054bfe4ac83b5a20538945b63fb073caab78022141e9545685e4e3698c97ff173cf30859e285'
 
'b86edf07bfc560f403fdfd5a71f97930ee2a4c3f76c92cc1a0dbb2e107be9db3bed3a727a0430d8a049583c63dd11f5d4567fb7aa69b193997c6da241acc4f2e'


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

2018-03-31 Thread Jelle van der Waa via arch-commits
Date: Saturday, March 31, 2018 @ 19:20:14
  Author: jelle
Revision: 313621

upgpkg: esptool 2.3.1-1

Modified:
  esptool/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-03-31 19:15:08 UTC (rev 313620)
+++ PKGBUILD2018-03-31 19:20:14 UTC (rev 313621)
@@ -4,7 +4,7 @@
 # Contributor: MatejSpindler 
 
 pkgname=esptool
-pkgver=2.2
+pkgver=2.3.1
 pkgrel=1
 pkgdesc="A cute Python utility to communicate with the ROM bootloader in 
Espressif ESP8266"
 arch=('any')
@@ -13,7 +13,7 @@
 makedepends=('git')
 depends=('python-pyserial')
 source=("https://github.com/themadinventor/esptool/archive/v${pkgver}.tar.gz;)
-md5sums=('2385f9f1d22d22f9cf47c9314f253042')
+md5sums=('508350b0a0ed7ead28b44c6450371e85')
 
 package() {
   cd "esptool-${pkgver}"


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

2018-03-31 Thread Jelle van der Waa via arch-commits
Date: Saturday, March 31, 2018 @ 19:20:29
  Author: jelle
Revision: 313622

archrelease: copy trunk to community-any

Added:
  esptool/repos/community-any/PKGBUILD
(from rev 313621, esptool/trunk/PKGBUILD)
Deleted:
  esptool/repos/community-any/PKGBUILD

--+
 PKGBUILD |   42 +-
 1 file changed, 21 insertions(+), 21 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-03-31 19:20:14 UTC (rev 313621)
+++ PKGBUILD2018-03-31 19:20:29 UTC (rev 313622)
@@ -1,21 +0,0 @@
-# Maintainer: Jelle van der Waa 
-# Contributor: Marcin (CTRL) Wieczorek 
-# Contributor: Marcin Kornat 
-# Contributor: MatejSpindler 
-
-pkgname=esptool
-pkgver=2.2
-pkgrel=1
-pkgdesc="A cute Python utility to communicate with the ROM bootloader in 
Espressif ESP8266"
-arch=('any')
-url="https://github.com/themadinventor/esptool;
-license=('GPL2')
-makedepends=('git')
-depends=('python-pyserial')
-source=("https://github.com/themadinventor/esptool/archive/v${pkgver}.tar.gz;)
-md5sums=('2385f9f1d22d22f9cf47c9314f253042')
-
-package() {
-  cd "esptool-${pkgver}"
-  install -Dm755 "esptool.py" "${pkgdir}/usr/bin/esptool"
-}

Copied: esptool/repos/community-any/PKGBUILD (from rev 313621, 
esptool/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-03-31 19:20:29 UTC (rev 313622)
@@ -0,0 +1,21 @@
+# Maintainer: Jelle van der Waa 
+# Contributor: Marcin (CTRL) Wieczorek 
+# Contributor: Marcin Kornat 
+# Contributor: MatejSpindler 
+
+pkgname=esptool
+pkgver=2.3.1
+pkgrel=1
+pkgdesc="A cute Python utility to communicate with the ROM bootloader in 
Espressif ESP8266"
+arch=('any')
+url="https://github.com/themadinventor/esptool;
+license=('GPL2')
+makedepends=('git')
+depends=('python-pyserial')
+source=("https://github.com/themadinventor/esptool/archive/v${pkgver}.tar.gz;)
+md5sums=('508350b0a0ed7ead28b44c6450371e85')
+
+package() {
+  cd "esptool-${pkgver}"
+  install -Dm755 "esptool.py" "${pkgdir}/usr/bin/esptool"
+}


[arch-commits] Commit in (4 files)

2018-03-31 Thread David Runge via arch-commits
Date: Saturday, March 31, 2018 @ 20:03:09
  Author: dvzrv
Revision: 313628

Adding infamousplugins 0.2.04.

Added:
  infamousplugins/
  infamousplugins/repos/
  infamousplugins/trunk/
  infamousplugins/trunk/PKGBUILD

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

Added: infamousplugins/trunk/PKGBUILD
===
--- infamousplugins/trunk/PKGBUILD  (rev 0)
+++ infamousplugins/trunk/PKGBUILD  2018-03-31 20:03:09 UTC (rev 313628)
@@ -0,0 +1,34 @@
+# Maintainer: David Runge 
+_name=infamousPlugins
+pkgname=infamousplugins
+pkgver=0.2.04
+pkgrel=2
+pkgdesc="A collection of open-source LV2 plugins"
+arch=('x86_64')
+url="https://ssj71.github.io/infamousPlugins/;
+license=('GPL2')
+groups=('lv2-plugins' 'pro-audio')
+depends=('fftw' 'ntk' 'zita-resampler')
+makedepends=('cmake' 'lv2')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/ssj71/${_name}/archive/v${pkgver}.tar.gz;)
+sha512sums=('340de9a58f454c3998c71f8c0f004e541253b96ee4c5ac870d6ff0fe07c46764534467dca55046e2a160cfc40c4a252912788bd4140c58efcbe4234730305570')
+
+prepare() {
+  mv -v "${_name}-${pkgver}" "${pkgname}-${pkgver}"
+  cd "${pkgname}-${pkgver}"
+  mkdir -v build
+}
+
+build() {
+  cd "$pkgname-$pkgver/build"
+  cmake -DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+..
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver/build"
+  make DESTDIR="$pkgdir/" install
+  install -vDm 644 ../{CHANGELOG,README} -t 
"${pkgdir}/usr/share/doc/${pkgname}/"
+}


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


[arch-commits] Commit in milou/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2018-03-31 Thread Antonio Rojas via arch-commits
Date: Saturday, March 31, 2018 @ 20:49:48
  Author: arojas
Revision: 320725

archrelease: copy trunk to extra-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-03-31 20:49:33 UTC (rev 320724)
+++ PKGBUILD2018-03-31 20:49:48 UTC (rev 320725)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Maintainer: Antonio Rojas 
-# Contributor: Andrea Scarpino 
-
-pkgname=milou
-pkgver=5.12.4
-pkgrel=1
-pkgdesc="A dedicated search application built on top of Baloo"
-arch=(x86_64)
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=(LGPL)
-depends=(krunner)
-makedepends=(extra-cmake-modules kdoctools python)
-groups=(plasma)
-source=("https://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('87d60635ad3da879604c52b49503e4976346eb34cfbeaa774b09aa168122156c'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '0AAC775BB6437A8D9AF7A3ACFE0784117FBCE11D'  # Bhushan Shah 

-  'D07BD8662C56CB291B316EB2F5675605C74E02CF'  # David Edmundson
-  '1FA881591C26B276D7A5518EEAAF29B42A678C20') # Marco Martin 

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

Copied: milou/repos/extra-x86_64/PKGBUILD (from rev 320724, 
milou/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-03-31 20:49:48 UTC (rev 320725)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=milou
+pkgver=5.12.4
+pkgrel=1
+pkgdesc="A dedicated search application built on top of Baloo"
+arch=(x86_64)
+url='https://www.kde.org/workspaces/plasmadesktop/'
+license=(LGPL)
+depends=(krunner)
+makedepends=(extra-cmake-modules kdoctools python)
+groups=(plasma)
+source=("https://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('87d60635ad3da879604c52b49503e4976346eb34cfbeaa774b09aa168122156c'
+'SKIP')
+validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
+  '0AAC775BB6437A8D9AF7A3ACFE0784117FBCE11D'  # Bhushan Shah 

+  'D07BD8662C56CB291B316EB2F5675605C74E02CF'  # David Edmundson
+  '1FA881591C26B276D7A5518EEAAF29B42A678C20') # Marco Martin 

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


[arch-commits] Commit in libksysguard/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2018-03-31 Thread Antonio Rojas via arch-commits
Date: Saturday, March 31, 2018 @ 20:49:17
  Author: arojas
Revision: 320723

archrelease: copy trunk to extra-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-03-31 20:49:01 UTC (rev 320722)
+++ PKGBUILD2018-03-31 20:49:17 UTC (rev 320723)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Maintainer: Antonio Rojas 
-# Contributor: Andrea Scarpino 
-
-pkgname=libksysguard
-pkgver=5.12.4
-pkgrel=1
-pkgdesc='Libksysguard'
-arch=(x86_64)
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=(LGPL)
-depends=(libxres qt5-webkit kwindowsystem kconfigwidgets)
-makedepends=(extra-cmake-modules kdoctools python plasma-framework)
-groups=(plasma)
-source=("https://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('ed3a83435b85bb6b405cb2507b69ac5f21c793d2bb671889ee04c7de4876b826'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '0AAC775BB6437A8D9AF7A3ACFE0784117FBCE11D'  # Bhushan Shah 

-  'D07BD8662C56CB291B316EB2F5675605C74E02CF'  # David Edmundson
-  '1FA881591C26B276D7A5518EEAAF29B42A678C20') # Marco Martin 

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

Copied: libksysguard/repos/extra-x86_64/PKGBUILD (from rev 320722, 
libksysguard/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-03-31 20:49:17 UTC (rev 320723)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=libksysguard
+pkgver=5.12.4
+pkgrel=1
+pkgdesc='Libksysguard'
+arch=(x86_64)
+url='https://www.kde.org/workspaces/plasmadesktop/'
+license=(LGPL)
+depends=(libxres qt5-webkit kwindowsystem kconfigwidgets)
+makedepends=(extra-cmake-modules kdoctools python plasma-framework)
+groups=(plasma)
+source=("https://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('ed3a83435b85bb6b405cb2507b69ac5f21c793d2bb671889ee04c7de4876b826'
+'SKIP')
+validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
+  '0AAC775BB6437A8D9AF7A3ACFE0784117FBCE11D'  # Bhushan Shah 

+  'D07BD8662C56CB291B316EB2F5675605C74E02CF'  # David Edmundson
+  '1FA881591C26B276D7A5518EEAAF29B42A678C20') # Marco Martin 

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


[arch-commits] Commit in plasma-integration/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2018-03-31 Thread Antonio Rojas via arch-commits
Date: Saturday, March 31, 2018 @ 20:50:04
  Author: arojas
Revision: 320726

archrelease: copy trunk to extra-x86_64

Added:
  plasma-integration/repos/extra-x86_64/PKGBUILD
(from rev 320725, plasma-integration/trunk/PKGBUILD)
Deleted:
  plasma-integration/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-03-31 20:49:48 UTC (rev 320725)
+++ PKGBUILD2018-03-31 20:50:04 UTC (rev 320726)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-# Maintainer: Felix Yan 
-
-pkgname=plasma-integration
-pkgver=5.12.3
-pkgrel=1
-pkgdesc="Qt Platform Theme integration plugins for the Plasma workspaces"
-arch=(x86_64)
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=(LGPL)
-depends=(kio kwayland libxcursor noto-fonts ttf-hack qqc2-desktop-style)
-makedepends=(extra-cmake-modules python breeze)
-groups=(plasma)
-source=("https://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('9cbfbdf08597260eaf393ac7fbcc3e229c99fb32fc9398959c188ca2b47b3361'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '0AAC775BB6437A8D9AF7A3ACFE0784117FBCE11D'  # Bhushan Shah 

-  'D07BD8662C56CB291B316EB2F5675605C74E02CF'  # David Edmundson
-  '1FA881591C26B276D7A5518EEAAF29B42A678C20') # Marco Martin 

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

Copied: plasma-integration/repos/extra-x86_64/PKGBUILD (from rev 320725, 
plasma-integration/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-03-31 20:50:04 UTC (rev 320726)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+
+pkgname=plasma-integration
+pkgver=5.12.4
+pkgrel=1
+pkgdesc="Qt Platform Theme integration plugins for the Plasma workspaces"
+arch=(x86_64)
+url='https://www.kde.org/workspaces/plasmadesktop/'
+license=(LGPL)
+depends=(kio kwayland libxcursor noto-fonts ttf-hack qqc2-desktop-style)
+makedepends=(extra-cmake-modules python breeze)
+groups=(plasma)
+source=("https://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('8b4e25cea0e533b95682e613b8dcc3f8ebe2e100610b03805ba08952eb64be61'
+'SKIP')
+validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
+  '0AAC775BB6437A8D9AF7A3ACFE0784117FBCE11D'  # Bhushan Shah 

+  'D07BD8662C56CB291B316EB2F5675605C74E02CF'  # David Edmundson
+  '1FA881591C26B276D7A5518EEAAF29B42A678C20') # Marco Martin 

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


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

2018-03-31 Thread Baptiste Jonglez via arch-commits
Date: Saturday, March 31, 2018 @ 21:25:46
  Author: zorun
Revision: 313642

upgpkg: libringclient 2:20180330.1.0d611bb-1

Modified:
  libringclient/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-03-31 21:12:38 UTC (rev 313641)
+++ PKGBUILD2018-03-31 21:25:46 UTC (rev 313642)
@@ -1,7 +1,7 @@
 # Maintainer: Baptiste Jonglez 
 
 pkgname=libringclient
-pkgver=20180216.1.63fd90f
+pkgver=20180330.1.0d611bb
 pkgrel=1
 epoch=2
 pkgdesc="Ring is a free and universal communication platform which preserves 
the users' privacy and freedoms (client communication library)"
@@ -11,7 +11,7 @@
 groups=("ring")
 depends=("ring-daemon" "qt5-base")
 makedepends=('git' 'cmake' 'qt5-tools')
-source=("git+https://gerrit-ring.savoirfairelinux.com/ring-lrc#commit=4ce625779bed65675d0556a34064558545f98731;)
+source=("git+https://gerrit-ring.savoirfairelinux.com/ring-lrc#commit=c3e9cb9067133f8bf978d51b30ba98096aee8bbf;)
 md5sums=('SKIP')
 
 build() {


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

2018-03-31 Thread Baptiste Jonglez via arch-commits
Date: Saturday, March 31, 2018 @ 21:26:08
  Author: zorun
Revision: 313643

archrelease: copy trunk to community-staging-x86_64

Added:
  libringclient/repos/community-staging-x86_64/
  libringclient/repos/community-staging-x86_64/PKGBUILD
(from rev 313642, libringclient/trunk/PKGBUILD)

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

Copied: libringclient/repos/community-staging-x86_64/PKGBUILD (from rev 313642, 
libringclient/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-03-31 21:26:08 UTC (rev 313643)
@@ -0,0 +1,40 @@
+# Maintainer: Baptiste Jonglez 
+
+pkgname=libringclient
+pkgver=20180330.1.0d611bb
+pkgrel=1
+epoch=2
+pkgdesc="Ring is a free and universal communication platform which preserves 
the users' privacy and freedoms (client communication library)"
+arch=("x86_64")
+url="https://ring.cx;
+license=('GPL3')
+groups=("ring")
+depends=("ring-daemon" "qt5-base")
+makedepends=('git' 'cmake' 'qt5-tools')
+source=("git+https://gerrit-ring.savoirfairelinux.com/ring-lrc#commit=c3e9cb9067133f8bf978d51b30ba98096aee8bbf;)
+md5sums=('SKIP')
+
+build() {
+  cd "ring-lrc"
+
+  msg2 'Building...'
+  mkdir -p build
+  cd build
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd "ring-lrc/build"
+
+  msg2 'Installing...'
+  make DESTDIR="$pkgdir" install
+
+  msg2 'Cleaning up pkgdir...'
+  find "$pkgdir" -type d -name .git -exec rm -r '{}' +
+  find "$pkgdir" -type f -name .gitignore -exec rm -r '{}' +
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in mysql-workbench/trunk (0007-gdal-json-c-0-13.patch PKGBUILD)

2018-03-31 Thread Christian Hesse via arch-commits
Date: Saturday, March 31, 2018 @ 22:00:56
  Author: eworm
Revision: 313656

update bundled gdal

Modified:
  mysql-workbench/trunk/PKGBUILD
Deleted:
  mysql-workbench/trunk/0007-gdal-json-c-0-13.patch

-+
 0007-gdal-json-c-0-13.patch |  111 --
 PKGBUILD|   11 
 2 files changed, 2 insertions(+), 120 deletions(-)

Deleted: 0007-gdal-json-c-0-13.patch
===
--- 0007-gdal-json-c-0-13.patch 2018-03-31 21:55:59 UTC (rev 313655)
+++ 0007-gdal-json-c-0-13.patch 2018-03-31 22:00:56 UTC (rev 313656)
@@ -1,111 +0,0 @@
-From 05a1fd773c8f418ee9765465fc4863c1d6472a4c Mon Sep 17 00:00:00 2001
-From: Even Rouault 
-Date: Fri, 5 Jan 2018 18:08:49 +
-Subject: [PATCH] =?UTF-8?q?Add=20support=20for=20json-c=20v0.13=20(patch?=
- =?UTF-8?q?=20by=20Bj=C3=B6rn=20Esser,=20fixes=20=E2=80=8Bhttps://github.c?=
- =?UTF-8?q?om/OSGeo/gdal/pull/277,=20backport=20of=20r41043,=20fixes=20#71?=
- =?UTF-8?q?95)?=
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-git-svn-id: https://svn.osgeo.org/gdal/branches/2.2@41200 
f0d54148-0727-0410-94bb-9a71ac55c965

- gdal/ogr/ogrsf_frmts/geojson/ogrgeojsonwriter.cpp | 30 +--
- 1 file changed, 22 insertions(+), 8 deletions(-)
-
-diff --git a/gdal/ogr/ogrsf_frmts/geojson/ogrgeojsonwriter.cpp 
b/gdal/ogr/ogrsf_frmts/geojson/ogrgeojsonwriter.cpp
-index fdf4b77b459..f8937885c76 100644
 a/gdal/ogr/ogrsf_frmts/geojson/ogrgeojsonwriter.cpp
-+++ b/gdal/ogr/ogrsf_frmts/geojson/ogrgeojsonwriter.cpp
-@@ -27,12 +27,18 @@
-  * DEALINGS IN THE SOFTWARE.
-  /
- 
-+#define JSON_C_VER_013 (13 << 8)
-+
- #include "ogrgeojsonwriter.h"
- #include "ogrgeojsonutils.h"
- #include "ogr_geojson.h"
- #include "ogrgeojsonreader.h"
- #include   // JSON-C
-+
-+#if (!defined(JSON_C_VERSION_NUM)) || (JSON_C_VERSION_NUM < JSON_C_VER_013)
- #include 
-+#endif
-+
- #include 
- #include 
- #include 
-@@ -1381,13 +1387,17 @@ static int OGR_json_double_with_precision_to_string( 
struct json_object *jso,
- {
- // TODO(schwehr): Explain this casting.
- const int nPrecision =
-+#if (!defined(JSON_C_VERSION_NUM)) || (JSON_C_VERSION_NUM < JSON_C_VER_013)
- static_cast(reinterpret_cast(jso->_userdata));
-+#else
-+
static_cast(reinterpret_cast(json_object_get_userdata(jso)));
-+#endif
- char szBuffer[75] = {};
--OGRFormatDouble( szBuffer, sizeof(szBuffer), jso->o.c_double, '.',
-+OGRFormatDouble( szBuffer, sizeof(szBuffer), json_object_get_double(jso), 
'.',
-  (nPrecision < 0) ? 15 : nPrecision );
- if( szBuffer[0] == 't' /*oobig */ )
- {
--CPLsnprintf(szBuffer, sizeof(szBuffer), "%.18g", jso->o.c_double);
-+CPLsnprintf(szBuffer, sizeof(szBuffer), "%.18g", 
json_object_get_double(jso));
- }
- return printbuf_memappend(pb, szBuffer, 
static_cast(strlen(szBuffer)));
- }
-@@ -1417,11 +1427,11 @@ OGR_json_double_with_significant_figures_to_string( 
struct json_object *jso,
- {
- char szBuffer[75] = {};
- int nSize = 0;
--if( CPLIsNan(jso->o.c_double))
-+if( CPLIsNan(json_object_get_double(jso)))
- nSize = CPLsnprintf(szBuffer, sizeof(szBuffer), "NaN");
--else if( CPLIsInf(jso->o.c_double) )
-+else if( CPLIsInf(json_object_get_double(jso)) )
- {
--if( jso->o.c_double > 0 )
-+if( json_object_get_double(jso) > 0 )
- nSize = CPLsnprintf(szBuffer, sizeof(szBuffer), "Infinity");
- else
- nSize = CPLsnprintf(szBuffer, sizeof(szBuffer), "-Infinity");
-@@ -1429,13 +1439,17 @@ OGR_json_double_with_significant_figures_to_string( 
struct json_object *jso,
- else
- {
- char szFormatting[32] = {};
-+#if (!defined(JSON_C_VERSION_NUM)) || (JSON_C_VERSION_NUM < JSON_C_VER_013)
- const int nSignificantFigures = (int) (GUIntptr_t) jso->_userdata;
-+#else
-+const int nSignificantFigures = (int) (GUIntptr_t) 
json_object_get_userdata(jso);
-+#endif
- const int nInitialSignificantFigures =
- nSignificantFigures >= 0 ? nSignificantFigures : 17;
- CPLsnprintf(szFormatting, sizeof(szFormatting),
- "%%.%dg", nInitialSignificantFigures);
- nSize = CPLsnprintf(szBuffer, sizeof(szBuffer),
--szFormatting, jso->o.c_double);
-+szFormatting, json_object_get_double(jso));
- const char* pszDot = NULL;
- if( nSize+2 < static_cast(sizeof(szBuffer)) &&
- (pszDot = strchr(szBuffer, '.')) == NULL )
-@@ -1457,7 +1471,7 @@ OGR_json_double_with_significant_figures_to_string( 
struct json_object *jso,
- CPLsnprintf(szFormatting, sizeof(szFormatting),
- "%%.%dg", 

[arch-commits] Commit in imagemagick/repos/extra-x86_64 (4 files)

2018-03-31 Thread Antonio Rojas via arch-commits
Date: Saturday, March 31, 2018 @ 22:11:24
  Author: arojas
Revision: 320771

archrelease: copy trunk to extra-x86_64

Added:
  imagemagick/repos/extra-x86_64/PKGBUILD
(from rev 320770, imagemagick/trunk/PKGBUILD)
  imagemagick/repos/extra-x86_64/arch-fonts.diff
(from rev 320770, imagemagick/trunk/arch-fonts.diff)
Deleted:
  imagemagick/repos/extra-x86_64/PKGBUILD
  imagemagick/repos/extra-x86_64/arch-fonts.diff

-+
 PKGBUILD|  282 +++---
 arch-fonts.diff |  214 
 2 files changed, 248 insertions(+), 248 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-03-31 22:10:59 UTC (rev 320770)
+++ PKGBUILD2018-03-31 22:11:24 UTC (rev 320771)
@@ -1,141 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-
-pkgbase=imagemagick
-pkgname=(libmagick imagemagick imagemagick-doc)
-pkgver=7.0.7.27
-pkgrel=2
-pkgdesc="An image viewing/manipulation program"
-url="https://www.imagemagick.org/;
-arch=(x86_64)
-license=(custom)
-depends=(libltdl lcms2 fontconfig libxext liblqr libraqm libpng libxml2)
-makedepends=(ghostscript openexr libwmf librsvg libxml2 openjpeg2 libraw 
opencl-headers libwebp
- chrpath ocl-icd glu ghostpcl ghostxps)
-checkdepends=(gsfonts ttf-dejavu)
-_relname=ImageMagick-${pkgver%%.*}
-_tarname=ImageMagick-${pkgver%.*}-${pkgver##*.}
-source=(https://www.imagemagick.org/download/$_tarname.tar.xz{,.asc}
-arch-fonts.diff)
-sha256sums=('543776f09d69e3ca29b1b83a9c0223185ba26bec673593840b4d7face6ea253b'
-'SKIP'
-'a85b744c61b1b563743ecb7c7adad999d7ed9a8af816650e3ab9321b2b102e73')
-validpgpkeys=(D8272EF51DA223E4D05B466989AB63D48277377A)  # Lexie Parsimoniae
-
-shopt -s extglob
-
-prepare() {
-  mkdir -p binpkg/usr/lib/pkgconfig {binpkg,docpkg}/usr/share
-
-  cd $_tarname
-
-  # Fix up typemaps to match our packages, where possible
-  patch -Np1 -i ../arch-fonts.diff
-
-  # Don't run auto(re)conf; assumes use of git
-}
-
-build() {
-  cd $_tarname
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---with-dejavu-font-dir=/usr/share/fonts/TTF \
---with-gs-font-dir=/usr/share/fonts/gsfonts \
-PSDelegate=/usr/bin/gs \
-XPSDelegate=/usr/bin/gxps \
-PCLDelegate=/usr/bin/gpcl6 \
---enable-hdri \
---enable-opencl \
---with-gslib \
---with-lqr \
---with-modules \
---with-openexr \
---with-openjp2 \
---with-perl \
---with-perl-options=INSTALLDIRS=vendor \
---with-rsvg \
---with-webp \
---with-wmf \
---with-xml \
---without-autotrace \
---without-djvu \
---without-dps \
---without-fftw \
---without-fpx \
---without-gcc-arch \
---without-gvc \
---without-jbig
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-check() (
-  cd $_tarname
-  ulimit -n 4096
-  make check
-)
-
-package_libmagick() {
-  pkgdesc+=" (library)"
-  optdepends=('ghostscript: PS/PDF support'
-  'libraw: DNG support'
-  'librsvg: SVG support'
-  'libwebp: WEBP support'
-  'libwmf: WMF support'
-  'libxml2: Magick Scripting Language'
-  'ocl-icd: OpenCL support'
-  'openexr: OpenEXR support'
-  'openjpeg2: JPEG2000 support'
-  'pango: Text rendering')
-  
backup=(etc/$_relname/{coder,colors,delegates,log,magic,mime,policy,quantization-table,thresholds,type,type-{dejavu,ghostscript}}.xml)
-  options=('!emptydirs' libtool)
-
-  cd $_tarname
-  make DESTDIR="$pkgdir" install
-
-  rm "$pkgdir"/etc/$_relname/type-{apple,urw-base35,windows}.xml
-  rm "$pkgdir"/usr/lib/*.la
-
-  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 LICENSE NOTICE
-
-# Split 'imagemagick'
-  cd ../binpkg
-  mv "$pkgdir/usr/bin" usr/
-  mv "$pkgdir/usr/lib/perl5" usr/lib/
-  mv "$pkgdir/usr/share/man" usr/share/
-
-# Split docs
-  mv "$pkgdir/usr/share/doc" "$srcdir/docpkg/usr/share/"
-}
-
-package_imagemagick() {
-  depends=("libmagick=$pkgver-$pkgrel")
-  optdepends=('imagemagick-doc: manual and API docs')
-  options=('!emptydirs')
-
-  mv binpkg/* "$pkgdir"
-
-  find "$pkgdir/usr/lib/perl5" -name '*.so' -exec chrpath -d {} +
-
-# template start; name=perl-binary-module-dependency; version=1;
-if [[ $(find "$pkgdir/usr/lib/perl5/" -name "*.so") ]]; then
-_perlver_min=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]);')
-_perlver_max=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]+1);')
-depends+=("perl>=$_perlver_min" "perl<$_perlver_max")
-fi
-# template end;
-
-  cd $_tarname
-  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 LICENSE NOTICE
-}
-
-package_imagemagick-doc() {
-  pkgdesc+=" (manual and API docs)"
-  depends=()
-
-  mv docpkg/* "$pkgdir"
-
-  cd $_tarname
-  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 

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

2018-03-31 Thread Antonio Rojas via arch-commits
Date: Saturday, March 31, 2018 @ 22:10:59
  Author: arojas
Revision: 320770

Update to 7.0.7.28

Modified:
  imagemagick/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-03-31 21:03:29 UTC (rev 320769)
+++ PKGBUILD2018-03-31 22:10:59 UTC (rev 320770)
@@ -3,8 +3,8 @@
 
 pkgbase=imagemagick
 pkgname=(libmagick imagemagick imagemagick-doc)
-pkgver=7.0.7.27
-pkgrel=2
+pkgver=7.0.7.28
+pkgrel=1
 pkgdesc="An image viewing/manipulation program"
 url="https://www.imagemagick.org/;
 arch=(x86_64)
@@ -17,7 +17,7 @@
 _tarname=ImageMagick-${pkgver%.*}-${pkgver##*.}
 source=(https://www.imagemagick.org/download/$_tarname.tar.xz{,.asc}
 arch-fonts.diff)
-sha256sums=('543776f09d69e3ca29b1b83a9c0223185ba26bec673593840b4d7face6ea253b'
+sha256sums=('e8311c2dd536367808a633aa3f4f0f6b1a34d04ed06b3db59c21d43cab41d4ce'
 'SKIP'
 'a85b744c61b1b563743ecb7c7adad999d7ed9a8af816650e3ab9321b2b102e73')
 validpgpkeys=(D8272EF51DA223E4D05B466989AB63D48277377A)  # Lexie Parsimoniae


[arch-commits] Commit in libmtp/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2018-03-31 Thread Antonio Rojas via arch-commits
Date: Saturday, March 31, 2018 @ 23:19:09
  Author: arojas
Revision: 320777

archrelease: copy trunk to extra-x86_64

Added:
  libmtp/repos/extra-x86_64/PKGBUILD
(from rev 320776, libmtp/trunk/PKGBUILD)
Deleted:
  libmtp/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-03-31 23:18:35 UTC (rev 320776)
+++ PKGBUILD2018-03-31 23:19:09 UTC (rev 320777)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-# Contributor: Tom Gundersen 
-# Contributor: damir 
-# Contributor: Kevin Edmonds 
-
-pkgname=libmtp
-pkgver=1.1.14
-pkgrel=1
-pkgdesc="Library implementation of the Media Transfer Protocol"
-arch=(i686 x86_64)
-url="https://libmtp.sourceforge.net;
-license=(LGPL)
-depends=(libusb)
-source=("https://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
-sha256sums=('3817d3e296be8f1bc527385585780e70984e8e0d6a0d00349240d67e3df412e8'
-'SKIP')
-validpgpkeys=(7C4AFD61D8AAE7570796A5172209D6902F969C95) # Marcus Meißner 

-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --with-udev=/usr/lib/udev
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make -k check
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: libmtp/repos/extra-x86_64/PKGBUILD (from rev 320776, 
libmtp/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-03-31 23:19:09 UTC (rev 320777)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Contributor: Tom Gundersen 
+# Contributor: damir 
+# Contributor: Kevin Edmonds 
+
+pkgname=libmtp
+pkgver=1.1.15
+pkgrel=1
+pkgdesc="Library implementation of the Media Transfer Protocol"
+arch=(x86_64)
+url="http://libmtp.sourceforge.net;
+license=(LGPL)
+depends=(libusb)
+source=("https://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
+sha256sums=('d040900b46757e311b1fb3bfa8c05db09c8b6811e044bce8c88c9f3f6d3a3021'
+'SKIP')
+validpgpkeys=(7C4AFD61D8AAE7570796A5172209D6902F969C95) # Marcus Meißner 

+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --with-udev=/usr/lib/udev
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make -k check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}


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

2018-03-31 Thread Antonio Rojas via arch-commits
Date: Saturday, March 31, 2018 @ 23:18:35
  Author: arojas
Revision: 320776

Update to 1.1.15

Modified:
  libmtp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-03-31 23:06:18 UTC (rev 320775)
+++ PKGBUILD2018-03-31 23:18:35 UTC (rev 320776)
@@ -5,7 +5,7 @@
 # Contributor: Kevin Edmonds 
 
 pkgname=libmtp
-pkgver=1.1.14
+pkgver=1.1.15
 pkgrel=1
 pkgdesc="Library implementation of the Media Transfer Protocol"
 arch=(x86_64)
@@ -13,7 +13,7 @@
 license=(LGPL)
 depends=(libusb)
 
source=("https://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
-sha256sums=('3817d3e296be8f1bc527385585780e70984e8e0d6a0d00349240d67e3df412e8'
+sha256sums=('d040900b46757e311b1fb3bfa8c05db09c8b6811e044bce8c88c9f3f6d3a3021'
 'SKIP')
 validpgpkeys=(7C4AFD61D8AAE7570796A5172209D6902F969C95) # Marcus Meißner 

 


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

2018-03-31 Thread Antonio Rojas via arch-commits
Date: Saturday, March 31, 2018 @ 23:25:03
  Author: arojas
Revision: 320778

Update to 2.3.0

Modified:
  libqalculate/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-03-31 23:19:09 UTC (rev 320777)
+++ PKGBUILD2018-03-31 23:25:03 UTC (rev 320778)
@@ -3,8 +3,8 @@
 # Maintainer: Antonio Rojas 
 
 pkgname=libqalculate
-pkgver=2.2.1
-pkgrel=3
+pkgver=2.3.0
+pkgrel=1
 pkgdesc="Multi-purpose desktop calculator"
 arch=(x86_64)
 url="http://qalculate.github.io/;
@@ -13,7 +13,7 @@
 makedepends=(intltool)
 optdepends=('gnuplot: for plotting support')
 
source=(https://github.com/Qalculate/libqalculate/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz)
-sha256sums=('1752b6a046eaf84ee62a7dc8d2c874b538517956ce8affac80df09a3b55bef5d')
+sha256sums=('29335b91b5215dcc384396343b03b2bb99cf4e827b7084f84ac32e6a09661796')
 
 build() {
   cd $pkgname-$pkgver


[arch-commits] Commit in libqalculate/repos (staging-x86_64 staging-x86_64/PKGBUILD)

2018-03-31 Thread Antonio Rojas via arch-commits
Date: Saturday, March 31, 2018 @ 23:25:47
  Author: arojas
Revision: 320779

archrelease: copy trunk to staging-x86_64

Added:
  libqalculate/repos/staging-x86_64/
  libqalculate/repos/staging-x86_64/PKGBUILD
(from rev 320778, libqalculate/trunk/PKGBUILD)

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

Copied: libqalculate/repos/staging-x86_64/PKGBUILD (from rev 320778, 
libqalculate/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2018-03-31 23:25:47 UTC (rev 320779)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+# Maintainer: Antonio Rojas 
+
+pkgname=libqalculate
+pkgver=2.3.0
+pkgrel=1
+pkgdesc="Multi-purpose desktop calculator"
+arch=(x86_64)
+url="http://qalculate.github.io/;
+license=(GPL)
+depends=(libxml2 curl mpfr)
+makedepends=(intltool)
+optdepends=('gnuplot: for plotting support')
+source=(https://github.com/Qalculate/libqalculate/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz)
+sha256sums=('29335b91b5215dcc384396343b03b2bb99cf4e827b7084f84ac32e6a09661796')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in perl-data-uuid/repos/community-testing-x86_64 (2 files)

2018-03-31 Thread Fabio Castelli via arch-commits
Date: Sunday, April 1, 2018 @ 01:24:50
  Author: muflone
Revision: 313679

archrelease: copy trunk to community-testing-x86_64

Added:
  perl-data-uuid/repos/community-testing-x86_64/PKGBUILD
(from rev 313678, perl-data-uuid/trunk/PKGBUILD)
Deleted:
  perl-data-uuid/repos/community-testing-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-04-01 01:24:12 UTC (rev 313678)
+++ PKGBUILD2018-04-01 01:24:50 UTC (rev 313679)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Muflone http://www.muflone.com/contacts/english/
-
-pkgname=perl-data-uuid
-_perl_module=Data-UUID
-pkgver=1.221
-pkgrel=2
-pkgdesc="Globally/Universally Unique Identifiers (GUIDs/UUIDs)"
-arch=('x86_64')
-url="https://metacpan.org/release/${_perl_module};
-license=('BSD')
-depends=('perl')
-source=("http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/${_perl_module}-${pkgver}.tar.gz;)
-sha256sums=('3cc7b2a3a7b74b45a059e013f7fd878078500ea4b7269036f84556b022078667')
-options=('!emptydirs')
-
-build() {
-  cd "${_perl_module}-${pkgver}"
-  perl Makefile.PL
-  make
-}
-
-check() {
-  cd "${_perl_module}-${pkgver}"
-  make test
-}
-
-package() {
-  cd "${_perl_module}-${pkgver}"
-  make pure_install DESTDIR="${pkgdir}"
-  # Install license file
-  install -m 755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m 644 -t "${pkgdir}/usr/share/licenses/${pkgname}" "LICENSE"
-}

Copied: perl-data-uuid/repos/community-testing-x86_64/PKGBUILD (from rev 
313678, perl-data-uuid/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-04-01 01:24:50 UTC (rev 313679)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Muflone http://www.muflone.com/contacts/english/
+
+pkgname=perl-data-uuid
+_perl_module=Data-UUID
+pkgver=1.221
+pkgrel=2
+pkgdesc="Globally/Universally Unique Identifiers (GUIDs/UUIDs)"
+arch=('x86_64')
+url="https://metacpan.org/release/${_perl_module};
+license=('BSD')
+depends=('perl')
+source=("http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/${_perl_module}-${pkgver}.tar.gz;)
+sha256sums=('3cc7b2a3a7b74b45a059e013f7fd878078500ea4b7269036f84556b022078667')
+options=('!emptydirs')
+
+build() {
+  cd "${_perl_module}-${pkgver}"
+  perl Makefile.PL
+  make
+}
+
+check() {
+  cd "${_perl_module}-${pkgver}"
+  make test
+}
+
+package() {
+  cd "${_perl_module}-${pkgver}"
+  make pure_install DESTDIR="${pkgdir}"
+  # Install license file
+  install -m 755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m 644 -t "${pkgdir}/usr/share/licenses/${pkgname}" "LICENSE"
+}


[arch-commits] Commit in (4 files)

2018-03-31 Thread Fabio Castelli via arch-commits
Date: Sunday, April 1, 2018 @ 01:22:51
  Author: muflone
Revision: 313676

new package perl-data-uuid 1.221-2

Added:
  perl-data-uuid/
  perl-data-uuid/repos/
  perl-data-uuid/trunk/
  perl-data-uuid/trunk/PKGBUILD

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

Added: perl-data-uuid/trunk/PKGBUILD
===
--- perl-data-uuid/trunk/PKGBUILD   (rev 0)
+++ perl-data-uuid/trunk/PKGBUILD   2018-04-01 01:22:51 UTC (rev 313676)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Muflone http://www.muflone.com/contacts/english/
+
+pkgname=perl-data-uuid
+_perl_module=Data-UUID
+pkgver=1.221
+pkgrel=2
+pkgdesc="Globally/Universally Unique Identifiers (GUIDs/UUIDs)"
+arch=('x86_64')
+url="https://metacpan.org/release/${_perl_module};
+license=('BSD')
+depends=('perl')
+source=("http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/${_perl_module}-${pkgver}.tar.gz;)
+sha256sums=('3cc7b2a3a7b74b45a059e013f7fd878078500ea4b7269036f84556b022078667')
+options=('!emptydirs')
+
+build() {
+  cd "${_perl_module}-${pkgver}"
+  perl Makefile.PL
+  make
+}
+
+check() {
+  cd "${_perl_module}-${pkgver}"
+  make test
+}
+
+package() {
+  cd "${_perl_module}-${pkgver}"
+  make pure_install DESTDIR="${pkgdir}"
+  # Install license file
+  install -m 755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m 644 -t "${pkgdir}/usr/share/licenses/${pkgname}" "LICENSE"
+}


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

2018-03-31 Thread Jan Steffens via arch-commits
Date: Sunday, April 1, 2018 @ 01:26:50
  Author: heftig
Revision: 320801

archrelease: copy trunk to extra-x86_64

Added:
  gtk3/repos/extra-x86_64/PKGBUILD
(from rev 320800, gtk3/trunk/PKGBUILD)
  gtk3/repos/extra-x86_64/gtk-query-immodules-3.0.hook
(from rev 320800, gtk3/trunk/gtk-query-immodules-3.0.hook)
  gtk3/repos/extra-x86_64/gtk-update-icon-cache.hook
(from rev 320800, gtk3/trunk/gtk-update-icon-cache.hook)
  gtk3/repos/extra-x86_64/gtk-update-icon-cache.script
(from rev 320800, gtk3/trunk/gtk-update-icon-cache.script)
  gtk3/repos/extra-x86_64/gtk3.install
(from rev 320800, gtk3/trunk/gtk3.install)
  gtk3/repos/extra-x86_64/settings.ini
(from rev 320800, gtk3/trunk/settings.ini)
Deleted:
  gtk3/repos/extra-x86_64/PKGBUILD
  gtk3/repos/extra-x86_64/gtk-query-immodules-3.0.hook
  gtk3/repos/extra-x86_64/gtk-update-icon-cache.hook
  gtk3/repos/extra-x86_64/gtk-update-icon-cache.script
  gtk3/repos/extra-x86_64/gtk3.install
  gtk3/repos/extra-x86_64/settings.ini

--+
 PKGBUILD |  171 -
 gtk-query-immodules-3.0.hook |   22 ++---
 gtk-update-icon-cache.hook   |   26 +++---
 gtk-update-icon-cache.script |   20 ++--
 gtk3.install |6 -
 settings.ini |8 -
 6 files changed, 126 insertions(+), 127 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-04-01 01:26:19 UTC (rev 320800)
+++ PKGBUILD2018-04-01 01:26:50 UTC (rev 320801)
@@ -1,86 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Ionut Biru 
-
-pkgbase=gtk3
-pkgname=(gtk3 gtk-update-icon-cache)
-pkgver=3.22.29+4+gb485cf91b5
-pkgrel=1
-pkgdesc="GObject-based multi-platform GUI toolkit"
-arch=(x86_64)
-url="http://www.gtk.org/;
-depends=(atk cairo libxcursor libxinerama libxrandr libxi libepoxy gdk-pixbuf2 
dconf
- libxcomposite libxdamage pango shared-mime-info at-spi2-atk wayland 
libxkbcommon
- adwaita-icon-theme json-glib librsvg wayland-protocols 
desktop-file-utils mesa
- cantarell-fonts colord rest libcups libcanberra libcloudproviders)
-makedepends=(gobject-introspection gtk-doc git glib2-docs sassc)
-license=(LGPL)
-_commit=b485cf91b53cd21fad8b4ff35fef53e4d1a9f009  # gtk-3-22
-source=("git+https://gitlab.gnome.org/GNOME/gtk.git#commit=$_commit;
-settings.ini
-gtk-query-immodules-3.0.hook
-gtk-update-icon-cache.hook
-gtk-update-icon-cache.script)
-sha256sums=('SKIP'
-'01fc1d81dc82c4a052ac6e25bf9a04e7647267cc3017bc91f9ce3e63e5eb9202'
-'de46e5514ff39a7a65e01e485e874775ab1c0ad20b8e94ada43f4a6af1370845'
-'496064a9dd6214bd58f689dd817dbdc4d7f17d42a8c9940a87018c3f829ce308'
-'f1d3a0dbfd82f7339301abecdbe5f024337919b48bd0e09296bb0e79863b2541')
-
-pkgver() {
-  cd gtk
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd gtk
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd gtk
-
-  CXX=/bin/false ./configure --prefix=/usr \
---sysconfdir=/etc \
---localstatedir=/var \
---disable-schemas-compile \
---enable-cloudproviders \
---enable-x11-backend \
---enable-broadway-backend \
---enable-wayland-backend \
---enable-gtk-doc
-
-  #https://bugzilla.gnome.org/show_bug.cgi?id=655517
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-package_gtk3() {
-  depends+=(gtk-update-icon-cache)
-  provides=(gtk3-print-backends)
-  conflicts=(gtk3-print-backends)
-  replaces=("gtk3-print-backends<=3.22.26-1")
-  install=gtk3.install
-
-  cd gtk
-  make DESTDIR="$pkgdir" install
-
-  install -Dm644 ../settings.ini "$pkgdir/usr/share/gtk-3.0/settings.ini"
-  install -Dm644 ../gtk-query-immodules-3.0.hook 
"$pkgdir/usr/share/libalpm/hooks/gtk-query-immodules-3.0.hook"
-
-  # split this out to use with gtk2 too
-  rm "$pkgdir/usr/bin/gtk-update-icon-cache"
-}
-
-package_gtk-update-icon-cache() {
-  pkgdesc="GTK+ icon cache updater"
-  depends=(gdk-pixbuf2 librsvg hicolor-icon-theme)
-
-  cd gtk
-  install -D gtk/gtk-update-icon-cache "$pkgdir/usr/bin/gtk-update-icon-cache"
-  install -Dm644 ../gtk-update-icon-cache.hook 
"$pkgdir/usr/share/libalpm/hooks/gtk-update-icon-cache.hook"
-  install -D ../gtk-update-icon-cache.script 
"$pkgdir/usr/share/libalpm/scripts/gtk-update-icon-cache"
-}
-
-# vim:set et sw=2:

Copied: gtk3/repos/extra-x86_64/PKGBUILD (from rev 320800, gtk3/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-04-01 01:26:50 UTC (rev 320801)
@@ -0,0 +1,85 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Ionut Biru 
+
+pkgbase=gtk3
+pkgname=(gtk3 gtk-update-icon-cache)
+pkgver=3.22.29+60+ge42d8598ca
+pkgrel=1

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

2018-03-31 Thread Jan Steffens via arch-commits
Date: Sunday, April 1, 2018 @ 01:26:19
  Author: heftig
Revision: 320800

archrelease: copy trunk to staging-x86_64

Added:
  linux-zen/repos/staging-x86_64/
  linux-zen/repos/staging-x86_64/60-linux.hook
(from rev 320799, linux-zen/trunk/60-linux.hook)
  linux-zen/repos/staging-x86_64/90-linux.hook
(from rev 320799, linux-zen/trunk/90-linux.hook)
  linux-zen/repos/staging-x86_64/PKGBUILD
(from rev 320799, linux-zen/trunk/PKGBUILD)
  linux-zen/repos/staging-x86_64/config
(from rev 320799, linux-zen/trunk/config)
  linux-zen/repos/staging-x86_64/linux.install
(from rev 320799, linux-zen/trunk/linux.install)
  linux-zen/repos/staging-x86_64/linux.preset
(from rev 320799, linux-zen/trunk/linux.preset)

---+
 60-linux.hook |   12 
 90-linux.hook |   11 
 PKGBUILD  |  240 +
 config| 9552 
 linux.install |   10 
 linux.preset  |   14 
 6 files changed, 9839 insertions(+)

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


[arch-commits] Commit in perl-data-uuid/repos (2 files)

2018-03-31 Thread Fabio Castelli via arch-commits
Date: Sunday, April 1, 2018 @ 01:23:47
  Author: muflone
Revision: 313677

archrelease: copy trunk to community-testing-x86_64

Added:
  perl-data-uuid/repos/community-testing-x86_64/
  perl-data-uuid/repos/community-testing-x86_64/PKGBUILD
(from rev 313676, perl-data-uuid/trunk/PKGBUILD)

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

Copied: perl-data-uuid/repos/community-testing-x86_64/PKGBUILD (from rev 
313676, perl-data-uuid/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2018-04-01 01:23:47 UTC (rev 313677)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Muflone http://www.muflone.com/contacts/english/
+
+pkgname=perl-data-uuid
+_perl_module=Data-UUID
+pkgver=1.221
+pkgrel=2
+pkgdesc="Globally/Universally Unique Identifiers (GUIDs/UUIDs)"
+arch=('x86_64')
+url="https://metacpan.org/release/${_perl_module};
+license=('BSD')
+depends=('perl')
+source=("http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/${_perl_module}-${pkgver}.tar.gz;)
+sha256sums=('3cc7b2a3a7b74b45a059e013f7fd878078500ea4b7269036f84556b022078667')
+options=('!emptydirs')
+
+build() {
+  cd "${_perl_module}-${pkgver}"
+  perl Makefile.PL
+  make
+}
+
+check() {
+  cd "${_perl_module}-${pkgver}"
+  make test
+}
+
+package() {
+  cd "${_perl_module}-${pkgver}"
+  make pure_install DESTDIR="${pkgdir}"
+  # Install license file
+  install -m 755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m 644 -t "${pkgdir}/usr/share/licenses/${pkgname}" "LICENSE"
+}


[arch-commits] Commit in perl-data-uuid/trunk (PKGBUILD)

2018-03-31 Thread Fabio Castelli via arch-commits
Date: Sunday, April 1, 2018 @ 01:24:12
  Author: muflone
Revision: 313678

upgpkg: perl-data-uuid 1.221-2

Modified:
  perl-data-uuid/trunk/PKGBUILD (properties)

Index: perl-data-uuid/trunk/PKGBUILD
===
--- perl-data-uuid/trunk/PKGBUILD   2018-04-01 01:23:47 UTC (rev 313677)
+++ perl-data-uuid/trunk/PKGBUILD   2018-04-01 01:24:12 UTC (rev 313678)

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


[arch-commits] Commit in python-selenium/repos/community-x86_64 (PKGBUILD PKGBUILD)

2018-03-31 Thread Jelle van der Waa via arch-commits
Date: Saturday, March 31, 2018 @ 19:40:38
  Author: jelle
Revision: 313625

archrelease: copy trunk to community-x86_64

Added:
  python-selenium/repos/community-x86_64/PKGBUILD
(from rev 313624, python-selenium/trunk/PKGBUILD)
Deleted:
  python-selenium/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-03-31 19:40:25 UTC (rev 313624)
+++ PKGBUILD2018-03-31 19:40:38 UTC (rev 313625)
@@ -1,29 +0,0 @@
-# Maintainer: Jelle van der Waa 
-# Contributor: Aaron DeVore 
-
-pkgbase=python-selenium
-pkgname=('python-selenium' 'python2-selenium')
-pkgver=3.10.0
-pkgrel=1
-pkgdesc="Python binding for Selenium Remote Control"
-arch=('x86_64')
-url="http://pypi.python.org/pypi/selenium;
-license=('Apache')
-makedepends=('python-setuptools' 'python2-setuptools')
-optdepends=('geckodriver: Firefox driver support')
-source=("https://pypi.io/packages/source/s/selenium/selenium-$pkgver.tar.gz;)
-md5sums=('d93cde324ac34c2030c01b54c9fb93ff')
-
-package_python-selenium() {
-  depends=('python')
-  cd "$srcdir/selenium-$pkgver"
-  python setup.py install --root="$pkgdir/" --optimize=1
-}
-
-package_python2-selenium() {
-  depends=('python2')
-  cd "$srcdir/selenium-$pkgver"
-  python2 setup.py install --root="$pkgdir/" --optimize=1
-}
-
-# check() takes too many dependencies to run

Copied: python-selenium/repos/community-x86_64/PKGBUILD (from rev 313624, 
python-selenium/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-03-31 19:40:38 UTC (rev 313625)
@@ -0,0 +1,29 @@
+# Maintainer: Jelle van der Waa 
+# Contributor: Aaron DeVore 
+
+pkgbase=python-selenium
+pkgname=('python-selenium' 'python2-selenium')
+pkgver=3.11.0
+pkgrel=1
+pkgdesc="Python binding for Selenium Remote Control"
+arch=('x86_64')
+url="http://pypi.python.org/pypi/selenium;
+license=('Apache')
+makedepends=('python-setuptools' 'python2-setuptools')
+optdepends=('geckodriver: Firefox driver support')
+source=("https://pypi.io/packages/source/s/selenium/selenium-$pkgver.tar.gz;)
+md5sums=('c565de302e12ffaf7e59c1e47b45bbef')
+
+package_python-selenium() {
+  depends=('python')
+  cd "$srcdir/selenium-$pkgver"
+  python setup.py install --root="$pkgdir/" --optimize=1
+}
+
+package_python2-selenium() {
+  depends=('python2')
+  cd "$srcdir/selenium-$pkgver"
+  python2 setup.py install --root="$pkgdir/" --optimize=1
+}
+
+# check() takes too many dependencies to run


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

2018-03-31 Thread Jelle van der Waa via arch-commits
Date: Saturday, March 31, 2018 @ 19:40:25
  Author: jelle
Revision: 313624

upgpkg: python-selenium 3.11.0-1

Modified:
  python-selenium/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-03-31 19:22:50 UTC (rev 313623)
+++ PKGBUILD2018-03-31 19:40:25 UTC (rev 313624)
@@ -3,7 +3,7 @@
 
 pkgbase=python-selenium
 pkgname=('python-selenium' 'python2-selenium')
-pkgver=3.10.0
+pkgver=3.11.0
 pkgrel=1
 pkgdesc="Python binding for Selenium Remote Control"
 arch=('x86_64')
@@ -12,7 +12,7 @@
 makedepends=('python-setuptools' 'python2-setuptools')
 optdepends=('geckodriver: Firefox driver support')
 source=("https://pypi.io/packages/source/s/selenium/selenium-$pkgver.tar.gz;)
-md5sums=('d93cde324ac34c2030c01b54c9fb93ff')
+md5sums=('c565de302e12ffaf7e59c1e47b45bbef')
 
 package_python-selenium() {
   depends=('python')


[arch-commits] Commit in kactivitymanagerd/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2018-03-31 Thread Antonio Rojas via arch-commits
Date: Saturday, March 31, 2018 @ 20:52:15
  Author: arojas
Revision: 320727

archrelease: copy trunk to extra-x86_64

Added:
  kactivitymanagerd/repos/extra-x86_64/PKGBUILD
(from rev 320726, kactivitymanagerd/trunk/PKGBUILD)
Deleted:
  kactivitymanagerd/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-03-31 20:50:04 UTC (rev 320726)
+++ PKGBUILD2018-03-31 20:52:15 UTC (rev 320727)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-# Maintainer: Felix Yan 
-
-pkgname=kactivitymanagerd
-pkgver=5.12.4
-pkgrel=1
-pkgdesc="System service to manage user's activities and track the usage 
patterns"
-arch=(x86_64)
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=(LGPL)
-depends=(kio)
-makedepends=(extra-cmake-modules boost python)
-groups=(plasma)
-source=("https://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('8fdde5f82b3f1ad5dc8bdeade3f196301a6bc1ebcac2a81eca2400f49b8996d2'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '0AAC775BB6437A8D9AF7A3ACFE0784117FBCE11D'  # Bhushan Shah 

-  'D07BD8662C56CB291B316EB2F5675605C74E02CF'  # David Edmundson
-  '1FA881591C26B276D7A5518EEAAF29B42A678C20') # Marco Martin 

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

Copied: kactivitymanagerd/repos/extra-x86_64/PKGBUILD (from rev 320726, 
kactivitymanagerd/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-03-31 20:52:15 UTC (rev 320727)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+
+pkgname=kactivitymanagerd
+pkgver=5.12.4
+pkgrel=1
+pkgdesc="System service to manage user's activities and track the usage 
patterns"
+arch=(x86_64)
+url='https://www.kde.org/workspaces/plasmadesktop/'
+license=(LGPL)
+depends=(kio)
+makedepends=(extra-cmake-modules boost python)
+groups=(plasma)
+source=("https://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('8fdde5f82b3f1ad5dc8bdeade3f196301a6bc1ebcac2a81eca2400f49b8996d2'
+'SKIP')
+validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
+  '0AAC775BB6437A8D9AF7A3ACFE0784117FBCE11D'  # Bhushan Shah 

+  'D07BD8662C56CB291B316EB2F5675605C74E02CF'  # David Edmundson
+  '1FA881591C26B276D7A5518EEAAF29B42A678C20') # Marco Martin 

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


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

2018-03-31 Thread Baptiste Jonglez via arch-commits
Date: Saturday, March 31, 2018 @ 21:52:53
  Author: zorun
Revision: 313653

upgpkg: remake 4.2.1+dbg1.4-1

Modified:
  remake/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-03-31 21:51:17 UTC (rev 313652)
+++ PKGBUILD2018-03-31 21:52:53 UTC (rev 313653)
@@ -2,7 +2,8 @@
 # Based on extra/make
 
 pkgname=remake
-pkgver=4.2.1+dbg1.1
+_remakever="dbg-1.4"
+pkgver=4.2.1+dbg1.4
 pkgrel=1
 pkgdesc="Enhanced GNU Make - tracing, error reporting, debugging, profiling 
and more"
 arch=('x86_64')
@@ -9,22 +10,22 @@
 url="http://bashdb.sourceforge.net/remake/;
 license=('GPL3')
 depends=('glibc' 'guile')
-source=("https://sourceforge.net/projects/bashdb/files/remake/4.2%2Bdbg-1.1/remake-4.2.1%2Bdbg1.1.tar.bz2;)
-sha256sums=('fdfbbceb8d1a20062d060a3498d5c86151ec1b5d9b5145379a1e6fba27f13d7b')
+source=("https://sourceforge.net/projects/bashdb/files/remake/4.2%2B${_remakever}/remake-4.2.1%2B${_remakever}.tar.bz2;)
+sha256sums=('55df3b2586ab90ac0983a049f1911c4a1d9b68f7715c69768fbb0405e96a0e7b')
 
 prepare() {
-  cd ${pkgname}-${pkgver}
+  cd "${pkgname}-4.2.1+${_remakever}"
   autoreconf -fi
 }
 
 build() {
-  cd ${pkgname}-${pkgver}
+  cd "${pkgname}-4.2.1+${_remakever}"
   ./configure --prefix=/usr
   make
 }
 
 package() {
-  cd ${pkgname}-${pkgver}
+  cd "${pkgname}-4.2.1+${_remakever}"
   make DESTDIR=${pkgdir} install
-  mv "$pkgdir/usr/include/gnumake.h" "$pkgdir/usr/include/remake.h"
+  rm "$pkgdir"/usr/share/info/make.info{,-1,-2}
 }


[arch-commits] Commit in remake/repos/community-x86_64 (PKGBUILD PKGBUILD)

2018-03-31 Thread Baptiste Jonglez via arch-commits
Date: Saturday, March 31, 2018 @ 21:53:08
  Author: zorun
Revision: 313654

archrelease: copy trunk to community-x86_64

Added:
  remake/repos/community-x86_64/PKGBUILD
(from rev 313653, remake/trunk/PKGBUILD)
Deleted:
  remake/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-03-31 21:52:53 UTC (rev 313653)
+++ PKGBUILD2018-03-31 21:53:08 UTC (rev 313654)
@@ -1,30 +0,0 @@
-# Maintainer: Baptiste Jonglez 
-# Based on extra/make
-
-pkgname=remake
-pkgver=4.2.1+dbg1.1
-pkgrel=1
-pkgdesc="Enhanced GNU Make - tracing, error reporting, debugging, profiling 
and more"
-arch=('i686' 'x86_64')
-url="http://bashdb.sourceforge.net/remake/;
-license=('GPL3')
-depends=('glibc' 'guile')
-source=("https://sourceforge.net/projects/bashdb/files/remake/4.2%2Bdbg-1.1/remake-4.2.1%2Bdbg1.1.tar.bz2;)
-sha256sums=('fdfbbceb8d1a20062d060a3498d5c86151ec1b5d9b5145379a1e6fba27f13d7b')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-  autoreconf -fi
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-  mv "$pkgdir/usr/include/gnumake.h" "$pkgdir/usr/include/remake.h"
-}

Copied: remake/repos/community-x86_64/PKGBUILD (from rev 313653, 
remake/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-03-31 21:53:08 UTC (rev 313654)
@@ -0,0 +1,31 @@
+# Maintainer: Baptiste Jonglez 
+# Based on extra/make
+
+pkgname=remake
+_remakever="dbg-1.4"
+pkgver=4.2.1+dbg1.4
+pkgrel=1
+pkgdesc="Enhanced GNU Make - tracing, error reporting, debugging, profiling 
and more"
+arch=('x86_64')
+url="http://bashdb.sourceforge.net/remake/;
+license=('GPL3')
+depends=('glibc' 'guile')
+source=("https://sourceforge.net/projects/bashdb/files/remake/4.2%2B${_remakever}/remake-4.2.1%2B${_remakever}.tar.bz2;)
+sha256sums=('55df3b2586ab90ac0983a049f1911c4a1d9b68f7715c69768fbb0405e96a0e7b')
+
+prepare() {
+  cd "${pkgname}-4.2.1+${_remakever}"
+  autoreconf -fi
+}
+
+build() {
+  cd "${pkgname}-4.2.1+${_remakever}"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${pkgname}-4.2.1+${_remakever}"
+  make DESTDIR=${pkgdir} install
+  rm "$pkgdir"/usr/share/info/make.info{,-1,-2}
+}


[arch-commits] Commit in qbs/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2018-03-31 Thread Antonio Rojas via arch-commits
Date: Saturday, March 31, 2018 @ 22:15:05
  Author: arojas
Revision: 320773

archrelease: copy trunk to extra-x86_64

Added:
  qbs/repos/extra-x86_64/PKGBUILD
(from rev 320772, qbs/trunk/PKGBUILD)
Deleted:
  qbs/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-03-31 22:14:35 UTC (rev 320772)
+++ PKGBUILD2018-03-31 22:15:05 UTC (rev 320773)
@@ -1,33 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Maintainer: Antonio Rojas 
-# Contributor: Donald Carr 
-# Contributor: Jake Petroules 
-
-pkgname=qbs
-pkgver=1.11.0
-pkgrel=2
-pkgdesc='Cross platform build tool'
-arch=(x86_64)
-url='https://wiki.qt.io/Qbs'
-license=(LGPL)
-depends=(qt5-script)
-source=(http://download.qt.io/official_releases/qbs/${pkgver}/qbs-src-${pkgver}.tar.gz)
-sha256sums=('6ce30c468e688f6843468324a34a7191409b471c3ff6f3e834ef8bfa7b3467cd')
-
-build() {
-  cd $pkgname-src-$pkgver
-  qmake QBS_INSTALL_PREFIX=/usr \
-CONFIG+=qbs_enable_project_file_updates \
-QBS_LIBEXEC_INSTALL_DIR=/usr/lib/qbs \
-qbs.pro
-  make
-}
-
-package() {
-  cd $pkgname-src-$pkgver
-  INSTALL_ROOT="$pkgdir" make install
-
-  # For some reason they don't install all the headers so we'll have to do that
-  # by hand.
-  cp src/lib/corelib/tools/*.h "$pkgdir"/usr/include/qbs/tools/
-}

Copied: qbs/repos/extra-x86_64/PKGBUILD (from rev 320772, qbs/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-03-31 22:15:05 UTC (rev 320773)
@@ -0,0 +1,35 @@
+# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Antonio Rojas 
+# Contributor: Donald Carr 
+# Contributor: Jake Petroules 
+
+pkgname=qbs
+pkgver=1.11.0
+pkgrel=3
+pkgdesc='Cross platform build tool'
+arch=(x86_64)
+url='https://wiki.qt.io/Qbs'
+license=(LGPL)
+depends=(qt5-script)
+source=(http://download.qt.io/official_releases/qbs/${pkgver}/qbs-src-${pkgver}.tar.gz)
+sha256sums=('6ce30c468e688f6843468324a34a7191409b471c3ff6f3e834ef8bfa7b3467cd')
+
+build() {
+  cd $pkgname-src-$pkgver
+  qmake QBS_INSTALL_PREFIX=/usr \
+CONFIG+=qbs_enable_project_file_updates \
+QBS_LIBEXEC_INSTALL_DIR=/usr/lib/qbs \
+QBS_LIBEXEC_DESTDIR=../../../lib/qbs \
+QBS_RELATIVE_LIBEXEC_PATH=../lib/qbs \
+qbs.pro
+  make
+}
+
+package() {
+  cd $pkgname-src-$pkgver
+  INSTALL_ROOT="$pkgdir" make install
+
+  # For some reason they don't install all the headers so we'll have to do that
+  # by hand.
+  cp src/lib/corelib/tools/*.h "$pkgdir"/usr/include/qbs/tools/
+}


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

2018-03-31 Thread Antonio Rojas via arch-commits
Date: Saturday, March 31, 2018 @ 22:14:35
  Author: arojas
Revision: 320772

Fix libexec (FS#58036)

Modified:
  qbs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-03-31 22:11:24 UTC (rev 320771)
+++ PKGBUILD2018-03-31 22:14:35 UTC (rev 320772)
@@ -5,7 +5,7 @@
 
 pkgname=qbs
 pkgver=1.11.0
-pkgrel=2
+pkgrel=3
 pkgdesc='Cross platform build tool'
 arch=(x86_64)
 url='https://wiki.qt.io/Qbs'
@@ -19,6 +19,8 @@
   qmake QBS_INSTALL_PREFIX=/usr \
 CONFIG+=qbs_enable_project_file_updates \
 QBS_LIBEXEC_INSTALL_DIR=/usr/lib/qbs \
+QBS_LIBEXEC_DESTDIR=../../../lib/qbs \
+QBS_RELATIVE_LIBEXEC_PATH=../lib/qbs \
 qbs.pro
   make
 }


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

2018-03-31 Thread Antonio Rojas via arch-commits
Date: Saturday, March 31, 2018 @ 23:21:20
  Author: arojas
Revision: 313663

Update to 14.29.12

Modified:
  jmol/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-03-31 23:16:31 UTC (rev 313662)
+++ PKGBUILD2018-03-31 23:21:20 UTC (rev 313663)
@@ -3,7 +3,7 @@
 # Contributor: James Spencer 
 
 pkgname=jmol
-pkgver=14.29.10
+pkgver=14.29.12
 pkgrel=1
 pkgdesc="a Java 3D viewer for chemical structures"
 arch=(any)
@@ -12,7 +12,7 @@
 depends=(java-runtime)
 makedepends=(unzip)
 
source=("https://sourceforge.net/projects/jmol/files/Jmol/Version%20${pkgver%.*}/Jmol%20$pkgver/Jmol-$pkgver-binary.tar.gz;)
-sha256sums=('7f9a9bb5d2430779eb43cc11823248d936a5a712fceddc3a01bab76c79a1512e')
+sha256sums=('7b8d89aea3607fe1f6551688bbc81cd0571b3e19c3886933d456c972aa4ab8d9')
 
 package() {
   cd $pkgname-$pkgver


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

2018-03-31 Thread Antonio Rojas via arch-commits
Date: Saturday, March 31, 2018 @ 23:21:52
  Author: arojas
Revision: 313664

archrelease: copy trunk to community-any

Added:
  jmol/repos/community-any/PKGBUILD
(from rev 313663, jmol/trunk/PKGBUILD)
Deleted:
  jmol/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-03-31 23:21:20 UTC (rev 313663)
+++ PKGBUILD2018-03-31 23:21:52 UTC (rev 313664)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-# Contributor: James Spencer 
-
-pkgname=jmol
-pkgver=14.29.10
-pkgrel=1
-pkgdesc="a Java 3D viewer for chemical structures"
-arch=(any)
-url="https://jmol.sourceforge.net;
-license=(LGPL)
-depends=(java-runtime)
-makedepends=(unzip)
-source=("https://sourceforge.net/projects/jmol/files/Jmol/Version%20${pkgver%.*}/Jmol%20$pkgver/Jmol-$pkgver-binary.tar.gz;)
-sha256sums=('7f9a9bb5d2430779eb43cc11823248d936a5a712fceddc3a01bab76c79a1512e')
-
-package() {
-  cd $pkgname-$pkgver
-
-  mkdir -p "$pkgdir"/usr/share/$pkgname
-  mkdir -p "$pkgdir"/usr/bin
-
-  unzip jsmol.zip -d "$pkgdir"/usr/share/
-  rm jsmol.zip
-
-  cp *.jar jmol.sh "$pkgdir"/usr/share/$pkgname
-  ln -s /usr/share/$pkgname/$pkgname.sh "$pkgdir"/usr/bin/$pkgname
-}

Copied: jmol/repos/community-any/PKGBUILD (from rev 313663, jmol/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-03-31 23:21:52 UTC (rev 313664)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Contributor: James Spencer 
+
+pkgname=jmol
+pkgver=14.29.12
+pkgrel=1
+pkgdesc="a Java 3D viewer for chemical structures"
+arch=(any)
+url="https://jmol.sourceforge.net;
+license=(LGPL)
+depends=(java-runtime)
+makedepends=(unzip)
+source=("https://sourceforge.net/projects/jmol/files/Jmol/Version%20${pkgver%.*}/Jmol%20$pkgver/Jmol-$pkgver-binary.tar.gz;)
+sha256sums=('7b8d89aea3607fe1f6551688bbc81cd0571b3e19c3886933d456c972aa4ab8d9')
+
+package() {
+  cd $pkgname-$pkgver
+
+  mkdir -p "$pkgdir"/usr/share/$pkgname
+  mkdir -p "$pkgdir"/usr/bin
+
+  unzip jsmol.zip -d "$pkgdir"/usr/share/
+  rm jsmol.zip
+
+  cp *.jar jmol.sh "$pkgdir"/usr/share/$pkgname
+  ln -s /usr/share/$pkgname/$pkgname.sh "$pkgdir"/usr/bin/$pkgname
+}


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

2018-03-31 Thread Antonio Rojas via arch-commits
Date: Saturday, March 31, 2018 @ 23:39:03
  Author: arojas
Revision: 320785

archrelease: copy trunk to staging-x86_64

Added:
  cantor/repos/staging-x86_64/
  cantor/repos/staging-x86_64/PKGBUILD
(from rev 320784, cantor/trunk/PKGBUILD)
  cantor/repos/staging-x86_64/cantor-julia-0.6.patch
(from rev 320784, cantor/trunk/cantor-julia-0.6.patch)

+
 PKGBUILD   |   53 +++
 cantor-julia-0.6.patch |   14 
 2 files changed, 67 insertions(+)

Copied: cantor/repos/staging-x86_64/PKGBUILD (from rev 320784, 
cantor/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2018-03-31 23:39:03 UTC (rev 320785)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=cantor
+pkgver=17.12.3
+pkgrel=2
+pkgdesc="KDE Frontend to Mathematical Software"
+url="https://kde.org/applications/education/cantor/;
+arch=(x86_64)
+license=(GPL LGPL FDL)
+groups=(kde-applications kdeedu)
+depends=(analitza libspectre kpty ktexteditor knewstuff libqalculate 
hicolor-icon-theme)
+makedepends=(extra-cmake-modules python python2 kdoctools luajit r julia)
+optdepends=('maxima: Maxima backend'
+'octave: Octave backend'
+'r: R backend'
+'luajit: LUA backend'
+'python: Python 3 backend'
+   'python2: Python 2 backend'
+'sagemath: SageMath backend'
+'julia: Julia backend')
+source=("https://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig}
 cantor-julia-0.6.patch)
+sha256sums=('5c0cd0e73bea75c234c011baa850ba208739dd40bc29f12209baec4d4a5d5022'
+'SKIP'
+'0d57a2edd7eb2c156ff0dee6c67b6e5679d68f55f2426e77c92f25c2ec3b1f61')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

+  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck 

+
+prepare() {
+  mkdir -p build
+
+  cd $pkgname-$pkgver
+# fix build with julia 0.6
+  patch -p1 -i ../cantor-julia-0.6.patch
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF \
+-DPYTHON_INCLUDE_DIR=/usr/include/python2.7 \
+-DPYTHON_LIBRARY=/usr/lib/libpython2.7.so
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Copied: cantor/repos/staging-x86_64/cantor-julia-0.6.patch (from rev 320784, 
cantor/trunk/cantor-julia-0.6.patch)
===
--- staging-x86_64/cantor-julia-0.6.patch   (rev 0)
+++ staging-x86_64/cantor-julia-0.6.patch   2018-03-31 23:39:03 UTC (rev 
320785)
@@ -0,0 +1,14 @@
+diff --git a/src/backends/julia/juliaserver/juliaserver.cpp 
b/src/backends/julia/juliaserver/juliaserver.cpp
+index dc8a48e5..91c2c338 100644
+--- a/src/backends/julia/juliaserver/juliaserver.cpp
 b/src/backends/julia/juliaserver/juliaserver.cpp
+@@ -40,7 +40,7 @@ JuliaServer::~JuliaServer()
+ void JuliaServer::login(const QString ) const
+ {
+ QString dir_path = QFileInfo(path).dir().absolutePath();
+-jl_init(dir_path.toLatin1().constData());
++jl_init_with_image(dir_path.toLatin1().constData(), NULL);
+ }
+ 
+ void JuliaServer::runJuliaCommand(const QString )
+


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

2018-03-31 Thread Antonio Rojas via arch-commits
Date: Saturday, March 31, 2018 @ 23:38:20
  Author: arojas
Revision: 320784

libqalculate 2.3.0 rebuild

Modified:
  cantor/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-03-31 23:36:15 UTC (rev 320783)
+++ PKGBUILD2018-03-31 23:38:20 UTC (rev 320784)
@@ -5,7 +5,7 @@
 
 pkgname=cantor
 pkgver=17.12.3
-pkgrel=1
+pkgrel=2
 pkgdesc="KDE Frontend to Mathematical Software"
 url="https://kde.org/applications/education/cantor/;
 arch=(x86_64)


[arch-commits] Commit in perl-filesys-df/trunk (PKGBUILD)

2018-03-31 Thread Fabio Castelli via arch-commits
Date: Sunday, April 1, 2018 @ 01:08:59
  Author: muflone
Revision: 313674

upgpkg: perl-filesys-df 0.92-5

Modified:
  perl-filesys-df/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-04-01 01:05:40 UTC (rev 313673)
+++ PKGBUILD2018-04-01 01:08:59 UTC (rev 313674)
@@ -17,17 +17,17 @@
 options=('!emptydirs')
 
 build() {
-   cd "${_perl_module}-${pkgver}"
-   perl Makefile.PL
-   make
+  cd "${_perl_module}-${pkgver}"
+  perl Makefile.PL
+  make
 }
 
 check() {
-   cd "${_perl_module}-${pkgver}"
-   make test
+  cd "${_perl_module}-${pkgver}"
+  make test
 }
 
 package() {
-   cd "${_perl_module}-${pkgver}"
-   make pure_install DESTDIR="${pkgdir}"
+  cd "${_perl_module}-${pkgver}"
+  make pure_install DESTDIR="${pkgdir}"
 }


[arch-commits] Commit in perl-filesys-df/repos/community-testing-x86_64 (2 files)

2018-03-31 Thread Fabio Castelli via arch-commits
Date: Sunday, April 1, 2018 @ 01:47:40
  Author: muflone
Revision: 313683

archrelease: copy trunk to community-testing-x86_64

Added:
  perl-filesys-df/repos/community-testing-x86_64/PKGBUILD
(from rev 313682, perl-filesys-df/trunk/PKGBUILD)
Deleted:
  perl-filesys-df/repos/community-testing-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-04-01 01:44:33 UTC (rev 313682)
+++ PKGBUILD2018-04-01 01:47:40 UTC (rev 313683)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Muflone http://www.muflone.com/contacts/english/
-# Contributor: Ian Guthrie 
-# Contributor: der_FeniX 
-
-pkgname=perl-filesys-df
-_perl_namespace=Filesys
-_perl_module=Df
-pkgver=0.92
-pkgrel=6
-pkgdesc="Perl extension for filesystem disk space information"
-arch=('x86_64')
-url="https://metacpan.org/release/${_perl_module};
-license=('PerlArtistic' 'GPL')
-depends=('perl')
-source=("https://www.cpan.org/modules/by-module/${_perl_namespace}/${_perl_namespace}-${_perl_module}-${pkgver}.tar.gz;)
-sha256sums=('fe89cbb427e0e05f1cd97c2dd6d3866ac6b21bc7a85734ede159bdc35479552a')
-options=('!emptydirs')
-
-build() {
-  cd "${_perl_namespace}-${_perl_module}-${pkgver}"
-  perl Makefile.PL
-  make
-}
-
-check() {
-  cd "${_perl_namespace}-${_perl_module}-${pkgver}"
-  make test
-}
-
-package() {
-  cd "${_perl_namespace}-${_perl_module}-${pkgver}"
-  make pure_install DESTDIR="${pkgdir}"
-}

Copied: perl-filesys-df/repos/community-testing-x86_64/PKGBUILD (from rev 
313682, perl-filesys-df/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-04-01 01:47:40 UTC (rev 313683)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Muflone http://www.muflone.com/contacts/english/
+# Contributor: Ian Guthrie 
+# Contributor: der_FeniX 
+
+pkgname=perl-filesys-df
+_perl_namespace=Filesys
+_perl_module=Df
+pkgver=0.92
+pkgrel=6
+pkgdesc="Perl extension for filesystem disk space information"
+arch=('x86_64')
+url="https://metacpan.org/release/${_perl_namespace}-${_perl_module};
+license=('PerlArtistic' 'GPL')
+depends=('perl')
+source=("https://www.cpan.org/modules/by-module/${_perl_namespace}/${_perl_namespace}-${_perl_module}-${pkgver}.tar.gz;)
+sha256sums=('fe89cbb427e0e05f1cd97c2dd6d3866ac6b21bc7a85734ede159bdc35479552a')
+options=('!emptydirs')
+
+build() {
+  cd "${_perl_namespace}-${_perl_module}-${pkgver}"
+  perl Makefile.PL
+  make
+}
+
+check() {
+  cd "${_perl_namespace}-${_perl_module}-${pkgver}"
+  make test
+}
+
+package() {
+  cd "${_perl_namespace}-${_perl_module}-${pkgver}"
+  make pure_install DESTDIR="${pkgdir}"
+}


[arch-commits] Commit in perl-data-uuid/repos/community-testing-x86_64 (2 files)

2018-03-31 Thread Fabio Castelli via arch-commits
Date: Sunday, April 1, 2018 @ 01:55:04
  Author: muflone
Revision: 313685

archrelease: copy trunk to community-testing-x86_64

Added:
  perl-data-uuid/repos/community-testing-x86_64/PKGBUILD
(from rev 313684, perl-data-uuid/trunk/PKGBUILD)
Deleted:
  perl-data-uuid/repos/community-testing-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-04-01 01:52:45 UTC (rev 313684)
+++ PKGBUILD2018-04-01 01:55:04 UTC (rev 313685)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Muflone http://www.muflone.com/contacts/english/
-
-pkgname=perl-data-uuid
-_perl_module=Data-UUID
-pkgver=1.221
-pkgrel=2
-pkgdesc="Globally/Universally Unique Identifiers (GUIDs/UUIDs)"
-arch=('x86_64')
-url="https://metacpan.org/release/${_perl_module};
-license=('BSD')
-depends=('perl')
-source=("http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/${_perl_module}-${pkgver}.tar.gz;)
-sha256sums=('3cc7b2a3a7b74b45a059e013f7fd878078500ea4b7269036f84556b022078667')
-options=('!emptydirs')
-
-build() {
-  cd "${_perl_module}-${pkgver}"
-  perl Makefile.PL
-  make
-}
-
-check() {
-  cd "${_perl_module}-${pkgver}"
-  make test
-}
-
-package() {
-  cd "${_perl_module}-${pkgver}"
-  make pure_install DESTDIR="${pkgdir}"
-  # Install license file
-  install -m 755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m 644 -t "${pkgdir}/usr/share/licenses/${pkgname}" "LICENSE"
-}

Copied: perl-data-uuid/repos/community-testing-x86_64/PKGBUILD (from rev 
313684, perl-data-uuid/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-04-01 01:55:04 UTC (rev 313685)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Muflone http://www.muflone.com/contacts/english/
+
+pkgname=perl-data-uuid
+_perl_namespace=Data
+_perl_module=UUID
+pkgver=1.221
+pkgrel=3
+pkgdesc="Globally/Universally Unique Identifiers (GUIDs/UUIDs)"
+arch=('x86_64')
+url="https://metacpan.org/release/${_perl_namespace}-${_perl_module};
+license=('BSD')
+depends=('perl')
+source=("https://www.cpan.org/modules/by-module/${_perl_namespace}/${_perl_namespace}-${_perl_module}-${pkgver}.tar.gz;)
+sha256sums=('3cc7b2a3a7b74b45a059e013f7fd878078500ea4b7269036f84556b022078667')
+options=('!emptydirs')
+
+build() {
+  cd "${_perl_namespace}-${_perl_module}-${pkgver}"
+  perl Makefile.PL
+  make
+}
+
+check() {
+  cd "${_perl_namespace}-${_perl_module}-${pkgver}"
+  make test
+}
+
+package() {
+  cd "${_perl_namespace}-${_perl_module}-${pkgver}"
+  make pure_install DESTDIR="${pkgdir}"
+  # Install license file
+  install -m 755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m 644 -t "${pkgdir}/usr/share/licenses/${pkgname}" "LICENSE"
+}


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

2018-03-31 Thread David Runge via arch-commits
Date: Saturday, March 31, 2018 @ 20:25:17
  Author: dvzrv
Revision: 313630

upgpkg: carla 1.9.8-9

Adding ntk support to zynaddsubfx banks.

Modified:
  carla/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-03-31 20:05:40 UTC (rev 313629)
+++ PKGBUILD2018-03-31 20:25:17 UTC (rev 313630)
@@ -5,14 +5,16 @@
 _name=Carla
 pkgname=carla
 pkgver=1.9.8
-pkgrel=8
+pkgrel=9
 pkgdesc="Audio Plugin Host"
 arch=('x86_64')
 url="https://kxstudio.linuxaudio.org/Applications:Carla;
 license=('GPL2')
 groups=('pro-audio')
-depends=('file' 'fftw' 'fluidsynth' 'liblo' 'linuxsampler' 'mxml' 'projectm' 
'python-pyqt5' 'qt5-svg')
-makedepends=('gtk2' 'gtk3' 'pulseaudio' 'python-pyliblo' 'python-pyqt5' 
'python-rdflib' 'qt4' 'qt5-svg' 'zynaddsubfx')
+depends=('file' 'fftw' 'fluidsynth' 'liblo' 'linuxsampler' 'mxml' 'ntk'
+'projectm' 'python-pyqt5' 'qt5-svg')
+makedepends=('gtk2' 'gtk3' 'pulseaudio' 'python-pyliblo' 'python-pyqt5'
+'python-rdflib' 'qt4' 'qt5-svg' 'zynaddsubfx')
 optdepends=('gtk2: LV2 GTK2 UI support'
 'gtk3: LV2 GTK3 UI support'
 'python-pyliblo: OSC support'
@@ -35,8 +37,11 @@
 
 package() {
   cd "${pkgname}-${pkgver}"
-  make DEFAULT_QT=5 DESTDIR="${pkgdir}/" PREFIX=/usr install
-  install -vDm644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md"
+  make DEFAULT_QT=5 \
+   DESTDIR="${pkgdir}/" \
+   PREFIX=/usr \
+   install
+  install -vDm 644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md"
 }
 
 # vim:set ts=2 sw=2 et:


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

2018-03-31 Thread David Runge via arch-commits
Date: Saturday, March 31, 2018 @ 20:25:27
  Author: dvzrv
Revision: 313631

archrelease: copy trunk to community-testing-x86_64

Added:
  carla/repos/community-testing-x86_64/
  carla/repos/community-testing-x86_64/PKGBUILD
(from rev 313630, carla/trunk/PKGBUILD)

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

Copied: carla/repos/community-testing-x86_64/PKGBUILD (from rev 313630, 
carla/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2018-03-31 20:25:27 UTC (rev 313631)
@@ -0,0 +1,47 @@
+# Maintainer: David Runge 
+# Contributor: Llewelyn Trahaearn 
+# Contributor: falkTX 
+
+_name=Carla
+pkgname=carla
+pkgver=1.9.8
+pkgrel=9
+pkgdesc="Audio Plugin Host"
+arch=('x86_64')
+url="https://kxstudio.linuxaudio.org/Applications:Carla;
+license=('GPL2')
+groups=('pro-audio')
+depends=('file' 'fftw' 'fluidsynth' 'liblo' 'linuxsampler' 'mxml' 'ntk'
+'projectm' 'python-pyqt5' 'qt5-svg')
+makedepends=('gtk2' 'gtk3' 'pulseaudio' 'python-pyliblo' 'python-pyqt5'
+'python-rdflib' 'qt4' 'qt5-svg' 'zynaddsubfx')
+optdepends=('gtk2: LV2 GTK2 UI support'
+'gtk3: LV2 GTK3 UI support'
+'python-pyliblo: OSC support'
+'python-rdflib: LADSPA-RDF support'
+'qt4: LV2 QT4 UI support'
+'zynaddsubfx: ZynAddSubFX banks'
+)
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/falkTX/${pkgname}/archive/${pkgver}.tar.gz;)
+sha512sums=('0f801fdf7704bb3eb62e684134567df3e83a6c7dfad201479039158480f9fbc0c9a91bc007131091c29a87b4cbb2d831797c8c517de9c36399ec7348a8889f5d')
+
+prepare() {
+  mv -v "${_name}-${pkgver}" "${pkgname}-${pkgver}"
+}
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  make features
+  make DEFAULT_QT=5
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  make DEFAULT_QT=5 \
+   DESTDIR="${pkgdir}/" \
+   PREFIX=/usr \
+   install
+  install -vDm 644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md"
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in (41 files)

2018-03-31 Thread Antonio Rojas via arch-commits
Date: Saturday, March 31, 2018 @ 20:42:25
  Author: arojas
Revision: 320705

Plasma 5.12.4

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

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

Modified: bluedevil/trunk/PKGBUILD
===
--- bluedevil/trunk/PKGBUILD2018-03-31 16:46:04 UTC (rev 320704)
+++ bluedevil/trunk/PKGBUILD2018-03-31 20:42:25 UTC (rev 320705)
@@ -4,7 +4,7 @@
 # Contributor: Andrea Scarpino 
 
 pkgname=bluedevil
-pkgver=5.12.3
+pkgver=5.12.4
 pkgrel=1
 epoch=1
 pkgdesc='Integrate the Bluetooth technology within KDE workspace and 
applications'
@@ -16,7 +16,7 @@
 optdepends=('pulseaudio-bluetooth: to connect to A2DP profile')
 groups=(plasma)
 
source=("https://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('f3817d6d0475c9cb4574f45ad3d1bafeab5ead840ef109c3eb56e7ee9790edef'
+sha256sums=('5d4cd83d4fc37c93937762725bea16d86040ba131073135836b30f2874fe27bf'
 'SKIP')
 validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
   '0AAC775BB6437A8D9AF7A3ACFE0784117FBCE11D'  # Bhushan Shah 


Modified: breeze/trunk/PKGBUILD
===
--- breeze/trunk/PKGBUILD   2018-03-31 16:46:04 UTC (rev 320704)
+++ breeze/trunk/PKGBUILD   2018-03-31 20:42:25 UTC (rev 320705)
@@ -5,7 +5,7 @@
 
 

[arch-commits] Commit in kactivitymanagerd/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2018-03-31 Thread Antonio Rojas via arch-commits
Date: Saturday, March 31, 2018 @ 20:43:23
  Author: arojas
Revision: 320706

archrelease: copy trunk to extra-x86_64

Added:
  kactivitymanagerd/repos/extra-x86_64/PKGBUILD
(from rev 320705, kactivitymanagerd/trunk/PKGBUILD)
Deleted:
  kactivitymanagerd/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-03-31 20:42:25 UTC (rev 320705)
+++ PKGBUILD2018-03-31 20:43:23 UTC (rev 320706)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-# Maintainer: Felix Yan 
-
-pkgname=kactivitymanagerd
-pkgver=5.12.3
-pkgrel=1
-pkgdesc="System service to manage user's activities and track the usage 
patterns"
-arch=(x86_64)
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=(LGPL)
-depends=(kio)
-makedepends=(extra-cmake-modules boost python)
-groups=(plasma)
-source=("https://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('21634b36bdcbe5826c55b9457328f13a1f405b06b4570b5ede6e61a28945b93a'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '0AAC775BB6437A8D9AF7A3ACFE0784117FBCE11D'  # Bhushan Shah 

-  'D07BD8662C56CB291B316EB2F5675605C74E02CF'  # David Edmundson
-  '1FA881591C26B276D7A5518EEAAF29B42A678C20') # Marco Martin 

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

Copied: kactivitymanagerd/repos/extra-x86_64/PKGBUILD (from rev 320705, 
kactivitymanagerd/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-03-31 20:43:23 UTC (rev 320706)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+
+pkgname=kactivitymanagerd
+pkgver=5.12.4
+pkgrel=1
+pkgdesc="System service to manage user's activities and track the usage 
patterns"
+arch=(x86_64)
+url='https://www.kde.org/workspaces/plasmadesktop/'
+license=(LGPL)
+depends=(kio)
+makedepends=(extra-cmake-modules boost python)
+groups=(plasma)
+source=("https://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('8fdde5f82b3f1ad5dc8bdeade3f196301a6bc1ebcac2a81eca2400f49b8996d2'
+'SKIP')
+validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
+  '0AAC775BB6437A8D9AF7A3ACFE0784117FBCE11D'  # Bhushan Shah 

+  'D07BD8662C56CB291B316EB2F5675605C74E02CF'  # David Edmundson
+  '1FA881591C26B276D7A5518EEAAF29B42A678C20') # Marco Martin 

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


[arch-commits] Commit in oxygen/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2018-03-31 Thread Antonio Rojas via arch-commits
Date: Saturday, March 31, 2018 @ 20:44:06
  Author: arojas
Revision: 320709

archrelease: copy trunk to extra-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-03-31 20:43:52 UTC (rev 320708)
+++ PKGBUILD2018-03-31 20:44:06 UTC (rev 320709)
@@ -1,66 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Maintainer: Antonio Rojas 
-# Contributor: Andrea Scarpino 
-
-pkgbase=oxygen
-pkgname=(oxygen oxygen-kde4)
-pkgver=5.12.3
-pkgrel=1
-arch=(x86_64)
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=(LGPL)
-makedepends=(frameworkintegration kcmutils kdecoration extra-cmake-modules 
kdoctools kdelibs automoc4 python)
-source=("https://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('a6a07988a9a201be774e632bc2fa7d108000aeec36e9fdbf9818ada3b81e97b9'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '0AAC775BB6437A8D9AF7A3ACFE0784117FBCE11D'  # Bhushan Shah 

-  'D07BD8662C56CB291B316EB2F5675605C74E02CF'  # David Edmundson
-  '1FA881591C26B276D7A5518EEAAF29B42A678C20') # Marco Martin 

-
-prepare() {
-  mkdir -p build{,-kde4}
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DBUILD_TESTING=OFF
-  make
-  cd ..
-
-  cd build-kde4
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DBUILD_TESTING=OFF \
--DUSE_KDE4=ON
-  make
-}
-
-package_oxygen() {
-  pkgdesc='KDE Oxygen style'
-  depends=(frameworkintegration kdecoration kcmutils kwayland 
hicolor-icon-theme)
-  conflicts=(oxygen-cursors)
-  replaces=(oxygen-cursors)
-  groups=(plasma)
-
-  cd build
-  make DESTDIR="$pkgdir" install
-}
-
-package_oxygen-kde4() {
-  pkgdesc='KDE Oxygen style for KDE4 applications'
-  depends=(kdelibs)
-
-  cd build-kde4
-  make DESTDIR="$pkgdir" install
-
-  # needed so that pure Qt4 apps are correctly themed
-  install -d -m755 "$pkgdir"/usr/lib/qt4/plugins/styles
-  ln -s /usr/lib/kde4/plugins/styles/oxygen.so 
"$pkgdir"/usr/lib/qt4/plugins/styles
-}

Copied: oxygen/repos/extra-x86_64/PKGBUILD (from rev 320708, 
oxygen/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-03-31 20:44:06 UTC (rev 320709)
@@ -0,0 +1,64 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgbase=oxygen
+pkgname=(oxygen oxygen-kde4)
+pkgver=5.12.4
+pkgrel=1
+arch=(x86_64)
+url='https://www.kde.org/workspaces/plasmadesktop/'
+license=(LGPL)
+makedepends=(frameworkintegration kcmutils kdecoration extra-cmake-modules 
kdoctools kdelibs automoc4 python)
+source=("https://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('8a1378f9f701266c2ff8b42dcdc800f0272bc583dd432af94b64f1df8fa633cd'
+'SKIP')
+validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
+  '0AAC775BB6437A8D9AF7A3ACFE0784117FBCE11D'  # Bhushan Shah 

+  'D07BD8662C56CB291B316EB2F5675605C74E02CF'  # David Edmundson
+  '1FA881591C26B276D7A5518EEAAF29B42A678C20') # Marco Martin 

+
+prepare() {
+  mkdir -p build{,-kde4}
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+  cd ..
+
+  cd build-kde4
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DBUILD_TESTING=OFF \
+-DUSE_KDE4=ON
+  make
+}
+
+package_oxygen() {
+  pkgdesc='KDE Oxygen style'
+  depends=(frameworkintegration kdecoration kcmutils kwayland 
hicolor-icon-theme)
+  conflicts=(oxygen-cursors)
+  replaces=(oxygen-cursors)
+  groups=(plasma)
+
+  cd build
+  make DESTDIR="$pkgdir" install
+}
+
+package_oxygen-kde4() {
+  pkgdesc='KDE Oxygen style for KDE4 applications'
+  depends=(kdelibs)
+
+  cd build-kde4
+  make DESTDIR="$pkgdir" install
+
+  # needed so that pure Qt4 apps are correctly themed
+  install -d -m755 "$pkgdir"/usr/lib/qt4/plugins/styles
+  ln -s /usr/lib/kde4/plugins/styles/oxygen.so 
"$pkgdir"/usr/lib/qt4/plugins/styles
+}


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

2018-03-31 Thread Antonio Rojas via arch-commits
Date: Saturday, March 31, 2018 @ 20:44:28
  Author: arojas
Revision: 320710

archrelease: copy trunk to extra-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-03-31 20:44:06 UTC (rev 320709)
+++ PKGBUILD2018-03-31 20:44:28 UTC (rev 320710)
@@ -1,66 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Maintainer: Antonio Rojas 
-# Contributor: Andrea Scarpino 
-
-pkgbase=breeze
-pkgname=(breeze breeze-kde4)
-pkgver=5.12.3
-pkgrel=1
-arch=(x86_64)
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=(LGPL)
-makedepends=(extra-cmake-modules frameworkintegration kdelibs automoc4 
kdecoration kcmutils plasma-framework python)
-source=("https://download.kde.org/stable/plasma/$pkgver/$pkgbase-$pkgver.tar.xz"{,.sig})
-sha256sums=('1cbace92ba7548d90c6a74683bceec67a2b86ba7974238c85e3c94fc58577656'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '0AAC775BB6437A8D9AF7A3ACFE0784117FBCE11D'  # Bhushan Shah 

-  'D07BD8662C56CB291B316EB2F5675605C74E02CF'  # David Edmundson
-  '1FA881591C26B276D7A5518EEAAF29B42A678C20') # Marco Martin 

-
-prepare() {
-  mkdir -p build{,-kde4}
-}
-
-build() {
-  cd build
-  cmake ../$pkgbase-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DBUILD_TESTING=OFF
-  make
-
-  cd ../build-kde4
-  cmake ../$pkgbase-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DUSE_KDE4=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package_breeze() {
-  depends=(frameworkintegration kdecoration breeze-icons kwayland 
hicolor-icon-theme)
-  pkgdesc='Artwork, styles and assets for the Breeze visual style for the 
Plasma Desktop'
-  optdepends=('breeze-kde4: Breeze widget style for KDE4 applications'
-   'breeze-gtk: Breeze widget style for GTK applications'
-   'kcmutils: for breeze-settings')
-  groups=(plasma)
-
-  cd build
-  make DESTDIR="$pkgdir" install
-}
-
-package_breeze-kde4() {
-  pkgdesc='Breeze widget style for KDE4 applications'
-  depends=(kdelibs)
-
-  cd build-kde4
-  make DESTDIR="$pkgdir" install
-
-  # needed for pure Qt4 apps
-  install -d "$pkgdir"/usr/lib/qt4/plugins/styles
-  ln -s /usr/lib/kde4/plugins/styles/breeze.so 
"$pkgdir"/usr/lib/qt4/plugins/styles
-}

Copied: breeze/repos/extra-x86_64/PKGBUILD (from rev 320709, 
breeze/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-03-31 20:44:28 UTC (rev 320710)
@@ -0,0 +1,64 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgbase=breeze
+pkgname=(breeze breeze-kde4)
+pkgver=5.12.4
+pkgrel=1
+arch=(x86_64)
+url='https://www.kde.org/workspaces/plasmadesktop/'
+license=(LGPL)
+makedepends=(extra-cmake-modules frameworkintegration kdelibs automoc4 
kdecoration kcmutils plasma-framework python)
+source=("https://download.kde.org/stable/plasma/$pkgver/$pkgbase-$pkgver.tar.xz"{,.sig})
+sha256sums=('879f826ad9b86b402c7791ff3d49e70e55739460e6c3697d5ad3556052946a89'
+'SKIP')
+validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
+  '0AAC775BB6437A8D9AF7A3ACFE0784117FBCE11D'  # Bhushan Shah 

+  'D07BD8662C56CB291B316EB2F5675605C74E02CF'  # David Edmundson
+  '1FA881591C26B276D7A5518EEAAF29B42A678C20') # Marco Martin 

+
+prepare() {
+  mkdir -p build{,-kde4}
+}
+
+build() {
+  cd build
+  cmake ../$pkgbase-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+
+  cd ../build-kde4
+  cmake ../$pkgbase-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DUSE_KDE4=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package_breeze() {
+  depends=(frameworkintegration kdecoration breeze-icons kwayland 
hicolor-icon-theme)
+  pkgdesc='Artwork, styles and assets for the Breeze visual style for the 
Plasma Desktop'
+  optdepends=('breeze-kde4: Breeze widget style for KDE4 applications'
+   'breeze-gtk: Breeze widget style for GTK applications'
+   'kcmutils: for breeze-settings')
+  groups=(plasma)
+
+  cd build
+  make DESTDIR="$pkgdir" install
+}
+
+package_breeze-kde4() {
+  pkgdesc='Breeze widget style for KDE4 applications'
+  depends=(kdelibs)
+
+  cd build-kde4
+  make 

[arch-commits] Commit in kscreenlocker/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2018-03-31 Thread Antonio Rojas via arch-commits
Date: Saturday, March 31, 2018 @ 20:43:37
  Author: arojas
Revision: 320707

archrelease: copy trunk to extra-x86_64

Added:
  kscreenlocker/repos/extra-x86_64/PKGBUILD
(from rev 320706, kscreenlocker/trunk/PKGBUILD)
Deleted:
  kscreenlocker/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-03-31 20:43:23 UTC (rev 320706)
+++ PKGBUILD2018-03-31 20:43:37 UTC (rev 320707)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-
-pkgname=kscreenlocker
-pkgver=5.12.3
-pkgrel=1
-pkgdesc='Library and components for secure lock screen architecture'
-arch=(x86_64)
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=(LGPL)
-groups=(plasma)
-depends=(kidletime kwayland kdeclarative)
-makedepends=(extra-cmake-modules python kdoctools kcmutils libxcursor)
-source=("https://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('b5097b46eaafa8c4d8d777847cdef615ba32fd24d62b8f7de3820c9394b4ccc6'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '0AAC775BB6437A8D9AF7A3ACFE0784117FBCE11D'  # Bhushan Shah 

-  'D07BD8662C56CB291B316EB2F5675605C74E02CF'  # David Edmundson
-  '1FA881591C26B276D7A5518EEAAF29B42A678C20') # Marco Martin 

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

Copied: kscreenlocker/repos/extra-x86_64/PKGBUILD (from rev 320706, 
kscreenlocker/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-03-31 20:43:37 UTC (rev 320707)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+
+pkgname=kscreenlocker
+pkgver=5.12.4
+pkgrel=1
+pkgdesc='Library and components for secure lock screen architecture'
+arch=(x86_64)
+url='https://www.kde.org/workspaces/plasmadesktop/'
+license=(LGPL)
+groups=(plasma)
+depends=(kidletime kwayland kdeclarative)
+makedepends=(extra-cmake-modules python kdoctools kcmutils libxcursor)
+source=("https://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('357cb97d31d5cd91d647169f0fe980fbce08cb71a01087022fdab155bf32eca0'
+'SKIP')
+validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
+  '0AAC775BB6437A8D9AF7A3ACFE0784117FBCE11D'  # Bhushan Shah 

+  'D07BD8662C56CB291B316EB2F5675605C74E02CF'  # David Edmundson
+  '1FA881591C26B276D7A5518EEAAF29B42A678C20') # Marco Martin 

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


[arch-commits] Commit in kdecoration/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2018-03-31 Thread Antonio Rojas via arch-commits
Date: Saturday, March 31, 2018 @ 20:43:52
  Author: arojas
Revision: 320708

archrelease: copy trunk to extra-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-03-31 20:43:37 UTC (rev 320707)
+++ PKGBUILD2018-03-31 20:43:52 UTC (rev 320708)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Maintainer: Antonio Rojas 
-# Contributor: Andrea Scarpino 
-
-pkgname=kdecoration
-pkgver=5.12.3
-pkgrel=1
-pkgdesc='Plugin based library to create window decorations'
-arch=(x86_64)
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=(LGPL)
-depends=(qt5-base)
-makedepends=(extra-cmake-modules)
-groups=(plasma)
-source=("https://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('5ed358c40ae7d832cc44f7fc4cba21211ba71c8c54817c79a19e64c415c252f7'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '0AAC775BB6437A8D9AF7A3ACFE0784117FBCE11D'  # Bhushan Shah 

-  'D07BD8662C56CB291B316EB2F5675605C74E02CF'  # David Edmundson
-  '1FA881591C26B276D7A5518EEAAF29B42A678C20') # Marco Martin 

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

Copied: kdecoration/repos/extra-x86_64/PKGBUILD (from rev 320707, 
kdecoration/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-03-31 20:43:52 UTC (rev 320708)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=kdecoration
+pkgver=5.12.4
+pkgrel=1
+pkgdesc='Plugin based library to create window decorations'
+arch=(x86_64)
+url='https://www.kde.org/workspaces/plasmadesktop/'
+license=(LGPL)
+depends=(qt5-base)
+makedepends=(extra-cmake-modules)
+groups=(plasma)
+source=("https://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('d22e54abd40cc3e030e894510e45e11a318f126ba658c708d0a56e58c01a5a5a'
+'SKIP')
+validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
+  '0AAC775BB6437A8D9AF7A3ACFE0784117FBCE11D'  # Bhushan Shah 

+  'D07BD8662C56CB291B316EB2F5675605C74E02CF'  # David Edmundson
+  '1FA881591C26B276D7A5518EEAAF29B42A678C20') # Marco Martin 

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


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

2018-03-31 Thread David Runge via arch-commits
Date: Saturday, March 31, 2018 @ 21:40:52
  Author: dvzrv
Revision: 313651

archrelease: copy trunk to community-testing-x86_64

Added:
  zynaddsubfx/repos/community-testing-x86_64/
  zynaddsubfx/repos/community-testing-x86_64/PKGBUILD
(from rev 313650, zynaddsubfx/trunk/PKGBUILD)

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

Copied: zynaddsubfx/repos/community-testing-x86_64/PKGBUILD (from rev 313650, 
zynaddsubfx/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2018-03-31 21:40:52 UTC (rev 313651)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: David Runge 
+# Contributor: Sergej Pupykin 
+# Contributor: SpepS 
+# Contributor: Ionut Biru 
+# Contributor: DonVla 
+
+pkgname=zynaddsubfx
+pkgver=3.0.3
+pkgrel=2
+pkgdesc="Opensource software synthesizer capable of making a countless number 
of instruments."
+arch=('x86_64')
+url="http://zynaddsubfx.sourceforge.net;
+license=('GPL2')
+depends=('fftw' 'hicolor-icon-theme' 'lash' 'liblo' 'libxpm' 'mxml' 'ntk' 
'portaudio')
+makedepends=('asciidoc' 'cmake' 'doxygen' 'gnuplot' 'dblatex' 'imagemagick' 
'ghostscript' 'texlive-pstricks')
+source=("https://downloads.sourceforge.net/project/${pkgname}/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.bz2;)
+sha512sums=('e60e22656388d444114959859c12014ec79d7ba555b0d217ad98ad06e273916eea0eee521bb9dbfdef5be34205280d355b44a8f15760eeff06b16410d560b5d7')
+
+prepare() {
+  cd "${pkgname}-${pkgver}"
+  mkdir -vp build
+}
+
+build() {
+  cd "${pkgname}-${pkgver}/build"
+
+  cmake \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DDefaultOutput=jack \
+-DDefaultInput=jack \
+-DGuiModule=ntk \
+..
+  make
+  # build documentation
+  cd ../doc
+  make
+}
+
+package() {
+  cd "${pkgname}-${pkgver}/build"
+  make DESTDIR="${pkgdir}/" install
+  # banks and examples
+  install -vd "${pkgdir}/usr/share/${pkgname}"
+  cp -va ../instruments/banks "${pkgdir}/usr/share/${pkgname}"
+  cp -va ../instruments/examples "${pkgdir}/usr/share/${pkgname}"
+  # icons
+  install -vDm 644 "../${pkgname}.ico" \
+"${pkgdir}/usr/share/pixmaps/${pkgname}.ico"
+  install -vDm 644 "../${pkgname}.svg" \
+"${pkgdir}/usr/share/icons/hicolor/scalable/apps/${pkgname}.svg"
+  # man page
+  install -vDm 644 "../doc/${pkgname}.1" \
+"${pkgdir}/usr/share/man/man1/${pkgname}.1"
+  # documentation
+  install -vDm 644 "../doc/${pkgname}.html" \
+"${pkgdir}/usr/share/doc/${pkgname}/${pkgname}.html"
+  install -vDm 644 "../doc/${pkgname}.pdf" \
+"${pkgdir}/usr/share/doc/${pkgname}/${pkgname}.pdf"
+  cp -va ../doc/images "${pkgdir}/usr/share/doc/${pkgname}/"
+}


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

2018-03-31 Thread David Runge via arch-commits
Date: Saturday, March 31, 2018 @ 21:40:45
  Author: dvzrv
Revision: 313650

upgpkg: zynaddsubfx 3.0.3-2

Using ntk instead of fltk. Removing incompatible external programs.
Adding hicolor-icon-theme to depends. Introducing linebreaks.

Modified:
  zynaddsubfx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-03-31 21:30:16 UTC (rev 313649)
+++ PKGBUILD2018-03-31 21:40:45 UTC (rev 313650)
@@ -7,61 +7,55 @@
 
 pkgname=zynaddsubfx
 pkgver=3.0.3
-pkgrel=1
+pkgrel=2
 pkgdesc="Opensource software synthesizer capable of making a countless number 
of instruments."
 arch=('x86_64')
 url="http://zynaddsubfx.sourceforge.net;
 license=('GPL2')
-depends=('fltk' 'portaudio' 'fftw' 'lash' 'mxml' 'libxpm' 'liblo')
+depends=('fftw' 'hicolor-icon-theme' 'lash' 'liblo' 'libxpm' 'mxml' 'ntk' 
'portaudio')
 makedepends=('asciidoc' 'cmake' 'doxygen' 'gnuplot' 'dblatex' 'imagemagick' 
'ghostscript' 'texlive-pstricks')
 
source=("https://downloads.sourceforge.net/project/${pkgname}/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.bz2;)
 
sha512sums=('e60e22656388d444114959859c12014ec79d7ba555b0d217ad98ad06e273916eea0eee521bb9dbfdef5be34205280d355b44a8f15760eeff06b16410d560b5d7')
 
-build() {
+prepare() {
   cd "${pkgname}-${pkgver}"
+  mkdir -vp build
+}
 
-  [ -d build ] || mkdir build && cd build
+build() {
+  cd "${pkgname}-${pkgver}/build"
+
   cmake \
 -DCMAKE_INSTALL_PREFIX=/usr \
 -DDefaultOutput=jack \
 -DDefaultInput=jack \
--DGuiModule=fltk \
+-DGuiModule=ntk \
 ..
   make
-
-  # build external programs
-  cd ../ExternalPrograms/Spliter && make
-  cd ../Controller && make
-
   # build documentation
-  cd ../../doc
+  cd ../doc
   make
 }
 
 package() {
   cd "${pkgname}-${pkgver}/build"
-
   make DESTDIR="${pkgdir}/" install
-
-  # install external programs
-  install -Dm755 ../ExternalPrograms/Spliter/spliter 
"${pkgdir}/usr/bin/spliter"
-  install -Dm755 ../ExternalPrograms/Controller/controller 
"${pkgdir}/usr/bin/controller"
-  install -Dm644 ../ExternalPrograms/Spliter/readme.txt 
"${pkgdir}/usr/share/doc/${pkgname}/SPLITER.txt"
-
   # banks and examples
-  install -d "${pkgdir}/usr/share/${pkgname}"
-  cp -a ../instruments/banks "${pkgdir}/usr/share/${pkgname}"
-  cp -a ../instruments/examples "${pkgdir}/usr/share/${pkgname}"
-
+  install -vd "${pkgdir}/usr/share/${pkgname}"
+  cp -va ../instruments/banks "${pkgdir}/usr/share/${pkgname}"
+  cp -va ../instruments/examples "${pkgdir}/usr/share/${pkgname}"
   # icons
-  install -Dm644 "../${pkgname}.ico" 
"${pkgdir}/usr/share/pixmaps/${pkgname}.ico"
-  install -Dm644 "../${pkgname}.svg" 
"${pkgdir}/usr/share/icons/hicolor/scalable/apps/${pkgname}.svg"
-
+  install -vDm 644 "../${pkgname}.ico" \
+"${pkgdir}/usr/share/pixmaps/${pkgname}.ico"
+  install -vDm 644 "../${pkgname}.svg" \
+"${pkgdir}/usr/share/icons/hicolor/scalable/apps/${pkgname}.svg"
   # man page
-  install -Dm644 "../doc/${pkgname}.1" 
"${pkgdir}/usr/share/man/man1/${pkgname}.1"
-
+  install -vDm 644 "../doc/${pkgname}.1" \
+"${pkgdir}/usr/share/man/man1/${pkgname}.1"
   # documentation
-  install -Dm644 "../doc/${pkgname}.html" 
"${pkgdir}/usr/share/doc/${pkgname}/${pkgname}.html"
-  install -Dm644 "../doc/${pkgname}.pdf" 
"${pkgdir}/usr/share/doc/${pkgname}/${pkgname}.pdf"
-  cp -a ../doc/images "${pkgdir}/usr/share/doc/${pkgname}/"
+  install -vDm 644 "../doc/${pkgname}.html" \
+"${pkgdir}/usr/share/doc/${pkgname}/${pkgname}.html"
+  install -vDm 644 "../doc/${pkgname}.pdf" \
+"${pkgdir}/usr/share/doc/${pkgname}/${pkgname}.pdf"
+  cp -va ../doc/images "${pkgdir}/usr/share/doc/${pkgname}/"
 }


[arch-commits] Commit in (4 files)

2018-03-31 Thread David Runge via arch-commits
Date: Saturday, March 31, 2018 @ 21:51:17
  Author: dvzrv
Revision: 313652

Adding zam-plugins 3.10.

Added:
  zam-plugins/
  zam-plugins/repos/
  zam-plugins/trunk/
  zam-plugins/trunk/PKGBUILD

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

Added: zam-plugins/trunk/PKGBUILD
===
--- zam-plugins/trunk/PKGBUILD  (rev 0)
+++ zam-plugins/trunk/PKGBUILD  2018-03-31 21:51:17 UTC (rev 313652)
@@ -0,0 +1,38 @@
+# Maintainer: David Runge 
+pkgname=zam-plugins
+pkgver=3.10
+pkgrel=3
+pkgdesc="Collection of LADSPA/LV2/VST/JACK audio plugins for high-quality 
processing"
+arch=('x86_64')
+url="https://github.com/zamaudio/zam-plugins;
+license=('GPL2')
+groups=('ladspa-plugins' 'lv2-plugins' 'pro-audio' 'vst-plugins')
+depends=('fftw' 'libglvnd' 'jack' 'liblo' 'zita-convolver')
+makedepends=('git' 'ladspa' 'libx11' 'libgl' 'liblo' 'lv2')
+source=("$pkgname-$pkgver::git+https://github.com/zamaudio/${pkgname}.git#tag=${pkgver};
+"git+https://github.com/distrho/dpf.git;)
+md5sums=('SKIP'
+ 'SKIP')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+  git submodule init
+  git config submodule.dpf.url "${srcdir}/dpf"
+  git submodule update
+  # use system zita-convolver
+  sed -e 
's|\"../../lib/zita-convolver-3.1.0/zita-convolver.h\"||' \
+-i plugins/Zam{Verb,HeadX2}/convolution.{cpp,hpp}
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir/" PREFIX='/usr' install
+  # docs
+  install -t "${pkgdir}/usr/share/doc/${pkgname}/" \
+-vDm 644 {README.md,changelog}
+}


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


[arch-commits] Commit in unrar/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2018-03-31 Thread Antonio Rojas via arch-commits
Date: Saturday, March 31, 2018 @ 23:06:18
  Author: arojas
Revision: 320775

archrelease: copy trunk to extra-x86_64

Added:
  unrar/repos/extra-x86_64/PKGBUILD
(from rev 320774, unrar/trunk/PKGBUILD)
Deleted:
  unrar/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-03-31 23:05:48 UTC (rev 320774)
+++ PKGBUILD2018-03-31 23:06:18 UTC (rev 320775)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-# Contributor: Giovanni Scafora 
-# Contributor: dorphell 
-
-pkgbase=unrar
-pkgname=(unrar libunrar)
-pkgver=5.6.1
-pkgrel=1
-epoch=1
-arch=(x86_64)
-url="http://www.rarlab.com/rar_add.htm;
-license=(custom)
-source=("http://www.rarlab.com/rar/unrarsrc-${pkgver}.tar.gz;)
-sha256sums=('67c339dffa95f6c1bedcca40045e99de5852919dbfaa06e4a9c8f18cd5064e70')
-
-build() {
-  cp -a unrar libunrar
-  make -C libunrar lib
-  make -C unrar STRIP="true"
-}
-
-package_unrar() {
-  pkgdesc="The RAR uncompression program"
-  depends=(gcc-libs)
-  cd unrar
-  install -Dm755 unrar "$pkgdir"/usr/bin/unrar
-  # install license
-  install -Dm644 license.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_libunrar() {
-  pkgdesc="Library and header file for applications that use libunrar"
-  depends=(gcc-libs)
-  cd libunrar
-  install -Dm755 libunrar.so "$pkgdir"/usr/lib/libunrar.so
-  install -Dm644 dll.hpp "$pkgdir"/usr/include/unrar/dll.hpp
-  # install license
-  install -Dm644 license.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: unrar/repos/extra-x86_64/PKGBUILD (from rev 320774, 
unrar/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-03-31 23:06:18 UTC (rev 320775)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Contributor: Giovanni Scafora 
+# Contributor: dorphell 
+
+pkgbase=unrar
+pkgname=(unrar libunrar)
+pkgver=5.6.2
+pkgrel=1
+epoch=1
+arch=(x86_64)
+url="http://www.rarlab.com/rar_add.htm;
+license=(custom)
+source=("http://www.rarlab.com/rar/unrarsrc-${pkgver}.tar.gz;)
+sha256sums=('ce048094764b2377dd60802359c74f03528b6d7defd808cd584443c5fd2de948')
+
+build() {
+  cp -a unrar libunrar
+  make -C libunrar lib
+  make -C unrar STRIP="true"
+}
+
+package_unrar() {
+  pkgdesc="The RAR uncompression program"
+  depends=(gcc-libs)
+  cd unrar
+  install -Dm755 unrar "$pkgdir"/usr/bin/unrar
+  # install license
+  install -Dm644 license.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_libunrar() {
+  pkgdesc="Library and header file for applications that use libunrar"
+  depends=(gcc-libs)
+  cd libunrar
+  install -Dm755 libunrar.so "$pkgdir"/usr/lib/libunrar.so
+  install -Dm644 dll.hpp "$pkgdir"/usr/include/unrar/dll.hpp
+  # install license
+  install -Dm644 license.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2018-03-31 Thread Antonio Rojas via arch-commits
Date: Saturday, March 31, 2018 @ 23:29:50
  Author: arojas
Revision: 320780

Update to 2.3.0

Modified:
  qalculate-gtk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-03-31 23:25:47 UTC (rev 320779)
+++ PKGBUILD2018-03-31 23:29:50 UTC (rev 320780)
@@ -2,7 +2,7 @@
 # Maintainer: Eric Bélanger 
 
 pkgname=qalculate-gtk
-pkgver=2.2.1
+pkgver=2.3.0
 pkgrel=1
 pkgdesc="GNOME frontend for libqalculate"
 arch=('x86_64')
@@ -13,7 +13,7 @@
 optdepends=('yelp: for displaying the help')
 options=('!makeflags')
 
source=(https://github.com/Qalculate/qalculate-gtk/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz)
-sha1sums=('62da0db83cc758830e6a9da85557b952ea60f418')
+sha1sums=('f3e7e52c7865087207e684ed0b8fcdb81e89f15a')
 
 build() {
   cd ${pkgname}-${pkgver}


[arch-commits] Commit in step/repos (staging-x86_64 staging-x86_64/PKGBUILD)

2018-03-31 Thread Antonio Rojas via arch-commits
Date: Saturday, March 31, 2018 @ 23:40:49
  Author: arojas
Revision: 320787

archrelease: copy trunk to staging-x86_64

Added:
  step/repos/staging-x86_64/
  step/repos/staging-x86_64/PKGBUILD
(from rev 320786, step/trunk/PKGBUILD)

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

Copied: step/repos/staging-x86_64/PKGBUILD (from rev 320786, 
step/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2018-03-31 23:40:49 UTC (rev 320787)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=step
+pkgver=17.12.3
+pkgrel=2
+pkgdesc="Interactive Physical Simulator"
+url="https://kde.org/applications/education/step/;
+arch=(x86_64)
+license=(GPL LGPL FDL)
+groups=(kde-applications kdeedu)
+depends=(libqalculate gsl knewstuff khtml kdelibs4support kplotting 
hicolor-icon-theme)
+makedepends=(extra-cmake-modules python kdoctools eigen mesa kdesignerplugin 
qt5-tools)
+source=("https://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('db10e9dda878fc307dba675bbadf83e49ac5632b5274646f1743a3f097023998'
+'SKIP')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

+  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck 

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


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

2018-03-31 Thread Antonio Rojas via arch-commits
Date: Saturday, March 31, 2018 @ 23:40:24
  Author: arojas
Revision: 320786

libqalculate 2.3.0 rebuild

Modified:
  step/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-03-31 23:39:03 UTC (rev 320785)
+++ PKGBUILD2018-03-31 23:40:24 UTC (rev 320786)
@@ -5,7 +5,7 @@
 
 pkgname=step
 pkgver=17.12.3
-pkgrel=1
+pkgrel=2
 pkgdesc="Interactive Physical Simulator"
 url="https://kde.org/applications/education/step/;
 arch=(x86_64)


[arch-commits] Commit in perl-filesys-df/repos (2 files)

2018-03-31 Thread Fabio Castelli via arch-commits
Date: Sunday, April 1, 2018 @ 00:36:06
  Author: muflone
Revision: 313667

archrelease: copy trunk to community-testing-x86_64

Added:
  perl-filesys-df/repos/community-testing-x86_64/
  perl-filesys-df/repos/community-testing-x86_64/PKGBUILD
(from rev 313666, perl-filesys-df/trunk/PKGBUILD)

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

Copied: perl-filesys-df/repos/community-testing-x86_64/PKGBUILD (from rev 
313666, perl-filesys-df/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2018-04-01 00:36:06 UTC (rev 313667)
@@ -0,0 +1,28 @@
+# $Id
+# Maintainer: Muflone http://www.muflone.com/contacts/english/
+# Contributor: Ian Guthrie 
+# Contributor: der_FeniX 
+
+pkgname=perl-filesys-df
+_perl_module=Filesys-Df
+pkgver=0.92
+pkgrel=4
+pkgdesc="Perl extension for filesystem disk space information"
+arch=('x86_64')
+url="https://metacpan.org/release/${_perl_module};
+license=('GPL3')
+depends=('perl')
+source=("https://cpan.metacpan.org/authors/id/I/IG/IGUTHRIE/${_perl_module}-${pkgver}.tar.gz;)
+sha256sums=('fe89cbb427e0e05f1cd97c2dd6d3866ac6b21bc7a85734ede159bdc35479552a')
+options=('!emptydirs')
+
+build() {
+   cd "${_perl_module}-${pkgver}"
+   perl Makefile.PL
+   make
+}
+
+package() {
+   cd "${_perl_module}-${pkgver}"
+   make pure_install DESTDIR="${pkgdir}"
+}


[arch-commits] Commit in perl-filesys-df/trunk (PKGBUILD)

2018-03-31 Thread Fabio Castelli via arch-commits
Date: Sunday, April 1, 2018 @ 00:36:13
  Author: muflone
Revision: 313668

upgpkg: perl-filesys-df 0.92-4

Modified:
  perl-filesys-df/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-04-01 00:36:06 UTC (rev 313667)
+++ PKGBUILD2018-04-01 00:36:13 UTC (rev 313668)
@@ -1,4 +1,4 @@
-# $Id
+# $Id$
 # Maintainer: Muflone http://www.muflone.com/contacts/english/
 # Contributor: Ian Guthrie 
 # Contributor: der_FeniX 


[arch-commits] Commit in kdecoration/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2018-03-31 Thread Antonio Rojas via arch-commits
Date: Saturday, March 31, 2018 @ 20:52:46
  Author: arojas
Revision: 320729

archrelease: copy trunk to extra-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-03-31 20:52:31 UTC (rev 320728)
+++ PKGBUILD2018-03-31 20:52:46 UTC (rev 320729)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Maintainer: Antonio Rojas 
-# Contributor: Andrea Scarpino 
-
-pkgname=kdecoration
-pkgver=5.12.4
-pkgrel=1
-pkgdesc='Plugin based library to create window decorations'
-arch=(x86_64)
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=(LGPL)
-depends=(qt5-base)
-makedepends=(extra-cmake-modules)
-groups=(plasma)
-source=("https://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('d22e54abd40cc3e030e894510e45e11a318f126ba658c708d0a56e58c01a5a5a'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '0AAC775BB6437A8D9AF7A3ACFE0784117FBCE11D'  # Bhushan Shah 

-  'D07BD8662C56CB291B316EB2F5675605C74E02CF'  # David Edmundson
-  '1FA881591C26B276D7A5518EEAAF29B42A678C20') # Marco Martin 

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

Copied: kdecoration/repos/extra-x86_64/PKGBUILD (from rev 320728, 
kdecoration/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-03-31 20:52:46 UTC (rev 320729)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=kdecoration
+pkgver=5.12.4
+pkgrel=1
+pkgdesc='Plugin based library to create window decorations'
+arch=(x86_64)
+url='https://www.kde.org/workspaces/plasmadesktop/'
+license=(LGPL)
+depends=(qt5-base)
+makedepends=(extra-cmake-modules)
+groups=(plasma)
+source=("https://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('d22e54abd40cc3e030e894510e45e11a318f126ba658c708d0a56e58c01a5a5a'
+'SKIP')
+validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
+  '0AAC775BB6437A8D9AF7A3ACFE0784117FBCE11D'  # Bhushan Shah 

+  'D07BD8662C56CB291B316EB2F5675605C74E02CF'  # David Edmundson
+  '1FA881591C26B276D7A5518EEAAF29B42A678C20') # Marco Martin 

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


[arch-commits] Commit in oxygen/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2018-03-31 Thread Antonio Rojas via arch-commits
Date: Saturday, March 31, 2018 @ 20:53:00
  Author: arojas
Revision: 320730

archrelease: copy trunk to extra-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-03-31 20:52:46 UTC (rev 320729)
+++ PKGBUILD2018-03-31 20:53:00 UTC (rev 320730)
@@ -1,64 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Maintainer: Antonio Rojas 
-# Contributor: Andrea Scarpino 
-
-pkgbase=oxygen
-pkgname=(oxygen oxygen-kde4)
-pkgver=5.12.4
-pkgrel=1
-arch=(x86_64)
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=(LGPL)
-makedepends=(frameworkintegration kcmutils kdecoration extra-cmake-modules 
kdoctools kdelibs automoc4 python)
-source=("https://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('8a1378f9f701266c2ff8b42dcdc800f0272bc583dd432af94b64f1df8fa633cd'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '0AAC775BB6437A8D9AF7A3ACFE0784117FBCE11D'  # Bhushan Shah 

-  'D07BD8662C56CB291B316EB2F5675605C74E02CF'  # David Edmundson
-  '1FA881591C26B276D7A5518EEAAF29B42A678C20') # Marco Martin 

-
-prepare() {
-  mkdir -p build{,-kde4}
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DBUILD_TESTING=OFF
-  make
-  cd ..
-
-  cd build-kde4
-  cmake ../$pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DBUILD_TESTING=OFF \
--DUSE_KDE4=ON
-  make
-}
-
-package_oxygen() {
-  pkgdesc='KDE Oxygen style'
-  depends=(frameworkintegration kdecoration kcmutils kwayland 
hicolor-icon-theme)
-  conflicts=(oxygen-cursors)
-  replaces=(oxygen-cursors)
-  groups=(plasma)
-
-  cd build
-  make DESTDIR="$pkgdir" install
-}
-
-package_oxygen-kde4() {
-  pkgdesc='KDE Oxygen style for KDE4 applications'
-  depends=(kdelibs)
-
-  cd build-kde4
-  make DESTDIR="$pkgdir" install
-
-  # needed so that pure Qt4 apps are correctly themed
-  install -d -m755 "$pkgdir"/usr/lib/qt4/plugins/styles
-  ln -s /usr/lib/kde4/plugins/styles/oxygen.so 
"$pkgdir"/usr/lib/qt4/plugins/styles
-}

Copied: oxygen/repos/extra-x86_64/PKGBUILD (from rev 320729, 
oxygen/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-03-31 20:53:00 UTC (rev 320730)
@@ -0,0 +1,64 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgbase=oxygen
+pkgname=(oxygen oxygen-kde4)
+pkgver=5.12.4
+pkgrel=1
+arch=(x86_64)
+url='https://www.kde.org/workspaces/plasmadesktop/'
+license=(LGPL)
+makedepends=(frameworkintegration kcmutils kdecoration extra-cmake-modules 
kdoctools kdelibs automoc4 python)
+source=("https://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('8a1378f9f701266c2ff8b42dcdc800f0272bc583dd432af94b64f1df8fa633cd'
+'SKIP')
+validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
+  '0AAC775BB6437A8D9AF7A3ACFE0784117FBCE11D'  # Bhushan Shah 

+  'D07BD8662C56CB291B316EB2F5675605C74E02CF'  # David Edmundson
+  '1FA881591C26B276D7A5518EEAAF29B42A678C20') # Marco Martin 

+
+prepare() {
+  mkdir -p build{,-kde4}
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+  cd ..
+
+  cd build-kde4
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DBUILD_TESTING=OFF \
+-DUSE_KDE4=ON
+  make
+}
+
+package_oxygen() {
+  pkgdesc='KDE Oxygen style'
+  depends=(frameworkintegration kdecoration kcmutils kwayland 
hicolor-icon-theme)
+  conflicts=(oxygen-cursors)
+  replaces=(oxygen-cursors)
+  groups=(plasma)
+
+  cd build
+  make DESTDIR="$pkgdir" install
+}
+
+package_oxygen-kde4() {
+  pkgdesc='KDE Oxygen style for KDE4 applications'
+  depends=(kdelibs)
+
+  cd build-kde4
+  make DESTDIR="$pkgdir" install
+
+  # needed so that pure Qt4 apps are correctly themed
+  install -d -m755 "$pkgdir"/usr/lib/qt4/plugins/styles
+  ln -s /usr/lib/kde4/plugins/styles/oxygen.so 
"$pkgdir"/usr/lib/qt4/plugins/styles
+}


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

2018-03-31 Thread Antonio Rojas via arch-commits
Date: Saturday, March 31, 2018 @ 20:53:14
  Author: arojas
Revision: 320731

archrelease: copy trunk to extra-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-03-31 20:53:00 UTC (rev 320730)
+++ PKGBUILD2018-03-31 20:53:14 UTC (rev 320731)
@@ -1,64 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Maintainer: Antonio Rojas 
-# Contributor: Andrea Scarpino 
-
-pkgbase=breeze
-pkgname=(breeze breeze-kde4)
-pkgver=5.12.4
-pkgrel=1
-arch=(x86_64)
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=(LGPL)
-makedepends=(extra-cmake-modules frameworkintegration kdelibs automoc4 
kdecoration kcmutils plasma-framework python)
-source=("https://download.kde.org/stable/plasma/$pkgver/$pkgbase-$pkgver.tar.xz"{,.sig})
-sha256sums=('879f826ad9b86b402c7791ff3d49e70e55739460e6c3697d5ad3556052946a89'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '0AAC775BB6437A8D9AF7A3ACFE0784117FBCE11D'  # Bhushan Shah 

-  'D07BD8662C56CB291B316EB2F5675605C74E02CF'  # David Edmundson
-  '1FA881591C26B276D7A5518EEAAF29B42A678C20') # Marco Martin 

-
-prepare() {
-  mkdir -p build{,-kde4}
-}
-
-build() {
-  cd build
-  cmake ../$pkgbase-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DBUILD_TESTING=OFF
-  make
-
-  cd ../build-kde4
-  cmake ../$pkgbase-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DUSE_KDE4=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package_breeze() {
-  depends=(frameworkintegration kdecoration breeze-icons kwayland 
hicolor-icon-theme)
-  pkgdesc='Artwork, styles and assets for the Breeze visual style for the 
Plasma Desktop'
-  optdepends=('breeze-kde4: Breeze widget style for KDE4 applications'
-   'breeze-gtk: Breeze widget style for GTK applications'
-   'kcmutils: for breeze-settings')
-  groups=(plasma)
-
-  cd build
-  make DESTDIR="$pkgdir" install
-}
-
-package_breeze-kde4() {
-  pkgdesc='Breeze widget style for KDE4 applications'
-  depends=(kdelibs)
-
-  cd build-kde4
-  make DESTDIR="$pkgdir" install
-
-  # needed for pure Qt4 apps
-  install -d "$pkgdir"/usr/lib/qt4/plugins/styles
-  ln -s /usr/lib/kde4/plugins/styles/breeze.so 
"$pkgdir"/usr/lib/qt4/plugins/styles
-}

Copied: breeze/repos/extra-x86_64/PKGBUILD (from rev 320730, 
breeze/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-03-31 20:53:14 UTC (rev 320731)
@@ -0,0 +1,64 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgbase=breeze
+pkgname=(breeze breeze-kde4)
+pkgver=5.12.4
+pkgrel=1
+arch=(x86_64)
+url='https://www.kde.org/workspaces/plasmadesktop/'
+license=(LGPL)
+makedepends=(extra-cmake-modules frameworkintegration kdelibs automoc4 
kdecoration kcmutils plasma-framework python)
+source=("https://download.kde.org/stable/plasma/$pkgver/$pkgbase-$pkgver.tar.xz"{,.sig})
+sha256sums=('879f826ad9b86b402c7791ff3d49e70e55739460e6c3697d5ad3556052946a89'
+'SKIP')
+validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
+  '0AAC775BB6437A8D9AF7A3ACFE0784117FBCE11D'  # Bhushan Shah 

+  'D07BD8662C56CB291B316EB2F5675605C74E02CF'  # David Edmundson
+  '1FA881591C26B276D7A5518EEAAF29B42A678C20') # Marco Martin 

+
+prepare() {
+  mkdir -p build{,-kde4}
+}
+
+build() {
+  cd build
+  cmake ../$pkgbase-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+
+  cd ../build-kde4
+  cmake ../$pkgbase-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DUSE_KDE4=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package_breeze() {
+  depends=(frameworkintegration kdecoration breeze-icons kwayland 
hicolor-icon-theme)
+  pkgdesc='Artwork, styles and assets for the Breeze visual style for the 
Plasma Desktop'
+  optdepends=('breeze-kde4: Breeze widget style for KDE4 applications'
+   'breeze-gtk: Breeze widget style for GTK applications'
+   'kcmutils: for breeze-settings')
+  groups=(plasma)
+
+  cd build
+  make DESTDIR="$pkgdir" install
+}
+
+package_breeze-kde4() {
+  pkgdesc='Breeze widget style for KDE4 applications'
+  depends=(kdelibs)
+
+  cd build-kde4
+  make DESTDIR="$pkgdir" install
+
+  # needed for pure Qt4 apps
+  install -d 

[arch-commits] Commit in kscreenlocker/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2018-03-31 Thread Antonio Rojas via arch-commits
Date: Saturday, March 31, 2018 @ 20:52:31
  Author: arojas
Revision: 320728

archrelease: copy trunk to extra-x86_64

Added:
  kscreenlocker/repos/extra-x86_64/PKGBUILD
(from rev 320727, kscreenlocker/trunk/PKGBUILD)
Deleted:
  kscreenlocker/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-03-31 20:52:15 UTC (rev 320727)
+++ PKGBUILD2018-03-31 20:52:31 UTC (rev 320728)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-
-pkgname=kscreenlocker
-pkgver=5.12.4
-pkgrel=1
-pkgdesc='Library and components for secure lock screen architecture'
-arch=(x86_64)
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=(LGPL)
-groups=(plasma)
-depends=(kidletime kwayland kdeclarative)
-makedepends=(extra-cmake-modules python kdoctools kcmutils libxcursor)
-source=("https://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('357cb97d31d5cd91d647169f0fe980fbce08cb71a01087022fdab155bf32eca0'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '0AAC775BB6437A8D9AF7A3ACFE0784117FBCE11D'  # Bhushan Shah 

-  'D07BD8662C56CB291B316EB2F5675605C74E02CF'  # David Edmundson
-  '1FA881591C26B276D7A5518EEAAF29B42A678C20') # Marco Martin 

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

Copied: kscreenlocker/repos/extra-x86_64/PKGBUILD (from rev 320727, 
kscreenlocker/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-03-31 20:52:31 UTC (rev 320728)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+
+pkgname=kscreenlocker
+pkgver=5.12.4
+pkgrel=1
+pkgdesc='Library and components for secure lock screen architecture'
+arch=(x86_64)
+url='https://www.kde.org/workspaces/plasmadesktop/'
+license=(LGPL)
+groups=(plasma)
+depends=(kidletime kwayland kdeclarative)
+makedepends=(extra-cmake-modules python kdoctools kcmutils libxcursor)
+source=("https://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('357cb97d31d5cd91d647169f0fe980fbce08cb71a01087022fdab155bf32eca0'
+'SKIP')
+validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
+  '0AAC775BB6437A8D9AF7A3ACFE0784117FBCE11D'  # Bhushan Shah 

+  'D07BD8662C56CB291B316EB2F5675605C74E02CF'  # David Edmundson
+  '1FA881591C26B276D7A5518EEAAF29B42A678C20') # Marco Martin 

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


[arch-commits] Commit in kde-cli-tools/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2018-03-31 Thread Antonio Rojas via arch-commits
Date: Saturday, March 31, 2018 @ 20:53:45
  Author: arojas
Revision: 320733

archrelease: copy trunk to extra-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-03-31 20:53:28 UTC (rev 320732)
+++ PKGBUILD2018-03-31 20:53:45 UTC (rev 320733)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Maintainer: Antonio Rojas 
-# Contributor: Andrea Scarpino 
-
-pkgname=kde-cli-tools
-pkgver=5.12.4
-pkgrel=1
-pkgdesc="Tools based on KDE Frameworks 5 to better interact with the system"
-arch=(x86_64)
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=(LGPL)
-depends=(kdesu kcmutils kinit kactivities)
-makedepends=(extra-cmake-modules python kdoctools)
-groups=(plasma)
-source=("https://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('8b978ae3c5efd5072a635d3d075b0882904c0b547a768982df66a58873fad170'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '0AAC775BB6437A8D9AF7A3ACFE0784117FBCE11D'  # Bhushan Shah 

-  'D07BD8662C56CB291B316EB2F5675605C74E02CF'  # David Edmundson
-  '1FA881591C26B276D7A5518EEAAF29B42A678C20') # Marco Martin 

-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DCMAKE_INSTALL_LIBEXECDIR=lib \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-
-  ln -s /usr/lib/kf5/kdesu "$pkgdir"/usr/bin/
-}

Copied: kde-cli-tools/repos/extra-x86_64/PKGBUILD (from rev 320732, 
kde-cli-tools/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-03-31 20:53:45 UTC (rev 320733)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=kde-cli-tools
+pkgver=5.12.4
+pkgrel=1
+pkgdesc="Tools based on KDE Frameworks 5 to better interact with the system"
+arch=(x86_64)
+url='https://www.kde.org/workspaces/plasmadesktop/'
+license=(LGPL)
+depends=(kdesu kcmutils kinit kactivities)
+makedepends=(extra-cmake-modules python kdoctools)
+groups=(plasma)
+source=("https://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('8b978ae3c5efd5072a635d3d075b0882904c0b547a768982df66a58873fad170'
+'SKIP')
+validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
+  '0AAC775BB6437A8D9AF7A3ACFE0784117FBCE11D'  # Bhushan Shah 

+  'D07BD8662C56CB291B316EB2F5675605C74E02CF'  # David Edmundson
+  '1FA881591C26B276D7A5518EEAAF29B42A678C20') # Marco Martin 

+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DCMAKE_INSTALL_LIBEXECDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+
+  ln -s /usr/lib/kf5/kdesu "$pkgdir"/usr/bin/
+}


[arch-commits] Commit in kwin/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2018-03-31 Thread Antonio Rojas via arch-commits
Date: Saturday, March 31, 2018 @ 20:53:28
  Author: arojas
Revision: 320732

archrelease: copy trunk to extra-x86_64

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

--+
 PKGBUILD |   84 ++---
 1 file changed, 42 insertions(+), 42 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-03-31 20:53:14 UTC (rev 320731)
+++ PKGBUILD2018-03-31 20:53:28 UTC (rev 320732)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Maintainer: Antonio Rojas 
-# Contributor: Andrea Scarpino 
-
-pkgname=kwin
-pkgver=5.12.4
-pkgrel=1
-pkgdesc='An easy to use, but flexible, composited Window Manager'
-arch=(x86_64)
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=(LGPL)
-depends=(kscreenlocker xcb-util-cursor plasma-framework kcmutils breeze kinit 
qt5-sensors)
-makedepends=(extra-cmake-modules qt5-tools kdoctools python)
-optdepends=('qt5-virtualkeyboard: virtual keyboard support for kwin-wayland')
-groups=(plasma)
-source=("https://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('c8bda63cb1365351e10d8e871c330c494530a79ef23cb119dee653a5323b222f'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '0AAC775BB6437A8D9AF7A3ACFE0784117FBCE11D'  # Bhushan Shah 

-  'D07BD8662C56CB291B316EB2F5675605C74E02CF'  # David Edmundson
-  '1FA881591C26B276D7A5518EEAAF29B42A678C20') # Marco Martin 

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

Copied: kwin/repos/extra-x86_64/PKGBUILD (from rev 320731, kwin/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-03-31 20:53:28 UTC (rev 320732)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=kwin
+pkgver=5.12.4
+pkgrel=1
+pkgdesc='An easy to use, but flexible, composited Window Manager'
+arch=(x86_64)
+url='https://www.kde.org/workspaces/plasmadesktop/'
+license=(LGPL)
+depends=(kscreenlocker xcb-util-cursor plasma-framework kcmutils breeze kinit 
qt5-sensors)
+makedepends=(extra-cmake-modules qt5-tools kdoctools python)
+optdepends=('qt5-virtualkeyboard: virtual keyboard support for kwin-wayland')
+groups=(plasma)
+source=("https://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('c8bda63cb1365351e10d8e871c330c494530a79ef23cb119dee653a5323b222f'
+'SKIP')
+validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
+  '0AAC775BB6437A8D9AF7A3ACFE0784117FBCE11D'  # Bhushan Shah 

+  'D07BD8662C56CB291B316EB2F5675605C74E02CF'  # David Edmundson
+  '1FA881591C26B276D7A5518EEAAF29B42A678C20') # Marco Martin 

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


[arch-commits] Commit in libkscreen/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2018-03-31 Thread Antonio Rojas via arch-commits
Date: Saturday, March 31, 2018 @ 20:54:16
  Author: arojas
Revision: 320735

archrelease: copy trunk to extra-x86_64

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

--+
 PKGBUILD |   82 ++---
 1 file changed, 41 insertions(+), 41 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-03-31 20:54:02 UTC (rev 320734)
+++ PKGBUILD2018-03-31 20:54:16 UTC (rev 320735)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Maintainer: Antonio Rojas 
-# Contributor: Andrea Scarpino 
-
-pkgname=libkscreen
-pkgver=5.12.4
-pkgrel=1
-pkgdesc='KDE screen management software'
-arch=(x86_64)
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=(LGPL)
-depends=(qt5-x11extras libxrandr kwayland)
-makedepends=(extra-cmake-modules)
-groups=(plasma)
-source=("https://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('59634d2480732fe65e6318258de33f0d806f9fafafeb6bdf6fe4e37dfeaa05b7'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '0AAC775BB6437A8D9AF7A3ACFE0784117FBCE11D'  # Bhushan Shah 

-  'D07BD8662C56CB291B316EB2F5675605C74E02CF'  # David Edmundson
-  '1FA881591C26B276D7A5518EEAAF29B42A678C20') # Marco Martin 

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

Copied: libkscreen/repos/extra-x86_64/PKGBUILD (from rev 320734, 
libkscreen/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-03-31 20:54:16 UTC (rev 320735)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=libkscreen
+pkgver=5.12.4
+pkgrel=1
+pkgdesc='KDE screen management software'
+arch=(x86_64)
+url='https://www.kde.org/workspaces/plasmadesktop/'
+license=(LGPL)
+depends=(qt5-x11extras libxrandr kwayland)
+makedepends=(extra-cmake-modules)
+groups=(plasma)
+source=("https://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('59634d2480732fe65e6318258de33f0d806f9fafafeb6bdf6fe4e37dfeaa05b7'
+'SKIP')
+validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
+  '0AAC775BB6437A8D9AF7A3ACFE0784117FBCE11D'  # Bhushan Shah 

+  'D07BD8662C56CB291B316EB2F5675605C74E02CF'  # David Edmundson
+  '1FA881591C26B276D7A5518EEAAF29B42A678C20') # Marco Martin 

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


[arch-commits] Commit in libksysguard/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2018-03-31 Thread Antonio Rojas via arch-commits
Date: Saturday, March 31, 2018 @ 20:54:02
  Author: arojas
Revision: 320734

archrelease: copy trunk to extra-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-03-31 20:53:45 UTC (rev 320733)
+++ PKGBUILD2018-03-31 20:54:02 UTC (rev 320734)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Maintainer: Antonio Rojas 
-# Contributor: Andrea Scarpino 
-
-pkgname=libksysguard
-pkgver=5.12.4
-pkgrel=1
-pkgdesc='Libksysguard'
-arch=(x86_64)
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=(LGPL)
-depends=(libxres qt5-webkit kwindowsystem kconfigwidgets)
-makedepends=(extra-cmake-modules kdoctools python plasma-framework)
-groups=(plasma)
-source=("https://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('ed3a83435b85bb6b405cb2507b69ac5f21c793d2bb671889ee04c7de4876b826'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '0AAC775BB6437A8D9AF7A3ACFE0784117FBCE11D'  # Bhushan Shah 

-  'D07BD8662C56CB291B316EB2F5675605C74E02CF'  # David Edmundson
-  '1FA881591C26B276D7A5518EEAAF29B42A678C20') # Marco Martin 

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

Copied: libksysguard/repos/extra-x86_64/PKGBUILD (from rev 320733, 
libksysguard/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-03-31 20:54:02 UTC (rev 320734)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=libksysguard
+pkgver=5.12.4
+pkgrel=1
+pkgdesc='Libksysguard'
+arch=(x86_64)
+url='https://www.kde.org/workspaces/plasmadesktop/'
+license=(LGPL)
+depends=(libxres qt5-webkit kwindowsystem kconfigwidgets)
+makedepends=(extra-cmake-modules kdoctools python plasma-framework)
+groups=(plasma)
+source=("https://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('ed3a83435b85bb6b405cb2507b69ac5f21c793d2bb671889ee04c7de4876b826'
+'SKIP')
+validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
+  '0AAC775BB6437A8D9AF7A3ACFE0784117FBCE11D'  # Bhushan Shah 

+  'D07BD8662C56CB291B316EB2F5675605C74E02CF'  # David Edmundson
+  '1FA881591C26B276D7A5518EEAAF29B42A678C20') # Marco Martin 

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


[arch-commits] Commit in kscreen/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2018-03-31 Thread Antonio Rojas via arch-commits
Date: Saturday, March 31, 2018 @ 20:59:09
  Author: arojas
Revision: 320756

archrelease: copy trunk to extra-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-03-31 20:58:55 UTC (rev 320755)
+++ PKGBUILD2018-03-31 20:59:09 UTC (rev 320756)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Maintainer: Antonio Rojas 
-# Contributor: Andrea Scarpino 
-
-pkgname=kscreen
-pkgver=5.12.3
-pkgrel=1
-pkgdesc="KDE's screen management software"
-arch=(x86_64)
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=(LGPL)
-depends=(kxmlgui libkscreen qt5-graphicaleffects hicolor-icon-theme)
-makedepends=(extra-cmake-modules python)
-groups=(plasma)
-source=("https://download.kde.org/stable/plasma/$pkgver/kscreen-$pkgver.tar.xz"{,.sig})
-sha256sums=('49c7d6a6a8d716ad1d5ee23f5a68016f869206147cac86a9240aa5fe0fddefab'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '0AAC775BB6437A8D9AF7A3ACFE0784117FBCE11D'  # Bhushan Shah 

-  'D07BD8662C56CB291B316EB2F5675605C74E02CF'  # David Edmundson
-  '1FA881591C26B276D7A5518EEAAF29B42A678C20') # Marco Martin 

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

Copied: kscreen/repos/extra-x86_64/PKGBUILD (from rev 320755, 
kscreen/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-03-31 20:59:09 UTC (rev 320756)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=kscreen
+pkgver=5.12.4
+pkgrel=1
+pkgdesc="KDE's screen management software"
+arch=(x86_64)
+url='https://www.kde.org/workspaces/plasmadesktop/'
+license=(LGPL)
+depends=(kxmlgui libkscreen qt5-graphicaleffects hicolor-icon-theme)
+makedepends=(extra-cmake-modules python)
+groups=(plasma)
+source=("https://download.kde.org/stable/plasma/$pkgver/kscreen-$pkgver.tar.xz"{,.sig})
+sha256sums=('250cace7cd2cca780db0a63c448d6df5dd6037f68749cc36bce5c5b7dd433dde'
+'SKIP')
+validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
+  '0AAC775BB6437A8D9AF7A3ACFE0784117FBCE11D'  # Bhushan Shah 

+  'D07BD8662C56CB291B316EB2F5675605C74E02CF'  # David Edmundson
+  '1FA881591C26B276D7A5518EEAAF29B42A678C20') # Marco Martin 

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


[arch-commits] Commit in kwallet-pam/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2018-03-31 Thread Antonio Rojas via arch-commits
Date: Saturday, March 31, 2018 @ 20:59:36
  Author: arojas
Revision: 320758

archrelease: copy trunk to extra-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-03-31 20:59:23 UTC (rev 320757)
+++ PKGBUILD2018-03-31 20:59:36 UTC (rev 320758)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer:Antonio Rojas 
-
-pkgname=kwallet-pam
-pkgver=5.12.3
-pkgrel=1
-pkgdesc='KWallet PAM integration'
-arch=(x86_64)
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=(LGPL)
-depends=(pam libgcrypt socat)
-makedepends=(extra-cmake-modules qt5-base)
-groups=(plasma)
-source=("https://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('1fb31455f522b62315b8a51bb19471de00bfa52bf0d53f431949acc00ff5cd80'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '0AAC775BB6437A8D9AF7A3ACFE0784117FBCE11D'  # Bhushan Shah 

-  'D07BD8662C56CB291B316EB2F5675605C74E02CF'  # David Edmundson
-  '1FA881591C26B276D7A5518EEAAF29B42A678C20') # Marco Martin 

-
-prepare() {
-  mkdir -p build{,4}
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DCMAKE_INSTALL_LIBEXECDIR=lib
-  make
-
-  cd ../build4
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DCMAKE_INSTALL_LIBEXECDIR=lib \
--DKWALLET4=1
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-  cd ../build4
-  make DESTDIR="$pkgdir" install
-}

Copied: kwallet-pam/repos/extra-x86_64/PKGBUILD (from rev 320757, 
kwallet-pam/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-03-31 20:59:36 UTC (rev 320758)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer:Antonio Rojas 
+
+pkgname=kwallet-pam
+pkgver=5.12.4
+pkgrel=1
+pkgdesc='KWallet PAM integration'
+arch=(x86_64)
+url='https://www.kde.org/workspaces/plasmadesktop/'
+license=(LGPL)
+depends=(pam libgcrypt socat)
+makedepends=(extra-cmake-modules qt5-base)
+groups=(plasma)
+source=("https://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('58586c4d5fec26b68b086ef14d5ea0233a33979957d5c523199647ef27ee1d15'
+'SKIP')
+validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
+  '0AAC775BB6437A8D9AF7A3ACFE0784117FBCE11D'  # Bhushan Shah 

+  'D07BD8662C56CB291B316EB2F5675605C74E02CF'  # David Edmundson
+  '1FA881591C26B276D7A5518EEAAF29B42A678C20') # Marco Martin 

+
+prepare() {
+  mkdir -p build{,4}
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DCMAKE_INSTALL_LIBEXECDIR=lib
+  make
+
+  cd ../build4
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DCMAKE_INSTALL_LIBEXECDIR=lib \
+-DKWALLET4=1
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+  cd ../build4
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in kwayland-integration/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2018-03-31 Thread Antonio Rojas via arch-commits
Date: Saturday, March 31, 2018 @ 20:59:50
  Author: arojas
Revision: 320759

archrelease: copy trunk to extra-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-03-31 20:59:36 UTC (rev 320758)
+++ PKGBUILD2018-03-31 20:59:50 UTC (rev 320759)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer:Antonio Rojas 
-
-pkgname=kwayland-integration
-pkgver=5.12.3
-pkgrel=1
-pkgdesc='Provides integration plugins for various KDE frameworks for the 
wayland windowing system'
-arch=(x86_64)
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=(LGPL)
-depends=(kwindowsystem kidletime kwayland)
-makedepends=(extra-cmake-modules)
-groups=(plasma)
-source=("https://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('b1f59e9b29c69b4cc711323e990a86ff0a84efa4f5b03545752573a29b6da133'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '0AAC775BB6437A8D9AF7A3ACFE0784117FBCE11D'  # Bhushan Shah 

-  'D07BD8662C56CB291B316EB2F5675605C74E02CF'  # David Edmundson
-  '1FA881591C26B276D7A5518EEAAF29B42A678C20') # Marco Martin 

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

Copied: kwayland-integration/repos/extra-x86_64/PKGBUILD (from rev 320758, 
kwayland-integration/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-03-31 20:59:50 UTC (rev 320759)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer:Antonio Rojas 
+
+pkgname=kwayland-integration
+pkgver=5.12.4
+pkgrel=1
+pkgdesc='Provides integration plugins for various KDE frameworks for the 
wayland windowing system'
+arch=(x86_64)
+url='https://www.kde.org/workspaces/plasmadesktop/'
+license=(LGPL)
+depends=(kwindowsystem kidletime kwayland)
+makedepends=(extra-cmake-modules)
+groups=(plasma)
+source=("https://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('8aeae5633eff4728a4b18ba6e61dfde257459b95af4ab259149aea88a3089fd1'
+'SKIP')
+validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
+  '0AAC775BB6437A8D9AF7A3ACFE0784117FBCE11D'  # Bhushan Shah 

+  'D07BD8662C56CB291B316EB2F5675605C74E02CF'  # David Edmundson
+  '1FA881591C26B276D7A5518EEAAF29B42A678C20') # Marco Martin 

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


[arch-commits] Commit in kwrited/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2018-03-31 Thread Antonio Rojas via arch-commits
Date: Saturday, March 31, 2018 @ 21:00:07
  Author: arojas
Revision: 320760

archrelease: copy trunk to extra-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-03-31 20:59:50 UTC (rev 320759)
+++ PKGBUILD2018-03-31 21:00:07 UTC (rev 320760)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Maintainer: Antonio Rojas 
-# Contributor: Andrea Scarpino 
-
-pkgname=kwrited
-pkgver=5.12.3
-pkgrel=1
-pkgdesc='KDE daemon listening for wall and write messages'
-arch=(x86_64)
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=(LGPL)
-depends=(kpty knotifications kdbusaddons)
-makedepends=(extra-cmake-modules kdoctools python)
-groups=(plasma)
-source=("https://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('a12bba0388a881c3a725e69b59455e46e701644fa89dea15163305d738491dfa'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '0AAC775BB6437A8D9AF7A3ACFE0784117FBCE11D'  # Bhushan Shah 

-  'D07BD8662C56CB291B316EB2F5675605C74E02CF'  # David Edmundson
-  '1FA881591C26B276D7A5518EEAAF29B42A678C20') # Marco Martin 

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

Copied: kwrited/repos/extra-x86_64/PKGBUILD (from rev 320759, 
kwrited/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-03-31 21:00:07 UTC (rev 320760)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=kwrited
+pkgver=5.12.4
+pkgrel=1
+pkgdesc='KDE daemon listening for wall and write messages'
+arch=(x86_64)
+url='https://www.kde.org/workspaces/plasmadesktop/'
+license=(LGPL)
+depends=(kpty knotifications kdbusaddons)
+makedepends=(extra-cmake-modules kdoctools python)
+groups=(plasma)
+source=("https://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('fead2852cbafe7dfbe2e57f7a46c3e6ad5ab0c1f17be7d1da4d5baee77b55a54'
+'SKIP')
+validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
+  '0AAC775BB6437A8D9AF7A3ACFE0784117FBCE11D'  # Bhushan Shah 

+  'D07BD8662C56CB291B316EB2F5675605C74E02CF'  # David Edmundson
+  '1FA881591C26B276D7A5518EEAAF29B42A678C20') # Marco Martin 

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


[arch-commits] Commit in ksshaskpass/repos/extra-x86_64 (4 files)

2018-03-31 Thread Antonio Rojas via arch-commits
Date: Saturday, March 31, 2018 @ 20:59:23
  Author: arojas
Revision: 320757

archrelease: copy trunk to extra-x86_64

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

-+
 PKGBUILD|   85 --
 ksshaskpass.install |   10 ++---
 2 files changed, 47 insertions(+), 48 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-03-31 20:59:09 UTC (rev 320756)
+++ PKGBUILD2018-03-31 20:59:23 UTC (rev 320757)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Maintainer: Antonio Rojas 
-# Contributor: Andrea Scarpino 
-# Contributor: schuay 
-
-pkgname=ksshaskpass
-pkgver=5.12.3
-pkgrel=1
-pkgdesc='ssh-add helper that uses kwallet and kpassworddialog'
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=(GPL)
-arch=(x86_64)
-depends=(kwallet)
-makedepends=(extra-cmake-modules kdoctools python)
-provides=(x11-ssh-askpass)
-groups=(plasma)
-source=("https://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
-install=$pkgname.install
-sha256sums=('f0bc3f83952fd71d3bb0cd79f6c810d4d3357c79d4c71e3cec35c41bc2588f87'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '0AAC775BB6437A8D9AF7A3ACFE0784117FBCE11D'  # Bhushan Shah 

-  'D07BD8662C56CB291B316EB2F5675605C74E02CF'  # David Edmundson
-  '1FA881591C26B276D7A5518EEAAF29B42A678C20') # Marco Martin 

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

Copied: ksshaskpass/repos/extra-x86_64/PKGBUILD (from rev 320756, 
ksshaskpass/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-03-31 20:59:23 UTC (rev 320757)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+# Contributor: schuay 
+
+pkgname=ksshaskpass
+pkgver=5.12.4
+pkgrel=1
+pkgdesc='ssh-add helper that uses kwallet and kpassworddialog'
+url='https://www.kde.org/workspaces/plasmadesktop/'
+license=(GPL)
+arch=(x86_64)
+depends=(kwallet)
+makedepends=(extra-cmake-modules kdoctools python)
+provides=(x11-ssh-askpass)
+groups=(plasma)
+source=("https://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
+install=$pkgname.install
+sha256sums=('e59794af3cb9fcd4285049d229f82ce51fe535745ed3014f7b0445892e2e804c'
+'SKIP')
+validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
+  '0AAC775BB6437A8D9AF7A3ACFE0784117FBCE11D'  # Bhushan Shah 

+  'D07BD8662C56CB291B316EB2F5675605C74E02CF'  # David Edmundson
+  '1FA881591C26B276D7A5518EEAAF29B42A678C20') # Marco Martin 

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

Deleted: ksshaskpass.install
===
--- ksshaskpass.install 2018-03-31 20:59:09 UTC (rev 320756)
+++ ksshaskpass.install 2018-03-31 20:59:23 UTC (rev 320757)
@@ -1,5 +0,0 @@
-post_upgrade() {
-  if [[ $(vercmp 5.5.2-2 "$2") -eq 1 ]]; then
-echo "The SSH_ASKPASS environment variable is not exported by default 
anymore. Set it in /etc/profile to revert to the previous behavior"
-  fi
-}

Copied: ksshaskpass/repos/extra-x86_64/ksshaskpass.install (from rev 320756, 
ksshaskpass/trunk/ksshaskpass.install)
===
--- ksshaskpass.install (rev 0)
+++ ksshaskpass.install 2018-03-31 20:59:23 UTC (rev 320757)
@@ -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
+}


[arch-commits] Commit in plasma-pa/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2018-03-31 Thread Antonio Rojas via arch-commits
Date: Saturday, March 31, 2018 @ 21:01:13
  Author: arojas
Revision: 320763

archrelease: copy trunk to extra-x86_64

Added:
  plasma-pa/repos/extra-x86_64/PKGBUILD
(from rev 320762, plasma-pa/trunk/PKGBUILD)
Deleted:
  plasma-pa/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-03-31 21:00:54 UTC (rev 320762)
+++ PKGBUILD2018-03-31 21:01:13 UTC (rev 320763)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer:Antonio Rojas 
-
-pkgname=plasma-pa
-pkgver=5.12.3
-pkgrel=1
-pkgdesc='Plasma applet for audio volume management using PulseAudio'
-arch=(x86_64)
-url='https://www.kde.org/workspaces/plasmadesktop/'
-license=(LGPL)
-depends=(plasma-workspace pulseaudio-gconf libcanberra-pulse)
-makedepends=(extra-cmake-modules kdoctools python)
-groups=(plasma)
-source=("https://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('5444e69479c572db6115971f290c5fe82b20d15e9ad8ed9ae07618aee3019d4a'
-'SKIP')
-validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
-  '0AAC775BB6437A8D9AF7A3ACFE0784117FBCE11D'  # Bhushan Shah 

-  'D07BD8662C56CB291B316EB2F5675605C74E02CF'  # David Edmundson
-  '1FA881591C26B276D7A5518EEAAF29B42A678C20') # Marco Martin 

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

Copied: plasma-pa/repos/extra-x86_64/PKGBUILD (from rev 320762, 
plasma-pa/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-03-31 21:01:13 UTC (rev 320763)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer:Antonio Rojas 
+
+pkgname=plasma-pa
+pkgver=5.12.4
+pkgrel=1
+pkgdesc='Plasma applet for audio volume management using PulseAudio'
+arch=(x86_64)
+url='https://www.kde.org/workspaces/plasmadesktop/'
+license=(LGPL)
+depends=(plasma-workspace pulseaudio-gconf libcanberra-pulse)
+makedepends=(extra-cmake-modules kdoctools python)
+groups=(plasma)
+source=("https://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('a6f09665a90f08c86b1a2f020213e6bcc214eea7e3f671642ca49e9292c2cfd6'
+'SKIP')
+validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
+  '0AAC775BB6437A8D9AF7A3ACFE0784117FBCE11D'  # Bhushan Shah 

+  'D07BD8662C56CB291B316EB2F5675605C74E02CF'  # David Edmundson
+  '1FA881591C26B276D7A5518EEAAF29B42A678C20') # Marco Martin 

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


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

2018-03-31 Thread Antonio Rojas via arch-commits
Date: Saturday, March 31, 2018 @ 21:00:08
  Author: arojas
Revision: 313634

Update to 3.0.5

Modified:
  yakuake/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-03-31 20:47:05 UTC (rev 313633)
+++ PKGBUILD2018-03-31 21:00:08 UTC (rev 313634)
@@ -5,8 +5,8 @@
 # Contributor: leeghoofd 
 
 pkgname=yakuake
-pkgver=3.0.4
-pkgrel=2
+pkgver=3.0.5
+pkgrel=1
 pkgdesc="A drop-down terminal emulator based on KDE konsole technology"
 arch=('x86_64')
 url='https://yakuake.kde.org/'
@@ -13,30 +13,18 @@
 license=('GPL')
 depends=('konsole' 'knewstuff' 'kwayland' 'hicolor-icon-theme')
 makedepends=('extra-cmake-modules' 'python')
-source=("https://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.xz"{,.sig}
-
yakuake-wayland1.patch::"https://cgit.kde.org/yakuake.git/patch/?id=7534df21;
-
yakuake-wayland2.patch::"https://cgit.kde.org/yakuake.git/patch/?id=3cdc1d06;
-
yakuake-wayland3.patch::"https://cgit.kde.org/yakuake.git/patch/?id=5c555b3d;)
-sha256sums=('10e2b57c508e2ec5bfd09eac38c4c16a1ac4b93b394b3ce3120b7d8859b861e0'
-'SKIP'
-'0f5c7d10be914cf3ce5fc57cf635cf5ce6905c67ba5c439b306b9cbcf5914f46'
-'359aa9a723cb962a2511e16344fb92100c4c67ebde1276df4858526c9f85c2ef'
-'978fd631f7a02612a47360fd384c45b052fb445ad45d463af8e81e34f2a7ccd8')
+source=("https://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.xz"{,.sig})
+sha256sums=('08e23bd3ed58732bec44bf1b6797990bbdc58fad0725da7215db39f86c4d2a08'
+'SKIP')
 validpgpkeys=('DA6B31C4B98A877DBB2EF9A292220328C632316E') # Eike Hein 

 
 prepare() {
   mkdir -p build
-
-  cd $pkgname-$pkgver
-  patch -p1 -i ../yakuake-wayland1.patch # Fix positioning on wayland
-  patch -p1 -i ../yakuake-wayland2.patch
-  patch -p1 -i ../yakuake-wayland3.patch
 }
 
 build() {
   cd build
   cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
 -DCMAKE_INSTALL_PREFIX=/usr \
 -DBUILD_TESTING=OFF
   make


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

2018-03-31 Thread Baptiste Jonglez via arch-commits
Date: Saturday, March 31, 2018 @ 21:11:47
  Author: zorun
Revision: 313639

archrelease: copy trunk to community-staging-x86_64

Added:
  opendht/repos/community-staging-x86_64/
  opendht/repos/community-staging-x86_64/PKGBUILD
(from rev 313638, opendht/trunk/PKGBUILD)

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

Copied: opendht/repos/community-staging-x86_64/PKGBUILD (from rev 313638, 
opendht/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-03-31 21:11:47 UTC (rev 313639)
@@ -0,0 +1,49 @@
+# Maintainer: Baptiste Jonglez 
+pkgname=opendht
+pkgver=1.7.0rc4
+pkgrel=1
+epoch=1
+pkgdesc="A C++11 implementation of the Kademlia DHT (Distributed Hash Table)"
+arch=('x86_64')
+depends=('gnutls' 'nettle' 'readline' 'argon2' 'jsoncpp' 'restbed')
+makedepends=('msgpack-c' 'cmake' 'cython' 'systemd')
+optdepends=('python: to use the Python bindings')
+url="https://github.com/savoirfairelinux/opendht;
+license=('GPL3')
+source=("https://github.com/savoirfairelinux/opendht/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('17dbfcd16a699047bdd03586f4329f408c56c7bede42d28e25344c777fa0058b')
+sha512sums=('38cd7923e4530ce86d62cba452ff9d09c4406a2b1e4559bc309b62ba12c1810bdf8029a08fd6b347634b03cccd9ae4bf776dca72c5562b0a447ce57da20907ee')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  msg2 'Building...'
+  mkdir -p build
+  cd build
+  cmake .. \
+-DCMAKE_BUILD_TYPE=Release \
+-DOPENDHT_STATIC=OFF \
+-DOPENDHT_SYSTEMD=ON \
+-DOPENDHT_LTO=ON \
+-DOPENDHT_PYTHON=ON \
+-DOPENDHT_PROXY_SERVER=ON \
+-DOPENDHT_PROXY_CLIENT=ON \
+-DOPENDHT_PUSH_NOTIFICATIONS=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  msg2 'Installing...'
+  cd build
+  make DESTDIR="$pkgdir" install
+  cd ..
+
+  msg2 'Installing documentation...'
+  install -D -m644 README.md "${pkgdir}/usr/share/doc/opendht/README.md"
+}
+
+# vim:set ts=2 sw=2 et:


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

2018-03-31 Thread Baptiste Jonglez via arch-commits
Date: Saturday, March 31, 2018 @ 21:11:30
  Author: zorun
Revision: 313638

upgpkg: opendht 1:1.7.0rc4-1

Modified:
  opendht/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-03-31 21:03:14 UTC (rev 313637)
+++ PKGBUILD2018-03-31 21:11:30 UTC (rev 313638)
@@ -1,18 +1,18 @@
 # Maintainer: Baptiste Jonglez 
 pkgname=opendht
-pkgver=1.6.0rc2
+pkgver=1.7.0rc4
 pkgrel=1
 epoch=1
 pkgdesc="A C++11 implementation of the Kademlia DHT (Distributed Hash Table)"
 arch=('x86_64')
 depends=('gnutls' 'nettle' 'readline' 'argon2' 'jsoncpp' 'restbed')
-makedepends=('msgpack-c' 'cmake' 'cython')
+makedepends=('msgpack-c' 'cmake' 'cython' 'systemd')
 optdepends=('python: to use the Python bindings')
 url="https://github.com/savoirfairelinux/opendht;
 license=('GPL3')
 
source=("https://github.com/savoirfairelinux/opendht/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha256sums=('1e561e92ae7aacc2591b36caed89ca6701b30a43af6b046090f48c765b3ace06')
-sha512sums=('c12763350d63a63122fcfbe52d3d17644279f24a8ae3154db0e4924f050c4c32c027a238ea79940e647ab538f8aaa87f2bed139f6404551c27ca637e25ebdd86')
+sha256sums=('17dbfcd16a699047bdd03586f4329f408c56c7bede42d28e25344c777fa0058b')
+sha512sums=('38cd7923e4530ce86d62cba452ff9d09c4406a2b1e4559bc309b62ba12c1810bdf8029a08fd6b347634b03cccd9ae4bf776dca72c5562b0a447ce57da20907ee')
 
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"


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

2018-03-31 Thread Baptiste Jonglez via arch-commits
Date: Saturday, March 31, 2018 @ 21:12:29
  Author: zorun
Revision: 313640

upgpkg: ring-daemon 2:20180330.1.0d611bb-1

Modified:
  ring-daemon/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-03-31 21:11:47 UTC (rev 313639)
+++ PKGBUILD2018-03-31 21:12:29 UTC (rev 313640)
@@ -1,7 +1,7 @@
 # Maintainer: Baptiste Jonglez 
 
 pkgname=ring-daemon
-pkgver=20180216.1.63fd90f
+pkgver=20180330.1.0d611bb
 pkgrel=1
 epoch=2
 _pjprojectver=2.6
@@ -16,7 +16,7 @@
  'libsecp256k1' 'util-linux' 'opus')
 makedepends=('git' 'boost' 'msgpack-c' 'autoconf-archive')
 #checkdepends=('cppunit')
-source=("git+https://gerrit-ring.savoirfairelinux.com/ring-daemon#commit=5ebe2918a192e7b7ed0fc771f80c35fd81395464;
+source=("git+https://gerrit-ring.savoirfairelinux.com/ring-daemon#commit=1026c687d06dfef6dba7f94bf5463e7492fa0329;
 
"http://www.pjsip.org/release/${_pjprojectver}/pjproject-${_pjprojectver}.tar.bz2;)
 noextract=("pjproject-${_pjprojectver}.tar.bz2")
 sha256sums=('SKIP'


[arch-commits] Commit in (5 files)

2018-03-31 Thread David Runge via arch-commits
Date: Saturday, March 31, 2018 @ 22:03:51
  Author: dvzrv
Revision: 313657

Adding rt-tests 1.1

Added:
  rt-tests/
  rt-tests/repos/
  rt-tests/trunk/
  rt-tests/trunk/PKGBUILD
  rt-tests/trunk/use-the-ftrace-hwlatdetector.patch

+
 PKGBUILD   |   33 ++
 use-the-ftrace-hwlatdetector.patch |  539 +++
 2 files changed, 572 insertions(+)

Added: rt-tests/trunk/PKGBUILD
===
--- rt-tests/trunk/PKGBUILD (rev 0)
+++ rt-tests/trunk/PKGBUILD 2018-03-31 22:03:51 UTC (rev 313657)
@@ -0,0 +1,33 @@
+# Maintainer: David Runge 
+# Contributor: Joakim Hernberg 
+
+pkgname=rt-tests
+pkgver=1.1
+pkgrel=2
+pkgdesc="A collection of latency testing tools for the linux(-rt) kernel"
+arch=('x86_64')
+url="https://git.kernel.org/pub/scm/utils/rt-tests/rt-tests.git/about/;
+license=('GPL2')
+depends=('python2' 'numactl')
+source=("https://git.kernel.org/pub/scm/utils/${pkgname}/${pkgname}.git/snapshot/${pkgname}-1.1.tar.gz;
+'use-the-ftrace-hwlatdetector.patch')
+sha512sums=('2698bf131b21e9e632ffb4605d965f0e1158b5b3c332c9b8ca71f34a2eeb72cc5c5a18932aaf8ce9e5d03b8a81330d0e8306b99f321852b1234a80f7bf8fce2c'
+
'7ecf0a90cc9b37d3faf6572f33877f2e361c3d14959c8cec21a562fb01e75141e97be236b41076174c3d5353b9820f59e2e02f6d8e40af90f97e70abf4790470')
+
+prepare() {
+  cd "${pkgname}-${pkgver}"
+  sed -i s/'shell python'/'shell python2'/ Makefile
+  sed -i 's/python/python2/' src/hwlatdetect/hwlatdetect.py
+}
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  make
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  make prefix=/usr DESTDIR="${pkgdir}" install
+  install -vDm 644 {MAINTAINERS,README.markdown} \
+-t "${pkgdir}/usr/share/doc/${pkgname}"
+}


Property changes on: rt-tests/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: rt-tests/trunk/use-the-ftrace-hwlatdetector.patch
===
--- rt-tests/trunk/use-the-ftrace-hwlatdetector.patch   
(rev 0)
+++ rt-tests/trunk/use-the-ftrace-hwlatdetector.patch   2018-03-31 22:03:51 UTC 
(rev 313657)
@@ -0,0 +1,539 @@
+diff --git a/src/hwlatdetect/hwlatdetect.py b/src/hwlatdetect/hwlatdetect.py
+index e08c798..6c6687f 100755
+--- a/src/hwlatdetect/hwlatdetect.py
 b/src/hwlatdetect/hwlatdetect.py
+@@ -1,6 +1,6 @@
+ #!/usr/bin/python
+ 
+-# (C) 2015 Clark Williams 
++# (C) 2015,2016 Clark Williams 
+ # (C) 2009 Clark Williams 
+ #
+ # This program is free software; you can redistribute it and/or
+@@ -16,7 +16,7 @@ import subprocess
+ import errno
+ import os.path
+ 
+-version = "0.6"
++version = "0.7"
+ debugging = False
+ quiet = False
+ watch = False
+@@ -113,87 +113,81 @@ class DebugFS(object):
+ # leave it alone when cleaning up.
+ #
+ class Kmod(object):
+-''' class to manage loading and unloading hwlat.ko'''
++''' class to manage loading and unloading of kernel modules'''
+ 
+ names = ("hwlat_detector", "smi_detector")
+ def __check_builtin(self):
+ for l in open(os.path.join('/lib/modules', os.uname()[2], 
'modules.builtin'), "r"):
+-for m in Kmod.names:
+-if m in l:
+-debug("found %s as builtin" % m)
+-return m
+-return None
+-
+-def __find_modname(self):
+-debug("looking for modules")
++if self.name in l:
++debug("found %s as builtin" % self.namename)
++return True
++return False
++
++def __find_module(self):
++debug("looking for module %s" % self.name)
+ path = os.path.join("/lib/modules",
+ os.uname()[2],
+ "kernel/drivers/misc")
+ debug("module path: %s" % path)
+-for m in Kmod.names:
+-mpath = os.path.join(path, m) + ".ko"
+-debug("checking %s" % mpath)
+-if os.path.exists(mpath):
+-return m
+-raise RuntimeError("no detector module found!")
++mpath = os.path.join(path, self.name) + ".ko"
++debug("checking %s" % mpath)
++if os.path.exists(mpath):
++return True
++return False
+ 
+-def __init__(self):
++def __init__(self, name):
++if name not in Kmod.names:
++raise RuntimeError, "unsupported module name: %s" % name
++self.name = name
+ self.preloaded = False
+ self.builtin = False
+ 
+ # check for builtin
+-self.modname = self.__check_builtin()
+-if self.modname:
++if self.__check_builtin():
+ self.builtin = True
+ return
+ 
+-# now look for 

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

2018-03-31 Thread Antonio Rojas via arch-commits
Date: Saturday, March 31, 2018 @ 23:05:48
  Author: arojas
Revision: 320774

Update to 5.6.2

Modified:
  unrar/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-03-31 22:15:05 UTC (rev 320773)
+++ PKGBUILD2018-03-31 23:05:48 UTC (rev 320774)
@@ -5,7 +5,7 @@
 
 pkgbase=unrar
 pkgname=(unrar libunrar)
-pkgver=5.6.1
+pkgver=5.6.2
 pkgrel=1
 epoch=1
 arch=(x86_64)
@@ -12,7 +12,7 @@
 url="http://www.rarlab.com/rar_add.htm;
 license=(custom)
 source=("http://www.rarlab.com/rar/unrarsrc-${pkgver}.tar.gz;)
-sha256sums=('67c339dffa95f6c1bedcca40045e99de5852919dbfaa06e4a9c8f18cd5064e70')
+sha256sums=('ce048094764b2377dd60802359c74f03528b6d7defd808cd584443c5fd2de948')
 
 build() {
   cp -a unrar libunrar


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

2018-03-31 Thread Antonio Rojas via arch-commits
Date: Saturday, March 31, 2018 @ 23:16:01
  Author: arojas
Revision: 313661

Update to 4.1.1.p1

Modified:
  singular/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-03-31 22:59:06 UTC (rev 313660)
+++ PKGBUILD2018-03-31 23:16:01 UTC (rev 313661)
@@ -4,10 +4,10 @@
 
 pkgname=singular
 _majver=4-1-1
-#_patchver=4
-#pkgver=${_majver//-/.}.p${_patchver}
-pkgver=${_majver//-/.}
-pkgrel=3
+_patchver=1
+pkgver=${_majver//-/.}.p${_patchver}
+#pkgver=${_majver//-/.}
+pkgrel=1
 pkgdesc="Computer Algebra System for polynomial computations"
 arch=(x86_64)
 url="http://www.singular.uni-kl.de/;
@@ -15,20 +15,11 @@
 depends=(flint cddlib) # polymake
 makedepends=(doxygen python2)
 optdepends=('python2: Python interface')
-#source=("http://www.mathematik.uni-kl.de/ftp/pub/Math/Singular/SOURCES/$_majver/singular-${_majver//-/.}p${_patchver}.tar.gz;)
-source=("http://www.mathematik.uni-kl.de/ftp/pub/Math/Singular/SOURCES/$_majver/singular-${_majver//-/.}.tar.gz;
-
singular-log2.patch::https://github.com/Singular/Sources/commit/0803a180.patch)
-sha256sums=('3792c5707b60c1748298bf47e2277de20303d60563b797372cc0e1eff4bbc583'
-'d985b80da4f0c20eb014093e74f59be7bcb36b25292b8b6c24df180684418489')
+source=("http://www.mathematik.uni-kl.de/ftp/pub/Math/Singular/SOURCES/$_majver/singular-${_majver//-/.}p${_patchver}.tar.gz;)
+#source=("http://www.mathematik.uni-kl.de/ftp/pub/Math/Singular/SOURCES/$_majver/singular-${_majver//-/.}.tar.gz;)
+sha256sums=('c1596d15b51a0c9b4162f030f21785b6a3ebc8de75645063bdf39f15e8f96f73')
 options=(!zipman)
 
-prepare() {
-  cd singular-${_majver//-/.}
-  
-# Rename macro that conflicts with PARI
-  patch -p1 -i ../singular-log2.patch
-}
-
 build() {
   cd singular-${_majver//-/.}
   ./configure --prefix=/usr --libexecdir=/usr/lib


[arch-commits] Commit in singular/repos/community-x86_64 (PKGBUILD PKGBUILD)

2018-03-31 Thread Antonio Rojas via arch-commits
Date: Saturday, March 31, 2018 @ 23:16:31
  Author: arojas
Revision: 313662

archrelease: copy trunk to community-x86_64

Added:
  singular/repos/community-x86_64/PKGBUILD
(from rev 313661, singular/trunk/PKGBUILD)
Deleted:
  singular/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-03-31 23:16:01 UTC (rev 313661)
+++ PKGBUILD2018-03-31 23:16:31 UTC (rev 313662)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-# Contributor: Rémy Oudompheng 
-
-pkgname=singular
-_majver=4-1-1
-#_patchver=4
-#pkgver=${_majver//-/.}.p${_patchver}
-pkgver=${_majver//-/.}
-pkgrel=3
-pkgdesc="Computer Algebra System for polynomial computations"
-arch=(x86_64)
-url="http://www.singular.uni-kl.de/;
-license=(GPL)
-depends=(flint cddlib) # polymake
-makedepends=(doxygen python2)
-optdepends=('python2: Python interface')
-#source=("http://www.mathematik.uni-kl.de/ftp/pub/Math/Singular/SOURCES/$_majver/singular-${_majver//-/.}p${_patchver}.tar.gz;)
-source=("http://www.mathematik.uni-kl.de/ftp/pub/Math/Singular/SOURCES/$_majver/singular-${_majver//-/.}.tar.gz;
-
singular-log2.patch::https://github.com/Singular/Sources/commit/0803a180.patch)
-sha256sums=('3792c5707b60c1748298bf47e2277de20303d60563b797372cc0e1eff4bbc583'
-'d985b80da4f0c20eb014093e74f59be7bcb36b25292b8b6c24df180684418489')
-options=(!zipman)
-
-prepare() {
-  cd singular-${_majver//-/.}
-  
-# Rename macro that conflicts with PARI
-  patch -p1 -i ../singular-log2.patch
-}
-
-build() {
-  cd singular-${_majver//-/.}
-  ./configure --prefix=/usr --libexecdir=/usr/lib
-  make
-}
-
-package() {
-  cd singular-${_majver//-/.}
-  make DESTDIR="$pkgdir" install
-
-  # Fix ownership
-  chown -R root:root "$pkgdir"/usr/share/singular/html "$pkgdir"/usr/share/info
-}

Copied: singular/repos/community-x86_64/PKGBUILD (from rev 313661, 
singular/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-03-31 23:16:31 UTC (rev 313662)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Contributor: Rémy Oudompheng 
+
+pkgname=singular
+_majver=4-1-1
+_patchver=1
+pkgver=${_majver//-/.}.p${_patchver}
+#pkgver=${_majver//-/.}
+pkgrel=1
+pkgdesc="Computer Algebra System for polynomial computations"
+arch=(x86_64)
+url="http://www.singular.uni-kl.de/;
+license=(GPL)
+depends=(flint cddlib) # polymake
+makedepends=(doxygen python2)
+optdepends=('python2: Python interface')
+source=("http://www.mathematik.uni-kl.de/ftp/pub/Math/Singular/SOURCES/$_majver/singular-${_majver//-/.}p${_patchver}.tar.gz;)
+#source=("http://www.mathematik.uni-kl.de/ftp/pub/Math/Singular/SOURCES/$_majver/singular-${_majver//-/.}.tar.gz;)
+sha256sums=('c1596d15b51a0c9b4162f030f21785b6a3ebc8de75645063bdf39f15e8f96f73')
+options=(!zipman)
+
+build() {
+  cd singular-${_majver//-/.}
+  ./configure --prefix=/usr --libexecdir=/usr/lib
+  make
+}
+
+package() {
+  cd singular-${_majver//-/.}
+  make DESTDIR="$pkgdir" install
+
+  # Fix ownership
+  chown -R root:root "$pkgdir"/usr/share/singular/html "$pkgdir"/usr/share/info
+}


[arch-commits] Commit in qalculate-gtk/repos (staging-x86_64 staging-x86_64/PKGBUILD)

2018-03-31 Thread Antonio Rojas via arch-commits
Date: Saturday, March 31, 2018 @ 23:30:34
  Author: arojas
Revision: 320781

archrelease: copy trunk to staging-x86_64

Added:
  qalculate-gtk/repos/staging-x86_64/
  qalculate-gtk/repos/staging-x86_64/PKGBUILD
(from rev 320780, qalculate-gtk/trunk/PKGBUILD)

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

Copied: qalculate-gtk/repos/staging-x86_64/PKGBUILD (from rev 320780, 
qalculate-gtk/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2018-03-31 23:30:34 UTC (rev 320781)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=qalculate-gtk
+pkgver=2.3.0
+pkgrel=1
+pkgdesc="GNOME frontend for libqalculate"
+arch=('x86_64')
+url="http://qalculate.github.io/;
+license=('GPL')
+depends=('libqalculate' 'gtk3')
+makedepends=('intltool' 'rarian')
+optdepends=('yelp: for displaying the help')
+options=('!makeflags')
+source=(https://github.com/Qalculate/qalculate-gtk/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz)
+sha1sums=('f3e7e52c7865087207e684ed0b8fcdb81e89f15a')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}


[arch-commits] Commit in cantor/repos/kde-unstable-x86_64 (PKGBUILD PKGBUILD)

2018-03-31 Thread Antonio Rojas via arch-commits
Date: Saturday, March 31, 2018 @ 23:50:23
  Author: arojas
Revision: 320796

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

Added:
  cantor/repos/kde-unstable-x86_64/PKGBUILD
(from rev 320795, cantor/kde-unstable/PKGBUILD)
Deleted:
  cantor/repos/kde-unstable-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-03-31 23:49:47 UTC (rev 320795)
+++ PKGBUILD2018-03-31 23:50:23 UTC (rev 320796)
@@ -1,48 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Maintainer: Antonio Rojas 
-# Contributor: Andrea Scarpino 
-
-pkgname=cantor
-pkgver=18.03.80
-pkgrel=1
-pkgdesc="KDE Frontend to Mathematical Software"
-url="https://kde.org/applications/education/cantor/;
-arch=(x86_64)
-license=(GPL LGPL FDL)
-groups=(kde-applications kdeedu)
-depends=(analitza libspectre kpty ktexteditor knewstuff libqalculate 
hicolor-icon-theme)
-makedepends=(extra-cmake-modules python python2 kdoctools luajit r julia)
-optdepends=('maxima: Maxima backend'
-'octave: Octave backend'
-'r: R backend'
-'luajit: LUA backend'
-'python: Python 3 backend'
-   'python2: Python 2 backend'
-'sagemath: SageMath backend'
-'julia: Julia backend')
-source=("https://download.kde.org/unstable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('cd12c2f79ab8f9f0858044916c53aea731826beec6add272cc9558dccc4980ca'
-'SKIP')
-validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

-  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck 

-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DBUILD_TESTING=OFF \
--DPYTHON_INCLUDE_DIR=/usr/include/python2.7 \
--DPYTHON_LIBRARY=/usr/lib/libpython2.7.so
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: cantor/repos/kde-unstable-x86_64/PKGBUILD (from rev 320795, 
cantor/kde-unstable/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-03-31 23:50:23 UTC (rev 320796)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=cantor
+pkgver=18.03.80
+pkgrel=2
+pkgdesc="KDE Frontend to Mathematical Software"
+url="https://kde.org/applications/education/cantor/;
+arch=(x86_64)
+license=(GPL LGPL FDL)
+groups=(kde-applications kdeedu)
+depends=(analitza libspectre kpty ktexteditor knewstuff libqalculate 
hicolor-icon-theme)
+makedepends=(extra-cmake-modules python python2 kdoctools luajit r julia)
+optdepends=('maxima: Maxima backend'
+'octave: Octave backend'
+'r: R backend'
+'luajit: LUA backend'
+'python: Python 3 backend'
+   'python2: Python 2 backend'
+'sagemath: SageMath backend'
+'julia: Julia backend')
+source=("https://download.kde.org/unstable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('cd12c2f79ab8f9f0858044916c53aea731826beec6add272cc9558dccc4980ca'
+'SKIP')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

+  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck 

+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF \
+-DPYTHON_INCLUDE_DIR=/usr/include/python2.7 \
+-DPYTHON_LIBRARY=/usr/lib/libpython2.7.so
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in cantor/kde-unstable (PKGBUILD)

2018-03-31 Thread Antonio Rojas via arch-commits
Date: Saturday, March 31, 2018 @ 23:49:47
  Author: arojas
Revision: 320795

libqalculate 2.3.0 rebuild

Modified:
  cantor/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-03-31 23:47:34 UTC (rev 320794)
+++ PKGBUILD2018-03-31 23:49:47 UTC (rev 320795)
@@ -5,7 +5,7 @@
 
 pkgname=cantor
 pkgver=18.03.80
-pkgrel=1
+pkgrel=2
 pkgdesc="KDE Frontend to Mathematical Software"
 url="https://kde.org/applications/education/cantor/;
 arch=(x86_64)


[arch-commits] Commit in perl-filesys-df/repos/community-testing-x86_64 (2 files)

2018-03-31 Thread Fabio Castelli via arch-commits
Date: Sunday, April 1, 2018 @ 00:36:56
  Author: muflone
Revision: 313669

archrelease: copy trunk to community-testing-x86_64

Added:
  perl-filesys-df/repos/community-testing-x86_64/PKGBUILD
(from rev 313668, perl-filesys-df/trunk/PKGBUILD)
Deleted:
  perl-filesys-df/repos/community-testing-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-04-01 00:36:13 UTC (rev 313668)
+++ PKGBUILD2018-04-01 00:36:56 UTC (rev 313669)
@@ -1,28 +0,0 @@
-# $Id
-# Maintainer: Muflone http://www.muflone.com/contacts/english/
-# Contributor: Ian Guthrie 
-# Contributor: der_FeniX 
-
-pkgname=perl-filesys-df
-_perl_module=Filesys-Df
-pkgver=0.92
-pkgrel=4
-pkgdesc="Perl extension for filesystem disk space information"
-arch=('x86_64')
-url="https://metacpan.org/release/${_perl_module};
-license=('GPL3')
-depends=('perl')
-source=("https://cpan.metacpan.org/authors/id/I/IG/IGUTHRIE/${_perl_module}-${pkgver}.tar.gz;)
-sha256sums=('fe89cbb427e0e05f1cd97c2dd6d3866ac6b21bc7a85734ede159bdc35479552a')
-options=('!emptydirs')
-
-build() {
-   cd "${_perl_module}-${pkgver}"
-   perl Makefile.PL
-   make
-}
-
-package() {
-   cd "${_perl_module}-${pkgver}"
-   make pure_install DESTDIR="${pkgdir}"
-}

Copied: perl-filesys-df/repos/community-testing-x86_64/PKGBUILD (from rev 
313668, perl-filesys-df/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-04-01 00:36:56 UTC (rev 313669)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Muflone http://www.muflone.com/contacts/english/
+# Contributor: Ian Guthrie 
+# Contributor: der_FeniX 
+
+pkgname=perl-filesys-df
+_perl_module=Filesys-Df
+pkgver=0.92
+pkgrel=4
+pkgdesc="Perl extension for filesystem disk space information"
+arch=('x86_64')
+url="https://metacpan.org/release/${_perl_module};
+license=('GPL3')
+depends=('perl')
+source=("https://cpan.metacpan.org/authors/id/I/IG/IGUTHRIE/${_perl_module}-${pkgver}.tar.gz;)
+sha256sums=('fe89cbb427e0e05f1cd97c2dd6d3866ac6b21bc7a85734ede159bdc35479552a')
+options=('!emptydirs')
+
+build() {
+   cd "${_perl_module}-${pkgver}"
+   perl Makefile.PL
+   make
+}
+
+package() {
+   cd "${_perl_module}-${pkgver}"
+   make pure_install DESTDIR="${pkgdir}"
+}


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

2018-03-31 Thread Jan Steffens via arch-commits
Date: Sunday, April 1, 2018 @ 00:55:21
  Author: heftig
Revision: 320797

3.22.29+60+ge42d8598ca-1

Modified:
  gtk3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-03-31 23:50:23 UTC (rev 320796)
+++ PKGBUILD2018-04-01 00:55:21 UTC (rev 320797)
@@ -4,7 +4,7 @@
 
 pkgbase=gtk3
 pkgname=(gtk3 gtk-update-icon-cache)
-pkgver=3.22.29+4+gb485cf91b5
+pkgver=3.22.29+60+ge42d8598ca
 pkgrel=1
 pkgdesc="GObject-based multi-platform GUI toolkit"
 arch=(x86_64)
@@ -12,10 +12,10 @@
 depends=(atk cairo libxcursor libxinerama libxrandr libxi libepoxy gdk-pixbuf2 
dconf
  libxcomposite libxdamage pango shared-mime-info at-spi2-atk wayland 
libxkbcommon
  adwaita-icon-theme json-glib librsvg wayland-protocols 
desktop-file-utils mesa
- cantarell-fonts colord rest libcups libcanberra libcloudproviders)
+ cantarell-fonts colord rest libcups libcanberra)
 makedepends=(gobject-introspection gtk-doc git glib2-docs sassc)
 license=(LGPL)
-_commit=b485cf91b53cd21fad8b4ff35fef53e4d1a9f009  # gtk-3-22
+_commit=e42d8598ca892587a1029c458a19c86fd4867877  # gtk-3-22
 source=("git+https://gitlab.gnome.org/GNOME/gtk.git#commit=$_commit;
 settings.ini
 gtk-query-immodules-3.0.hook
@@ -44,7 +44,6 @@
 --sysconfdir=/etc \
 --localstatedir=/var \
 --disable-schemas-compile \
---enable-cloudproviders \
 --enable-x11-backend \
 --enable-broadway-backend \
 --enable-wayland-backend \
@@ -83,4 +82,4 @@
   install -D ../gtk-update-icon-cache.script 
"$pkgdir/usr/share/libalpm/scripts/gtk-update-icon-cache"
 }
 
-# vim:set et sw=2:
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in perl-filesys-df/trunk (PKGBUILD)

2018-03-31 Thread Fabio Castelli via arch-commits
Date: Sunday, April 1, 2018 @ 01:44:33
  Author: muflone
Revision: 313682

upgpkg: perl-filesys-df 0.92-6

Modified:
  perl-filesys-df/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-04-01 01:41:48 UTC (rev 313681)
+++ PKGBUILD2018-04-01 01:44:33 UTC (rev 313682)
@@ -10,7 +10,7 @@
 pkgrel=6
 pkgdesc="Perl extension for filesystem disk space information"
 arch=('x86_64')
-url="https://metacpan.org/release/${_perl_module};
+url="https://metacpan.org/release/${_perl_namespace}-${_perl_module};
 license=('PerlArtistic' 'GPL')
 depends=('perl')
 
source=("https://www.cpan.org/modules/by-module/${_perl_namespace}/${_perl_namespace}-${_perl_module}-${pkgver}.tar.gz;)


[arch-commits] Commit in wine-staging-nine/repos/multilib-x86_64 (12 files)

2018-03-31 Thread Laurent Carlier via arch-commits
Date: Saturday, March 31, 2018 @ 19:04:56
  Author: lcarlier
Revision: 313618

archrelease: copy trunk to multilib-x86_64

Added:
  wine-staging-nine/repos/multilib-x86_64/30-win32-aliases.conf
(from rev 313617, wine-staging-nine/trunk/30-win32-aliases.conf)
  wine-staging-nine/repos/multilib-x86_64/PKGBUILD
(from rev 313617, wine-staging-nine/trunk/PKGBUILD)
  wine-staging-nine/repos/multilib-x86_64/harmony-fix.diff
(from rev 313617, wine-staging-nine/trunk/harmony-fix.diff)
  wine-staging-nine/repos/multilib-x86_64/steam.patch
(from rev 313617, wine-staging-nine/trunk/steam.patch)
  wine-staging-nine/repos/multilib-x86_64/wine-binfmt.conf
(from rev 313617, wine-staging-nine/trunk/wine-binfmt.conf)
  wine-staging-nine/repos/multilib-x86_64/wine.install
(from rev 313617, wine-staging-nine/trunk/wine.install)
Deleted:
  wine-staging-nine/repos/multilib-x86_64/30-win32-aliases.conf
  wine-staging-nine/repos/multilib-x86_64/PKGBUILD
  wine-staging-nine/repos/multilib-x86_64/harmony-fix.diff
  wine-staging-nine/repos/multilib-x86_64/steam.patch
  wine-staging-nine/repos/multilib-x86_64/wine-binfmt.conf
  wine-staging-nine/repos/multilib-x86_64/wine.install

---+
 30-win32-aliases.conf |   40 ++--
 PKGBUILD  |  412 
 harmony-fix.diff  |  126 +++---
 steam.patch   |   78 -
 wine-binfmt.conf  |4 
 wine.install  |   14 -
 6 files changed, 337 insertions(+), 337 deletions(-)

Deleted: 30-win32-aliases.conf
===
--- 30-win32-aliases.conf   2018-03-31 19:04:43 UTC (rev 313617)
+++ 30-win32-aliases.conf   2018-03-31 19:04:56 UTC (rev 313618)
@@ -1,20 +0,0 @@
-
-
-
-  
-MS Shell Dlg
-Microsoft Sans Serif
-sans-serif
-  
-  
-MS Shell Dlg 2
-Tahoma
-sans-serif
-  
-
-  
-MS Sans Serif
-Microsoft Sans Serif
-sans-serif
-  
-

Copied: wine-staging-nine/repos/multilib-x86_64/30-win32-aliases.conf (from rev 
313617, wine-staging-nine/trunk/30-win32-aliases.conf)
===
--- 30-win32-aliases.conf   (rev 0)
+++ 30-win32-aliases.conf   2018-03-31 19:04:56 UTC (rev 313618)
@@ -0,0 +1,20 @@
+
+
+
+  
+MS Shell Dlg
+Microsoft Sans Serif
+sans-serif
+  
+  
+MS Shell Dlg 2
+Tahoma
+sans-serif
+  
+
+  
+MS Sans Serif
+Microsoft Sans Serif
+sans-serif
+  
+

Deleted: PKGBUILD
===
--- PKGBUILD2018-03-31 19:04:43 UTC (rev 313617)
+++ PKGBUILD2018-03-31 19:04:56 UTC (rev 313618)
@@ -1,206 +0,0 @@
-# $Id$
-# Maintainer: Laurent Carlier 
-# Contributor: Felix Yan 
-# Contributor: Sven-Hendrik Haase 
-# Contributor: Jan "heftig" Steffens 
-# Contributor: Eduardo Romero 
-# Contributor: Giovanni Scafora 
-
-pkgname=wine-staging-nine
-pkgver=3.4
-pkgrel=1
-
-_pkgbasever=${pkgver/rc/-rc}
-_ninepatchver=${pkgver}
-#_ninepatchver=3.3
-
-source=(https://dl.winehq.org/wine/source/3.x/wine-$_pkgbasever.tar.xz{,.sign}
-
"wine-staging-v$_pkgbasever.tar.gz::https://github.com/wine-staging/wine-staging/archive/v$_pkgbasever.tar.gz;
-
"https://github.com/sarnex/wine-d3d9-patches/archive/wine-d3d9-$_ninepatchver.tar.gz;
-30-win32-aliases.conf
-wine-binfmt.conf
-harmony-fix.diff
-steam.patch)
-sha512sums=('5787bf3fa13d363302ee26f86b96ed728b2b06184572021efdbb00b2c8ebd088056c6d9e22c6c78f0edc0a0b12e26fa51f08970c8c5eaab4309e86b4286c'
-'SKIP'
-
'f0cc2b3d91589a4d9536c1011001edf7db428387592407a64949381c0ac2f0bb79b0fbf04d3c85db50adbecba716188a8249e1ff166b5ec3004d9eb5f9e92f3f'
-
'e38e5d1f5f1e980b896a0b0d2d51c59cac15c6e450d0ba5621ca7bca4df7b470857c0c2bf737273647ef44f9252a794c26b82b20b233a95277d97df93b40efd7'
-
'6e54ece7ec7022b3c9d94ad64bdf1017338da16c618966e8baf398e6f18f80f7b0576edf1d1da47ed77b96d577e4cbb2bb0156b0b11c183a0accf22654b0a2bb'
-
'bdde7ae015d8a98ba55e84b86dc05aca1d4f8de85be7e4bd6187054bfe4ac83b5a20538945b63fb073caab78022141e9545685e4e3698c97ff173cf30859e285'
-
'b86edf07bfc560f403fdfd5a71f97930ee2a4c3f76c92cc1a0dbb2e107be9db3bed3a727a0430d8a049583c63dd11f5d4567fb7aa69b193997c6da241acc4f2e'
-
'f3e42a0720777256ca583f96044f6482aae8f4c707189104216f86f6c7a1b68a186c5124c72866229d46eb66c20c555ba9f32a230ec50f968faa8a12b8372b0a')
-validpgpkeys=(5AC1A08B03BD7A313E0A955AF5E6E9EEB9461DD7
-  DA23579A74D4AD9AF9D3F945CEFAC8EAAF17519D)
-
-pkgdesc="A compatibility layer for running Windows programs - Staging branch 
with the gallium-nine patches"
-url="http://www.wine-staging.com;
-arch=(x86_64)
-options=(staticlibs)
-license=(LGPL)
-

[arch-commits] Commit in catch2 (3 files)

2018-03-31 Thread Baptiste Jonglez via arch-commits
Date: Saturday, March 31, 2018 @ 19:56:15
  Author: zorun
Revision: 313627

archrelease: copy trunk to community-any

Added:
  catch2/repos/
  catch2/repos/community-any/
  catch2/repos/community-any/PKGBUILD
(from rev 313626, catch2/trunk/PKGBUILD)

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

Copied: catch2/repos/community-any/PKGBUILD (from rev 313626, 
catch2/trunk/PKGBUILD)
===
--- repos/community-any/PKGBUILD(rev 0)
+++ repos/community-any/PKGBUILD2018-03-31 19:56:15 UTC (rev 313627)
@@ -0,0 +1,38 @@
+# Maintainer: Baptiste Jonglez 
+# Contributor: Bart Verhagen 
+pkgname='catch2'
+pkgver=2.2.1
+pkgrel=1
+pkgdesc="A modern, C++-native, header-only, test framework for unit-tests, TDD 
and BDD - using C++11, C++14, C++17 and later"
+arch=('any')
+url="https://github.com/catchorg/catch2;
+license=('Boost')
+makedepends=("cmake")
+source=("https://github.com/catchorg/Catch2/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('3938bc896f8de570bc56d25606fc128437ee53590a95cf3e005710176a1a1ce4')
+
+build() {
+  cd "$srcdir/Catch2-$pkgver"
+
+  mkdir -p build
+  cd build
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DCATCH_USE_VALGRIND=OFF \
+-DCATCH_BUILD_EXAMPLES=OFF \
+-DCATCH_ENABLE_COVERAGE=OFF \
+-DCATCH_ENABLE_WERROR=OFF \
+-DBUILD_TESTING=ON
+  make
+}
+
+check() {
+  cd "$srcdir/Catch2-$pkgver"
+  build/SelfTest
+}
+
+package() {
+  cd "$srcdir/Catch2-$pkgver/build"
+  make DESTDIR="$pkgdir" install
+}


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

2018-03-31 Thread Baptiste Jonglez via arch-commits
Date: Saturday, March 31, 2018 @ 19:55:43
  Author: zorun
Revision: 313626

catch2: initial import

Added:
  catch2/
  catch2/trunk/
  catch2/trunk/PKGBUILD

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

Added: catch2/trunk/PKGBUILD
===
--- catch2/trunk/PKGBUILD   (rev 0)
+++ catch2/trunk/PKGBUILD   2018-03-31 19:55:43 UTC (rev 313626)
@@ -0,0 +1,38 @@
+# Maintainer: Baptiste Jonglez 
+# Contributor: Bart Verhagen 
+pkgname='catch2'
+pkgver=2.2.1
+pkgrel=1
+pkgdesc="A modern, C++-native, header-only, test framework for unit-tests, TDD 
and BDD - using C++11, C++14, C++17 and later"
+arch=('any')
+url="https://github.com/catchorg/catch2;
+license=('Boost')
+makedepends=("cmake")
+source=("https://github.com/catchorg/Catch2/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('3938bc896f8de570bc56d25606fc128437ee53590a95cf3e005710176a1a1ce4')
+
+build() {
+  cd "$srcdir/Catch2-$pkgver"
+
+  mkdir -p build
+  cd build
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DCATCH_USE_VALGRIND=OFF \
+-DCATCH_BUILD_EXAMPLES=OFF \
+-DCATCH_ENABLE_COVERAGE=OFF \
+-DCATCH_ENABLE_WERROR=OFF \
+-DBUILD_TESTING=ON
+  make
+}
+
+check() {
+  cd "$srcdir/Catch2-$pkgver"
+  build/SelfTest
+}
+
+package() {
+  cd "$srcdir/Catch2-$pkgver/build"
+  make DESTDIR="$pkgdir" install
+}


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

2018-03-31 Thread David Runge via arch-commits
Date: Saturday, March 31, 2018 @ 20:05:40
  Author: dvzrv
Revision: 313629

archrelease: copy trunk to community-testing-x86_64

Added:
  infamousplugins/repos/community-testing-x86_64/
  infamousplugins/repos/community-testing-x86_64/PKGBUILD
(from rev 313628, infamousplugins/trunk/PKGBUILD)

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

Copied: infamousplugins/repos/community-testing-x86_64/PKGBUILD (from rev 
313628, infamousplugins/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2018-03-31 20:05:40 UTC (rev 313629)
@@ -0,0 +1,34 @@
+# Maintainer: David Runge 
+_name=infamousPlugins
+pkgname=infamousplugins
+pkgver=0.2.04
+pkgrel=2
+pkgdesc="A collection of open-source LV2 plugins"
+arch=('x86_64')
+url="https://ssj71.github.io/infamousPlugins/;
+license=('GPL2')
+groups=('lv2-plugins' 'pro-audio')
+depends=('fftw' 'ntk' 'zita-resampler')
+makedepends=('cmake' 'lv2')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/ssj71/${_name}/archive/v${pkgver}.tar.gz;)
+sha512sums=('340de9a58f454c3998c71f8c0f004e541253b96ee4c5ac870d6ff0fe07c46764534467dca55046e2a160cfc40c4a252912788bd4140c58efcbe4234730305570')
+
+prepare() {
+  mv -v "${_name}-${pkgver}" "${pkgname}-${pkgver}"
+  cd "${pkgname}-${pkgver}"
+  mkdir -v build
+}
+
+build() {
+  cd "$pkgname-$pkgver/build"
+  cmake -DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+..
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver/build"
+  make DESTDIR="$pkgdir/" install
+  install -vDm 644 ../{CHANGELOG,README} -t 
"${pkgdir}/usr/share/doc/${pkgname}/"
+}


[arch-commits] Commit in restbed/trunk (PKGBUILD fix-cmake-catch-include.patch)

2018-03-31 Thread Baptiste Jonglez via arch-commits
Date: Saturday, March 31, 2018 @ 20:46:44
  Author: zorun
Revision: 313632

upgpkg: restbed 4.6+24+gb1f0182-2

restbed: enable unit tests

Added:
  restbed/trunk/fix-cmake-catch-include.patch
Modified:
  restbed/trunk/PKGBUILD

---+
 PKGBUILD  |   22 ++
 fix-cmake-catch-include.patch |   12 
 2 files changed, 30 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-03-31 20:25:27 UTC (rev 313631)
+++ PKGBUILD2018-03-31 20:46:44 UTC (rev 313632)
@@ -2,7 +2,7 @@
 # Contributor: Justin Wilcox 
 pkgname=restbed
 pkgver=4.6+24+gb1f0182
-pkgrel=1
+pkgrel=2
 pkgdesc="A framework for asynchronous RESTful functionality in C++11 
applications"
 arch=('x86_64')
 url="https://github.com/Corvusoft/restbed;
@@ -11,10 +11,18 @@
 replaces=('restbed-latest')
 conflicts=('restbed-latest')
 makedepends=('cmake' 'asio' 'kashmir')
+checkdepends=('catch2')
 _commit=b1f0182c0ea74ea5e6dc08fd540462422fd0dc7f
-source=("https://github.com/Corvusoft/restbed/archive/${_commit}/$pkgname-$pkgver.tar.gz;)
-sha256sums=('fb7ee67eb36eb1297e18f6ada4ba3a6fa255a6c64ff4e70a1efef5ef76c484c9')
+source=("https://github.com/Corvusoft/restbed/archive/${_commit}/$pkgname-$pkgver.tar.gz;
+"fix-cmake-catch-include.patch")
+sha256sums=('fb7ee67eb36eb1297e18f6ada4ba3a6fa255a6c64ff4e70a1efef5ef76c484c9'
+'9f0de7baf90cb00c02ba27fff893a4d343c46a729f85817871b71cc8f3533790')
 
+prepare() {
+  cd "$srcdir/$pkgname-$_commit"
+  patch -p1 < "$srcdir/fix-cmake-catch-include.patch"
+}
+
 build() {
   cd "$srcdir/$pkgname-$_commit"
 
@@ -24,10 +32,16 @@
 -DCMAKE_INSTALL_PREFIX=/usr \
 -DCMAKE_INSTALL_LIBDIR=lib \
 -DBUILD_SHARED=on \
--DBUILD_SSL=on
+-DBUILD_SSL=on \
+-DBUILD_TESTS=on
   make
 }
 
+check() {
+  cd "$srcdir/$pkgname-$_commit/build"
+  make test
+}
+
 package() {
   cd "$srcdir/$pkgname-$_commit"
 

Added: fix-cmake-catch-include.patch
===
--- fix-cmake-catch-include.patch   (rev 0)
+++ fix-cmake-catch-include.patch   2018-03-31 20:46:44 UTC (rev 313632)
@@ -0,0 +1,12 @@
+diff --git a/cmake/modules/Findcatch.cmake b/cmake/modules/Findcatch.cmake
+index eff91fe..15c7f87 100644
+--- a/cmake/modules/Findcatch.cmake
 b/cmake/modules/Findcatch.cmake
+@@ -1,6 +1,6 @@
+ # Copyright 2013-2017, Corvusoft Ltd, All Rights Reserved.
+ 
+-find_path( catch_INCLUDE catch.hpp HINTS 
"${PROJECT_SOURCE_DIR}/dependency/catch/include" "/usr/include" 
"/usr/local/include" "/opt/local/include" )
++find_path( catch_INCLUDE catch.hpp HINTS 
"${PROJECT_SOURCE_DIR}/dependency/catch/include" "/usr/include" 
"/usr/include/catch" "/usr/local/include" "/opt/local/include" )
+ 
+ if ( catch_INCLUDE )
+ set( CATCH_FOUND TRUE )


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

2018-03-31 Thread Baptiste Jonglez via arch-commits
Date: Saturday, March 31, 2018 @ 20:47:05
  Author: zorun
Revision: 313633

archrelease: copy trunk to community-x86_64

Added:
  restbed/repos/community-x86_64/PKGBUILD
(from rev 313632, restbed/trunk/PKGBUILD)
  restbed/repos/community-x86_64/fix-cmake-catch-include.patch
(from rev 313632, restbed/trunk/fix-cmake-catch-include.patch)
Deleted:
  restbed/repos/community-x86_64/PKGBUILD

---+
 PKGBUILD  |   86 +++-
 fix-cmake-catch-include.patch |   12 +
 2 files changed, 62 insertions(+), 36 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-03-31 20:46:44 UTC (rev 313632)
+++ PKGBUILD2018-03-31 20:47:05 UTC (rev 313633)
@@ -1,36 +0,0 @@
-# Maintainer: Baptiste Jonglez 
-# Contributor: Justin Wilcox 
-pkgname=restbed
-pkgver=4.6+24+gb1f0182
-pkgrel=1
-pkgdesc="A framework for asynchronous RESTful functionality in C++11 
applications"
-arch=('x86_64')
-url="https://github.com/Corvusoft/restbed;
-license=('AGPL3')
-depends=('openssl')
-replaces=('restbed-latest')
-conflicts=('restbed-latest')
-makedepends=('cmake' 'asio' 'kashmir')
-_commit=b1f0182c0ea74ea5e6dc08fd540462422fd0dc7f
-source=("https://github.com/Corvusoft/restbed/archive/${_commit}/$pkgname-$pkgver.tar.gz;)
-sha256sums=('fb7ee67eb36eb1297e18f6ada4ba3a6fa255a6c64ff4e70a1efef5ef76c484c9')
-
-build() {
-  cd "$srcdir/$pkgname-$_commit"
-
-  mkdir -p build
-  cd build
-  cmake .. \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DBUILD_SHARED=on \
--DBUILD_SSL=on
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$_commit"
-
-  cd build/
-  make DESTDIR="$pkgdir" install
-}

Copied: restbed/repos/community-x86_64/PKGBUILD (from rev 313632, 
restbed/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-03-31 20:47:05 UTC (rev 313633)
@@ -0,0 +1,50 @@
+# Maintainer: Baptiste Jonglez 
+# Contributor: Justin Wilcox 
+pkgname=restbed
+pkgver=4.6+24+gb1f0182
+pkgrel=2
+pkgdesc="A framework for asynchronous RESTful functionality in C++11 
applications"
+arch=('x86_64')
+url="https://github.com/Corvusoft/restbed;
+license=('AGPL3')
+depends=('openssl')
+replaces=('restbed-latest')
+conflicts=('restbed-latest')
+makedepends=('cmake' 'asio' 'kashmir')
+checkdepends=('catch2')
+_commit=b1f0182c0ea74ea5e6dc08fd540462422fd0dc7f
+source=("https://github.com/Corvusoft/restbed/archive/${_commit}/$pkgname-$pkgver.tar.gz;
+"fix-cmake-catch-include.patch")
+sha256sums=('fb7ee67eb36eb1297e18f6ada4ba3a6fa255a6c64ff4e70a1efef5ef76c484c9'
+'9f0de7baf90cb00c02ba27fff893a4d343c46a729f85817871b71cc8f3533790')
+
+prepare() {
+  cd "$srcdir/$pkgname-$_commit"
+  patch -p1 < "$srcdir/fix-cmake-catch-include.patch"
+}
+
+build() {
+  cd "$srcdir/$pkgname-$_commit"
+
+  mkdir -p build
+  cd build
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DBUILD_SHARED=on \
+-DBUILD_SSL=on \
+-DBUILD_TESTS=on
+  make
+}
+
+check() {
+  cd "$srcdir/$pkgname-$_commit/build"
+  make test
+}
+
+package() {
+  cd "$srcdir/$pkgname-$_commit"
+
+  cd build/
+  make DESTDIR="$pkgdir" install
+}

Copied: restbed/repos/community-x86_64/fix-cmake-catch-include.patch (from rev 
313632, restbed/trunk/fix-cmake-catch-include.patch)
===
--- fix-cmake-catch-include.patch   (rev 0)
+++ fix-cmake-catch-include.patch   2018-03-31 20:47:05 UTC (rev 313633)
@@ -0,0 +1,12 @@
+diff --git a/cmake/modules/Findcatch.cmake b/cmake/modules/Findcatch.cmake
+index eff91fe..15c7f87 100644
+--- a/cmake/modules/Findcatch.cmake
 b/cmake/modules/Findcatch.cmake
+@@ -1,6 +1,6 @@
+ # Copyright 2013-2017, Corvusoft Ltd, All Rights Reserved.
+ 
+-find_path( catch_INCLUDE catch.hpp HINTS 
"${PROJECT_SOURCE_DIR}/dependency/catch/include" "/usr/include" 
"/usr/local/include" "/opt/local/include" )
++find_path( catch_INCLUDE catch.hpp HINTS 
"${PROJECT_SOURCE_DIR}/dependency/catch/include" "/usr/include" 
"/usr/include/catch" "/usr/local/include" "/opt/local/include" )
+ 
+ if ( catch_INCLUDE )
+ set( CATCH_FOUND TRUE )


  1   2   3   >