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

2014-05-11 Thread Laurent Carlier
Date: Sunday, May 11, 2014 @ 10:15:06
  Author: lcarlier
Revision: 212220

upgpkg: libxcb 1.10-2

fix FS#40289

Added:
  libxcb/trunk/Ensure-xcb-owns-socket-and-no-other-threads-are-writ.patch
Modified:
  libxcb/trunk/PKGBUILD

+
 Ensure-xcb-owns-socket-and-no-other-threads-are-writ.patch |  121 +++
 PKGBUILD   |   11 -
 2 files changed, 129 insertions(+), 3 deletions(-)

Added: Ensure-xcb-owns-socket-and-no-other-threads-are-writ.patch
===
--- Ensure-xcb-owns-socket-and-no-other-threads-are-writ.patch  
(rev 0)
+++ Ensure-xcb-owns-socket-and-no-other-threads-are-writ.patch  2014-05-11 
08:15:06 UTC (rev 212220)
@@ -0,0 +1,121 @@
+From be0fe56c3bcad5124dcc6c47a2fad01acd16f71a Mon Sep 17 00:00:00 2001
+From: Keith Packard kei...@keithp.com
+Date: Mon, 23 Dec 2013 21:15:20 -0800
+Subject: [PATCH] Ensure xcb owns socket and no other threads are writing
+ before send_request
+
+send_request may only write to out.queue if no other thread is busy
+writing to the network (as that thread may be writing from out.queue).
+
+send_request may only allocate request sequence numbers if XCB owns
+the socket.
+
+Therefore, send_request must make sure that both conditions are true
+when it holds iolock, which can only be done by looping until both
+conditions are true without having dropped the lock waiting for the
+second condition.
+
+We choose to get the socket back from Xlib first as get_socket_back
+has a complicated test and checking for other threads writing is a
+simple in-lined check.
+
+This also changes the sequence number checks (64k requests with no
+reply, 4M request wrapping) to ensure that both conditions are true
+before queueing the request.
+
+Signed-off-by: Keith Packard kei...@keithp.com
+Reviewed-by: Uli Schlachter psyc...@znc.in
+---
+ src/xcb_out.c | 57 -
+ 1 file changed, 40 insertions(+), 17 deletions(-)
+
+diff --git a/src/xcb_out.c b/src/xcb_out.c
+index 18bb5f9..dc42954 100644
+--- a/src/xcb_out.c
 b/src/xcb_out.c
+@@ -103,6 +103,33 @@ static void get_socket_back(xcb_connection_t *c)
+ _xcb_in_replies_done(c);
+ }
+ 
++static void prepare_socket_request(xcb_connection_t *c)
++{
++/* We're about to append data to out.queue, so we need to
++ * atomically test for an external socket owner *and* some other
++ * thread currently writing.
++ *
++ * If we have an external socket owner, we have to get the socket back
++ * before we can use it again.
++ *
++ * If some other thread is writing to the socket, we assume it's
++ * writing from out.queue, and so we can't stick data there.
++ *
++ * We satisfy this condition by first calling get_socket_back
++ * (which may drop the lock, but will return when XCB owns the
++ * socket again) and then checking for another writing thread and
++ * escaping the loop if we're ready to go.
++ */
++for (;;) {
++if(c-has_error)
++return;
++get_socket_back(c);
++if (!c-out.writing)
++break;
++pthread_cond_wait(c-out.cond, c-iolock);
++}
++}
++
+ /* Public interface */
+ 
+ void xcb_prefetch_maximum_request_length(xcb_connection_t *c)
+@@ -236,24 +263,23 @@ unsigned int xcb_send_request(xcb_connection_t *c, int 
flags, struct iovec *vect
+ 
+ /* get a sequence number and arrange for delivery. */
+ pthread_mutex_lock(c-iolock);
+-/* wait for other writing threads to get out of my way. */
+-while(c-out.writing)
+-pthread_cond_wait(c-out.cond, c-iolock);
+-get_socket_back(c);
++
++prepare_socket_request(c);
+ 
+ /* send GetInputFocus (sync_req) when 64k-2 requests have been sent 
without
+- * a reply. */
+-if(req-isvoid  c-out.request == c-in.request_expected + (1  16) - 
2)
+-send_sync(c);
+-/* Also send sync_req (could use NoOp) at 32-bit wrap to avoid having
++ * a reply.
++ * Also send sync_req (could use NoOp) at 32-bit wrap to avoid having
+  * applications see sequence 0 as that is used to indicate
+- * an error in sending the request */
+-if((unsigned int) (c-out.request + 1) == 0)
++ * an error in sending the request
++ */
++ 
++while ((req-isvoid  c-out.request == c-in.request_expected + (1  
16) - 2) ||
++   (unsigned int) (c-out.request + 1) == 0)
++{
+ send_sync(c);
++prepare_socket_request(c);
++}
+ 
+-/* The above send_sync calls could drop the I/O lock, but this
+- * thread will still exclude any other thread that tries to write,
+- * so the sequence number postconditions still hold. */
+ send_request(c, req-isvoid, workaround, flags, vector, veclen);
+ request = c-has_error ? 0 : c-out.request;
+ 

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

2014-05-11 Thread Laurent Carlier
Date: Sunday, May 11, 2014 @ 10:15:22
  Author: lcarlier
Revision: 212221

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

Added:
  libxcb/repos/testing-i686/
  
libxcb/repos/testing-i686/Ensure-xcb-owns-socket-and-no-other-threads-are-writ.patch
(from rev 212220, 
libxcb/trunk/Ensure-xcb-owns-socket-and-no-other-threads-are-writ.patch)
  libxcb/repos/testing-i686/PKGBUILD
(from rev 212220, libxcb/trunk/PKGBUILD)
  libxcb/repos/testing-i686/libxcb-1.1-no-pthread-stubs.patch
(from rev 212220, libxcb/trunk/libxcb-1.1-no-pthread-stubs.patch)
  libxcb/repos/testing-x86_64/
  
libxcb/repos/testing-x86_64/Ensure-xcb-owns-socket-and-no-other-threads-are-writ.patch
(from rev 212220, 
libxcb/trunk/Ensure-xcb-owns-socket-and-no-other-threads-are-writ.patch)
  libxcb/repos/testing-x86_64/PKGBUILD
(from rev 212220, libxcb/trunk/PKGBUILD)
  libxcb/repos/testing-x86_64/libxcb-1.1-no-pthread-stubs.patch
(from rev 212220, libxcb/trunk/libxcb-1.1-no-pthread-stubs.patch)

---+
 testing-i686/Ensure-xcb-owns-socket-and-no-other-threads-are-writ.patch   |  
121 ++
 testing-i686/PKGBUILD |   
50 
 testing-i686/libxcb-1.1-no-pthread-stubs.patch|   
11 
 testing-x86_64/Ensure-xcb-owns-socket-and-no-other-threads-are-writ.patch |  
121 ++
 testing-x86_64/PKGBUILD   |   
50 
 testing-x86_64/libxcb-1.1-no-pthread-stubs.patch  |   
11 
 6 files changed, 364 insertions(+)

Copied: 
libxcb/repos/testing-i686/Ensure-xcb-owns-socket-and-no-other-threads-are-writ.patch
 (from rev 212220, 
libxcb/trunk/Ensure-xcb-owns-socket-and-no-other-threads-are-writ.patch)
===
--- testing-i686/Ensure-xcb-owns-socket-and-no-other-threads-are-writ.patch 
(rev 0)
+++ testing-i686/Ensure-xcb-owns-socket-and-no-other-threads-are-writ.patch 
2014-05-11 08:15:22 UTC (rev 212221)
@@ -0,0 +1,121 @@
+From be0fe56c3bcad5124dcc6c47a2fad01acd16f71a Mon Sep 17 00:00:00 2001
+From: Keith Packard kei...@keithp.com
+Date: Mon, 23 Dec 2013 21:15:20 -0800
+Subject: [PATCH] Ensure xcb owns socket and no other threads are writing
+ before send_request
+
+send_request may only write to out.queue if no other thread is busy
+writing to the network (as that thread may be writing from out.queue).
+
+send_request may only allocate request sequence numbers if XCB owns
+the socket.
+
+Therefore, send_request must make sure that both conditions are true
+when it holds iolock, which can only be done by looping until both
+conditions are true without having dropped the lock waiting for the
+second condition.
+
+We choose to get the socket back from Xlib first as get_socket_back
+has a complicated test and checking for other threads writing is a
+simple in-lined check.
+
+This also changes the sequence number checks (64k requests with no
+reply, 4M request wrapping) to ensure that both conditions are true
+before queueing the request.
+
+Signed-off-by: Keith Packard kei...@keithp.com
+Reviewed-by: Uli Schlachter psyc...@znc.in
+---
+ src/xcb_out.c | 57 -
+ 1 file changed, 40 insertions(+), 17 deletions(-)
+
+diff --git a/src/xcb_out.c b/src/xcb_out.c
+index 18bb5f9..dc42954 100644
+--- a/src/xcb_out.c
 b/src/xcb_out.c
+@@ -103,6 +103,33 @@ static void get_socket_back(xcb_connection_t *c)
+ _xcb_in_replies_done(c);
+ }
+ 
++static void prepare_socket_request(xcb_connection_t *c)
++{
++/* We're about to append data to out.queue, so we need to
++ * atomically test for an external socket owner *and* some other
++ * thread currently writing.
++ *
++ * If we have an external socket owner, we have to get the socket back
++ * before we can use it again.
++ *
++ * If some other thread is writing to the socket, we assume it's
++ * writing from out.queue, and so we can't stick data there.
++ *
++ * We satisfy this condition by first calling get_socket_back
++ * (which may drop the lock, but will return when XCB owns the
++ * socket again) and then checking for another writing thread and
++ * escaping the loop if we're ready to go.
++ */
++for (;;) {
++if(c-has_error)
++return;
++get_socket_back(c);
++if (!c-out.writing)
++break;
++pthread_cond_wait(c-out.cond, c-iolock);
++}
++}
++
+ /* Public interface */
+ 
+ void xcb_prefetch_maximum_request_length(xcb_connection_t *c)
+@@ -236,24 +263,23 @@ unsigned int xcb_send_request(xcb_connection_t *c, int 
flags, struct iovec *vect
+ 
+ /* get a sequence number and arrange for delivery. */
+ pthread_mutex_lock(c-iolock);
+-/* wait for other writing threads to get out of my way. */

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

2014-05-11 Thread Tobias Powalowski
Date: Sunday, May 11, 2014 @ 10:50:05
  Author: tpowa
Revision: 21

db-move: moved linux from [testing] to [core] (i686, x86_64)

Added:
  linux/repos/core-i686/0001-Bluetooth-allocate-static-minor-for-vhci.patch
(from rev 212221, 
linux/repos/testing-i686/0001-Bluetooth-allocate-static-minor-for-vhci.patch)
  
linux/repos/core-i686/0002-module-allow-multiple-calls-to-MODULE_DEVICE_TABLE-p.patch
(from rev 212221, 
linux/repos/testing-i686/0002-module-allow-multiple-calls-to-MODULE_DEVICE_TABLE-p.patch)
  linux/repos/core-i686/0003-module-remove-MODULE_GENERIC_TABLE.patch
(from rev 212221, 
linux/repos/testing-i686/0003-module-remove-MODULE_GENERIC_TABLE.patch)
  linux/repos/core-i686/0004-fs-Don-t-return-0-from-get_anon_bdev.patch
(from rev 212221, 
linux/repos/testing-i686/0004-fs-Don-t-return-0-from-get_anon_bdev.patch)
  
linux/repos/core-i686/0005-Revert-Bluetooth-Enable-autosuspend-for-Intel-Blueto.patch
(from rev 212221, 
linux/repos/testing-i686/0005-Revert-Bluetooth-Enable-autosuspend-for-Intel-Blueto.patch)
  linux/repos/core-i686/0006-genksyms-fix-typeof-handling.patch
(from rev 212221, 
linux/repos/testing-i686/0006-genksyms-fix-typeof-handling.patch)
  
linux/repos/core-i686/0007-x86-efi-Correct-EFI-boot-stub-use-of-code32_start.patch
(from rev 212221, 
linux/repos/testing-i686/0007-x86-efi-Correct-EFI-boot-stub-use-of-code32_start.patch)
  linux/repos/core-i686/0008-futex-avoid-race-between-requeue-and-wake.patch
(from rev 212221, 
linux/repos/testing-i686/0008-futex-avoid-race-between-requeue-and-wake.patch)
  linux/repos/core-i686/0009-iwlwifi-mvm-rs-fix-search-cycle-rules.patch
(from rev 212221, 
linux/repos/testing-i686/0009-iwlwifi-mvm-rs-fix-search-cycle-rules.patch)
  
linux/repos/core-i686/0010-iwlwifi-mvm-delay-enabling-smart-FIFO-until-after-be.patch
(from rev 212221, 
linux/repos/testing-i686/0010-iwlwifi-mvm-delay-enabling-smart-FIFO-until-after-be.patch)
  linux/repos/core-i686/0011-kernfs-fix-removed-error-check.patch
(from rev 212221, 
linux/repos/testing-i686/0011-kernfs-fix-removed-error-check.patch)
  linux/repos/core-i686/0012-fix-saa7134.patch
(from rev 212221, linux/repos/testing-i686/0012-fix-saa7134.patch)
  
linux/repos/core-i686/0013-net-Start-with-correct-mac_len-in-skb_network_protocol.patch
(from rev 212221, 
linux/repos/testing-i686/0013-net-Start-with-correct-mac_len-in-skb_network_protocol.patch)
  linux/repos/core-i686/0014-fix-rtl8192se.patch
(from rev 212221, linux/repos/testing-i686/0014-fix-rtl8192se.patch)
  linux/repos/core-i686/0015-fix-xsdt-validation.patch
(from rev 212221, linux/repos/testing-i686/0015-fix-xsdt-validation.patch)
  linux/repos/core-i686/PKGBUILD
(from rev 212221, linux/repos/testing-i686/PKGBUILD)
  linux/repos/core-i686/change-default-console-loglevel.patch
(from rev 212221, 
linux/repos/testing-i686/change-default-console-loglevel.patch)
  linux/repos/core-i686/config
(from rev 212221, linux/repos/testing-i686/config)
  linux/repos/core-i686/config.x86_64
(from rev 212221, linux/repos/testing-i686/config.x86_64)
  linux/repos/core-i686/linux.install
(from rev 212221, linux/repos/testing-i686/linux.install)
  linux/repos/core-i686/linux.preset
(from rev 212221, linux/repos/testing-i686/linux.preset)
  linux/repos/core-x86_64/0001-Bluetooth-allocate-static-minor-for-vhci.patch
(from rev 212221, 
linux/repos/testing-x86_64/0001-Bluetooth-allocate-static-minor-for-vhci.patch)
  
linux/repos/core-x86_64/0002-module-allow-multiple-calls-to-MODULE_DEVICE_TABLE-p.patch
(from rev 212221, 
linux/repos/testing-x86_64/0002-module-allow-multiple-calls-to-MODULE_DEVICE_TABLE-p.patch)
  linux/repos/core-x86_64/0003-module-remove-MODULE_GENERIC_TABLE.patch
(from rev 212221, 
linux/repos/testing-x86_64/0003-module-remove-MODULE_GENERIC_TABLE.patch)
  linux/repos/core-x86_64/0004-fs-Don-t-return-0-from-get_anon_bdev.patch
(from rev 212221, 
linux/repos/testing-x86_64/0004-fs-Don-t-return-0-from-get_anon_bdev.patch)
  
linux/repos/core-x86_64/0005-Revert-Bluetooth-Enable-autosuspend-for-Intel-Blueto.patch
(from rev 212221, 
linux/repos/testing-x86_64/0005-Revert-Bluetooth-Enable-autosuspend-for-Intel-Blueto.patch)
  linux/repos/core-x86_64/0006-genksyms-fix-typeof-handling.patch
(from rev 212221, 
linux/repos/testing-x86_64/0006-genksyms-fix-typeof-handling.patch)
  
linux/repos/core-x86_64/0007-x86-efi-Correct-EFI-boot-stub-use-of-code32_start.patch
(from rev 212221, 
linux/repos/testing-x86_64/0007-x86-efi-Correct-EFI-boot-stub-use-of-code32_start.patch)
  linux/repos/core-x86_64/0008-futex-avoid-race-between-requeue-and-wake.patch
(from rev 212221, 
linux/repos/testing-x86_64/0008-futex-avoid-race-between-requeue-and-wake.patch)
  linux/repos/core-x86_64/0009-iwlwifi-mvm-rs-fix-search-cycle-rules.patch
(from rev 212221, 
linux/repos/testing-x86_64/0009-iwlwifi-mvm-rs-fix-search-cycle-rules.patch)
  

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

2014-05-11 Thread Tobias Powalowski
Date: Sunday, May 11, 2014 @ 10:53:39
  Author: tpowa
Revision: 212223

db-move: moved gawk from [testing] to [core] (i686, x86_64)

Added:
  gawk/repos/core-i686/PKGBUILD
(from rev 21, gawk/repos/testing-i686/PKGBUILD)
  gawk/repos/core-i686/gawk.install
(from rev 21, gawk/repos/testing-i686/gawk.install)
  gawk/repos/core-x86_64/PKGBUILD
(from rev 21, gawk/repos/testing-x86_64/PKGBUILD)
  gawk/repos/core-x86_64/gawk.install
(from rev 21, gawk/repos/testing-x86_64/gawk.install)
Deleted:
  gawk/repos/core-i686/PKGBUILD
  gawk/repos/core-i686/gawk.install
  gawk/repos/core-x86_64/PKGBUILD
  gawk/repos/core-x86_64/gawk.install
  gawk/repos/testing-i686/
  gawk/repos/testing-x86_64/

--+
 /PKGBUILD|   76 +
 /gawk.install|   44 ++
 core-i686/PKGBUILD   |   38 --
 core-i686/gawk.install   |   22 -
 core-x86_64/PKGBUILD |   38 --
 core-x86_64/gawk.install |   22 -
 6 files changed, 120 insertions(+), 120 deletions(-)

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2014-05-11 08:50:05 UTC (rev 21)
+++ core-i686/PKGBUILD  2014-05-11 08:53:39 UTC (rev 212223)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer:
-# Contributor: Tom Newsom jeeps...@gmx.co.uk
-
-pkgname=gawk
-pkgver=4.1.0
-pkgrel=2
-pkgdesc=GNU version of awk
-arch=('i686' 'x86_64')
-url=http://www.gnu.org/software/gawk/;
-license=('GPL')
-groups=('base' 'base-devel')
-depends=('sh' 'glibc' 'mpfr')
-provides=('awk')
-install=gawk.install
-source=(ftp://ftp.gnu.org/pub/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz{,.sig})
-md5sums=('13e02513105417818a31ef375f9f9f42'
- 'SKIP')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr --libexecdir=/usr/lib --without-libsigsegv
-  make 
-}
-
-check() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make check
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-
-  #install -dm755 ${pkgdir}/bin 
-  #ln -sf /usr/bin/gawk ${pkgdir}/bin/
-  #ln -sf gawk ${pkgdir}/bin/awk
-}

Copied: gawk/repos/core-i686/PKGBUILD (from rev 21, 
gawk/repos/testing-i686/PKGBUILD)
===
--- core-i686/PKGBUILD  (rev 0)
+++ core-i686/PKGBUILD  2014-05-11 08:53:39 UTC (rev 212223)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer:
+# Contributor: Tom Newsom jeeps...@gmx.co.uk
+
+pkgname=gawk
+pkgver=4.1.1
+pkgrel=1
+pkgdesc=GNU version of awk
+arch=('i686' 'x86_64')
+url=http://www.gnu.org/software/gawk/;
+license=('GPL')
+groups=('base' 'base-devel')
+depends=('sh' 'glibc' 'mpfr')
+provides=('awk')
+install=gawk.install
+source=(ftp://ftp.gnu.org/pub/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz{,.sig})
+md5sums=('45f5b09aa87b4744c4c53bf274e96ed0'
+ 'SKIP')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr --libexecdir=/usr/lib --without-libsigsegv
+  make 
+}
+
+check() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  #install -dm755 ${pkgdir}/bin 
+  #ln -sf /usr/bin/gawk ${pkgdir}/bin/
+  #ln -sf gawk ${pkgdir}/bin/awk
+}

Deleted: core-i686/gawk.install
===
--- core-i686/gawk.install  2014-05-11 08:50:05 UTC (rev 21)
+++ core-i686/gawk.install  2014-05-11 08:53:39 UTC (rev 212223)
@@ -1,22 +0,0 @@
-infodir=usr/share/info
-filelist=(gawk.info.gz gawkinet.info.gz)
-
-post_install() {
-  [ -x usr/bin/install-info ] || return 0
-  for file in ${filelist[@]}; do
-install-info $infodir/$file $infodir/dir 2 /dev/null
-  done
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-pre_remove() {
-  [ -x usr/bin/install-info ] || return 0
-  for file in ${filelist[@]}; do
-install-info --delete $infodir/$file $infodir/dir 2 /dev/null
-  done
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gawk/repos/core-i686/gawk.install (from rev 21, 
gawk/repos/testing-i686/gawk.install)
===
--- core-i686/gawk.install  (rev 0)
+++ core-i686/gawk.install  2014-05-11 08:53:39 UTC (rev 212223)
@@ -0,0 +1,22 @@
+infodir=usr/share/info
+filelist=(gawk.info.gz gawkinet.info.gz)
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+install-info $infodir/$file $infodir/dir 2 /dev/null
+  done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+install-info --delete $infodir/$file $infodir/dir 2 /dev/null
+  done
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: core-x86_64/PKGBUILD

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

2014-05-11 Thread Tobias Powalowski
Date: Sunday, May 11, 2014 @ 10:54:01
  Author: tpowa
Revision: 212224

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

Added:
  qemu/repos/extra-i686/65-kvm.rules
(from rev 212223, qemu/repos/testing-i686/65-kvm.rules)
  qemu/repos/extra-i686/PKGBUILD
(from rev 212223, qemu/repos/testing-i686/PKGBUILD)
  qemu/repos/extra-i686/qemu.install
(from rev 212223, qemu/repos/testing-i686/qemu.install)
  qemu/repos/extra-x86_64/65-kvm.rules
(from rev 212223, qemu/repos/testing-x86_64/65-kvm.rules)
  qemu/repos/extra-x86_64/PKGBUILD
(from rev 212223, qemu/repos/testing-x86_64/PKGBUILD)
  qemu/repos/extra-x86_64/qemu.install
(from rev 212223, qemu/repos/testing-x86_64/qemu.install)
Deleted:
  qemu/repos/extra-i686/65-kvm.rules
  qemu/repos/extra-i686/PKGBUILD
  qemu/repos/extra-i686/qemu.install
  qemu/repos/extra-x86_64/65-kvm.rules
  qemu/repos/extra-x86_64/PKGBUILD
  qemu/repos/extra-x86_64/qemu.install
  qemu/repos/testing-i686/
  qemu/repos/testing-x86_64/

---+
 /65-kvm.rules |4 +
 /PKGBUILD |  170 
 /qemu.install |   46 +++
 extra-i686/65-kvm.rules   |2 
 extra-i686/PKGBUILD   |   85 --
 extra-i686/qemu.install   |   23 -
 extra-x86_64/65-kvm.rules |2 
 extra-x86_64/PKGBUILD |   85 --
 extra-x86_64/qemu.install |   23 -
 9 files changed, 220 insertions(+), 220 deletions(-)

Deleted: extra-i686/65-kvm.rules
===
--- extra-i686/65-kvm.rules 2014-05-11 08:53:39 UTC (rev 212223)
+++ extra-i686/65-kvm.rules 2014-05-11 08:54:01 UTC (rev 212224)
@@ -1,2 +0,0 @@
-KERNEL==kvm, GROUP=kvm, MODE=0660
-KERNEL==vhost-net, GROUP=kvm, MODE=0660, TAG+=uaccess, 
OPTIONS+=static_node=vhost-net

Copied: qemu/repos/extra-i686/65-kvm.rules (from rev 212223, 
qemu/repos/testing-i686/65-kvm.rules)
===
--- extra-i686/65-kvm.rules (rev 0)
+++ extra-i686/65-kvm.rules 2014-05-11 08:54:01 UTC (rev 212224)
@@ -0,0 +1,2 @@
+KERNEL==kvm, GROUP=kvm, MODE=0660
+KERNEL==vhost-net, GROUP=kvm, MODE=0660, TAG+=uaccess, 
OPTIONS+=static_node=vhost-net

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-05-11 08:53:39 UTC (rev 212223)
+++ extra-i686/PKGBUILD 2014-05-11 08:54:01 UTC (rev 212224)
@@ -1,85 +0,0 @@
-# $Id$
-# Maintainer: Tobias Powalowski tp...@archlinux.org
-pkgname=('qemu' 'libcacard')
-pkgver=1.7.1
-pkgrel=1
-arch=('i686' 'x86_64')
-license=('GPL2' 'LGPL2.1')
-url=http://wiki.qemu.org/Index.html;
-makedepends=('pixman' 'libjpeg' 'libpng' 'sdl' 'alsa-lib' 'nss' 'glib2'
- 'gnutls=2.4.1' 'bluez-libs' 'vde2' 'util-linux' 'curl' 'libsasl'
- 'libgl' 'libpulse' 'seabios' 'libcap-ng' 'libaio' 'libseccomp'
- 'libiscsi' 'libcacard' 'spice' 'spice-protocol' 'python2'
- 'usbredir')
-replaces=('qemu-kvm')
-options=(!strip)
-install=qemu.install
-source=(http://wiki.qemu.org/download/${pkgname}-${pkgver}.tar.bz2
-65-kvm.rules)
-
-build ()
-{
-  cd ${srcdir}/${pkgname}-${pkgver}
-  # qemu vs. make 4 == bad
-  export ARFLAGS=rv
-  # http://permalink.gmane.org/gmane.comp.emulators.qemu/238740
-  # gtk gui breaks keymappings at the moment
-  ./configure --prefix=/usr --sysconfdir=/etc --audio-drv-list='pa alsa sdl' \
-  --python=/usr/bin/python2 --smbd=/usr/bin/smbd \
-  --enable-docs --libexecdir=/usr/lib/qemu \
-  --disable-gtk --enable-linux-aio --enable-seccomp \
-  --enable-spice --localstatedir=/var \
-  --enable-tpm
-  make V=99
-}
-
-package_qemu() {
-  pkgdesc=A generic and open source processor emulator which achieves a good 
emulation speed by using dynamic translation.
-  depends=('pixman' 'libjpeg' 'libpng' 'sdl' 'alsa-lib' 'nss' 'glib2'
- 'gnutls=2.4.1' 'bluez-libs' 'vde2' 'util-linux' 'curl' 'libsasl'
- 'libgl' 'libpulse' 'seabios' 'libcap-ng' 'libaio' 'libseccomp'
- 'libiscsi' 'libcacard' 'spice' 'usbredir')
-  backup=('etc/qemu/target-x86_64.conf')
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} libexecdir=/usr/lib/qemu install
-  # provided by seabios package
-  rm ${pkgdir}/usr/share/qemu/bios.bin
-  rm ${pkgdir}/usr/share/qemu/acpi-dsdt.aml
-  rm ${pkgdir}/usr/share/qemu/q35-acpi-dsdt.aml
-  # remove conflicting /var/run directory
-  rm -r ${pkgdir}/var
-  install -D -m644 ${srcdir}/65-kvm.rules \
-   ${pkgdir}/usr/lib/udev/rules.d/65-kvm.rules
-  # bridge_helper needs suid
-  # https://bugs.archlinux.org/task/32565
-  chmod u+s ${pkgdir}/usr/lib/qemu/qemu-bridge-helper
-  # add sample config
-  echo allow br0  ${pkgdir}/etc/qemu/bridge.conf.sample
-  # strip scripts directory
-find 

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

2014-05-11 Thread Tobias Powalowski
Date: Sunday, May 11, 2014 @ 10:54:28
  Author: tpowa
Revision: 212225

db-move: moved grub from [testing] to [core] (i686, x86_64)

Added:
  grub/repos/core-i686/10_archlinux
(from rev 212224, grub/repos/testing-i686/10_archlinux)
  grub/repos/core-i686/60_memtest86+
(from rev 212224, grub/repos/testing-i686/60_memtest86+)
  grub/repos/core-i686/PKGBUILD
(from rev 212224, grub/repos/testing-i686/PKGBUILD)
  grub/repos/core-i686/archlinux_grub_mkconfig_fixes.patch
(from rev 212224, 
grub/repos/testing-i686/archlinux_grub_mkconfig_fixes.patch)
  grub/repos/core-i686/grub-10_linux-detect-archlinux-initramfs.patch
(from rev 212224, 
grub/repos/testing-i686/grub-10_linux-detect-archlinux-initramfs.patch)
  grub/repos/core-i686/grub-2.00-mkinitcpio-0.15.patch
(from rev 212224, grub/repos/testing-i686/grub-2.00-mkinitcpio-0.15.patch)
  grub/repos/core-i686/grub-2.00.5086-fix-lvm-parsing.patch
(from rev 212224, 
grub/repos/testing-i686/grub-2.00.5086-fix-lvm-parsing.patch)
  grub/repos/core-i686/grub-add-GRUB_COLOR_variables.patch
(from rev 212224, 
grub/repos/testing-i686/grub-add-GRUB_COLOR_variables.patch)
  grub/repos/core-i686/grub.cfg
(from rev 212224, grub/repos/testing-i686/grub.cfg)
  grub/repos/core-i686/grub.default
(from rev 212224, grub/repos/testing-i686/grub.default)
  grub/repos/core-i686/grub.install
(from rev 212224, grub/repos/testing-i686/grub.install)
  grub/repos/core-x86_64/10_archlinux
(from rev 212224, grub/repos/testing-x86_64/10_archlinux)
  grub/repos/core-x86_64/60_memtest86+
(from rev 212224, grub/repos/testing-x86_64/60_memtest86+)
  grub/repos/core-x86_64/PKGBUILD
(from rev 212224, grub/repos/testing-x86_64/PKGBUILD)
  grub/repos/core-x86_64/archlinux_grub_mkconfig_fixes.patch
(from rev 212224, 
grub/repos/testing-x86_64/archlinux_grub_mkconfig_fixes.patch)
  grub/repos/core-x86_64/grub-10_linux-detect-archlinux-initramfs.patch
(from rev 212224, 
grub/repos/testing-x86_64/grub-10_linux-detect-archlinux-initramfs.patch)
  grub/repos/core-x86_64/grub-2.00-mkinitcpio-0.15.patch
(from rev 212224, grub/repos/testing-x86_64/grub-2.00-mkinitcpio-0.15.patch)
  grub/repos/core-x86_64/grub-2.00.5086-fix-lvm-parsing.patch
(from rev 212224, 
grub/repos/testing-x86_64/grub-2.00.5086-fix-lvm-parsing.patch)
  grub/repos/core-x86_64/grub-add-GRUB_COLOR_variables.patch
(from rev 212224, 
grub/repos/testing-x86_64/grub-add-GRUB_COLOR_variables.patch)
  grub/repos/core-x86_64/grub.cfg
(from rev 212224, grub/repos/testing-x86_64/grub.cfg)
  grub/repos/core-x86_64/grub.default
(from rev 212224, grub/repos/testing-x86_64/grub.default)
  grub/repos/core-x86_64/grub.install
(from rev 212224, grub/repos/testing-x86_64/grub.install)
Deleted:
  grub/repos/core-i686/10_archlinux
  grub/repos/core-i686/60_memtest86+
  grub/repos/core-i686/PKGBUILD
  grub/repos/core-i686/archlinux_grub_mkconfig_fixes.patch
  grub/repos/core-i686/grub-2.00-mkinitcpio-0.15.patch
  grub/repos/core-i686/grub-2.00.5086-fix-lvm-parsing.patch
  grub/repos/core-i686/grub-add-GRUB_COLOR_variables.patch
  grub/repos/core-i686/grub.cfg
  grub/repos/core-i686/grub.default
  grub/repos/core-i686/grub.install
  grub/repos/core-x86_64/10_archlinux
  grub/repos/core-x86_64/60_memtest86+
  grub/repos/core-x86_64/PKGBUILD
  grub/repos/core-x86_64/archlinux_grub_mkconfig_fixes.patch
  grub/repos/core-x86_64/grub-2.00-mkinitcpio-0.15.patch
  grub/repos/core-x86_64/grub-2.00.5086-fix-lvm-parsing.patch
  grub/repos/core-x86_64/grub-add-GRUB_COLOR_variables.patch
  grub/repos/core-x86_64/grub.cfg
  grub/repos/core-x86_64/grub.default
  grub/repos/core-x86_64/grub.install
  grub/repos/testing-i686/
  grub/repos/testing-x86_64/

+
 /10_archlinux  |  388 +++
 /60_memtest86+ |   64 +
 /PKGBUILD  |  552 +++
 /archlinux_grub_mkconfig_fixes.patch   |  286 +
 /grub-2.00-mkinitcpio-0.15.patch   |   22 
 /grub-2.00.5086-fix-lvm-parsing.patch  |  108 ++
 /grub-add-GRUB_COLOR_variables.patch   |   64 +
 /grub.cfg  |  278 +
 /grub.default  |   94 +
 /grub.install  |   66 +
 core-i686/10_archlinux |  194 ---
 core-i686/60_memtest86+|   32 
 core-i686/PKGBUILD |  274 -
 core-i686/archlinux_grub_mkconfig_fixes.patch  |  143 --
 core-i686/grub-10_linux-detect-archlinux-initramfs.patch   |   54 +
 core-i686/grub-2.00-mkinitcpio-0.15.patch  |   11 
 core-i686/grub-2.00.5086-fix-lvm-parsing.patch | 

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

2014-05-11 Thread Tobias Powalowski
Date: Sunday, May 11, 2014 @ 11:02:01
  Author: tpowa
Revision: 212226

upgpkg: efivar 0.10-1

bump to latest version

Modified:
  efivar/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-11 08:54:28 UTC (rev 212225)
+++ PKGBUILD2014-05-11 09:02:01 UTC (rev 212226)
@@ -4,7 +4,7 @@
 
 pkgname=efivar
 pkgdesc=Tools and library to manipulate EFI variables
-pkgver=0.8
+pkgver=0.10
 pkgrel=1
 arch=('x86_64' 'i686')
 url=https://github.com/vathpela/efivar;
@@ -31,6 +31,7 @@
echo

sed 's|-rpath=$(TOPDIR)/src/|-rpath=$(libdir)|g' -i 
${srcdir}/efivar/src/test/Makefile || true
+sed 's|-O0|-Os|g' -i ${srcdir}/efivar/Make.defaults || true

 }
 



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

2014-05-11 Thread Tobias Powalowski
Date: Sunday, May 11, 2014 @ 11:02:10
  Author: tpowa
Revision: 212227

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

Added:
  efivar/repos/testing-i686/
  efivar/repos/testing-i686/PKGBUILD
(from rev 212226, efivar/trunk/PKGBUILD)
  efivar/repos/testing-x86_64/
  efivar/repos/testing-x86_64/PKGBUILD
(from rev 212226, efivar/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   57 ++
 testing-x86_64/PKGBUILD |   57 ++
 2 files changed, 114 insertions(+)

Copied: efivar/repos/testing-i686/PKGBUILD (from rev 212226, 
efivar/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-05-11 09:02:10 UTC (rev 212227)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer : Tobias Powalowski tp...@archlinux.org
+# Contributor : Keshav Amburay (the ddoott ridikulus ddoott rat) (aatt) 
(gemmaeiil) (ddoott) (ccoomm)
+
+pkgname=efivar
+pkgdesc=Tools and library to manipulate EFI variables
+pkgver=0.10
+pkgrel=1
+arch=('x86_64' 'i686')
+url=https://github.com/vathpela/efivar;
+license=('LGPL2.1')
+makedepends=('git')
+depends=('popt')
+conflicts=('libefivar')
+provides=(libefivar=${pkgver})
+options=('strip' 'zipman' 'docs')
+
+source=(efivar::git+https://github.com/vathpela/efivar.git#tag=${pkgver};)
+sha1sums=('SKIP')
+
+_pkgver() {
+   cd ${srcdir}/efivar/
+   echo $(git describe --tags) | sed -e 's|-|\.|g'
+}
+
+prepare() {
+   
+   cd ${srcdir}/efivar/
+   
+   git clean -x -d -f
+   echo
+   
+   sed 's|-rpath=$(TOPDIR)/src/|-rpath=$(libdir)|g' -i 
${srcdir}/efivar/src/test/Makefile || true
+sed 's|-O0|-Os|g' -i ${srcdir}/efivar/Make.defaults || true
+   
+}
+
+build() {
+   
+   cd ${srcdir}/efivar/
+   
+   make libdir=/usr/lib/ bindir=/usr/bin/ mandir=/usr/share/man/ 
includedir=/usr/include/ V=1 -j1
+   echo
+   
+}
+
+package() {
+   
+   cd ${srcdir}/efivar/
+   
+   make -j1 V=1 DESTDIR=${pkgdir}/ libdir=/usr/lib/ bindir=/usr/bin/ 
mandir=/usr/share/man/ includedir=/usr/include/ install
+   echo
+   
+   install -d ${pkgdir}/usr/bin
+   install -D -m0755 ${srcdir}/efivar/src/test/tester 
${pkgdir}/usr/bin/efivar-tester
+   
+}

Copied: efivar/repos/testing-x86_64/PKGBUILD (from rev 212226, 
efivar/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-05-11 09:02:10 UTC (rev 212227)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer : Tobias Powalowski tp...@archlinux.org
+# Contributor : Keshav Amburay (the ddoott ridikulus ddoott rat) (aatt) 
(gemmaeiil) (ddoott) (ccoomm)
+
+pkgname=efivar
+pkgdesc=Tools and library to manipulate EFI variables
+pkgver=0.10
+pkgrel=1
+arch=('x86_64' 'i686')
+url=https://github.com/vathpela/efivar;
+license=('LGPL2.1')
+makedepends=('git')
+depends=('popt')
+conflicts=('libefivar')
+provides=(libefivar=${pkgver})
+options=('strip' 'zipman' 'docs')
+
+source=(efivar::git+https://github.com/vathpela/efivar.git#tag=${pkgver};)
+sha1sums=('SKIP')
+
+_pkgver() {
+   cd ${srcdir}/efivar/
+   echo $(git describe --tags) | sed -e 's|-|\.|g'
+}
+
+prepare() {
+   
+   cd ${srcdir}/efivar/
+   
+   git clean -x -d -f
+   echo
+   
+   sed 's|-rpath=$(TOPDIR)/src/|-rpath=$(libdir)|g' -i 
${srcdir}/efivar/src/test/Makefile || true
+sed 's|-O0|-Os|g' -i ${srcdir}/efivar/Make.defaults || true
+   
+}
+
+build() {
+   
+   cd ${srcdir}/efivar/
+   
+   make libdir=/usr/lib/ bindir=/usr/bin/ mandir=/usr/share/man/ 
includedir=/usr/include/ V=1 -j1
+   echo
+   
+}
+
+package() {
+   
+   cd ${srcdir}/efivar/
+   
+   make -j1 V=1 DESTDIR=${pkgdir}/ libdir=/usr/lib/ bindir=/usr/bin/ 
mandir=/usr/share/man/ includedir=/usr/include/ install
+   echo
+   
+   install -d ${pkgdir}/usr/bin
+   install -D -m0755 ${srcdir}/efivar/src/test/tester 
${pkgdir}/usr/bin/efivar-tester
+   
+}



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

2014-05-11 Thread Tobias Powalowski
Date: Sunday, May 11, 2014 @ 11:19:56
  Author: tpowa
Revision: 212228

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

Added:
  refind-efi/repos/extra-i686/PKGBUILD
(from rev 212227, refind-efi/repos/testing-i686/PKGBUILD)
  refind-efi/repos/extra-i686/refind-efi.install
(from rev 212227, refind-efi/repos/testing-i686/refind-efi.install)
  refind-efi/repos/extra-i686/refind_linux.conf
(from rev 212227, refind-efi/repos/testing-i686/refind_linux.conf)
  refind-efi/repos/extra-x86_64/PKGBUILD
(from rev 212227, refind-efi/repos/testing-x86_64/PKGBUILD)
  refind-efi/repos/extra-x86_64/refind-efi.install
(from rev 212227, refind-efi/repos/testing-x86_64/refind-efi.install)
  refind-efi/repos/extra-x86_64/refind_linux.conf
(from rev 212227, refind-efi/repos/testing-x86_64/refind_linux.conf)
Deleted:
  refind-efi/repos/extra-i686/PKGBUILD
  refind-efi/repos/extra-i686/refind-efi.install
  refind-efi/repos/extra-i686/refind_linux.conf
  refind-efi/repos/extra-x86_64/PKGBUILD
  refind-efi/repos/extra-x86_64/refind-efi.install
  refind-efi/repos/extra-x86_64/refind_linux.conf
  refind-efi/repos/testing-i686/
  refind-efi/repos/testing-x86_64/

-+
 /PKGBUILD   |  520 ++
 /refind-efi.install |   64 
 /refind_linux.conf  |   10 
 extra-i686/PKGBUILD |  260 ---
 extra-i686/refind-efi.install   |   32 --
 extra-i686/refind_linux.conf|5 
 extra-x86_64/PKGBUILD   |  260 ---
 extra-x86_64/refind-efi.install |   32 --
 extra-x86_64/refind_linux.conf  |5 
 9 files changed, 594 insertions(+), 594 deletions(-)

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


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

2014-05-11 Thread Bartłomiej Piotrowski
Date: Sunday, May 11, 2014 @ 12:00:41
  Author: bpiotrowski
Revision: 212230

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-05-11 10:00:21 UTC (rev 212229)
+++ extra-i686/PKGBUILD 2014-05-11 10:00:41 UTC (rev 212230)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru ib...@archlinux.org
-# Maintainer: Bartłomiej Piotrowski bpiotrow...@archlinux.org
-
-pkgname=libva
-pkgver=1.3.0
-pkgrel=1
-pkgdesc='Video Acceleration (VA) API for Linux'
-arch=('i686' 'x86_64')
-url='http://freedesktop.org/wiki/Software/vaapi'
-license=('MIT')
-depends=('libgl' 'libdrm' 'libxfixes')
-makedepends=('mesa')
-optdepends=('libva-vdpau-driver: vdpau back-end for nvidia'
-'libva-intel-driver: back-end for intel cards')
-source=(http://www.freedesktop.org/software/vaapi/releases/$pkgname/$pkgname-$pkgver.tar.bz2)
-md5sums=('471bef887e92437914a7e1f75570')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-  install -m644 -D COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
-}

Copied: libva/repos/extra-i686/PKGBUILD (from rev 212229, libva/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-05-11 10:00:41 UTC (rev 212230)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Ionut Biru ib...@archlinux.org
+# Maintainer: Bartłomiej Piotrowski bpiotrow...@archlinux.org
+
+pkgname=libva
+pkgver=1.3.1
+pkgrel=1
+pkgdesc='Video Acceleration (VA) API for Linux'
+arch=('i686' 'x86_64')
+url='http://freedesktop.org/wiki/Software/vaapi'
+license=('MIT')
+depends=('libgl' 'libdrm' 'libxfixes')
+makedepends=('mesa')
+optdepends=('libva-vdpau-driver: vdpau back-end for nvidia'
+'libva-intel-driver: back-end for intel cards')
+source=(http://www.freedesktop.org/software/vaapi/releases/$pkgname/$pkgname-$pkgver.tar.bz2)
+md5sums=('eb4db967f06885b597071c66b480')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+  install -m644 -D COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2014-05-11 10:00:21 UTC (rev 212229)
+++ extra-x86_64/PKGBUILD   2014-05-11 10:00:41 UTC (rev 212230)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru ib...@archlinux.org
-# Maintainer: Bartłomiej Piotrowski bpiotrow...@archlinux.org
-
-pkgname=libva
-pkgver=1.3.0
-pkgrel=1
-pkgdesc='Video Acceleration (VA) API for Linux'
-arch=('i686' 'x86_64')
-url='http://freedesktop.org/wiki/Software/vaapi'
-license=('MIT')
-depends=('libgl' 'libdrm' 'libxfixes')
-makedepends=('mesa')
-optdepends=('libva-vdpau-driver: vdpau back-end for nvidia'
-'libva-intel-driver: back-end for intel cards')
-source=(http://www.freedesktop.org/software/vaapi/releases/$pkgname/$pkgname-$pkgver.tar.bz2)
-md5sums=('471bef887e92437914a7e1f75570')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-  install -m644 -D COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
-}

Copied: libva/repos/extra-x86_64/PKGBUILD (from rev 212229, 
libva/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2014-05-11 10:00:41 UTC (rev 212230)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Ionut Biru ib...@archlinux.org
+# Maintainer: Bartłomiej Piotrowski bpiotrow...@archlinux.org
+
+pkgname=libva
+pkgver=1.3.1
+pkgrel=1
+pkgdesc='Video Acceleration (VA) API for Linux'
+arch=('i686' 'x86_64')
+url='http://freedesktop.org/wiki/Software/vaapi'
+license=('MIT')
+depends=('libgl' 'libdrm' 'libxfixes')
+makedepends=('mesa')
+optdepends=('libva-vdpau-driver: vdpau back-end for nvidia'
+'libva-intel-driver: back-end for intel cards')
+source=(http://www.freedesktop.org/software/vaapi/releases/$pkgname/$pkgname-$pkgver.tar.bz2)
+md5sums=('eb4db967f06885b597071c66b480')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  

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

2014-05-11 Thread Bartłomiej Piotrowski
Date: Sunday, May 11, 2014 @ 12:00:21
  Author: bpiotrowski
Revision: 212229

upgpkg: libva 1.3.1-1

new upstream release

Modified:
  libva/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-11 09:19:56 UTC (rev 212228)
+++ PKGBUILD2014-05-11 10:00:21 UTC (rev 212229)
@@ -3,7 +3,7 @@
 # Maintainer: Bartłomiej Piotrowski bpiotrow...@archlinux.org
 
 pkgname=libva
-pkgver=1.3.0
+pkgver=1.3.1
 pkgrel=1
 pkgdesc='Video Acceleration (VA) API for Linux'
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 optdepends=('libva-vdpau-driver: vdpau back-end for nvidia'
 'libva-intel-driver: back-end for intel cards')
 
source=(http://www.freedesktop.org/software/vaapi/releases/$pkgname/$pkgname-$pkgver.tar.bz2)
-md5sums=('471bef887e92437914a7e1f75570')
+md5sums=('eb4db967f06885b597071c66b480')
 
 build() {
   cd $pkgname-$pkgver



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

2014-05-11 Thread Andrea Scarpino
Date: Sunday, May 11, 2014 @ 12:06:51
  Author: andrea
Revision: 212231

Let's try to package KDE Frameworks 5

Added:
  kcodecs/
  kcodecs/repos/
  kcodecs/trunk/
  kcodecs/trunk/PKGBUILD

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

Added: kcodecs/trunk/PKGBUILD
===
--- kcodecs/trunk/PKGBUILD  (rev 0)
+++ kcodecs/trunk/PKGBUILD  2014-05-11 10:06:51 UTC (rev 212231)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kcodecs
+pkgver=4.99.0
+pkgrel=1
+pkgdesc='Plugins allowing Qt applications to access further types of images'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/kcodecs'
+license=('LGPL')
+depends=('qt5-base')
+makedepends=('extra-cmake-modules' 'qt5-tools')
+groups=('kf5')
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('1e0175175d937290fa217ae13be6e642')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DECM_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}


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


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

2014-05-11 Thread Andrea Scarpino
Date: Sunday, May 11, 2014 @ 12:07:08
  Author: andrea
Revision: 212232

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

Added:
  kcodecs/repos/kde-unstable-i686/
  kcodecs/repos/kde-unstable-i686/PKGBUILD
(from rev 212231, kcodecs/trunk/PKGBUILD)
  kcodecs/repos/kde-unstable-x86_64/
  kcodecs/repos/kde-unstable-x86_64/PKGBUILD
(from rev 212231, kcodecs/trunk/PKGBUILD)

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

Copied: kcodecs/repos/kde-unstable-i686/PKGBUILD (from rev 212231, 
kcodecs/trunk/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2014-05-11 10:07:08 UTC (rev 212232)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kcodecs
+pkgver=4.99.0
+pkgrel=1
+pkgdesc='Plugins allowing Qt applications to access further types of images'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/kcodecs'
+license=('LGPL')
+depends=('qt5-base')
+makedepends=('extra-cmake-modules' 'qt5-tools')
+groups=('kf5')
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('1e0175175d937290fa217ae13be6e642')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DECM_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Copied: kcodecs/repos/kde-unstable-x86_64/PKGBUILD (from rev 212231, 
kcodecs/trunk/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2014-05-11 10:07:08 UTC (rev 212232)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kcodecs
+pkgver=4.99.0
+pkgrel=1
+pkgdesc='Plugins allowing Qt applications to access further types of images'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/kcodecs'
+license=('LGPL')
+depends=('qt5-base')
+makedepends=('extra-cmake-modules' 'qt5-tools')
+groups=('kf5')
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('1e0175175d937290fa217ae13be6e642')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DECM_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}



[arch-commits] Commit in (5 files)

2014-05-11 Thread Andrea Scarpino
Date: Sunday, May 11, 2014 @ 12:13:03
  Author: andrea
Revision: 212233

Let's try to package KDE Frameworks 5

Added:
  kconfig/
  kconfig/repos/
  kconfig/trunk/
  kconfig/trunk/PKGBUILD
  kconfig/{trunk,/

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

Added: kconfig/trunk/PKGBUILD
===
--- kconfig/trunk/PKGBUILD  (rev 0)
+++ kconfig/trunk/PKGBUILD  2014-05-11 10:13:03 UTC (rev 212233)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kconfig
+pkgver=4.99.0
+pkgrel=1
+pkgdesc='KConfig'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/kconfig'
+license=('LGPL')
+depends=('qt5-base')
+makedepends=('extra-cmake-modules' 'qt5-tools')
+groups=('kf5')
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('e33647c16fabe50a9545476b6be03eb3')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DECM_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}


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


[arch-commits] Commit in kconfig (5 files)

2014-05-11 Thread Andrea Scarpino
Date: Sunday, May 11, 2014 @ 12:13:29
  Author: andrea
Revision: 212234

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

Added:
  kconfig/repos/kde-unstable-i686/
  kconfig/repos/kde-unstable-i686/PKGBUILD
(from rev 212233, kconfig/trunk/PKGBUILD)
  kconfig/repos/kde-unstable-x86_64/
  kconfig/repos/kde-unstable-x86_64/PKGBUILD
(from rev 212233, kconfig/trunk/PKGBUILD)
Deleted:
  kconfig/{trunk,/

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

Copied: kconfig/repos/kde-unstable-i686/PKGBUILD (from rev 212233, 
kconfig/trunk/PKGBUILD)
===
--- repos/kde-unstable-i686/PKGBUILD(rev 0)
+++ repos/kde-unstable-i686/PKGBUILD2014-05-11 10:13:29 UTC (rev 212234)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kconfig
+pkgver=4.99.0
+pkgrel=1
+pkgdesc='KConfig'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/kconfig'
+license=('LGPL')
+depends=('qt5-base')
+makedepends=('extra-cmake-modules' 'qt5-tools')
+groups=('kf5')
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('e33647c16fabe50a9545476b6be03eb3')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DECM_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Copied: kconfig/repos/kde-unstable-x86_64/PKGBUILD (from rev 212233, 
kconfig/trunk/PKGBUILD)
===
--- repos/kde-unstable-x86_64/PKGBUILD  (rev 0)
+++ repos/kde-unstable-x86_64/PKGBUILD  2014-05-11 10:13:29 UTC (rev 212234)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kconfig
+pkgver=4.99.0
+pkgrel=1
+pkgdesc='KConfig'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/kconfig'
+license=('LGPL')
+depends=('qt5-base')
+makedepends=('extra-cmake-modules' 'qt5-tools')
+groups=('kf5')
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('e33647c16fabe50a9545476b6be03eb3')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DECM_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}



[arch-commits] Commit in libva-intel-driver/trunk (PKGBUILD)

2014-05-11 Thread Bartłomiej Piotrowski
Date: Sunday, May 11, 2014 @ 12:16:17
  Author: bpiotrowski
Revision: 212235

upgpkg: libva-intel-driver 1.3.1-1

new upstream release

Modified:
  libva-intel-driver/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-11 10:13:29 UTC (rev 212234)
+++ PKGBUILD2014-05-11 10:16:17 UTC (rev 212235)
@@ -3,7 +3,7 @@
 # Maintainer: Bartłomiej Piotrowski bpiotrow...@archlinux.org
 
 pkgname=libva-intel-driver
-pkgver=1.3.0
+pkgver=1.3.1
 pkgrel=1
 pkgdesc='VA-API implementation for Intel G45 and HD Graphics family'
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 depends=('libva')
 replaces=('libva-driver-intel')
 
source=(http://freedesktop.org/software/vaapi/releases/$pkgname/$pkgname-$pkgver.tar.bz2)
-md5sums=('26d5cb188b93e415e70ee662aad924f1')
+md5sums=('0d6f1ca655130bac8edf3fc8a8dada48')
 
 build() {
   cd $pkgname-$pkgver



[arch-commits] Commit in libva-intel-driver/repos (4 files)

2014-05-11 Thread Bartłomiej Piotrowski
Date: Sunday, May 11, 2014 @ 12:16:31
  Author: bpiotrowski
Revision: 212236

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

Added:
  libva-intel-driver/repos/extra-i686/PKGBUILD
(from rev 212235, libva-intel-driver/trunk/PKGBUILD)
  libva-intel-driver/repos/extra-x86_64/PKGBUILD
(from rev 212235, libva-intel-driver/trunk/PKGBUILD)
Deleted:
  libva-intel-driver/repos/extra-i686/PKGBUILD
  libva-intel-driver/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-05-11 10:16:17 UTC (rev 212235)
+++ extra-i686/PKGBUILD 2014-05-11 10:16:31 UTC (rev 212236)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru ib...@archlinux.org
-# Maintainer: Bartłomiej Piotrowski bpiotrow...@archlinux.org
-
-pkgname=libva-intel-driver
-pkgver=1.3.0
-pkgrel=1
-pkgdesc='VA-API implementation for Intel G45 and HD Graphics family'
-arch=('i686' 'x86_64')
-url='http://freedesktop.org/wiki/Software/vaapi'
-license=('MIT')
-depends=('libva')
-replaces=('libva-driver-intel')
-source=(http://freedesktop.org/software/vaapi/releases/$pkgname/$pkgname-$pkgver.tar.bz2)
-md5sums=('26d5cb188b93e415e70ee662aad924f1')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
-}

Copied: libva-intel-driver/repos/extra-i686/PKGBUILD (from rev 212235, 
libva-intel-driver/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-05-11 10:16:31 UTC (rev 212236)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Ionut Biru ib...@archlinux.org
+# Maintainer: Bartłomiej Piotrowski bpiotrow...@archlinux.org
+
+pkgname=libva-intel-driver
+pkgver=1.3.1
+pkgrel=1
+pkgdesc='VA-API implementation for Intel G45 and HD Graphics family'
+arch=('i686' 'x86_64')
+url='http://freedesktop.org/wiki/Software/vaapi'
+license=('MIT')
+depends=('libva')
+replaces=('libva-driver-intel')
+source=(http://freedesktop.org/software/vaapi/releases/$pkgname/$pkgname-$pkgver.tar.bz2)
+md5sums=('0d6f1ca655130bac8edf3fc8a8dada48')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2014-05-11 10:16:17 UTC (rev 212235)
+++ extra-x86_64/PKGBUILD   2014-05-11 10:16:31 UTC (rev 212236)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru ib...@archlinux.org
-# Maintainer: Bartłomiej Piotrowski bpiotrow...@archlinux.org
-
-pkgname=libva-intel-driver
-pkgver=1.3.0
-pkgrel=1
-pkgdesc='VA-API implementation for Intel G45 and HD Graphics family'
-arch=('i686' 'x86_64')
-url='http://freedesktop.org/wiki/Software/vaapi'
-license=('MIT')
-depends=('libva')
-replaces=('libva-driver-intel')
-source=(http://freedesktop.org/software/vaapi/releases/$pkgname/$pkgname-$pkgver.tar.bz2)
-md5sums=('26d5cb188b93e415e70ee662aad924f1')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
-}

Copied: libva-intel-driver/repos/extra-x86_64/PKGBUILD (from rev 212235, 
libva-intel-driver/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2014-05-11 10:16:31 UTC (rev 212236)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Ionut Biru ib...@archlinux.org
+# Maintainer: Bartłomiej Piotrowski bpiotrow...@archlinux.org
+
+pkgname=libva-intel-driver
+pkgver=1.3.1
+pkgrel=1
+pkgdesc='VA-API implementation for Intel G45 and HD Graphics family'
+arch=('i686' 'x86_64')
+url='http://freedesktop.org/wiki/Software/vaapi'
+license=('MIT')
+depends=('libva')
+replaces=('libva-driver-intel')
+source=(http://freedesktop.org/software/vaapi/releases/$pkgname/$pkgname-$pkgver.tar.bz2)
+md5sums=('0d6f1ca655130bac8edf3fc8a8dada48')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+}



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

2014-05-11 Thread Andrea Scarpino
Date: Sunday, May 11, 2014 @ 12:21:49
  Author: andrea
Revision: 212238

upgpkg: kdoctools 4.99.0-1

Modified:
  kdoctools/trunk/PKGBUILD  (properties)

Index: kdoctools/trunk/PKGBUILD
===
--- kdoctools/trunk/PKGBUILD2014-05-11 10:21:33 UTC (rev 212237)
+++ kdoctools/trunk/PKGBUILD2014-05-11 10:21:49 UTC (rev 212238)

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


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

2014-05-11 Thread Andrea Scarpino
Date: Sunday, May 11, 2014 @ 12:21:58
  Author: andrea
Revision: 212239

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

Added:
  kdoctools/repos/kde-unstable-i686/
  kdoctools/repos/kde-unstable-i686/PKGBUILD
(from rev 212238, kdoctools/trunk/PKGBUILD)
  kdoctools/repos/kde-unstable-x86_64/
  kdoctools/repos/kde-unstable-x86_64/PKGBUILD
(from rev 212238, kdoctools/trunk/PKGBUILD)

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

Copied: kdoctools/repos/kde-unstable-i686/PKGBUILD (from rev 212238, 
kdoctools/trunk/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2014-05-11 10:21:58 UTC (rev 212239)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdoctools
+pkgver=4.99.0
+pkgrel=1
+pkgdesc='KDocTools'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/kdoctools'
+license=('LGPL')
+depends=('karchive' 'docbook-xsl')
+makedepends=('extra-cmake-modules')
+groups=('kf5')
+options=('staticlibs')
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('371c1e103bf63328a7237292fa9346e2')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Copied: kdoctools/repos/kde-unstable-x86_64/PKGBUILD (from rev 212238, 
kdoctools/trunk/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2014-05-11 10:21:58 UTC (rev 212239)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdoctools
+pkgver=4.99.0
+pkgrel=1
+pkgdesc='KDocTools'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/kdoctools'
+license=('LGPL')
+depends=('karchive' 'docbook-xsl')
+makedepends=('extra-cmake-modules')
+groups=('kf5')
+options=('staticlibs')
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('371c1e103bf63328a7237292fa9346e2')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}



[arch-commits] Commit in (4 files)

2014-05-11 Thread Andrea Scarpino
Date: Sunday, May 11, 2014 @ 12:21:33
  Author: andrea
Revision: 212237

Let's try to package KDE Frameworks 5

Added:
  kdoctools/
  kdoctools/repos/
  kdoctools/trunk/
  kdoctools/trunk/PKGBUILD

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

Added: kdoctools/trunk/PKGBUILD
===
--- kdoctools/trunk/PKGBUILD(rev 0)
+++ kdoctools/trunk/PKGBUILD2014-05-11 10:21:33 UTC (rev 212237)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdoctools
+pkgver=4.99.0
+pkgrel=1
+pkgdesc='KDocTools'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/kdoctools'
+license=('LGPL')
+depends=('karchive' 'docbook-xsl')
+makedepends=('extra-cmake-modules')
+groups=('kf5')
+options=('staticlibs')
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('371c1e103bf63328a7237292fa9346e2')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}



[arch-commits] Commit in (4 files)

2014-05-11 Thread Andrea Scarpino
Date: Sunday, May 11, 2014 @ 12:26:29
  Author: andrea
Revision: 212240

Let's try to package KDE Frameworks 5

Added:
  kguiaddons/
  kguiaddons/repos/
  kguiaddons/trunk/
  kguiaddons/trunk/PKGBUILD

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

Added: kguiaddons/trunk/PKGBUILD
===
--- kguiaddons/trunk/PKGBUILD   (rev 0)
+++ kguiaddons/trunk/PKGBUILD   2014-05-11 10:26:29 UTC (rev 212240)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kguiaddons
+pkgver=4.99.0
+pkgrel=2
+pkgdesc='KGuiAddons'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/kguiaddons'
+license=('LGPL')
+depends=('qt5-x11extras')
+makedepends=('extra-cmake-modules')
+groups=('kf5')
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('203900cb056e428305ccd9bac635174d')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DECM_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}


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


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

2014-05-11 Thread Andrea Scarpino
Date: Sunday, May 11, 2014 @ 12:26:55
  Author: andrea
Revision: 212241

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

Added:
  kguiaddons/repos/kde-unstable-i686/
  kguiaddons/repos/kde-unstable-i686/PKGBUILD
(from rev 212240, kguiaddons/trunk/PKGBUILD)
  kguiaddons/repos/kde-unstable-x86_64/
  kguiaddons/repos/kde-unstable-x86_64/PKGBUILD
(from rev 212240, kguiaddons/trunk/PKGBUILD)

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

Copied: kguiaddons/repos/kde-unstable-i686/PKGBUILD (from rev 212240, 
kguiaddons/trunk/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2014-05-11 10:26:55 UTC (rev 212241)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kguiaddons
+pkgver=4.99.0
+pkgrel=2
+pkgdesc='KGuiAddons'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/kguiaddons'
+license=('LGPL')
+depends=('qt5-x11extras')
+makedepends=('extra-cmake-modules')
+groups=('kf5')
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('203900cb056e428305ccd9bac635174d')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DECM_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Copied: kguiaddons/repos/kde-unstable-x86_64/PKGBUILD (from rev 212240, 
kguiaddons/trunk/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2014-05-11 10:26:55 UTC (rev 212241)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kguiaddons
+pkgver=4.99.0
+pkgrel=2
+pkgdesc='KGuiAddons'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/kguiaddons'
+license=('LGPL')
+depends=('qt5-x11extras')
+makedepends=('extra-cmake-modules')
+groups=('kf5')
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('203900cb056e428305ccd9bac635174d')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DECM_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}



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

2014-05-11 Thread Andrea Scarpino
Date: Sunday, May 11, 2014 @ 12:29:25
  Author: andrea
Revision: 212242

Let's try to package KDE Frameworks 5

Added:
  kjs/
  kjs/repos/
  kjs/trunk/
  kjs/trunk/PKGBUILD

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

Added: kjs/trunk/PKGBUILD
===
--- kjs/trunk/PKGBUILD  (rev 0)
+++ kjs/trunk/PKGBUILD  2014-05-11 10:29:25 UTC (rev 212242)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kjs
+pkgver=4.99.0
+pkgrel=1
+pkgdesc='KJS'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/kjs'
+license=('LGPL')
+depends=('qt5-base')
+makedepends=('extra-cmake-modules')
+groups=('kf5-aids')
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/portingAids/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('d516877ee840ff66a07dbdabc4ef1475')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DECM_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}


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


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

2014-05-11 Thread Andrea Scarpino
Date: Sunday, May 11, 2014 @ 12:29:53
  Author: andrea
Revision: 212243

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

Added:
  kjs/repos/kde-unstable-i686/
  kjs/repos/kde-unstable-i686/PKGBUILD
(from rev 212242, kjs/trunk/PKGBUILD)
  kjs/repos/kde-unstable-x86_64/
  kjs/repos/kde-unstable-x86_64/PKGBUILD
(from rev 212242, kjs/trunk/PKGBUILD)

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

Copied: kjs/repos/kde-unstable-i686/PKGBUILD (from rev 212242, 
kjs/trunk/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2014-05-11 10:29:53 UTC (rev 212243)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kjs
+pkgver=4.99.0
+pkgrel=1
+pkgdesc='KJS'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/kjs'
+license=('LGPL')
+depends=('qt5-base')
+makedepends=('extra-cmake-modules')
+groups=('kf5-aids')
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/portingAids/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('d516877ee840ff66a07dbdabc4ef1475')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DECM_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Copied: kjs/repos/kde-unstable-x86_64/PKGBUILD (from rev 212242, 
kjs/trunk/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2014-05-11 10:29:53 UTC (rev 212243)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kjs
+pkgver=4.99.0
+pkgrel=1
+pkgdesc='KJS'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/kjs'
+license=('LGPL')
+depends=('qt5-base')
+makedepends=('extra-cmake-modules')
+groups=('kf5-aids')
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/portingAids/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('d516877ee840ff66a07dbdabc4ef1475')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DECM_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}



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

2014-05-11 Thread Andrea Scarpino
Date: Sunday, May 11, 2014 @ 12:32:25
  Author: andrea
Revision: 212244

Let's try to package KDE Frameworks 5

Added:
  ki18n/
  ki18n/repos/
  ki18n/trunk/
  ki18n/trunk/PKGBUILD

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

Added: ki18n/trunk/PKGBUILD
===
--- ki18n/trunk/PKGBUILD(rev 0)
+++ ki18n/trunk/PKGBUILD2014-05-11 10:32:25 UTC (rev 212244)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=ki18n
+pkgver=4.99.0
+pkgrel=1
+pkgdesc='Ki18n'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/ki18n'
+license=('LGPL')
+depends=('qt5-script')
+makedepends=('extra-cmake-modules')
+groups=('kf5')
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('aec50a8bce055c81e361088df61a4a7c')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DECM_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}



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

2014-05-11 Thread Andrea Scarpino
Date: Sunday, May 11, 2014 @ 12:32:45
  Author: andrea
Revision: 212245

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

Added:
  ki18n/repos/kde-unstable-i686/
  ki18n/repos/kde-unstable-i686/PKGBUILD
(from rev 212244, ki18n/trunk/PKGBUILD)
  ki18n/repos/kde-unstable-x86_64/
  ki18n/repos/kde-unstable-x86_64/PKGBUILD
(from rev 212244, ki18n/trunk/PKGBUILD)

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

Copied: ki18n/repos/kde-unstable-i686/PKGBUILD (from rev 212244, 
ki18n/trunk/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2014-05-11 10:32:45 UTC (rev 212245)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=ki18n
+pkgver=4.99.0
+pkgrel=1
+pkgdesc='Ki18n'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/ki18n'
+license=('LGPL')
+depends=('qt5-script')
+makedepends=('extra-cmake-modules')
+groups=('kf5')
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('aec50a8bce055c81e361088df61a4a7c')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DECM_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Copied: ki18n/repos/kde-unstable-x86_64/PKGBUILD (from rev 212244, 
ki18n/trunk/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2014-05-11 10:32:45 UTC (rev 212245)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=ki18n
+pkgver=4.99.0
+pkgrel=1
+pkgdesc='Ki18n'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/ki18n'
+license=('LGPL')
+depends=('qt5-script')
+makedepends=('extra-cmake-modules')
+groups=('kf5')
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('aec50a8bce055c81e361088df61a4a7c')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DECM_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}



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

2014-05-11 Thread Andrea Scarpino
Date: Sunday, May 11, 2014 @ 12:37:00
  Author: andrea
Revision: 212247

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

Added:
  kwidgetsaddons/repos/kde-unstable-i686/
  kwidgetsaddons/repos/kde-unstable-i686/PKGBUILD
(from rev 212246, kwidgetsaddons/trunk/PKGBUILD)
  kwidgetsaddons/repos/kde-unstable-x86_64/
  kwidgetsaddons/repos/kde-unstable-x86_64/PKGBUILD
(from rev 212246, kwidgetsaddons/trunk/PKGBUILD)

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

Copied: kwidgetsaddons/repos/kde-unstable-i686/PKGBUILD (from rev 212246, 
kwidgetsaddons/trunk/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2014-05-11 10:37:00 UTC (rev 212247)
@@ -0,0 +1,34 @@
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kwidgetsaddons
+pkgver=4.99.0
+pkgrel=1
+pkgdesc='KWidgetsAddons'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/kwidgetsaddons'
+license=('LGPL')
+depends=('qt5-base')
+makedepends=('extra-cmake-modules' 'qt5-tools')
+groups=('kf5')
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('aa32781851c9e1eb35355e6db780d76f')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DECM_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Copied: kwidgetsaddons/repos/kde-unstable-x86_64/PKGBUILD (from rev 212246, 
kwidgetsaddons/trunk/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2014-05-11 10:37:00 UTC (rev 212247)
@@ -0,0 +1,34 @@
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kwidgetsaddons
+pkgver=4.99.0
+pkgrel=1
+pkgdesc='KWidgetsAddons'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/kwidgetsaddons'
+license=('LGPL')
+depends=('qt5-base')
+makedepends=('extra-cmake-modules' 'qt5-tools')
+groups=('kf5')
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('aa32781851c9e1eb35355e6db780d76f')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DECM_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}



[arch-commits] Commit in (4 files)

2014-05-11 Thread Andrea Scarpino
Date: Sunday, May 11, 2014 @ 12:36:45
  Author: andrea
Revision: 212246

Let's try to package KDE Frameworks 5

Added:
  kwidgetsaddons/
  kwidgetsaddons/repos/
  kwidgetsaddons/trunk/
  kwidgetsaddons/trunk/PKGBUILD

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

Added: kwidgetsaddons/trunk/PKGBUILD
===
--- kwidgetsaddons/trunk/PKGBUILD   (rev 0)
+++ kwidgetsaddons/trunk/PKGBUILD   2014-05-11 10:36:45 UTC (rev 212246)
@@ -0,0 +1,34 @@
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kwidgetsaddons
+pkgver=4.99.0
+pkgrel=1
+pkgdesc='KWidgetsAddons'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/kwidgetsaddons'
+license=('LGPL')
+depends=('qt5-base')
+makedepends=('extra-cmake-modules' 'qt5-tools')
+groups=('kf5')
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('aa32781851c9e1eb35355e6db780d76f')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DECM_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}



[arch-commits] Commit in (4 files)

2014-05-11 Thread Andrea Scarpino
Date: Sunday, May 11, 2014 @ 12:42:13
  Author: andrea
Revision: 212248

Let's try to package KDE Frameworks 5

Added:
  kconfigwidgets/
  kconfigwidgets/repos/
  kconfigwidgets/trunk/
  kconfigwidgets/trunk/PKGBUILD

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

Added: kconfigwidgets/trunk/PKGBUILD
===
--- kconfigwidgets/trunk/PKGBUILD   (rev 0)
+++ kconfigwidgets/trunk/PKGBUILD   2014-05-11 10:42:13 UTC (rev 212248)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kconfigwidgets
+pkgver=4.99.0
+pkgrel=1
+pkgdesc='Widgets for KConfig'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/kconfigwidgets'
+license=('LGPL')
+depends=('kauth' 'kcodecs' 'kconfig' 'kguiaddons' 'ki18n' 'kwidgetsaddons')
+makedepends=('extra-cmake-modules' 'kdoctools')
+groups=('kf5')
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('6465152efd2962e0c8493ff0816aebfd')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DECM_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}


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


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

2014-05-11 Thread Andrea Scarpino
Date: Sunday, May 11, 2014 @ 12:42:28
  Author: andrea
Revision: 212249

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

Added:
  kconfigwidgets/repos/kde-unstable-i686/
  kconfigwidgets/repos/kde-unstable-i686/PKGBUILD
(from rev 212248, kconfigwidgets/trunk/PKGBUILD)
  kconfigwidgets/repos/kde-unstable-x86_64/
  kconfigwidgets/repos/kde-unstable-x86_64/PKGBUILD
(from rev 212248, kconfigwidgets/trunk/PKGBUILD)

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

Copied: kconfigwidgets/repos/kde-unstable-i686/PKGBUILD (from rev 212248, 
kconfigwidgets/trunk/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2014-05-11 10:42:28 UTC (rev 212249)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kconfigwidgets
+pkgver=4.99.0
+pkgrel=1
+pkgdesc='Widgets for KConfig'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/kconfigwidgets'
+license=('LGPL')
+depends=('kauth' 'kcodecs' 'kconfig' 'kguiaddons' 'ki18n' 'kwidgetsaddons')
+makedepends=('extra-cmake-modules' 'kdoctools')
+groups=('kf5')
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('6465152efd2962e0c8493ff0816aebfd')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DECM_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Copied: kconfigwidgets/repos/kde-unstable-x86_64/PKGBUILD (from rev 212248, 
kconfigwidgets/trunk/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2014-05-11 10:42:28 UTC (rev 212249)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kconfigwidgets
+pkgver=4.99.0
+pkgrel=1
+pkgdesc='Widgets for KConfig'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/kconfigwidgets'
+license=('LGPL')
+depends=('kauth' 'kcodecs' 'kconfig' 'kguiaddons' 'ki18n' 'kwidgetsaddons')
+makedepends=('extra-cmake-modules' 'kdoctools')
+groups=('kf5')
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('6465152efd2962e0c8493ff0816aebfd')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DECM_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}



[arch-commits] Commit in (4 files)

2014-05-11 Thread Andrea Scarpino
Date: Sunday, May 11, 2014 @ 12:45:10
  Author: andrea
Revision: 212250

Let's try to package KDE Frameworks 5

Added:
  kitemviews/
  kitemviews/repos/
  kitemviews/trunk/
  kitemviews/trunk/PKGBUILD

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

Added: kitemviews/trunk/PKGBUILD
===
--- kitemviews/trunk/PKGBUILD   (rev 0)
+++ kitemviews/trunk/PKGBUILD   2014-05-11 10:45:10 UTC (rev 212250)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kitemviews
+pkgver=4.99.0
+pkgrel=1
+pkgdesc='KItemViews'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/kitemviews'
+license=('LGPL')
+depends=('qt5-base')
+makedepends=('extra-cmake-modules' 'qt5-tools')
+groups=('kf5')
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('04e3dcfca8976205e78bde070be638eb')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DECM_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}


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


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

2014-05-11 Thread Andrea Scarpino
Date: Sunday, May 11, 2014 @ 12:45:23
  Author: andrea
Revision: 212251

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

Added:
  kitemviews/repos/kde-unstable-i686/
  kitemviews/repos/kde-unstable-i686/PKGBUILD
(from rev 212250, kitemviews/trunk/PKGBUILD)
  kitemviews/repos/kde-unstable-x86_64/
  kitemviews/repos/kde-unstable-x86_64/PKGBUILD
(from rev 212250, kitemviews/trunk/PKGBUILD)

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

Copied: kitemviews/repos/kde-unstable-i686/PKGBUILD (from rev 212250, 
kitemviews/trunk/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2014-05-11 10:45:23 UTC (rev 212251)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kitemviews
+pkgver=4.99.0
+pkgrel=1
+pkgdesc='KItemViews'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/kitemviews'
+license=('LGPL')
+depends=('qt5-base')
+makedepends=('extra-cmake-modules' 'qt5-tools')
+groups=('kf5')
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('04e3dcfca8976205e78bde070be638eb')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DECM_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Copied: kitemviews/repos/kde-unstable-x86_64/PKGBUILD (from rev 212250, 
kitemviews/trunk/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2014-05-11 10:45:23 UTC (rev 212251)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kitemviews
+pkgver=4.99.0
+pkgrel=1
+pkgdesc='KItemViews'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/kitemviews'
+license=('LGPL')
+depends=('qt5-base')
+makedepends=('extra-cmake-modules' 'qt5-tools')
+groups=('kf5')
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('04e3dcfca8976205e78bde070be638eb')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DECM_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}



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

2014-05-11 Thread Andrea Scarpino
Date: Sunday, May 11, 2014 @ 12:48:25
  Author: andrea
Revision: 212253

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

Added:
  kiconthemes/repos/kde-unstable-i686/
  kiconthemes/repos/kde-unstable-i686/PKGBUILD
(from rev 212252, kiconthemes/trunk/PKGBUILD)
  kiconthemes/repos/kde-unstable-x86_64/
  kiconthemes/repos/kde-unstable-x86_64/PKGBUILD
(from rev 212252, kiconthemes/trunk/PKGBUILD)

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

Copied: kiconthemes/repos/kde-unstable-i686/PKGBUILD (from rev 212252, 
kiconthemes/trunk/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2014-05-11 10:48:25 UTC (rev 212253)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kiconthemes
+pkgver=4.99.0
+pkgrel=1
+pkgdesc='KIconThemes'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/kiconthemes'
+license=('LGPL')
+depends=('qt5-svg' 'kconfigwidgets' 'kitemviews')
+makedepends=('extra-cmake-modules')
+groups=('kf5')
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('fe792bfca8700f0eb51ef622fe92e242')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DECM_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Copied: kiconthemes/repos/kde-unstable-x86_64/PKGBUILD (from rev 212252, 
kiconthemes/trunk/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2014-05-11 10:48:25 UTC (rev 212253)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kiconthemes
+pkgver=4.99.0
+pkgrel=1
+pkgdesc='KIconThemes'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/kiconthemes'
+license=('LGPL')
+depends=('qt5-svg' 'kconfigwidgets' 'kitemviews')
+makedepends=('extra-cmake-modules')
+groups=('kf5')
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('fe792bfca8700f0eb51ef622fe92e242')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DECM_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}



[arch-commits] Commit in (4 files)

2014-05-11 Thread Andrea Scarpino
Date: Sunday, May 11, 2014 @ 12:48:12
  Author: andrea
Revision: 212252

Let's try to package KDE Frameworks 5

Added:
  kiconthemes/
  kiconthemes/repos/
  kiconthemes/trunk/
  kiconthemes/trunk/PKGBUILD

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

Added: kiconthemes/trunk/PKGBUILD
===
--- kiconthemes/trunk/PKGBUILD  (rev 0)
+++ kiconthemes/trunk/PKGBUILD  2014-05-11 10:48:12 UTC (rev 212252)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kiconthemes
+pkgver=4.99.0
+pkgrel=1
+pkgdesc='KIconThemes'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/kiconthemes'
+license=('LGPL')
+depends=('qt5-svg' 'kconfigwidgets' 'kitemviews')
+makedepends=('extra-cmake-modules')
+groups=('kf5')
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('fe792bfca8700f0eb51ef622fe92e242')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DECM_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}


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


[arch-commits] Commit in (4 files)

2014-05-11 Thread Andrea Scarpino
Date: Sunday, May 11, 2014 @ 12:50:46
  Author: andrea
Revision: 212254

Let's try to package KDE Frameworks 5

Added:
  kglobalaccel/
  kglobalaccel/repos/
  kglobalaccel/trunk/
  kglobalaccel/trunk/PKGBUILD

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

Added: kglobalaccel/trunk/PKGBUILD
===
--- kglobalaccel/trunk/PKGBUILD (rev 0)
+++ kglobalaccel/trunk/PKGBUILD 2014-05-11 10:50:46 UTC (rev 212254)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kglobalaccel
+pkgver=4.99.0
+pkgrel=1
+pkgdesc='KGlobalAccel'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/kglobalaccel'
+license=('LGPL')
+depends=('qt5-x11extras')
+makedepends=('extra-cmake-modules' 'qt5-tools')
+groups=('kf5')
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('1a57f76bc5df0cb00105f460ae7f12b3')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DECM_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}



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

2014-05-11 Thread Andrea Scarpino
Date: Sunday, May 11, 2014 @ 12:50:57
  Author: andrea
Revision: 212255

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

Added:
  kglobalaccel/repos/kde-unstable-i686/
  kglobalaccel/repos/kde-unstable-i686/PKGBUILD
(from rev 212254, kglobalaccel/trunk/PKGBUILD)
  kglobalaccel/repos/kde-unstable-x86_64/
  kglobalaccel/repos/kde-unstable-x86_64/PKGBUILD
(from rev 212254, kglobalaccel/trunk/PKGBUILD)

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

Copied: kglobalaccel/repos/kde-unstable-i686/PKGBUILD (from rev 212254, 
kglobalaccel/trunk/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2014-05-11 10:50:57 UTC (rev 212255)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kglobalaccel
+pkgver=4.99.0
+pkgrel=1
+pkgdesc='KGlobalAccel'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/kglobalaccel'
+license=('LGPL')
+depends=('qt5-x11extras')
+makedepends=('extra-cmake-modules' 'qt5-tools')
+groups=('kf5')
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('1a57f76bc5df0cb00105f460ae7f12b3')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DECM_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Copied: kglobalaccel/repos/kde-unstable-x86_64/PKGBUILD (from rev 212254, 
kglobalaccel/trunk/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2014-05-11 10:50:57 UTC (rev 212255)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kglobalaccel
+pkgver=4.99.0
+pkgrel=1
+pkgdesc='KGlobalAccel'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/kglobalaccel'
+license=('LGPL')
+depends=('qt5-x11extras')
+makedepends=('extra-cmake-modules' 'qt5-tools')
+groups=('kf5')
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('1a57f76bc5df0cb00105f460ae7f12b3')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DECM_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}



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

2014-05-11 Thread Andrea Scarpino
Date: Sunday, May 11, 2014 @ 12:53:34
  Author: andrea
Revision: 212257

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

Added:
  kcompletion/repos/kde-unstable-i686/
  kcompletion/repos/kde-unstable-i686/PKGBUILD
(from rev 212256, kcompletion/trunk/PKGBUILD)
  kcompletion/repos/kde-unstable-x86_64/
  kcompletion/repos/kde-unstable-x86_64/PKGBUILD
(from rev 212256, kcompletion/trunk/PKGBUILD)

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

Copied: kcompletion/repos/kde-unstable-i686/PKGBUILD (from rev 212256, 
kcompletion/trunk/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2014-05-11 10:53:34 UTC (rev 212257)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kcompletion
+pkgver=4.99.0
+pkgrel=1
+pkgdesc='KCompletion'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/kcompletion'
+license=('LGPL')
+depends=('kwidgetsaddons' 'kconfig')
+makedepends=('extra-cmake-modules' 'qt5-tools')
+groups=('kf5')
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('d3e839ddec60b2afd762d88a8bc12ba8')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DECM_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Copied: kcompletion/repos/kde-unstable-x86_64/PKGBUILD (from rev 212256, 
kcompletion/trunk/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2014-05-11 10:53:34 UTC (rev 212257)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kcompletion
+pkgver=4.99.0
+pkgrel=1
+pkgdesc='KCompletion'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/kcompletion'
+license=('LGPL')
+depends=('kwidgetsaddons' 'kconfig')
+makedepends=('extra-cmake-modules' 'qt5-tools')
+groups=('kf5')
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('d3e839ddec60b2afd762d88a8bc12ba8')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DECM_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}



[arch-commits] Commit in (4 files)

2014-05-11 Thread Andrea Scarpino
Date: Sunday, May 11, 2014 @ 12:53:22
  Author: andrea
Revision: 212256

Let's try to package KDE Frameworks 5

Added:
  kcompletion/
  kcompletion/repos/
  kcompletion/trunk/
  kcompletion/trunk/PKGBUILD

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

Added: kcompletion/trunk/PKGBUILD
===
--- kcompletion/trunk/PKGBUILD  (rev 0)
+++ kcompletion/trunk/PKGBUILD  2014-05-11 10:53:22 UTC (rev 212256)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kcompletion
+pkgver=4.99.0
+pkgrel=1
+pkgdesc='KCompletion'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/kcompletion'
+license=('LGPL')
+depends=('kwidgetsaddons' 'kconfig')
+makedepends=('extra-cmake-modules' 'qt5-tools')
+groups=('kf5')
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('d3e839ddec60b2afd762d88a8bc12ba8')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DECM_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}



[arch-commits] Commit in (4 files)

2014-05-11 Thread Andrea Scarpino
Date: Sunday, May 11, 2014 @ 12:55:50
  Author: andrea
Revision: 212258

Let's try to package KDE Frameworks 5

Added:
  kwindowsystem/
  kwindowsystem/repos/
  kwindowsystem/trunk/
  kwindowsystem/trunk/PKGBUILD

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

Added: kwindowsystem/trunk/PKGBUILD
===
--- kwindowsystem/trunk/PKGBUILD(rev 0)
+++ kwindowsystem/trunk/PKGBUILD2014-05-11 10:55:50 UTC (rev 212258)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kwindowsystem
+pkgver=4.99.0
+pkgrel=1
+pkgdesc='KWindowSystem'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/kwindowsystem'
+license=('LGPL')
+depends=('qt5-x11extras' 'libxfixes')
+makedepends=('extra-cmake-modules' 'qt5-tools')
+groups=('kf5')
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('3c88e023809dc9a6602b8796cbaa3a0c')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DECM_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}


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


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

2014-05-11 Thread Andrea Scarpino
Date: Sunday, May 11, 2014 @ 12:56:01
  Author: andrea
Revision: 212259

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

Added:
  kwindowsystem/repos/kde-unstable-i686/
  kwindowsystem/repos/kde-unstable-i686/PKGBUILD
(from rev 212258, kwindowsystem/trunk/PKGBUILD)
  kwindowsystem/repos/kde-unstable-x86_64/
  kwindowsystem/repos/kde-unstable-x86_64/PKGBUILD
(from rev 212258, kwindowsystem/trunk/PKGBUILD)

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

Copied: kwindowsystem/repos/kde-unstable-i686/PKGBUILD (from rev 212258, 
kwindowsystem/trunk/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2014-05-11 10:56:01 UTC (rev 212259)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kwindowsystem
+pkgver=4.99.0
+pkgrel=1
+pkgdesc='KWindowSystem'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/kwindowsystem'
+license=('LGPL')
+depends=('qt5-x11extras' 'libxfixes')
+makedepends=('extra-cmake-modules' 'qt5-tools')
+groups=('kf5')
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('3c88e023809dc9a6602b8796cbaa3a0c')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DECM_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Copied: kwindowsystem/repos/kde-unstable-x86_64/PKGBUILD (from rev 212258, 
kwindowsystem/trunk/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2014-05-11 10:56:01 UTC (rev 212259)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kwindowsystem
+pkgver=4.99.0
+pkgrel=1
+pkgdesc='KWindowSystem'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/kwindowsystem'
+license=('LGPL')
+depends=('qt5-x11extras' 'libxfixes')
+makedepends=('extra-cmake-modules' 'qt5-tools')
+groups=('kf5')
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('3c88e023809dc9a6602b8796cbaa3a0c')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DECM_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}



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

2014-05-11 Thread Andrea Scarpino
Date: Sunday, May 11, 2014 @ 12:57:46
  Author: andrea
Revision: 212260

Let's try to package KDE Frameworks 5

Added:
  kcrash/
  kcrash/repos/
  kcrash/trunk/
  kcrash/trunk/PKGBUILD

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

Added: kcrash/trunk/PKGBUILD
===
--- kcrash/trunk/PKGBUILD   (rev 0)
+++ kcrash/trunk/PKGBUILD   2014-05-11 10:57:46 UTC (rev 212260)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kcrash
+pkgver=4.99.0
+pkgrel=1
+pkgdesc='KCrash'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/kcrash'
+license=('LGPL')
+depends=('kcoreaddons' 'kwindowsystem')
+makedepends=('extra-cmake-modules')
+groups=('kf5')
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('cdeab58f51f906548076ddbd835c2066')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DECM_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}



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

2014-05-11 Thread Andrea Scarpino
Date: Sunday, May 11, 2014 @ 12:57:58
  Author: andrea
Revision: 212261

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

Added:
  kcrash/repos/kde-unstable-i686/
  kcrash/repos/kde-unstable-i686/PKGBUILD
(from rev 212260, kcrash/trunk/PKGBUILD)
  kcrash/repos/kde-unstable-x86_64/
  kcrash/repos/kde-unstable-x86_64/PKGBUILD
(from rev 212260, kcrash/trunk/PKGBUILD)

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

Copied: kcrash/repos/kde-unstable-i686/PKGBUILD (from rev 212260, 
kcrash/trunk/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2014-05-11 10:57:58 UTC (rev 212261)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kcrash
+pkgver=4.99.0
+pkgrel=1
+pkgdesc='KCrash'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/kcrash'
+license=('LGPL')
+depends=('kcoreaddons' 'kwindowsystem')
+makedepends=('extra-cmake-modules')
+groups=('kf5')
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('cdeab58f51f906548076ddbd835c2066')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DECM_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Copied: kcrash/repos/kde-unstable-x86_64/PKGBUILD (from rev 212260, 
kcrash/trunk/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2014-05-11 10:57:58 UTC (rev 212261)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kcrash
+pkgver=4.99.0
+pkgrel=1
+pkgdesc='KCrash'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/kcrash'
+license=('LGPL')
+depends=('kcoreaddons' 'kwindowsystem')
+makedepends=('extra-cmake-modules')
+groups=('kf5')
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('cdeab58f51f906548076ddbd835c2066')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DECM_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}



[arch-commits] Commit in (4 files)

2014-05-11 Thread Andrea Scarpino
Date: Sunday, May 11, 2014 @ 13:00:18
  Author: andrea
Revision: 212262

Let's try to package KDE Frameworks 5

Added:
  kdbusaddons/
  kdbusaddons/repos/
  kdbusaddons/trunk/
  kdbusaddons/trunk/PKGBUILD

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

Added: kdbusaddons/trunk/PKGBUILD
===
--- kdbusaddons/trunk/PKGBUILD  (rev 0)
+++ kdbusaddons/trunk/PKGBUILD  2014-05-11 11:00:18 UTC (rev 212262)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdbusaddons
+pkgver=4.99.0
+pkgrel=1
+pkgdesc='KDBusAddons'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/kdbusaddons'
+license=('LGPL')
+depends=('qt5-base')
+makedepends=('extra-cmake-modules' 'qt5-tools')
+groups=('kf5')
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('c7856d1ca018555ae3472ca708595fec')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DECM_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}



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

2014-05-11 Thread Andrea Scarpino
Date: Sunday, May 11, 2014 @ 13:00:31
  Author: andrea
Revision: 212263

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

Added:
  kdbusaddons/repos/kde-unstable-i686/
  kdbusaddons/repos/kde-unstable-i686/PKGBUILD
(from rev 212262, kdbusaddons/trunk/PKGBUILD)
  kdbusaddons/repos/kde-unstable-x86_64/
  kdbusaddons/repos/kde-unstable-x86_64/PKGBUILD
(from rev 212262, kdbusaddons/trunk/PKGBUILD)

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

Copied: kdbusaddons/repos/kde-unstable-i686/PKGBUILD (from rev 212262, 
kdbusaddons/trunk/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2014-05-11 11:00:31 UTC (rev 212263)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdbusaddons
+pkgver=4.99.0
+pkgrel=1
+pkgdesc='KDBusAddons'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/kdbusaddons'
+license=('LGPL')
+depends=('qt5-base')
+makedepends=('extra-cmake-modules' 'qt5-tools')
+groups=('kf5')
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('c7856d1ca018555ae3472ca708595fec')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DECM_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Copied: kdbusaddons/repos/kde-unstable-x86_64/PKGBUILD (from rev 212262, 
kdbusaddons/trunk/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2014-05-11 11:00:31 UTC (rev 212263)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdbusaddons
+pkgver=4.99.0
+pkgrel=1
+pkgdesc='KDBusAddons'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/kdbusaddons'
+license=('LGPL')
+depends=('qt5-base')
+makedepends=('extra-cmake-modules' 'qt5-tools')
+groups=('kf5')
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('c7856d1ca018555ae3472ca708595fec')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DECM_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}



[arch-commits] Commit in (4 files)

2014-05-11 Thread Andrea Scarpino
Date: Sunday, May 11, 2014 @ 13:02:53
  Author: andrea
Revision: 212264

Let's try to package KDE Frameworks 5

Added:
  kservice/
  kservice/repos/
  kservice/trunk/
  kservice/trunk/PKGBUILD

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

Added: kservice/trunk/PKGBUILD
===
--- kservice/trunk/PKGBUILD (rev 0)
+++ kservice/trunk/PKGBUILD 2014-05-11 11:02:53 UTC (rev 212264)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kservice
+pkgver=4.99.0
+pkgrel=1
+pkgdesc='KService'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/kservice'
+license=('LGPL')
+depends=('ki18n' 'kconfig' 'kcrash' 'kdbusaddons')
+makedepends=('extra-cmake-modules' 'kdoctools')
+groups=('kf5')
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('9679f8020d9ed4500de27c2c76a0d434')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DECM_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \
+-DBUILD_TESTING=OFF \
+-DSYSCONF_INSTALL_DIR=/etc
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}



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

2014-05-11 Thread Andrea Scarpino
Date: Sunday, May 11, 2014 @ 13:03:04
  Author: andrea
Revision: 212265

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

Added:
  kservice/repos/kde-unstable-i686/
  kservice/repos/kde-unstable-i686/PKGBUILD
(from rev 212264, kservice/trunk/PKGBUILD)
  kservice/repos/kde-unstable-x86_64/
  kservice/repos/kde-unstable-x86_64/PKGBUILD
(from rev 212264, kservice/trunk/PKGBUILD)

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

Copied: kservice/repos/kde-unstable-i686/PKGBUILD (from rev 212264, 
kservice/trunk/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2014-05-11 11:03:04 UTC (rev 212265)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kservice
+pkgver=4.99.0
+pkgrel=1
+pkgdesc='KService'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/kservice'
+license=('LGPL')
+depends=('ki18n' 'kconfig' 'kcrash' 'kdbusaddons')
+makedepends=('extra-cmake-modules' 'kdoctools')
+groups=('kf5')
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('9679f8020d9ed4500de27c2c76a0d434')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DECM_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \
+-DBUILD_TESTING=OFF \
+-DSYSCONF_INSTALL_DIR=/etc
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Copied: kservice/repos/kde-unstable-x86_64/PKGBUILD (from rev 212264, 
kservice/trunk/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2014-05-11 11:03:04 UTC (rev 212265)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kservice
+pkgver=4.99.0
+pkgrel=1
+pkgdesc='KService'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/kservice'
+license=('LGPL')
+depends=('ki18n' 'kconfig' 'kcrash' 'kdbusaddons')
+makedepends=('extra-cmake-modules' 'kdoctools')
+groups=('kf5')
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('9679f8020d9ed4500de27c2c76a0d434')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DECM_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \
+-DBUILD_TESTING=OFF \
+-DSYSCONF_INSTALL_DIR=/etc
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}



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

2014-05-11 Thread Andrea Scarpino
Date: Sunday, May 11, 2014 @ 13:05:33
  Author: andrea
Revision: 212266

Let's try to package KDE Frameworks 5

Added:
  sonnet/
  sonnet/repos/
  sonnet/trunk/
  sonnet/trunk/PKGBUILD

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

Added: sonnet/trunk/PKGBUILD
===
--- sonnet/trunk/PKGBUILD   (rev 0)
+++ sonnet/trunk/PKGBUILD   2014-05-11 11:05:33 UTC (rev 212266)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=sonnet
+pkgver=4.99.0
+pkgrel=1
+pkgdesc='Sonnet'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/sonnet'
+license=('LGPL')
+depends=('qt5-base' 'enchant')
+makedepends=('extra-cmake-modules' 'qt5-tools')
+groups=('kf5')
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('82aa19bbb80a4e6375e0066818694d95')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DECM_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}



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

2014-05-11 Thread Andrea Scarpino
Date: Sunday, May 11, 2014 @ 13:05:44
  Author: andrea
Revision: 212267

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

Added:
  sonnet/repos/kde-unstable-i686/
  sonnet/repos/kde-unstable-i686/PKGBUILD
(from rev 212266, sonnet/trunk/PKGBUILD)
  sonnet/repos/kde-unstable-x86_64/
  sonnet/repos/kde-unstable-x86_64/PKGBUILD
(from rev 212266, sonnet/trunk/PKGBUILD)

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

Copied: sonnet/repos/kde-unstable-i686/PKGBUILD (from rev 212266, 
sonnet/trunk/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2014-05-11 11:05:44 UTC (rev 212267)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=sonnet
+pkgver=4.99.0
+pkgrel=1
+pkgdesc='Sonnet'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/sonnet'
+license=('LGPL')
+depends=('qt5-base' 'enchant')
+makedepends=('extra-cmake-modules' 'qt5-tools')
+groups=('kf5')
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('82aa19bbb80a4e6375e0066818694d95')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DECM_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Copied: sonnet/repos/kde-unstable-x86_64/PKGBUILD (from rev 212266, 
sonnet/trunk/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2014-05-11 11:05:44 UTC (rev 212267)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=sonnet
+pkgver=4.99.0
+pkgrel=1
+pkgdesc='Sonnet'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/sonnet'
+license=('LGPL')
+depends=('qt5-base' 'enchant')
+makedepends=('extra-cmake-modules' 'qt5-tools')
+groups=('kf5')
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('82aa19bbb80a4e6375e0066818694d95')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DECM_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}



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

2014-05-11 Thread Andrea Scarpino
Date: Sunday, May 11, 2014 @ 13:08:33
  Author: andrea
Revision: 212269

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

Added:
  ktextwidgets/repos/kde-unstable-i686/
  ktextwidgets/repos/kde-unstable-i686/PKGBUILD
(from rev 212268, ktextwidgets/trunk/PKGBUILD)
  ktextwidgets/repos/kde-unstable-x86_64/
  ktextwidgets/repos/kde-unstable-x86_64/PKGBUILD
(from rev 212268, ktextwidgets/trunk/PKGBUILD)

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

Copied: ktextwidgets/repos/kde-unstable-i686/PKGBUILD (from rev 212268, 
ktextwidgets/trunk/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2014-05-11 11:08:33 UTC (rev 212269)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=ktextwidgets
+pkgver=4.99.0
+pkgrel=1
+pkgdesc='KTextWidgets'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/ktextwidgets'
+license=('LGPL')
+depends=('kcompletion' 'kservice' 'kiconthemes' 'sonnet')
+makedepends=('extra-cmake-modules')
+groups=('kf5')
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('a8dcb0d4d24699d1507caaafefa5498e')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DECM_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Copied: ktextwidgets/repos/kde-unstable-x86_64/PKGBUILD (from rev 212268, 
ktextwidgets/trunk/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2014-05-11 11:08:33 UTC (rev 212269)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=ktextwidgets
+pkgver=4.99.0
+pkgrel=1
+pkgdesc='KTextWidgets'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/ktextwidgets'
+license=('LGPL')
+depends=('kcompletion' 'kservice' 'kiconthemes' 'sonnet')
+makedepends=('extra-cmake-modules')
+groups=('kf5')
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('a8dcb0d4d24699d1507caaafefa5498e')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DECM_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}



[arch-commits] Commit in (4 files)

2014-05-11 Thread Andrea Scarpino
Date: Sunday, May 11, 2014 @ 13:08:21
  Author: andrea
Revision: 212268

Let's try to package KDE Frameworks 5

Added:
  ktextwidgets/
  ktextwidgets/repos/
  ktextwidgets/trunk/
  ktextwidgets/trunk/PKGBUILD

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

Added: ktextwidgets/trunk/PKGBUILD
===
--- ktextwidgets/trunk/PKGBUILD (rev 0)
+++ ktextwidgets/trunk/PKGBUILD 2014-05-11 11:08:21 UTC (rev 212268)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=ktextwidgets
+pkgver=4.99.0
+pkgrel=1
+pkgdesc='KTextWidgets'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/ktextwidgets'
+license=('LGPL')
+depends=('kcompletion' 'kservice' 'kiconthemes' 'sonnet')
+makedepends=('extra-cmake-modules')
+groups=('kf5')
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('a8dcb0d4d24699d1507caaafefa5498e')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DECM_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}


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


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

2014-05-11 Thread Bartłomiej Piotrowski
Date: Sunday, May 11, 2014 @ 13:09:38
  Author: bpiotrowski
Revision: 110963

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

Added:
  lxpanel/repos/community-i686/PKGBUILD
(from rev 110962, lxpanel/trunk/PKGBUILD)
  lxpanel/repos/community-i686/lxpanel-0.5.12-automake-1.14-support.patch
(from rev 110962, lxpanel/trunk/lxpanel-0.5.12-automake-1.14-support.patch)
  lxpanel/repos/community-x86_64/PKGBUILD
(from rev 110962, lxpanel/trunk/PKGBUILD)
  lxpanel/repos/community-x86_64/lxpanel-0.5.12-automake-1.14-support.patch
(from rev 110962, lxpanel/trunk/lxpanel-0.5.12-automake-1.14-support.patch)
Deleted:
  lxpanel/repos/community-i686/PKGBUILD
  lxpanel/repos/community-i686/lxpanel-0.5.12-automake-1.14-support.patch
  lxpanel/repos/community-x86_64/PKGBUILD
  lxpanel/repos/community-x86_64/lxpanel-0.5.12-automake-1.14-support.patch

-+
 /PKGBUILD   |   64 ++
 /lxpanel-0.5.12-automake-1.14-support.patch |   30 
 community-i686/PKGBUILD |   32 -
 community-i686/lxpanel-0.5.12-automake-1.14-support.patch   |   15 --
 community-x86_64/PKGBUILD   |   32 -
 community-x86_64/lxpanel-0.5.12-automake-1.14-support.patch |   15 --
 6 files changed, 94 insertions(+), 94 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-05-11 11:09:28 UTC (rev 110962)
+++ community-i686/PKGBUILD 2014-05-11 11:09:38 UTC (rev 110963)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer:  Bartłomiej Piotrowski bpiotrow...@archlinux.org
-# Contributor: Angel Velasquez an...@archlinux.org
-# Contributor: Juergen Hoetzel juer...@archlinux.org
-
-pkgname=lxpanel
-pkgver=0.6.1
-pkgrel=2
-pkgdesc='Lightweight X11 desktop panel for LXDE'
-arch=('i686' 'x86_64')
-license=('GPL2')
-url='http://lxde.org/'
-groups=('lxde')
-depends=('gtk2' 'alsa-lib' 'menu-cache' 'lxmenu-data' 'libwnck')
-makedepends=('intltool' 'docbook-xml' 'docbook-xsl' 'wireless_tools')
-optdepends=('wireless_tools: netstat plugin')
-source=(http://downloads.sourceforge.net/sourceforge/lxde/lxpanel-$pkgver.tar.gz)
-sha256sums=('a16a21b2186218c70ed98dc7875c54d6bb12ae7271825ff5060feb8d2a4e86cb')
-
-build() {
-  cd $pkgname-$pkgver
-  CFLAGS+=' -lgmodule-2.0' ./configure \
---sysconfdir=/etc \
---prefix=/usr \
---enable-man
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: lxpanel/repos/community-i686/PKGBUILD (from rev 110962, 
lxpanel/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-05-11 11:09:38 UTC (rev 110963)
@@ -0,0 +1,32 @@
+# $Id$
+# Contributor: Bartłomiej Piotrowski bpiotrow...@archlinux.org
+# Contributor: Angel Velasquez an...@archlinux.org
+# Contributor: Juergen Hoetzel juer...@archlinux.org
+
+pkgname=lxpanel
+pkgver=0.6.2
+pkgrel=1
+pkgdesc='Lightweight X11 desktop panel for LXDE'
+arch=('i686' 'x86_64')
+license=('GPL2')
+url='http://lxde.org/'
+groups=('lxde')
+depends=('gtk2' 'alsa-lib' 'menu-cache' 'lxmenu-data' 'libwnck')
+makedepends=('intltool' 'docbook-xml' 'docbook-xsl' 'wireless_tools')
+optdepends=('wireless_tools: netstat plugin')
+source=(http://downloads.sourceforge.net/sourceforge/lxde/lxpanel-$pkgver.tar.gz)
+sha256sums=('f9ba6d0b825f7b99de045c3371738792bf9f3604af66bef4d98d783461c60a48')
+
+build() {
+  cd $pkgname-$pkgver
+  CFLAGS+=' -lgmodule-2.0' ./configure \
+--sysconfdir=/etc \
+--prefix=/usr \
+--enable-man
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Deleted: community-i686/lxpanel-0.5.12-automake-1.14-support.patch
===
--- community-i686/lxpanel-0.5.12-automake-1.14-support.patch   2014-05-11 
11:09:28 UTC (rev 110962)
+++ community-i686/lxpanel-0.5.12-automake-1.14-support.patch   2014-05-11 
11:09:38 UTC (rev 110963)
@@ -1,15 +0,0 @@
 autogen.sh.orig2013-01-27 10:38:55.0 +0100
-+++ autogen.sh 2013-01-27 10:59:56.897030226 +0100
-@@ -6,9 +6,10 @@
- 
- if [ $AM_INSTALLED_VERSION != 1.10 \
- -a $AM_INSTALLED_VERSION != 1.11 \
---a $AM_INSTALLED_VERSION != 1.12 ];then
-+-a $AM_INSTALLED_VERSION != 1.12 \
-+  -a $AM_INSTALLED_VERSION != 1.14 ];then
-   echo
--  echo You must have automake 1.10, 1.11, or 1.12 installed to compile 
lxpanel.
-+  echo You must have automake =1.10 installed to compile lxpanel.
-   echo Install the appropriate package for your distribution,
-   echo or get the source tarball at http://ftp.gnu.org/gnu/automake/;
-   exit 1

Copied: lxpanel/repos/community-i686/lxpanel-0.5.12-automake-1.14-support.patch 
(from rev 110962, 

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

2014-05-11 Thread Bartłomiej Piotrowski
Date: Sunday, May 11, 2014 @ 13:09:28
  Author: bpiotrowski
Revision: 110962

upgpkg: lxpanel 0.6.2-1

new upstream release

Modified:
  lxpanel/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-11 00:59:10 UTC (rev 110961)
+++ PKGBUILD2014-05-11 11:09:28 UTC (rev 110962)
@@ -4,8 +4,8 @@
 # Contributor: Juergen Hoetzel juer...@archlinux.org
 
 pkgname=lxpanel
-pkgver=0.6.1
-pkgrel=2
+pkgver=0.6.2
+pkgrel=1
 pkgdesc='Lightweight X11 desktop panel for LXDE'
 arch=('i686' 'x86_64')
 license=('GPL2')
@@ -15,7 +15,7 @@
 makedepends=('intltool' 'docbook-xml' 'docbook-xsl' 'wireless_tools')
 optdepends=('wireless_tools: netstat plugin')
 
source=(http://downloads.sourceforge.net/sourceforge/lxde/lxpanel-$pkgver.tar.gz)
-sha256sums=('a16a21b2186218c70ed98dc7875c54d6bb12ae7271825ff5060feb8d2a4e86cb')
+sha256sums=('f9ba6d0b825f7b99de045c3371738792bf9f3604af66bef4d98d783461c60a48')
 
 build() {
   cd $pkgname-$pkgver



[arch-commits] Commit in (4 files)

2014-05-11 Thread Andrea Scarpino
Date: Sunday, May 11, 2014 @ 13:12:09
  Author: andrea
Revision: 212270

Let's try to package KDE Frameworks 5

Added:
  attica-qt5/
  attica-qt5/repos/
  attica-qt5/trunk/
  attica-qt5/trunk/PKGBUILD

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

Added: attica-qt5/trunk/PKGBUILD
===
--- attica-qt5/trunk/PKGBUILD   (rev 0)
+++ attica-qt5/trunk/PKGBUILD   2014-05-11 11:12:09 UTC (rev 212270)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=attica-qt5
+pkgver=4.99.0
+pkgrel=1
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kdesupport/attica'
+pkgdesc='A Qt5 library that implements the Open Collaboration Services API'
+license=('LGPL')
+depends=('qt5-base')
+makedepends=('extra-cmake-modules')
+groups=('kf5')
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/attica-${pkgver}.tar.xz;)
+md5sums=('1c6b71778ce0f2aea549e272bb14f5c3')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../attica-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DECM_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}


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


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

2014-05-11 Thread Andrea Scarpino
Date: Sunday, May 11, 2014 @ 13:12:23
  Author: andrea
Revision: 212271

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

Added:
  attica-qt5/repos/kde-unstable-i686/
  attica-qt5/repos/kde-unstable-i686/PKGBUILD
(from rev 212270, attica-qt5/trunk/PKGBUILD)
  attica-qt5/repos/kde-unstable-x86_64/
  attica-qt5/repos/kde-unstable-x86_64/PKGBUILD
(from rev 212270, attica-qt5/trunk/PKGBUILD)

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

Copied: attica-qt5/repos/kde-unstable-i686/PKGBUILD (from rev 212270, 
attica-qt5/trunk/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2014-05-11 11:12:23 UTC (rev 212271)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=attica-qt5
+pkgver=4.99.0
+pkgrel=1
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kdesupport/attica'
+pkgdesc='A Qt5 library that implements the Open Collaboration Services API'
+license=('LGPL')
+depends=('qt5-base')
+makedepends=('extra-cmake-modules')
+groups=('kf5')
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/attica-${pkgver}.tar.xz;)
+md5sums=('1c6b71778ce0f2aea549e272bb14f5c3')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../attica-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DECM_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Copied: attica-qt5/repos/kde-unstable-x86_64/PKGBUILD (from rev 212270, 
attica-qt5/trunk/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2014-05-11 11:12:23 UTC (rev 212271)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=attica-qt5
+pkgver=4.99.0
+pkgrel=1
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kdesupport/attica'
+pkgdesc='A Qt5 library that implements the Open Collaboration Services API'
+license=('LGPL')
+depends=('qt5-base')
+makedepends=('extra-cmake-modules')
+groups=('kf5')
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/attica-${pkgver}.tar.xz;)
+md5sums=('1c6b71778ce0f2aea549e272bb14f5c3')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../attica-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DECM_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}



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

2014-05-11 Thread Andrea Scarpino
Date: Sunday, May 11, 2014 @ 13:14:53
  Author: andrea
Revision: 212272

Let's try to package KDE Frameworks 5

Added:
  kxmlgui/
  kxmlgui/repos/
  kxmlgui/trunk/
  kxmlgui/trunk/PKGBUILD

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

Added: kxmlgui/trunk/PKGBUILD
===
--- kxmlgui/trunk/PKGBUILD  (rev 0)
+++ kxmlgui/trunk/PKGBUILD  2014-05-11 11:14:53 UTC (rev 212272)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kxmlgui
+pkgver=4.99.0
+pkgrel=1
+pkgdesc='KXmlGUI'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/kxmlgui'
+license=('LGPL')
+depends=('kglobalaccel' 'ktextwidgets' 'attica-qt5')
+makedepends=('extra-cmake-modules')
+groups=('kf5')
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('5f5b592db383ba0890ff02aabe9cea89')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DECM_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \
+-DBUILD_TESTING=OFF \
+-DSYSCONF_INSTALL_DIR=/etc
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}



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

2014-05-11 Thread Andrea Scarpino
Date: Sunday, May 11, 2014 @ 13:16:03
  Author: andrea
Revision: 212273

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

Added:
  kxmlgui/repos/kde-unstable-i686/
  kxmlgui/repos/kde-unstable-i686/PKGBUILD
(from rev 212272, kxmlgui/trunk/PKGBUILD)
  kxmlgui/repos/kde-unstable-x86_64/
  kxmlgui/repos/kde-unstable-x86_64/PKGBUILD
(from rev 212272, kxmlgui/trunk/PKGBUILD)

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

Copied: kxmlgui/repos/kde-unstable-i686/PKGBUILD (from rev 212272, 
kxmlgui/trunk/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2014-05-11 11:16:03 UTC (rev 212273)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kxmlgui
+pkgver=4.99.0
+pkgrel=1
+pkgdesc='KXmlGUI'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/kxmlgui'
+license=('LGPL')
+depends=('kglobalaccel' 'ktextwidgets' 'attica-qt5')
+makedepends=('extra-cmake-modules')
+groups=('kf5')
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('5f5b592db383ba0890ff02aabe9cea89')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DECM_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \
+-DBUILD_TESTING=OFF \
+-DSYSCONF_INSTALL_DIR=/etc
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Copied: kxmlgui/repos/kde-unstable-x86_64/PKGBUILD (from rev 212272, 
kxmlgui/trunk/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2014-05-11 11:16:03 UTC (rev 212273)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kxmlgui
+pkgver=4.99.0
+pkgrel=1
+pkgdesc='KXmlGUI'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/kxmlgui'
+license=('LGPL')
+depends=('kglobalaccel' 'ktextwidgets' 'attica-qt5')
+makedepends=('extra-cmake-modules')
+groups=('kf5')
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('5f5b592db383ba0890ff02aabe9cea89')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DECM_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \
+-DBUILD_TESTING=OFF \
+-DSYSCONF_INSTALL_DIR=/etc
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}



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

2014-05-11 Thread Andrea Scarpino
Date: Sunday, May 11, 2014 @ 13:19:07
  Author: andrea
Revision: 212275

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

Added:
  kbookmarks/repos/kde-unstable-i686/
  kbookmarks/repos/kde-unstable-i686/PKGBUILD
(from rev 212274, kbookmarks/trunk/PKGBUILD)
  kbookmarks/repos/kde-unstable-x86_64/
  kbookmarks/repos/kde-unstable-x86_64/PKGBUILD
(from rev 212274, kbookmarks/trunk/PKGBUILD)

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

Copied: kbookmarks/repos/kde-unstable-i686/PKGBUILD (from rev 212274, 
kbookmarks/trunk/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2014-05-11 11:19:07 UTC (rev 212275)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kbookmarks
+pkgver=4.99.0
+pkgrel=1
+pkgdesc='KBookmarks'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/kbookmarks'
+license=('LGPL')
+depends=('kxmlgui')
+makedepends=('extra-cmake-modules' 'qt5-tools')
+groups=('kf5')
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('a95fc0283f1ff667c69dae6374adb4a3')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DECM_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Copied: kbookmarks/repos/kde-unstable-x86_64/PKGBUILD (from rev 212274, 
kbookmarks/trunk/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2014-05-11 11:19:07 UTC (rev 212275)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kbookmarks
+pkgver=4.99.0
+pkgrel=1
+pkgdesc='KBookmarks'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/kbookmarks'
+license=('LGPL')
+depends=('kxmlgui')
+makedepends=('extra-cmake-modules' 'qt5-tools')
+groups=('kf5')
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('a95fc0283f1ff667c69dae6374adb4a3')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DECM_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}



[arch-commits] Commit in (4 files)

2014-05-11 Thread Andrea Scarpino
Date: Sunday, May 11, 2014 @ 13:18:51
  Author: andrea
Revision: 212274

Let's try to package KDE Frameworks 5

Added:
  kbookmarks/
  kbookmarks/repos/
  kbookmarks/trunk/
  kbookmarks/trunk/PKGBUILD

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

Added: kbookmarks/trunk/PKGBUILD
===
--- kbookmarks/trunk/PKGBUILD   (rev 0)
+++ kbookmarks/trunk/PKGBUILD   2014-05-11 11:18:51 UTC (rev 212274)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kbookmarks
+pkgver=4.99.0
+pkgrel=1
+pkgdesc='KBookmarks'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/kbookmarks'
+license=('LGPL')
+depends=('kxmlgui')
+makedepends=('extra-cmake-modules' 'qt5-tools')
+groups=('kf5')
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('a95fc0283f1ff667c69dae6374adb4a3')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DECM_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}


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


[arch-commits] Commit in (4 files)

2014-05-11 Thread Andrea Scarpino
Date: Sunday, May 11, 2014 @ 13:21:25
  Author: andrea
Revision: 212276

Let's try to package KDE Frameworks 5

Added:
  kcmutils/
  kcmutils/repos/
  kcmutils/trunk/
  kcmutils/trunk/PKGBUILD

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

Added: kcmutils/trunk/PKGBUILD
===
--- kcmutils/trunk/PKGBUILD (rev 0)
+++ kcmutils/trunk/PKGBUILD 2014-05-11 11:21:25 UTC (rev 212276)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kcmutils
+pkgver=4.99.0
+pkgrel=1
+pkgdesc='Utilities for interacting with KCModules'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/kcmutils'
+license=('LGPL')
+depends=('kxmlgui')
+makedepends=('extra-cmake-modules')
+groups=('kf5')
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('65181f6aecacc907d1fce20977e9e0b8')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DECM_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}



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

2014-05-11 Thread Andrea Scarpino
Date: Sunday, May 11, 2014 @ 13:21:39
  Author: andrea
Revision: 212277

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

Added:
  kcmutils/repos/kde-unstable-i686/
  kcmutils/repos/kde-unstable-i686/PKGBUILD
(from rev 212276, kcmutils/trunk/PKGBUILD)
  kcmutils/repos/kde-unstable-x86_64/
  kcmutils/repos/kde-unstable-x86_64/PKGBUILD
(from rev 212276, kcmutils/trunk/PKGBUILD)

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

Copied: kcmutils/repos/kde-unstable-i686/PKGBUILD (from rev 212276, 
kcmutils/trunk/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2014-05-11 11:21:39 UTC (rev 212277)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kcmutils
+pkgver=4.99.0
+pkgrel=1
+pkgdesc='Utilities for interacting with KCModules'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/kcmutils'
+license=('LGPL')
+depends=('kxmlgui')
+makedepends=('extra-cmake-modules')
+groups=('kf5')
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('65181f6aecacc907d1fce20977e9e0b8')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DECM_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Copied: kcmutils/repos/kde-unstable-x86_64/PKGBUILD (from rev 212276, 
kcmutils/trunk/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2014-05-11 11:21:39 UTC (rev 212277)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kcmutils
+pkgver=4.99.0
+pkgrel=1
+pkgdesc='Utilities for interacting with KCModules'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/kcmutils'
+license=('LGPL')
+depends=('kxmlgui')
+makedepends=('extra-cmake-modules')
+groups=('kf5')
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('65181f6aecacc907d1fce20977e9e0b8')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DECM_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}



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

2014-05-11 Thread Andrea Scarpino
Date: Sunday, May 11, 2014 @ 13:27:00
  Author: andrea
Revision: 212278

Let's try to package KDE Frameworks 5

Added:
  solid/
  solid/repos/
  solid/trunk/
  solid/trunk/PKGBUILD

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

Added: solid/trunk/PKGBUILD
===
--- solid/trunk/PKGBUILD(rev 0)
+++ solid/trunk/PKGBUILD2014-05-11 11:27:00 UTC (rev 212278)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=solid
+pkgver=4.99.0
+pkgrel=1
+pkgdesc='Solid'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/solid'
+license=('LGPL')
+depends=('qt5-declarative' 'media-player-info' 'upower' 'udisks2')
+makedepends=('extra-cmake-modules' 'qt5-tools')
+groups=('kf5')
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('56c94301ad9675d5aec896041501dfcc')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DECM_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}


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


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

2014-05-11 Thread Andrea Scarpino
Date: Sunday, May 11, 2014 @ 13:27:21
  Author: andrea
Revision: 212279

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

Added:
  solid/repos/kde-unstable-i686/
  solid/repos/kde-unstable-i686/PKGBUILD
(from rev 212278, solid/trunk/PKGBUILD)
  solid/repos/kde-unstable-x86_64/
  solid/repos/kde-unstable-x86_64/PKGBUILD
(from rev 212278, solid/trunk/PKGBUILD)

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

Copied: solid/repos/kde-unstable-i686/PKGBUILD (from rev 212278, 
solid/trunk/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2014-05-11 11:27:21 UTC (rev 212279)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=solid
+pkgver=4.99.0
+pkgrel=1
+pkgdesc='Solid'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/solid'
+license=('LGPL')
+depends=('qt5-declarative' 'media-player-info' 'upower' 'udisks2')
+makedepends=('extra-cmake-modules' 'qt5-tools')
+groups=('kf5')
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('56c94301ad9675d5aec896041501dfcc')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DECM_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Copied: solid/repos/kde-unstable-x86_64/PKGBUILD (from rev 212278, 
solid/trunk/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2014-05-11 11:27:21 UTC (rev 212279)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=solid
+pkgver=4.99.0
+pkgrel=1
+pkgdesc='Solid'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/solid'
+license=('LGPL')
+depends=('qt5-declarative' 'media-player-info' 'upower' 'udisks2')
+makedepends=('extra-cmake-modules' 'qt5-tools')
+groups=('kf5')
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('56c94301ad9675d5aec896041501dfcc')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DECM_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}



[arch-commits] Commit in (4 files)

2014-05-11 Thread Andrea Scarpino
Date: Sunday, May 11, 2014 @ 13:29:44
  Author: andrea
Revision: 212280

Let's try to package KDE Frameworks 5

Added:
  kjobwidgets/
  kjobwidgets/repos/
  kjobwidgets/trunk/
  kjobwidgets/trunk/PKGBUILD

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

Added: kjobwidgets/trunk/PKGBUILD
===
--- kjobwidgets/trunk/PKGBUILD  (rev 0)
+++ kjobwidgets/trunk/PKGBUILD  2014-05-11 11:29:44 UTC (rev 212280)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kjobwidgets
+pkgver=4.99.0
+pkgrel=1
+pkgdesc='KJobWidgets'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/kjobwidgets'
+license=('LGPL')
+depends=('kcoreaddons' 'kwidgetsaddons' 'qt5-x11extras')
+makedepends=('extra-cmake-modules' 'qt5-tools')
+groups=('kf5')
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('663d6e6e59aa2d3bea24056e2b2cf7b8')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DECM_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}



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

2014-05-11 Thread Andrea Scarpino
Date: Sunday, May 11, 2014 @ 13:29:59
  Author: andrea
Revision: 212281

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

Added:
  kjobwidgets/repos/kde-unstable-i686/
  kjobwidgets/repos/kde-unstable-i686/PKGBUILD
(from rev 212280, kjobwidgets/trunk/PKGBUILD)
  kjobwidgets/repos/kde-unstable-x86_64/
  kjobwidgets/repos/kde-unstable-x86_64/PKGBUILD
(from rev 212280, kjobwidgets/trunk/PKGBUILD)

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

Copied: kjobwidgets/repos/kde-unstable-i686/PKGBUILD (from rev 212280, 
kjobwidgets/trunk/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2014-05-11 11:29:59 UTC (rev 212281)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kjobwidgets
+pkgver=4.99.0
+pkgrel=1
+pkgdesc='KJobWidgets'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/kjobwidgets'
+license=('LGPL')
+depends=('kcoreaddons' 'kwidgetsaddons' 'qt5-x11extras')
+makedepends=('extra-cmake-modules' 'qt5-tools')
+groups=('kf5')
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('663d6e6e59aa2d3bea24056e2b2cf7b8')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DECM_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Copied: kjobwidgets/repos/kde-unstable-x86_64/PKGBUILD (from rev 212280, 
kjobwidgets/trunk/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2014-05-11 11:29:59 UTC (rev 212281)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kjobwidgets
+pkgver=4.99.0
+pkgrel=1
+pkgdesc='KJobWidgets'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/kjobwidgets'
+license=('LGPL')
+depends=('kcoreaddons' 'kwidgetsaddons' 'qt5-x11extras')
+makedepends=('extra-cmake-modules' 'qt5-tools')
+groups=('kf5')
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('663d6e6e59aa2d3bea24056e2b2cf7b8')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DECM_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}



[arch-commits] Commit in vsftpd/repos (38 files)

2014-05-11 Thread Jonathan Steel
Date: Sunday, May 11, 2014 @ 13:51:53
  Author: jsteel
Revision: 110965

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

Added:
  vsftpd/repos/community-i686/PKGBUILD
(from rev 110964, vsftpd/trunk/PKGBUILD)
  vsftpd/repos/community-i686/vsftpd-ssl.service
(from rev 110964, vsftpd/trunk/vsftpd-ssl.service)
  vsftpd/repos/community-i686/vsftpd-ssl.socket
(from rev 110964, vsftpd/trunk/vsftpd-ssl.socket)
  vsftpd/repos/community-i686/vsftpd-ssl@.service
(from rev 110964, vsftpd/trunk/vsftpd-ssl@.service)
  vsftpd/repos/community-i686/vsftpd.install
(from rev 110964, vsftpd/trunk/vsftpd.install)
  vsftpd/repos/community-i686/vsftpd.logrotate
(from rev 110964, vsftpd/trunk/vsftpd.logrotate)
  vsftpd/repos/community-i686/vsftpd.service
(from rev 110964, vsftpd/trunk/vsftpd.service)
  vsftpd/repos/community-i686/vsftpd.socket
(from rev 110964, vsftpd/trunk/vsftpd.socket)
  vsftpd/repos/community-i686/vsftpd.xinetd
(from rev 110964, vsftpd/trunk/vsftpd.xinetd)
  vsftpd/repos/community-i686/vsftpd@.service
(from rev 110964, vsftpd/trunk/vsftpd@.service)
  vsftpd/repos/community-x86_64/PKGBUILD
(from rev 110964, vsftpd/trunk/PKGBUILD)
  vsftpd/repos/community-x86_64/vsftpd-ssl.service
(from rev 110964, vsftpd/trunk/vsftpd-ssl.service)
  vsftpd/repos/community-x86_64/vsftpd-ssl.socket
(from rev 110964, vsftpd/trunk/vsftpd-ssl.socket)
  vsftpd/repos/community-x86_64/vsftpd-ssl@.service
(from rev 110964, vsftpd/trunk/vsftpd-ssl@.service)
  vsftpd/repos/community-x86_64/vsftpd.install
(from rev 110964, vsftpd/trunk/vsftpd.install)
  vsftpd/repos/community-x86_64/vsftpd.logrotate
(from rev 110964, vsftpd/trunk/vsftpd.logrotate)
  vsftpd/repos/community-x86_64/vsftpd.service
(from rev 110964, vsftpd/trunk/vsftpd.service)
  vsftpd/repos/community-x86_64/vsftpd.socket
(from rev 110964, vsftpd/trunk/vsftpd.socket)
  vsftpd/repos/community-x86_64/vsftpd.xinetd
(from rev 110964, vsftpd/trunk/vsftpd.xinetd)
  vsftpd/repos/community-x86_64/vsftpd@.service
(from rev 110964, vsftpd/trunk/vsftpd@.service)
Deleted:
  vsftpd/repos/community-i686/PKGBUILD
  vsftpd/repos/community-i686/vsftpd-ssl.service
  vsftpd/repos/community-i686/vsftpd-ssl.socket
  vsftpd/repos/community-i686/vsftpd-ssl@.service
  vsftpd/repos/community-i686/vsftpd.install
  vsftpd/repos/community-i686/vsftpd.service
  vsftpd/repos/community-i686/vsftpd.socket
  vsftpd/repos/community-i686/vsftpd.xinetd
  vsftpd/repos/community-i686/vsftpd@.service
  vsftpd/repos/community-x86_64/PKGBUILD
  vsftpd/repos/community-x86_64/vsftpd-ssl.service
  vsftpd/repos/community-x86_64/vsftpd-ssl.socket
  vsftpd/repos/community-x86_64/vsftpd-ssl@.service
  vsftpd/repos/community-x86_64/vsftpd.install
  vsftpd/repos/community-x86_64/vsftpd.service
  vsftpd/repos/community-x86_64/vsftpd.socket
  vsftpd/repos/community-x86_64/vsftpd.xinetd
  vsftpd/repos/community-x86_64/vsftpd@.service

--+
 /PKGBUILD|  124 +
 /vsftpd-ssl.service  |   20 +
 /vsftpd-ssl.socket   |   18 
 /vsftpd-ssl@.service |   18 
 /vsftpd.install  |   34 +
 /vsftpd.service  |   20 +
 /vsftpd.socket   |   18 
 /vsftpd.xinetd   |   20 +
 /vsftpd@.service |   16 
 community-i686/PKGBUILD  |   57 ---
 community-i686/vsftpd-ssl.service|   10 --
 community-i686/vsftpd-ssl.socket |9 --
 community-i686/vsftpd-ssl@.service   |9 --
 community-i686/vsftpd.install|   17 
 community-i686/vsftpd.logrotate  |7 +
 community-i686/vsftpd.service|   10 --
 community-i686/vsftpd.socket |9 --
 community-i686/vsftpd.xinetd |   10 --
 community-i686/vsftpd@.service   |8 --
 community-x86_64/PKGBUILD|   57 ---
 community-x86_64/vsftpd-ssl.service  |   10 --
 community-x86_64/vsftpd-ssl.socket   |9 --
 community-x86_64/vsftpd-ssl@.service |9 --
 community-x86_64/vsftpd.install  |   17 
 community-x86_64/vsftpd.logrotate|7 +
 community-x86_64/vsftpd.service  |   10 --
 community-x86_64/vsftpd.socket   |9 --
 community-x86_64/vsftpd.xinetd   |   10 --
 community-x86_64/vsftpd@.service |8 --
 29 files changed, 302 insertions(+), 278 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-05-11 11:51:14 UTC (rev 110964)
+++ community-i686/PKGBUILD 2014-05-11 11:51:53 UTC (rev 110965)
@@ -1,57 +0,0 @@
-# $Id$
-# Maintainer:  Bartłomiej Piotrowski nos...@bpiotrowski.pl
-# Contributor: Andreas Radke andy...@archlinux.org
-# Contributor: judd jvi...@zeroflux.org
-
-pkgname=vsftpd
-pkgver=3.0.2
-pkgrel=2

[arch-commits] Commit in vsftpd/trunk (PKGBUILD vsftpd.logrotate)

2014-05-11 Thread Jonathan Steel
Date: Sunday, May 11, 2014 @ 13:51:14
  Author: jsteel
Revision: 110964

Added logrotate - FS#39696

Added:
  vsftpd/trunk/vsftpd.logrotate
Modified:
  vsftpd/trunk/PKGBUILD

--+
 PKGBUILD |   15 ++-
 vsftpd.logrotate |7 +++
 2 files changed, 17 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-05-11 11:09:38 UTC (rev 110963)
+++ PKGBUILD2014-05-11 11:51:14 UTC (rev 110964)
@@ -1,21 +1,24 @@
 # $Id$
-# Maintainer:  Bartłomiej Piotrowski nos...@bpiotrowski.pl
+# Maintainer:  Jonathan Steel jsteel at aur.archlinux.org
+# Contributor: Bartłomiej Piotrowski nos...@bpiotrowski.pl
 # Contributor: Andreas Radke andy...@archlinux.org
 # Contributor: judd jvi...@zeroflux.org
 
 pkgname=vsftpd
 pkgver=3.0.2
-pkgrel=2
+pkgrel=3
 pkgdesc=Very Secure FTP daemon
 arch=('i686' 'x86_64')
 url=https://security.appspot.com/vsftpd.html;
 license=('GPL2')
-depends=('openssl')
+depends=('libcap' 'pam')
+optdepends=('logrotate')
 backup=('etc/vsftpd.conf' 'etc/xinetd.d/vsftpd')
 install=vsftpd.install
 source=(https://security.appspot.com/downloads/$pkgname-$pkgver.tar.gz{,.asc}
 vsftpd.xinetd vsftpd-ssl.socket  vsftpd.socket
-vsftpd.service  vsftpd@.service vsftpd-ssl.service vsftpd-ssl@.service)
+vsftpd.service  vsftpd@.service vsftpd-ssl.service vsftpd-ssl@.service
+$pkgname.logrotate)
 sha256sums=('be46f0e2c5528fe021fafc8dab1ecfea0c1f183063a06977f8537fcd0b195e56'
 'SKIP'
 '5909f9b95479429c236170a06879d27d07ddda52d9c4c5543c961500c4cac2e0'
@@ -24,7 +27,8 @@
 '50c392f373f8ce37aa226a9af7a6b038a8683ee3e041ebbad1bb483e47e8a1f8'
 'd7b8e4827d4f6bafcbf52f9d2d7380958c7b08bb3f757806aa89d4bc06c9671c'
 'b88a50fc68b3bf746d13c9a777df77791cd3eac6eb7c2df655418071c2adf422'
-'4a55c2468b08d858f71bacf1f4885847bec8e548b0e92088068d9bdd3884af84')
+'4a55c2468b08d858f71bacf1f4885847bec8e548b0e92088068d9bdd3884af84'
+'a0df9d4e3d3b83ff32a15a9e3a98d79a0549a095a4f1c508346ffa6f8e335cd8')
 
 build() {
   cd $pkgname-$pkgver
@@ -45,6 +49,7 @@
   install -D -m644 vsftpd.8 $pkgdir/usr/share/man/man8/vsftpd.8
   install -D -m644 vsftpd.conf.5 $pkgdir/usr/share/man/man5/vsftpd.conf.5
   install -D -m644 $srcdir/vsftpd.xinetd $pkgdir/etc/xinetd.d/vsftpd
+  install -D -m644 $srcdir/$pkgname.logrotate 
$pkgdir/etc/logrotate.d/$pkgname
 
   install -D -m644 $srcdir/vsftpd.service 
$pkgdir/usr/lib/systemd/system/vsftpd.service
   install -D -m644 $srcdir/vsftpd@.service 
$pkgdir/usr/lib/systemd/system/vsftpd@.service 

Added: vsftpd.logrotate
===
--- vsftpd.logrotate(rev 0)
+++ vsftpd.logrotate2014-05-11 11:51:14 UTC (rev 110964)
@@ -0,0 +1,7 @@
+/var/log/vsftpd.log {
+  missingok
+  notifempty
+  postrotate
+/usr/bin/killall -HUP vsftpd
+  endscript
+}



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

2014-05-11 Thread Guillaume Alaux
Date: Sunday, May 11, 2014 @ 14:50:20
  Author: guillaume
Revision: 212282

Update pkgdesc

Modified:
  java7-openjdk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-11 11:29:59 UTC (rev 212281)
+++ PKGBUILD2014-05-11 12:50:20 UTC (rev 212282)
@@ -128,7 +128,7 @@
 }
 
 package_jre7-openjdk-headless() {
-  pkgdesc=Free Java environment based on OpenJDK 7.0 with IcedTea7 replacing 
binary plugs - Minimal Java runtime - needed for executing non GUI Java 
programs
+  pkgdesc='OpenJDK Java 7 headless runtime environment'
   depends=('libjpeg-turbo' 'lcms2' 'nss' 'ca-certificates-java')
   optdepends=('libcups: needed for Java Mauve support - libmawt.so'
   'fontconfig: needed for Java Mauve support - libmawt.so'
@@ -248,7 +248,7 @@
 }
 
 package_jre7-openjdk() {
-  pkgdesc=Free Java environment based on OpenJDK 7.0 with IcedTea7 replacing 
binary plugs - Full Java runtime environment - needed for executing Java GUI 
and Webstart programs
+  pkgdesc='OpenJDK Java 7 full runtime environment'
   depends=('jre7-openjdk-headless' 'xdg-utils' 'hicolor-icon-theme')
   optdepends=('icedtea-web-java7: web browser plugin + Java Web Start'
  'alsa-lib: for basic sound support'
@@ -302,7 +302,7 @@
 }
 
 package_jdk7-openjdk() {
-  pkgdesc=Free Java environment based on OpenJDK 7.0 with IcedTea7 replacing 
binary plugs - SDK
+  pkgdesc='OpenJDK Java 7 development kit'
   depends=('jre7-openjdk')
   provides=('java-environment=7')
   conflicts=('java-environment')
@@ -360,7 +360,7 @@
 }
 
 package_openjdk7-src() {
-  pkgdesc=Free Java environment based on OpenJDK 7.0 with IcedTea7 replacing 
binary plugs - sources
+  pkgdesc='OpenJDK Java 7 sources'
   replaces=('openjdk6-src')
 
   install -D ${srcdir}/${_imgdir}/src.zip ${pkgdir}${_jvmdir}/src.zip
@@ -367,7 +367,7 @@
 }
 
 package_openjdk7-doc() {
-  pkgdesc=Free Java environment based on OpenJDK 7.0 with IcedTea7 replacing 
binary plugs - documentation
+  pkgdesc='OpenJDK Java 7 documentation'
 
   install -m755 -d ${pkgdir}/usr/share/doc/openjdk7-doc
   for i in ${srcdir}/icedtea-${_icedtea_ver}/openjdk.build/docs/*; do



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

2014-05-11 Thread Jelle van der Waa
Date: Sunday, May 11, 2014 @ 15:00:23
  Author: jelle
Revision: 110966

upgpkg: cppcheck 1.65-1

Modified:
  cppcheck/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-11 11:51:53 UTC (rev 110965)
+++ PKGBUILD2014-05-11 13:00:23 UTC (rev 110966)
@@ -2,7 +2,7 @@
 # Maintainer: Stéphane Gaudreault steph...@archlinux.org
 
 pkgname=cppcheck
-pkgver=1.64
+pkgver=1.65
 pkgrel=1
 pkgdesc=A tool for static C/C++ code analysis
 arch=('i686' 'x86_64')
@@ -11,7 +11,7 @@
 depends=('qt5-base')
 makedepends=('docbook-xsl' 'qt5-tools')
 source=(https://github.com/danmar/cppcheck/archive/${pkgver}.tar.gz)
-sha1sums=('feaa8bc20f950a38026461ff407de4ef1ba0')
+sha1sums=('df1ebc45defb24c7f21af64bbf9515cedb5f2d8e')
 
 build() {
cd ${srcdir}/${pkgname}-${pkgver}
@@ -23,9 +23,14 @@
make CFGDIR=/usr/share/cppcheck/cfg
 }
 
+check() {
+  cd $srcdir/cppcheck
+  make CFGDIR=/usr/share/cppcheck/cfg test
+}
+
 package() {
cd ${srcdir}/${pkgname}-${pkgver}
-   make DESTDIR=${pkgdir} install
+   make DESTDIR=${pkgdir} CFGDIR=/usr/share/cppcheck/cfg install 
 
install -D -p -m 644 cppcheck.1 ${pkgdir}/usr/share/man/man1/cppcheck.1
 



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

2014-05-11 Thread Jelle van der Waa
Date: Sunday, May 11, 2014 @ 15:00:34
  Author: jelle
Revision: 110967

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-05-11 13:00:23 UTC (rev 110966)
+++ community-i686/PKGBUILD 2014-05-11 13:00:34 UTC (rev 110967)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Stéphane Gaudreault steph...@archlinux.org
-
-pkgname=cppcheck
-pkgver=1.64
-pkgrel=1
-pkgdesc=A tool for static C/C++ code analysis
-arch=('i686' 'x86_64')
-url=http://cppcheck.wiki.sourceforge.net/;
-license=('GPL')
-depends=('qt5-base')
-makedepends=('docbook-xsl' 'qt5-tools')
-source=(https://github.com/danmar/cppcheck/archive/${pkgver}.tar.gz)
-sha1sums=('feaa8bc20f950a38026461ff407de4ef1ba0')
-
-build() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   make CFGDIR=/usr/share/cppcheck/cfg
-   make 
DB2MAN=/usr/share/xml/docbook/xsl-stylesheets-1.78.1/manpages/docbook.xsl man
-
-   cd gui
-   qmake HAVE_RULES=yes CFGDIR=/usr/share/cppcheck/cfg
-   make CFGDIR=/usr/share/cppcheck/cfg
-}
-
-package() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   make DESTDIR=${pkgdir} install
-
-   install -D -p -m 644 cppcheck.1 ${pkgdir}/usr/share/man/man1/cppcheck.1
-
-   install -m755 gui/cppcheck-gui ${pkgdir}/usr/bin
-
-   for _f in cfg/*; do
- install -D -p -m 644 $_f ${pkgdir}/usr/share/${pkgname}/$_f
-   done
-}

Copied: cppcheck/repos/community-i686/PKGBUILD (from rev 110966, 
cppcheck/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-05-11 13:00:34 UTC (rev 110967)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault steph...@archlinux.org
+
+pkgname=cppcheck
+pkgver=1.65
+pkgrel=1
+pkgdesc=A tool for static C/C++ code analysis
+arch=('i686' 'x86_64')
+url=http://cppcheck.wiki.sourceforge.net/;
+license=('GPL')
+depends=('qt5-base')
+makedepends=('docbook-xsl' 'qt5-tools')
+source=(https://github.com/danmar/cppcheck/archive/${pkgver}.tar.gz)
+sha1sums=('df1ebc45defb24c7f21af64bbf9515cedb5f2d8e')
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make CFGDIR=/usr/share/cppcheck/cfg
+   make 
DB2MAN=/usr/share/xml/docbook/xsl-stylesheets-1.78.1/manpages/docbook.xsl man
+
+   cd gui
+   qmake HAVE_RULES=yes CFGDIR=/usr/share/cppcheck/cfg
+   make CFGDIR=/usr/share/cppcheck/cfg
+}
+
+check() {
+  cd $srcdir/cppcheck
+  make CFGDIR=/usr/share/cppcheck/cfg test
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make DESTDIR=${pkgdir} CFGDIR=/usr/share/cppcheck/cfg install 
+
+   install -D -p -m 644 cppcheck.1 ${pkgdir}/usr/share/man/man1/cppcheck.1
+
+   install -m755 gui/cppcheck-gui ${pkgdir}/usr/bin
+
+   for _f in cfg/*; do
+ install -D -p -m 644 $_f ${pkgdir}/usr/share/${pkgname}/$_f
+   done
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-05-11 13:00:23 UTC (rev 110966)
+++ community-x86_64/PKGBUILD   2014-05-11 13:00:34 UTC (rev 110967)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Stéphane Gaudreault steph...@archlinux.org
-
-pkgname=cppcheck
-pkgver=1.64
-pkgrel=1
-pkgdesc=A tool for static C/C++ code analysis
-arch=('i686' 'x86_64')
-url=http://cppcheck.wiki.sourceforge.net/;
-license=('GPL')
-depends=('qt5-base')
-makedepends=('docbook-xsl' 'qt5-tools')
-source=(https://github.com/danmar/cppcheck/archive/${pkgver}.tar.gz)
-sha1sums=('feaa8bc20f950a38026461ff407de4ef1ba0')
-
-build() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   make CFGDIR=/usr/share/cppcheck/cfg
-   make 
DB2MAN=/usr/share/xml/docbook/xsl-stylesheets-1.78.1/manpages/docbook.xsl man
-
-   cd gui
-   qmake HAVE_RULES=yes CFGDIR=/usr/share/cppcheck/cfg
-   make CFGDIR=/usr/share/cppcheck/cfg
-}
-
-package() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   make DESTDIR=${pkgdir} install
-
-   install -D -p -m 644 cppcheck.1 ${pkgdir}/usr/share/man/man1/cppcheck.1
-
-   install -m755 gui/cppcheck-gui ${pkgdir}/usr/bin
-
-   for _f in cfg/*; do
- install -D -p -m 644 $_f ${pkgdir}/usr/share/${pkgname}/$_f
-   done
-}

Copied: cppcheck/repos/community-x86_64/PKGBUILD (from rev 110966, 
cppcheck/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ 

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

2014-05-11 Thread Jonathan Steel
Date: Sunday, May 11, 2014 @ 15:00:43
  Author: jsteel
Revision: 110968

Quote dirs and use $pkgname for files

Modified:
  vsftpd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-11 13:00:34 UTC (rev 110967)
+++ PKGBUILD2014-05-11 13:00:43 UTC (rev 110968)
@@ -14,24 +14,19 @@
 depends=('libcap' 'pam')
 optdepends=('logrotate')
 backup=('etc/vsftpd.conf' 'etc/xinetd.d/vsftpd')
-install=vsftpd.install
+install=$pkgname.install
 source=(https://security.appspot.com/downloads/$pkgname-$pkgver.tar.gz{,.asc}
-vsftpd.xinetd vsftpd-ssl.socket  vsftpd.socket
-vsftpd.service  vsftpd@.service vsftpd-ssl.service vsftpd-ssl@.service
+$pkgname.xinetd $pkgname-ssl.socket $pkgname.socket $pkgname.service
+$pkgname@.service $pkgname-ssl.service $pkgname-ssl@.service
 $pkgname.logrotate)
-sha256sums=('be46f0e2c5528fe021fafc8dab1ecfea0c1f183063a06977f8537fcd0b195e56'
-'SKIP'
-'5909f9b95479429c236170a06879d27d07ddda52d9c4c5543c961500c4cac2e0'
-'d5185e48fffc6253499a55e0fe0f90a3424fc639640af11a9d38df33fb145afe'
-'9fdbfd2ec0207170371ca3cf2b0ddca2dc2fe3d062e5792e0d3e51474c3198c9'
-'50c392f373f8ce37aa226a9af7a6b038a8683ee3e041ebbad1bb483e47e8a1f8'
-'d7b8e4827d4f6bafcbf52f9d2d7380958c7b08bb3f757806aa89d4bc06c9671c'
-'b88a50fc68b3bf746d13c9a777df77791cd3eac6eb7c2df655418071c2adf422'
-'4a55c2468b08d858f71bacf1f4885847bec8e548b0e92088068d9bdd3884af84'
-'a0df9d4e3d3b83ff32a15a9e3a98d79a0549a095a4f1c508346ffa6f8e335cd8')
+md5sums=('8b00c749719089401315bd3c44dddbb2' 'SKIP'
+ 'a8b05df3cf0087ab32245aa1d22e724a' 'fcef2cd7631f73a883a3c3d479b25cb8'
+ 'd05045a1244a1be9f3946578bfd0252d' 'e36f6a1fdd68e88092677c99f1cbe09b'
+ '32c9266536204fd8c4917c682b6359f1' 'c899151c1dbec8ea9051fae4d701f0f3'
+ '987349e5c5570c762fed9e87c0b4e715' 'f6276f8b80c13308c1da5310adcf6442')
 
 build() {
-  cd $pkgname-$pkgver
+  cd $srcdir/$pkgname-$pkgver
 
   # build-time config
   sed \
@@ -42,21 +37,21 @@
 }
 
 package() {
-  cd $pkgname-$pkgver
+  cd $srcdir/$pkgname-$pkgver
 
-  install -D -m755 vsftpd $pkgdir/usr/bin/vsftpd
-  install -D -m644 vsftpd.conf $pkgdir/etc/vsftpd.conf
-  install -D -m644 vsftpd.8 $pkgdir/usr/share/man/man8/vsftpd.8
-  install -D -m644 vsftpd.conf.5 $pkgdir/usr/share/man/man5/vsftpd.conf.5
-  install -D -m644 $srcdir/vsftpd.xinetd $pkgdir/etc/xinetd.d/vsftpd
+  install -D -m755 $pkgname $pkgdir/usr/bin/$pkgname
+  install -D -m644 $pkgname.conf $pkgdir/etc/$pkgname.conf
+  install -D -m644 $pkgname.8 $pkgdir/usr/share/man/man8/$pkgname.8
+  install -D -m644 $pkgname.conf.5 $pkgdir/usr/share/man/man5/$pkgname.conf.5
+  install -D -m644 $srcdir/$pkgname.xinetd $pkgdir/etc/xinetd.d/$pkgname
   install -D -m644 $srcdir/$pkgname.logrotate 
$pkgdir/etc/logrotate.d/$pkgname
 
-  install -D -m644 $srcdir/vsftpd.service 
$pkgdir/usr/lib/systemd/system/vsftpd.service
-  install -D -m644 $srcdir/vsftpd@.service 
$pkgdir/usr/lib/systemd/system/vsftpd@.service 
-  install -D -m644 $srcdir/vsftpd-ssl.service 
$pkgdir/usr/lib/systemd/system/vsftpd-ssl.service
-  install -D -m644 $srcdir/vsftpd-ssl@.service 
$pkgdir/usr/lib/systemd/system/vsftpd-ssl@.service
-  install -D -m644 $srcdir/vsftpd.socket 
$pkgdir/usr/lib/systemd/system/vsftpd.socket
-  install -D -m644 $srcdir/vsftpd-ssl.socket 
$pkgdir/usr/lib/systemd/system/vsftpd-ssl.socket
+  install -D -m644 $srcdir/$pkgname.service 
$pkgdir/usr/lib/systemd/system/$pkgname.service
+  install -D -m644 $srcdir/$pkgname@.service 
$pkgdir/usr/lib/systemd/system/$pkgname@.service 
+  install -D -m644 $srcdir/$pkgname-ssl.service 
$pkgdir/usr/lib/systemd/system/$pkgname-ssl.service
+  install -D -m644 $srcdir/$pkgname-ssl@.service 
$pkgdir/usr/lib/systemd/system/$pkgname-ssl@.service
+  install -D -m644 $srcdir/$pkgname.socket 
$pkgdir/usr/lib/systemd/system/$pkgname.socket
+  install -D -m644 $srcdir/$pkgname-ssl.socket 
$pkgdir/usr/lib/systemd/system/$pkgname-ssl.socket
 
-  install -d -m755 $pkgdir/usr/share/empty
+  install -d -m755 $pkgdir/usr/share/empty
 }



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

2014-05-11 Thread Guillaume Alaux
Date: Sunday, May 11, 2014 @ 15:43:50
  Author: guillaume
Revision: 212283

Use array for backup files

Modified:
  java7-openjdk/trunk/PKGBUILD

--+
 PKGBUILD |   92 +++--
 1 file changed, 35 insertions(+), 57 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-05-11 12:50:20 UTC (rev 212282)
+++ PKGBUILD2014-05-11 13:43:50 UTC (rev 212283)
@@ -135,28 +135,30 @@
   'java-rhino: for some JavaScript support')
   provides=('java-runtime-headless=7')
   conflicts=('openjdk6')
-  backup=(etc/profile.d/jre.sh
-  etc/profile.d/jre.csh
-  etc/java-7-openjdk/calendars.properties
-  etc/java-7-openjdk/content-types.properties
-  etc/java-7-openjdk/cursors/cursors.properties
-  etc/java-7-openjdk/flavormap.properties
-  etc/java-7-openjdk/fontconfig.bfc
-  etc/java-7-openjdk/fontconfig.properties
-  etc/java-7-openjdk/jvm.cfg
-  etc/java-7-openjdk/logging.properties
-  etc/java-7-openjdk/management/jmxremote.access
-  etc/java-7-openjdk/management/jmxremote.password
-  etc/java-7-openjdk/management/management.properties
-  etc/java-7-openjdk/management/snmp.acl
-  etc/java-7-openjdk/net.properties
-  etc/java-7-openjdk/psfont.properties.ja
-  etc/java-7-openjdk/psfontj2d.properties
-  etc/java-7-openjdk/security/java.policy
-  etc/java-7-openjdk/security/java.security
-  etc/java-7-openjdk/security/nss.cfg
-  etc/java-7-openjdk/sound.properties
-  etc/java-7-openjdk/tz.properties)
+  # Upstream config files that should go to etc and get backup
+  _backup_etc=(etc/java-7-openjdk/${_JARCH}/jvm.cfg
+   etc/java-7-openjdk/calendars.properties
+   etc/java-7-openjdk/content-types.properties
+   etc/java-7-openjdk/flavormap.properties
+   etc/java-7-openjdk/fontconfig.bfc
+   etc/java-7-openjdk/fontconfig.properties
+   etc/java-7-openjdk/images/cursors/cursors.properties
+   etc/java-7-openjdk/logging.properties
+   etc/java-7-openjdk/management/jmxremote.access
+   etc/java-7-openjdk/management/jmxremote.password
+   etc/java-7-openjdk/management/management.properties
+   etc/java-7-openjdk/management/snmp.acl
+   etc/java-7-openjdk/net.properties
+   etc/java-7-openjdk/psfont.properties.ja
+   etc/java-7-openjdk/psfontj2d.properties
+   etc/java-7-openjdk/security/java.policy
+   etc/java-7-openjdk/security/java.security
+   etc/java-7-openjdk/security/nss.cfg
+   etc/java-7-openjdk/sound.properties
+   etc/java-7-openjdk/tz.properties)
+  backup=(${_backup_etc[@]}
+  etc/profile.d/jre.sh
+  etc/profile.d/jre.csh)
   install=jre7-openjdk-headless.install
 
   cd ${srcdir}/${_imgdir}/jre
@@ -210,43 +212,19 @@
 
   # link license
   ln -sf /usr/share/licenses/${pkgbase} 
${pkgdir}/usr/share/licenses/${pkgname}
-
-  # Put some more files under backup control
-  install -m755 -d ${pkgdir}/etc/java-7-openjdk/
-  install -m644 ${pkgdir}${_jvmdir}/jre/lib/*.properties* 
${pkgdir}/etc/java-7-openjdk/
-  # install dummy links to make them found by JAVA
-  cd ${pkgdir}${_jvmdir}/jre/lib/
-  for file in `ls ${pkgdir}/etc/java-7-openjdk/*.properties*`; do
-ln -vsf /etc/java-7-openjdk/`basename $file` .
+
+  # Copy these template so that they can be used in _backup_etc
+  ln -fs lib/management/jmxremote.password.template 
lib/management/jmxremote.password
+  ln -fs lib/management/snmp.acl.template lib/management/snmp.acl
+
+  # Move config files that were set in _backup_etc from ./lib to /etc
+  for file in ${_backup_etc[@]}; do
+_filepkgpath=${_jvmdir}/jre/lib/${file#etc/java-7-openjdk/}
+install -D -m 644 ${pkgdir}${_filepkgpath} ${pkgdir}/${file}
+ln -sf /${file} ${pkgdir}${_filepkgpath}
   done
-  # some more
-  install -m755 -d ${pkgdir}/etc/java-7-openjdk/{cursors,management,security}
-  install -m644 ${pkgdir}${_jvmdir}/jre/lib/images/cursors/cursors.properties \
-${pkgdir}/etc/java-7-openjdk/cursors/
-  pushd ${pkgdir}${_jvmdir}/jre/lib/images/cursors/
-ln -vsf /etc/java-7-openjdk/cursors/cursors.properties .
-  popd
-  mv ${pkgdir}${_jvmdir}/jre/lib/management/jmxremote.password.template \
- ${pkgdir}${_jvmdir}/jre/lib/management/jmxremote.password
-  mv ${pkgdir}${_jvmdir}/jre/lib/management/snmp.acl.template \
- ${pkgdir}${_jvmdir}/jre/lib/management/snmp.acl
-  install -m644 
${pkgdir}${_jvmdir}/jre/lib/management/{management.properties,jmxremote.access,jmxremote.password,snmp.acl}
 \
-${pkgdir}/etc/java-7-openjdk/management/
-  pushd ${pkgdir}${_jvmdir}/jre/lib/management
-ln -vsf 

[arch-commits] Commit in xarchiver/repos (26 files)

2014-05-11 Thread Balló György
Date: Sunday, May 11, 2014 @ 16:07:03
  Author: bgyorgy
Revision: 110970

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

Added:
  xarchiver/repos/community-i686/PKGBUILD
(from rev 110969, xarchiver/trunk/PKGBUILD)
  xarchiver/repos/community-i686/rar5-withespace.patch
(from rev 110969, xarchiver/trunk/rar5-withespace.patch)
  xarchiver/repos/community-i686/xarchiver-0.5.3-add-mime-types.patch
(from rev 110969, xarchiver/trunk/xarchiver-0.5.3-add-mime-types.patch)
  xarchiver/repos/community-i686/xarchiver-0.5.3-fix-double-escaping.patch
(from rev 110969, xarchiver/trunk/xarchiver-0.5.3-fix-double-escaping.patch)
  xarchiver/repos/community-i686/xarchiver-0.5.3-fix-password-protected.patch
(from rev 110969, 
xarchiver/trunk/xarchiver-0.5.3-fix-password-protected.patch)
  xarchiver/repos/community-i686/xarchiver-0.5.3-fix-rpm-support.patch
(from rev 110969, xarchiver/trunk/xarchiver-0.5.3-fix-rpm-support.patch)
  xarchiver/repos/community-i686/xarchiver.install
(from rev 110969, xarchiver/trunk/xarchiver.install)
  xarchiver/repos/community-x86_64/PKGBUILD
(from rev 110969, xarchiver/trunk/PKGBUILD)
  xarchiver/repos/community-x86_64/rar5-withespace.patch
(from rev 110969, xarchiver/trunk/rar5-withespace.patch)
  xarchiver/repos/community-x86_64/xarchiver-0.5.3-add-mime-types.patch
(from rev 110969, xarchiver/trunk/xarchiver-0.5.3-add-mime-types.patch)
  xarchiver/repos/community-x86_64/xarchiver-0.5.3-fix-double-escaping.patch
(from rev 110969, xarchiver/trunk/xarchiver-0.5.3-fix-double-escaping.patch)
  xarchiver/repos/community-x86_64/xarchiver-0.5.3-fix-password-protected.patch
(from rev 110969, 
xarchiver/trunk/xarchiver-0.5.3-fix-password-protected.patch)
  xarchiver/repos/community-x86_64/xarchiver-0.5.3-fix-rpm-support.patch
(from rev 110969, xarchiver/trunk/xarchiver-0.5.3-fix-rpm-support.patch)
  xarchiver/repos/community-x86_64/xarchiver.install
(from rev 110969, xarchiver/trunk/xarchiver.install)
Deleted:
  xarchiver/repos/community-i686/PKGBUILD
  xarchiver/repos/community-i686/xarchiver-0.5.3-add-mime-types.patch
  xarchiver/repos/community-i686/xarchiver-0.5.3-fix-double-escaping.patch
  xarchiver/repos/community-i686/xarchiver-0.5.3-fix-password-protected.patch
  xarchiver/repos/community-i686/xarchiver-0.5.3-fix-rpm-support.patch
  xarchiver/repos/community-i686/xarchiver.install
  xarchiver/repos/community-x86_64/PKGBUILD
  xarchiver/repos/community-x86_64/xarchiver-0.5.3-add-mime-types.patch
  xarchiver/repos/community-x86_64/xarchiver-0.5.3-fix-double-escaping.patch
  xarchiver/repos/community-x86_64/xarchiver-0.5.3-fix-password-protected.patch
  xarchiver/repos/community-x86_64/xarchiver-0.5.3-fix-rpm-support.patch
  xarchiver/repos/community-x86_64/xarchiver.install

---+
 /PKGBUILD |  128 +++
 /xarchiver-0.5.3-add-mime-types.patch |   18 +
 /xarchiver-0.5.3-fix-double-escaping.patch|   64 +++
 /xarchiver-0.5.3-fix-password-protected.patch |   84 
 /xarchiver-0.5.3-fix-rpm-support.patch|  172 ++
 /xarchiver.install|   24 +
 community-i686/PKGBUILD   |   59 ---
 community-i686/rar5-withespace.patch  |   44 ++
 community-i686/xarchiver-0.5.3-add-mime-types.patch   |9 
 community-i686/xarchiver-0.5.3-fix-double-escaping.patch  |   32 -
 community-i686/xarchiver-0.5.3-fix-password-protected.patch   |   42 --
 community-i686/xarchiver-0.5.3-fix-rpm-support.patch  |   86 -
 community-i686/xarchiver.install  |   12 
 community-x86_64/PKGBUILD |   59 ---
 community-x86_64/rar5-withespace.patch|   44 ++
 community-x86_64/xarchiver-0.5.3-add-mime-types.patch |9 
 community-x86_64/xarchiver-0.5.3-fix-double-escaping.patch|   32 -
 community-x86_64/xarchiver-0.5.3-fix-password-protected.patch |   42 --
 community-x86_64/xarchiver-0.5.3-fix-rpm-support.patch|   86 -
 community-x86_64/xarchiver.install|   12 
 20 files changed, 578 insertions(+), 480 deletions(-)

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


[arch-commits] Commit in xarchiver/trunk (PKGBUILD rar5-withespace.patch)

2014-05-11 Thread Balló György
Date: Sunday, May 11, 2014 @ 16:06:47
  Author: bgyorgy
Revision: 110969

upgpkg: xarchiver 0.5.3-2

Fix RAR5 files containing white space (FS#40288)

Added:
  xarchiver/trunk/rar5-withespace.patch
Modified:
  xarchiver/trunk/PKGBUILD

---+
 PKGBUILD  |   11 ---
 rar5-withespace.patch |   44 
 2 files changed, 52 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-05-11 13:00:43 UTC (rev 110968)
+++ PKGBUILD2014-05-11 14:06:47 UTC (rev 110969)
@@ -5,7 +5,7 @@
 
 pkgname=xarchiver
 pkgver=0.5.3
-pkgrel=1
+pkgrel=2
 pkgdesc=GTK+ frontend to various command line archivers
 arch=('i686' 'x86_64')
 url=http://xarchiver.sourceforge.net/;
@@ -24,12 +24,14 @@
 xarchiver-0.5.3-fix-rpm-support.patch
 xarchiver-0.5.3-fix-double-escaping.patch
 xarchiver-0.5.3-fix-password-protected.patch
-xarchiver-0.5.3-add-mime-types.patch)
+xarchiver-0.5.3-add-mime-types.patch
+rar5-withespace.patch)
 md5sums=('fd390bbd2df76a5f8a007bdeae82d4aa'
  '812b93339f5e3332621f3c5abebfe277'
  '6178d7ab679b761469c880a8db991907'
  '35ab96d98521a0a36f3e9e9ec0969107'
- 'f9119f5290caa195a56b7d3c63d9137d')
+ 'f9119f5290caa195a56b7d3c63d9137d'
+ '77a4aead93f0b2c9cf44647101a85742')
 
 prepare() {
   cd $pkgname-$pkgver
@@ -45,6 +47,9 @@
 
   # Add more MIME types in the desktop file
   patch -Np1 -i ../xarchiver-0.5.3-add-mime-types.patch
+
+  # Fix RAR5 files containing white space
+  patch -Np1 -i ../rar5-withespace.patch
 }
 
 build() {

Added: rar5-withespace.patch
===
--- rar5-withespace.patch   (rev 0)
+++ rar5-withespace.patch   2014-05-11 14:06:47 UTC (rev 110969)
@@ -0,0 +1,44 @@
+--- xarchiver-0.5.3.orig/src/rar.c
 xarchiver-0.5.3/src/rar.c
+@@ -345,7 +345,7 @@
+   unsigned short int i = 0;
+   unsigned int linesize,n,a;
+   gboolean dir = FALSE;
+-  static gchar *filename;
++  static gchar *filename, *end;
+ 
+   if (last_line)
+   return;
+@@ -388,7 +388,6 @@
+   last_line = TRUE;
+   return;
+   }
+-
+   archive-nr_of_files++;
+ 
+   /* Permissions */
+@@ -453,15 +452,15 @@
+   for(; n  linesize  line[n] != ' '; n++);
+   line[n] = '\0';
+   item[i] = line + a;
+-  i++;
+-  n++;
+-  
+-  /* fileName */
+-  for(n=64; n  linesize  line[n] == ' '; n++);
+-  a = n;
+-  for(; n  linesize  line[n] != ' '  line[n] != '\n'; n++);
+-  line[n]='\0';
+-  filename = g_strdup(line + a);
++
++  /* FileName */
++  line[linesize - 1] = '\0';
++  filename = g_strdup(line+64);
++  
++  /* Strip trailing whitespace */
++  end = filename + strlen(filename) - 1;
++  while(end = filename  *end == ' ') end--;
++  *(end + 1) = '\0';
+   
+   /* Work around for rar which doesn't
+* output / with directories */



[arch-commits] Commit in lxdm/trunk (PKGBUILD git-fixes.patch)

2014-05-11 Thread Balló György
Date: Sunday, May 11, 2014 @ 16:27:03
  Author: bgyorgy
Revision: 110971

upgpkg: lxdm 0.5.0-1

Update to version 0.5.0

Modified:
  lxdm/trunk/PKGBUILD
Deleted:
  lxdm/trunk/git-fixes.patch

-+
 PKGBUILD|   18 
 git-fixes.patch | 4067 --
 2 files changed, 6 insertions(+), 4079 deletions(-)

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


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

2014-05-11 Thread Balló György
Date: Sunday, May 11, 2014 @ 16:27:16
  Author: bgyorgy
Revision: 110972

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

Added:
  lxdm/repos/community-i686/PKGBUILD
(from rev 110971, lxdm/trunk/PKGBUILD)
  lxdm/repos/community-i686/Xsession
(from rev 110971, lxdm/trunk/Xsession)
  lxdm/repos/community-i686/default-config.patch
(from rev 110971, lxdm/trunk/default-config.patch)
  lxdm/repos/community-i686/lxdm.install
(from rev 110971, lxdm/trunk/lxdm.install)
  lxdm/repos/community-i686/lxdm.pam
(from rev 110971, lxdm/trunk/lxdm.pam)
  lxdm/repos/community-x86_64/PKGBUILD
(from rev 110971, lxdm/trunk/PKGBUILD)
  lxdm/repos/community-x86_64/Xsession
(from rev 110971, lxdm/trunk/Xsession)
  lxdm/repos/community-x86_64/default-config.patch
(from rev 110971, lxdm/trunk/default-config.patch)
  lxdm/repos/community-x86_64/lxdm.install
(from rev 110971, lxdm/trunk/lxdm.install)
  lxdm/repos/community-x86_64/lxdm.pam
(from rev 110971, lxdm/trunk/lxdm.pam)
Deleted:
  lxdm/repos/community-i686/PKGBUILD
  lxdm/repos/community-i686/Xsession
  lxdm/repos/community-i686/default-config.patch
  lxdm/repos/community-i686/git-fixes.patch
  lxdm/repos/community-i686/lxdm.install
  lxdm/repos/community-i686/lxdm.pam
  lxdm/repos/community-x86_64/PKGBUILD
  lxdm/repos/community-x86_64/Xsession
  lxdm/repos/community-x86_64/default-config.patch
  lxdm/repos/community-x86_64/git-fixes.patch
  lxdm/repos/community-x86_64/lxdm.install
  lxdm/repos/community-x86_64/lxdm.pam

---+
 /PKGBUILD |  122 
 /Xsession |  128 +
 /default-config.patch |   56 
 /lxdm.install |   34 
 /lxdm.pam |   14 
 community-i686/PKGBUILD   |   67 
 community-i686/Xsession   |   64 
 community-i686/default-config.patch   |   28 
 community-i686/git-fixes.patch| 4067 
 community-i686/lxdm.install   |   17 
 community-i686/lxdm.pam   |7 
 community-x86_64/PKGBUILD |   67 
 community-x86_64/Xsession |   64 
 community-x86_64/default-config.patch |   28 
 community-x86_64/git-fixes.patch  | 4067 
 community-x86_64/lxdm.install |   17 
 community-x86_64/lxdm.pam |7 
 17 files changed, 354 insertions(+), 8500 deletions(-)

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


[arch-commits] Commit in java-rxtx (3 files)

2014-05-11 Thread Balló György
Date: Sunday, May 11, 2014 @ 16:44:29
  Author: bgyorgy
Revision: 110973

Move source to pkgbuild.com (FS#40052)

Modified:
  java-rxtx/repos/community-i686/PKGBUILD
  java-rxtx/repos/community-x86_64/PKGBUILD
  java-rxtx/trunk/PKGBUILD

-+
 repos/community-i686/PKGBUILD   |3 ++-
 repos/community-x86_64/PKGBUILD |3 ++-
 trunk/PKGBUILD  |3 ++-
 3 files changed, 6 insertions(+), 3 deletions(-)

Modified: repos/community-i686/PKGBUILD
===
--- repos/community-i686/PKGBUILD   2014-05-11 14:27:16 UTC (rev 110972)
+++ repos/community-i686/PKGBUILD   2014-05-11 14:44:29 UTC (rev 110973)
@@ -15,7 +15,8 @@
 provides=($_pkgname=$pkgver)
 replaces=($_pkgname)
 install=$_pkgname.install
-source=(http://rxtx.qbang.org/pub/$_pkgname/$_pkgname-$pkgver.zip
+# Upstream gone: http://rxtx.qbang.org/pub/$_pkgname/$_pkgname-$pkgver.zip
+source=(http://pkgbuild.com/~bgyorgy/sources/$_pkgname-$pkgver.zip
 utsrelease.patch
 rxtx-2.2-lock.patch
 rxtx-2.2-fhs_lock.patch

Modified: repos/community-x86_64/PKGBUILD
===
--- repos/community-x86_64/PKGBUILD 2014-05-11 14:27:16 UTC (rev 110972)
+++ repos/community-x86_64/PKGBUILD 2014-05-11 14:44:29 UTC (rev 110973)
@@ -15,7 +15,8 @@
 provides=($_pkgname=$pkgver)
 replaces=($_pkgname)
 install=$_pkgname.install
-source=(http://rxtx.qbang.org/pub/$_pkgname/$_pkgname-$pkgver.zip
+# Upstream gone: http://rxtx.qbang.org/pub/$_pkgname/$_pkgname-$pkgver.zip
+source=(http://pkgbuild.com/~bgyorgy/sources/$_pkgname-$pkgver.zip
 utsrelease.patch
 rxtx-2.2-lock.patch
 rxtx-2.2-fhs_lock.patch

Modified: trunk/PKGBUILD
===
--- trunk/PKGBUILD  2014-05-11 14:27:16 UTC (rev 110972)
+++ trunk/PKGBUILD  2014-05-11 14:44:29 UTC (rev 110973)
@@ -15,7 +15,8 @@
 provides=($_pkgname=$pkgver)
 replaces=($_pkgname)
 install=$_pkgname.install
-source=(http://rxtx.qbang.org/pub/$_pkgname/$_pkgname-$pkgver.zip
+# Upstream gone: http://rxtx.qbang.org/pub/$_pkgname/$_pkgname-$pkgver.zip
+source=(http://pkgbuild.com/~bgyorgy/sources/$_pkgname-$pkgver.zip
 utsrelease.patch
 rxtx-2.2-lock.patch
 rxtx-2.2-fhs_lock.patch



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

2014-05-11 Thread Ike Devolder
Date: Sunday, May 11, 2014 @ 16:59:58
  Author: idevolder
Revision: 110974

xbmc :: 13.0-3

cleaned up dependencies

FIXES:
FS#40257 - [xbmc] java is not a runtime dependency
FS#40264 - [xbmc] polkit rules should be in /usr/share/polkit-1/rules.d/
FS#40265 - [xbmc] Internet Streams bring xbmc to crash

Added:
  xbmc/trunk/0001-rtmp-check-m_rtmp-for-non-NULL-fixes-crashes-with-mi.patch
Modified:
  xbmc/trunk/PKGBUILD

-+
 0001-rtmp-check-m_rtmp-for-non-NULL-fixes-crashes-with-mi.patch |   75 +++
 PKGBUILD|  102 
+-
 2 files changed, 136 insertions(+), 41 deletions(-)

Added: 0001-rtmp-check-m_rtmp-for-non-NULL-fixes-crashes-with-mi.patch
===
--- 0001-rtmp-check-m_rtmp-for-non-NULL-fixes-crashes-with-mi.patch 
(rev 0)
+++ 0001-rtmp-check-m_rtmp-for-non-NULL-fixes-crashes-with-mi.patch 
2014-05-11 14:59:58 UTC (rev 110974)
@@ -0,0 +1,75 @@
+From a58bcbb0a35ac8e26a880be477705d80ecc5 Mon Sep 17 00:00:00 2001
+From: Jonathan Marshall jmarsh...@xbmc.org
+Date: Tue, 6 May 2014 19:40:17 +1200
+Subject: [PATCH 1/7] [rtmp] check m_rtmp for non-NULL - fixes crashes with
+ missing librtmp
+
+---
+ .../dvdplayer/DVDInputStreams/DVDInputStreamRTMP.cpp | 16 +++-
+ 1 file changed, 11 insertions(+), 5 deletions(-)
+
+diff --git a/xbmc/cores/dvdplayer/DVDInputStreams/DVDInputStreamRTMP.cpp 
b/xbmc/cores/dvdplayer/DVDInputStreams/DVDInputStreamRTMP.cpp
+index b02792a..93fc6f0 100644
+--- a/xbmc/cores/dvdplayer/DVDInputStreams/DVDInputStreamRTMP.cpp
 b/xbmc/cores/dvdplayer/DVDInputStreams/DVDInputStreamRTMP.cpp
+@@ -104,7 +104,8 @@ CDVDInputStreamRTMP::~CDVDInputStreamRTMP()
+   m_sStreamPlaying = NULL;
+ 
+   Close();
+-  m_libRTMP.Free(m_rtmp);
++  if (m_rtmp)
++m_libRTMP.Free(m_rtmp);
+   m_rtmp = NULL;
+   m_bPaused = false;
+ }
+@@ -139,7 +140,7 @@ bool CDVDInputStreamRTMP::Open(const char* strFile, const 
std::string content)
+ m_sStreamPlaying = NULL;
+   }
+ 
+-  if (!CDVDInputStream::Open(strFile, video/x-flv))
++  if (!m_rtmp || !CDVDInputStream::Open(strFile, video/x-flv))
+ return false;
+ 
+   CSingleLock lock(m_RTMPSection);
+@@ -181,7 +182,8 @@ void CDVDInputStreamRTMP::Close()
+   CSingleLock lock(m_RTMPSection);
+   CDVDInputStream::Close();
+ 
+-  m_libRTMP.Close(m_rtmp);
++  if (m_rtmp)
++m_libRTMP.Close(m_rtmp);
+ 
+   m_optionvalues.clear();
+   m_eof = true;
+@@ -190,6 +192,9 @@ void CDVDInputStreamRTMP::Close()
+ 
+ int CDVDInputStreamRTMP::Read(uint8_t* buf, int buf_size)
+ {
++  if (!m_rtmp)
++return -1;
++
+   int i = m_libRTMP.Read(m_rtmp, (char *)buf, buf_size);
+   if (i  0)
+ m_eof = true;
+@@ -210,7 +215,7 @@ bool CDVDInputStreamRTMP::SeekTime(int iTimeInMsec)
+   CLog::Log(LOGNOTICE, RTMP Seek to %i requested, iTimeInMsec);
+   CSingleLock lock(m_RTMPSection);
+ 
+-  if (m_libRTMP.SendSeek(m_rtmp, iTimeInMsec))
++  if (m_rtmp  m_libRTMP.SendSeek(m_rtmp, iTimeInMsec))
+ return true;
+ 
+   return false;
+@@ -229,7 +234,8 @@ bool CDVDInputStreamRTMP::Pause(double dTime)
+ 
+   CLog::Log(LOGNOTICE, RTMP Pause %s requested, m_bPaused ? TRUE : 
FALSE);
+ 
+-  m_libRTMP.Pause(m_rtmp, m_bPaused);
++  if (m_rtmp)
++m_libRTMP.Pause(m_rtmp, m_bPaused);
+ 
+   return true;
+ }
+-- 
+1.9.1
+

Modified: PKGBUILD
===
--- PKGBUILD2014-05-11 14:44:29 UTC (rev 110973)
+++ PKGBUILD2014-05-11 14:59:58 UTC (rev 110974)
@@ -4,52 +4,66 @@
 # Contributor: [vEX] niechift.dot.vex.at.gmail.dot.com
 # Contributor: Zeqadious zeqadious.at.gmail.dot.com
 # Contributor: BlackIkeEagle  ike DOT devolder AT gmail DOT com 
+# Contributor: Bartłomiej Piotrowski bpiotrow...@archlinux.org
 
 _prefix=/usr
 
 pkgname=xbmc
 pkgver=13.0
-_codename=Gotham
-pkgrel=2
+_codename=Gotham_r2
+pkgrel=3
 pkgdesc=A software media player and entertainment hub for digital media
 arch=('i686' 'x86_64')
 url=http://xbmc.org;
 license=('GPL' 'custom')
-depends=('hicolor-icon-theme' 'fribidi' 'lzo2' 'smbclient' 'libtiff' 'libva'
- 'libpng' 'libcdio' 'yajl' 'libmysqlclient' 'libjpeg-turbo' 
'libsamplerate'
- 'glew' 'libssh' 'libmicrohttpd' 'libxrandr' 'sdl_mixer' 'sdl_image'
- 'python2' 'libass' 'libmpeg2' 'libmad' 'libmodplug' 'jasper' 
'rtmpdump'
- 'unzip' 'mesa-demos' 'xorg-xdpyinfo' 'libbluray' 'libnfs' 'afpfs-ng'
- 'avahi' 'bluez-libs' 'tinyxml' 'libcap' 'swig' 'taglib' 'libpulse'
- 'java-runtime-headless' 'glu' 'mesa' 'shairplay' 'libxslt' 'ffmpeg')
-makedepends=('boost' 'cmake' 'gperf' 'nasm' 'libxinerama' 'zip' 'libvdpau' 
'libcec'
-  'udisks' 'upower' 'mesa' 'doxygen' 'swig' 'java-environment')
-optdepends=('libcec: support for Pulse-Eight USB-CEC adapter'
-  'lirc: remote controller support'
-  'udisks: automount external drives'

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

2014-05-11 Thread Ike Devolder
Date: Sunday, May 11, 2014 @ 17:00:28
  Author: idevolder
Revision: 110975

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

Added:
  xbmc/repos/community-testing-i686/
  
xbmc/repos/community-testing-i686/0001-rtmp-check-m_rtmp-for-non-NULL-fixes-crashes-with-mi.patch
(from rev 110974, 
xbmc/trunk/0001-rtmp-check-m_rtmp-for-non-NULL-fixes-crashes-with-mi.patch)
  xbmc/repos/community-testing-i686/PKGBUILD
(from rev 110974, xbmc/trunk/PKGBUILD)
  xbmc/repos/community-testing-i686/enable-external-ffmpeg.patch
(from rev 110974, xbmc/trunk/enable-external-ffmpeg.patch)
  xbmc/repos/community-testing-i686/polkit.rules
(from rev 110974, xbmc/trunk/polkit.rules)
  xbmc/repos/community-testing-i686/xbmc.install
(from rev 110974, xbmc/trunk/xbmc.install)
  xbmc/repos/community-testing-i686/xbmc.service
(from rev 110974, xbmc/trunk/xbmc.service)
  xbmc/repos/community-testing-x86_64/
  
xbmc/repos/community-testing-x86_64/0001-rtmp-check-m_rtmp-for-non-NULL-fixes-crashes-with-mi.patch
(from rev 110974, 
xbmc/trunk/0001-rtmp-check-m_rtmp-for-non-NULL-fixes-crashes-with-mi.patch)
  xbmc/repos/community-testing-x86_64/PKGBUILD
(from rev 110974, xbmc/trunk/PKGBUILD)
  xbmc/repos/community-testing-x86_64/enable-external-ffmpeg.patch
(from rev 110974, xbmc/trunk/enable-external-ffmpeg.patch)
  xbmc/repos/community-testing-x86_64/polkit.rules
(from rev 110974, xbmc/trunk/polkit.rules)
  xbmc/repos/community-testing-x86_64/xbmc.install
(from rev 110974, xbmc/trunk/xbmc.install)
  xbmc/repos/community-testing-x86_64/xbmc.service
(from rev 110974, xbmc/trunk/xbmc.service)

--+
 
community-testing-i686/0001-rtmp-check-m_rtmp-for-non-NULL-fixes-crashes-with-mi.patch
   |   75 +
 community-testing-i686/PKGBUILD
  |  141 ++
 community-testing-i686/enable-external-ffmpeg.patch
  |  100 +++
 community-testing-i686/polkit.rules
  |   12 
 community-testing-i686/xbmc.install
  |   19 +
 community-testing-i686/xbmc.service
  |   16 +
 
community-testing-x86_64/0001-rtmp-check-m_rtmp-for-non-NULL-fixes-crashes-with-mi.patch
 |   75 +
 community-testing-x86_64/PKGBUILD  
  |  141 ++
 community-testing-x86_64/enable-external-ffmpeg.patch  
  |  100 +++
 community-testing-x86_64/polkit.rules  
  |   12 
 community-testing-x86_64/xbmc.install  
  |   19 +
 community-testing-x86_64/xbmc.service  
  |   16 +
 12 files changed, 726 insertions(+)

Copied: 
xbmc/repos/community-testing-i686/0001-rtmp-check-m_rtmp-for-non-NULL-fixes-crashes-with-mi.patch
 (from rev 110974, 
xbmc/trunk/0001-rtmp-check-m_rtmp-for-non-NULL-fixes-crashes-with-mi.patch)
===
--- 
community-testing-i686/0001-rtmp-check-m_rtmp-for-non-NULL-fixes-crashes-with-mi.patch
  (rev 0)
+++ 
community-testing-i686/0001-rtmp-check-m_rtmp-for-non-NULL-fixes-crashes-with-mi.patch
  2014-05-11 15:00:28 UTC (rev 110975)
@@ -0,0 +1,75 @@
+From a58bcbb0a35ac8e26a880be477705d80ecc5 Mon Sep 17 00:00:00 2001
+From: Jonathan Marshall jmarsh...@xbmc.org
+Date: Tue, 6 May 2014 19:40:17 +1200
+Subject: [PATCH 1/7] [rtmp] check m_rtmp for non-NULL - fixes crashes with
+ missing librtmp
+
+---
+ .../dvdplayer/DVDInputStreams/DVDInputStreamRTMP.cpp | 16 +++-
+ 1 file changed, 11 insertions(+), 5 deletions(-)
+
+diff --git a/xbmc/cores/dvdplayer/DVDInputStreams/DVDInputStreamRTMP.cpp 
b/xbmc/cores/dvdplayer/DVDInputStreams/DVDInputStreamRTMP.cpp
+index b02792a..93fc6f0 100644
+--- a/xbmc/cores/dvdplayer/DVDInputStreams/DVDInputStreamRTMP.cpp
 b/xbmc/cores/dvdplayer/DVDInputStreams/DVDInputStreamRTMP.cpp
+@@ -104,7 +104,8 @@ CDVDInputStreamRTMP::~CDVDInputStreamRTMP()
+   m_sStreamPlaying = NULL;
+ 
+   Close();
+-  m_libRTMP.Free(m_rtmp);
++  if (m_rtmp)
++m_libRTMP.Free(m_rtmp);
+   m_rtmp = NULL;
+   m_bPaused = false;
+ }
+@@ -139,7 +140,7 @@ bool CDVDInputStreamRTMP::Open(const char* strFile, const 
std::string content)
+ m_sStreamPlaying = NULL;
+   }
+ 
+-  if (!CDVDInputStream::Open(strFile, video/x-flv))
++  if (!m_rtmp || !CDVDInputStream::Open(strFile, video/x-flv))
+ return false;
+ 
+   CSingleLock lock(m_RTMPSection);
+@@ -181,7 +182,8 @@ void CDVDInputStreamRTMP::Close()
+   CSingleLock lock(m_RTMPSection);
+   CDVDInputStream::Close();
+ 
+-  m_libRTMP.Close(m_rtmp);
++  if (m_rtmp)
++

[arch-commits] Commit in (gnome-media libgnome-media-profiles)

2014-05-11 Thread Balló György
Date: Sunday, May 11, 2014 @ 18:30:53
  Author: bgyorgy
Revision: 110976

Drop libgnome-media-profiles and gnome-media into AUR

Replaced by the new gnome-sound-recorder package. The old one is 
available as gnome-sound-recorder3.4, whereas gstreamer-properties 
available as an individual package.

Deleted:
  gnome-media/
  libgnome-media-profiles/



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

2014-05-11 Thread Balló György
Date: Sunday, May 11, 2014 @ 19:05:24
  Author: bgyorgy
Revision: 110977

upgpkg: cinnamon 2.2.8-1

Update to version 2.2.8

Modified:
  cinnamon/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-11 16:30:53 UTC (rev 110976)
+++ PKGBUILD2014-05-11 17:05:24 UTC (rev 110977)
@@ -5,7 +5,7 @@
 # Contributor: CReimer
 
 pkgname=cinnamon
-pkgver=2.2.5
+pkgver=2.2.8
 pkgrel=1
 pkgdesc=Linux desktop which provides advanced innovative features and a 
traditional user experience
 arch=('i686' 'x86_64')
@@ -24,7 +24,7 @@
 
source=($pkgname-$pkgver.tar.gz::https://github.com/linuxmint/Cinnamon/archive/$pkgver.tar.gz;
 upower_calender_fix.patch
 set_wheel.patch)
-sha256sums=('5e5fbfcd942316b83f3c1dc4d3cd7dd73fa9bed7c4af48fee0ae04a878e46d72'
+sha256sums=('d145d9c8087668006da5177fbae99c06958a5b8d1ad32381720fa6d20579023b'
 'babfe88a3773f5369b05c7b61d0318cf969b482b9e0c3f281afaf488b0051e53'
 'd5d5634b24e56837cb677e62669450c25f79005ed1388584760a131f461180ec')
 
@@ -50,6 +50,9 @@
   # Fix for the python2 PAM module  
   sed -i 's:import PAM:import pam:' 
files/usr/lib/cinnamon-settings/modules/cs_user.py
 
+  # Use pkexec instead of gksu
+  sed -i 's/gksu/pkexec/' files/usr/bin/cinnamon-settings-users
+
   # Check for the cc-panel path, not for the unneeded binary
   sed -i 
's|/usr/bin/cinnamon-control-center|/usr/lib/cinnamon-control-center-1/panels|' 
files/usr/bin/cinnamon-settings
 



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

2014-05-11 Thread Balló György
Date: Sunday, May 11, 2014 @ 19:05:35
  Author: bgyorgy
Revision: 110978

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

Added:
  cinnamon/repos/community-i686/PKGBUILD
(from rev 110977, cinnamon/trunk/PKGBUILD)
  cinnamon/repos/community-i686/cinnamon.install
(from rev 110977, cinnamon/trunk/cinnamon.install)
  cinnamon/repos/community-i686/set_wheel.patch
(from rev 110977, cinnamon/trunk/set_wheel.patch)
  cinnamon/repos/community-i686/upower_calender_fix.patch
(from rev 110977, cinnamon/trunk/upower_calender_fix.patch)
  cinnamon/repos/community-x86_64/PKGBUILD
(from rev 110977, cinnamon/trunk/PKGBUILD)
  cinnamon/repos/community-x86_64/cinnamon.install
(from rev 110977, cinnamon/trunk/cinnamon.install)
  cinnamon/repos/community-x86_64/set_wheel.patch
(from rev 110977, cinnamon/trunk/set_wheel.patch)
  cinnamon/repos/community-x86_64/upower_calender_fix.patch
(from rev 110977, cinnamon/trunk/upower_calender_fix.patch)
Deleted:
  cinnamon/repos/community-i686/PKGBUILD
  cinnamon/repos/community-i686/cinnamon.install
  cinnamon/repos/community-i686/set_wheel.patch
  cinnamon/repos/community-i686/upower_calender_fix.patch
  cinnamon/repos/community-x86_64/PKGBUILD
  cinnamon/repos/community-x86_64/cinnamon.install
  cinnamon/repos/community-x86_64/set_wheel.patch
  cinnamon/repos/community-x86_64/upower_calender_fix.patch

+
 /PKGBUILD  |  162 +++
 /cinnamon.install  |   24 
 /set_wheel.patch   |   28 
 /upower_calender_fix.patch |   44 +++
 community-i686/PKGBUILD|   78 -
 community-i686/cinnamon.install|   12 --
 community-i686/set_wheel.patch |   14 --
 community-i686/upower_calender_fix.patch   |   22 ---
 community-x86_64/PKGBUILD  |   78 -
 community-x86_64/cinnamon.install  |   12 --
 community-x86_64/set_wheel.patch   |   14 --
 community-x86_64/upower_calender_fix.patch |   22 ---
 12 files changed, 258 insertions(+), 252 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-05-11 17:05:24 UTC (rev 110977)
+++ community-i686/PKGBUILD 2014-05-11 17:05:35 UTC (rev 110978)
@@ -1,78 +0,0 @@
-# $Id$
-# Maintainer: Alexandre Filgueira alexfilgue...@cinnarch.com
-# Contributor: M0Rf30
-# Contributor: unifiedlinux
-# Contributor: CReimer
-
-pkgname=cinnamon
-pkgver=2.2.5
-pkgrel=1
-pkgdesc=Linux desktop which provides advanced innovative features and a 
traditional user experience
-arch=('i686' 'x86_64')
-url=http://cinnamon.linuxmint.com/;
-license=('GPL2')
-depends=('accountsservice' 'caribou' 'cinnamon-settings-daemon' 
'cinnamon-session'
- 'cinnamon-translations' 'cjs' 'clutter-gtk' 'gconf' 'gnome-icon-theme'
- 'gnome-themes-standard' 'gstreamer' 'libgnome-keyring'
- 'librsvg' 'networkmanager' 'muffin' 'python2-dbus' 'python2-pillow'
- 'python2-pam' 'python2-pexpect' 'python2-pyinotify' 'python2-lxml' 
'webkitgtk'
- 'cinnamon-control-center' 'cinnamon-screensaver' 'cinnamon-menus' 
'libgnomekbd'
- 'network-manager-applet' 'nemo' 'polkit-gnome')
-makedepends=('gnome-common' 'intltool')
-options=('!emptydirs')
-install=${pkgname}.install
-source=($pkgname-$pkgver.tar.gz::https://github.com/linuxmint/Cinnamon/archive/$pkgver.tar.gz;
-upower_calender_fix.patch
-set_wheel.patch)
-sha256sums=('5e5fbfcd942316b83f3c1dc4d3cd7dd73fa9bed7c4af48fee0ae04a878e46d72'
-'babfe88a3773f5369b05c7b61d0318cf969b482b9e0c3f281afaf488b0051e53'
-'d5d5634b24e56837cb677e62669450c25f79005ed1388584760a131f461180ec')
-
-prepare() {
-  cd ${srcdir}/Cinnamon*
-
-  # Python2 fix
-  sed -i 's:/usr/bin/python :/usr/bin/python2 :' 
files/usr/bin/cinnamon-menu-editor
-  find -type f | xargs sed -i 's@^#!.*python$@#!/usr/bin/python2@'
-
-  # Fix calendar applet with upower 0.99
-  patch -Np1 -i ../upower_calender_fix.patch
-
-  # Use wheel group instread of sudo
-  patch -Np1 -i ../set_wheel.patch
-
-  # Use cinnamon-menus instead of gnome-menus in cinnamon-desktop-editor
-  sed -i 's/GMenu/CMenu/g' 
files/usr/lib/cinnamon-desktop-editor/cinnamon-desktop-editor.py
-
-  # Add polkit agent to required components
-  sed -i 
's/RequiredComponents=\(.*\)$/RequiredComponents=\1polkit-gnome-authentication-agent-1;/'
 files/usr/share/cinnamon-session/sessions/cinnamon*.session
-
-  # Fix for the python2 PAM module  
-  sed -i 's:import PAM:import pam:' 
files/usr/lib/cinnamon-settings/modules/cs_user.py
-
-  # Check for the cc-panel path, not for the unneeded binary
-  sed -i 
's|/usr/bin/cinnamon-control-center|/usr/lib/cinnamon-control-center-1/panels|' 
files/usr/bin/cinnamon-settings
-
-  # Cinnamon has no upstream backgrounds, use 

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

2014-05-11 Thread Balló György
Date: Sunday, May 11, 2014 @ 19:08:39
  Author: bgyorgy
Revision: 110979

Remove obsoleted sed line

Modified:
  cinnamon/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-11 17:05:35 UTC (rev 110978)
+++ PKGBUILD2014-05-11 17:08:39 UTC (rev 110979)
@@ -41,9 +41,6 @@
   # Use wheel group instread of sudo
   patch -Np1 -i ../set_wheel.patch
 
-  # Use cinnamon-menus instead of gnome-menus in cinnamon-desktop-editor
-  sed -i 's/GMenu/CMenu/g' 
files/usr/lib/cinnamon-desktop-editor/cinnamon-desktop-editor.py
-
   # Add polkit agent to required components
   sed -i 
's/RequiredComponents=\(.*\)$/RequiredComponents=\1polkit-gnome-authentication-agent-1;/'
 files/usr/share/cinnamon-session/sessions/cinnamon*.session
 



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

2014-05-11 Thread Guillaume Alaux
Date: Sunday, May 11, 2014 @ 20:46:56
  Author: guillaume
Revision: 212284

Cosmetic rearrange of PKGBUILD

Modified:
  java7-openjdk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-11 13:43:50 UTC (rev 212283)
+++ PKGBUILD2014-05-11 18:46:56 UTC (rev 212284)
@@ -166,8 +166,11 @@
   install -d -m755 ${pkgdir}${_jvmdir}/jre
   cp -a bin lib ${pkgdir}${_jvmdir}/jre
 
+  # Set config files
   mv 
${pkgdir}${_jvmdir}/jre/lib/fontconfig.{Ubuntu.properties.src,properties}
   mv ${pkgdir}${_jvmdir}/jre/lib/fontconfig.{Ubuntu.bfc,bfc}
+  mv ${pkgdir}${_jvmdir}/jre/lib/management/jmxremote.password{.template,}
+  mv ${pkgdir}${_jvmdir}/jre/lib/management/snmp.acl{.template,}
   rm -f ${pkgdir}${_jvmdir}/jre/lib/fontconfig.*.bfc
   rm -f ${pkgdir}${_jvmdir}/jre/lib/fontconfig.*.properties.src
   rm -f ${pkgdir}${_jvmdir}/jre/lib/fontconfig.properties.src
@@ -209,14 +212,8 @@
   install -m755 -d ${pkgdir}/usr/share/licenses/${pkgbase}/
   install -m644 ASSEMBLY_EXCEPTION LICENSE THIRD_PARTY_README \
  ${pkgdir}/usr/share/licenses/${pkgbase}
-
-  # link license
   ln -sf /usr/share/licenses/${pkgbase} 
${pkgdir}/usr/share/licenses/${pkgname}
 
-  # Copy these template so that they can be used in _backup_etc
-  ln -fs lib/management/jmxremote.password.template 
lib/management/jmxremote.password
-  ln -fs lib/management/snmp.acl.template lib/management/snmp.acl
-
   # Move config files that were set in _backup_etc from ./lib to /etc
   for file in ${_backup_etc[@]}; do
 _filepkgpath=${_jvmdir}/jre/lib/${file#etc/java-7-openjdk/}
@@ -234,9 +231,9 @@
  'libpulse: for advanced sound support'
  'gtk2: for the Gtk+ look and feel - desktop usage'
  'libxtst: linked in xawt/libmawt.so - desktop usage')
-  install=jre7-openjdk.install
   provides=('java-runtime=7')
   conflicts=('openjdk6')
+  install=jre7-openjdk.install
 
   cd ${srcdir}/${_imgdir}/jre
 



[arch-commits] Commit in (13 files)

2014-05-11 Thread Balló György
Date: Sunday, May 11, 2014 @ 20:49:23
  Author: bgyorgy
Revision: 110980

Add new dependencies of sparkleshare

- gtk-sharp-3
- notify-sharp-3
- soup-sharp
- webkitgtk-sharp

Added:
  gtk-sharp-3/
  gtk-sharp-3/trunk/
  gtk-sharp-3/trunk/PKGBUILD
  notify-sharp-3/
  notify-sharp-3/trunk/
  notify-sharp-3/trunk/PKGBUILD
  notify-sharp-3/trunk/avoid-confilct.patch
  soup-sharp/
  soup-sharp/trunk/
  soup-sharp/trunk/PKGBUILD
  webkitgtk-sharp/
  webkitgtk-sharp/trunk/
  webkitgtk-sharp/trunk/PKGBUILD

---+
 gtk-sharp-3/trunk/PKGBUILD|   25 +++
 notify-sharp-3/trunk/PKGBUILD |   38 
 notify-sharp-3/trunk/avoid-confilct.patch |   44 
 soup-sharp/trunk/PKGBUILD |   24 +++
 webkitgtk-sharp/trunk/PKGBUILD|   25 +++
 5 files changed, 156 insertions(+)

Added: gtk-sharp-3/trunk/PKGBUILD
===
--- gtk-sharp-3/trunk/PKGBUILD  (rev 0)
+++ gtk-sharp-3/trunk/PKGBUILD  2014-05-11 18:49:23 UTC (rev 110980)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Balló György ballogyor+arch at gmail dot com
+
+pkgname=gtk-sharp-3
+_pkgname=gtk-sharp
+pkgver=2.99.2
+pkgrel=2
+pkgdesc=C# bindings for GTK+ 3
+arch=('i686' 'x86_64')
+url=http://mono-project.com/GtkSharp;
+license=('LGPL')
+depends=('mono' 'gtk3')
+source=(http://ftp.gnome.org/pub/GNOME/sources/$_pkgname/${pkgver%.*}/$_pkgname-$pkgver.tar.xz)
+sha256sums=('0dbb205e827586520a803ec1907d94e51b8c6d4e2bb42bc71c1ac1b769fa9198')
+
+build() {
+  cd $srcdir/$_pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $srcdir/$_pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}


Property changes on: gtk-sharp-3/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: notify-sharp-3/trunk/PKGBUILD
===
--- notify-sharp-3/trunk/PKGBUILD   (rev 0)
+++ notify-sharp-3/trunk/PKGBUILD   2014-05-11 18:49:23 UTC (rev 110980)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Balló György ballogyor+arch at gmail dot com
+# Contributor: Allan McRae al...@archlinux.org
+# Contributor: Jorge Mokross mokr...@gmail.com
+
+pkgname=notify-sharp-3
+_pkgname=notify-sharp
+pkgver=3.0.0
+pkgrel=1
+pkgdesc=C# D-Bus client library for desktop notifications (GTK+ 3 version)
+arch=('any')
+url=https://www.meebey.net/projects/notify-sharp/;
+license=('MIT')
+depends=('gtk-sharp-3' 'dbus-sharp-glib') 
+source=(https://www.meebey.net/projects/$_pkgname/downloads/$_pkgname-$pkgver.tar.gz
+avoid-confilct.patch)
+sha256sums=('5fb25f6ce9a3c27f0a6b927ee0a4ef6d02f6e6a2b8037d4dd525977840bd9345'
+'35ddc863f8999850d7444693a33c439b646cd5728a723a12eecdc8cc47808779')
+
+prepare() {
+  cd $srcdir/$_pkgname-$pkgver
+
+  # Avoid conflict with notify-sharp 2
+  patch -Np1 -i ../avoid-confilct.patch
+}
+
+build() {
+  cd $srcdir/$_pkgname-$pkgver
+  autoreconf -fi
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $srcdir/$_pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+}


Property changes on: notify-sharp-3/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: notify-sharp-3/trunk/avoid-confilct.patch
===
--- notify-sharp-3/trunk/avoid-confilct.patch   (rev 0)
+++ notify-sharp-3/trunk/avoid-confilct.patch   2014-05-11 18:49:23 UTC (rev 
110980)
@@ -0,0 +1,44 @@
+diff -Naur notify-sharp-3.0.0.orig/configure.ac notify-sharp-3.0.0/configure.ac
+--- notify-sharp-3.0.0.orig/configure.ac   2013-11-03 15:59:42.0 
+0100
 notify-sharp-3.0.0/configure.ac2014-04-08 11:20:22.477915534 +0200
+@@ -9,6 +9,9 @@
+ AC_SUBST(API_VERSION)
+ AC_SUBST(VERSION)
+ 
++PACKAGE_VERSION=notify-sharp-3.0
++AC_SUBST(PACKAGE_VERSION)
++
+ AM_INIT_AUTOMAKE(notify-sharp, $VERSION)
+ 
+ AM_MAINTAINER_MODE
+diff -Naur notify-sharp-3.0.0.orig/notify-sharp-3.0.pc.in 
notify-sharp-3.0.0/notify-sharp-3.0.pc.in
+--- notify-sharp-3.0.0.orig/notify-sharp-3.0.pc.in 2013-11-03 
15:57:49.0 +0100
 notify-sharp-3.0.0/notify-sharp-3.0.pc.in  2014-04-08 11:20:39.985024993 
+0200
+@@ -1,7 +1,7 @@
+ prefix=@prefix@
+ exec_prefix=${prefix}
+ libdir=${exec_prefix}/lib
+-pkglibdir=${libdir}/mono/notify-sharp
++pkglibdir=${libdir}/mono/@PACKAGE_VERSION@
+ 
+ Name: notify-sharp
+ Description: C# client library for notification-daemon
+diff -Naur notify-sharp-3.0.0.orig/src/Makefile.am 
notify-sharp-3.0.0/src/Makefile.am
+--- notify-sharp-3.0.0.orig/src/Makefile.am2013-01-31 

[arch-commits] Commit in gtk-sharp-3 (5 files)

2014-05-11 Thread Balló György
Date: Sunday, May 11, 2014 @ 20:52:35
  Author: bgyorgy
Revision: 110981

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

Added:
  gtk-sharp-3/repos/
  gtk-sharp-3/repos/community-i686/
  gtk-sharp-3/repos/community-i686/PKGBUILD
(from rev 110980, gtk-sharp-3/trunk/PKGBUILD)
  gtk-sharp-3/repos/community-x86_64/
  gtk-sharp-3/repos/community-x86_64/PKGBUILD
(from rev 110980, gtk-sharp-3/trunk/PKGBUILD)

---+
 community-i686/PKGBUILD   |   25 +
 community-x86_64/PKGBUILD |   25 +
 2 files changed, 50 insertions(+)

Copied: gtk-sharp-3/repos/community-i686/PKGBUILD (from rev 110980, 
gtk-sharp-3/trunk/PKGBUILD)
===
--- repos/community-i686/PKGBUILD   (rev 0)
+++ repos/community-i686/PKGBUILD   2014-05-11 18:52:35 UTC (rev 110981)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Balló György ballogyor+arch at gmail dot com
+
+pkgname=gtk-sharp-3
+_pkgname=gtk-sharp
+pkgver=2.99.2
+pkgrel=2
+pkgdesc=C# bindings for GTK+ 3
+arch=('i686' 'x86_64')
+url=http://mono-project.com/GtkSharp;
+license=('LGPL')
+depends=('mono' 'gtk3')
+source=(http://ftp.gnome.org/pub/GNOME/sources/$_pkgname/${pkgver%.*}/$_pkgname-$pkgver.tar.xz)
+sha256sums=('0dbb205e827586520a803ec1907d94e51b8c6d4e2bb42bc71c1ac1b769fa9198')
+
+build() {
+  cd $srcdir/$_pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $srcdir/$_pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Copied: gtk-sharp-3/repos/community-x86_64/PKGBUILD (from rev 110980, 
gtk-sharp-3/trunk/PKGBUILD)
===
--- repos/community-x86_64/PKGBUILD (rev 0)
+++ repos/community-x86_64/PKGBUILD 2014-05-11 18:52:35 UTC (rev 110981)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Balló György ballogyor+arch at gmail dot com
+
+pkgname=gtk-sharp-3
+_pkgname=gtk-sharp
+pkgver=2.99.2
+pkgrel=2
+pkgdesc=C# bindings for GTK+ 3
+arch=('i686' 'x86_64')
+url=http://mono-project.com/GtkSharp;
+license=('LGPL')
+depends=('mono' 'gtk3')
+source=(http://ftp.gnome.org/pub/GNOME/sources/$_pkgname/${pkgver%.*}/$_pkgname-$pkgver.tar.xz)
+sha256sums=('0dbb205e827586520a803ec1907d94e51b8c6d4e2bb42bc71c1ac1b769fa9198')
+
+build() {
+  cd $srcdir/$_pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $srcdir/$_pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}



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

2014-05-11 Thread Guillaume Alaux
Date: Sunday, May 11, 2014 @ 20:54:44
  Author: guillaume
Revision: 212285

Move license handling for consistency with java8-openjdk

Modified:
  java7-openjdk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-11 18:46:56 UTC (rev 212284)
+++ PKGBUILD2014-05-11 18:54:44 UTC (rev 212285)
@@ -314,13 +314,13 @@
   done
   popd
 
+  # Handling 'java-rmi.cgi' separately
+  install -m755 -D bin/java-rmi.cgi ${pkgdir}${_jvmdir}/bin/java-rmi.cgi
+
   # Install desktop files.
   install -m755 -d ${pkgdir}/usr/share/applications
   install -m644 ${srcdir}/icedtea-${_icedtea_ver}/jconsole.desktop 
${pkgdir}/usr/share/applications
 
-  # Handling 'java-rmi.cgi' separately
-  install -m755 -D bin/java-rmi.cgi ${pkgdir}${_jvmdir}/bin/java-rmi.cgi
-
   # Set some variables
   install -m755 -d ${pkgdir}/etc/profile.d/
   install -m755 ${srcdir}/${pkgname}.profile ${pkgdir}/etc/profile.d/jdk.sh



[arch-commits] Commit in notify-sharp-3 (4 files)

2014-05-11 Thread Balló György
Date: Sunday, May 11, 2014 @ 20:55:42
  Author: bgyorgy
Revision: 110982

archrelease: copy trunk to community-any

Added:
  notify-sharp-3/repos/
  notify-sharp-3/repos/community-any/
  notify-sharp-3/repos/community-any/PKGBUILD
(from rev 110981, notify-sharp-3/trunk/PKGBUILD)
  notify-sharp-3/repos/community-any/avoid-confilct.patch
(from rev 110981, notify-sharp-3/trunk/avoid-confilct.patch)

--+
 PKGBUILD |   38 ++
 avoid-confilct.patch |   44 
 2 files changed, 82 insertions(+)

Copied: notify-sharp-3/repos/community-any/PKGBUILD (from rev 110981, 
notify-sharp-3/trunk/PKGBUILD)
===
--- repos/community-any/PKGBUILD(rev 0)
+++ repos/community-any/PKGBUILD2014-05-11 18:55:42 UTC (rev 110982)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Balló György ballogyor+arch at gmail dot com
+# Contributor: Allan McRae al...@archlinux.org
+# Contributor: Jorge Mokross mokr...@gmail.com
+
+pkgname=notify-sharp-3
+_pkgname=notify-sharp
+pkgver=3.0.0
+pkgrel=1
+pkgdesc=C# D-Bus client library for desktop notifications (GTK+ 3 version)
+arch=('any')
+url=https://www.meebey.net/projects/notify-sharp/;
+license=('MIT')
+depends=('gtk-sharp-3' 'dbus-sharp-glib') 
+source=(https://www.meebey.net/projects/$_pkgname/downloads/$_pkgname-$pkgver.tar.gz
+avoid-confilct.patch)
+sha256sums=('5fb25f6ce9a3c27f0a6b927ee0a4ef6d02f6e6a2b8037d4dd525977840bd9345'
+'35ddc863f8999850d7444693a33c439b646cd5728a723a12eecdc8cc47808779')
+
+prepare() {
+  cd $srcdir/$_pkgname-$pkgver
+
+  # Avoid conflict with notify-sharp 2
+  patch -Np1 -i ../avoid-confilct.patch
+}
+
+build() {
+  cd $srcdir/$_pkgname-$pkgver
+  autoreconf -fi
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $srcdir/$_pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+}

Copied: notify-sharp-3/repos/community-any/avoid-confilct.patch (from rev 
110981, notify-sharp-3/trunk/avoid-confilct.patch)
===
--- repos/community-any/avoid-confilct.patch(rev 0)
+++ repos/community-any/avoid-confilct.patch2014-05-11 18:55:42 UTC (rev 
110982)
@@ -0,0 +1,44 @@
+diff -Naur notify-sharp-3.0.0.orig/configure.ac notify-sharp-3.0.0/configure.ac
+--- notify-sharp-3.0.0.orig/configure.ac   2013-11-03 15:59:42.0 
+0100
 notify-sharp-3.0.0/configure.ac2014-04-08 11:20:22.477915534 +0200
+@@ -9,6 +9,9 @@
+ AC_SUBST(API_VERSION)
+ AC_SUBST(VERSION)
+ 
++PACKAGE_VERSION=notify-sharp-3.0
++AC_SUBST(PACKAGE_VERSION)
++
+ AM_INIT_AUTOMAKE(notify-sharp, $VERSION)
+ 
+ AM_MAINTAINER_MODE
+diff -Naur notify-sharp-3.0.0.orig/notify-sharp-3.0.pc.in 
notify-sharp-3.0.0/notify-sharp-3.0.pc.in
+--- notify-sharp-3.0.0.orig/notify-sharp-3.0.pc.in 2013-11-03 
15:57:49.0 +0100
 notify-sharp-3.0.0/notify-sharp-3.0.pc.in  2014-04-08 11:20:39.985024993 
+0200
+@@ -1,7 +1,7 @@
+ prefix=@prefix@
+ exec_prefix=${prefix}
+ libdir=${exec_prefix}/lib
+-pkglibdir=${libdir}/mono/notify-sharp
++pkglibdir=${libdir}/mono/@PACKAGE_VERSION@
+ 
+ Name: notify-sharp
+ Description: C# client library for notification-daemon
+diff -Naur notify-sharp-3.0.0.orig/src/Makefile.am 
notify-sharp-3.0.0/src/Makefile.am
+--- notify-sharp-3.0.0.orig/src/Makefile.am2013-01-31 06:10:36.0 
+0100
 notify-sharp-3.0.0/src/Makefile.am 2014-04-08 14:08:31.835246749 +0200
+@@ -21,13 +21,13 @@
+ install-data-local:
+   @if test -n '$(TARGET)'; then   \
+   echo $(GACUTIL) /i $(TARGET) /f /gacdir $(DESTDIR)$(libdir);\
+-  $(GACUTIL) /i $(TARGET) /package $(ASSEMBLY) /f /gacdir $(libdir) 
/root $(DESTDIR)$(libdir) || exit 1; \
++  $(GACUTIL) /i $(TARGET) /package $(PACKAGE_VERSION) /f /gacdir 
$(libdir) /root $(DESTDIR)$(libdir) || exit 1; \
+ fi
+ 
+ uninstall-local:
+   @if test -n '$(TARGET)'; then   \
+   echo $(GACUTIL) /u $(ASSEMBLY) /gacdir $(DESTDIR)$(libdir);  \
+-  $(GACUTIL) /u $(ASSEMBLY) /package $(ASSEMBLY) /gacdir $(libdir) 
/root $(DESTDIR)$(libdir) || exit 1;   \
++  $(GACUTIL) /u $(ASSEMBLY) /package $(PACKAGE_VERSION) /gacdir 
$(libdir) /root $(DESTDIR)$(libdir) || exit 1;   \
+ fi
+ 
+ EXTRA_DIST = \



[arch-commits] Commit in soup-sharp (5 files)

2014-05-11 Thread Balló György
Date: Sunday, May 11, 2014 @ 20:59:54
  Author: bgyorgy
Revision: 110983

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

Added:
  soup-sharp/repos/
  soup-sharp/repos/community-i686/
  soup-sharp/repos/community-i686/PKGBUILD
(from rev 110982, soup-sharp/trunk/PKGBUILD)
  soup-sharp/repos/community-x86_64/
  soup-sharp/repos/community-x86_64/PKGBUILD
(from rev 110982, soup-sharp/trunk/PKGBUILD)

---+
 community-i686/PKGBUILD   |   24 
 community-x86_64/PKGBUILD |   24 
 2 files changed, 48 insertions(+)

Copied: soup-sharp/repos/community-i686/PKGBUILD (from rev 110982, 
soup-sharp/trunk/PKGBUILD)
===
--- repos/community-i686/PKGBUILD   (rev 0)
+++ repos/community-i686/PKGBUILD   2014-05-11 18:59:54 UTC (rev 110983)
@@ -0,0 +1,24 @@
+# $Id$
+# Maintainer: Balló György ballogyor+arch at gmail dot com
+
+pkgname=soup-sharp
+pkgver=2.42.2
+pkgrel=1
+pkgdesc=C# bindings for libsoup
+arch=('i686' 'x86_64')
+url=https://github.com/xDarkice/soup-sharp;
+license=('LGPL')
+depends=('gtk-sharp-3' 'libsoup')
+source=(https://github.com/xDarkice/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.gz)
+sha256sums=('a318c69ecf8aa74ab25467e4337288d79b69abd6f68e6739d9f615148b9174f3')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Copied: soup-sharp/repos/community-x86_64/PKGBUILD (from rev 110982, 
soup-sharp/trunk/PKGBUILD)
===
--- repos/community-x86_64/PKGBUILD (rev 0)
+++ repos/community-x86_64/PKGBUILD 2014-05-11 18:59:54 UTC (rev 110983)
@@ -0,0 +1,24 @@
+# $Id$
+# Maintainer: Balló György ballogyor+arch at gmail dot com
+
+pkgname=soup-sharp
+pkgver=2.42.2
+pkgrel=1
+pkgdesc=C# bindings for libsoup
+arch=('i686' 'x86_64')
+url=https://github.com/xDarkice/soup-sharp;
+license=('LGPL')
+depends=('gtk-sharp-3' 'libsoup')
+source=(https://github.com/xDarkice/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.gz)
+sha256sums=('a318c69ecf8aa74ab25467e4337288d79b69abd6f68e6739d9f615148b9174f3')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}



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

2014-05-11 Thread Evgeniy Alekseev
Date: Sunday, May 11, 2014 @ 21:04:51
  Author: arcanis
Revision: 110984

upgpkg: sage-mathematics 6.2-1

Added:
  sage-mathematics/trunk/gf2x-sse2-i686.patch
Modified:
  sage-mathematics/trunk/PKGBUILD
  sage-mathematics/trunk/python-readline.patch

---+
 PKGBUILD  |   76 
 gf2x-sse2-i686.patch  |   10 ++
 python-readline.patch |7 +---
 3 files changed, 39 insertions(+), 54 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-05-11 18:59:54 UTC (rev 110983)
+++ PKGBUILD2014-05-11 19:04:51 UTC (rev 110984)
@@ -8,14 +8,14 @@
 # Special thanks to Nareto for moving the compile from the .install to the 
PKGBUILD
 
 pkgname=sage-mathematics
-pkgver=6.1.1
-pkgrel=2
+pkgver=6.2
+pkgrel=1
 pkgdesc=Open Source Mathematics Software, free alternative to Magma, Maple, 
Mathematica, and Matlab
 arch=('i686' 'x86_64')
 url=http://www.sagemath.org;
 license=('GPL')
 #depends=('desktop-file-utils' 'java-environment=7' 'libjpeg-turbo' 'libtiff' 
'libxmu' 'sqlite' 'xz')
-depends=('libatomic_ops')
+depends=('freetype2' 'libatomic_ops')
 makedepends=('desktop-file-utils' 'gcc-fortran' 'gendesk')
 optdepends=('imagemagick: some plotting functionality benefits from it'
 'texlive-core: some plotting functionality benefits from it, also 
to use SageTeX'
@@ -24,11 +24,13 @@
 'cairo: R plots')
 
source=(http://sage.math.washington.edu/home/release/sage-${pkgver}/sage-${pkgver}.tar;
 sage.service
+gf2x-sse2-i686.patch
 python-readline.patch)
 install=${pkgname}.install
-md5sums=('800c59f7cfa32c012f358ae240cdb2e6'
+md5sums=('71aa49875797c001ce0a31409f5a1762'
  '985da1c1d1dcdc3ea9aa73035cb7996b'
- 'dbfb66f38fb4d516d1078b73fd1d54a2')
+ 'f9d7aba4f758f4605164eb84b9e1e3ba'
+ '9b27884ba756eb7990728baedf162665')
 
 prepare() {
   # create *.desktop file
@@ -42,63 +44,39 @@
   --custom=X-DCOP-ServiceType=
 X-KDE-SubstituteUID=false
 X-KDE-Username=
-  
+
   # create DOT_SAGE directory
   if [[ -d ${srcdir}/build ]]; then
 rm -rf ${srcdir}/build
   fi
   mkdir ${srcdir}/build
-  
+
   # according to FS#34769
   sed -e 's/FREETYPE/#FREETYPE/' -i ${srcdir}/sage-${pkgver}/build/install
   # according to FS#39533
-  ## patching python
-  cd ${srcdir}/sage-${pkgver}/upstream
-  tar xjf python-2.7.5.tar.bz2
-  rm -rf python-2.7.5.tar.bz2
-  patch -p0 -i ${srcdir}/python-readline.patch
-  tar cjf python-2.7.5.tar.bz2 python-2.7.5
-  rm -rf python-2.7.5
-  ## fix checksums
-  SUMS=$(md5sum python-2.7.5.tar.bz2 | awk '{print $1}')
-  sed s/md5=[0-9a-f]\{32\}/md5=${SUMS}/ -i 
${srcdir}/sage-${pkgver}/build/pkgs/python/checksums.ini
-  SUMS=$(sha1sum python-2.7.5.tar.bz2 | awk '{print $1}')
-  sed s/sha1=[0-9a-f]\{40\}/sha1=${SUMS}/ -i 
${srcdir}/sage-${pkgver}/build/pkgs/python/checksums.ini
-  SUMS=$(cksum python-2.7.5.tar.bz2 | awk '{print $1}')
-  sed s/cksum=[0-9a-f]\{10\}/cksum=${SUMS}/ -i 
${srcdir}/sage-${pkgver}/build/pkgs/python/checksums.ini
-  ## disable readline build
+  cp ${srcdir}/python-readline.patch 
${srcdir}/sage-${pkgver}/build/pkgs/python/patches/readline.patch
   sed -e 's/READLINE/#READLINE/' -i ${srcdir}/sage-${pkgver}/build/install
+  # disable building gf2x with sse2 for i686
+  if [ ${CARCH} == i686 ]; then
+cp ${srcdir}/gf2x-sse2-i686.patch 
${srcdir}/sage-${pkgver}/build/pkgs/gf2x/patches/sse2-i686.patch
+  fi
 }
 
 build() {
   cd sage-${pkgver}
-  
-  # fix missing sage.all error during build
-  unset CFLAGS
-  unset CXXFLAGS
-  # fix build errors
-  unset LDFLAGS
-  
-  export MAKE=make -j$(nproc)
-  
-  # use archlinux's fortran rather then the one that ships with sage to 
compile sage's fortran
-  export FC=/usr/bin/gfortran
-  
-  # disable building with debugging support
+
+  ## flags
+  # do not build own gcc
+  export SAGE_INSTALL_GCC='no'
+  # disable debug
   export SAGE_DEBUG='no'
-  
-  # enable fat binaries (disables processor specific optimizations)
-  # comment out if you're only building it for yourself
+  # enable fat binaries
   export SAGE_FAT_BINARY='yes'
-  
   # can't write to root in a clean chroot
   export DOT_SAGE=${srcdir}/build
-  
   # singular is broken
   export CPP='/usr/bin/cpp'
-  
-  # only build sage, no documents
-  #make build
+
   make
 }
 
@@ -105,10 +83,8 @@
  COMMENT
 check() {
   cd sage-${pkgver}
-  
+
   make test
-  
-  # uncomment if we want to run all the tests (warning: very long)
   #make ptestlong
 }
 COMMENT
@@ -119,15 +95,15 @@
   rm -f *.log
   rm -rf ${srcdir}/sage-${pkgver}/{logs,upstream}
   # do NOT remove build directory!
-  
+
   # cp because make install is experimental and will corrupt the install
   install -dm755 ${pkgdir}/opt/sage
   cp -r * ${pkgdir}/opt/sage/
-  
+
   # move SageTeX files to more appropriate directory
   install -dm755 ${pkgdir}/usr/share
   mv ${pkgdir}/opt/sage/local/share/texmf 

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

2014-05-11 Thread Evgeniy Alekseev
Date: Sunday, May 11, 2014 @ 21:05:20
  Author: arcanis
Revision: 110985

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

Added:
  sage-mathematics/repos/community-staging-i686/
  sage-mathematics/repos/community-staging-x86_64/



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

2014-05-11 Thread Evgeniy Alekseev
Date: Sunday, May 11, 2014 @ 21:07:40
  Author: arcanis
Revision: 110986

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

Added:
  sage-mathematics/repos/community-staging-i686/PKGBUILD
(from rev 110985, sage-mathematics/trunk/PKGBUILD)
  sage-mathematics/repos/community-staging-i686/gf2x-sse2-i686.patch
(from rev 110985, sage-mathematics/trunk/gf2x-sse2-i686.patch)
  sage-mathematics/repos/community-staging-i686/python-readline.patch
(from rev 110985, sage-mathematics/trunk/python-readline.patch)
  sage-mathematics/repos/community-staging-i686/sage-mathematics.install
(from rev 110985, sage-mathematics/trunk/sage-mathematics.install)
  sage-mathematics/repos/community-staging-i686/sage.service
(from rev 110985, sage-mathematics/trunk/sage.service)
  sage-mathematics/repos/community-staging-x86_64/PKGBUILD
(from rev 110985, sage-mathematics/trunk/PKGBUILD)
  sage-mathematics/repos/community-staging-x86_64/gf2x-sse2-i686.patch
(from rev 110985, sage-mathematics/trunk/gf2x-sse2-i686.patch)
  sage-mathematics/repos/community-staging-x86_64/python-readline.patch
(from rev 110985, sage-mathematics/trunk/python-readline.patch)
  sage-mathematics/repos/community-staging-x86_64/sage-mathematics.install
(from rev 110985, sage-mathematics/trunk/sage-mathematics.install)
  sage-mathematics/repos/community-staging-x86_64/sage.service
(from rev 110985, sage-mathematics/trunk/sage.service)

---+
 community-staging-i686/PKGBUILD   |  126 
 community-staging-i686/gf2x-sse2-i686.patch   |   10 +
 community-staging-i686/python-readline.patch  |   27 
 community-staging-i686/sage-mathematics.install   |   56 
 community-staging-i686/sage.service   |8 +
 community-staging-x86_64/PKGBUILD |  126 
 community-staging-x86_64/gf2x-sse2-i686.patch |   10 +
 community-staging-x86_64/python-readline.patch|   27 
 community-staging-x86_64/sage-mathematics.install |   56 
 community-staging-x86_64/sage.service |8 +
 10 files changed, 454 insertions(+)

Copied: sage-mathematics/repos/community-staging-i686/PKGBUILD (from rev 
110985, sage-mathematics/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2014-05-11 19:07:40 UTC (rev 110986)
@@ -0,0 +1,126 @@
+# $Id$
+# Maintainer: Evgeniy Alekseev arcanis.arch at gmail dot com
+# Contributor: Daniel Wallace danielwallace at gtmanfred dot com
+# Contributor: Antonio Rojas nqn1976 at gmail dot com
+# Contributor: Thomas Dziedzic gostrc at gmail dot com
+# Contributor: Osman Ugus ugus11 at yahoo dot com
+# Contributor: Stefan Husmann stefan-husmann at t-online dot de
+# Special thanks to Nareto for moving the compile from the .install to the 
PKGBUILD
+
+pkgname=sage-mathematics
+pkgver=6.2
+pkgrel=1
+pkgdesc=Open Source Mathematics Software, free alternative to Magma, Maple, 
Mathematica, and Matlab
+arch=('i686' 'x86_64')
+url=http://www.sagemath.org;
+license=('GPL')
+#depends=('desktop-file-utils' 'java-environment=7' 'libjpeg-turbo' 'libtiff' 
'libxmu' 'sqlite' 'xz')
+depends=('freetype2' 'libatomic_ops')
+makedepends=('desktop-file-utils' 'gcc-fortran' 'gendesk')
+optdepends=('imagemagick: some plotting functionality benefits from it'
+'texlive-core: some plotting functionality benefits from it, also 
to use SageTeX'
+'openssh: to use the notebook in secure mode'
+'ffmpeg: to show animations'
+'cairo: R plots')
+source=(http://sage.math.washington.edu/home/release/sage-${pkgver}/sage-${pkgver}.tar;
+sage.service
+gf2x-sse2-i686.patch
+python-readline.patch)
+install=${pkgname}.install
+md5sums=('71aa49875797c001ce0a31409f5a1762'
+ '985da1c1d1dcdc3ea9aa73035cb7996b'
+ 'f9d7aba4f758f4605164eb84b9e1e3ba'
+ '9b27884ba756eb7990728baedf162665')
+
+prepare() {
+  # create *.desktop file
+  gendesk -f -n \
+  --pkgname=sage-notebook \
+  --pkgdesc=Sage notebook \
+  --name=Sage \
+  --exec=/opt/sage/sage -notebook \
+  --terminal=true \
+  --categories=Education;Science;Math \
+  --custom=X-DCOP-ServiceType=
+X-KDE-SubstituteUID=false
+X-KDE-Username=
+
+  # create DOT_SAGE directory
+  if [[ -d ${srcdir}/build ]]; then
+rm -rf ${srcdir}/build
+  fi
+  mkdir ${srcdir}/build
+
+  # according to FS#34769
+  sed -e 's/FREETYPE/#FREETYPE/' -i ${srcdir}/sage-${pkgver}/build/install
+  # according to FS#39533
+  cp ${srcdir}/python-readline.patch 
${srcdir}/sage-${pkgver}/build/pkgs/python/patches/readline.patch
+  sed -e 's/READLINE/#READLINE/' -i ${srcdir}/sage-${pkgver}/build/install
+  # disable building gf2x with sse2 for i686
+  if [ 

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

2014-05-11 Thread Balló György
Date: Sunday, May 11, 2014 @ 21:08:11
  Author: bgyorgy
Revision: 110987

initial release

Modified:
  webkitgtk-sharp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-11 19:07:40 UTC (rev 110986)
+++ PKGBUILD2014-05-11 19:08:11 UTC (rev 110987)
@@ -9,17 +9,17 @@
 url=https://github.com/xDarkice/webkitgtk-sharp;
 license=('LGPL')
 depends=('gtk-sharp-3' 'webkitgtk')
-makedepends=('soup-sharp')
-source=($pkgname-$pkgver.tar.gz::git://github.com/xDarkice/webkitgtk-sharp.git#commit=f0c32b5fce3043582f4666327f23fdf8914bee66)
+makedepends=('git' 'soup-sharp')
+source=($pkgname-$pkgver::git://github.com/xDarkice/webkitgtk-sharp.git#commit=f0c32b5fce3043582f4666327f23fdf8914bee66)
 sha256sums=('SKIP')
 
 build() {
-  cd $srcdir/$pkgname-master
+  cd $srcdir/$pkgname-$pkgver
   ./autogen.sh --prefix=/usr
   make -j1
 }
 
 package() {
-  cd $srcdir/$pkgname-master
+  cd $srcdir/$pkgname-$pkgver
   make DESTDIR=$pkgdir install
 }



[arch-commits] Commit in webkitgtk-sharp (5 files)

2014-05-11 Thread Balló György
Date: Sunday, May 11, 2014 @ 21:08:20
  Author: bgyorgy
Revision: 110988

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

Added:
  webkitgtk-sharp/repos/
  webkitgtk-sharp/repos/community-i686/
  webkitgtk-sharp/repos/community-i686/PKGBUILD
(from rev 110987, webkitgtk-sharp/trunk/PKGBUILD)
  webkitgtk-sharp/repos/community-x86_64/
  webkitgtk-sharp/repos/community-x86_64/PKGBUILD
(from rev 110987, webkitgtk-sharp/trunk/PKGBUILD)

---+
 community-i686/PKGBUILD   |   25 +
 community-x86_64/PKGBUILD |   25 +
 2 files changed, 50 insertions(+)

Copied: webkitgtk-sharp/repos/community-i686/PKGBUILD (from rev 110987, 
webkitgtk-sharp/trunk/PKGBUILD)
===
--- repos/community-i686/PKGBUILD   (rev 0)
+++ repos/community-i686/PKGBUILD   2014-05-11 19:08:20 UTC (rev 110988)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Balló György ballogyor+arch at gmail dot com
+
+pkgname=webkitgtk-sharp
+pkgver=2.0.0
+pkgrel=1
+pkgdesc=C# bindings for WebKitGTK+
+arch=('i686' 'x86_64')
+url=https://github.com/xDarkice/webkitgtk-sharp;
+license=('LGPL')
+depends=('gtk-sharp-3' 'webkitgtk')
+makedepends=('git' 'soup-sharp')
+source=($pkgname-$pkgver::git://github.com/xDarkice/webkitgtk-sharp.git#commit=f0c32b5fce3043582f4666327f23fdf8914bee66)
+sha256sums=('SKIP')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./autogen.sh --prefix=/usr
+  make -j1
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Copied: webkitgtk-sharp/repos/community-x86_64/PKGBUILD (from rev 110987, 
webkitgtk-sharp/trunk/PKGBUILD)
===
--- repos/community-x86_64/PKGBUILD (rev 0)
+++ repos/community-x86_64/PKGBUILD 2014-05-11 19:08:20 UTC (rev 110988)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Balló György ballogyor+arch at gmail dot com
+
+pkgname=webkitgtk-sharp
+pkgver=2.0.0
+pkgrel=1
+pkgdesc=C# bindings for WebKitGTK+
+arch=('i686' 'x86_64')
+url=https://github.com/xDarkice/webkitgtk-sharp;
+license=('LGPL')
+depends=('gtk-sharp-3' 'webkitgtk')
+makedepends=('git' 'soup-sharp')
+source=($pkgname-$pkgver::git://github.com/xDarkice/webkitgtk-sharp.git#commit=f0c32b5fce3043582f4666327f23fdf8914bee66)
+sha256sums=('SKIP')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./autogen.sh --prefix=/usr
+  make -j1
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}



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

2014-05-11 Thread Guillaume Alaux
Date: Sunday, May 11, 2014 @ 21:10:09
  Author: guillaume
Revision: 212286

Add double-quotes around pkgdir and srcdir

Modified:
  java7-openjdk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-11 18:54:44 UTC (rev 212285)
+++ PKGBUILD2014-05-11 19:10:09 UTC (rev 212286)
@@ -91,7 +91,7 @@
 
   . /etc/profile.d/apache-ant.sh
 
-  cp ${srcdir}/*.diff ${srcdir}/icedtea-${_icedtea_ver}/patches
+  cp ${srcdir}/*.diff ${srcdir}/icedtea-${_icedtea_ver}/patches
   export DISTRIBUTION_PATCHES=patches/fontconfig-paths.diff \
patches/openjdk7_nonreparenting-wm.diff
 
@@ -108,13 +108,13 @@
 --disable-downloading --disable-Werror \
 --with-pkgversion=ArchLinux build ${pkgver}-${pkgrel}-${CARCH} \
 --with-jdk-home=${JAVA_HOME} \
---with-openjdk-src-zip=${srcdir}/openjdk-${_OPENJDK_CHANGESET}.tar.gz \
---with-hotspot-src-zip=${srcdir}/hotspot-${_HOTSPOT_CHANGESET}.tar.gz \
---with-corba-src-zip=${srcdir}/corba-${_CORBA_CHANGESET}.tar.gz \
---with-jaxp-src-zip=${srcdir}/jaxp-${_JAXP_CHANGESET}.tar.gz \
---with-jaxws-src-zip=${srcdir}/jaxws-${_JAXWS_CHANGESET}.tar.gz \
---with-jdk-src-zip=${srcdir}/jdk-${_JDK_CHANGESET}.tar.gz \
-
--with-langtools-src-zip=${srcdir}/langtools-${_LANGTOOLS_CHANGESET}.tar.gz \
+
--with-openjdk-src-zip=${srcdir}/openjdk-${_OPENJDK_CHANGESET}.tar.gz \
+
--with-hotspot-src-zip=${srcdir}/hotspot-${_HOTSPOT_CHANGESET}.tar.gz \
+--with-corba-src-zip=${srcdir}/corba-${_CORBA_CHANGESET}.tar.gz \
+--with-jaxp-src-zip=${srcdir}/jaxp-${_JAXP_CHANGESET}.tar.gz \
+--with-jaxws-src-zip=${srcdir}/jaxws-${_JAXWS_CHANGESET}.tar.gz \
+--with-jdk-src-zip=${srcdir}/jdk-${_JDK_CHANGESET}.tar.gz \
+
--with-langtools-src-zip=${srcdir}/langtools-${_LANGTOOLS_CHANGESET}.tar.gz \
 --enable-pulse-java \
 --enable-nss \
 --with-rhino \
@@ -163,8 +163,8 @@
 
   cd ${srcdir}/${_imgdir}/jre
 
-  install -d -m755 ${pkgdir}${_jvmdir}/jre
-  cp -a bin lib ${pkgdir}${_jvmdir}/jre
+  install -d -m755 ${pkgdir}${_jvmdir}/jre
+  cp -a bin lib ${pkgdir}${_jvmdir}/jre
 
   # Set config files
   mv 
${pkgdir}${_jvmdir}/jre/lib/fontconfig.{Ubuntu.properties.src,properties}
@@ -192,26 +192,26 @@
   popd
 
   # Link binaries into /usr/bin
-  pushd ${pkgdir}${_jvmdir}/jre/bin
-  install -m755 -d ${pkgdir}/usr/bin/
+  pushd ${pkgdir}${_jvmdir}/jre/bin
+  install -d -m755 ${pkgdir}/usr/bin/
   for file in *; do
-ln -sf ${_jvmdir}/jre/bin/${file} ${pkgdir}/usr/bin
+ln -sf ${_jvmdir}/jre/bin/${file} ${pkgdir}/usr/bin
   done
   popd
 
   # Link JKS keystore from ca-certificates-java
-  rm -f ${pkgdir}${_jvmdir}/jre/lib/security/cacerts
+  rm -f ${pkgdir}${_jvmdir}/jre/lib/security/cacerts
   ln -sf /etc/ssl/certs/java/cacerts 
${pkgdir}${_jvmdir}/jre/lib/security/cacerts
 
   # Set some variables
-  install -m755 -d ${pkgdir}/etc/profile.d/
-  install -m755 ${srcdir}/jre7-openjdk.profile ${pkgdir}/etc/profile.d/jre.sh
-  install -m755 ${srcdir}/jre7-openjdk.profile.csh 
${pkgdir}/etc/profile.d/jre.csh
+  install -d -m755 ${pkgdir}/etc/profile.d/
+  install -m755 ${srcdir}/jre7-openjdk.profile 
${pkgdir}/etc/profile.d/jre.sh
+  install -m755 ${srcdir}/jre7-openjdk.profile.csh 
${pkgdir}/etc/profile.d/jre.csh
 
   # Install license
-  install -m755 -d ${pkgdir}/usr/share/licenses/${pkgbase}/
+  install -d -m755 ${pkgdir}/usr/share/licenses/${pkgbase}/
   install -m644 ASSEMBLY_EXCEPTION LICENSE THIRD_PARTY_README \
- ${pkgdir}/usr/share/licenses/${pkgbase}
+ ${pkgdir}/usr/share/licenses/${pkgbase}
   ln -sf /usr/share/licenses/${pkgbase} 
${pkgdir}/usr/share/licenses/${pkgname}
 
   # Move config files that were set in _backup_etc from ./lib to /etc
@@ -242,10 +242,10 @@
   done
 
   # Link binaries into /usr/bin
-  pushd ${pkgdir}${_jvmdir}/jre/bin
-  install -m755 -d ${pkgdir}/usr/bin/
+  pushd ${pkgdir}${_jvmdir}/jre/bin
+  install -d -m755 ${pkgdir}/usr/bin/
   for file in *; do
-ln -sf ${_jvmdir}/jre/bin/${file} ${pkgdir}/usr/bin
+ln -sf ${_jvmdir}/jre/bin/${file} ${pkgdir}/usr/bin
   done
   popd
 
@@ -262,17 +262,17 @@
 
   # Install icons and menu entries
   for s in 16 24 32 48 ; do
-install -m755 -d ${pkgdir}/usr/share/icons/hicolor/${s}x${s}/apps/
+install -d -m755 ${pkgdir}/usr/share/icons/hicolor/${s}x${s}/apps/
 install -m644 
../../../openjdk/jdk/src/solaris/classes/sun/awt/X11/java-icon${s}.png \
-  ${pkgdir}/usr/share/icons/hicolor/${s}x${s}/apps/java.png
+  ${pkgdir}/usr/share/icons/hicolor/${s}x${s}/apps/java.png
   done
   
   # Install desktop files.
-  install -m755 -d ${pkgdir}/usr/share/applications
-  install 

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

2014-05-11 Thread Guillaume Alaux
Date: Sunday, May 11, 2014 @ 21:10:51
  Author: guillaume
Revision: 212287

Fix Arch Linux typo

Modified:
  java7-openjdk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-11 19:10:09 UTC (rev 212286)
+++ PKGBUILD2014-05-11 19:10:51 UTC (rev 212287)
@@ -106,7 +106,7 @@
 --with-parallel-jobs=${MAKEFLAGS/-j} \
 --disable-tests \
 --disable-downloading --disable-Werror \
---with-pkgversion=ArchLinux build ${pkgver}-${pkgrel}-${CARCH} \
+--with-pkgversion=Arch Linux build ${pkgver}-${pkgrel}-${CARCH} \
 --with-jdk-home=${JAVA_HOME} \
 
--with-openjdk-src-zip=${srcdir}/openjdk-${_OPENJDK_CHANGESET}.tar.gz \
 
--with-hotspot-src-zip=${srcdir}/hotspot-${_HOTSPOT_CHANGESET}.tar.gz \



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

2014-05-11 Thread Guillaume Alaux
Date: Sunday, May 11, 2014 @ 21:13:22
  Author: guillaume
Revision: 212288

Fix indentation, tabulations and spaces

Modified:
  java7-openjdk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-11 19:10:51 UTC (rev 212287)
+++ PKGBUILD2014-05-11 19:13:22 UTC (rev 212288)
@@ -85,7 +85,7 @@
 
 build() {
   cd ${srcdir}/icedtea-${_icedtea_ver}
-  
+
   export ALT_PARALLEL_COMPILE_JOBS=${MAKEFLAGS/-j}
   export HOTSPOT_BUILD_JOBS=${ALT_PARALLEL_COMPILE_JOBS}
 
@@ -97,12 +97,12 @@
 
   if [ $_bootstrap = 1 ]; then
  BOOTSTRAPOPT=--enable-bootstrap --with-ecj-jar=/usr/share/java/ecj.jar
-   else 
+   else
  BOOTSTRAPOPT=--disable-bootstrap
   fi
 
   ./configure \
-   $BOOTSTRAPOPT \
+${BOOTSTRAPOPT} \
 --with-parallel-jobs=${MAKEFLAGS/-j} \
 --disable-tests \
 --disable-downloading --disable-Werror \
@@ -266,7 +266,7 @@
 install -m644 
../../../openjdk/jdk/src/solaris/classes/sun/awt/X11/java-icon${s}.png \
   ${pkgdir}/usr/share/icons/hicolor/${s}x${s}/apps/java.png
   done
-  
+
   # Install desktop files.
   install -d -m755 ${pkgdir}/usr/share/applications
   install -m644 ${srcdir}/icedtea-${_icedtea_ver}/policytool.desktop 
${pkgdir}/usr/share/applications



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

2014-05-11 Thread Balló György
Date: Sunday, May 11, 2014 @ 21:26:17
  Author: bgyorgy
Revision: 110990

upgpkg: sparkleshare 1.4-1

Update to version 1.4

Modified:
  sparkleshare/trunk/PKGBUILD
  sparkleshare/trunk/sparkleshare.install

--+
 PKGBUILD |   25 ++---
 sparkleshare.install |2 +-
 2 files changed, 7 insertions(+), 20 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-05-11 19:10:42 UTC (rev 110989)
+++ PKGBUILD2014-05-11 19:26:17 UTC (rev 110990)
@@ -4,37 +4,24 @@
 # Contributor: Erdbeerkaese erdbeerkaese underscore arch at gmail dot com
 
 pkgname=sparkleshare
-pkgver=1.2
-pkgrel=2
+pkgver=1.4
+pkgrel=1
 pkgdesc=Collaboration and sharing tool based on git written in C Sharp
 arch=('any')
 url=http://sparkleshare.org/;
 license=('GPL3')
-depends=('webkit-sharp' 'notify-sharp' 'curl' 'git' 'openssh' 
'desktop-file-utils' 'hicolor-icon-theme' 'xdg-utils')
-makedepends=('intltool' 'gnome-doc-utils')
+depends=('webkitgtk-sharp' 'notify-sharp-3' 'curl' 'git' 'openssh' 
'desktop-file-utils')
 install=$pkgname.install
-source=(https://bitbucket.org/hbons/sparkleshare/downloads/$pkgname-linux-$pkgver.tar.gz
-https://github.com/hbons/SparkleShare/commit/ba72a7a30.patch)
-md5sums=('befc1542079b0fc6e4b57fa7fdfab12e'
- 'b9a7fbcf0375331bc1eea5a43cb4a119')
+source=(https://bitbucket.org/hbons/sparkleshare/downloads/$pkgname-linux-$pkgver.tar.gz)
+md5sums=('66ae2b680d723f7a8b38e184d3b3dc55')
 
-prepare() {
-  cd $srcdir/$pkgname-$pkgver
-
-  # Fix crash when we can't get the username
-  patch -Np1 -i ../ba72a7a30.patch
-}
-
 build() {
   cd $srcdir/$pkgname-$pkgver
-
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
-  --disable-appindicator
+  ./configure --prefix=/usr
   make
 }
 
 package() {
   cd $srcdir/$pkgname-$pkgver
-
   make DESTDIR=$pkgdir/ install
 }

Modified: sparkleshare.install
===
--- sparkleshare.install2014-05-11 19:10:42 UTC (rev 110989)
+++ sparkleshare.install2014-05-11 19:26:17 UTC (rev 110990)
@@ -1,5 +1,5 @@
 post_install() {
-  xdg-icon-resource forceupdate
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
   update-desktop-database -q
 }
 



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

2014-05-11 Thread Balló György
Date: Sunday, May 11, 2014 @ 21:26:22
  Author: bgyorgy
Revision: 110991

archrelease: copy trunk to community-any

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

--+
 PKGBUILD |   67 +++--
 sparkleshare.install |   24 -
 2 files changed, 39 insertions(+), 52 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-05-11 19:26:17 UTC (rev 110990)
+++ PKGBUILD2014-05-11 19:26:22 UTC (rev 110991)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Balló György ballogyor+arch at gmail dot com
-# Contributor: Jarek Sedlacek jareksedla...@gmail.com
-# Contributor: Erdbeerkaese erdbeerkaese underscore arch at gmail dot com
-
-pkgname=sparkleshare
-pkgver=1.2
-pkgrel=2
-pkgdesc=Collaboration and sharing tool based on git written in C Sharp
-arch=('any')
-url=http://sparkleshare.org/;
-license=('GPL3')
-depends=('webkit-sharp' 'notify-sharp' 'curl' 'git' 'openssh' 
'desktop-file-utils' 'hicolor-icon-theme' 'xdg-utils')
-makedepends=('intltool' 'gnome-doc-utils')
-install=$pkgname.install
-source=(https://bitbucket.org/hbons/sparkleshare/downloads/$pkgname-linux-$pkgver.tar.gz
-https://github.com/hbons/SparkleShare/commit/ba72a7a30.patch)
-md5sums=('befc1542079b0fc6e4b57fa7fdfab12e'
- 'b9a7fbcf0375331bc1eea5a43cb4a119')
-
-prepare() {
-  cd $srcdir/$pkgname-$pkgver
-
-  # Fix crash when we can't get the username
-  patch -Np1 -i ../ba72a7a30.patch
-}
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
-  --disable-appindicator
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-
-  make DESTDIR=$pkgdir/ install
-}

Copied: sparkleshare/repos/community-any/PKGBUILD (from rev 110990, 
sparkleshare/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-05-11 19:26:22 UTC (rev 110991)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Balló György ballogyor+arch at gmail dot com
+# Contributor: Jarek Sedlacek jareksedla...@gmail.com
+# Contributor: Erdbeerkaese erdbeerkaese underscore arch at gmail dot com
+
+pkgname=sparkleshare
+pkgver=1.4
+pkgrel=1
+pkgdesc=Collaboration and sharing tool based on git written in C Sharp
+arch=('any')
+url=http://sparkleshare.org/;
+license=('GPL3')
+depends=('webkitgtk-sharp' 'notify-sharp-3' 'curl' 'git' 'openssh' 
'desktop-file-utils')
+install=$pkgname.install
+source=(https://bitbucket.org/hbons/sparkleshare/downloads/$pkgname-linux-$pkgver.tar.gz)
+md5sums=('66ae2b680d723f7a8b38e184d3b3dc55')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir/ install
+}

Deleted: sparkleshare.install
===
--- sparkleshare.install2014-05-11 19:26:17 UTC (rev 110990)
+++ sparkleshare.install2014-05-11 19:26:22 UTC (rev 110991)
@@ -1,12 +0,0 @@
-post_install() {
-  xdg-icon-resource forceupdate
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  post_install $1
-}

Copied: sparkleshare/repos/community-any/sparkleshare.install (from rev 110990, 
sparkleshare/trunk/sparkleshare.install)
===
--- sparkleshare.install(rev 0)
+++ sparkleshare.install2014-05-11 19:26:22 UTC (rev 110991)
@@ -0,0 +1,12 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  post_install $1
+}



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

2014-05-11 Thread Daniel Wallace
Date: Sunday, May 11, 2014 @ 21:28:05
  Author: dwallace
Revision: 110992

upgpkg: udiskie 0.8.0-1

upgpkg: udiskie 0.8.0-1

Modified:
  udiskie/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-11 19:26:22 UTC (rev 110991)
+++ PKGBUILD2014-05-11 19:28:05 UTC (rev 110992)
@@ -2,7 +2,7 @@
 # Maintainer: Daniel Wallace danielwallace at gtmanfred dot com
 # Contributor: Byron Clark by...@theclarkfamily.name
 pkgname=udiskie
-pkgver=0.6.4
+pkgver=0.8.0
 pkgrel=1
 pkgdesc=Removable disk automounter using udisks
 arch=('any')
@@ -13,8 +13,9 @@
 optdepends=('zenity: for luks decryption')
 options=(!emptydirs)
 replaces=('python2-udiskie')
+optdepends=('udisks2: experimenatl use on the command line with -2')
 
source=(https://pypi.python.org/packages/source/${pkgname:0:1}/$pkgname/$pkgname-$pkgver.tar.gz;)
-md5sums=('83f491ffd311e141dba264aadf888a9b')
+md5sums=('6b92c5f96d52f9a3597713abf9a53de3')
 
 package() {
   cd $srcdir/$pkgname-$pkgver



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

2014-05-11 Thread Daniel Wallace
Date: Sunday, May 11, 2014 @ 21:28:30
  Author: dwallace
Revision: 110993

archrelease: copy trunk to community-any

Added:
  udiskie/repos/community-any/PKGBUILD
(from rev 110992, udiskie/trunk/PKGBUILD)
Deleted:
  udiskie/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-05-11 19:28:05 UTC (rev 110992)
+++ PKGBUILD2014-05-11 19:28:30 UTC (rev 110993)
@@ -1,30 +0,0 @@
-# $Id: PKGBUILD 73684 2012-07-14 05:00:28Z dwallace $
-# Maintainer: Daniel Wallace danielwallace at gtmanfred dot com
-# Contributor: Byron Clark by...@theclarkfamily.name
-pkgname=udiskie
-pkgver=0.6.4
-pkgrel=1
-pkgdesc=Removable disk automounter using udisks
-arch=('any')
-url=https://pypi.python.org/pypi/udiskie;
-license=('MIT')
-depends=('udisks' 'python2-dbus' 'python2-gobject2' 'python2-notify' 
'python2-setuptools')
-makedepends=('asciidoc')
-optdepends=('zenity: for luks decryption')
-options=(!emptydirs)
-replaces=('python2-udiskie')
-source=(https://pypi.python.org/packages/source/${pkgname:0:1}/$pkgname/$pkgname-$pkgver.tar.gz;)
-md5sums=('83f491ffd311e141dba264aadf888a9b')
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-
-  python2 setup.py install --root=$pkgdir --optimize=1
-
-  make -C doc
-  install -m 0644 -D doc/${pkgname}.8 
$pkgdir/usr/share/man/man8/${pkgname}.8
-  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/LICENSE
-
-}
-
-# vim:set ts=2 sw=2 et:

Copied: udiskie/repos/community-any/PKGBUILD (from rev 110992, 
udiskie/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-05-11 19:28:30 UTC (rev 110993)
@@ -0,0 +1,31 @@
+# $Id: PKGBUILD 73684 2012-07-14 05:00:28Z dwallace $
+# Maintainer: Daniel Wallace danielwallace at gtmanfred dot com
+# Contributor: Byron Clark by...@theclarkfamily.name
+pkgname=udiskie
+pkgver=0.8.0
+pkgrel=1
+pkgdesc=Removable disk automounter using udisks
+arch=('any')
+url=https://pypi.python.org/pypi/udiskie;
+license=('MIT')
+depends=('udisks' 'python2-dbus' 'python2-gobject2' 'python2-notify' 
'python2-setuptools')
+makedepends=('asciidoc')
+optdepends=('zenity: for luks decryption')
+options=(!emptydirs)
+replaces=('python2-udiskie')
+optdepends=('udisks2: experimenatl use on the command line with -2')
+source=(https://pypi.python.org/packages/source/${pkgname:0:1}/$pkgname/$pkgname-$pkgver.tar.gz;)
+md5sums=('6b92c5f96d52f9a3597713abf9a53de3')
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+
+  python2 setup.py install --root=$pkgdir --optimize=1
+
+  make -C doc
+  install -m 0644 -D doc/${pkgname}.8 
$pkgdir/usr/share/man/man8/${pkgname}.8
+  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/LICENSE
+
+}
+
+# vim:set ts=2 sw=2 et:



  1   2   >