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

2016-09-24 Thread Jakob Gruber
Date: Saturday, September 24, 2016 @ 07:17:41
  Author: schuay
Revision: 190233

mc-4.8.17-2

Added:
  mc/trunk/0001-Ticket-3639-fix-window-resizing-when-panels-are-hidd.patch
  mc/trunk/0002-Do-not-botch-SIGWINCH-delivery-to-the-subshell.patch
Modified:
  mc/trunk/PKGBUILD

-+
 0001-Ticket-3639-fix-window-resizing-when-panels-are-hidd.patch |   26 +++
 0002-Do-not-botch-SIGWINCH-delivery-to-the-subshell.patch   |   68 
++
 PKGBUILD|   16 +-
 3 files changed, 107 insertions(+), 3 deletions(-)

Added: 0001-Ticket-3639-fix-window-resizing-when-panels-are-hidd.patch
===
--- 0001-Ticket-3639-fix-window-resizing-when-panels-are-hidd.patch 
(rev 0)
+++ 0001-Ticket-3639-fix-window-resizing-when-panels-are-hidd.patch 
2016-09-24 07:17:41 UTC (rev 190233)
@@ -0,0 +1,26 @@
+From 52871230a295311c286bb92feddc469e3ece11d6 Mon Sep 17 00:00:00 2001
+From: Andrew Borodin 
+Date: Mon, 13 Jun 2016 09:21:15 +0300
+Subject: [PATCH 1/2] Ticket #3639: fix window resizing when panels are hidden.
+
+This reverts commit f278eaec99320874b112b37d9925d78d964f5d37.
+---
+ src/subshell/common.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/subshell/common.c b/src/subshell/common.c
+index 6667b6e..98968fa 100644
+--- a/src/subshell/common.c
 b/src/subshell/common.c
+@@ -531,7 +531,7 @@ feed_subshell (int how, gboolean fail_on_error)
+ /* Despite using SA_RESTART, we still have to check for this */
+ if (errno == EINTR)
+ {
+-if (how == QUIETLY && mc_global.tty.winch_flag != 0)
++if (mc_global.tty.winch_flag != 0)
+ tty_change_screen_size ();
+ 
+ continue;   /* try all over again */
+-- 
+2.10.0
+

Added: 0002-Do-not-botch-SIGWINCH-delivery-to-the-subshell.patch
===
--- 0002-Do-not-botch-SIGWINCH-delivery-to-the-subshell.patch   
(rev 0)
+++ 0002-Do-not-botch-SIGWINCH-delivery-to-the-subshell.patch   2016-09-24 
07:17:41 UTC (rev 190233)
@@ -0,0 +1,68 @@
+From 968882335abb18e69be39dc4fd444f78f0a14a0f Mon Sep 17 00:00:00 2001
+From: Yuri Khan 
+Date: Mon, 9 May 2016 18:04:21 +0600
+Subject: [PATCH 2/2] Do not botch SIGWINCH delivery to the subshell.
+
+Signed-off-by: Andrew Borodin 
+---
+ lib/tty/tty-slang.c | 9 -
+ 1 file changed, 8 insertions(+), 1 deletion(-)
+
+diff --git a/lib/tty/tty-slang.c b/lib/tty/tty-slang.c
+index 143a6d3..87e4a70 100644
+--- a/lib/tty/tty-slang.c
 b/lib/tty/tty-slang.c
+@@ -83,6 +83,8 @@ static struct termios new_mode;
+ /* Controls whether we should wait for input in tty_lowlevel_getch */
+ static gboolean no_slang_delay;
+ 
++static gboolean slsmg_active = FALSE;
++
+ /* This table describes which capabilities we want and which values we
+  * assign to them.
+  */
+@@ -329,6 +331,7 @@ tty_init (gboolean mouse_enable, gboolean is_xterm)
+ tty_display_8bit (FALSE);
+ 
+ SLsmg_init_smg ();
++slsmg_active = TRUE;
+ if (!mouse_enable)
+ use_mouse_p = MOUSE_DISABLED;
+ tty_init_xterm_support (is_xterm);  /* do it before tty_enter_ca_mode() 
call */
+@@ -354,6 +357,7 @@ tty_shutdown (void)
+ tty_reset_screen ();
+ tty_exit_ca_mode ();
+ SLang_reset_tty ();
++slsmg_active = FALSE;
+ 
+ /* Load the op capability to reset the colors to those that were 
+  * active when the program was started up 
+@@ -388,7 +392,8 @@ void
+ tty_change_screen_size (void)
+ {
+ SLtt_get_screen_size ();
+-SLsmg_reinit_smg ();
++if (slsmg_active)
++SLsmg_reinit_smg ();
+ 
+ #ifdef ENABLE_SUBSHELL
+ if (mc_global.tty.use_subshell)
+@@ -404,6 +409,7 @@ tty_reset_prog_mode (void)
+ {
+ tcsetattr (SLang_TT_Read_FD, TCSANOW, &new_mode);
+ SLsmg_init_smg ();
++slsmg_active = TRUE;
+ SLsmg_touch_lines (0, LINES);
+ }
+ 
+@@ -504,6 +510,7 @@ int
+ tty_reset_screen (void)
+ {
+ SLsmg_reset_smg ();
++slsmg_active = FALSE;
+ return 0;   /* OK */
+ }
+ 
+-- 
+2.10.0
+

Modified: PKGBUILD
===
--- PKGBUILD2016-09-24 02:04:56 UTC (rev 190232)
+++ PKGBUILD2016-09-24 07:17:41 UTC (rev 190233)
@@ -4,7 +4,7 @@
 
 pkgname=mc
 pkgver=4.8.17
-pkgrel=1
+pkgrel=2
 pkgdesc="Midnight Commander is a text based filemanager/shell that emulates 
Norton Commander"
 arch=('i686' 'x86_64')
 url="http://www.ibiblio.org/mc/";
@@ -35,9 +35,19 @@
 'etc/mc/mcedit.menu'
 'etc/mc/sfs.ini')
 options=('!emptydirs')
-source=("http://ftp.midnight-commander.org/${pkgname}-${pkgver}.tar.xz";)
-sha256sums=('0447bdddc0baa81866e66f50f9a545d29d6eebb68b0ab46c98d8fddd2bf4e44d')
+source=("http://ftp.midnight-commander.o

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

2016-09-24 Thread Jakob Gruber
Date: Saturday, September 24, 2016 @ 07:18:44
  Author: schuay
Revision: 190235

archrelease: copy trunk to community-x86_64

Added:
  
mc/repos/community-x86_64/0001-Ticket-3639-fix-window-resizing-when-panels-are-hidd.patch
(from rev 190234, 
mc/trunk/0001-Ticket-3639-fix-window-resizing-when-panels-are-hidd.patch)
  
mc/repos/community-x86_64/0002-Do-not-botch-SIGWINCH-delivery-to-the-subshell.patch
(from rev 190234, 
mc/trunk/0002-Do-not-botch-SIGWINCH-delivery-to-the-subshell.patch)
  mc/repos/community-x86_64/PKGBUILD
(from rev 190234, mc/trunk/PKGBUILD)
Deleted:
  mc/repos/community-x86_64/PKGBUILD

-+
 0001-Ticket-3639-fix-window-resizing-when-panels-are-hidd.patch |   26 ++
 0002-Do-not-botch-SIGWINCH-delivery-to-the-subshell.patch   |   68 +
 PKGBUILD|  124 
+-
 3 files changed, 161 insertions(+), 57 deletions(-)

Copied: 
mc/repos/community-x86_64/0001-Ticket-3639-fix-window-resizing-when-panels-are-hidd.patch
 (from rev 190234, 
mc/trunk/0001-Ticket-3639-fix-window-resizing-when-panels-are-hidd.patch)
===
--- 0001-Ticket-3639-fix-window-resizing-when-panels-are-hidd.patch 
(rev 0)
+++ 0001-Ticket-3639-fix-window-resizing-when-panels-are-hidd.patch 
2016-09-24 07:18:44 UTC (rev 190235)
@@ -0,0 +1,26 @@
+From 52871230a295311c286bb92feddc469e3ece11d6 Mon Sep 17 00:00:00 2001
+From: Andrew Borodin 
+Date: Mon, 13 Jun 2016 09:21:15 +0300
+Subject: [PATCH 1/2] Ticket #3639: fix window resizing when panels are hidden.
+
+This reverts commit f278eaec99320874b112b37d9925d78d964f5d37.
+---
+ src/subshell/common.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/subshell/common.c b/src/subshell/common.c
+index 6667b6e..98968fa 100644
+--- a/src/subshell/common.c
 b/src/subshell/common.c
+@@ -531,7 +531,7 @@ feed_subshell (int how, gboolean fail_on_error)
+ /* Despite using SA_RESTART, we still have to check for this */
+ if (errno == EINTR)
+ {
+-if (how == QUIETLY && mc_global.tty.winch_flag != 0)
++if (mc_global.tty.winch_flag != 0)
+ tty_change_screen_size ();
+ 
+ continue;   /* try all over again */
+-- 
+2.10.0
+

Copied: 
mc/repos/community-x86_64/0002-Do-not-botch-SIGWINCH-delivery-to-the-subshell.patch
 (from rev 190234, 
mc/trunk/0002-Do-not-botch-SIGWINCH-delivery-to-the-subshell.patch)
===
--- 0002-Do-not-botch-SIGWINCH-delivery-to-the-subshell.patch   
(rev 0)
+++ 0002-Do-not-botch-SIGWINCH-delivery-to-the-subshell.patch   2016-09-24 
07:18:44 UTC (rev 190235)
@@ -0,0 +1,68 @@
+From 968882335abb18e69be39dc4fd444f78f0a14a0f Mon Sep 17 00:00:00 2001
+From: Yuri Khan 
+Date: Mon, 9 May 2016 18:04:21 +0600
+Subject: [PATCH 2/2] Do not botch SIGWINCH delivery to the subshell.
+
+Signed-off-by: Andrew Borodin 
+---
+ lib/tty/tty-slang.c | 9 -
+ 1 file changed, 8 insertions(+), 1 deletion(-)
+
+diff --git a/lib/tty/tty-slang.c b/lib/tty/tty-slang.c
+index 143a6d3..87e4a70 100644
+--- a/lib/tty/tty-slang.c
 b/lib/tty/tty-slang.c
+@@ -83,6 +83,8 @@ static struct termios new_mode;
+ /* Controls whether we should wait for input in tty_lowlevel_getch */
+ static gboolean no_slang_delay;
+ 
++static gboolean slsmg_active = FALSE;
++
+ /* This table describes which capabilities we want and which values we
+  * assign to them.
+  */
+@@ -329,6 +331,7 @@ tty_init (gboolean mouse_enable, gboolean is_xterm)
+ tty_display_8bit (FALSE);
+ 
+ SLsmg_init_smg ();
++slsmg_active = TRUE;
+ if (!mouse_enable)
+ use_mouse_p = MOUSE_DISABLED;
+ tty_init_xterm_support (is_xterm);  /* do it before tty_enter_ca_mode() 
call */
+@@ -354,6 +357,7 @@ tty_shutdown (void)
+ tty_reset_screen ();
+ tty_exit_ca_mode ();
+ SLang_reset_tty ();
++slsmg_active = FALSE;
+ 
+ /* Load the op capability to reset the colors to those that were 
+  * active when the program was started up 
+@@ -388,7 +392,8 @@ void
+ tty_change_screen_size (void)
+ {
+ SLtt_get_screen_size ();
+-SLsmg_reinit_smg ();
++if (slsmg_active)
++SLsmg_reinit_smg ();
+ 
+ #ifdef ENABLE_SUBSHELL
+ if (mc_global.tty.use_subshell)
+@@ -404,6 +409,7 @@ tty_reset_prog_mode (void)
+ {
+ tcsetattr (SLang_TT_Read_FD, TCSANOW, &new_mode);
+ SLsmg_init_smg ();
++slsmg_active = TRUE;
+ SLsmg_touch_lines (0, LINES);
+ }
+ 
+@@ -504,6 +510,7 @@ int
+ tty_reset_screen (void)
+ {
+ SLsmg_reset_smg ();
++slsmg_active = FALSE;
+ return 0;   /* OK */
+ }
+ 
+-- 
+2.10.0
+

Deleted: PKGBUILD
===
--- PKGBUILD2016-09-24 07:18:

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

2016-09-24 Thread Jakob Gruber
Date: Saturday, September 24, 2016 @ 07:18:37
  Author: schuay
Revision: 190234

archrelease: copy trunk to community-i686

Added:
  
mc/repos/community-i686/0001-Ticket-3639-fix-window-resizing-when-panels-are-hidd.patch
(from rev 190233, 
mc/trunk/0001-Ticket-3639-fix-window-resizing-when-panels-are-hidd.patch)
  
mc/repos/community-i686/0002-Do-not-botch-SIGWINCH-delivery-to-the-subshell.patch
(from rev 190233, 
mc/trunk/0002-Do-not-botch-SIGWINCH-delivery-to-the-subshell.patch)
  mc/repos/community-i686/PKGBUILD
(from rev 190233, mc/trunk/PKGBUILD)
Deleted:
  mc/repos/community-i686/PKGBUILD

-+
 0001-Ticket-3639-fix-window-resizing-when-panels-are-hidd.patch |   26 ++
 0002-Do-not-botch-SIGWINCH-delivery-to-the-subshell.patch   |   68 +
 PKGBUILD|  124 
+-
 3 files changed, 161 insertions(+), 57 deletions(-)

Copied: 
mc/repos/community-i686/0001-Ticket-3639-fix-window-resizing-when-panels-are-hidd.patch
 (from rev 190233, 
mc/trunk/0001-Ticket-3639-fix-window-resizing-when-panels-are-hidd.patch)
===
--- 0001-Ticket-3639-fix-window-resizing-when-panels-are-hidd.patch 
(rev 0)
+++ 0001-Ticket-3639-fix-window-resizing-when-panels-are-hidd.patch 
2016-09-24 07:18:37 UTC (rev 190234)
@@ -0,0 +1,26 @@
+From 52871230a295311c286bb92feddc469e3ece11d6 Mon Sep 17 00:00:00 2001
+From: Andrew Borodin 
+Date: Mon, 13 Jun 2016 09:21:15 +0300
+Subject: [PATCH 1/2] Ticket #3639: fix window resizing when panels are hidden.
+
+This reverts commit f278eaec99320874b112b37d9925d78d964f5d37.
+---
+ src/subshell/common.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/subshell/common.c b/src/subshell/common.c
+index 6667b6e..98968fa 100644
+--- a/src/subshell/common.c
 b/src/subshell/common.c
+@@ -531,7 +531,7 @@ feed_subshell (int how, gboolean fail_on_error)
+ /* Despite using SA_RESTART, we still have to check for this */
+ if (errno == EINTR)
+ {
+-if (how == QUIETLY && mc_global.tty.winch_flag != 0)
++if (mc_global.tty.winch_flag != 0)
+ tty_change_screen_size ();
+ 
+ continue;   /* try all over again */
+-- 
+2.10.0
+

Copied: 
mc/repos/community-i686/0002-Do-not-botch-SIGWINCH-delivery-to-the-subshell.patch
 (from rev 190233, 
mc/trunk/0002-Do-not-botch-SIGWINCH-delivery-to-the-subshell.patch)
===
--- 0002-Do-not-botch-SIGWINCH-delivery-to-the-subshell.patch   
(rev 0)
+++ 0002-Do-not-botch-SIGWINCH-delivery-to-the-subshell.patch   2016-09-24 
07:18:37 UTC (rev 190234)
@@ -0,0 +1,68 @@
+From 968882335abb18e69be39dc4fd444f78f0a14a0f Mon Sep 17 00:00:00 2001
+From: Yuri Khan 
+Date: Mon, 9 May 2016 18:04:21 +0600
+Subject: [PATCH 2/2] Do not botch SIGWINCH delivery to the subshell.
+
+Signed-off-by: Andrew Borodin 
+---
+ lib/tty/tty-slang.c | 9 -
+ 1 file changed, 8 insertions(+), 1 deletion(-)
+
+diff --git a/lib/tty/tty-slang.c b/lib/tty/tty-slang.c
+index 143a6d3..87e4a70 100644
+--- a/lib/tty/tty-slang.c
 b/lib/tty/tty-slang.c
+@@ -83,6 +83,8 @@ static struct termios new_mode;
+ /* Controls whether we should wait for input in tty_lowlevel_getch */
+ static gboolean no_slang_delay;
+ 
++static gboolean slsmg_active = FALSE;
++
+ /* This table describes which capabilities we want and which values we
+  * assign to them.
+  */
+@@ -329,6 +331,7 @@ tty_init (gboolean mouse_enable, gboolean is_xterm)
+ tty_display_8bit (FALSE);
+ 
+ SLsmg_init_smg ();
++slsmg_active = TRUE;
+ if (!mouse_enable)
+ use_mouse_p = MOUSE_DISABLED;
+ tty_init_xterm_support (is_xterm);  /* do it before tty_enter_ca_mode() 
call */
+@@ -354,6 +357,7 @@ tty_shutdown (void)
+ tty_reset_screen ();
+ tty_exit_ca_mode ();
+ SLang_reset_tty ();
++slsmg_active = FALSE;
+ 
+ /* Load the op capability to reset the colors to those that were 
+  * active when the program was started up 
+@@ -388,7 +392,8 @@ void
+ tty_change_screen_size (void)
+ {
+ SLtt_get_screen_size ();
+-SLsmg_reinit_smg ();
++if (slsmg_active)
++SLsmg_reinit_smg ();
+ 
+ #ifdef ENABLE_SUBSHELL
+ if (mc_global.tty.use_subshell)
+@@ -404,6 +409,7 @@ tty_reset_prog_mode (void)
+ {
+ tcsetattr (SLang_TT_Read_FD, TCSANOW, &new_mode);
+ SLsmg_init_smg ();
++slsmg_active = TRUE;
+ SLsmg_touch_lines (0, LINES);
+ }
+ 
+@@ -504,6 +510,7 @@ int
+ tty_reset_screen (void)
+ {
+ SLsmg_reset_smg ();
++slsmg_active = FALSE;
+ return 0;   /* OK */
+ }
+ 
+-- 
+2.10.0
+

Deleted: PKGBUILD
===
--- PKGBUILD2016-09-24 07:17:41 UTC (rev 19

[arch-commits] Commit in (transfig)

2016-09-24 Thread Antonio Rojas
Date: Saturday, September 24, 2016 @ 07:33:49
  Author: arojas
Revision: 276909

Replaced by fig2dev

Deleted:
  transfig/


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

2016-09-24 Thread Evangelos Foutras
Date: Saturday, September 24, 2016 @ 08:13:35
  Author: foutrelis
Revision: 276910

upgpkg: sudo 1.8.18-1

New upstream release.

Modified:
  sudo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-24 07:33:49 UTC (rev 276909)
+++ PKGBUILD2016-09-24 08:13:35 UTC (rev 276910)
@@ -4,7 +4,7 @@
 # Contributor: Tom Newsom 
 
 pkgname=sudo
-_sudover=1.8.17p1
+_sudover=1.8.18
 pkgver=${_sudover/p/.p}
 pkgrel=1
 pkgdesc="Give certain users the ability to run some commands as root"
@@ -17,7 +17,7 @@
 install=$pkgname.install
 source=(https://www.sudo.ws/sudo/dist/$pkgname-$_sudover.tar.gz{,.sig}
 sudo.pam)
-sha256sums=('c690d707fb561b3ecdf6a6de5563bc0b769388eff201c851edbace408bb155cc'
+sha256sums=('8519e99e97fa51ac50fca2030e76f9aa5195f543ae2d15107753f4e4c4e3be13'
 'SKIP'
 'd1738818070684a5d2c9b26224906aad69a4fea77aabd960fc2675aee2df1fa2')
 validpgpkeys=('CCB24BE9E9481B15D34159535A89DFA27EE470C4')


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

2016-09-24 Thread Evangelos Foutras
Date: Saturday, September 24, 2016 @ 08:14:04
  Author: foutrelis
Revision: 276911

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

Added:
  sudo/repos/testing-i686/
  sudo/repos/testing-i686/PKGBUILD
(from rev 276910, sudo/trunk/PKGBUILD)
  sudo/repos/testing-i686/sudo.install
(from rev 276910, sudo/trunk/sudo.install)
  sudo/repos/testing-i686/sudo.pam
(from rev 276910, sudo/trunk/sudo.pam)
  sudo/repos/testing-x86_64/
  sudo/repos/testing-x86_64/PKGBUILD
(from rev 276910, sudo/trunk/PKGBUILD)
  sudo/repos/testing-x86_64/sudo.install
(from rev 276910, sudo/trunk/sudo.install)
  sudo/repos/testing-x86_64/sudo.pam
(from rev 276910, sudo/trunk/sudo.pam)

-+
 testing-i686/PKGBUILD   |   64 ++
 testing-i686/sudo.install   |   19 
 testing-i686/sudo.pam   |4 ++
 testing-x86_64/PKGBUILD |   64 ++
 testing-x86_64/sudo.install |   19 
 testing-x86_64/sudo.pam |4 ++
 6 files changed, 174 insertions(+)

Copied: sudo/repos/testing-i686/PKGBUILD (from rev 276910, sudo/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-09-24 08:14:04 UTC (rev 276911)
@@ -0,0 +1,64 @@
+# $Id$
+# Maintainer: Evangelos Foutras 
+# Contributor: Allan McRae 
+# Contributor: Tom Newsom 
+
+pkgname=sudo
+_sudover=1.8.18
+pkgver=${_sudover/p/.p}
+pkgrel=1
+pkgdesc="Give certain users the ability to run some commands as root"
+arch=('i686' 'x86_64')
+url="https://www.sudo.ws/sudo/";
+license=('custom')
+groups=('base-devel')
+depends=('glibc' 'pam' 'libldap')
+backup=('etc/sudoers' 'etc/pam.d/sudo')
+install=$pkgname.install
+source=(https://www.sudo.ws/sudo/dist/$pkgname-$_sudover.tar.gz{,.sig}
+sudo.pam)
+sha256sums=('8519e99e97fa51ac50fca2030e76f9aa5195f543ae2d15107753f4e4c4e3be13'
+'SKIP'
+'d1738818070684a5d2c9b26224906aad69a4fea77aabd960fc2675aee2df1fa2')
+validpgpkeys=('CCB24BE9E9481B15D34159535A89DFA27EE470C4')
+
+build() {
+  cd "$srcdir/$pkgname-$_sudover"
+
+  ./configure \
+--prefix=/usr \
+--sbindir=/usr/bin \
+--libexecdir=/usr/lib \
+--with-rundir=/run/sudo \
+--with-vardir=/var/db/sudo \
+--with-logfac=auth \
+--enable-tmpfiles.d \
+--with-pam \
+--with-sssd \
+--with-ldap \
+--with-ldap-conf-file=/etc/openldap/ldap.conf \
+--with-env-editor \
+--with-passprompt="[sudo] password for %p: " \
+--with-all-insults
+  make
+}
+
+check() {
+  cd "$srcdir/$pkgname-$_sudover"
+  make check
+}
+
+package() {
+  cd "$srcdir/$pkgname-$_sudover"
+  make DESTDIR="$pkgdir" install
+
+  # Remove /run/sudo directory; we create it using systemd-tmpfiles
+  rmdir "$pkgdir/run/sudo"
+  rmdir "$pkgdir/run"
+
+  install -Dm644 "$srcdir/sudo.pam" "$pkgdir/etc/pam.d/sudo"
+
+  install -Dm644 doc/LICENSE "$pkgdir/usr/share/licenses/sudo/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: sudo/repos/testing-i686/sudo.install (from rev 276910, 
sudo/trunk/sudo.install)
===
--- testing-i686/sudo.install   (rev 0)
+++ testing-i686/sudo.install   2016-09-24 08:14:04 UTC (rev 276911)
@@ -0,0 +1,19 @@
+post_install() {
+  if type -P systemd-tmpfiles >/dev/null; then
+systemd-tmpfiles --create sudo.conf
+  fi
+}
+
+pre_upgrade() {
+  # Permissions of /var/db/sudo were changed from 0700 to 0711 in sudo 1.8.10
+  # http://www.sudo.ws/repos/sudo/rev/5c38d77a2d0c
+  if (($(vercmp $2 1.8.10-1) < 0)); then
+chmod 0711 var/db/sudo
+  fi
+}
+
+post_upgrade() {
+  post_install
+}
+
+# vim:set ts=2 sw=2 et:

Copied: sudo/repos/testing-i686/sudo.pam (from rev 276910, sudo/trunk/sudo.pam)
===
--- testing-i686/sudo.pam   (rev 0)
+++ testing-i686/sudo.pam   2016-09-24 08:14:04 UTC (rev 276911)
@@ -0,0 +1,4 @@
+#%PAM-1.0
+auth   include system-auth
+accountinclude system-auth
+sessioninclude system-auth

Copied: sudo/repos/testing-x86_64/PKGBUILD (from rev 276910, 
sudo/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-09-24 08:14:04 UTC (rev 276911)
@@ -0,0 +1,64 @@
+# $Id$
+# Maintainer: Evangelos Foutras 
+# Contributor: Allan McRae 
+# Contributor: Tom Newsom 
+
+pkgname=sudo
+_sudover=1.8.18
+pkgver=${_sudover/p/.p}
+pkgrel=1
+pkgdesc="Give certain users the ability to run some commands as root"
+arch=('i686' 'x86_64')
+url="https://www.sudo.ws/sudo/";
+license=('custom')
+groups=('base-devel')
+depends=('glibc' 'pam' 'libldap')
+backup=('etc/sudoers' 'etc/pam.d/sudo')
+install=$pkgn

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

2016-09-24 Thread Mihails Strasuns
Date: Saturday, September 24, 2016 @ 09:44:30
  Author: dicebot
Revision: 190236

upgpkg: dmd 2.071.2-1

DMD 2.071.2

Modified:
  dmd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-24 07:18:44 UTC (rev 190235)
+++ PKGBUILD2016-09-24 09:44:30 UTC (rev 190236)
@@ -9,7 +9,7 @@
 pkgdesc="D programming language compiler and standard library"
 groups=('dlang' 'dlang-dmd')
 pkgbase=dmd
-pkgver=2.071.1
+pkgver=2.071.2
 pkgrel=1
 arch=('i686' 'x86_64')
 url="http://www.dlang.org";


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

2016-09-24 Thread Mihails Strasuns
Date: Saturday, September 24, 2016 @ 09:44:47
  Author: dicebot
Revision: 190237

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-09-24 09:44:30 UTC (rev 190236)
+++ community-i686/PKGBUILD 2016-09-24 09:44:47 UTC (rev 190237)
@@ -1,98 +0,0 @@
-# Maintainer: Mihails Strasunse 
-# Contributor: Sven-Hendrik Haase 
-# Contributor: Chris Brannon 
-# Contributor: Andrea Scarpino 
-# Contributor: Anders Bergh 
-# Contributor: Alexander Fehr 
-
-pkgname=('dmd' 'libphobos-devel' 'libphobos')
-pkgdesc="D programming language compiler and standard library"
-groups=('dlang' 'dlang-dmd')
-pkgbase=dmd
-pkgver=2.071.1
-pkgrel=1
-arch=('i686' 'x86_64')
-url="http://www.dlang.org";
-makedepends=('git' 'gcc' 'make' 'dmd' 'libphobos-devel')
-source=("git+http://github.com/D-Programming-Language/dmd.git#tag=v$pkgver";
-
"git+http://github.com/D-Programming-Language/druntime.git#tag=v$pkgver";
-"git+http://github.com/D-Programming-Language/phobos.git#tag=v$pkgver";)
-sha1sums=('SKIP'
-  'SKIP'
-  'SKIP')
-
-[[ $CARCH == "x86_64" ]] && _archbits="64"
-[[ $CARCH == "i686" ]] && _archbits="32"
-
-build() {
-cd $srcdir/dmd/src
-echo $pkgver > ../VERSION
-make -f posix.mak MODEL=$_archbits RELEASE=1
-
-cd $srcdir/druntime
-make -f posix.mak MODEL=$_archbits DMD=$srcdir/dmd/src/dmd RELEASE=1
-
-cd $srcdir/phobos
-make -f posix.mak MODEL=$_archbits DMD=$srcdir/dmd/src/dmd RELEASE=1
-}
-
-package_dmd() {
-pkgdesc="The D programming language reference compiler"
-backup=('etc/dmd.conf')
-depends=('gcc' 'libphobos-devel')
-optdepends=(
-'dtools: collection of useful utilities for development in D'
-'libphobos: standard D library, Phobos; shared library'
-'gcc-multilib: to cross-compile 32-bit applications'
-)
-provides=("d-compiler=$pkgver")
-license=('custom')
-backup=('etc/dmd.conf')
-
-install -Dm755 $srcdir/dmd/src/dmd $pkgdir/usr/bin/dmd
-
-mkdir -p $pkgdir/etc
-echo -e "[Environment]\nDFLAGS=-I/usr/include/dlang/dmd -L-L/usr/lib 
-L-L/usr/lib32 -L--export-dynamic" > $pkgdir/etc/dmd.conf
-
-mkdir -p $pkgdir/usr/share/man/man1
-mkdir -p $pkgdir/usr/share/man/man5
-cp -r $srcdir/dmd/docs/man/man1/* $pkgdir/usr/share/man/man1/
-cp -r $srcdir/dmd/docs/man/man5/* $pkgdir/usr/share/man/man5/
-
-install -Dm644 $srcdir/dmd/src/backendlicense.txt 
$pkgdir/usr/share/licenses/$pkgname/LICENSE-backend
-install -Dm644 $srcdir/dmd/src/boostlicense.txt 
$pkgdir/usr/share/licenses/$pkgname/LICENSE-frontend
-
-mkdir -p $pkgdir/usr/share/d/samples/
-cp -r $srcdir/dmd/samples/* $pkgdir/usr/share/d/samples/
-
-find $pkgdir/usr -type f | xargs chmod 0644
-chmod 755 $pkgdir/usr/bin/*
-}
-
-package_libphobos-devel() {
-pkgdesc="The Phobos standard library for D programming language. Modules 
and static library."
-options=("staticlibs")
-provides=("d-runtime=$pkgver" "d-stdlib=$pkgver")
-license=("custom")
-
-install -Dm644 
$srcdir/phobos/generated/linux/release/$_archbits/libphobos2.a 
$pkgdir/usr/lib/libphobos2.a
-install -Dm644 $srcdir/phobos/LICENSE_1_0.txt 
$pkgdir/usr/share/licenses/$pkgname/LICENSE
-
-mkdir -p $pkgdir/usr/include/dlang/dmd
-cp -r $srcdir/phobos/{*.d,etc,std} $pkgdir/usr/include/dlang/dmd
-cp -r $srcdir/druntime/import/* $pkgdir/usr/include/dlang/dmd/
-
-find $pkgdir/usr -type f | xargs chmod 0644
-
-install -Dm644 $srcdir/druntime/LICENSE 
$pkgdir/usr/share/licenses/$pkgname/LICENSE-druntime
-install -Dm644 $srcdir/phobos/LICENSE_1_0.txt 
$pkgdir/usr/share/licenses/$pkgname/LICENSE-phobos
-}
-
-package_libphobos() {
-pkgdesc="The Phobos standard library for D programming language."
-depends=("curl")
-license=("custom")
-
-install -Dm644 
$srcdir/phobos/generated/linux/release/$_archbits/libphobos2.so 
$pkgdir/usr/lib/libphobos2.so
-install -Dm644 $srcdir/phobos/LICENSE_1_0.txt 
$pkgdir/usr/share/licenses/$pkgname/LICENSE
-}

Copied: dmd/repos/community-i686/PKGBUILD (from rev 190236, dmd/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-09-24 09:44:47 UTC (rev 190237)
@@ -0,0 +1,98 @@
+# Maintai

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

2016-09-24 Thread Mihails Strasuns
Date: Saturday, September 24, 2016 @ 10:23:56
  Author: dicebot
Revision: 190238

upgpkg: lib32-libphobos 2.071.2-1

DMD 2.071.2

Modified:
  lib32-libphobos/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-24 09:44:47 UTC (rev 190237)
+++ PKGBUILD2016-09-24 10:23:56 UTC (rev 190238)
@@ -7,7 +7,7 @@
 
 pkgname=('lib32-libphobos' 'lib32-libphobos-devel')
 groups=('dlang' 'dlang-dmd')
-pkgver=2.071.1
+pkgver=2.071.2
 pkgrel=1
 pkgdesc="Libraries for cross-compiling 32-bit D apps from 64-bit system"
 arch=('x86_64')


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

2016-09-24 Thread Mihails Strasuns
Date: Saturday, September 24, 2016 @ 10:24:07
  Author: dicebot
Revision: 190239

archrelease: copy trunk to community-x86_64

Added:
  lib32-libphobos/repos/community-x86_64/
  lib32-libphobos/repos/community-x86_64/PKGBUILD
(from rev 190238, lib32-libphobos/trunk/PKGBUILD)

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

Copied: lib32-libphobos/repos/community-x86_64/PKGBUILD (from rev 190238, 
lib32-libphobos/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-09-24 10:24:07 UTC (rev 190239)
@@ -0,0 +1,51 @@
+# Maintainer: Mihails Strasuns 
+# Contributor: Sven-Hendrik Haase 
+# Contributor: Chris Brannon 
+# Contributor: Andrea Scarpino 
+# Contributor: Anders Bergh 
+# Contributor: Alexander Fehr 
+
+pkgname=('lib32-libphobos' 'lib32-libphobos-devel')
+groups=('dlang' 'dlang-dmd')
+pkgver=2.071.2
+pkgrel=1
+pkgdesc="Libraries for cross-compiling 32-bit D apps from 64-bit system"
+arch=('x86_64')
+groups=('dlang' 'dlang-dmd')
+url="http://www.dlang.org";
+source=("git+http://github.com/D-Programming-Language/phobos.git#tag=v$pkgver";
+
"git+http://github.com/D-Programming-Language/druntime.git#tag=v$pkgver";)
+sha1sums=('SKIP'
+  'SKIP')
+makedepends=('dmd' 'git')
+depends=('lib32-gcc-libs')
+license=('custom')
+
+build() {
+cd $srcdir/druntime
+make -f posix.mak MODEL=32 RELEASE=1 DMD=dmd
+
+cd $srcdir/phobos
+make -f posix.mak MODEL=32 RELEASE=1 DMD=dmd
+}
+
+package_lib32-libphobos-devel() {
+pkgdesc="The Phobos standard library for D programming language. Modules 
and static library (32-bit)"
+depends=("dmd" "gcc-multilib")
+options=("staticlibs")
+provides=("d-runtime=$pkgver" "d-stdlib=$pkgver")
+
+install -Dm644 $srcdir/phobos/generated/linux/release/32/libphobos2.a 
$pkgdir/usr/lib32/libphobos2.a
+
+install -Dm644 $srcdir/druntime/LICENSE 
$pkgdir/usr/share/licenses/$pkgname/LICENSE-druntime
+install -Dm644 $srcdir/phobos/LICENSE_1_0.txt 
$pkgdir/usr/share/licenses/$pkgname/LICENSE-phobos
+}
+
+package_lib32-libphobos() {
+pkgdesc="The Phobos standard library for D programming language (32-bit)"
+
+install -Dm644 $srcdir/phobos/generated/linux/release/32/libphobos2.so 
$pkgdir/usr/lib32/libphobos2.so
+
+install -Dm644 $srcdir/druntime/LICENSE 
$pkgdir/usr/share/licenses/$pkgname/LICENSE-druntime
+install -Dm644 $srcdir/phobos/LICENSE_1_0.txt 
$pkgdir/usr/share/licenses/$pkgname/LICENSE-phobos
+}


[arch-commits] Commit in suitesparse/trunk (PKGBUILD suitesparse-link-tbb.patch)

2016-09-24 Thread Antonio Rojas
Date: Saturday, September 24, 2016 @ 11:38:12
  Author: arojas
Revision: 276912

Update to 4.5.3

Added:
  suitesparse/trunk/suitesparse-link-tbb.patch
Modified:
  suitesparse/trunk/PKGBUILD

+
 PKGBUILD   |   81 ++-
 suitesparse-link-tbb.patch |   11 +
 2 files changed, 30 insertions(+), 62 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-09-24 08:14:04 UTC (rev 276911)
+++ PKGBUILD2016-09-24 11:38:12 UTC (rev 276912)
@@ -2,7 +2,7 @@
 # Maintainer: Ronald van Haren 
 
 pkgname=suitesparse
-pkgver=4.4.5
+pkgver=4.5.3
 pkgrel=1
 pkgdesc="A collection of sparse matrix libraries"
 url="http://faculty.cse.tamu.edu/davis/suitesparse.html";
@@ -11,79 +11,36 @@
 provides=('umfpack')
 replaces=('umfpack')
 depends=('blas' 'lapack' 'intel-tbb')
-makedepends=('gcc-fortran')
+makedepends=('gcc-fortran' 'cmake' 'chrpath')
 license=('GPL')
 options=('staticlibs')
-source=("http://faculty.cse.tamu.edu/davis/SuiteSparse/SuiteSparse-$pkgver.tar.gz";)
-sha1sums=('7666883423f56de760546a8be8795d5ac9d66c19')
+source=("http://faculty.cse.tamu.edu/davis/SuiteSparse/SuiteSparse-$pkgver.tar.gz";
 suitesparse-link-tbb.patch)
+sha1sums=('2403007be38266e3607edfbf3833bee7f6bcb0f1'
+  '4f0b3836e8c3c1ec5be01f988f136cee4a2cb936')
 
 prepare() {
-   export CFLAGS=" ${CFLAGS} -DNPARTITION -fPIC -DHAVE_TBB"
+# Fix linking with intel-tbb
+  cd SuiteSparse
+  patch -p1 -i ../suitesparse-link-tbb.patch
 }
 
 build() {
cd "$srcdir"/SuiteSparse
-   
-   make -C SuiteSparse_config/xerbla
-   make -C SuiteSparse_config 
-   for _lib in AMD CAMD COLAMD BTF KLU LDL CCOLAMD UMFPACK CHOLMOD CXSparse 
SPQR; do
-  make -C ${_lib} library
-   done
-   mkdir shared
-   # version numbers can be found in individual changelog files
-   ld -shared -soname libsuitesparseconfig.so.4 -o \
-  shared/libsuitesparseconfig.so.4.4.4 --whole-archive \
-  SuiteSparse_config/libsuitesparseconfig.a -lm && \
-  ln -sf libsuitesparseconfig.so.4.4.4 shared/libsuitesparseconfig.so
-   ld -shared -soname libamd.so.2 -o shared/libamd.so.2.4.1 \
-  --whole-archive AMD/Lib/libamd.a -L./shared -lsuitesparseconfig -lm && \
-  ln -sf libamd.so.2.4.1 shared/libamd.so
-   ld -shared -soname libcamd.so.2 -o shared/libcamd.so.2.4.1 \
-  --whole-archive CAMD/Lib/libcamd.a -L./shared -lsuitesparseconfig -lm && 
\
-  ln -sf libcamd.so.2.4.1 shared/libcamd.so
-   ld -shared -soname libcolamd.so.2 -o shared/libcolamd.so.2.9.1 \
-  --whole-archive COLAMD/Lib/libcolamd.a -L./shared -lsuitesparseconfig 
-lm \
-  && ln -sf libcolamd.so.2.9.1 shared/libcolamd.so
-   ld -shared -soname libccolamd.so.2 -o shared/libccolamd.so.2.9.1 \
-  --whole-archive CCOLAMD/Lib/libccolamd.a -L./shared -lsuitesparseconfig 
-lm \
-  && ln -sf libccolamd.so.2.9.1 shared/libccolamd.so
-   ld -shared -soname libbtf.so.1 -o shared/libbtf.so.1.2.1 \
-  --whole-archive BTF/Lib/libbtf.a && \
-  ln -sf libbtf.so.1.2.1 shared/libbtf.so
-   ld -shared -soname libldl.so.2 -o shared/libldl.so.2.2.1 \
-  --whole-archive LDL/Lib/libldl.a && \
-  ln -sf libldl.so.2.2.1 shared/libldl.so
-   ld -shared -soname libcholmod.so.3 -o shared/libcholmod.so.3.0.5 \
-  --whole-archive CHOLMOD/Lib/libcholmod.a -lblas -llapack \
-  -L./shared -lamd -lcamd -lcolamd -lccolamd -lsuitesparseconfig -lm && \
-  ln -sf libcholmod.so.3.0.5 shared/libcholmod.so
-   ld -shared -soname libspqr.so.2 -o shared/libspqr.so.2.0.1 \
-  --whole-archive SPQR/Lib/libspqr.a -lblas -llapack \
-  -L./shared -lcholmod -lsuitesparseconfig -lm && \
-  ln -sf libspqr.so.2.0.1 shared/libspqr.so
-   ld -shared -soname libcxsparse.so.3 -o shared/libcxsparse.so.3.1.4 \
-  --whole-archive CXSparse/Lib/libcxsparse.a && \
-  ln -sf libcxsparse.so.3.1.4 shared/libcxsparse.so
-   ld -shared -soname libklu.so.1 -o shared/libklu.so.1.3.2 \
-  --whole-archive KLU/Lib/libklu.a -L./shared -lamd -lbtf \
-  -lsuitesparseconfig -lm && ln -sf libklu.so.1.3.2 shared/libklu.so
-   ld -shared -soname libumfpack.so.5 -o shared/libumfpack.so.5.7.1 \
-  --whole-archive UMFPACK/Lib/libumfpack.a -lblas -llapack -L./shared \
-  -lamd -lcholmod -lsuitesparseconfig -lm && \
-  ln -sf libumfpack.so.5.7.1 shared/libumfpack.so
+
+   BLAS=-lblas TBB=-ltbb SPQR_CONFIG=-DHAVE_TBB make
 }
 
 
 package() {
cd "${srcdir}"/SuiteSparse
-   install -dm755 "${pkgdir}"/usr/{lib,include}
-   
-   for _lib in SuiteSparse_config AMD CAMD COLAMD BTF KLU LDL CCOLAMD UMFPACK 
CHOLMOD CXSparse SPQR; do
-  make -C ${_lib} INSTALL_LIB="${pkgdir}"/usr/lib 
INSTALL_INCLUDE="${pkgdir}"/usr/include install
-   done
+   install -dm755 "${pkgdir}"/usr
 
-   rm -f "${pkgdir}"/usr/lib/*.a
-   cp -d shared/*.so* "${pkgdir}"/usr/lib/
-   ldconfig -n "${pkgdir}"/usr/lib/
-   chmod 644 "${pkgdir}"/usr/include/*.{h,hpp}
+   pushd 

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

2016-09-24 Thread Antonio Rojas
Date: Saturday, September 24, 2016 @ 11:38:48
  Author: arojas
Revision: 276913

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

Added:
  suitesparse/repos/testing-i686/
  suitesparse/repos/testing-i686/PKGBUILD
(from rev 276912, suitesparse/trunk/PKGBUILD)
  suitesparse/repos/testing-i686/suitesparse-link-tbb.patch
(from rev 276912, suitesparse/trunk/suitesparse-link-tbb.patch)
  suitesparse/repos/testing-x86_64/
  suitesparse/repos/testing-x86_64/PKGBUILD
(from rev 276912, suitesparse/trunk/PKGBUILD)
  suitesparse/repos/testing-x86_64/suitesparse-link-tbb.patch
(from rev 276912, suitesparse/trunk/suitesparse-link-tbb.patch)

---+
 testing-i686/PKGBUILD |   46 
 testing-i686/suitesparse-link-tbb.patch   |   11 ++
 testing-x86_64/PKGBUILD   |   46 
 testing-x86_64/suitesparse-link-tbb.patch |   11 ++
 4 files changed, 114 insertions(+)

Copied: suitesparse/repos/testing-i686/PKGBUILD (from rev 276912, 
suitesparse/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-09-24 11:38:48 UTC (rev 276913)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Ronald van Haren 
+
+pkgname=suitesparse
+pkgver=4.5.3
+pkgrel=1
+pkgdesc="A collection of sparse matrix libraries"
+url="http://faculty.cse.tamu.edu/davis/suitesparse.html";
+arch=('i686' 'x86_64')
+conflicts=('umfpack')
+provides=('umfpack')
+replaces=('umfpack')
+depends=('blas' 'lapack' 'intel-tbb')
+makedepends=('gcc-fortran' 'cmake' 'chrpath')
+license=('GPL')
+options=('staticlibs')
+source=("http://faculty.cse.tamu.edu/davis/SuiteSparse/SuiteSparse-$pkgver.tar.gz";
 suitesparse-link-tbb.patch)
+sha1sums=('2403007be38266e3607edfbf3833bee7f6bcb0f1'
+  '4f0b3836e8c3c1ec5be01f988f136cee4a2cb936')
+
+prepare() {
+# Fix linking with intel-tbb
+  cd SuiteSparse
+  patch -p1 -i ../suitesparse-link-tbb.patch
+}
+
+build() {
+   cd "$srcdir"/SuiteSparse
+
+   BLAS=-lblas TBB=-ltbb SPQR_CONFIG=-DHAVE_TBB make
+}
+
+
+package() {
+   cd "${srcdir}"/SuiteSparse
+   install -dm755 "${pkgdir}"/usr
+
+   pushd metis-5.1.0
+ make install DESTDIR="$pkgdir"
+ mv "$pkgdir"/build/suitesparse/src/SuiteSparse/* "$pkgdir"/usr && rm -r 
"$pkgdir"/build
+   popd
+   BLAS=-lblas TBB=-ltbb SPQR_CONFIG=-DHAVE_TBB make 
INSTALL_LIB="${pkgdir}"/usr/lib INSTALL_INCLUDE="${pkgdir}"/usr/include install
+
+   # fix RPATH
+   chrpath -d "$pkgdir"/usr/lib/*
+}

Copied: suitesparse/repos/testing-i686/suitesparse-link-tbb.patch (from rev 
276912, suitesparse/trunk/suitesparse-link-tbb.patch)
===
--- testing-i686/suitesparse-link-tbb.patch (rev 0)
+++ testing-i686/suitesparse-link-tbb.patch 2016-09-24 11:38:48 UTC (rev 
276913)
@@ -0,0 +1,11 @@
+--- SuiteSparse/SPQR/Lib/Makefile.orig 2016-09-24 09:36:59.588640845 +
 SuiteSparse/SPQR/Lib/Makefile  2016-09-24 09:37:14.248588339 +
+@@ -13,7 +13,7 @@
+ include ../../SuiteSparse_config/SuiteSparse_config.mk
+ 
+ # SPQR depends on CHOLMOD, AMD, COLAMD, LAPACK, the BLAS and 
SuiteSparse_config
+-LDLIBS += -lamd -lcolamd -lcholmod -lsuitesparseconfig $(LAPACK) $(BLAS)
++LDLIBS += -lamd -lcolamd -lcholmod -lsuitesparseconfig $(LAPACK) $(BLAS) 
$(TBB)
+ 
+ # compile and install in SuiteSparse/lib
+ library:

Copied: suitesparse/repos/testing-x86_64/PKGBUILD (from rev 276912, 
suitesparse/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-09-24 11:38:48 UTC (rev 276913)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Ronald van Haren 
+
+pkgname=suitesparse
+pkgver=4.5.3
+pkgrel=1
+pkgdesc="A collection of sparse matrix libraries"
+url="http://faculty.cse.tamu.edu/davis/suitesparse.html";
+arch=('i686' 'x86_64')
+conflicts=('umfpack')
+provides=('umfpack')
+replaces=('umfpack')
+depends=('blas' 'lapack' 'intel-tbb')
+makedepends=('gcc-fortran' 'cmake' 'chrpath')
+license=('GPL')
+options=('staticlibs')
+source=("http://faculty.cse.tamu.edu/davis/SuiteSparse/SuiteSparse-$pkgver.tar.gz";
 suitesparse-link-tbb.patch)
+sha1sums=('2403007be38266e3607edfbf3833bee7f6bcb0f1'
+  '4f0b3836e8c3c1ec5be01f988f136cee4a2cb936')
+
+prepare() {
+# Fix linking with intel-tbb
+  cd SuiteSparse
+  patch -p1 -i ../suitesparse-link-tbb.patch
+}
+
+build() {
+   cd "$srcdir"/SuiteSparse
+
+   BLAS=-lblas TBB=-ltbb SPQR_CONFIG=-DHAVE_TBB make
+}
+
+
+package() {
+   cd "${srcdir}"/SuiteSparse
+   install -dm755 "${pkgdir}"/usr
+
+   pushd metis-5.1.0
+ make install DESTDIR="$pkgdir"
+ mv "$pkgdir"/build/suitesparse/src/SuiteSparse/* "$pkgdir"/usr && rm -r 
"$pkgdir"/build
+   popd
+   BLAS=-lblas TBB=-ltbb SPQR_CONFIG=-DHAVE_TBB 

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

2016-09-24 Thread Jerome Leclanche
Date: Saturday, September 24, 2016 @ 12:06:22
  Author: jleclanche
Revision: 190240

upgpkg: liblxqt 0.11.0-1

Upstream release 0.11.0

Modified:
  liblxqt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-24 10:24:07 UTC (rev 190239)
+++ PKGBUILD2016-09-24 12:06:22 UTC (rev 190240)
@@ -2,23 +2,26 @@
 # Maintainer: Jerome Leclanche 
 
 pkgname=liblxqt
-pkgver=0.10.0
-pkgrel=7
+pkgver=0.11.0
+pkgrel=1
 pkgdesc="Common base library for LXQt components."
 arch=("i686" "x86_64")
 url="http://lxqt.org";
 license=("GPL2")
 depends=("kwindowsystem" "libqtxdg")
-makedepends=("cmake" "qt5-tools")
+makedepends=("cmake" "qt5-tools" "git" "libxss")
 source=(
-   "https://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz";
-   "https://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz.asc";
+   
"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz";
+   
"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz.asc";
 )
 sha256sums=(
-   "77a42a9ae79d0887bf09cba0c6aaf59ba71edb0bc807736384d1072254aace7c"
+   "bc553bf53f3083886b5456a3f22e227f68ea945d8ee0dd31dd24f765bf879fe2"
"SKIP"
 )
-validpgpkeys=("169704C6FB490C6892C7F23C37E0AF1FDA48F373")
+validpgpkeys=(
+   "169704C6FB490C6892C7F23C37E0AF1FDA48F373"  # Jerome Leclanche 

+   "7C733BA5F585AAD669E4D23A42C9C8D3AF5EA5E3"  # Alf Gaida 

+)
 
 
 build() {


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

2016-09-24 Thread Antonio Rojas
Date: Saturday, September 24, 2016 @ 12:13:14
  Author: arojas
Revision: 190241

Update to 1.16.0

Modified:
  libmatekbd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-24 12:06:22 UTC (rev 190240)
+++ PKGBUILD2016-09-24 12:13:14 UTC (rev 190241)
@@ -1,9 +1,9 @@
 # Contributor: Martin Wimpress 
 
-_ver=1.14
+_ver=1.16
 pkgbase=libmatekbd
 pkgname=(${pkgbase} ${pkgbase}-gtk3)
-pkgver=${_ver}.1
+pkgver=${_ver}.0
 pkgrel=1
 pkgdesc="MATE keyboard library"
 url="http://mate-desktop.org";
@@ -12,7 +12,7 @@
 depends=('gtk2' 'gtk3' 'libxklavier')
 makedepends=('intltool')
 
source=("http://pub.mate-desktop.org/releases/${_ver}/${pkgname}-${pkgver}.tar.xz";)
-sha1sums=('71fcb3a85ead07dcbb7f4ac3516590dd03ba483f')
+sha1sums=('3d73769c887cf709b0615808679fdac02491cd0a')
 
 prepare() {
 cd "${srcdir}"


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

2016-09-24 Thread Antonio Rojas
Date: Saturday, September 24, 2016 @ 12:13:40
  Author: arojas
Revision: 190242

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

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

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

Copied: libmatekbd/repos/community-staging-i686/PKGBUILD (from rev 190241, 
libmatekbd/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-09-24 12:13:40 UTC (rev 190242)
@@ -0,0 +1,61 @@
+# Contributor: Martin Wimpress 
+
+_ver=1.16
+pkgbase=libmatekbd
+pkgname=(${pkgbase} ${pkgbase}-gtk3)
+pkgver=${_ver}.0
+pkgrel=1
+pkgdesc="MATE keyboard library"
+url="http://mate-desktop.org";
+arch=('i686' 'x86_64')
+license=('LGPL')
+depends=('gtk2' 'gtk3' 'libxklavier')
+makedepends=('intltool')
+source=("http://pub.mate-desktop.org/releases/${_ver}/${pkgname}-${pkgver}.tar.xz";)
+sha1sums=('3d73769c887cf709b0615808679fdac02491cd0a')
+
+prepare() {
+cd "${srcdir}"
+mv "${pkgname}-${pkgver}" "${pkgbase}-gtk2"
+cp -a "${pkgbase}-gtk2" "${pkgbase}-gtk3"
+}
+
+build() {
+cd "${srcdir}/${pkgbase}-gtk2"
+./configure \
+--prefix=/usr \
+--with-gtk=2.0
+
+#https://bugzilla.gnome.org/show_bug.cgi?id=656231
+sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+make
+
+cd "${srcdir}/${pkgbase}-gtk3"
+./configure \
+--prefix=/usr \
+--with-gtk=3.0
+
+#https://bugzilla.gnome.org/show_bug.cgi?id=656231
+sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+make
+}
+
+package_libmatekbd() {
+pkgdesc+=' (GTK2 version)'
+conflicts=("${pkgbase}-gtk3")
+depends=('dconf' 'gtk2' 'libxklavier')
+
+cd "${srcdir}/${pkgbase}-gtk2"
+make DESTDIR="${pkgdir}" install
+}
+
+package_libmatekbd-gtk3() {
+pkgdesc+=' (GTK3 version)'
+conflicts=("${pkgbase}")
+depends=('gtk3' 'libxklavier')
+
+cd "${srcdir}/${pkgbase}-gtk3"
+make DESTDIR="${pkgdir}" install
+}

Copied: libmatekbd/repos/community-staging-x86_64/PKGBUILD (from rev 190241, 
libmatekbd/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-09-24 12:13:40 UTC (rev 190242)
@@ -0,0 +1,61 @@
+# Contributor: Martin Wimpress 
+
+_ver=1.16
+pkgbase=libmatekbd
+pkgname=(${pkgbase} ${pkgbase}-gtk3)
+pkgver=${_ver}.0
+pkgrel=1
+pkgdesc="MATE keyboard library"
+url="http://mate-desktop.org";
+arch=('i686' 'x86_64')
+license=('LGPL')
+depends=('gtk2' 'gtk3' 'libxklavier')
+makedepends=('intltool')
+source=("http://pub.mate-desktop.org/releases/${_ver}/${pkgname}-${pkgver}.tar.xz";)
+sha1sums=('3d73769c887cf709b0615808679fdac02491cd0a')
+
+prepare() {
+cd "${srcdir}"
+mv "${pkgname}-${pkgver}" "${pkgbase}-gtk2"
+cp -a "${pkgbase}-gtk2" "${pkgbase}-gtk3"
+}
+
+build() {
+cd "${srcdir}/${pkgbase}-gtk2"
+./configure \
+--prefix=/usr \
+--with-gtk=2.0
+
+#https://bugzilla.gnome.org/show_bug.cgi?id=656231
+sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+make
+
+cd "${srcdir}/${pkgbase}-gtk3"
+./configure \
+--prefix=/usr \
+--with-gtk=3.0
+
+#https://bugzilla.gnome.org/show_bug.cgi?id=656231
+sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+make
+}
+
+package_libmatekbd() {
+pkgdesc+=' (GTK2 version)'
+conflicts=("${pkgbase}-gtk3")
+depends=('dconf' 'gtk2' 'libxklavier')
+
+cd "${srcdir}/${pkgbase}-gtk2"
+make DESTDIR="${pkgdir}" install
+}
+
+package_libmatekbd-gtk3() {
+pkgdesc+=' (GTK3 version)'
+conflicts=("${pkgbase}")
+depends=('gtk3' 'libxklavier')
+
+cd "${srcdir}/${pkgbase}-gtk3"
+make DESTDIR="${pkgdir}" install
+}


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

2016-09-24 Thread Antonio Rojas
Date: Saturday, September 24, 2016 @ 12:15:03
  Author: arojas
Revision: 190243

Update to 1.16.0

Modified:
  libmatemixer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-24 12:13:40 UTC (rev 190242)
+++ PKGBUILD2016-09-24 12:15:03 UTC (rev 190243)
@@ -1,6 +1,6 @@
 # Contributor: Martin Wimpress 
 
-_ver=1.14
+_ver=1.16
 pkgname=libmatemixer
 pkgver=${_ver}.0
 pkgrel=1
@@ -11,7 +11,7 @@
 depends=('glib2' 'libpulse')
 makedepends=('intltool')
 
source=("http://pub.mate-desktop.org/releases/${_ver}/${pkgname}-${pkgver}.tar.xz";)
-sha1sums=('c2537cce473225abacccd125e280cba5e61a3c93')
+sha1sums=('72895e05834856c6ed3185ae152a9c8030ccdf54')
 
 build() {
 cd "${srcdir}/${pkgname}-${pkgver}"


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

2016-09-24 Thread Antonio Rojas
Date: Saturday, September 24, 2016 @ 12:15:29
  Author: arojas
Revision: 190244

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

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

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

Copied: libmatemixer/repos/community-staging-i686/PKGBUILD (from rev 190243, 
libmatemixer/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-09-24 12:15:29 UTC (rev 190244)
@@ -0,0 +1,32 @@
+# Contributor: Martin Wimpress 
+
+_ver=1.16
+pkgname=libmatemixer
+pkgver=${_ver}.0
+pkgrel=1
+pkgdesc="Mixer library for MATE Desktop"
+url="http://mate-desktop.org";
+arch=('i686' 'x86_64')
+license=('LGPL')
+depends=('glib2' 'libpulse')
+makedepends=('intltool')
+source=("http://pub.mate-desktop.org/releases/${_ver}/${pkgname}-${pkgver}.tar.xz";)
+sha1sums=('72895e05834856c6ed3185ae152a9c8030ccdf54')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--localstatedir=/var
+
+#https://bugzilla.gnome.org/show_bug.cgi?id=656231
+sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+make
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+make DESTDIR="${pkgdir}" install
+}

Copied: libmatemixer/repos/community-staging-x86_64/PKGBUILD (from rev 190243, 
libmatemixer/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-09-24 12:15:29 UTC (rev 190244)
@@ -0,0 +1,32 @@
+# Contributor: Martin Wimpress 
+
+_ver=1.16
+pkgname=libmatemixer
+pkgver=${_ver}.0
+pkgrel=1
+pkgdesc="Mixer library for MATE Desktop"
+url="http://mate-desktop.org";
+arch=('i686' 'x86_64')
+license=('LGPL')
+depends=('glib2' 'libpulse')
+makedepends=('intltool')
+source=("http://pub.mate-desktop.org/releases/${_ver}/${pkgname}-${pkgver}.tar.xz";)
+sha1sums=('72895e05834856c6ed3185ae152a9c8030ccdf54')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--localstatedir=/var
+
+#https://bugzilla.gnome.org/show_bug.cgi?id=656231
+sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+make
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+make DESTDIR="${pkgdir}" install
+}


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

2016-09-24 Thread Jerome Leclanche
Date: Saturday, September 24, 2016 @ 12:23:22
  Author: jleclanche
Revision: 190245

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-09-24 12:15:29 UTC (rev 190244)
+++ community-i686/PKGBUILD 2016-09-24 12:23:22 UTC (rev 190245)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Jerome Leclanche 
-
-pkgname=liblxqt
-pkgver=0.10.0
-pkgrel=7
-pkgdesc="Common base library for LXQt components."
-arch=("i686" "x86_64")
-url="http://lxqt.org";
-license=("GPL2")
-depends=("kwindowsystem" "libqtxdg")
-makedepends=("cmake" "qt5-tools")
-source=(
-   "https://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz";
-   "https://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz.asc";
-)
-sha256sums=(
-   "77a42a9ae79d0887bf09cba0c6aaf59ba71edb0bc807736384d1072254aace7c"
-   "SKIP"
-)
-validpgpkeys=("169704C6FB490C6892C7F23C37E0AF1FDA48F373")
-
-
-build() {
-   mkdir -p build
-   cd build
-   cmake "$srcdir/$pkgname-$pkgver" \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DCMAKE_INSTALL_LIBDIR=lib
-   make
-}
-
-package() {
-   cd build
-   make DESTDIR="$pkgdir" install
-}

Copied: liblxqt/repos/community-i686/PKGBUILD (from rev 190244, 
liblxqt/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-09-24 12:23:22 UTC (rev 190245)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Jerome Leclanche 
+
+pkgname=liblxqt
+pkgver=0.11.0
+pkgrel=1
+pkgdesc="Common base library for LXQt components."
+arch=("i686" "x86_64")
+url="http://lxqt.org";
+license=("GPL2")
+depends=("kwindowsystem" "libqtxdg")
+makedepends=("cmake" "qt5-tools" "git" "libxss")
+source=(
+   
"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz";
+   
"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz.asc";
+)
+sha256sums=(
+   "bc553bf53f3083886b5456a3f22e227f68ea945d8ee0dd31dd24f765bf879fe2"
+   "SKIP"
+)
+validpgpkeys=(
+   "169704C6FB490C6892C7F23C37E0AF1FDA48F373"  # Jerome Leclanche 

+   "7C733BA5F585AAD669E4D23A42C9C8D3AF5EA5E3"  # Alf Gaida 

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

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-09-24 12:15:29 UTC (rev 190244)
+++ community-x86_64/PKGBUILD   2016-09-24 12:23:22 UTC (rev 190245)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Jerome Leclanche 
-
-pkgname=liblxqt
-pkgver=0.10.0
-pkgrel=7
-pkgdesc="Common base library for LXQt components."
-arch=("i686" "x86_64")
-url="http://lxqt.org";
-license=("GPL2")
-depends=("kwindowsystem" "libqtxdg")
-makedepends=("cmake" "qt5-tools")
-source=(
-   "https://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz";
-   "https://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz.asc";
-)
-sha256sums=(
-   "77a42a9ae79d0887bf09cba0c6aaf59ba71edb0bc807736384d1072254aace7c"
-   "SKIP"
-)
-validpgpkeys=("169704C6FB490C6892C7F23C37E0AF1FDA48F373")
-
-
-build() {
-   mkdir -p build
-   cd build
-   cmake "$srcdir/$pkgname-$pkgver" \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DCMAKE_INSTALL_LIBDIR=lib
-   make
-}
-
-package() {
-   cd build
-   make DESTDIR="$pkgdir" install
-}

Copied: liblxqt/repos/community-x86_64/PKGBUILD (from rev 190244, 
liblxqt/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-09-24 12:23:22 UTC (rev 190245)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Jerome Leclanche 
+
+pkgname=liblxqt
+pkgver=0.11.0
+pkgrel=1
+pkgdesc="Common base library for LXQt components."
+arch=("i686" "x86_64")
+url="http://lxqt.org";
+license=("GPL2")
+depends=("kwindowsystem" "libqtxdg")
+makedepends=("cmake" "qt5-tools" "git" "libxss")
+source=(
+   
"https://github.com/lxde/$pkgname/releases/downloa

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

2016-09-24 Thread Antonio Rojas
Date: Saturday, September 24, 2016 @ 12:24:05
  Author: arojas
Revision: 190246

Update to 1.16.0

Modified:
  libmateweather/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-24 12:23:22 UTC (rev 190245)
+++ PKGBUILD2016-09-24 12:24:05 UTC (rev 190246)
@@ -1,9 +1,9 @@
 # Contributor: Martin Wimpress 
 
-_ver=1.14
+_ver=1.16
 pkgbase=libmateweather
 pkgname=(${pkgbase} ${pkgbase}-gtk3)
-pkgver=${_ver}.3
+pkgver=${_ver}.0
 pkgrel=1
 pkgdesc="Provides access to weather information from the Internet."
 url="http://mate-desktop.org";
@@ -12,7 +12,7 @@
 depends=('gtk2' 'gtk3')
 makedepends=('intltool')
 
source=("http://pub.mate-desktop.org/releases/${_ver}/${pkgname}-${pkgver}.tar.xz";)
-sha1sums=('0bf0b4b06ab9b43782b982c46c5876eb02410ef6')
+sha1sums=('db775a80ec76ea0f8f9277a4b2011471eabaee65')
 
 prepare() {
 cd "${srcdir}"


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

2016-09-24 Thread Jerome Leclanche
Date: Saturday, September 24, 2016 @ 12:24:56
  Author: jleclanche
Revision: 190249

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-09-24 12:24:51 UTC (rev 190248)
+++ community-i686/PKGBUILD 2016-09-24 12:24:56 UTC (rev 190249)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Jerome Leclanche 
-
-pkgname=liblxqt
-pkgver=0.11.0
-pkgrel=1
-pkgdesc="Common base library for LXQt components."
-arch=("i686" "x86_64")
-url="http://lxqt.org";
-license=("GPL2")
-depends=("kwindowsystem" "libqtxdg")
-makedepends=("cmake" "qt5-tools" "git" "libxss")
-source=(
-   
"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz";
-   
"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz.asc";
-)
-sha256sums=(
-   "bc553bf53f3083886b5456a3f22e227f68ea945d8ee0dd31dd24f765bf879fe2"
-   "SKIP"
-)
-validpgpkeys=(
-   "169704C6FB490C6892C7F23C37E0AF1FDA48F373"  # Jerome Leclanche 

-   "7C733BA5F585AAD669E4D23A42C9C8D3AF5EA5E3"  # Alf Gaida 

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

Copied: liblxqt/repos/community-i686/PKGBUILD (from rev 190248, 
liblxqt/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-09-24 12:24:56 UTC (rev 190249)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Jerome Leclanche 
+
+pkgname=liblxqt
+pkgver=0.11.0
+pkgrel=2
+pkgdesc="Common base library for LXQt components."
+arch=("i686" "x86_64")
+url="http://lxqt.org";
+license=("GPL2")
+depends=("kwindowsystem" "libqtxdg" "libxss")
+makedepends=("cmake" "qt5-tools" "git" "libxss")
+source=(
+   
"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz";
+   
"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz.asc";
+)
+sha256sums=(
+   "bc553bf53f3083886b5456a3f22e227f68ea945d8ee0dd31dd24f765bf879fe2"
+   "SKIP"
+)
+validpgpkeys=(
+   "169704C6FB490C6892C7F23C37E0AF1FDA48F373"  # Jerome Leclanche 

+   "7C733BA5F585AAD669E4D23A42C9C8D3AF5EA5E3"  # Alf Gaida 

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

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-09-24 12:24:51 UTC (rev 190248)
+++ community-x86_64/PKGBUILD   2016-09-24 12:24:56 UTC (rev 190249)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Jerome Leclanche 
-
-pkgname=liblxqt
-pkgver=0.11.0
-pkgrel=1
-pkgdesc="Common base library for LXQt components."
-arch=("i686" "x86_64")
-url="http://lxqt.org";
-license=("GPL2")
-depends=("kwindowsystem" "libqtxdg")
-makedepends=("cmake" "qt5-tools" "git" "libxss")
-source=(
-   
"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz";
-   
"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz.asc";
-)
-sha256sums=(
-   "bc553bf53f3083886b5456a3f22e227f68ea945d8ee0dd31dd24f765bf879fe2"
-   "SKIP"
-)
-validpgpkeys=(
-   "169704C6FB490C6892C7F23C37E0AF1FDA48F373"  # Jerome Leclanche 

-   "7C733BA5F585AAD669E4D23A42C9C8D3AF5EA5E3"  # Alf Gaida 

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

Copied: liblxqt/repos/community-x86_64/PKGBUILD (from rev 190248, 
liblxqt/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-09-24 12:24:56 UTC (rev 190249)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Jerome Leclanche

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

2016-09-24 Thread Jerome Leclanche
Date: Saturday, September 24, 2016 @ 12:24:51
  Author: jleclanche
Revision: 190248

upgpkg: liblxqt 0.11.0-2

Upstream release 0.11.0

Modified:
  liblxqt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-24 12:24:41 UTC (rev 190247)
+++ PKGBUILD2016-09-24 12:24:51 UTC (rev 190248)
@@ -3,12 +3,12 @@
 
 pkgname=liblxqt
 pkgver=0.11.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Common base library for LXQt components."
 arch=("i686" "x86_64")
 url="http://lxqt.org";
 license=("GPL2")
-depends=("kwindowsystem" "libqtxdg")
+depends=("kwindowsystem" "libqtxdg" "libxss")
 makedepends=("cmake" "qt5-tools" "git" "libxss")
 source=(

"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz";


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

2016-09-24 Thread Antonio Rojas
Date: Saturday, September 24, 2016 @ 12:24:41
  Author: arojas
Revision: 190247

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

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

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

Copied: libmateweather/repos/community-staging-i686/PKGBUILD (from rev 190246, 
libmateweather/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-09-24 12:24:41 UTC (rev 190247)
@@ -0,0 +1,69 @@
+# Contributor: Martin Wimpress 
+
+_ver=1.16
+pkgbase=libmateweather
+pkgname=(${pkgbase} ${pkgbase}-gtk3)
+pkgver=${_ver}.0
+pkgrel=1
+pkgdesc="Provides access to weather information from the Internet."
+url="http://mate-desktop.org";
+arch=('i686' 'x86_64')
+license=('LGPL')
+depends=('gtk2' 'gtk3')
+makedepends=('intltool')
+source=("http://pub.mate-desktop.org/releases/${_ver}/${pkgname}-${pkgver}.tar.xz";)
+sha1sums=('db775a80ec76ea0f8f9277a4b2011471eabaee65')
+
+prepare() {
+cd "${srcdir}"
+mv "${pkgname}-${pkgver}" "${pkgbase}-gtk2"
+cp -a "${pkgbase}-gtk2" "${pkgbase}-gtk3"
+}
+
+build() {
+cd "${srcdir}/${pkgbase}-gtk2"
+./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--with-gtk=2.0 \
+--disable-python \
+--enable-locations-compression
+
+#https://bugzilla.gnome.org/show_bug.cgi?id=656231
+sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+make
+
+cd "${srcdir}/${pkgbase}-gtk3"
+./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--with-gtk=3.0 \
+--disable-python \
+--enable-locations-compression
+
+#https://bugzilla.gnome.org/show_bug.cgi?id=656231
+sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+make
+}
+
+package_libmateweather() {
+pkgdesc+=' (GTK2 version)'
+conflicts=("${pkgbase}-gtk3")
+depends=('dconf' 'gtk2' 'libsoup')
+
+cd "${srcdir}/${pkgbase}-gtk2"
+make DESTDIR="${pkgdir}" install
+}
+
+package_libmateweather-gtk3() {
+pkgdesc+=' (GTK3 version)'
+conflicts=("${pkgbase}")
+depends=('gtk3')
+
+cd "${srcdir}/${pkgbase}-gtk3"
+make DESTDIR="${pkgdir}" install
+}

Copied: libmateweather/repos/community-staging-x86_64/PKGBUILD (from rev 
190246, libmateweather/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-09-24 12:24:41 UTC (rev 190247)
@@ -0,0 +1,69 @@
+# Contributor: Martin Wimpress 
+
+_ver=1.16
+pkgbase=libmateweather
+pkgname=(${pkgbase} ${pkgbase}-gtk3)
+pkgver=${_ver}.0
+pkgrel=1
+pkgdesc="Provides access to weather information from the Internet."
+url="http://mate-desktop.org";
+arch=('i686' 'x86_64')
+license=('LGPL')
+depends=('gtk2' 'gtk3')
+makedepends=('intltool')
+source=("http://pub.mate-desktop.org/releases/${_ver}/${pkgname}-${pkgver}.tar.xz";)
+sha1sums=('db775a80ec76ea0f8f9277a4b2011471eabaee65')
+
+prepare() {
+cd "${srcdir}"
+mv "${pkgname}-${pkgver}" "${pkgbase}-gtk2"
+cp -a "${pkgbase}-gtk2" "${pkgbase}-gtk3"
+}
+
+build() {
+cd "${srcdir}/${pkgbase}-gtk2"
+./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--with-gtk=2.0 \
+--disable-python \
+--enable-locations-compression
+
+#https://bugzilla.gnome.org/show_bug.cgi?id=656231
+sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+make
+
+cd "${srcdir}/${pkgbase}-gtk3"
+./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--with-gtk=3.0 \
+--disable-python \
+--enable-locations-compression
+
+#https://bugzilla.gnome.org/show_bug.cgi?id=656231
+sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+make
+}
+
+package_libmateweather() {
+pkgdesc+=' (GTK2 version)'
+conflicts=("${pkgbase}-gtk3")
+depends=('dconf' 'gtk2' 'libsoup')
+
+cd "${srcdir}/${pkgbase}-gtk2"
+make DESTDIR="${pkgdir}" install
+}
+
+package_libmateweather-gtk3() {
+pkgdesc+=' (GTK3 version)'
+conflicts=("${pkgbase}")
+depends=('gtk3')
+
+cd "${srcdir}/${pkgbase}-gtk3"
+make DESTDIR="${pkgdir}" install
+}


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

2016-09-24 Thread Antonio Rojas
Date: Saturday, September 24, 2016 @ 12:26:33
  Author: arojas
Revision: 190250

Update to 1.16.0

Modified:
  mate-common/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-24 12:24:56 UTC (rev 190249)
+++ PKGBUILD2016-09-24 12:26:33 UTC (rev 190250)
@@ -1,6 +1,6 @@
 # Contributor: Martin Wimpress 
 
-_ver=1.14
+_ver=1.16
 pkgname=mate-common
 pkgver=${_ver}.0
 pkgrel=1
@@ -11,7 +11,7 @@
  'pkg-config')
 url="http://mate-desktop.org";
 
source=("http://pub.mate-desktop.org/releases/${_ver}/${pkgname}-${pkgver}.tar.xz";)
-sha1sums=('e731a8ff17f84bcb0c8ba724b3c866af61a89e99')
+sha1sums=('5ab91d9e471b5819a5983e57b8d224855fbd93f1')
 
 build() {
 cd "${srcdir}/${pkgname}-${pkgver}"


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

2016-09-24 Thread Antonio Rojas
Date: Saturday, September 24, 2016 @ 12:26:53
  Author: arojas
Revision: 190251

archrelease: copy trunk to community-staging-any

Added:
  mate-common/repos/community-staging-any/
  mate-common/repos/community-staging-any/PKGBUILD
(from rev 190250, mate-common/trunk/PKGBUILD)

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

Copied: mate-common/repos/community-staging-any/PKGBUILD (from rev 190250, 
mate-common/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2016-09-24 12:26:53 UTC (rev 190251)
@@ -0,0 +1,26 @@
+# Contributor: Martin Wimpress 
+
+_ver=1.16
+pkgname=mate-common
+pkgver=${_ver}.0
+pkgrel=1
+pkgdesc="Common development macros for MATE"
+arch=('any')
+license=('GPL')
+depends=('autoconf' 'automake' 'gettext' 'gtk-doc' 'intltool' 'libtool'
+ 'pkg-config')
+url="http://mate-desktop.org";
+source=("http://pub.mate-desktop.org/releases/${_ver}/${pkgname}-${pkgver}.tar.xz";)
+sha1sums=('5ab91d9e471b5819a5983e57b8d224855fbd93f1')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+./configure \
+--prefix=/usr
+make
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+make DESTDIR="${pkgdir}" install
+}


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

2016-09-24 Thread Thorsten Töpper
Date: Saturday, September 24, 2016 @ 12:29:03
  Author: ttoepper
Revision: 190253

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

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

---+
 /PKGBUILD |   76 
 /mksh.install |   18 +
 community-i686/PKGBUILD   |   38 
 community-i686/mksh.install   |9 
 community-x86_64/PKGBUILD |   38 
 community-x86_64/mksh.install |9 
 6 files changed, 94 insertions(+), 94 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-09-24 12:28:59 UTC (rev 190252)
+++ community-i686/PKGBUILD 2016-09-24 12:29:03 UTC (rev 190253)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Thorsten Töpper 
-# Contributor: Daniel Hommel 
-
-pkgname=mksh
-_pkgver=R52c
-pkgver=52.2
-pkgrel=1
-pkgdesc='The MirBSD Korn Shell - an enhanced version of the public domain ksh'
-url='https://www.mirbsd.org/mksh.htm'
-license=('custom')
-arch=('i686' 'x86_64')
-depends=('gcc-libs')
-install=mksh.install
-source=("https://www.mirbsd.org/MirOS/dist/mir/mksh/$pkgname-$_pkgver.tgz";
-'https://www.mirbsd.org/TaC-mksh.txt')
-md5sums=('cc3884e02314447e7b4a3073b8d65d1e'
- '20f8999c32b9b350309ed3545a3ed7f5')
-
-check() {
-  cd "$srcdir/$pkgname"
-  ./test.sh
-}
-
-build() {
-  cd "$srcdir/$pkgname"
-  sh Build.sh -r -c lto
-}
-
-package() {
-  cd "$srcdir/$pkgname"
-  install -D -m 755 mksh "$pkgdir/usr/bin/mksh"
-  install -D -m 644 mksh.1 "$pkgdir/usr/share/man/man1/mksh.1"
-  install -D -m 644 dot.mkshrc "$pkgdir/etc/skel/.mkshrc"
-  install -D -m 644 "$srcdir/TaC-mksh.txt" 
"$pkgdir/usr/share/licenses/mksh/TaC-mksh.txt"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: mksh/repos/community-i686/PKGBUILD (from rev 190252, 
mksh/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-09-24 12:29:03 UTC (rev 190253)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Thorsten Töpper 
+# Contributor: Daniel Hommel 
+
+pkgname=mksh
+_pkgver=R53a
+pkgver=53.1
+pkgrel=1
+pkgdesc='The MirBSD Korn Shell - an enhanced version of the public domain ksh'
+url='https://www.mirbsd.org/mksh.htm'
+license=('custom')
+arch=('i686' 'x86_64')
+depends=('glibc') # Make namcap happy.
+install=mksh.install
+source=("https://www.mirbsd.org/MirOS/dist/mir/mksh/$pkgname-$_pkgver.tgz";
+'https://www.mirbsd.org/TaC-mksh.txt')
+md5sums=('43fc3e32963cc1795a299bcec531d770'
+ 'SKIP')
+
+check() {
+  cd "$srcdir/$pkgname"
+  ./test.sh
+}
+
+build() {
+  cd "$srcdir/$pkgname"
+  sh Build.sh -r
+}
+
+package() {
+  cd "$srcdir/$pkgname"
+  install -D -m 755 mksh "$pkgdir/usr/bin/mksh"
+  install -D -m 644 mksh.1 "$pkgdir/usr/share/man/man1/mksh.1"
+  install -D -m 644 dot.mkshrc "$pkgdir/etc/skel/.mkshrc"
+  install -D -m 644 "$srcdir/TaC-mksh.txt" 
"$pkgdir/usr/share/licenses/mksh/TaC-mksh.txt"
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/mksh.install
===
--- community-i686/mksh.install 2016-09-24 12:28:59 UTC (rev 190252)
+++ community-i686/mksh.install 2016-09-24 12:29:03 UTC (rev 190253)
@@ -1,9 +0,0 @@
-post_install() {
-  grep -x /bin/mksh /etc/shells >/dev/null || echo /bin/mksh >>/etc/shells
-}
-
-post_remove() {
-  sed -i "/^\/bin\/mksh$/d" /etc/shells
-}
-
-# vim:set ts=2 sw=2 et:

Copied: mksh/repos/community-i686/mksh.install (from rev 190252, 
mksh/trunk/mksh.install)
===
--- community-i686/mksh.install (rev 0)
+++ community-i686/mksh.install 2016-09-24 12:29:03 UTC (rev 190253)
@@ -0,0 +1,9 @@
+post_install() {
+  grep -x /bin/mksh /etc/shells >/dev/null || echo /bin/mksh >>/etc/shells
+}
+
+post_remove() {
+  sed -i "/^\/bin\/mksh$/d" /etc/shells
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-09-24 12:28:59 UTC (rev 190252)
+++ community-x86_64/PKGBUILD   2016-09-24 12:29:03 UTC (rev 190253)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Thorsten Töpper 
-# Contributor: Daniel Hommel 
-
-pkgname=mksh
-_pkgver=R52c
-pkgver=52.2
-pkgrel=1
-pkgdesc='The MirBSD Korn Shell - an enhanced ve

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

2016-09-24 Thread Thorsten Töpper
Date: Saturday, September 24, 2016 @ 12:28:59
  Author: ttoepper
Revision: 190252

upgpkg: mksh 53.1-1

Modified:
  mksh/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-24 12:26:53 UTC (rev 190251)
+++ PKGBUILD2016-09-24 12:28:59 UTC (rev 190252)
@@ -3,19 +3,19 @@
 # Contributor: Daniel Hommel 
 
 pkgname=mksh
-_pkgver=R52c
-pkgver=52.2
+_pkgver=R53a
+pkgver=53.1
 pkgrel=1
 pkgdesc='The MirBSD Korn Shell - an enhanced version of the public domain ksh'
 url='https://www.mirbsd.org/mksh.htm'
 license=('custom')
 arch=('i686' 'x86_64')
-depends=('gcc-libs')
+depends=('glibc') # Make namcap happy.
 install=mksh.install
 source=("https://www.mirbsd.org/MirOS/dist/mir/mksh/$pkgname-$_pkgver.tgz";
 'https://www.mirbsd.org/TaC-mksh.txt')
-md5sums=('cc3884e02314447e7b4a3073b8d65d1e'
- '20f8999c32b9b350309ed3545a3ed7f5')
+md5sums=('43fc3e32963cc1795a299bcec531d770'
+ 'SKIP')
 
 check() {
   cd "$srcdir/$pkgname"
@@ -24,7 +24,7 @@
 
 build() {
   cd "$srcdir/$pkgname"
-  sh Build.sh -r -c lto
+  sh Build.sh -r
 }
 
 package() {


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

2016-09-24 Thread Antonio Rojas
Date: Saturday, September 24, 2016 @ 12:37:19
  Author: arojas
Revision: 190254

Update to 1.16.0

Modified:
  atril/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-24 12:29:03 UTC (rev 190253)
+++ PKGBUILD2016-09-24 12:37:19 UTC (rev 190254)
@@ -1,9 +1,9 @@
 # Contributor: Martin Wimpress 
 
-_ver=1.14
+_ver=1.16
 _pkgbase=atril
 pkgname=(${_pkgbase})
-pkgver=${_ver}.2
+pkgver=${_ver}.0
 pkgrel=1
 pkgdesc="MATE document viewer (GTK2 version)"
 url="http://mate-desktop.org";
@@ -16,7 +16,7 @@
 groups=('mate-extra')
 conflicts=("${_pkgbase}-gtk3")
 
source=("http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz";)
-sha1sums=('7eb2ba97290b9a8cba7b93f10efa0b00d1454488')
+sha1sums=('0573c0afdc81f29115409c42e06bd4fecb785302')
 
 prepare() {
 cd "${srcdir}/${_pkgbase}-${pkgver}"


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

2016-09-24 Thread Antonio Rojas
Date: Saturday, September 24, 2016 @ 12:37:43
  Author: arojas
Revision: 190255

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

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

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

Copied: atril/repos/community-staging-i686/PKGBUILD (from rev 190254, 
atril/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-09-24 12:37:43 UTC (rev 190255)
@@ -0,0 +1,52 @@
+# Contributor: Martin Wimpress 
+
+_ver=1.16
+_pkgbase=atril
+pkgname=(${_pkgbase})
+pkgver=${_ver}.0
+pkgrel=1
+pkgdesc="MATE document viewer (GTK2 version)"
+url="http://mate-desktop.org";
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('mate-desktop' 'djvulibre' 'libspectre' 'libgxps' 'mathjax' 
'poppler-glib' 'webkitgtk2')
+makedepends=('caja' 'gobject-introspection' 'intltool' 'itstool' 'texlive-bin')
+optdepends=('caja: Document Properties extension'
+'texlive-bin: DVI support')
+groups=('mate-extra')
+conflicts=("${_pkgbase}-gtk3")
+source=("http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz";)
+sha1sums=('0573c0afdc81f29115409c42e06bd4fecb785302')
+
+prepare() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+
+# Fix mathjax path
+sed -i 's|/usr/share/javascript/mathjax|/usr/share/mathjax|' 
backend/epub/epub-document.c
+}
+
+build() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+./configure \
+--prefix=/usr \
+--libexecdir=/usr/lib/${_pkgbase} \
+--with-gtk=2.0 \
+--enable-djvu \
+--enable-dvi \
+--enable-epub \
+--enable-t1lib \
+--enable-pixbuf \
+--enable-comics \
+--enable-xps \
+--enable-introspection
+
+#https://bugzilla.gnome.org/show_bug.cgi?id=656231
+sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+make
+}
+
+package() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+make DESTDIR="${pkgdir}" install
+}

Copied: atril/repos/community-staging-x86_64/PKGBUILD (from rev 190254, 
atril/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-09-24 12:37:43 UTC (rev 190255)
@@ -0,0 +1,52 @@
+# Contributor: Martin Wimpress 
+
+_ver=1.16
+_pkgbase=atril
+pkgname=(${_pkgbase})
+pkgver=${_ver}.0
+pkgrel=1
+pkgdesc="MATE document viewer (GTK2 version)"
+url="http://mate-desktop.org";
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('mate-desktop' 'djvulibre' 'libspectre' 'libgxps' 'mathjax' 
'poppler-glib' 'webkitgtk2')
+makedepends=('caja' 'gobject-introspection' 'intltool' 'itstool' 'texlive-bin')
+optdepends=('caja: Document Properties extension'
+'texlive-bin: DVI support')
+groups=('mate-extra')
+conflicts=("${_pkgbase}-gtk3")
+source=("http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz";)
+sha1sums=('0573c0afdc81f29115409c42e06bd4fecb785302')
+
+prepare() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+
+# Fix mathjax path
+sed -i 's|/usr/share/javascript/mathjax|/usr/share/mathjax|' 
backend/epub/epub-document.c
+}
+
+build() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+./configure \
+--prefix=/usr \
+--libexecdir=/usr/lib/${_pkgbase} \
+--with-gtk=2.0 \
+--enable-djvu \
+--enable-dvi \
+--enable-epub \
+--enable-t1lib \
+--enable-pixbuf \
+--enable-comics \
+--enable-xps \
+--enable-introspection
+
+#https://bugzilla.gnome.org/show_bug.cgi?id=656231
+sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+make
+}
+
+package() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+make DESTDIR="${pkgdir}" install
+}


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

2016-09-24 Thread Antonio Rojas
Date: Saturday, September 24, 2016 @ 12:40:51
  Author: arojas
Revision: 190256

Update to 1.16.0

Modified:
  atril-gtk3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-24 12:37:43 UTC (rev 190255)
+++ PKGBUILD2016-09-24 12:40:51 UTC (rev 190256)
@@ -1,9 +1,9 @@
 # Contributor: Martin Wimpress 
 
-_ver=1.14
+_ver=1.16
 _pkgbase=atril
 pkgname=(${_pkgbase}-gtk3)
-pkgver=${_ver}.1
+pkgver=${_ver}.0
 pkgrel=1
 pkgdesc="MATE document viewer (GTK3 version)"
 url="http://mate-desktop.org";
@@ -16,7 +16,7 @@
 groups=('mate-extra-gtk3')
 conflicts=("${_pkgbase}")
 
source=("http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz";)
-sha1sums=('7e1cd353202e9ae4a5ad63b093572d140dd0a7c3')
+sha1sums=('0573c0afdc81f29115409c42e06bd4fecb785302')
 
 prepare() {
 cd "${srcdir}/${_pkgbase}-${pkgver}"


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

2016-09-24 Thread Antonio Rojas
Date: Saturday, September 24, 2016 @ 12:41:16
  Author: arojas
Revision: 190257

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

Added:
  atril-gtk3/repos/community-staging-i686/
  atril-gtk3/repos/community-staging-i686/PKGBUILD
(from rev 190256, atril-gtk3/trunk/PKGBUILD)
  atril-gtk3/repos/community-staging-x86_64/
  atril-gtk3/repos/community-staging-x86_64/PKGBUILD
(from rev 190256, atril-gtk3/trunk/PKGBUILD)

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

Copied: atril-gtk3/repos/community-staging-i686/PKGBUILD (from rev 190256, 
atril-gtk3/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-09-24 12:41:16 UTC (rev 190257)
@@ -0,0 +1,52 @@
+# Contributor: Martin Wimpress 
+
+_ver=1.16
+_pkgbase=atril
+pkgname=(${_pkgbase}-gtk3)
+pkgver=${_ver}.0
+pkgrel=1
+pkgdesc="MATE document viewer (GTK3 version)"
+url="http://mate-desktop.org";
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('mate-desktop-gtk3' 'djvulibre' 'libspectre' 'libgxps' 'mathjax' 
'poppler-glib' 'webkit2gtk')
+makedepends=('caja-gtk3' 'gobject-introspection' 'intltool' 'itstool' 
'texlive-bin')
+optdepends=('caja-gtk3: Document Properties extension'
+'texlive-bin: DVI support')
+groups=('mate-extra-gtk3')
+conflicts=("${_pkgbase}")
+source=("http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz";)
+sha1sums=('0573c0afdc81f29115409c42e06bd4fecb785302')
+
+prepare() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+
+# Fix mathjax path
+sed -i 's|/usr/share/javascript/mathjax|/usr/share/mathjax|' 
backend/epub/epub-document.c
+}
+
+build() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+./configure \
+--prefix=/usr \
+--libexecdir=/usr/lib/${_pkgbase} \
+--with-gtk=3.0 \
+--enable-djvu \
+--enable-dvi \
+--enable-epub \
+--enable-t1lib \
+--enable-pixbuf \
+--enable-comics \
+--enable-xps \
+--enable-introspection
+
+#https://bugzilla.gnome.org/show_bug.cgi?id=656231
+sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+make
+}
+
+package() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+make DESTDIR="${pkgdir}" install
+}

Copied: atril-gtk3/repos/community-staging-x86_64/PKGBUILD (from rev 190256, 
atril-gtk3/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-09-24 12:41:16 UTC (rev 190257)
@@ -0,0 +1,52 @@
+# Contributor: Martin Wimpress 
+
+_ver=1.16
+_pkgbase=atril
+pkgname=(${_pkgbase}-gtk3)
+pkgver=${_ver}.0
+pkgrel=1
+pkgdesc="MATE document viewer (GTK3 version)"
+url="http://mate-desktop.org";
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('mate-desktop-gtk3' 'djvulibre' 'libspectre' 'libgxps' 'mathjax' 
'poppler-glib' 'webkit2gtk')
+makedepends=('caja-gtk3' 'gobject-introspection' 'intltool' 'itstool' 
'texlive-bin')
+optdepends=('caja-gtk3: Document Properties extension'
+'texlive-bin: DVI support')
+groups=('mate-extra-gtk3')
+conflicts=("${_pkgbase}")
+source=("http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz";)
+sha1sums=('0573c0afdc81f29115409c42e06bd4fecb785302')
+
+prepare() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+
+# Fix mathjax path
+sed -i 's|/usr/share/javascript/mathjax|/usr/share/mathjax|' 
backend/epub/epub-document.c
+}
+
+build() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+./configure \
+--prefix=/usr \
+--libexecdir=/usr/lib/${_pkgbase} \
+--with-gtk=3.0 \
+--enable-djvu \
+--enable-dvi \
+--enable-epub \
+--enable-t1lib \
+--enable-pixbuf \
+--enable-comics \
+--enable-xps \
+--enable-introspection
+
+#https://bugzilla.gnome.org/show_bug.cgi?id=656231
+sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+make
+}
+
+package() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+make DESTDIR="${pkgdir}" install
+}


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

2016-09-24 Thread Antonio Rojas
Date: Saturday, September 24, 2016 @ 12:46:41
  Author: arojas
Revision: 190258

Update to 1.16.0

Modified:
  mate-desktop/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-24 12:41:16 UTC (rev 190257)
+++ PKGBUILD2016-09-24 12:46:41 UTC (rev 190258)
@@ -1,9 +1,9 @@
 # Contributor: Martin Wimpress 
 
-_ver=1.14
+_ver=1.16
 pkgbase=mate-desktop
 pkgname=(${pkgbase} ${pkgbase}-gtk3)
-pkgver=${_ver}.1
+pkgver=${_ver}.0
 pkgrel=1
 pkgdesc="Library with common API for various MATE modules"
 url="http://mate-desktop.org";
@@ -12,7 +12,7 @@
 depends=('gtk2' 'gtk3' 'startup-notification')
 makedepends=('gobject-introspection' 'intltool')
 
source=("http://pub.mate-desktop.org/releases/${_ver}/${pkgname}-${pkgver}.tar.xz";)
-sha1sums=('3cb4b0cffcd20528140c289c2e1d337a6b4f591c')
+sha1sums=('624d2e7af6416cb81d1d0946ab66bbb34fc7d150')
 
 prepare() {
 cd "${srcdir}"


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

2016-09-24 Thread Antonio Rojas
Date: Saturday, September 24, 2016 @ 12:47:05
  Author: arojas
Revision: 190259

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

Added:
  mate-desktop/repos/community-staging-i686/
  mate-desktop/repos/community-staging-i686/PKGBUILD
(from rev 190258, mate-desktop/trunk/PKGBUILD)
  mate-desktop/repos/community-staging-x86_64/
  mate-desktop/repos/community-staging-x86_64/PKGBUILD
(from rev 190258, mate-desktop/trunk/PKGBUILD)

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

Copied: mate-desktop/repos/community-staging-i686/PKGBUILD (from rev 190258, 
mate-desktop/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-09-24 12:47:05 UTC (rev 190259)
@@ -0,0 +1,65 @@
+# Contributor: Martin Wimpress 
+
+_ver=1.16
+pkgbase=mate-desktop
+pkgname=(${pkgbase} ${pkgbase}-gtk3)
+pkgver=${_ver}.0
+pkgrel=1
+pkgdesc="Library with common API for various MATE modules"
+url="http://mate-desktop.org";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL')
+depends=('gtk2' 'gtk3' 'startup-notification')
+makedepends=('gobject-introspection' 'intltool')
+source=("http://pub.mate-desktop.org/releases/${_ver}/${pkgname}-${pkgver}.tar.xz";)
+sha1sums=('624d2e7af6416cb81d1d0946ab66bbb34fc7d150')
+
+prepare() {
+cd "${srcdir}"
+mv "${pkgname}-${pkgver}" "${pkgbase}-gtk2"
+cp -a "${pkgbase}-gtk2" "${pkgbase}-gtk3"
+}
+
+build() {
+cd "${srcdir}/${pkgbase}-gtk2"
+./configure \
+--prefix=/usr \
+--with-gtk=2.0 \
+--disable-schemas-compile
+
+#https://bugzilla.gnome.org/show_bug.cgi?id=656231
+sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+make
+
+cd "${srcdir}/${pkgbase}-gtk3"
+./configure \
+--prefix=/usr \
+--with-gtk=3.0 \
+--disable-schemas-compile
+
+#https://bugzilla.gnome.org/show_bug.cgi?id=656231
+sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+make
+}
+
+package_mate-desktop() {
+pkgdesc+=' (GTK2 version)'
+groups=('mate')
+conflicts=("${pkgbase}-gtk3")
+depends=('dconf' 'gtk2' 'startup-notification')
+
+cd "${srcdir}/${pkgbase}-gtk2"
+make DESTDIR="${pkgdir}" install
+}
+
+package_mate-desktop-gtk3() {
+pkgdesc+=' (GTK3 version)'
+groups=('mate-gtk3')
+conflicts=("${pkgbase}")
+depends=('gtk3' 'startup-notification')
+
+cd "${srcdir}/${pkgbase}-gtk3"
+make DESTDIR="${pkgdir}" install
+}

Copied: mate-desktop/repos/community-staging-x86_64/PKGBUILD (from rev 190258, 
mate-desktop/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-09-24 12:47:05 UTC (rev 190259)
@@ -0,0 +1,65 @@
+# Contributor: Martin Wimpress 
+
+_ver=1.16
+pkgbase=mate-desktop
+pkgname=(${pkgbase} ${pkgbase}-gtk3)
+pkgver=${_ver}.0
+pkgrel=1
+pkgdesc="Library with common API for various MATE modules"
+url="http://mate-desktop.org";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL')
+depends=('gtk2' 'gtk3' 'startup-notification')
+makedepends=('gobject-introspection' 'intltool')
+source=("http://pub.mate-desktop.org/releases/${_ver}/${pkgname}-${pkgver}.tar.xz";)
+sha1sums=('624d2e7af6416cb81d1d0946ab66bbb34fc7d150')
+
+prepare() {
+cd "${srcdir}"
+mv "${pkgname}-${pkgver}" "${pkgbase}-gtk2"
+cp -a "${pkgbase}-gtk2" "${pkgbase}-gtk3"
+}
+
+build() {
+cd "${srcdir}/${pkgbase}-gtk2"
+./configure \
+--prefix=/usr \
+--with-gtk=2.0 \
+--disable-schemas-compile
+
+#https://bugzilla.gnome.org/show_bug.cgi?id=656231
+sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+make
+
+cd "${srcdir}/${pkgbase}-gtk3"
+./configure \
+--prefix=/usr \
+--with-gtk=3.0 \
+--disable-schemas-compile
+
+#https://bugzilla.gnome.org/show_bug.cgi?id=656231
+sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+make
+}
+
+package_mate-desktop() {
+pkgdesc+=' (GTK2 version)'
+groups=('mate')
+conflicts=("${pkgbase}-gtk3")
+depends=('dconf' 'gtk2' 'startup-notification')
+
+cd "${srcdir}/${pkgbase}-gtk2"
+make DESTDIR="${pkgdir}" install
+}
+
+package_mate-desktop-gtk3() {
+pkgdesc+=' (GTK3 version)'
+groups=('mate-gtk3')
+conflicts=("${pkgbase}")
+depends=('gtk3' 'startup-notification')
+
+cd "${srcdir}/${pkgbase}-gtk3"
+make DESTDIR="${pkgdir}" install
+}


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

2016-09-24 Thread Antonio Rojas
Date: Saturday, September 24, 2016 @ 12:54:32
  Author: arojas
Revision: 190260

Update to 1.16.0

Modified:
  caja/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-24 12:47:05 UTC (rev 190259)
+++ PKGBUILD2016-09-24 12:54:32 UTC (rev 190260)
@@ -1,9 +1,9 @@
 # Contributor: Martin Wimpress 
 
-_ver=1.14
+_ver=1.16
 _pkgbase=caja
 pkgname=${_pkgbase}
-pkgver=${_ver}.2
+pkgver=${_ver}.0
 pkgrel=1
 pkgdesc="File manager for the MATE desktop (GTK2 version)"
 url="http://mate-desktop.org";
@@ -15,7 +15,7 @@
 groups=('mate')
 conflicts=("${_pkgbase}-gtk3")
 
source=("http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz";)
-sha1sums=('645a172e1481d51d1d6def3e3aa574bc7553de91')
+sha1sums=('5d46c0ec4f8b757f85cb2da1c501e5cdfa16a042')
 
 build() {
 cd "${srcdir}/${_pkgbase}-${pkgver}"


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

2016-09-24 Thread Antonio Rojas
Date: Saturday, September 24, 2016 @ 12:55:23
  Author: arojas
Revision: 190261

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

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

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

Copied: caja/repos/community-staging-i686/PKGBUILD (from rev 190260, 
caja/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-09-24 12:55:23 UTC (rev 190261)
@@ -0,0 +1,38 @@
+# Contributor: Martin Wimpress 
+
+_ver=1.16
+_pkgbase=caja
+pkgname=${_pkgbase}
+pkgver=${_ver}.0
+pkgrel=1
+pkgdesc="File manager for the MATE desktop (GTK2 version)"
+url="http://mate-desktop.org";
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('exempi' 'gvfs' 'libexif' 'libsm' 'libunique' 'mate-desktop')
+makedepends=('gobject-introspection' 'intltool')
+optdepends=('gstreamer: automatic media playback when mouseover')
+groups=('mate')
+conflicts=("${_pkgbase}-gtk3")
+source=("http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz";)
+sha1sums=('5d46c0ec4f8b757f85cb2da1c501e5cdfa16a042')
+
+build() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+./configure \
+--prefix=/usr \
+--libexecdir=/usr/lib/${_pkgbase} \
+--with-gtk=2.0 \
+--enable-introspection \
+--disable-update-mimedb
+
+#https://bugzilla.gnome.org/show_bug.cgi?id=656231
+sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+make
+}
+
+package() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+make DESTDIR="${pkgdir}" install
+}

Copied: caja/repos/community-staging-x86_64/PKGBUILD (from rev 190260, 
caja/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-09-24 12:55:23 UTC (rev 190261)
@@ -0,0 +1,38 @@
+# Contributor: Martin Wimpress 
+
+_ver=1.16
+_pkgbase=caja
+pkgname=${_pkgbase}
+pkgver=${_ver}.0
+pkgrel=1
+pkgdesc="File manager for the MATE desktop (GTK2 version)"
+url="http://mate-desktop.org";
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('exempi' 'gvfs' 'libexif' 'libsm' 'libunique' 'mate-desktop')
+makedepends=('gobject-introspection' 'intltool')
+optdepends=('gstreamer: automatic media playback when mouseover')
+groups=('mate')
+conflicts=("${_pkgbase}-gtk3")
+source=("http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz";)
+sha1sums=('5d46c0ec4f8b757f85cb2da1c501e5cdfa16a042')
+
+build() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+./configure \
+--prefix=/usr \
+--libexecdir=/usr/lib/${_pkgbase} \
+--with-gtk=2.0 \
+--enable-introspection \
+--disable-update-mimedb
+
+#https://bugzilla.gnome.org/show_bug.cgi?id=656231
+sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+make
+}
+
+package() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+make DESTDIR="${pkgdir}" install
+}


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

2016-09-24 Thread Antonio Rojas
Date: Saturday, September 24, 2016 @ 12:58:06
  Author: arojas
Revision: 190262

Update to 1.16.0

Modified:
  caja-gtk3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-24 12:55:23 UTC (rev 190261)
+++ PKGBUILD2016-09-24 12:58:06 UTC (rev 190262)
@@ -1,9 +1,9 @@
 # Contributor: Martin Wimpress 
 
-_ver=1.14
+_ver=1.16
 _pkgbase=caja
 pkgname=${_pkgbase}-gtk3
-pkgver=${_ver}.1
+pkgver=${_ver}.0
 pkgrel=1
 pkgdesc="File manager for the MATE desktop (GTK3 version)"
 url="http://mate-desktop.org";
@@ -15,7 +15,7 @@
 groups=('mate-gtk3')
 conflicts=("${_pkgbase}")
 
source=("http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz";)
-sha1sums=('db84d1876031974e33db12eb0bea187639a11cc7')
+sha1sums=('5d46c0ec4f8b757f85cb2da1c501e5cdfa16a042')
 
 build() {
 cd "${srcdir}/${_pkgbase}-${pkgver}"


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

2016-09-24 Thread Antonio Rojas
Date: Saturday, September 24, 2016 @ 12:58:30
  Author: arojas
Revision: 190263

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

Added:
  caja-gtk3/repos/community-staging-i686/
  caja-gtk3/repos/community-staging-i686/PKGBUILD
(from rev 190262, caja-gtk3/trunk/PKGBUILD)
  caja-gtk3/repos/community-staging-x86_64/
  caja-gtk3/repos/community-staging-x86_64/PKGBUILD
(from rev 190262, caja-gtk3/trunk/PKGBUILD)

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

Copied: caja-gtk3/repos/community-staging-i686/PKGBUILD (from rev 190262, 
caja-gtk3/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-09-24 12:58:30 UTC (rev 190263)
@@ -0,0 +1,38 @@
+# Contributor: Martin Wimpress 
+
+_ver=1.16
+_pkgbase=caja
+pkgname=${_pkgbase}-gtk3
+pkgver=${_ver}.0
+pkgrel=1
+pkgdesc="File manager for the MATE desktop (GTK3 version)"
+url="http://mate-desktop.org";
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('exempi' 'gvfs' 'libexif' 'libsm' 'libunique3' 'mate-desktop-gtk3')
+makedepends=('gobject-introspection' 'intltool')
+optdepends=('gstreamer: automatic media playback when mouseover')
+groups=('mate-gtk3')
+conflicts=("${_pkgbase}")
+source=("http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz";)
+sha1sums=('5d46c0ec4f8b757f85cb2da1c501e5cdfa16a042')
+
+build() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+./configure \
+--prefix=/usr \
+--libexecdir=/usr/lib/${_pkgbase} \
+--with-gtk=3.0 \
+--enable-introspection \
+--disable-update-mimedb
+
+#https://bugzilla.gnome.org/show_bug.cgi?id=656231
+sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+make
+}
+
+package() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+make DESTDIR="${pkgdir}" install
+}

Copied: caja-gtk3/repos/community-staging-x86_64/PKGBUILD (from rev 190262, 
caja-gtk3/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-09-24 12:58:30 UTC (rev 190263)
@@ -0,0 +1,38 @@
+# Contributor: Martin Wimpress 
+
+_ver=1.16
+_pkgbase=caja
+pkgname=${_pkgbase}-gtk3
+pkgver=${_ver}.0
+pkgrel=1
+pkgdesc="File manager for the MATE desktop (GTK3 version)"
+url="http://mate-desktop.org";
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('exempi' 'gvfs' 'libexif' 'libsm' 'libunique3' 'mate-desktop-gtk3')
+makedepends=('gobject-introspection' 'intltool')
+optdepends=('gstreamer: automatic media playback when mouseover')
+groups=('mate-gtk3')
+conflicts=("${_pkgbase}")
+source=("http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz";)
+sha1sums=('5d46c0ec4f8b757f85cb2da1c501e5cdfa16a042')
+
+build() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+./configure \
+--prefix=/usr \
+--libexecdir=/usr/lib/${_pkgbase} \
+--with-gtk=3.0 \
+--enable-introspection \
+--disable-update-mimedb
+
+#https://bugzilla.gnome.org/show_bug.cgi?id=656231
+sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+make
+}
+
+package() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+make DESTDIR="${pkgdir}" install
+}


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

2016-09-24 Thread Antonio Rojas
Date: Saturday, September 24, 2016 @ 13:01:44
  Author: arojas
Revision: 190264

Update to 1.16.0

Modified:
  engrampa/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-24 12:58:30 UTC (rev 190263)
+++ PKGBUILD2016-09-24 13:01:44 UTC (rev 190264)
@@ -1,39 +1,38 @@
 # Contributor: Martin Wimpress 
 
-_ver=1.14
-_pkgbase=engrampa
-pkgname=(${_pkgbase})
-pkgver=${_ver}.1
+_ver=1.16
+pkgname=engrampa
+pkgver=${_ver}.0
 pkgrel=1
-pkgdesc="Archive manipulator for MATE (GTK2 version)"
+pkgdesc="Archive manipulator for MATE"
 url="http://mate-desktop.org";
 arch=('i686' 'x86_64')
 license=('GPL')
-depends=('gtk2' 'gzip' 'libarchive' 'tar' 'unzip' 'zip')
-makedepends=('caja' 'intltool' 'itstool')
-optdepends=('caja: file archiver extension'
+depends=('gtk3' 'gzip' 'libarchive' 'tar' 'unzip' 'zip')
+makedepends=('caja-gtk3' 'intltool' 'itstool')
+optdepends=('caja-gtk3: file archiver extension'
 'p7zip: 7Z and ARJ archive support'
 'unace: ACE archive support'
 'unrar: RAR archive support')
 groups=('mate-extra')
 conflicts=("${_pkgbase}-gtk3")
-source=("http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz";
+replaces=("${_pkgbase}-gtk3")
+source=("http://pub.mate-desktop.org/releases/${_ver}/${pkgname}-${pkgver}.tar.xz";
 fr-rpm-bsdtar.patch)
-sha1sums=('1245f5203b37b842cfaf818781b17cd22f1234b1'
+sha1sums=('90865e0c59bec33ed899c3a0a8d2787aa09d526b'
   '219b05a979bf6f249aaae27964f02345fd81168d')
 
 prepare() {
-cd "${srcdir}/${_pkgbase}-${pkgver}"
+cd ${pkgname}-${pkgver}
 # This patch 'depends' on libarchive
 patch -Np1 -i "${srcdir}/fr-rpm-bsdtar.patch"
 }
 
 build() {
-cd "${srcdir}/${_pkgbase}-${pkgver}"
+cd ${pkgname}-${pkgver}
 ./configure \
 --prefix=/usr \
 --libexecdir=/usr/lib/${_pkgbase} \
---with-gtk=2.0 \
 --disable-packagekit
 
 #https://bugzilla.gnome.org/show_bug.cgi?id=656231
@@ -43,6 +42,6 @@
 }
 
 package() {
-cd "${srcdir}/${_pkgbase}-${pkgver}"
+cd ${pkgname}-${pkgver}
 make DESTDIR="${pkgdir}" install
 }


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

2016-09-24 Thread Antonio Rojas
Date: Saturday, September 24, 2016 @ 13:02:09
  Author: arojas
Revision: 190265

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

Added:
  engrampa/repos/community-staging-i686/
  engrampa/repos/community-staging-i686/PKGBUILD
(from rev 190264, engrampa/trunk/PKGBUILD)
  engrampa/repos/community-staging-i686/fr-rpm-bsdtar.patch
(from rev 190264, engrampa/trunk/fr-rpm-bsdtar.patch)
  engrampa/repos/community-staging-x86_64/
  engrampa/repos/community-staging-x86_64/PKGBUILD
(from rev 190264, engrampa/trunk/PKGBUILD)
  engrampa/repos/community-staging-x86_64/fr-rpm-bsdtar.patch
(from rev 190264, engrampa/trunk/fr-rpm-bsdtar.patch)

--+
 community-staging-i686/PKGBUILD  |   47 +++
 community-staging-i686/fr-rpm-bsdtar.patch   |   60 +
 community-staging-x86_64/PKGBUILD|   47 +++
 community-staging-x86_64/fr-rpm-bsdtar.patch |   60 +
 4 files changed, 214 insertions(+)

Copied: engrampa/repos/community-staging-i686/PKGBUILD (from rev 190264, 
engrampa/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-09-24 13:02:09 UTC (rev 190265)
@@ -0,0 +1,47 @@
+# Contributor: Martin Wimpress 
+
+_ver=1.16
+pkgname=engrampa
+pkgver=${_ver}.0
+pkgrel=1
+pkgdesc="Archive manipulator for MATE"
+url="http://mate-desktop.org";
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('gtk3' 'gzip' 'libarchive' 'tar' 'unzip' 'zip')
+makedepends=('caja-gtk3' 'intltool' 'itstool')
+optdepends=('caja-gtk3: file archiver extension'
+'p7zip: 7Z and ARJ archive support'
+'unace: ACE archive support'
+'unrar: RAR archive support')
+groups=('mate-extra')
+conflicts=("${_pkgbase}-gtk3")
+replaces=("${_pkgbase}-gtk3")
+source=("http://pub.mate-desktop.org/releases/${_ver}/${pkgname}-${pkgver}.tar.xz";
+fr-rpm-bsdtar.patch)
+sha1sums=('90865e0c59bec33ed899c3a0a8d2787aa09d526b'
+  '219b05a979bf6f249aaae27964f02345fd81168d')
+
+prepare() {
+cd ${pkgname}-${pkgver}
+# This patch 'depends' on libarchive
+patch -Np1 -i "${srcdir}/fr-rpm-bsdtar.patch"
+}
+
+build() {
+cd ${pkgname}-${pkgver}
+./configure \
+--prefix=/usr \
+--libexecdir=/usr/lib/${_pkgbase} \
+--disable-packagekit
+
+#https://bugzilla.gnome.org/show_bug.cgi?id=656231
+sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+make
+}
+
+package() {
+cd ${pkgname}-${pkgver}
+make DESTDIR="${pkgdir}" install
+}

Copied: engrampa/repos/community-staging-i686/fr-rpm-bsdtar.patch (from rev 
190264, engrampa/trunk/fr-rpm-bsdtar.patch)
===
--- community-staging-i686/fr-rpm-bsdtar.patch  (rev 0)
+++ community-staging-i686/fr-rpm-bsdtar.patch  2016-09-24 13:02:09 UTC (rev 
190265)
@@ -0,0 +1,60 @@
+This makes Engrampa use bsdtar to extract .RPM packages instead of using cpio.
+It is useful on systems that do not have cpio or RPM/YUM
+This patch was created for Arch Linux, however should work on any system that 
has bsdtar capable of handling cpio archives.
+
+--+
+ rpm2cpio.c   |   2 +-
+ fr-command-rpm.c |   8 
+ 2 files changed, 5 insertions(+), 5 deletions(-)
+
+Index: src/commands/rpm2cpio.c
+
+--- mate-file-archiver-1.6.0/src/commands/rpm2cpio.c 2013-03-31
 mate-file-archiver-1.6.0/src/commands/rpm2cpio.c   2013-07-26
+@@ -128,7 +128,7 @@
+   archive_command = "bzip2 -dc";
+   fclose (stream);
+ 
+-  command = g_strdup_printf ("sh -c \"dd if=%s ibs=%u skip=1 2>/dev/null 
| %s | cpio %s\"", g_shell_quote (filename), offset, archive_command, 
cpio_args->str);
++  command = g_strdup_printf ("sh -c \"dd if=%s ibs=%u skip=1 2>/dev/null 
| %s | bsdtar %s\"", g_shell_quote (filename), offset, archive_command, 
cpio_args->str);
+ 
+   return system (command);
+ }
+Index: src/fr-command-rpm.c
+
+--- mate-file-archiver-1.6.0/src/fr-command-rpm.c  2013-03-31
 mate-file-archiver-1.6.0/src/fr-command-rpm.c  2013-07-26
+@@ -175,7 +175,7 @@
+ 
+   fr_process_begin_command (comm->process, "sh");
+   fr_process_add_arg (comm->process, "-c");
+-  fr_process_add_arg_concat (comm->process, PRIVEXECDIR "rpm2cpio ", 
comm->e_filename, " -itv", NULL);
++  fr_process_add_arg_concat (comm->process, PRIVEXECDIR "rpm2cpio ", 
comm->e_filename, " -tvf -", NULL);
+   fr_process_end_command (comm->process);
+   fr_process_start (comm->process);
+ }
+@@ -200,7 +200,7 @@
+ 
+   cmd = g_string_new (PRIVEXECDIR "rpm2cpio ");
+   g_string_append (cmd, comm->e_filename);
+-  g_string_append (cmd, " -idu ");
++ 

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

2016-09-24 Thread Antonio Rojas
Date: Saturday, September 24, 2016 @ 13:06:16
  Author: arojas
Revision: 190266

Update to 1.16.0

Modified:
  caja-extensions/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-24 13:02:09 UTC (rev 190265)
+++ PKGBUILD2016-09-24 13:06:16 UTC (rev 190266)
@@ -1,9 +1,9 @@
 # Contributor: Martin Wimpress 
 
-_ver=1.14
+_ver=1.16
 pkgbase=caja-extensions
 pkgname=(caja-extensions-common caja-gksu caja-image-converter 
caja-open-terminal caja-sendto caja-share caja-wallpaper)
-pkgver=${_ver}.1
+pkgver=${_ver}.0
 pkgrel=1
 pkgdesc="Caja extensions (GTK2 version)"
 url="http://mate-desktop.org";
@@ -12,7 +12,7 @@
 depends=('caja' 'dbus-glib' 'gksu' 'gupnp' 'imagemagick' 'samba')
 makedepends=('intltool')
 
source=("http://pub.mate-desktop.org/releases/${_ver}/${pkgbase}-${pkgver}.tar.xz";)
-sha1sums=('5d8981022abe12ff2124426930625a65b902c194')
+sha1sums=('9b27e46a731b117815862229c38445ef94afa600')
 
 build() {
 cd "${srcdir}/${pkgbase}-${pkgver}"


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

2016-09-24 Thread Antonio Rojas
Date: Saturday, September 24, 2016 @ 13:06:42
  Author: arojas
Revision: 190267

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

Added:
  caja-extensions/repos/community-staging-i686/
  caja-extensions/repos/community-staging-i686/PKGBUILD
(from rev 190266, caja-extensions/trunk/PKGBUILD)
  caja-extensions/repos/community-staging-x86_64/
  caja-extensions/repos/community-staging-x86_64/PKGBUILD
(from rev 190266, caja-extensions/trunk/PKGBUILD)

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

Copied: caja-extensions/repos/community-staging-i686/PKGBUILD (from rev 190266, 
caja-extensions/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-09-24 13:06:42 UTC (rev 190267)
@@ -0,0 +1,97 @@
+# Contributor: Martin Wimpress 
+
+_ver=1.16
+pkgbase=caja-extensions
+pkgname=(caja-extensions-common caja-gksu caja-image-converter 
caja-open-terminal caja-sendto caja-share caja-wallpaper)
+pkgver=${_ver}.0
+pkgrel=1
+pkgdesc="Caja extensions (GTK2 version)"
+url="http://mate-desktop.org";
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('caja' 'dbus-glib' 'gksu' 'gupnp' 'imagemagick' 'samba')
+makedepends=('intltool')
+source=("http://pub.mate-desktop.org/releases/${_ver}/${pkgbase}-${pkgver}.tar.xz";)
+sha1sums=('9b27e46a731b117815862229c38445ef94afa600')
+
+build() {
+cd "${srcdir}/${pkgbase}-${pkgver}"
+PYTHON=/usr/bin/python2 ./configure \
+--prefix=/usr \
+--with-gtk=2.0
+
+#https://bugzilla.gnome.org/show_bug.cgi?id=656231
+sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+make
+}
+
+package_caja-extensions-common() {
+pkgdesc="Caja extensions (common files)"
+depends=()
+
+cd "${srcdir}/${pkgbase}-${pkgver}"
+make -C po DESTDIR="${pkgdir}" install
+}
+
+package_caja-gksu() {
+pkgdesc="Privilege granting extension for Caja using gksu (GTK2 version)"
+depends=('caja' 'caja-extensions-common' 'gksu')
+groups=('mate-extra')
+conflicts=('caja-gksu-gtk3')
+
+cd "${srcdir}/${pkgbase}-${pkgver}"
+make -C gksu DESTDIR="${pkgdir}" install
+}
+
+package_caja-image-converter() {
+pkgdesc="A Caja extension for simple image conversions (GTK2 version)"
+depends=('caja' 'caja-extensions-common' 'imagemagick')
+groups=('mate-extra')
+conflicts=('caja-image-converter-gtk3')
+
+cd "${srcdir}/${pkgbase}-${pkgver}"
+make -C image-converter DESTDIR="${pkgdir}" install
+}
+
+package_caja-open-terminal() {
+pkgdesc="A Caja extension for opening terminals in arbitrary local paths 
(GTK2 version)"
+depends=('caja' 'caja-extensions-common')
+groups=('mate-extra')
+conflicts=('caja-open-terminal-gtk3')
+
+cd "${srcdir}/${pkgbase}-${pkgver}"
+make -C open-terminal DESTDIR="${pkgdir}" install
+}
+
+package_caja-sendto() {
+pkgdesc="A Caja extension for sending files (GTK2 version)"
+depends=('caja' 'caja-extensions-common' 'dbus-glib' 'gupnp')
+groups=('mate-extra')
+optdepends=('pidgin: Support for sending to instant messaging networks.'
+'gajim: Support for sending to Jabber.')
+conflicts=('caja-sendto-gtk3')
+
+cd "${srcdir}/${pkgbase}-${pkgver}"
+make -C sendto DESTDIR="${pkgdir}" install
+}
+
+package_caja-share() {
+pkgdesc="A Caja extension to quickly share a folder (GTK2 version)"
+depends=('caja' 'caja-extensions-common' 'samba')
+groups=('mate-extra')
+conflicts=('caja-share-gtk3')
+
+cd "${srcdir}/${pkgbase}-${pkgver}"
+make -C share DESTDIR="${pkgdir}" install
+}
+
+package_caja-wallpaper() {
+pkgdesc="A Caja extension to quickly set wallpaper (GTK2 version)"
+depends=('caja' 'caja-extensions-common')
+groups=('mate-extra')
+conflicts=('caja-wallpaper-gtk3')
+
+cd "${srcdir}/${pkgbase}-${pkgver}"
+make -C wallpaper DESTDIR="${pkgdir}" install
+}

Copied: caja-extensions/repos/community-staging-x86_64/PKGBUILD (from rev 
190266, caja-extensions/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-09-24 13:06:42 UTC (rev 190267)
@@ -0,0 +1,97 @@
+# Contributor: Martin Wimpress 
+
+_ver=1.16
+pkgbase=caja-extensions
+pkgname=(caja-extensions-common caja-gksu caja-image-converter 
caja-open-terminal caja-sendto caja-share caja-wallpaper)
+pkgver=${_ver}.0
+pkgrel=1
+pkgdesc="Caja extensions (GTK2 version)"
+url="http://mate-desktop.org";
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('caja' 'dbus-glib' 'gksu' 'gupnp' 'imagemagick' 'samba')
+makedepends=('intltool')
+source=("http://pub.

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

2016-09-24 Thread Antonio Rojas
Date: Saturday, September 24, 2016 @ 13:08:12
  Author: arojas
Revision: 190268

Update to 1.16.0

Modified:
  caja-extensions-gtk3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-24 13:06:42 UTC (rev 190267)
+++ PKGBUILD2016-09-24 13:08:12 UTC (rev 190268)
@@ -1,6 +1,6 @@
 # Contributor: Martin Wimpress 
 
-_ver=1.14
+_ver=1.16
 _pkgbase=caja-extensions
 pkgbase=${_pkgbase}-gtk3
 pkgname=(caja-gksu-gtk3 caja-image-converter-gtk3 caja-open-terminal-gtk3 
caja-sendto-gtk3 caja-share-gtk3 caja-wallpaper-gtk3)
@@ -13,7 +13,7 @@
 depends=('caja-gtk3' 'dbus-glib' 'gksu' 'gupnp' 'imagemagick' 'samba')
 makedepends=('intltool')
 
source=("http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz";)
-sha1sums=('f6861379fd3ae72eae1394eb2f70f3db65cc85c7')
+sha1sums=('9b27e46a731b117815862229c38445ef94afa600')
 
 build() {
 cd "${srcdir}/${_pkgbase}-${pkgver}"


[arch-commits] Commit in caja-extensions-gtk3/repos (4 files)

2016-09-24 Thread Antonio Rojas
Date: Saturday, September 24, 2016 @ 13:08:44
  Author: arojas
Revision: 190269

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

Added:
  caja-extensions-gtk3/repos/community-staging-i686/
  caja-extensions-gtk3/repos/community-staging-i686/PKGBUILD
(from rev 190268, caja-extensions-gtk3/trunk/PKGBUILD)
  caja-extensions-gtk3/repos/community-staging-x86_64/
  caja-extensions-gtk3/repos/community-staging-x86_64/PKGBUILD
(from rev 190268, caja-extensions-gtk3/trunk/PKGBUILD)

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

Copied: caja-extensions-gtk3/repos/community-staging-i686/PKGBUILD (from rev 
190268, caja-extensions-gtk3/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-09-24 13:08:44 UTC (rev 190269)
@@ -0,0 +1,90 @@
+# Contributor: Martin Wimpress 
+
+_ver=1.16
+_pkgbase=caja-extensions
+pkgbase=${_pkgbase}-gtk3
+pkgname=(caja-gksu-gtk3 caja-image-converter-gtk3 caja-open-terminal-gtk3 
caja-sendto-gtk3 caja-share-gtk3 caja-wallpaper-gtk3)
+pkgver=${_ver}.0
+pkgrel=1
+pkgdesc="Caja extensions (GTK3 version)"
+url="http://mate-desktop.org";
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('caja-gtk3' 'dbus-glib' 'gksu' 'gupnp' 'imagemagick' 'samba')
+makedepends=('intltool')
+source=("http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz";)
+sha1sums=('9b27e46a731b117815862229c38445ef94afa600')
+
+build() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+PYTHON=/usr/bin/python2 ./configure \
+--prefix=/usr \
+--with-gtk=3.0
+
+#https://bugzilla.gnome.org/show_bug.cgi?id=656231
+sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+make
+}
+
+package_caja-gksu-gtk3() {
+pkgdesc="Privilege granting extension for Caja using gksu (GTK3 version)"
+depends=('caja-gtk3' 'caja-extensions-common' 'gksu')
+groups=('mate-extra-gtk3')
+conflicts=('caja-gksu')
+
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+make -C gksu DESTDIR="${pkgdir}" install
+}
+
+package_caja-image-converter-gtk3() {
+pkgdesc="A Caja extension for simple image conversions (GTK3 version)"
+depends=('caja-gtk3' 'caja-extensions-common' 'imagemagick')
+groups=('mate-extra-gtk3')
+conflicts=('caja-image-converter')
+
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+make -C image-converter DESTDIR="${pkgdir}" install
+}
+
+package_caja-open-terminal-gtk3() {
+pkgdesc="A Caja extension for opening terminals in arbitrary local paths 
(GTK3 version)"
+depends=('caja-gtk3' 'caja-extensions-common')
+groups=('mate-extra-gtk3')
+conflicts=('caja-open-terminal')
+
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+make -C open-terminal DESTDIR="${pkgdir}" install
+}
+
+package_caja-sendto-gtk3() {
+pkgdesc="A Caja extension for sending files (GTK3 version)"
+depends=('caja-gtk3' 'caja-extensions-common' 'dbus-glib' 'gupnp')
+groups=('mate-extra-gtk3')
+optdepends=('pidgin: Support for sending to instant messaging networks.'
+'gajim: Support for sending to Jabber.')
+conflicts=('caja-sendto')
+
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+make -C sendto DESTDIR="${pkgdir}" install
+}
+
+package_caja-share-gtk3() {
+pkgdesc="A Caja extension to quickly share a folder (GTK3 version)"
+depends=('caja-gtk3' 'caja-extensions-common' 'samba')
+groups=('mate-extra-gtk3')
+conflicts=('caja-share')
+
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+make -C share DESTDIR="${pkgdir}" install
+}
+
+package_caja-wallpaper-gtk3() {
+pkgdesc="A Caja extension to quickly set wallpaper (GTK3 version)"
+depends=('caja-gtk3' 'caja-extensions-common')
+groups=('mate-extra-gtk3')
+conflicts=('caja-wallpaper')
+
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+make -C wallpaper DESTDIR="${pkgdir}" install
+}

Copied: caja-extensions-gtk3/repos/community-staging-x86_64/PKGBUILD (from rev 
190268, caja-extensions-gtk3/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-09-24 13:08:44 UTC (rev 190269)
@@ -0,0 +1,90 @@
+# Contributor: Martin Wimpress 
+
+_ver=1.16
+_pkgbase=caja-extensions
+pkgbase=${_pkgbase}-gtk3
+pkgname=(caja-gksu-gtk3 caja-image-converter-gtk3 caja-open-terminal-gtk3 
caja-sendto-gtk3 caja-share-gtk3 caja-wallpaper-gtk3)
+pkgver=${_ver}.0
+pkgrel=1
+pkgdesc="Caja extensions (GTK3 version)"
+url="http://mate-desktop.org";
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('caja-gtk3' 'dbus-glib' 'gksu' 'gupnp' 'imagemagick' 'samba')
+makedepends=('intltool')
+source=("http:

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

2016-09-24 Thread Antonio Rojas
Date: Saturday, September 24, 2016 @ 13:10:26
  Author: arojas
Revision: 190270

Update to 1.16.0

Modified:
  eom/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-24 13:08:44 UTC (rev 190269)
+++ PKGBUILD2016-09-24 13:10:26 UTC (rev 190270)
@@ -1,9 +1,9 @@
 # Contributor: Martin Wimpress 
 
-_ver=1.14
+_ver=1.16
 _pkgbase=eom
 pkgname=(${_pkgbase})
-pkgver=${_ver}.2
+pkgver=${_ver}.0
 pkgrel=1
 pkgdesc="An image viewing and cataloging program for MATE (GTK2 version)"
 url="http://mate-desktop.org";
@@ -14,7 +14,7 @@
 groups=('mate-extra')
 conflicts=("${_pkgbase}-gtk3")
 
source=("http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz";)
-sha1sums=('32afdaaa7fde94c935f4fe621d67bbf4acdc132a')
+sha1sums=('9c2d032f971a1296a2300c9cacdeb4cef931ac20')
 
 build() {
 cd "${srcdir}/${_pkgbase}-${pkgver}"


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

2016-09-24 Thread Antonio Rojas
Date: Saturday, September 24, 2016 @ 13:11:16
  Author: arojas
Revision: 190271

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

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

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

Copied: eom/repos/community-staging-i686/PKGBUILD (from rev 190270, 
eom/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-09-24 13:11:16 UTC (rev 190271)
@@ -0,0 +1,37 @@
+# Contributor: Martin Wimpress 
+
+_ver=1.16
+_pkgbase=eom
+pkgname=(${_pkgbase})
+pkgver=${_ver}.0
+pkgrel=1
+pkgdesc="An image viewing and cataloging program for MATE (GTK2 version)"
+url="http://mate-desktop.org";
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('dbus-glib' 'gobject-introspection-runtime' 'exempi' 'lcms2' 
'libexif' 'libjpeg-turbo' 'mate-desktop')
+makedepends=('gobject-introspection' 'intltool' 'itstool')
+groups=('mate-extra')
+conflicts=("${_pkgbase}-gtk3")
+source=("http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz";)
+sha1sums=('9c2d032f971a1296a2300c9cacdeb4cef931ac20')
+
+build() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+./configure \
+--prefix=/usr \
+--localstatedir=/var \
+--with-gtk=2.0 \
+--with-librsvg \
+--disable-python
+
+#https://bugzilla.gnome.org/show_bug.cgi?id=656231
+sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+make
+}
+
+package() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+make DESTDIR="${pkgdir}" install
+}

Copied: eom/repos/community-staging-x86_64/PKGBUILD (from rev 190270, 
eom/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-09-24 13:11:16 UTC (rev 190271)
@@ -0,0 +1,37 @@
+# Contributor: Martin Wimpress 
+
+_ver=1.16
+_pkgbase=eom
+pkgname=(${_pkgbase})
+pkgver=${_ver}.0
+pkgrel=1
+pkgdesc="An image viewing and cataloging program for MATE (GTK2 version)"
+url="http://mate-desktop.org";
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('dbus-glib' 'gobject-introspection-runtime' 'exempi' 'lcms2' 
'libexif' 'libjpeg-turbo' 'mate-desktop')
+makedepends=('gobject-introspection' 'intltool' 'itstool')
+groups=('mate-extra')
+conflicts=("${_pkgbase}-gtk3")
+source=("http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz";)
+sha1sums=('9c2d032f971a1296a2300c9cacdeb4cef931ac20')
+
+build() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+./configure \
+--prefix=/usr \
+--localstatedir=/var \
+--with-gtk=2.0 \
+--with-librsvg \
+--disable-python
+
+#https://bugzilla.gnome.org/show_bug.cgi?id=656231
+sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+make
+}
+
+package() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+make DESTDIR="${pkgdir}" install
+}


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

2016-09-24 Thread Antonio Rojas
Date: Saturday, September 24, 2016 @ 13:13:59
  Author: arojas
Revision: 190272

Update to 1.16.0

Modified:
  eom-gtk3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-24 13:11:16 UTC (rev 190271)
+++ PKGBUILD2016-09-24 13:13:59 UTC (rev 190272)
@@ -1,9 +1,9 @@
 # Contributor: Martin Wimpress 
 
-_ver=1.14
+_ver=1.16
 _pkgbase=eom
 pkgname=(${_pkgbase}-gtk3)
-pkgver=${_ver}.1
+pkgver=${_ver}.0
 pkgrel=1
 pkgdesc="An image viewing and cataloging program for MATE (GTK3 version)"
 url="http://mate-desktop.org";
@@ -14,7 +14,7 @@
 groups=('mate-extra-gtk3')
 conflicts=("${_pkgbase}")
 
source=("http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz";)
-sha1sums=('df3e91693122053e97a87ca02119b2deda74e475')
+sha1sums=('9c2d032f971a1296a2300c9cacdeb4cef931ac20')
 
 build() {
 cd "${srcdir}/${_pkgbase}-${pkgver}"


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

2016-09-24 Thread Antonio Rojas
Date: Saturday, September 24, 2016 @ 13:14:21
  Author: arojas
Revision: 190273

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

Added:
  eom-gtk3/repos/community-staging-i686/
  eom-gtk3/repos/community-staging-i686/PKGBUILD
(from rev 190272, eom-gtk3/trunk/PKGBUILD)
  eom-gtk3/repos/community-staging-x86_64/
  eom-gtk3/repos/community-staging-x86_64/PKGBUILD
(from rev 190272, eom-gtk3/trunk/PKGBUILD)

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

Copied: eom-gtk3/repos/community-staging-i686/PKGBUILD (from rev 190272, 
eom-gtk3/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-09-24 13:14:21 UTC (rev 190273)
@@ -0,0 +1,37 @@
+# Contributor: Martin Wimpress 
+
+_ver=1.16
+_pkgbase=eom
+pkgname=(${_pkgbase}-gtk3)
+pkgver=${_ver}.0
+pkgrel=1
+pkgdesc="An image viewing and cataloging program for MATE (GTK3 version)"
+url="http://mate-desktop.org";
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('dbus-glib' 'gobject-introspection-runtime' 'exempi' 'libexif' 
'libjpeg-turbo' 'mate-desktop-gtk3')
+makedepends=('gobject-introspection' 'intltool' 'itstool')
+groups=('mate-extra-gtk3')
+conflicts=("${_pkgbase}")
+source=("http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz";)
+sha1sums=('9c2d032f971a1296a2300c9cacdeb4cef931ac20')
+
+build() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+./configure \
+--prefix=/usr \
+--localstatedir=/var \
+--with-gtk=3.0 \
+--with-librsvg \
+--disable-python
+
+#https://bugzilla.gnome.org/show_bug.cgi?id=656231
+sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+make
+}
+
+package() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+make DESTDIR="${pkgdir}" install
+}

Copied: eom-gtk3/repos/community-staging-x86_64/PKGBUILD (from rev 190272, 
eom-gtk3/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-09-24 13:14:21 UTC (rev 190273)
@@ -0,0 +1,37 @@
+# Contributor: Martin Wimpress 
+
+_ver=1.16
+_pkgbase=eom
+pkgname=(${_pkgbase}-gtk3)
+pkgver=${_ver}.0
+pkgrel=1
+pkgdesc="An image viewing and cataloging program for MATE (GTK3 version)"
+url="http://mate-desktop.org";
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('dbus-glib' 'gobject-introspection-runtime' 'exempi' 'libexif' 
'libjpeg-turbo' 'mate-desktop-gtk3')
+makedepends=('gobject-introspection' 'intltool' 'itstool')
+groups=('mate-extra-gtk3')
+conflicts=("${_pkgbase}")
+source=("http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz";)
+sha1sums=('9c2d032f971a1296a2300c9cacdeb4cef931ac20')
+
+build() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+./configure \
+--prefix=/usr \
+--localstatedir=/var \
+--with-gtk=3.0 \
+--with-librsvg \
+--disable-python
+
+#https://bugzilla.gnome.org/show_bug.cgi?id=656231
+sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+make
+}
+
+package() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+make DESTDIR="${pkgdir}" install
+}


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

2016-09-24 Thread Antonio Rojas
Date: Saturday, September 24, 2016 @ 13:16:48
  Author: arojas
Revision: 190274

Update to 1.16.0

Modified:
  marco/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-24 13:14:21 UTC (rev 190273)
+++ PKGBUILD2016-09-24 13:16:48 UTC (rev 190274)
@@ -1,9 +1,9 @@
 # Contributor: Martin Wimpress 
 
-_ver=1.14
+_ver=1.16
 _pkgbase=marco
 pkgname=(${_pkgbase})
-pkgver=${_ver}.2
+pkgver=${_ver}.0
 pkgrel=1
 pkgdesc="A window manager for MATE (GTK2 version)"
 url="http://mate-desktop.org";
@@ -14,7 +14,7 @@
 groups=('mate')
 conflicts=("${_pkgbase}-gtk3")
 
source=("http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz";)
-sha1sums=('dc4770dea2d09b046f027064329b94e6fd53367b')
+sha1sums=('b9b3c14812fcb7ab5dfd2c3498eac639d2e63be6')
 
 build() {
 cd "${srcdir}/${_pkgbase}-${pkgver}"


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

2016-09-24 Thread Antonio Rojas
Date: Saturday, September 24, 2016 @ 13:17:43
  Author: arojas
Revision: 190275

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

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

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

Copied: marco/repos/community-staging-i686/PKGBUILD (from rev 190274, 
marco/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-09-24 13:17:43 UTC (rev 190275)
@@ -0,0 +1,37 @@
+# Contributor: Martin Wimpress 
+
+_ver=1.16
+_pkgbase=marco
+pkgname=(${_pkgbase})
+pkgver=${_ver}.0
+pkgrel=1
+pkgdesc="A window manager for MATE (GTK2 version)"
+url="http://mate-desktop.org";
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('libcanberra' 'libgtop' 'mate-desktop' 'zenity')
+makedepends=('intltool' 'itstool')
+groups=('mate')
+conflicts=("${_pkgbase}-gtk3")
+source=("http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz";)
+sha1sums=('b9b3c14812fcb7ab5dfd2c3498eac639d2e63be6')
+
+build() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--with-gtk=2.0 \
+--enable-startup-notification
+
+#https://bugzilla.gnome.org/show_bug.cgi?id=656231
+sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+make
+}
+
+package() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+make DESTDIR="${pkgdir}" install
+}

Copied: marco/repos/community-staging-x86_64/PKGBUILD (from rev 190274, 
marco/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-09-24 13:17:43 UTC (rev 190275)
@@ -0,0 +1,37 @@
+# Contributor: Martin Wimpress 
+
+_ver=1.16
+_pkgbase=marco
+pkgname=(${_pkgbase})
+pkgver=${_ver}.0
+pkgrel=1
+pkgdesc="A window manager for MATE (GTK2 version)"
+url="http://mate-desktop.org";
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('libcanberra' 'libgtop' 'mate-desktop' 'zenity')
+makedepends=('intltool' 'itstool')
+groups=('mate')
+conflicts=("${_pkgbase}-gtk3")
+source=("http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz";)
+sha1sums=('b9b3c14812fcb7ab5dfd2c3498eac639d2e63be6')
+
+build() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--with-gtk=2.0 \
+--enable-startup-notification
+
+#https://bugzilla.gnome.org/show_bug.cgi?id=656231
+sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+make
+}
+
+package() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+make DESTDIR="${pkgdir}" install
+}


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

2016-09-24 Thread Antonio Rojas
Date: Saturday, September 24, 2016 @ 13:23:19
  Author: arojas
Revision: 190277

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

Added:
  marco-gtk3/repos/community-staging-i686/
  marco-gtk3/repos/community-staging-i686/PKGBUILD
(from rev 190276, marco-gtk3/trunk/PKGBUILD)
  marco-gtk3/repos/community-staging-x86_64/
  marco-gtk3/repos/community-staging-x86_64/PKGBUILD
(from rev 190276, marco-gtk3/trunk/PKGBUILD)

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

Copied: marco-gtk3/repos/community-staging-i686/PKGBUILD (from rev 190276, 
marco-gtk3/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-09-24 13:23:19 UTC (rev 190277)
@@ -0,0 +1,37 @@
+# Contributor: Martin Wimpress 
+
+_ver=1.16
+_pkgbase=marco
+pkgname=(${_pkgbase}-gtk3)
+pkgver=${_ver}.0
+pkgrel=1
+pkgdesc="A window manager for MATE (GTK3 version)"
+url="http://mate-desktop.org";
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('libcanberra' 'libgtop' 'zenity' 'startup-notification')
+makedepends=('intltool' 'itstool')
+groups=('mate-gtk3')
+conflicts=("${_pkgbase}")
+source=("http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz";)
+sha1sums=('b9b3c14812fcb7ab5dfd2c3498eac639d2e63be6')
+
+build() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--with-gtk=3.0 \
+--enable-startup-notification
+
+#https://bugzilla.gnome.org/show_bug.cgi?id=656231
+sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+make
+}
+
+package() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+make DESTDIR="${pkgdir}" install
+}

Copied: marco-gtk3/repos/community-staging-x86_64/PKGBUILD (from rev 190276, 
marco-gtk3/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-09-24 13:23:19 UTC (rev 190277)
@@ -0,0 +1,37 @@
+# Contributor: Martin Wimpress 
+
+_ver=1.16
+_pkgbase=marco
+pkgname=(${_pkgbase}-gtk3)
+pkgver=${_ver}.0
+pkgrel=1
+pkgdesc="A window manager for MATE (GTK3 version)"
+url="http://mate-desktop.org";
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('libcanberra' 'libgtop' 'zenity' 'startup-notification')
+makedepends=('intltool' 'itstool')
+groups=('mate-gtk3')
+conflicts=("${_pkgbase}")
+source=("http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz";)
+sha1sums=('b9b3c14812fcb7ab5dfd2c3498eac639d2e63be6')
+
+build() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--with-gtk=3.0 \
+--enable-startup-notification
+
+#https://bugzilla.gnome.org/show_bug.cgi?id=656231
+sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+make
+}
+
+package() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+make DESTDIR="${pkgdir}" install
+}


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

2016-09-24 Thread Antonio Rojas
Date: Saturday, September 24, 2016 @ 13:22:56
  Author: arojas
Revision: 190276

Update to 1.16.0

Modified:
  marco-gtk3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-24 13:17:43 UTC (rev 190275)
+++ PKGBUILD2016-09-24 13:22:56 UTC (rev 190276)
@@ -1,20 +1,20 @@
 # Contributor: Martin Wimpress 
 
-_ver=1.14
+_ver=1.16
 _pkgbase=marco
 pkgname=(${_pkgbase}-gtk3)
-pkgver=${_ver}.2
+pkgver=${_ver}.0
 pkgrel=1
 pkgdesc="A window manager for MATE (GTK3 version)"
 url="http://mate-desktop.org";
 arch=('i686' 'x86_64')
 license=('GPL')
-depends=('libcanberra' 'libgtop' 'mate-desktop-gtk3' 'zenity')
+depends=('libcanberra' 'libgtop' 'zenity' 'startup-notification')
 makedepends=('intltool' 'itstool')
 groups=('mate-gtk3')
 conflicts=("${_pkgbase}")
 
source=("http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz";)
-sha1sums=('dc4770dea2d09b046f027064329b94e6fd53367b')
+sha1sums=('b9b3c14812fcb7ab5dfd2c3498eac639d2e63be6')
 
 build() {
 cd "${srcdir}/${_pkgbase}-${pkgver}"


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

2016-09-24 Thread Antonio Rojas
Date: Saturday, September 24, 2016 @ 13:26:44
  Author: arojas
Revision: 190278

Update to 1.16.0

Modified:
  mate-applets/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-24 13:23:19 UTC (rev 190277)
+++ PKGBUILD2016-09-24 13:26:44 UTC (rev 190278)
@@ -1,6 +1,6 @@
 # Contributor: Martin Wimpress 
 
-_ver=1.14
+_ver=1.16
 _pkgbase=mate-applets
 pkgname=(${_pkgbase})
 pkgver=${_ver}.0
@@ -17,7 +17,7 @@
 conflicts=("${_pkgbase}-gtk3" 'mate-netspeed' 'mate-netspeed-gtk3')
 replaces=('mate-netspeed')
 
source=("http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz";)
-sha1sums=('e316ade06cba447908120eee07b777dcfae436cd')
+sha1sums=('6e6b51089bcb6450a466ba358b71fcfd7aba3a6a')
 
 prepare() {
 cd "${srcdir}/${_pkgbase}-${pkgver}"


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

2016-09-24 Thread Antonio Rojas
Date: Saturday, September 24, 2016 @ 13:27:50
  Author: arojas
Revision: 190279

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

Added:
  mate-applets/repos/community-staging-i686/
  mate-applets/repos/community-staging-i686/PKGBUILD
(from rev 190278, mate-applets/trunk/PKGBUILD)
  mate-applets/repos/community-staging-x86_64/
  mate-applets/repos/community-staging-x86_64/PKGBUILD
(from rev 190278, mate-applets/trunk/PKGBUILD)

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

Copied: mate-applets/repos/community-staging-i686/PKGBUILD (from rev 190278, 
mate-applets/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-09-24 13:27:50 UTC (rev 190279)
@@ -0,0 +1,42 @@
+# Contributor: Martin Wimpress 
+
+_ver=1.16
+_pkgbase=mate-applets
+pkgname=(${_pkgbase})
+pkgver=${_ver}.0
+pkgrel=1
+pkgdesc="Applets for MATE panel (GTK2 version)"
+arch=('i686' 'x86_64')
+url="http://mate-desktop.org";
+license=('GPL')
+depends=('gtksourceview2' 'libgtop' 'libnotify' 'mate-panel' 'polkit'
+ 'python2-dbus' 'python2-gobject' 'upower' 'wireless_tools')
+makedepends=('intltool' 'itstool')
+optdepends=('fortune-mod: for displaying fortune cookies in the Wanda the Fish 
applet')
+groups=('mate-extra')
+conflicts=("${_pkgbase}-gtk3" 'mate-netspeed' 'mate-netspeed-gtk3')
+replaces=('mate-netspeed')
+source=("http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz";)
+sha1sums=('6e6b51089bcb6450a466ba358b71fcfd7aba3a6a')
+
+prepare() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+sed -i 's/env python/env python2/' 
invest-applet/invest/{chart.py,invest-applet.py,mate-invest-chart}
+}
+
+build() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+PYTHON=/usr/bin/python2 ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib/${_pkgbase} \
+--enable-polkit \
+--enable-ipv6 \
+--with-gtk=2.0
+make
+}
+
+package() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+make DESTDIR="${pkgdir}" install
+}

Copied: mate-applets/repos/community-staging-x86_64/PKGBUILD (from rev 190278, 
mate-applets/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-09-24 13:27:50 UTC (rev 190279)
@@ -0,0 +1,42 @@
+# Contributor: Martin Wimpress 
+
+_ver=1.16
+_pkgbase=mate-applets
+pkgname=(${_pkgbase})
+pkgver=${_ver}.0
+pkgrel=1
+pkgdesc="Applets for MATE panel (GTK2 version)"
+arch=('i686' 'x86_64')
+url="http://mate-desktop.org";
+license=('GPL')
+depends=('gtksourceview2' 'libgtop' 'libnotify' 'mate-panel' 'polkit'
+ 'python2-dbus' 'python2-gobject' 'upower' 'wireless_tools')
+makedepends=('intltool' 'itstool')
+optdepends=('fortune-mod: for displaying fortune cookies in the Wanda the Fish 
applet')
+groups=('mate-extra')
+conflicts=("${_pkgbase}-gtk3" 'mate-netspeed' 'mate-netspeed-gtk3')
+replaces=('mate-netspeed')
+source=("http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz";)
+sha1sums=('6e6b51089bcb6450a466ba358b71fcfd7aba3a6a')
+
+prepare() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+sed -i 's/env python/env python2/' 
invest-applet/invest/{chart.py,invest-applet.py,mate-invest-chart}
+}
+
+build() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+PYTHON=/usr/bin/python2 ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib/${_pkgbase} \
+--enable-polkit \
+--enable-ipv6 \
+--with-gtk=2.0
+make
+}
+
+package() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+make DESTDIR="${pkgdir}" install
+}


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

2016-09-24 Thread Antonio Rojas
Date: Saturday, September 24, 2016 @ 13:29:26
  Author: arojas
Revision: 190280

Update to 1.16.0

Modified:
  mate-applets-gtk3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-24 13:27:50 UTC (rev 190279)
+++ PKGBUILD2016-09-24 13:29:26 UTC (rev 190280)
@@ -1,6 +1,6 @@
 # Contributor: Martin Wimpress 
 
-_ver=1.14
+_ver=1.16
 _pkgbase=mate-applets
 pkgname=(${_pkgbase}-gtk3)
 pkgver=${_ver}.0
@@ -17,7 +17,7 @@
 conflicts=("${_pkgbase}" 'mate-netspeed' 'mate-netspeed-gtk3')
 replaces=('mate-netspeed-gtk3')
 
source=("http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz";)
-sha1sums=('e316ade06cba447908120eee07b777dcfae436cd')
+sha1sums=('6e6b51089bcb6450a466ba358b71fcfd7aba3a6a')
 
 prepare() {
 cd "${srcdir}/${_pkgbase}-${pkgver}"


[arch-commits] Commit in mate-applets-gtk3/repos (4 files)

2016-09-24 Thread Antonio Rojas
Date: Saturday, September 24, 2016 @ 13:29:53
  Author: arojas
Revision: 190281

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

Added:
  mate-applets-gtk3/repos/community-staging-i686/
  mate-applets-gtk3/repos/community-staging-i686/PKGBUILD
(from rev 190280, mate-applets-gtk3/trunk/PKGBUILD)
  mate-applets-gtk3/repos/community-staging-x86_64/
  mate-applets-gtk3/repos/community-staging-x86_64/PKGBUILD
(from rev 190280, mate-applets-gtk3/trunk/PKGBUILD)

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

Copied: mate-applets-gtk3/repos/community-staging-i686/PKGBUILD (from rev 
190280, mate-applets-gtk3/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-09-24 13:29:53 UTC (rev 190281)
@@ -0,0 +1,42 @@
+# Contributor: Martin Wimpress 
+
+_ver=1.16
+_pkgbase=mate-applets
+pkgname=(${_pkgbase}-gtk3)
+pkgver=${_ver}.0
+pkgrel=1
+pkgdesc="Applets for MATE panel (GTK3 version)"
+arch=('i686' 'x86_64')
+url="http://mate-desktop.org";
+license=('GPL')
+depends=('gtksourceview3' 'libgtop' 'libnotify' 'mate-panel-gtk3'
+ 'python2-dbus' 'python2-gobject' 'upower' 'wireless_tools')
+makedepends=('intltool' 'itstool')
+optdepends=('fortune-mod: for displaying fortune cookies in the Wanda the Fish 
applet')
+groups=('mate-extra-gtk3')
+conflicts=("${_pkgbase}" 'mate-netspeed' 'mate-netspeed-gtk3')
+replaces=('mate-netspeed-gtk3')
+source=("http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz";)
+sha1sums=('6e6b51089bcb6450a466ba358b71fcfd7aba3a6a')
+
+prepare() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+sed -i 's/env python/env python2/' 
invest-applet/invest/{chart.py,invest-applet.py,mate-invest-chart}
+}
+
+build() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+PYTHON=/usr/bin/python2 ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib/${_pkgbase} \
+--enable-polkit \
+--enable-ipv6 \
+--with-gtk=3.0
+make
+}
+
+package() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+make DESTDIR="${pkgdir}" install
+}

Copied: mate-applets-gtk3/repos/community-staging-x86_64/PKGBUILD (from rev 
190280, mate-applets-gtk3/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-09-24 13:29:53 UTC (rev 190281)
@@ -0,0 +1,42 @@
+# Contributor: Martin Wimpress 
+
+_ver=1.16
+_pkgbase=mate-applets
+pkgname=(${_pkgbase}-gtk3)
+pkgver=${_ver}.0
+pkgrel=1
+pkgdesc="Applets for MATE panel (GTK3 version)"
+arch=('i686' 'x86_64')
+url="http://mate-desktop.org";
+license=('GPL')
+depends=('gtksourceview3' 'libgtop' 'libnotify' 'mate-panel-gtk3'
+ 'python2-dbus' 'python2-gobject' 'upower' 'wireless_tools')
+makedepends=('intltool' 'itstool')
+optdepends=('fortune-mod: for displaying fortune cookies in the Wanda the Fish 
applet')
+groups=('mate-extra-gtk3')
+conflicts=("${_pkgbase}" 'mate-netspeed' 'mate-netspeed-gtk3')
+replaces=('mate-netspeed-gtk3')
+source=("http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz";)
+sha1sums=('6e6b51089bcb6450a466ba358b71fcfd7aba3a6a')
+
+prepare() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+sed -i 's/env python/env python2/' 
invest-applet/invest/{chart.py,invest-applet.py,mate-invest-chart}
+}
+
+build() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+PYTHON=/usr/bin/python2 ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib/${_pkgbase} \
+--enable-polkit \
+--enable-ipv6 \
+--with-gtk=3.0
+make
+}
+
+package() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+make DESTDIR="${pkgdir}" install
+}


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

2016-09-24 Thread Antonio Rojas
Date: Saturday, September 24, 2016 @ 13:32:15
  Author: arojas
Revision: 190282

Update to 1.16.0

Modified:
  mate-backgrounds/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-24 13:29:53 UTC (rev 190281)
+++ PKGBUILD2016-09-24 13:32:15 UTC (rev 190282)
@@ -1,6 +1,6 @@
 # Contributor: Martin Wimpress 
 
-_ver=1.14
+_ver=1.16
 pkgname=mate-backgrounds
 pkgver=${_ver}.0
 pkgrel=1
@@ -11,7 +11,7 @@
 makedepends=('intltool')
 groups=('mate' 'mate-gtk3')
 
source=("http://pub.mate-desktop.org/releases/${_ver}/${pkgname}-${pkgver}.tar.xz";)
-sha1sums=('0dd81659b362862f6da1f48900609a09133053bb')
+sha1sums=('02c3371b24df915cf6fd4168d79d310447c258ec')
 
 build() {
 cd "${srcdir}/${pkgname}-${pkgver}"


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

2016-09-24 Thread Antonio Rojas
Date: Saturday, September 24, 2016 @ 13:32:41
  Author: arojas
Revision: 190283

archrelease: copy trunk to community-staging-any

Added:
  mate-backgrounds/repos/community-staging-any/
  mate-backgrounds/repos/community-staging-any/PKGBUILD
(from rev 190282, mate-backgrounds/trunk/PKGBUILD)

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

Copied: mate-backgrounds/repos/community-staging-any/PKGBUILD (from rev 190282, 
mate-backgrounds/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2016-09-24 13:32:41 UTC (rev 190283)
@@ -0,0 +1,26 @@
+# Contributor: Martin Wimpress 
+
+_ver=1.16
+pkgname=mate-backgrounds
+pkgver=${_ver}.0
+pkgrel=1
+pkgdesc="Background images and data for MATE"
+url="http://mate-desktop.org";
+arch=('any')
+license=('GPL')
+makedepends=('intltool')
+groups=('mate' 'mate-gtk3')
+source=("http://pub.mate-desktop.org/releases/${_ver}/${pkgname}-${pkgver}.tar.xz";)
+sha1sums=('02c3371b24df915cf6fd4168d79d310447c258ec')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+./configure \
+--prefix=/usr
+make
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+make DESTDIR="${pkgdir}" install
+}


[arch-commits] Commit in mate-control-center/trunk (PKGBUILD)

2016-09-24 Thread Antonio Rojas
Date: Saturday, September 24, 2016 @ 13:35:32
  Author: arojas
Revision: 190284

Update to 1.16.0

Modified:
  mate-control-center/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-24 13:32:41 UTC (rev 190283)
+++ PKGBUILD2016-09-24 13:35:32 UTC (rev 190284)
@@ -1,9 +1,9 @@
 # Contributor: Martin Wimpress 
 
-_ver=1.14
+_ver=1.16
 _pkgbase=mate-control-center
 pkgname=${_pkgbase}
-pkgver=${_ver}.1
+pkgver=${_ver}.0
 pkgrel=1
 pkgdesc="The Control Center for MATE (GTK2 version)"
 url="http://mate-desktop.org";
@@ -14,7 +14,7 @@
 groups=('mate')
 conflicts=("${_pkgbase}-gtk3")
 
source=("http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz";)
-sha1sums=('8d7483ea2035346eda28263008123b966ee869e0')
+sha1sums=('452b0dd1025ba33f3f1c11e6d5220477dfffe4a8')
 
 build() {
 cd "${srcdir}/${_pkgbase}-${pkgver}"


[arch-commits] Commit in mate-control-center/repos (4 files)

2016-09-24 Thread Antonio Rojas
Date: Saturday, September 24, 2016 @ 13:35:57
  Author: arojas
Revision: 190285

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

Added:
  mate-control-center/repos/community-staging-i686/
  mate-control-center/repos/community-staging-i686/PKGBUILD
(from rev 190284, mate-control-center/trunk/PKGBUILD)
  mate-control-center/repos/community-staging-x86_64/
  mate-control-center/repos/community-staging-x86_64/PKGBUILD
(from rev 190284, mate-control-center/trunk/PKGBUILD)

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

Copied: mate-control-center/repos/community-staging-i686/PKGBUILD (from rev 
190284, mate-control-center/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-09-24 13:35:57 UTC (rev 190285)
@@ -0,0 +1,39 @@
+# Contributor: Martin Wimpress 
+
+_ver=1.16
+_pkgbase=mate-control-center
+pkgname=${_pkgbase}
+pkgver=${_ver}.0
+pkgrel=1
+pkgdesc="The Control Center for MATE (GTK2 version)"
+url="http://mate-desktop.org";
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('mate-menus' 'mate-settings-daemon' 'marco' 'libunique' 'libxss')
+makedepends=('intltool' 'itstool')
+groups=('mate')
+conflicts=("${_pkgbase}-gtk3")
+source=("http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz";)
+sha1sums=('452b0dd1025ba33f3f1c11e6d5220477dfffe4a8')
+
+build() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--sbindir=/usr/bin \
+--localstatedir=/var \
+--with-gtk=2.0 \
+--disable-update-mimedb
+
+#https://bugzilla.gnome.org/show_bug.cgi?id=656231
+sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+make
+}
+
+package() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+make DESTDIR="${pkgdir}" install
+rm -f "${pkgdir}/usr/share/applications/mimeinfo.cache"
+}

Copied: mate-control-center/repos/community-staging-x86_64/PKGBUILD (from rev 
190284, mate-control-center/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-09-24 13:35:57 UTC (rev 190285)
@@ -0,0 +1,39 @@
+# Contributor: Martin Wimpress 
+
+_ver=1.16
+_pkgbase=mate-control-center
+pkgname=${_pkgbase}
+pkgver=${_ver}.0
+pkgrel=1
+pkgdesc="The Control Center for MATE (GTK2 version)"
+url="http://mate-desktop.org";
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('mate-menus' 'mate-settings-daemon' 'marco' 'libunique' 'libxss')
+makedepends=('intltool' 'itstool')
+groups=('mate')
+conflicts=("${_pkgbase}-gtk3")
+source=("http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz";)
+sha1sums=('452b0dd1025ba33f3f1c11e6d5220477dfffe4a8')
+
+build() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--sbindir=/usr/bin \
+--localstatedir=/var \
+--with-gtk=2.0 \
+--disable-update-mimedb
+
+#https://bugzilla.gnome.org/show_bug.cgi?id=656231
+sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+make
+}
+
+package() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+make DESTDIR="${pkgdir}" install
+rm -f "${pkgdir}/usr/share/applications/mimeinfo.cache"
+}


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

2016-09-24 Thread Antonio Rojas
Date: Saturday, September 24, 2016 @ 13:37:54
  Author: arojas
Revision: 190286

Update to 1.16.0

Modified:
  mate-control-center-gtk3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-24 13:35:57 UTC (rev 190285)
+++ PKGBUILD2016-09-24 13:37:54 UTC (rev 190286)
@@ -1,6 +1,6 @@
 # Contributor: Martin Wimpress 
 
-_ver=1.14
+_ver=1.16
 _pkgbase=mate-control-center
 pkgname=${_pkgbase}-gtk3
 pkgver=${_ver}.0
@@ -14,7 +14,7 @@
 groups=('mate-gtk3')
 conflicts=("${_pkgbase}")
 
source=("http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz";)
-sha1sums=('4e02c9461fbdf7acf4bca015199e8bfedb11a278')
+sha1sums=('452b0dd1025ba33f3f1c11e6d5220477dfffe4a8')
 
 build() {
 cd "${srcdir}/${_pkgbase}-${pkgver}"


[arch-commits] Commit in mate-control-center-gtk3/repos (4 files)

2016-09-24 Thread Antonio Rojas
Date: Saturday, September 24, 2016 @ 13:38:24
  Author: arojas
Revision: 190287

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

Added:
  mate-control-center-gtk3/repos/community-staging-i686/
  mate-control-center-gtk3/repos/community-staging-i686/PKGBUILD
(from rev 190286, mate-control-center-gtk3/trunk/PKGBUILD)
  mate-control-center-gtk3/repos/community-staging-x86_64/
  mate-control-center-gtk3/repos/community-staging-x86_64/PKGBUILD
(from rev 190286, mate-control-center-gtk3/trunk/PKGBUILD)

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

Copied: mate-control-center-gtk3/repos/community-staging-i686/PKGBUILD (from 
rev 190286, mate-control-center-gtk3/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-09-24 13:38:24 UTC (rev 190287)
@@ -0,0 +1,39 @@
+# Contributor: Martin Wimpress 
+
+_ver=1.16
+_pkgbase=mate-control-center
+pkgname=${_pkgbase}-gtk3
+pkgver=${_ver}.0
+pkgrel=1
+pkgdesc="The Control Center for MATE (GTK3 version)"
+url="http://mate-desktop.org";
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('mate-menus' 'mate-settings-daemon-gtk3' 'marco-gtk3' 'libunique3' 
'libxss')
+makedepends=('intltool' 'itstool')
+groups=('mate-gtk3')
+conflicts=("${_pkgbase}")
+source=("http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz";)
+sha1sums=('452b0dd1025ba33f3f1c11e6d5220477dfffe4a8')
+
+build() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--sbindir=/usr/bin \
+--localstatedir=/var \
+--with-gtk=3.0 \
+--disable-update-mimedb
+
+#https://bugzilla.gnome.org/show_bug.cgi?id=656231
+sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+make
+}
+
+package() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+make DESTDIR="${pkgdir}" install
+rm -f "${pkgdir}/usr/share/applications/mimeinfo.cache"
+}

Copied: mate-control-center-gtk3/repos/community-staging-x86_64/PKGBUILD (from 
rev 190286, mate-control-center-gtk3/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-09-24 13:38:24 UTC (rev 190287)
@@ -0,0 +1,39 @@
+# Contributor: Martin Wimpress 
+
+_ver=1.16
+_pkgbase=mate-control-center
+pkgname=${_pkgbase}-gtk3
+pkgver=${_ver}.0
+pkgrel=1
+pkgdesc="The Control Center for MATE (GTK3 version)"
+url="http://mate-desktop.org";
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('mate-menus' 'mate-settings-daemon-gtk3' 'marco-gtk3' 'libunique3' 
'libxss')
+makedepends=('intltool' 'itstool')
+groups=('mate-gtk3')
+conflicts=("${_pkgbase}")
+source=("http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz";)
+sha1sums=('452b0dd1025ba33f3f1c11e6d5220477dfffe4a8')
+
+build() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--sbindir=/usr/bin \
+--localstatedir=/var \
+--with-gtk=3.0 \
+--disable-update-mimedb
+
+#https://bugzilla.gnome.org/show_bug.cgi?id=656231
+sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+make
+}
+
+package() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+make DESTDIR="${pkgdir}" install
+rm -f "${pkgdir}/usr/share/applications/mimeinfo.cache"
+}


[arch-commits] Commit in mate-icon-theme/repos (2 files)

2016-09-24 Thread Antonio Rojas
Date: Saturday, September 24, 2016 @ 13:40:53
  Author: arojas
Revision: 190289

archrelease: copy trunk to community-staging-any

Added:
  mate-icon-theme/repos/community-staging-any/
  mate-icon-theme/repos/community-staging-any/PKGBUILD
(from rev 190288, mate-icon-theme/trunk/PKGBUILD)

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

Copied: mate-icon-theme/repos/community-staging-any/PKGBUILD (from rev 190288, 
mate-icon-theme/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2016-09-24 13:40:53 UTC (rev 190289)
@@ -0,0 +1,27 @@
+# Contributor: Martin Wimpress 
+
+_ver=1.16
+pkgname=mate-icon-theme
+pkgver=${_ver}.0
+pkgrel=1
+pkgdesc="MATE icon theme"
+url="http://mate-desktop.org";
+arch=('any')
+license=('LGPL')
+makedepends=('icon-naming-utils' 'intltool')
+options=(!strip !emptydirs)
+groups=('mate' 'mate-gtk3')
+source=("http://pub.mate-desktop.org/releases/${_ver}/${pkgname}-${pkgver}.tar.xz";)
+sha1sums=('e48ab88a0bf86ca99b1a7fbce8cf6ac4360c5443')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+./configure \
+--prefix=/usr
+make
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+make DESTDIR="${pkgdir}" install
+}


[arch-commits] Commit in mate-icon-theme/trunk (PKGBUILD)

2016-09-24 Thread Antonio Rojas
Date: Saturday, September 24, 2016 @ 13:40:15
  Author: arojas
Revision: 190288

Update to 1.16.0

Modified:
  mate-icon-theme/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-24 13:38:24 UTC (rev 190287)
+++ PKGBUILD2016-09-24 13:40:15 UTC (rev 190288)
@@ -1,6 +1,6 @@
 # Contributor: Martin Wimpress 
 
-_ver=1.14
+_ver=1.16
 pkgname=mate-icon-theme
 pkgver=${_ver}.0
 pkgrel=1
@@ -12,7 +12,7 @@
 options=(!strip !emptydirs)
 groups=('mate' 'mate-gtk3')
 
source=("http://pub.mate-desktop.org/releases/${_ver}/${pkgname}-${pkgver}.tar.xz";)
-sha1sums=('fc59d0763cb8b1405e6b9004aabc672f27215a6a')
+sha1sums=('e48ab88a0bf86ca99b1a7fbce8cf6ac4360c5443')
 
 build() {
 cd "${srcdir}/${pkgname}-${pkgver}"


[arch-commits] Commit in mate-icon-theme-faenza/repos (2 files)

2016-09-24 Thread Antonio Rojas
Date: Saturday, September 24, 2016 @ 13:43:06
  Author: arojas
Revision: 190290

archrelease: copy trunk to community-staging-any

Added:
  mate-icon-theme-faenza/repos/community-staging-any/
  mate-icon-theme-faenza/repos/community-staging-any/PKGBUILD
(from rev 190289, mate-icon-theme-faenza/trunk/PKGBUILD)

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

Copied: mate-icon-theme-faenza/repos/community-staging-any/PKGBUILD (from rev 
190289, mate-icon-theme-faenza/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2016-09-24 13:43:06 UTC (rev 190290)
@@ -0,0 +1,32 @@
+# Contributor: Martin Wimpress 
+
+_ver=1.14
+pkgname=mate-icon-theme-faenza
+pkgver=${_ver}.0
+pkgrel=1
+pkgdesc="Faenza icon theme for MATE"
+url="http://mate-desktop.org";
+arch=('any')
+license=('GPL')
+makedepends=('mate-common')
+options=(!strip)
+groups=('mate-extra' 'mate-extra-gtk3')
+source=("http://pub.mate-desktop.org/releases/${_ver}/${pkgname}-${pkgver}.tar.xz";)
+sha1sums=('2a4b5e57d0ea3099bb0683f37e4f9eff62888d86')
+
+prepare() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+./configure \
+--prefix=/usr
+make
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+make DESTDIR="${pkgdir}" install
+}


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

2016-09-24 Thread Antonio Rojas
Date: Saturday, September 24, 2016 @ 13:44:52
  Author: arojas
Revision: 190291

Update to 1.16.0

Modified:
  mate-media/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-24 13:43:06 UTC (rev 190290)
+++ PKGBUILD2016-09-24 13:44:52 UTC (rev 190291)
@@ -1,6 +1,6 @@
 # Contributor: Martin Wimpress 
 
-_ver=1.14
+_ver=1.16
 _pkgbase=mate-media
 pkgname=(${_pkgbase})
 pkgver=${_ver}.0
@@ -14,7 +14,7 @@
 
source=("http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz";)
 groups=('mate-extra')
 conflicts=("${_pkgbase}-gtk3")
-sha1sums=('c9937f35fa3eb4209e2493f5d9838f5a5fb69886')
+sha1sums=('e071d27c13e80b182f10a33d7a190825642d6f75')
 
 build() {
 cd "${srcdir}/${_pkgbase}-${pkgver}"


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

2016-09-24 Thread Antonio Rojas
Date: Saturday, September 24, 2016 @ 13:45:14
  Author: arojas
Revision: 190292

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

Added:
  mate-media/repos/community-staging-i686/
  mate-media/repos/community-staging-i686/PKGBUILD
(from rev 190291, mate-media/trunk/PKGBUILD)
  mate-media/repos/community-staging-x86_64/
  mate-media/repos/community-staging-x86_64/PKGBUILD
(from rev 190291, mate-media/trunk/PKGBUILD)

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

Copied: mate-media/repos/community-staging-i686/PKGBUILD (from rev 190291, 
mate-media/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-09-24 13:45:14 UTC (rev 190292)
@@ -0,0 +1,33 @@
+# Contributor: Martin Wimpress 
+
+_ver=1.16
+_pkgbase=mate-media
+pkgname=(${_pkgbase})
+pkgver=${_ver}.0
+pkgrel=1
+url="http://mate-desktop.org";
+pkgdesc="MATE Media Tools (GTK2 version)"
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('libcanberra' 'libmatemixer' 'libunique' 'mate-desktop')
+makedepends=('intltool')
+source=("http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz";)
+groups=('mate-extra')
+conflicts=("${_pkgbase}-gtk3")
+sha1sums=('e071d27c13e80b182f10a33d7a190825642d6f75')
+
+build() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib/${_pkgbase} \
+--localstatedir=/var \
+--with-gtk=2.0
+make
+}
+
+package() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+make DESTDIR="${pkgdir}" install
+}

Copied: mate-media/repos/community-staging-x86_64/PKGBUILD (from rev 190291, 
mate-media/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-09-24 13:45:14 UTC (rev 190292)
@@ -0,0 +1,33 @@
+# Contributor: Martin Wimpress 
+
+_ver=1.16
+_pkgbase=mate-media
+pkgname=(${_pkgbase})
+pkgver=${_ver}.0
+pkgrel=1
+url="http://mate-desktop.org";
+pkgdesc="MATE Media Tools (GTK2 version)"
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('libcanberra' 'libmatemixer' 'libunique' 'mate-desktop')
+makedepends=('intltool')
+source=("http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz";)
+groups=('mate-extra')
+conflicts=("${_pkgbase}-gtk3")
+sha1sums=('e071d27c13e80b182f10a33d7a190825642d6f75')
+
+build() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib/${_pkgbase} \
+--localstatedir=/var \
+--with-gtk=2.0
+make
+}
+
+package() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+make DESTDIR="${pkgdir}" install
+}


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

2016-09-24 Thread Antonio Rojas
Date: Saturday, September 24, 2016 @ 13:47:37
  Author: arojas
Revision: 190293

Update to 1.16.0

Modified:
  mate-media-gtk3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-24 13:45:14 UTC (rev 190292)
+++ PKGBUILD2016-09-24 13:47:37 UTC (rev 190293)
@@ -9,7 +9,7 @@
 pkgdesc="MATE Media Tools (GTK3 version)"
 arch=('i686' 'x86_64')
 license=('GPL')
-depends=('gtk3' 'libcanberra' 'libmatemixer' 'libunique3' 
'mate-desktop-gtk3>=1.12')
+depends=('libcanberra' 'libmatemixer' 'libunique3' 'mate-desktop-gtk3')
 makedepends=('mate-common')
 
source=("http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz";)
 groups=('mate-extra-gtk3')


[arch-commits] Commit in mate-media-gtk3/repos (4 files)

2016-09-24 Thread Antonio Rojas
Date: Saturday, September 24, 2016 @ 13:48:06
  Author: arojas
Revision: 190294

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

Added:
  mate-media-gtk3/repos/community-staging-i686/
  mate-media-gtk3/repos/community-staging-i686/PKGBUILD
(from rev 190293, mate-media-gtk3/trunk/PKGBUILD)
  mate-media-gtk3/repos/community-staging-x86_64/
  mate-media-gtk3/repos/community-staging-x86_64/PKGBUILD
(from rev 190293, mate-media-gtk3/trunk/PKGBUILD)

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

Copied: mate-media-gtk3/repos/community-staging-i686/PKGBUILD (from rev 190293, 
mate-media-gtk3/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-09-24 13:48:06 UTC (rev 190294)
@@ -0,0 +1,33 @@
+# Contributor: Martin Wimpress 
+
+_ver=1.14
+_pkgbase=mate-media
+pkgname=(${_pkgbase}-gtk3)
+pkgver=${_ver}.0
+pkgrel=1
+url="http://mate-desktop.org";
+pkgdesc="MATE Media Tools (GTK3 version)"
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('libcanberra' 'libmatemixer' 'libunique3' 'mate-desktop-gtk3')
+makedepends=('mate-common')
+source=("http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz";)
+groups=('mate-extra-gtk3')
+conflicts=("${_pkgbase}")
+sha1sums=('c9937f35fa3eb4209e2493f5d9838f5a5fb69886')
+
+build() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib/${_pkgbase} \
+--localstatedir=/var \
+--with-gtk=3.0
+make
+}
+
+package() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+make DESTDIR="${pkgdir}" install
+}

Copied: mate-media-gtk3/repos/community-staging-x86_64/PKGBUILD (from rev 
190293, mate-media-gtk3/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-09-24 13:48:06 UTC (rev 190294)
@@ -0,0 +1,33 @@
+# Contributor: Martin Wimpress 
+
+_ver=1.14
+_pkgbase=mate-media
+pkgname=(${_pkgbase}-gtk3)
+pkgver=${_ver}.0
+pkgrel=1
+url="http://mate-desktop.org";
+pkgdesc="MATE Media Tools (GTK3 version)"
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('libcanberra' 'libmatemixer' 'libunique3' 'mate-desktop-gtk3')
+makedepends=('mate-common')
+source=("http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz";)
+groups=('mate-extra-gtk3')
+conflicts=("${_pkgbase}")
+sha1sums=('c9937f35fa3eb4209e2493f5d9838f5a5fb69886')
+
+build() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib/${_pkgbase} \
+--localstatedir=/var \
+--with-gtk=3.0
+make
+}
+
+package() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+make DESTDIR="${pkgdir}" install
+}


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

2016-09-24 Thread Antonio Rojas
Date: Saturday, September 24, 2016 @ 13:49:37
  Author: arojas
Revision: 190295

Update to 1.16.0

Modified:
  mate-menus/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-24 13:48:06 UTC (rev 190294)
+++ PKGBUILD2016-09-24 13:49:37 UTC (rev 190295)
@@ -1,6 +1,6 @@
 # Contributor: Martin Wimpress 
 
-_ver=1.14
+_ver=1.16
 pkgname=mate-menus
 pkgver=${_ver}.0
 pkgrel=1
@@ -13,7 +13,7 @@
 optdepends=('python2: python2 bindings')
 groups=('mate' 'mate-gtk3')
 
source=("http://pub.mate-desktop.org/releases/${_ver}/${pkgname}-${pkgver}.tar.xz";)
-sha1sums=('e626d775635e39cbacc13db6235a1ab0c0288f5a')
+sha1sums=('40b73ae7a151259c32ecd150c8fb77b5dc696f62')
 
 build() {
 cd "${srcdir}/${pkgname}-${pkgver}"


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

2016-09-24 Thread Antonio Rojas
Date: Saturday, September 24, 2016 @ 13:50:33
  Author: arojas
Revision: 190296

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

Added:
  mate-menus/repos/community-staging-i686/
  mate-menus/repos/community-staging-i686/PKGBUILD
(from rev 190295, mate-menus/trunk/PKGBUILD)
  mate-menus/repos/community-staging-x86_64/
  mate-menus/repos/community-staging-x86_64/PKGBUILD
(from rev 190295, mate-menus/trunk/PKGBUILD)

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

Copied: mate-menus/repos/community-staging-i686/PKGBUILD (from rev 190295, 
mate-menus/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-09-24 13:50:33 UTC (rev 190296)
@@ -0,0 +1,35 @@
+# Contributor: Martin Wimpress 
+
+_ver=1.16
+pkgname=mate-menus
+pkgver=${_ver}.0
+pkgrel=1
+pkgdesc="MATE menu specifications"
+url="http://mate-desktop.org";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL')
+depends=('glib2')
+makedepends=('gobject-introspection' 'intltool' 'python2')
+optdepends=('python2: python2 bindings')
+groups=('mate' 'mate-gtk3')
+source=("http://pub.mate-desktop.org/releases/${_ver}/${pkgname}-${pkgver}.tar.xz";)
+sha1sums=('40b73ae7a151259c32ecd150c8fb77b5dc696f62')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+PYTHON=/usr/bin/python2 ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--enable-python
+
+#https://bugzilla.gnome.org/show_bug.cgi?id=656231
+sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+make
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+make DESTDIR="${pkgdir}" install
+}

Copied: mate-menus/repos/community-staging-x86_64/PKGBUILD (from rev 190295, 
mate-menus/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-09-24 13:50:33 UTC (rev 190296)
@@ -0,0 +1,35 @@
+# Contributor: Martin Wimpress 
+
+_ver=1.16
+pkgname=mate-menus
+pkgver=${_ver}.0
+pkgrel=1
+pkgdesc="MATE menu specifications"
+url="http://mate-desktop.org";
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL')
+depends=('glib2')
+makedepends=('gobject-introspection' 'intltool' 'python2')
+optdepends=('python2: python2 bindings')
+groups=('mate' 'mate-gtk3')
+source=("http://pub.mate-desktop.org/releases/${_ver}/${pkgname}-${pkgver}.tar.xz";)
+sha1sums=('40b73ae7a151259c32ecd150c8fb77b5dc696f62')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+PYTHON=/usr/bin/python2 ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--enable-python
+
+#https://bugzilla.gnome.org/show_bug.cgi?id=656231
+sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+make
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+make DESTDIR="${pkgdir}" install
+}


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

2016-09-24 Thread Antonio Rojas
Date: Saturday, September 24, 2016 @ 13:53:01
  Author: arojas
Revision: 190297

Update to 1.16.0

Modified:
  mate-netbook/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-24 13:50:33 UTC (rev 190296)
+++ PKGBUILD2016-09-24 13:53:01 UTC (rev 190297)
@@ -1,6 +1,6 @@
 # Contributor: Martin Wimpress 
 
-_ver=1.14
+_ver=1.16
 _pkgbase=mate-netbook
 pkgname=${_pkgbase}
 pkgver=${_ver}.0
@@ -9,12 +9,12 @@
 url="http://mate-desktop.org";
 arch=('i686' 'x86_64')
 license=('GPL')
-depends=('libfakekey' 'libunique' 'mate-panel')
+depends=('libfakekey' 'mate-panel')
 makedepends=('intltool')
 groups=('mate-extra')
 conflicts=("${_pkgbase}-gtk3")
 
source=("http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz";)
-sha1sums=('9a26877c8c2707f5c3a5744f9fb74a7cc6d49b55')
+sha1sums=('9f616e58ea6335ce29c83502ba226fd35faa9783')
 
 build() {
 cd "${srcdir}/${_pkgbase}-${pkgver}"


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

2016-09-24 Thread Antonio Rojas
Date: Saturday, September 24, 2016 @ 13:53:27
  Author: arojas
Revision: 190298

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

Added:
  mate-netbook/repos/community-staging-i686/
  mate-netbook/repos/community-staging-i686/PKGBUILD
(from rev 190297, mate-netbook/trunk/PKGBUILD)
  mate-netbook/repos/community-staging-x86_64/
  mate-netbook/repos/community-staging-x86_64/PKGBUILD
(from rev 190297, mate-netbook/trunk/PKGBUILD)

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

Copied: mate-netbook/repos/community-staging-i686/PKGBUILD (from rev 190297, 
mate-netbook/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-09-24 13:53:27 UTC (rev 190298)
@@ -0,0 +1,32 @@
+# Contributor: Martin Wimpress 
+
+_ver=1.16
+_pkgbase=mate-netbook
+pkgname=${_pkgbase}
+pkgver=${_ver}.0
+pkgrel=1
+pkgdesc="A simple window management tool (GTK2 version)"
+url="http://mate-desktop.org";
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('libfakekey' 'mate-panel')
+makedepends=('intltool')
+groups=('mate-extra')
+conflicts=("${_pkgbase}-gtk3")
+source=("http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz";)
+sha1sums=('9f616e58ea6335ce29c83502ba226fd35faa9783')
+
+build() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+./configure \
+--prefix=/usr \
+--libexec=/usr/lib/${_pkgbase} \
+--sysconfdir=/etc \
+--with-gtk=2.0
+make
+}
+
+package() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+make DESTDIR="${pkgdir}" install
+}

Copied: mate-netbook/repos/community-staging-x86_64/PKGBUILD (from rev 190297, 
mate-netbook/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-09-24 13:53:27 UTC (rev 190298)
@@ -0,0 +1,32 @@
+# Contributor: Martin Wimpress 
+
+_ver=1.16
+_pkgbase=mate-netbook
+pkgname=${_pkgbase}
+pkgver=${_ver}.0
+pkgrel=1
+pkgdesc="A simple window management tool (GTK2 version)"
+url="http://mate-desktop.org";
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('libfakekey' 'mate-panel')
+makedepends=('intltool')
+groups=('mate-extra')
+conflicts=("${_pkgbase}-gtk3")
+source=("http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz";)
+sha1sums=('9f616e58ea6335ce29c83502ba226fd35faa9783')
+
+build() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+./configure \
+--prefix=/usr \
+--libexec=/usr/lib/${_pkgbase} \
+--sysconfdir=/etc \
+--with-gtk=2.0
+make
+}
+
+package() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+make DESTDIR="${pkgdir}" install
+}


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

2016-09-24 Thread Antonio Rojas
Date: Saturday, September 24, 2016 @ 13:54:35
  Author: arojas
Revision: 190299

Update to 1.16.0

Modified:
  mate-netbook-gtk3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-24 13:53:27 UTC (rev 190298)
+++ PKGBUILD2016-09-24 13:54:35 UTC (rev 190299)
@@ -1,6 +1,6 @@
 # Contributor: Martin Wimpress 
 
-_ver=1.14
+_ver=1.16
 _pkgbase=mate-netbook
 pkgname=${_pkgbase}-gtk3
 pkgver=${_ver}.0
@@ -9,12 +9,12 @@
 url="http://mate-desktop.org";
 arch=('i686' 'x86_64')
 license=('GPL')
-depends=('libfakekey' 'libunique3' 'mate-panel-gtk3')
+depends=('libfakekey' 'mate-panel-gtk3')
 makedepends=('intltool')
 groups=('mate-extra-gtk3')
 conflicts=("${_pkgbase}")
 
source=("http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz";)
-sha1sums=('9a26877c8c2707f5c3a5744f9fb74a7cc6d49b55')
+sha1sums=('9f616e58ea6335ce29c83502ba226fd35faa9783')
 
 build() {
 cd "${srcdir}/${_pkgbase}-${pkgver}"


[arch-commits] Commit in mate-netbook-gtk3/repos (4 files)

2016-09-24 Thread Antonio Rojas
Date: Saturday, September 24, 2016 @ 13:55:04
  Author: arojas
Revision: 190300

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

Added:
  mate-netbook-gtk3/repos/community-staging-i686/
  mate-netbook-gtk3/repos/community-staging-i686/PKGBUILD
(from rev 190299, mate-netbook-gtk3/trunk/PKGBUILD)
  mate-netbook-gtk3/repos/community-staging-x86_64/
  mate-netbook-gtk3/repos/community-staging-x86_64/PKGBUILD
(from rev 190299, mate-netbook-gtk3/trunk/PKGBUILD)

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

Copied: mate-netbook-gtk3/repos/community-staging-i686/PKGBUILD (from rev 
190299, mate-netbook-gtk3/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-09-24 13:55:04 UTC (rev 190300)
@@ -0,0 +1,32 @@
+# Contributor: Martin Wimpress 
+
+_ver=1.16
+_pkgbase=mate-netbook
+pkgname=${_pkgbase}-gtk3
+pkgver=${_ver}.0
+pkgrel=1
+pkgdesc="A simple window management tool (GTK3 version)"
+url="http://mate-desktop.org";
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('libfakekey' 'mate-panel-gtk3')
+makedepends=('intltool')
+groups=('mate-extra-gtk3')
+conflicts=("${_pkgbase}")
+source=("http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz";)
+sha1sums=('9f616e58ea6335ce29c83502ba226fd35faa9783')
+
+build() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+./configure \
+--prefix=/usr \
+--libexec=/usr/lib/${_pkgbase} \
+--sysconfdir=/etc \
+--with-gtk=3.0
+make
+}
+
+package() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+make DESTDIR="${pkgdir}" install
+}

Copied: mate-netbook-gtk3/repos/community-staging-x86_64/PKGBUILD (from rev 
190299, mate-netbook-gtk3/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-09-24 13:55:04 UTC (rev 190300)
@@ -0,0 +1,32 @@
+# Contributor: Martin Wimpress 
+
+_ver=1.16
+_pkgbase=mate-netbook
+pkgname=${_pkgbase}-gtk3
+pkgver=${_ver}.0
+pkgrel=1
+pkgdesc="A simple window management tool (GTK3 version)"
+url="http://mate-desktop.org";
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('libfakekey' 'mate-panel-gtk3')
+makedepends=('intltool')
+groups=('mate-extra-gtk3')
+conflicts=("${_pkgbase}")
+source=("http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz";)
+sha1sums=('9f616e58ea6335ce29c83502ba226fd35faa9783')
+
+build() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+./configure \
+--prefix=/usr \
+--libexec=/usr/lib/${_pkgbase} \
+--sysconfdir=/etc \
+--with-gtk=3.0
+make
+}
+
+package() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+make DESTDIR="${pkgdir}" install
+}


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

2016-09-24 Thread Antonio Rojas
Date: Saturday, September 24, 2016 @ 13:59:40
  Author: arojas
Revision: 190301

Update to 1.16.0

Modified:
  mate-notification-daemon/trunk/PKGBUILD

--+
 PKGBUILD |   57 +
 1 file changed, 13 insertions(+), 44 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-09-24 13:55:04 UTC (rev 190300)
+++ PKGBUILD2016-09-24 13:59:40 UTC (rev 190301)
@@ -1,9 +1,8 @@
 # Contributor: Martin Wimpress 
 
-_ver=1.14
-pkgbase=mate-notification-daemon
-pkgname=(${pkgbase} ${pkgbase}-gtk3)
-pkgver=${_ver}.1
+_ver=1.16
+pkgname=mate-notification-daemon
+pkgver=${_ver}.0
 pkgrel=1
 provides=('notification-daemon')
 pkgdesc="Notification daemon for MATE"
@@ -10,57 +9,27 @@
 url="http://mate-desktop.org";
 arch=('i686' 'x86_64')
 license=('GPL')
-depends=('dbus-glib' 'libcanberra' 'libwnck' 'libwnck3' 'libnotify')
+groups=('mate' 'mate-gtk3')
+depends=('dbus-glib' 'libcanberra' 'libwnck3' 'libnotify')
 makedepends=('intltool')
-source=("http://pub.mate-desktop.org/releases/${_ver}/${pkgbase}-${pkgver}.tar.xz";)
-sha1sums=('10e863c16112b45935d6d5e6e003088df43f87ab')
+conflicts=('mate-notification-daemon-gtk3')
+replaces=('mate-notification-daemon-gtk3')
+source=("http://pub.mate-desktop.org/releases/${_ver}/${pkgname}-${pkgver}.tar.xz";)
+sha1sums=('e3dbd1b91706503162f75103b3aa6d46335a4c94')
 
-prepare() {
-cd "${srcdir}"
-mv "${pkgname}-${pkgver}" "${pkgbase}-gtk2"
-cp -a "${pkgbase}-gtk2" "${pkgbase}-gtk3"
-}
-
 build() {
-cd "${srcdir}/${pkgbase}-gtk2"
+cd ${pkgname}-${pkgver}
 ./configure \
 --prefix=/usr \
---libexecdir=/usr/lib/${pkgbase} \
---with-gtk=2.0
+--libexecdir=/usr/lib/${pkgname}
 
 #https://bugzilla.gnome.org/show_bug.cgi?id=656231
 sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
 
 make
-
-cd "${srcdir}/${pkgbase}-gtk3"
-./configure \
---prefix=/usr \
---libexecdir=/usr/lib/${pkgbase} \
---with-gtk=3.0
-
-#https://bugzilla.gnome.org/show_bug.cgi?id=656231
-sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-make
 }
 
-package_mate-notification-daemon() {
-pkgdesc+=' (GTK2 version)'
-groups=('mate')
-conflicts=("${pkgbase}-gtk3")
-depends=('dconf' 'dbus-glib' 'libcanberra' 'libwnck' 'libnotify')
-
-cd "${srcdir}/${pkgbase}-gtk2"
+package() {
+cd "${pkgname}-${pkgver}"
 make DESTDIR="${pkgdir}" install
 }
-
-package_mate-notification-daemon-gtk3() {
-pkgdesc+=' (GTK3 version)'
-groups=('mate-gtk3')
-conflicts=("${pkgbase}")
-depends=('dbus-glib' 'libcanberra' 'libwnck3' 'libnotify')
-
-cd "${srcdir}/${pkgbase}-gtk3"
-make DESTDIR="${pkgdir}" install
-}


[arch-commits] Commit in mate-notification-daemon/repos (4 files)

2016-09-24 Thread Antonio Rojas
Date: Saturday, September 24, 2016 @ 14:00:06
  Author: arojas
Revision: 190302

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

Added:
  mate-notification-daemon/repos/community-staging-i686/
  mate-notification-daemon/repos/community-staging-i686/PKGBUILD
(from rev 190301, mate-notification-daemon/trunk/PKGBUILD)
  mate-notification-daemon/repos/community-staging-x86_64/
  mate-notification-daemon/repos/community-staging-x86_64/PKGBUILD
(from rev 190301, mate-notification-daemon/trunk/PKGBUILD)

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

Copied: mate-notification-daemon/repos/community-staging-i686/PKGBUILD (from 
rev 190301, mate-notification-daemon/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-09-24 14:00:06 UTC (rev 190302)
@@ -0,0 +1,35 @@
+# Contributor: Martin Wimpress 
+
+_ver=1.16
+pkgname=mate-notification-daemon
+pkgver=${_ver}.0
+pkgrel=1
+provides=('notification-daemon')
+pkgdesc="Notification daemon for MATE"
+url="http://mate-desktop.org";
+arch=('i686' 'x86_64')
+license=('GPL')
+groups=('mate' 'mate-gtk3')
+depends=('dbus-glib' 'libcanberra' 'libwnck3' 'libnotify')
+makedepends=('intltool')
+conflicts=('mate-notification-daemon-gtk3')
+replaces=('mate-notification-daemon-gtk3')
+source=("http://pub.mate-desktop.org/releases/${_ver}/${pkgname}-${pkgver}.tar.xz";)
+sha1sums=('e3dbd1b91706503162f75103b3aa6d46335a4c94')
+
+build() {
+cd ${pkgname}-${pkgver}
+./configure \
+--prefix=/usr \
+--libexecdir=/usr/lib/${pkgname}
+
+#https://bugzilla.gnome.org/show_bug.cgi?id=656231
+sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+make
+}
+
+package() {
+cd "${pkgname}-${pkgver}"
+make DESTDIR="${pkgdir}" install
+}

Copied: mate-notification-daemon/repos/community-staging-x86_64/PKGBUILD (from 
rev 190301, mate-notification-daemon/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-09-24 14:00:06 UTC (rev 190302)
@@ -0,0 +1,35 @@
+# Contributor: Martin Wimpress 
+
+_ver=1.16
+pkgname=mate-notification-daemon
+pkgver=${_ver}.0
+pkgrel=1
+provides=('notification-daemon')
+pkgdesc="Notification daemon for MATE"
+url="http://mate-desktop.org";
+arch=('i686' 'x86_64')
+license=('GPL')
+groups=('mate' 'mate-gtk3')
+depends=('dbus-glib' 'libcanberra' 'libwnck3' 'libnotify')
+makedepends=('intltool')
+conflicts=('mate-notification-daemon-gtk3')
+replaces=('mate-notification-daemon-gtk3')
+source=("http://pub.mate-desktop.org/releases/${_ver}/${pkgname}-${pkgver}.tar.xz";)
+sha1sums=('e3dbd1b91706503162f75103b3aa6d46335a4c94')
+
+build() {
+cd ${pkgname}-${pkgver}
+./configure \
+--prefix=/usr \
+--libexecdir=/usr/lib/${pkgname}
+
+#https://bugzilla.gnome.org/show_bug.cgi?id=656231
+sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+make
+}
+
+package() {
+cd "${pkgname}-${pkgver}"
+make DESTDIR="${pkgdir}" install
+}


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

2016-09-24 Thread Jerome Leclanche
Date: Saturday, September 24, 2016 @ 14:00:26
  Author: jleclanche
Revision: 190303

upgpkg: lxqt-about 0.11.0-5

Upstream release 0.11.0

Modified:
  lxqt-about/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-24 14:00:06 UTC (rev 190302)
+++ PKGBUILD2016-09-24 14:00:26 UTC (rev 190303)
@@ -2,7 +2,7 @@
 # Maintainer: Jerome Leclanche 
 
 pkgname=lxqt-about
-pkgver=0.10.0
+pkgver=0.11.0
 pkgrel=5
 pkgdesc="LXQt about dialog."
 arch=("i686" "x86_64")
@@ -10,16 +10,19 @@
 url="http://lxqt.org";
 license=("LGPL2.1")
 depends=("liblxqt")
-makedepends=("cmake" "qt5-tools")
+makedepends=("cmake" "qt5-tools" "git")
 source=(
-   "https://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz";
-   "https://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz.asc";
+   
"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz";
+   
"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz.asc";
 )
 sha256sums=(
-   "d308f228d1cc72d2cc9acec608adc31cdf9182feded0e9ca8dd2691d227f28fa"
+   "26bd91a1ca559353c2bcb82378918419b8e059a47956c2f89e533b3fac2881b6"
"SKIP"
 )
-validpgpkeys=("169704C6FB490C6892C7F23C37E0AF1FDA48F373")
+validpgpkeys=(
+   "169704C6FB490C6892C7F23C37E0AF1FDA48F373"  # Jerome Leclanche 

+   "7C733BA5F585AAD669E4D23A42C9C8D3AF5EA5E3"  # Alf Gaida 

+)
 
 
 build() {


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

2016-09-24 Thread Jerome Leclanche
Date: Saturday, September 24, 2016 @ 14:00:41
  Author: jleclanche
Revision: 190304

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

Added:
  lxqt-about/repos/community-i686/PKGBUILD
(from rev 190303, lxqt-about/trunk/PKGBUILD)
  lxqt-about/repos/community-x86_64/PKGBUILD
(from rev 190303, lxqt-about/trunk/PKGBUILD)
Deleted:
  lxqt-about/repos/community-i686/PKGBUILD
  lxqt-about/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-09-24 14:00:26 UTC (rev 190303)
+++ community-i686/PKGBUILD 2016-09-24 14:00:41 UTC (rev 190304)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Jerome Leclanche 
-
-pkgname=lxqt-about
-pkgver=0.10.0
-pkgrel=5
-pkgdesc="LXQt about dialog."
-arch=("i686" "x86_64")
-groups=("lxqt")
-url="http://lxqt.org";
-license=("LGPL2.1")
-depends=("liblxqt")
-makedepends=("cmake" "qt5-tools")
-source=(
-   "https://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz";
-   "https://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz.asc";
-)
-sha256sums=(
-   "d308f228d1cc72d2cc9acec608adc31cdf9182feded0e9ca8dd2691d227f28fa"
-   "SKIP"
-)
-validpgpkeys=("169704C6FB490C6892C7F23C37E0AF1FDA48F373")
-
-
-build() {
-   mkdir -p build
-   cd build
-   cmake "$srcdir/$pkgname-$pkgver" \
-   -DCMAKE_INSTALL_PREFIX=/usr
-   make
-}
-
-package() {
-   cd build
-   make DESTDIR="$pkgdir" install
-}

Copied: lxqt-about/repos/community-i686/PKGBUILD (from rev 190303, 
lxqt-about/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-09-24 14:00:41 UTC (rev 190304)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Jerome Leclanche 
+
+pkgname=lxqt-about
+pkgver=0.11.0
+pkgrel=5
+pkgdesc="LXQt about dialog."
+arch=("i686" "x86_64")
+groups=("lxqt")
+url="http://lxqt.org";
+license=("LGPL2.1")
+depends=("liblxqt")
+makedepends=("cmake" "qt5-tools" "git")
+source=(
+   
"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz";
+   
"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz.asc";
+)
+sha256sums=(
+   "26bd91a1ca559353c2bcb82378918419b8e059a47956c2f89e533b3fac2881b6"
+   "SKIP"
+)
+validpgpkeys=(
+   "169704C6FB490C6892C7F23C37E0AF1FDA48F373"  # Jerome Leclanche 

+   "7C733BA5F585AAD669E4D23A42C9C8D3AF5EA5E3"  # Alf Gaida 

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

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-09-24 14:00:26 UTC (rev 190303)
+++ community-x86_64/PKGBUILD   2016-09-24 14:00:41 UTC (rev 190304)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Jerome Leclanche 
-
-pkgname=lxqt-about
-pkgver=0.10.0
-pkgrel=5
-pkgdesc="LXQt about dialog."
-arch=("i686" "x86_64")
-groups=("lxqt")
-url="http://lxqt.org";
-license=("LGPL2.1")
-depends=("liblxqt")
-makedepends=("cmake" "qt5-tools")
-source=(
-   "https://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz";
-   "https://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz.asc";
-)
-sha256sums=(
-   "d308f228d1cc72d2cc9acec608adc31cdf9182feded0e9ca8dd2691d227f28fa"
-   "SKIP"
-)
-validpgpkeys=("169704C6FB490C6892C7F23C37E0AF1FDA48F373")
-
-
-build() {
-   mkdir -p build
-   cd build
-   cmake "$srcdir/$pkgname-$pkgver" \
-   -DCMAKE_INSTALL_PREFIX=/usr
-   make
-}
-
-package() {
-   cd build
-   make DESTDIR="$pkgdir" install
-}

Copied: lxqt-about/repos/community-x86_64/PKGBUILD (from rev 190303, 
lxqt-about/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-09-24 14:00:41 UTC (rev 190304)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Jerome Leclanche 
+
+pkgname=lxqt-about
+pkgver=0.11.0
+pkgrel=5
+pkgdesc="LXQt about dialog."
+arch=("i686" "x86_64")
+groups=("lxqt")
+url="http://lxqt.org";
+license=("LGPL2.1")
+depends=("liblxqt")
+makedepends=("cmake" "qt5-tools" "git")
+source=(
+   
"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz";
+   
"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz.asc";
+)
+sha256sums=(
+   "26bd91a1ca559353c2bcb82378

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

2016-09-24 Thread Antonio Rojas
Date: Saturday, September 24, 2016 @ 14:02:25
  Author: arojas
Revision: 190305

Update to 1.16.0

Modified:
  mate-panel/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-24 14:00:41 UTC (rev 190304)
+++ PKGBUILD2016-09-24 14:02:25 UTC (rev 190305)
@@ -1,9 +1,9 @@
 # Contributor: Martin Wimpress 
 
-_ver=1.14
+_ver=1.16
 _pkgbase=mate-panel
 pkgname=${_pkgbase}
-pkgver=${_ver}.2
+pkgver=${_ver}.0
 pkgrel=1
 pkgdesc="The MATE Panel (GTK2 version)"
 url="http://mate-desktop.org";
@@ -14,7 +14,7 @@
 
source=("http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz";)
 groups=('mate')
 conflicts=("${_pkgbase}-gtk3")
-sha1sums=('c71956a9316d8db99f48822e0e1dde85dd523259')
+sha1sums=('1fb1df7d86f96f97051cb985ab5dd21ebc78d4b2')
 
 build() {
 cd "${srcdir}/${_pkgbase}-${pkgver}"


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

2016-09-24 Thread Antonio Rojas
Date: Saturday, September 24, 2016 @ 14:03:06
  Author: arojas
Revision: 190306

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

Added:
  mate-panel/repos/community-staging-i686/
  mate-panel/repos/community-staging-i686/PKGBUILD
(from rev 190305, mate-panel/trunk/PKGBUILD)
  mate-panel/repos/community-staging-x86_64/
  mate-panel/repos/community-staging-x86_64/PKGBUILD
(from rev 190305, mate-panel/trunk/PKGBUILD)

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

Copied: mate-panel/repos/community-staging-i686/PKGBUILD (from rev 190305, 
mate-panel/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-09-24 14:03:06 UTC (rev 190306)
@@ -0,0 +1,38 @@
+# Contributor: Martin Wimpress 
+
+_ver=1.16
+_pkgbase=mate-panel
+pkgname=${_pkgbase}
+pkgver=${_ver}.0
+pkgrel=1
+pkgdesc="The MATE Panel (GTK2 version)"
+url="http://mate-desktop.org";
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('dbus-glib' 'libwnck' 'libcanberra' 'libmateweather' 'libsm' 
'mate-menus' 'mate-desktop')
+makedepends=('intltool' 'itstool' 'gobject-introspection')
+source=("http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz";)
+groups=('mate')
+conflicts=("${_pkgbase}-gtk3")
+sha1sums=('1fb1df7d86f96f97051cb985ab5dd21ebc78d4b2')
+
+build() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+./configure \
+--prefix=/usr \
+--libexecdir=/usr/lib/${_pkgbase} \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--with-gtk=2.0 \
+--enable-introspection
+
+#https://bugzilla.gnome.org/show_bug.cgi?id=656231
+sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+make
+}
+
+package() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+make DESTDIR="${pkgdir}" install
+}

Copied: mate-panel/repos/community-staging-x86_64/PKGBUILD (from rev 190305, 
mate-panel/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-09-24 14:03:06 UTC (rev 190306)
@@ -0,0 +1,38 @@
+# Contributor: Martin Wimpress 
+
+_ver=1.16
+_pkgbase=mate-panel
+pkgname=${_pkgbase}
+pkgver=${_ver}.0
+pkgrel=1
+pkgdesc="The MATE Panel (GTK2 version)"
+url="http://mate-desktop.org";
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('dbus-glib' 'libwnck' 'libcanberra' 'libmateweather' 'libsm' 
'mate-menus' 'mate-desktop')
+makedepends=('intltool' 'itstool' 'gobject-introspection')
+source=("http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz";)
+groups=('mate')
+conflicts=("${_pkgbase}-gtk3")
+sha1sums=('1fb1df7d86f96f97051cb985ab5dd21ebc78d4b2')
+
+build() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+./configure \
+--prefix=/usr \
+--libexecdir=/usr/lib/${_pkgbase} \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--with-gtk=2.0 \
+--enable-introspection
+
+#https://bugzilla.gnome.org/show_bug.cgi?id=656231
+sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+make
+}
+
+package() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+make DESTDIR="${pkgdir}" install
+}


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

2016-09-24 Thread Antonio Rojas
Date: Saturday, September 24, 2016 @ 14:04:59
  Author: arojas
Revision: 190307

Update to 1.16.0

Modified:
  mate-panel-gtk3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-24 14:03:06 UTC (rev 190306)
+++ PKGBUILD2016-09-24 14:04:59 UTC (rev 190307)
@@ -1,9 +1,9 @@
 # Contributor: Martin Wimpress 
 
-_ver=1.14
+_ver=1.16
 _pkgbase=mate-panel
 pkgname=${_pkgbase}-gtk3
-pkgver=${_ver}.2
+pkgver=${_ver}.0
 pkgrel=1
 pkgdesc="The MATE Panel (GTK3 version)"
 url="http://mate-desktop.org";
@@ -14,7 +14,7 @@
 
source=("http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz";)
 groups=('mate-gtk3')
 conflicts=("${_pkgbase}")
-sha1sums=('c71956a9316d8db99f48822e0e1dde85dd523259')
+sha1sums=('1fb1df7d86f96f97051cb985ab5dd21ebc78d4b2')
 
 build() {
 cd "${srcdir}/${_pkgbase}-${pkgver}"


[arch-commits] Commit in mate-panel-gtk3/repos (4 files)

2016-09-24 Thread Antonio Rojas
Date: Saturday, September 24, 2016 @ 14:05:26
  Author: arojas
Revision: 190308

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

Added:
  mate-panel-gtk3/repos/community-staging-i686/
  mate-panel-gtk3/repos/community-staging-i686/PKGBUILD
(from rev 190307, mate-panel-gtk3/trunk/PKGBUILD)
  mate-panel-gtk3/repos/community-staging-x86_64/
  mate-panel-gtk3/repos/community-staging-x86_64/PKGBUILD
(from rev 190307, mate-panel-gtk3/trunk/PKGBUILD)

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

Copied: mate-panel-gtk3/repos/community-staging-i686/PKGBUILD (from rev 190307, 
mate-panel-gtk3/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-09-24 14:05:26 UTC (rev 190308)
@@ -0,0 +1,38 @@
+# Contributor: Martin Wimpress 
+
+_ver=1.16
+_pkgbase=mate-panel
+pkgname=${_pkgbase}-gtk3
+pkgver=${_ver}.0
+pkgrel=1
+pkgdesc="The MATE Panel (GTK3 version)"
+url="http://mate-desktop.org";
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('dbus-glib' 'libwnck3' 'libcanberra' 'libmateweather-gtk3' 'libsm' 
'mate-menus' 'mate-desktop-gtk3')
+makedepends=('intltool' 'itstool' 'gobject-introspection')
+source=("http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz";)
+groups=('mate-gtk3')
+conflicts=("${_pkgbase}")
+sha1sums=('1fb1df7d86f96f97051cb985ab5dd21ebc78d4b2')
+
+build() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+./configure \
+--prefix=/usr \
+--libexecdir=/usr/lib/${_pkgbase} \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--with-gtk=3.0 \
+--enable-introspection
+
+#https://bugzilla.gnome.org/show_bug.cgi?id=656231
+sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+make
+}
+
+package() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+make DESTDIR="${pkgdir}" install
+}

Copied: mate-panel-gtk3/repos/community-staging-x86_64/PKGBUILD (from rev 
190307, mate-panel-gtk3/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-09-24 14:05:26 UTC (rev 190308)
@@ -0,0 +1,38 @@
+# Contributor: Martin Wimpress 
+
+_ver=1.16
+_pkgbase=mate-panel
+pkgname=${_pkgbase}-gtk3
+pkgver=${_ver}.0
+pkgrel=1
+pkgdesc="The MATE Panel (GTK3 version)"
+url="http://mate-desktop.org";
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('dbus-glib' 'libwnck3' 'libcanberra' 'libmateweather-gtk3' 'libsm' 
'mate-menus' 'mate-desktop-gtk3')
+makedepends=('intltool' 'itstool' 'gobject-introspection')
+source=("http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz";)
+groups=('mate-gtk3')
+conflicts=("${_pkgbase}")
+sha1sums=('1fb1df7d86f96f97051cb985ab5dd21ebc78d4b2')
+
+build() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+./configure \
+--prefix=/usr \
+--libexecdir=/usr/lib/${_pkgbase} \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--with-gtk=3.0 \
+--enable-introspection
+
+#https://bugzilla.gnome.org/show_bug.cgi?id=656231
+sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+make
+}
+
+package() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+make DESTDIR="${pkgdir}" install
+}


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

2016-09-24 Thread Jerome Leclanche
Date: Saturday, September 24, 2016 @ 14:07:03
  Author: jleclanche
Revision: 190309

upgpkg: lxqt-common 0.11.0-1

Upstream release 0.11.0

Modified:
  lxqt-common/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-24 14:05:26 UTC (rev 190308)
+++ PKGBUILD2016-09-24 14:07:03 UTC (rev 190309)
@@ -2,8 +2,8 @@
 # Maintainer: Jerome Leclanche 
 
 pkgname=lxqt-common
-pkgver=0.10.0
-pkgrel=4
+pkgver=0.11.0
+pkgrel=1
 pkgdesc="Common data to run a LXQt session."
 arch=("any")
 groups=("lxqt")
@@ -12,24 +12,25 @@
 depends=("qt5-svg" "hicolor-icon-theme" "xdg-utils" "ttf-font")
 makedepends=("cmake" "liblxqt" "qt5-tools")
 source=(
-   "https://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz";
-   "https://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz.asc";
+   
"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz";
+   
"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz.asc";
 )
 sha256sums=(
-   "7b12f2fe7a42f5ea0c9f596eeb87ca3c97cc0b706121ceede64480e8480ec9d1"
+   "3a34a2105a49545d2695cccaf6310d261a7e760455e583efa2d80b3ab54d6053"
"SKIP"
 )
-validpgpkeys=("169704C6FB490C6892C7F23C37E0AF1FDA48F373")
+validpgpkeys=(
+   "169704C6FB490C6892C7F23C37E0AF1FDA48F373"  # Jerome Leclanche 

+   "7C733BA5F585AAD669E4D23A42C9C8D3AF5EA5E3"  # Alf Gaida 

+)
 
 
 build() {
mkdir -p build
cd build
-   # Build with LC_ALL=en_US.UTF-8 to work around lxqt#957 (FS#48754)
-   # Remove in 0.11
-   LC_ALL=en_US.UTF-8 cmake "$srcdir/$pkgname-$pkgver" \
+   cmake "$srcdir/$pkgname-$pkgver" \
-DCMAKE_INSTALL_PREFIX=/usr
-   LC_ALL=en_US.UTF-8 make
+   make
 }
 
 package() {


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

2016-09-24 Thread Jerome Leclanche
Date: Saturday, September 24, 2016 @ 14:07:07
  Author: jleclanche
Revision: 190310

archrelease: copy trunk to community-any

Added:
  lxqt-common/repos/community-any/PKGBUILD
(from rev 190309, lxqt-common/trunk/PKGBUILD)
Deleted:
  lxqt-common/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-09-24 14:07:03 UTC (rev 190309)
+++ PKGBUILD2016-09-24 14:07:07 UTC (rev 190310)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Jerome Leclanche 
-
-pkgname=lxqt-common
-pkgver=0.10.0
-pkgrel=4
-pkgdesc="Common data to run a LXQt session."
-arch=("any")
-groups=("lxqt")
-url="http://lxqt.org";
-license=("LGPL2.1")
-depends=("qt5-svg" "hicolor-icon-theme" "xdg-utils" "ttf-font")
-makedepends=("cmake" "liblxqt" "qt5-tools")
-source=(
-   "https://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz";
-   "https://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz.asc";
-)
-sha256sums=(
-   "7b12f2fe7a42f5ea0c9f596eeb87ca3c97cc0b706121ceede64480e8480ec9d1"
-   "SKIP"
-)
-validpgpkeys=("169704C6FB490C6892C7F23C37E0AF1FDA48F373")
-
-
-build() {
-   mkdir -p build
-   cd build
-   # Build with LC_ALL=en_US.UTF-8 to work around lxqt#957 (FS#48754)
-   # Remove in 0.11
-   LC_ALL=en_US.UTF-8 cmake "$srcdir/$pkgname-$pkgver" \
-   -DCMAKE_INSTALL_PREFIX=/usr
-   LC_ALL=en_US.UTF-8 make
-}
-
-package() {
-   cd build
-   make DESTDIR="$pkgdir" install
-}

Copied: lxqt-common/repos/community-any/PKGBUILD (from rev 190309, 
lxqt-common/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-09-24 14:07:07 UTC (rev 190310)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Jerome Leclanche 
+
+pkgname=lxqt-common
+pkgver=0.11.0
+pkgrel=1
+pkgdesc="Common data to run a LXQt session."
+arch=("any")
+groups=("lxqt")
+url="http://lxqt.org";
+license=("LGPL2.1")
+depends=("qt5-svg" "hicolor-icon-theme" "xdg-utils" "ttf-font")
+makedepends=("cmake" "liblxqt" "qt5-tools")
+source=(
+   
"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz";
+   
"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz.asc";
+)
+sha256sums=(
+   "3a34a2105a49545d2695cccaf6310d261a7e760455e583efa2d80b3ab54d6053"
+   "SKIP"
+)
+validpgpkeys=(
+   "169704C6FB490C6892C7F23C37E0AF1FDA48F373"  # Jerome Leclanche 

+   "7C733BA5F585AAD669E4D23A42C9C8D3AF5EA5E3"  # Alf Gaida 

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


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

2016-09-24 Thread Antonio Rojas
Date: Saturday, September 24, 2016 @ 14:10:56
  Author: arojas
Revision: 190311

Update to 1.16.0

Modified:
  mate-polkit/trunk/PKGBUILD

--+
 PKGBUILD |   57 +++--
 1 file changed, 11 insertions(+), 46 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-09-24 14:07:07 UTC (rev 190310)
+++ PKGBUILD2016-09-24 14:10:56 UTC (rev 190311)
@@ -1,8 +1,7 @@
 # Contributor: Martin Wimpress 
 
-_ver=1.14
-pkgbase=mate-polkit
-pkgname=(${pkgbase} ${pkgbase}-gtk3)
+_ver=1.16
+pkgname=mate-polkit
 pkgver=${_ver}.0
 pkgrel=1
 pkgdesc="PolicyKit integration for the MATE desktop"
@@ -9,26 +8,21 @@
 url="http://mate-desktop.org";
 arch=('i686' 'x86_64')
 license=('LGPL')
-depends=('gtk2' 'gtk3')
+groups=('mate' 'mate-gtk3')
+depends=('gtk3')
 makedepends=('accountsservice' 'gobject-introspection' 'intltool')
-#makedepends=( 'mate-common')
+conflicts=('mate-polkit-gtk3')
+replaces=('mate-polkit-gtk3')
 
source=("http://pub.mate-desktop.org/releases/${_ver}/${pkgname}-${pkgver}.tar.xz";)
-sha1sums=('da2b4cf7b905a24fa22dd14e8991a71814ad')
+sha1sums=('d4add9b8ad5ffd249f961dbc7f69fd372013bd46')
 
-prepare() {
-cd "${srcdir}"
-mv "${pkgname}-${pkgver}" "${pkgbase}-gtk2"
-cp -a "${pkgbase}-gtk2" "${pkgbase}-gtk3"
-}
-
 build() {
-cd "${srcdir}/${pkgbase}-gtk2"
+cd "${pkgname}-${pkgver}"
 ./configure \
 --prefix=/usr \
---libexecdir=/usr/lib/${pkgbase} \
+--libexecdir=/usr/lib/${pkgname} \
 --sysconfdir=/etc \
 --localstatedir=/var \
---with-gtk=2.0 \
 --enable-introspection
 
 #https://bugzilla.gnome.org/show_bug.cgi?id=656231
@@ -35,38 +29,9 @@
 sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
 
 make
-
-cd "${srcdir}/${pkgbase}-gtk3"
-./configure \
---prefix=/usr \
---libexecdir=/usr/lib/${pkgbase} \
---sysconfdir=/etc \
---localstatedir=/var \
---with-gtk=3.0 \
---enable-introspection
-
-#https://bugzilla.gnome.org/show_bug.cgi?id=656231
-sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-make
 }
 
-package_mate-polkit() {
-pkgdesc+=' (GTK2 version)'
-groups=('mate')
-conflicts=("${pkgbase}-gtk3")
-depends=('gtk2' 'polkit')
-
-cd "${srcdir}/${pkgbase}-gtk2"
+package() {
+cd "${pkgname}-${pkgver}"
 make DESTDIR="${pkgdir}" install
 }
-
-package_mate-polkit-gtk3() {
-pkgdesc+=' (GTK3 version)'
-groups=('mate-gtk3')
-conflicts=("${pkgbase}")
-depends=('gtk3')
-
-cd "${srcdir}/${pkgbase}-gtk3"
-make DESTDIR="${pkgdir}" install
-}


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

2016-09-24 Thread Antonio Rojas
Date: Saturday, September 24, 2016 @ 14:11:25
  Author: arojas
Revision: 190312

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

Added:
  mate-polkit/repos/community-staging-i686/
  mate-polkit/repos/community-staging-i686/PKGBUILD
(from rev 190311, mate-polkit/trunk/PKGBUILD)
  mate-polkit/repos/community-staging-x86_64/
  mate-polkit/repos/community-staging-x86_64/PKGBUILD
(from rev 190311, mate-polkit/trunk/PKGBUILD)

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

Copied: mate-polkit/repos/community-staging-i686/PKGBUILD (from rev 190311, 
mate-polkit/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-09-24 14:11:25 UTC (rev 190312)
@@ -0,0 +1,37 @@
+# Contributor: Martin Wimpress 
+
+_ver=1.16
+pkgname=mate-polkit
+pkgver=${_ver}.0
+pkgrel=1
+pkgdesc="PolicyKit integration for the MATE desktop"
+url="http://mate-desktop.org";
+arch=('i686' 'x86_64')
+license=('LGPL')
+groups=('mate' 'mate-gtk3')
+depends=('gtk3')
+makedepends=('accountsservice' 'gobject-introspection' 'intltool')
+conflicts=('mate-polkit-gtk3')
+replaces=('mate-polkit-gtk3')
+source=("http://pub.mate-desktop.org/releases/${_ver}/${pkgname}-${pkgver}.tar.xz";)
+sha1sums=('d4add9b8ad5ffd249f961dbc7f69fd372013bd46')
+
+build() {
+cd "${pkgname}-${pkgver}"
+./configure \
+--prefix=/usr \
+--libexecdir=/usr/lib/${pkgname} \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--enable-introspection
+
+#https://bugzilla.gnome.org/show_bug.cgi?id=656231
+sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+make
+}
+
+package() {
+cd "${pkgname}-${pkgver}"
+make DESTDIR="${pkgdir}" install
+}

Copied: mate-polkit/repos/community-staging-x86_64/PKGBUILD (from rev 190311, 
mate-polkit/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-09-24 14:11:25 UTC (rev 190312)
@@ -0,0 +1,37 @@
+# Contributor: Martin Wimpress 
+
+_ver=1.16
+pkgname=mate-polkit
+pkgver=${_ver}.0
+pkgrel=1
+pkgdesc="PolicyKit integration for the MATE desktop"
+url="http://mate-desktop.org";
+arch=('i686' 'x86_64')
+license=('LGPL')
+groups=('mate' 'mate-gtk3')
+depends=('gtk3')
+makedepends=('accountsservice' 'gobject-introspection' 'intltool')
+conflicts=('mate-polkit-gtk3')
+replaces=('mate-polkit-gtk3')
+source=("http://pub.mate-desktop.org/releases/${_ver}/${pkgname}-${pkgver}.tar.xz";)
+sha1sums=('d4add9b8ad5ffd249f961dbc7f69fd372013bd46')
+
+build() {
+cd "${pkgname}-${pkgver}"
+./configure \
+--prefix=/usr \
+--libexecdir=/usr/lib/${pkgname} \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--enable-introspection
+
+#https://bugzilla.gnome.org/show_bug.cgi?id=656231
+sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+make
+}
+
+package() {
+cd "${pkgname}-${pkgver}"
+make DESTDIR="${pkgdir}" install
+}


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

2016-09-24 Thread Jerome Leclanche
Date: Saturday, September 24, 2016 @ 14:13:27
  Author: jleclanche
Revision: 190314

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

Deleted:
  lxqt-config/repos/community-i686/PKGBUILD
  lxqt-config/repos/community-x86_64/PKGBUILD

---+
 community-i686/PKGBUILD   |   47 
 community-x86_64/PKGBUILD |   47 
 2 files changed, 94 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-09-24 14:13:23 UTC (rev 190313)
+++ community-i686/PKGBUILD 2016-09-24 14:13:27 UTC (rev 190314)
@@ -1,47 +0,0 @@
-# $Id$
-# Maintainer: Jerome Leclanche 
-
-pkgname=lxqt-config
-pkgver=0.10.0
-pkgrel=6
-pkgdesc="LXQt system configuration."
-arch=("i686" "x86_64")
-groups=("lxqt")
-url="http://lxqt.org";
-license=("LGPL2.1")
-depends=("liblxqt" "libkscreen" "libxcursor" "qt5-svg")
-makedepends=("cmake" "qt5-tools")
-source=(
-   "https://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz";
-   "https://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz.asc";
-   "build-without-lxqt-config-appearance.patch"
-)
-sha256sums=(
-   "4567be4653f2f1f9ff156126250a08d7b480f627fa1410484d49f65ba5dab9b4"
-   "SKIP"
-   "a68acc45b1a917c3cee9ab6a9d02df902d8d32fa928474e1ca9d6c1773fea8f9"
-)
-validpgpkeys=("169704C6FB490C6892C7F23C37E0AF1FDA48F373")
-
-
-prepare() {
-   cd "$srcdir/$pkgname-$pkgver"
-   patch -p1 < "$srcdir/build-without-lxqt-config-appearance.patch"
-}
-
-
-build() {
-   mkdir -p build
-   cd build
-   # Build with LC_ALL=en_US.UTF-8 to work around lxqt#957 (FS#48754)
-   # Remove in 0.11
-   LC_ALL=en_US.UTF-8 cmake "$srcdir/$pkgname-$pkgver" \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DCMAKE_INSTALL_LIBDIR=lib
-   LC_ALL=en_US.UTF-8 make
-}
-
-package() {
-   cd build
-   make DESTDIR="$pkgdir" install
-}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-09-24 14:13:23 UTC (rev 190313)
+++ community-x86_64/PKGBUILD   2016-09-24 14:13:27 UTC (rev 190314)
@@ -1,47 +0,0 @@
-# $Id$
-# Maintainer: Jerome Leclanche 
-
-pkgname=lxqt-config
-pkgver=0.10.0
-pkgrel=6
-pkgdesc="LXQt system configuration."
-arch=("i686" "x86_64")
-groups=("lxqt")
-url="http://lxqt.org";
-license=("LGPL2.1")
-depends=("liblxqt" "libkscreen" "libxcursor" "qt5-svg")
-makedepends=("cmake" "qt5-tools")
-source=(
-   "https://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz";
-   "https://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz.asc";
-   "build-without-lxqt-config-appearance.patch"
-)
-sha256sums=(
-   "4567be4653f2f1f9ff156126250a08d7b480f627fa1410484d49f65ba5dab9b4"
-   "SKIP"
-   "a68acc45b1a917c3cee9ab6a9d02df902d8d32fa928474e1ca9d6c1773fea8f9"
-)
-validpgpkeys=("169704C6FB490C6892C7F23C37E0AF1FDA48F373")
-
-
-prepare() {
-   cd "$srcdir/$pkgname-$pkgver"
-   patch -p1 < "$srcdir/build-without-lxqt-config-appearance.patch"
-}
-
-
-build() {
-   mkdir -p build
-   cd build
-   # Build with LC_ALL=en_US.UTF-8 to work around lxqt#957 (FS#48754)
-   # Remove in 0.11
-   LC_ALL=en_US.UTF-8 cmake "$srcdir/$pkgname-$pkgver" \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DCMAKE_INSTALL_LIBDIR=lib
-   LC_ALL=en_US.UTF-8 make
-}
-
-package() {
-   cd build
-   make DESTDIR="$pkgdir" install
-}


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

2016-09-24 Thread Jerome Leclanche
Date: Saturday, September 24, 2016 @ 14:13:23
  Author: jleclanche
Revision: 190313

upgpkg: lxqt-config 0.11.0-1

Upstream release 0.11.0

Modified:
  lxqt-config/trunk/PKGBUILD

--+
 PKGBUILD |   31 ---
 1 file changed, 12 insertions(+), 19 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-09-24 14:11:25 UTC (rev 190312)
+++ PKGBUILD2016-09-24 14:13:23 UTC (rev 190313)
@@ -2,8 +2,8 @@
 # Maintainer: Jerome Leclanche 
 
 pkgname=lxqt-config
-pkgver=0.10.0
-pkgrel=6
+pkgver=0.11.0
+pkgrel=1
 pkgdesc="LXQt system configuration."
 arch=("i686" "x86_64")
 groups=("lxqt")
@@ -10,35 +10,28 @@
 url="http://lxqt.org";
 license=("LGPL2.1")
 depends=("liblxqt" "libkscreen" "libxcursor" "qt5-svg")
-makedepends=("cmake" "qt5-tools")
+makedepends=("cmake" "qt5-tools" "git")
 source=(
-   "https://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz";
-   "https://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz.asc";
-   "build-without-lxqt-config-appearance.patch"
+   
"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz";
+   
"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz.asc";
 )
 sha256sums=(
-   "4567be4653f2f1f9ff156126250a08d7b480f627fa1410484d49f65ba5dab9b4"
+   "e254994caf0535bf6f9da659dc4410b63b5b5cfabea0b961bfb8c00e3c393d38"
"SKIP"
-   "a68acc45b1a917c3cee9ab6a9d02df902d8d32fa928474e1ca9d6c1773fea8f9"
 )
-validpgpkeys=("169704C6FB490C6892C7F23C37E0AF1FDA48F373")
+validpgpkeys=(
+   "169704C6FB490C6892C7F23C37E0AF1FDA48F373"  # Jerome Leclanche 

+   "7C733BA5F585AAD669E4D23A42C9C8D3AF5EA5E3"  # Alf Gaida 

+)
 
 
-prepare() {
-   cd "$srcdir/$pkgname-$pkgver"
-   patch -p1 < "$srcdir/build-without-lxqt-config-appearance.patch"
-}
-
-
 build() {
mkdir -p build
cd build
-   # Build with LC_ALL=en_US.UTF-8 to work around lxqt#957 (FS#48754)
-   # Remove in 0.11
-   LC_ALL=en_US.UTF-8 cmake "$srcdir/$pkgname-$pkgver" \
+   cmake "$srcdir/$pkgname-$pkgver" \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=lib
-   LC_ALL=en_US.UTF-8 make
+   make
 }
 
 package() {


[arch-commits] Commit in mate-power-manager/trunk (PKGBUILD)

2016-09-24 Thread Antonio Rojas
Date: Saturday, September 24, 2016 @ 14:14:10
  Author: arojas
Revision: 190315

Update to 1.16.0

Modified:
  mate-power-manager/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-24 14:13:27 UTC (rev 190314)
+++ PKGBUILD2016-09-24 14:14:10 UTC (rev 190315)
@@ -1,6 +1,6 @@
 # Contributor: Martin Wimpress 
 
-_ver=1.14
+_ver=1.16
 _pkgbase=mate-power-manager
 pkgname=(${_pkgbase})
 pkgver=${_ver}.0
@@ -9,13 +9,13 @@
 url="http://mate-desktop.org";
 arch=('i686' 'x86_64')
 license=('GPL')
-depends=('dbus-glib' 'libcanberra' 'libgnome-keyring' 'libnotify' 'libunique' 
'mate-desktop' 'upower')
+depends=('dbus-glib' 'libcanberra' 'libgnome-keyring' 'libnotify' 'libunique' 
'upower')
 makedepends=('intltool' 'itstool' 'mate-panel')
 optdepends=('mate-panel: Set brightness and inhibit power management from the 
panel')
 
source=("http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz";)
 groups=('mate-extra')
 conflicts=("${_pkgbase}-gtk3")
-sha1sums=('286ac97658d18ea1fffa6e0a692a877727a44e41')
+sha1sums=('a7089947d4ac2151e2b8182f4d130aba08d804d2')
 
 build() {
 cd "${srcdir}/${_pkgbase}-${pkgver}"


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

2016-09-24 Thread Antonio Rojas
Date: Saturday, September 24, 2016 @ 14:14:43
  Author: arojas
Revision: 190316

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

Added:
  mate-power-manager/repos/community-staging-i686/
  mate-power-manager/repos/community-staging-i686/PKGBUILD
(from rev 190315, mate-power-manager/trunk/PKGBUILD)
  mate-power-manager/repos/community-staging-x86_64/
  mate-power-manager/repos/community-staging-x86_64/PKGBUILD
(from rev 190315, mate-power-manager/trunk/PKGBUILD)

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

Copied: mate-power-manager/repos/community-staging-i686/PKGBUILD (from rev 
190315, mate-power-manager/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-09-24 14:14:43 UTC (rev 190316)
@@ -0,0 +1,37 @@
+# Contributor: Martin Wimpress 
+
+_ver=1.16
+_pkgbase=mate-power-manager
+pkgname=(${_pkgbase})
+pkgver=${_ver}.0
+pkgrel=1
+pkgdesc="Power management tool for the MATE desktop (GTK2 version)"
+url="http://mate-desktop.org";
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('dbus-glib' 'libcanberra' 'libgnome-keyring' 'libnotify' 'libunique' 
'upower')
+makedepends=('intltool' 'itstool' 'mate-panel')
+optdepends=('mate-panel: Set brightness and inhibit power management from the 
panel')
+source=("http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz";)
+groups=('mate-extra')
+conflicts=("${_pkgbase}-gtk3")
+sha1sums=('a7089947d4ac2151e2b8182f4d130aba08d804d2')
+
+build() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+./configure \
+--prefix=/usr \
+--libexecdir=/usr/lib/${_pkgbase} \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--sbindir=/usr/bin \
+--enable-applets \
+--with-gtk=2.0 \
+--disable-strict
+make
+}
+
+package() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+make DESTDIR="${pkgdir}" install
+}

Copied: mate-power-manager/repos/community-staging-x86_64/PKGBUILD (from rev 
190315, mate-power-manager/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-09-24 14:14:43 UTC (rev 190316)
@@ -0,0 +1,37 @@
+# Contributor: Martin Wimpress 
+
+_ver=1.16
+_pkgbase=mate-power-manager
+pkgname=(${_pkgbase})
+pkgver=${_ver}.0
+pkgrel=1
+pkgdesc="Power management tool for the MATE desktop (GTK2 version)"
+url="http://mate-desktop.org";
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('dbus-glib' 'libcanberra' 'libgnome-keyring' 'libnotify' 'libunique' 
'upower')
+makedepends=('intltool' 'itstool' 'mate-panel')
+optdepends=('mate-panel: Set brightness and inhibit power management from the 
panel')
+source=("http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz";)
+groups=('mate-extra')
+conflicts=("${_pkgbase}-gtk3")
+sha1sums=('a7089947d4ac2151e2b8182f4d130aba08d804d2')
+
+build() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+./configure \
+--prefix=/usr \
+--libexecdir=/usr/lib/${_pkgbase} \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--sbindir=/usr/bin \
+--enable-applets \
+--with-gtk=2.0 \
+--disable-strict
+make
+}
+
+package() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+make DESTDIR="${pkgdir}" install
+}


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

2016-09-24 Thread Jerome Leclanche
Date: Saturday, September 24, 2016 @ 14:16:16
  Author: jleclanche
Revision: 190317

upgpkg: lxqt-globalkeys 0.11.0-1

Upstream release 0.11.0

Modified:
  lxqt-globalkeys/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-24 14:14:43 UTC (rev 190316)
+++ PKGBUILD2016-09-24 14:16:16 UTC (rev 190317)
@@ -2,8 +2,8 @@
 # Maintainer: Jerome Leclanche 
 
 pkgname=lxqt-globalkeys
-pkgver=0.10.0
-pkgrel=4
+pkgver=0.11.0
+pkgrel=1
 pkgdesc="LXQt daemon and library for global keyboard shortcuts registration."
 arch=("i686" "x86_64")
 groups=("lxqt")
@@ -10,16 +10,19 @@
 url="http://lxqt.org";
 license=("LGPL2.1")
 depends=("liblxqt")
-makedepends=("cmake" "qt5-tools")
+makedepends=("cmake" "qt5-tools" "git")
 source=(
-   "https://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz";
-   "https://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz.asc";
+   
"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz";
+   
"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz.asc";
 )
 sha256sums=(
-   "9a9d6a0299a26f91d391a601123e78e18cbe56ee6086cc27ccf800920e146e1a"
+   "454ba7dd58180576032c1cfa21c576237b0aa0ea509cb47aadc21d1fbadc1354"
"SKIP"
 )
-validpgpkeys=("169704C6FB490C6892C7F23C37E0AF1FDA48F373")
+validpgpkeys=(
+   "169704C6FB490C6892C7F23C37E0AF1FDA48F373"  # Jerome Leclanche 

+   "7C733BA5F585AAD669E4D23A42C9C8D3AF5EA5E3"  # Alf Gaida 

+)
 
 
 build() {


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

2016-09-24 Thread Jerome Leclanche
Date: Saturday, September 24, 2016 @ 14:16:22
  Author: jleclanche
Revision: 190318

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

Added:
  lxqt-globalkeys/repos/community-i686/PKGBUILD
(from rev 190317, lxqt-globalkeys/trunk/PKGBUILD)
  lxqt-globalkeys/repos/community-x86_64/PKGBUILD
(from rev 190317, lxqt-globalkeys/trunk/PKGBUILD)
Deleted:
  lxqt-globalkeys/repos/community-i686/PKGBUILD
  lxqt-globalkeys/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-09-24 14:16:16 UTC (rev 190317)
+++ community-i686/PKGBUILD 2016-09-24 14:16:22 UTC (rev 190318)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Jerome Leclanche 
-
-pkgname=lxqt-globalkeys
-pkgver=0.10.0
-pkgrel=4
-pkgdesc="LXQt daemon and library for global keyboard shortcuts registration."
-arch=("i686" "x86_64")
-groups=("lxqt")
-url="http://lxqt.org";
-license=("LGPL2.1")
-depends=("liblxqt")
-makedepends=("cmake" "qt5-tools")
-source=(
-   "https://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz";
-   "https://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz.asc";
-)
-sha256sums=(
-   "9a9d6a0299a26f91d391a601123e78e18cbe56ee6086cc27ccf800920e146e1a"
-   "SKIP"
-)
-validpgpkeys=("169704C6FB490C6892C7F23C37E0AF1FDA48F373")
-
-
-build() {
-   mkdir -p build
-   cd build
-   cmake "$srcdir/$pkgname-$pkgver" \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DCMAKE_INSTALL_LIBDIR=lib
-   make
-}
-
-package() {
-   cd build
-   make DESTDIR="$pkgdir" install
-}

Copied: lxqt-globalkeys/repos/community-i686/PKGBUILD (from rev 190317, 
lxqt-globalkeys/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-09-24 14:16:22 UTC (rev 190318)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Jerome Leclanche 
+
+pkgname=lxqt-globalkeys
+pkgver=0.11.0
+pkgrel=1
+pkgdesc="LXQt daemon and library for global keyboard shortcuts registration."
+arch=("i686" "x86_64")
+groups=("lxqt")
+url="http://lxqt.org";
+license=("LGPL2.1")
+depends=("liblxqt")
+makedepends=("cmake" "qt5-tools" "git")
+source=(
+   
"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz";
+   
"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz.asc";
+)
+sha256sums=(
+   "454ba7dd58180576032c1cfa21c576237b0aa0ea509cb47aadc21d1fbadc1354"
+   "SKIP"
+)
+validpgpkeys=(
+   "169704C6FB490C6892C7F23C37E0AF1FDA48F373"  # Jerome Leclanche 

+   "7C733BA5F585AAD669E4D23A42C9C8D3AF5EA5E3"  # Alf Gaida 

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

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-09-24 14:16:16 UTC (rev 190317)
+++ community-x86_64/PKGBUILD   2016-09-24 14:16:22 UTC (rev 190318)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Jerome Leclanche 
-
-pkgname=lxqt-globalkeys
-pkgver=0.10.0
-pkgrel=4
-pkgdesc="LXQt daemon and library for global keyboard shortcuts registration."
-arch=("i686" "x86_64")
-groups=("lxqt")
-url="http://lxqt.org";
-license=("LGPL2.1")
-depends=("liblxqt")
-makedepends=("cmake" "qt5-tools")
-source=(
-   "https://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz";
-   "https://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz.asc";
-)
-sha256sums=(
-   "9a9d6a0299a26f91d391a601123e78e18cbe56ee6086cc27ccf800920e146e1a"
-   "SKIP"
-)
-validpgpkeys=("169704C6FB490C6892C7F23C37E0AF1FDA48F373")
-
-
-build() {
-   mkdir -p build
-   cd build
-   cmake "$srcdir/$pkgname-$pkgver" \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DCMAKE_INSTALL_LIBDIR=lib
-   make
-}
-
-package() {
-   cd build
-   make DESTDIR="$pkgdir" install
-}

Copied: lxqt-globalkeys/repos/community-x86_64/PKGBUILD (from rev 190317, 
lxqt-globalkeys/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-09-24 14:16:22 UTC (rev 190318)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Jerome Leclanche 
+
+pkgname=lxqt-globalkeys
+pkgver=0.11.0
+pkgrel=1
+pkgdesc="LXQt daemon and library for global keyboard shortcuts registration."
+ar

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

2016-09-24 Thread Antonio Rojas
Date: Saturday, September 24, 2016 @ 14:17:35
  Author: arojas
Revision: 190319

Update to 1.16.0

Modified:
  mate-power-manager-gtk3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-24 14:16:22 UTC (rev 190318)
+++ PKGBUILD2016-09-24 14:17:35 UTC (rev 190319)
@@ -1,6 +1,6 @@
 # Contributor: Martin Wimpress 
 
-_ver=1.14
+_ver=1.16
 _pkgbase=mate-power-manager
 pkgname=(${_pkgbase}-gtk3)
 pkgver=${_ver}.0
@@ -9,13 +9,13 @@
 url="http://mate-desktop.org";
 arch=('i686' 'x86_64')
 license=('GPL')
-depends=('dbus-glib' 'libcanberra' 'libgnome-keyring' 'libnotify' 'libunique3' 
'mate-desktop-gtk3' 'upower')
+depends=('dbus-glib' 'libcanberra' 'libgnome-keyring' 'libnotify' 'upower')
 makedepends=('intltool' 'itstool' 'mate-panel-gtk3')
 optdepends=('mate-panel-gtk3: Set brightness and inhibit power management from 
the panel')
 
source=("http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz";)
 groups=('mate-extra-gtk3')
 conflicts=("${_pkgbase}")
-sha1sums=('286ac97658d18ea1fffa6e0a692a877727a44e41')
+sha1sums=('a7089947d4ac2151e2b8182f4d130aba08d804d2')
 
 build() {
 cd "${srcdir}/${_pkgbase}-${pkgver}"


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

2016-09-24 Thread Lukas Fleischer
Date: Saturday, September 24, 2016 @ 14:17:44
  Author: lfleischer
Revision: 190320

upgpkg: tor 0.2.8.8-1

Upstream update.

Modified:
  tor/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-24 14:17:35 UTC (rev 190319)
+++ PKGBUILD2016-09-24 14:17:44 UTC (rev 190320)
@@ -4,7 +4,7 @@
 # Contributor: Sid Karunaratne
 
 pkgname=tor
-pkgver=0.2.8.7
+pkgver=0.2.8.8
 pkgrel=1
 pkgdesc='Anonymizing overlay network.'
 arch=('i686' 'x86_64')
@@ -19,7 +19,7 @@
 source=("https://www.torproject.org/dist/${pkgname}-${pkgver}.tar.gz"{,.asc}
 'torrc'
 'tor.service')
-md5sums=('59771fe2d098893fe955edfb8b13401f'
+md5sums=('a9627e1655cab3a3df0da9b0f74aa21b'
  'SKIP'
  'c1dd4004c63edaeaa829e01be5413cfc'
  '503cedd9679f9817b2c27916ba989a74')


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

2016-09-24 Thread Lukas Fleischer
Date: Saturday, September 24, 2016 @ 14:17:54
  Author: lfleischer
Revision: 190321

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

Added:
  tor/repos/community-i686/PKGBUILD
(from rev 190320, tor/trunk/PKGBUILD)
  tor/repos/community-i686/tor.install
(from rev 190320, tor/trunk/tor.install)
  tor/repos/community-i686/tor.service
(from rev 190320, tor/trunk/tor.service)
  tor/repos/community-i686/torrc
(from rev 190320, tor/trunk/torrc)
  tor/repos/community-x86_64/PKGBUILD
(from rev 190320, tor/trunk/PKGBUILD)
  tor/repos/community-x86_64/tor.install
(from rev 190320, tor/trunk/tor.install)
  tor/repos/community-x86_64/tor.service
(from rev 190320, tor/trunk/tor.service)
  tor/repos/community-x86_64/torrc
(from rev 190320, tor/trunk/torrc)
Deleted:
  tor/repos/community-i686/PKGBUILD
  tor/repos/community-i686/tor.install
  tor/repos/community-i686/tor.service
  tor/repos/community-i686/torrc
  tor/repos/community-x86_64/PKGBUILD
  tor/repos/community-x86_64/tor.install
  tor/repos/community-x86_64/tor.service
  tor/repos/community-x86_64/torrc

--+
 /PKGBUILD|   94 ++
 /tor.install |8 
 /tor.service |   30 +++
 /torrc   |  378 +
 community-i686/PKGBUILD  |   47 -
 community-i686/tor.install   |4 
 community-i686/tor.service   |   15 -
 community-i686/torrc |  189 
 community-x86_64/PKGBUILD|   47 -
 community-x86_64/tor.install |4 
 community-x86_64/tor.service |   15 -
 community-x86_64/torrc   |  189 
 12 files changed, 510 insertions(+), 510 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-09-24 14:17:44 UTC (rev 190320)
+++ community-i686/PKGBUILD 2016-09-24 14:17:54 UTC (rev 190321)
@@ -1,47 +0,0 @@
-# Maintainer: Lukas Fleischer 
-# Contributor: Daniel Micay 
-# Contributor: simo 
-# Contributor: Sid Karunaratne
-
-pkgname=tor
-pkgver=0.2.8.7
-pkgrel=1
-pkgdesc='Anonymizing overlay network.'
-arch=('i686' 'x86_64')
-url='http://www.torproject.org/'
-license=('BSD')
-depends=('openssl' 'libevent' 'bash' 'libseccomp')
-optdepends=('torsocks: for torify')
-makedepends=('ca-certificates')
-backup=('etc/tor/torrc'
-'etc/tor/torrc-dist')
-install='tor.install'
-source=("https://www.torproject.org/dist/${pkgname}-${pkgver}.tar.gz"{,.asc}
-'torrc'
-'tor.service')
-md5sums=('59771fe2d098893fe955edfb8b13401f'
- 'SKIP'
- 'c1dd4004c63edaeaa829e01be5413cfc'
- '503cedd9679f9817b2c27916ba989a74')
-validpgpkeys=('B35BF85BF19489D04E28C33C21194EBB165733EA') # Nick Mathewson
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  make DESTDIR="${pkgdir}" install
-
-  install -dm0700 -o 43 -g 43 "${pkgdir}/var/lib/tor"
-
-  mv "${pkgdir}/etc/tor/torrc.sample" "${pkgdir}/etc/tor/torrc-dist"
-  install -Dm0644 "${srcdir}/torrc" "${pkgdir}/etc/tor/torrc"
-  install -Dm0644 "${srcdir}/tor.service" 
"${pkgdir}/usr/lib/systemd/system/tor.service"
-
-  install -Dm0644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: tor/repos/community-i686/PKGBUILD (from rev 190320, tor/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-09-24 14:17:54 UTC (rev 190321)
@@ -0,0 +1,47 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: Daniel Micay 
+# Contributor: simo 
+# Contributor: Sid Karunaratne
+
+pkgname=tor
+pkgver=0.2.8.8
+pkgrel=1
+pkgdesc='Anonymizing overlay network.'
+arch=('i686' 'x86_64')
+url='http://www.torproject.org/'
+license=('BSD')
+depends=('openssl' 'libevent' 'bash' 'libseccomp')
+optdepends=('torsocks: for torify')
+makedepends=('ca-certificates')
+backup=('etc/tor/torrc'
+'etc/tor/torrc-dist')
+install='tor.install'
+source=("https://www.torproject.org/dist/${pkgname}-${pkgver}.tar.gz"{,.asc}
+'torrc'
+'tor.service')
+md5sums=('a9627e1655cab3a3df0da9b0f74aa21b'
+ 'SKIP'
+ 'c1dd4004c63edaeaa829e01be5413cfc'
+ '503cedd9679f9817b2c27916ba989a74')
+validpgpkeys=('B35BF85BF19489D04E28C33C21194EBB165733EA') # Nick Mathewson
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  make DESTDIR="${pkgdir}" install
+
+  install -dm0700 -o 43 -g 43 "${pkgdir}/var/lib/tor"
+
+  mv "${pkgdir}/etc/tor/torrc.sample" "${pkgdir}/etc/tor/torrc-dist"
+  install -Dm0644 "${srcdir}/torrc" "${pkgdir}/etc/tor/torrc"
+  install -Dm0644 "${srcdir}/to

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

2016-09-24 Thread Jerome Leclanche
Date: Saturday, September 24, 2016 @ 14:18:37
  Author: jleclanche
Revision: 190324

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

Added:
  lxqt-notificationd/repos/community-i686/PKGBUILD
(from rev 190323, lxqt-notificationd/trunk/PKGBUILD)
  lxqt-notificationd/repos/community-x86_64/PKGBUILD
(from rev 190323, lxqt-notificationd/trunk/PKGBUILD)
Deleted:
  lxqt-notificationd/repos/community-i686/PKGBUILD
  lxqt-notificationd/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-09-24 14:18:32 UTC (rev 190323)
+++ community-i686/PKGBUILD 2016-09-24 14:18:37 UTC (rev 190324)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Jerome Leclanche 
-
-pkgname=lxqt-notificationd
-pkgver=0.10.0
-pkgrel=5
-pkgdesc="LXQt notification daemon and library."
-arch=("i686" "x86_64")
-groups=("lxqt")
-url="http://lxqt.org";
-license=("LGPL2.1")
-depends=("lxqt-common" "liblxqt")
-provides=("notification-daemon")
-makedepends=("cmake" "qt5-tools")
-source=(
-   "https://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz";
-   "https://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz.asc";
-)
-sha256sums=(
-   "5c0859157ff6a20d613ea4aca24e786faf79ab6d69afec1e0b3671e3bbda53d5"
-   "SKIP"
-)
-validpgpkeys=("169704C6FB490C6892C7F23C37E0AF1FDA48F373")
-
-
-build() {
-   mkdir -p build
-   cd build
-   cmake "$srcdir/$pkgname-$pkgver" \
-   -DCMAKE_INSTALL_PREFIX=/usr
-   make
-}
-
-package() {
-   cd build
-   make DESTDIR="$pkgdir" install
-}

Copied: lxqt-notificationd/repos/community-i686/PKGBUILD (from rev 190323, 
lxqt-notificationd/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-09-24 14:18:37 UTC (rev 190324)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Jerome Leclanche 
+
+pkgname=lxqt-notificationd
+pkgver=0.11.0
+pkgrel=1
+pkgdesc="LXQt notification daemon and library."
+arch=("i686" "x86_64")
+groups=("lxqt")
+url="http://lxqt.org";
+license=("LGPL2.1")
+depends=("lxqt-common" "liblxqt")
+provides=("notification-daemon")
+makedepends=("cmake" "qt5-tools" "git")
+source=(
+   
"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz";
+   
"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz.asc";
+)
+sha256sums=(
+   "2e57b4f0c68694a8faf4999039b039f13291c720017b14c0bbdd8e0b49a0fa82"
+   "SKIP"
+)
+validpgpkeys=(
+   "169704C6FB490C6892C7F23C37E0AF1FDA48F373"  # Jerome Leclanche 

+   "7C733BA5F585AAD669E4D23A42C9C8D3AF5EA5E3"  # Alf Gaida 

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

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-09-24 14:18:32 UTC (rev 190323)
+++ community-x86_64/PKGBUILD   2016-09-24 14:18:37 UTC (rev 190324)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Jerome Leclanche 
-
-pkgname=lxqt-notificationd
-pkgver=0.10.0
-pkgrel=5
-pkgdesc="LXQt notification daemon and library."
-arch=("i686" "x86_64")
-groups=("lxqt")
-url="http://lxqt.org";
-license=("LGPL2.1")
-depends=("lxqt-common" "liblxqt")
-provides=("notification-daemon")
-makedepends=("cmake" "qt5-tools")
-source=(
-   "https://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz";
-   "https://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz.asc";
-)
-sha256sums=(
-   "5c0859157ff6a20d613ea4aca24e786faf79ab6d69afec1e0b3671e3bbda53d5"
-   "SKIP"
-)
-validpgpkeys=("169704C6FB490C6892C7F23C37E0AF1FDA48F373")
-
-
-build() {
-   mkdir -p build
-   cd build
-   cmake "$srcdir/$pkgname-$pkgver" \
-   -DCMAKE_INSTALL_PREFIX=/usr
-   make
-}
-
-package() {
-   cd build
-   make DESTDIR="$pkgdir" install
-}

Copied: lxqt-notificationd/repos/community-x86_64/PKGBUILD (from rev 190323, 
lxqt-notificationd/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-09-24 14:18:37 UTC (rev 190324)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Jerome Leclanche 
+
+pkgname=lxqt-notificationd
+pkgver=0.11.0
+pkgrel=1
+pkgdesc="LXQt notification daemon and library."
+arch=("i686" "x86_64")
+groups=("lxqt")
+url="http://lxqt.org";
+licens

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

2016-09-24 Thread Jerome Leclanche
Date: Saturday, September 24, 2016 @ 14:18:32
  Author: jleclanche
Revision: 190323

upgpkg: lxqt-notificationd 0.11.0-1

Upstream release 0.11.0

Modified:
  lxqt-notificationd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-24 14:18:06 UTC (rev 190322)
+++ PKGBUILD2016-09-24 14:18:32 UTC (rev 190323)
@@ -2,8 +2,8 @@
 # Maintainer: Jerome Leclanche 
 
 pkgname=lxqt-notificationd
-pkgver=0.10.0
-pkgrel=5
+pkgver=0.11.0
+pkgrel=1
 pkgdesc="LXQt notification daemon and library."
 arch=("i686" "x86_64")
 groups=("lxqt")
@@ -11,16 +11,19 @@
 license=("LGPL2.1")
 depends=("lxqt-common" "liblxqt")
 provides=("notification-daemon")
-makedepends=("cmake" "qt5-tools")
+makedepends=("cmake" "qt5-tools" "git")
 source=(
-   "https://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz";
-   "https://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz.asc";
+   
"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz";
+   
"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz.asc";
 )
 sha256sums=(
-   "5c0859157ff6a20d613ea4aca24e786faf79ab6d69afec1e0b3671e3bbda53d5"
+   "2e57b4f0c68694a8faf4999039b039f13291c720017b14c0bbdd8e0b49a0fa82"
"SKIP"
 )
-validpgpkeys=("169704C6FB490C6892C7F23C37E0AF1FDA48F373")
+validpgpkeys=(
+   "169704C6FB490C6892C7F23C37E0AF1FDA48F373"  # Jerome Leclanche 

+   "7C733BA5F585AAD669E4D23A42C9C8D3AF5EA5E3"  # Alf Gaida 

+)
 
 
 build() {


[arch-commits] Commit in mate-power-manager-gtk3/repos (4 files)

2016-09-24 Thread Antonio Rojas
Date: Saturday, September 24, 2016 @ 14:18:06
  Author: arojas
Revision: 190322

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

Added:
  mate-power-manager-gtk3/repos/community-staging-i686/
  mate-power-manager-gtk3/repos/community-staging-i686/PKGBUILD
(from rev 190321, mate-power-manager-gtk3/trunk/PKGBUILD)
  mate-power-manager-gtk3/repos/community-staging-x86_64/
  mate-power-manager-gtk3/repos/community-staging-x86_64/PKGBUILD
(from rev 190321, mate-power-manager-gtk3/trunk/PKGBUILD)

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

Copied: mate-power-manager-gtk3/repos/community-staging-i686/PKGBUILD (from rev 
190321, mate-power-manager-gtk3/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-09-24 14:18:06 UTC (rev 190322)
@@ -0,0 +1,37 @@
+# Contributor: Martin Wimpress 
+
+_ver=1.16
+_pkgbase=mate-power-manager
+pkgname=(${_pkgbase}-gtk3)
+pkgver=${_ver}.0
+pkgrel=1
+pkgdesc="Power management tool for the MATE desktop (GTK3 version)"
+url="http://mate-desktop.org";
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('dbus-glib' 'libcanberra' 'libgnome-keyring' 'libnotify' 'upower')
+makedepends=('intltool' 'itstool' 'mate-panel-gtk3')
+optdepends=('mate-panel-gtk3: Set brightness and inhibit power management from 
the panel')
+source=("http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz";)
+groups=('mate-extra-gtk3')
+conflicts=("${_pkgbase}")
+sha1sums=('a7089947d4ac2151e2b8182f4d130aba08d804d2')
+
+build() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+./configure \
+--prefix=/usr \
+--libexecdir=/usr/lib/${_pkgbase} \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--sbindir=/usr/bin \
+--enable-applets \
+--with-gtk=3.0 \
+--disable-strict
+make
+}
+
+package() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+make DESTDIR="${pkgdir}" install
+}

Copied: mate-power-manager-gtk3/repos/community-staging-x86_64/PKGBUILD (from 
rev 190321, mate-power-manager-gtk3/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-09-24 14:18:06 UTC (rev 190322)
@@ -0,0 +1,37 @@
+# Contributor: Martin Wimpress 
+
+_ver=1.16
+_pkgbase=mate-power-manager
+pkgname=(${_pkgbase}-gtk3)
+pkgver=${_ver}.0
+pkgrel=1
+pkgdesc="Power management tool for the MATE desktop (GTK3 version)"
+url="http://mate-desktop.org";
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('dbus-glib' 'libcanberra' 'libgnome-keyring' 'libnotify' 'upower')
+makedepends=('intltool' 'itstool' 'mate-panel-gtk3')
+optdepends=('mate-panel-gtk3: Set brightness and inhibit power management from 
the panel')
+source=("http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz";)
+groups=('mate-extra-gtk3')
+conflicts=("${_pkgbase}")
+sha1sums=('a7089947d4ac2151e2b8182f4d130aba08d804d2')
+
+build() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+./configure \
+--prefix=/usr \
+--libexecdir=/usr/lib/${_pkgbase} \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--sbindir=/usr/bin \
+--enable-applets \
+--with-gtk=3.0 \
+--disable-strict
+make
+}
+
+package() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+make DESTDIR="${pkgdir}" install
+}


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

2016-09-24 Thread Antonio Rojas
Date: Saturday, September 24, 2016 @ 14:22:54
  Author: arojas
Revision: 190326

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

Added:
  mate-screensaver/repos/community-staging-i686/
  mate-screensaver/repos/community-staging-i686/PKGBUILD
(from rev 190325, mate-screensaver/trunk/PKGBUILD)
  mate-screensaver/repos/community-staging-x86_64/
  mate-screensaver/repos/community-staging-x86_64/PKGBUILD
(from rev 190325, mate-screensaver/trunk/PKGBUILD)

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

Copied: mate-screensaver/repos/community-staging-i686/PKGBUILD (from rev 
190325, mate-screensaver/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-09-24 14:22:54 UTC (rev 190326)
@@ -0,0 +1,40 @@
+# Contributor: Martin Wimpress 
+
+_ver=1.16
+_pkgbase=mate-screensaver
+pkgname=(${_pkgbase})
+pkgver=${_ver}.0
+pkgrel=1
+pkgdesc='Screensaver for MATE (GTK2 version)'
+url="http://mate-desktop.org";
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('libxss' 'mate-menus' 'mate-desktop' 'dbus-glib' 'libnotify' 
'libmatekbd')
+makedepends=('intltool')
+optdepends=('mate-screensaver-hacks: Additional screensavers'
+'rss-glx: Really slick screensavers')
+groups=('mate-extra')
+conflicts=("${_pkgbase}-gtk3")
+source=("http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz";)
+sha1sums=('c682e5e3efdaf15e6834857165b469a8f3a17993')
+
+build() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+./configure \
+--prefix=/usr \
+--libexecdir=/usr/lib/${_pkgbase} \
+--sysconfdir=/etc \
+--with-xscreensaverdir=/usr/share/xscreensaver/config \
+--with-xscreensaverhackdir=/usr/lib/xscreensaver \
+--with-mit-ext \
+--with-libnotify \
+--enable-locking \
+--with-gtk=2.0 \
+--without-console-kit
+make
+}
+
+package() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+make DESTDIR="${pkgdir}" install
+}

Copied: mate-screensaver/repos/community-staging-x86_64/PKGBUILD (from rev 
190325, mate-screensaver/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-09-24 14:22:54 UTC (rev 190326)
@@ -0,0 +1,40 @@
+# Contributor: Martin Wimpress 
+
+_ver=1.16
+_pkgbase=mate-screensaver
+pkgname=(${_pkgbase})
+pkgver=${_ver}.0
+pkgrel=1
+pkgdesc='Screensaver for MATE (GTK2 version)'
+url="http://mate-desktop.org";
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('libxss' 'mate-menus' 'mate-desktop' 'dbus-glib' 'libnotify' 
'libmatekbd')
+makedepends=('intltool')
+optdepends=('mate-screensaver-hacks: Additional screensavers'
+'rss-glx: Really slick screensavers')
+groups=('mate-extra')
+conflicts=("${_pkgbase}-gtk3")
+source=("http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz";)
+sha1sums=('c682e5e3efdaf15e6834857165b469a8f3a17993')
+
+build() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+./configure \
+--prefix=/usr \
+--libexecdir=/usr/lib/${_pkgbase} \
+--sysconfdir=/etc \
+--with-xscreensaverdir=/usr/share/xscreensaver/config \
+--with-xscreensaverhackdir=/usr/lib/xscreensaver \
+--with-mit-ext \
+--with-libnotify \
+--enable-locking \
+--with-gtk=2.0 \
+--without-console-kit
+make
+}
+
+package() {
+cd "${srcdir}/${_pkgbase}-${pkgver}"
+make DESTDIR="${pkgdir}" install
+}


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

2016-09-24 Thread Antonio Rojas
Date: Saturday, September 24, 2016 @ 14:22:27
  Author: arojas
Revision: 190325

Update to 1.16.0

Modified:
  mate-screensaver/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-24 14:18:37 UTC (rev 190324)
+++ PKGBUILD2016-09-24 14:22:27 UTC (rev 190325)
@@ -1,15 +1,15 @@
 # Contributor: Martin Wimpress 
 
-_ver=1.14
+_ver=1.16
 _pkgbase=mate-screensaver
 pkgname=(${_pkgbase})
-pkgver=${_ver}.1
+pkgver=${_ver}.0
 pkgrel=1
 pkgdesc='Screensaver for MATE (GTK2 version)'
 url="http://mate-desktop.org";
 arch=('i686' 'x86_64')
 license=('GPL')
-depends=('libxss' 'mate-menus' 'mate-session-manager')
+depends=('libxss' 'mate-menus' 'mate-desktop' 'dbus-glib' 'libnotify' 
'libmatekbd')
 makedepends=('intltool')
 optdepends=('mate-screensaver-hacks: Additional screensavers'
 'rss-glx: Really slick screensavers')
@@ -16,7 +16,7 @@
 groups=('mate-extra')
 conflicts=("${_pkgbase}-gtk3")
 
source=("http://pub.mate-desktop.org/releases/${_ver}/${_pkgbase}-${pkgver}.tar.xz";)
-sha1sums=('0aae11c766ef7dc1383de182661bf89b43750f1a')
+sha1sums=('c682e5e3efdaf15e6834857165b469a8f3a17993')
 
 build() {
 cd "${srcdir}/${_pkgbase}-${pkgver}"


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

2016-09-24 Thread Jerome Leclanche
Date: Saturday, September 24, 2016 @ 14:24:17
  Author: jleclanche
Revision: 190327

upgpkg: lxqt-panel 0.11.0-1

Upstream release 0.11.0

Modified:
  lxqt-panel/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-09-24 14:22:54 UTC (rev 190326)
+++ PKGBUILD2016-09-24 14:24:17 UTC (rev 190327)
@@ -2,8 +2,8 @@
 # Maintainer: Jerome Leclanche 
 
 pkgname=lxqt-panel
-pkgver=0.10.0
-pkgrel=6
+pkgver=0.11.0
+pkgrel=1
 pkgdesc="The LXQt desktop panel"
 arch=("i686" "x86_64")
 groups=("lxqt")
@@ -20,18 +20,21 @@
"lm_sensors: Sensors plugin"
 )
 makedepends=(
-   "cmake" "qt5-tools" "libpulse" "libstatgrab" "libsysstat"
+   "cmake" "qt5-tools" "git" "libpulse" "libstatgrab" "libsysstat"
"lm_sensors"
 )
 source=(
-   "https://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz";
-   "https://downloads.lxqt.org/lxqt/$pkgver/$pkgname-$pkgver.tar.xz.asc";
+   
"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz";
+   
"https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz.asc";
 )
 sha256sums=(
-   "df83db7789daecd358f074db2100d7b251c00e48aa3aa62957d5a657a4309d5e"
+   "18415624d862b9b269fd1f74b2b6a51776852babd057e701e5d5b48ce46e777c"
"SKIP"
 )
-validpgpkeys=("169704C6FB490C6892C7F23C37E0AF1FDA48F373") 
+validpgpkeys=(
+   "169704C6FB490C6892C7F23C37E0AF1FDA48F373"  # Jerome Leclanche 

+   "7C733BA5F585AAD669E4D23A42C9C8D3AF5EA5E3"  # Alf Gaida 

+)
 
 
 build() {


  1   2   3   >