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

2018-12-29 Thread Felix Yan via arch-commits
Date: Sunday, December 30, 2018 @ 07:59:42
  Author: felixonmars
Revision: 342795

archrelease: copy trunk to testing-x86_64

Added:
  python/repos/testing-x86_64/
  python/repos/testing-x86_64/0001-compileall-Fix-ddir-when-recursing.patch
(from rev 342794, 
python/trunk/0001-compileall-Fix-ddir-when-recursing.patch)
  python/repos/testing-x86_64/PKGBUILD
(from rev 342794, python/trunk/PKGBUILD)
  python/repos/testing-x86_64/dont-make-libpython-readonly.patch
(from rev 342794, python/trunk/dont-make-libpython-readonly.patch)

---+
 0001-compileall-Fix-ddir-when-recursing.patch |   57 ++
 PKGBUILD  |  132 
 dont-make-libpython-readonly.patch|   13 ++
 3 files changed, 202 insertions(+)

Copied: 
python/repos/testing-x86_64/0001-compileall-Fix-ddir-when-recursing.patch (from 
rev 342794, python/trunk/0001-compileall-Fix-ddir-when-recursing.patch)
===
--- testing-x86_64/0001-compileall-Fix-ddir-when-recursing.patch
(rev 0)
+++ testing-x86_64/0001-compileall-Fix-ddir-when-recursing.patch
2018-12-30 07:59:42 UTC (rev 342795)
@@ -0,0 +1,57 @@
+From 84fdbc156ed424d030686de350fbfc6c3593263f Mon Sep 17 00:00:00 2001
+Message-Id: 
<84fdbc156ed424d030686de350fbfc6c3593263f.1537028533.git.jan.steff...@gmail.com>
+From: "Jan Alexander Steffens (heftig)" 
+Date: Sat, 15 Sep 2018 18:22:06 +0200
+Subject: [PATCH] compileall: Fix ddir when recursing
+
+---
+ Lib/compileall.py | 14 +-
+ 1 file changed, 9 insertions(+), 5 deletions(-)
+
+diff --git a/Lib/compileall.py b/Lib/compileall.py
+index 72592126d7..70e246fd96 100644
+--- a/Lib/compileall.py
 b/Lib/compileall.py
+@@ -45,12 +45,16 @@ def _walk_dir(dir, ddir=None, maxlevels=10, quiet=0):
+ else:
+ dfile = None
+ if not os.path.isdir(fullname):
+-yield fullname
++yield fullname, ddir
+ elif (maxlevels > 0 and name != os.curdir and name != os.pardir and
+   os.path.isdir(fullname) and not os.path.islink(fullname)):
+ yield from _walk_dir(fullname, ddir=dfile,
+  maxlevels=maxlevels - 1, quiet=quiet)
+ 
++def _compile_one(file_ddir, *args, **kwargs):
++file, ddir = file_ddir
++return compile_file(file, ddir, *args, **kwargs)
++
+ def compile_dir(dir, maxlevels=10, ddir=None, force=False, rx=None,
+ quiet=0, legacy=False, optimize=-1, workers=1,
+ invalidation_mode=py_compile.PycInvalidationMode.TIMESTAMP):
+@@ -79,17 +83,17 @@ def compile_dir(dir, maxlevels=10, ddir=None, force=False, 
rx=None,
+ if workers is not None and workers != 1 and ProcessPoolExecutor is not 
None:
+ workers = workers or None
+ with ProcessPoolExecutor(max_workers=workers) as executor:
+-results = executor.map(partial(compile_file,
+-   ddir=ddir, force=force,
++results = executor.map(partial(_compile_one,
++   force=force,
+rx=rx, quiet=quiet,
+legacy=legacy,
+optimize=optimize,
+
invalidation_mode=invalidation_mode),
+files)
+ success = min(results, default=True)
+ else:
+-for file in files:
+-if not compile_file(file, ddir, force, rx, quiet,
++for file_ddir in files:
++if not _compile_one(file_ddir, force, rx, quiet,
+ legacy, optimize, invalidation_mode):
+ success = False
+ return success
+-- 
+2.18.0
+

Copied: python/repos/testing-x86_64/PKGBUILD (from rev 342794, 
python/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2018-12-30 07:59:42 UTC (rev 342795)
@@ -0,0 +1,132 @@
+# Maintainer: Angel Velasquez 
+# Maintainer: Felix Yan 
+# Contributor: Stéphane Gaudreault 
+# Contributor: Allan McRae 
+# Contributor: Jason Chu 
+
+pkgname=python
+pkgver=3.7.2
+pkgrel=1
+_pybasever=${pkgver%.*}
+pkgdesc="Next generation of the python high-level scripting language"
+arch=('x86_64')
+license=('custom')
+url="http://www.python.org/;
+depends=('expat' 'bzip2' 'gdbm' 'openssl' 'libffi' 'zlib' 'libnsl')
+makedepends=('tk' 'sqlite' 'valgrind' 'bluez-libs' 'mpdecimal' 'llvm' 'gdb' 
'xorg-server-xvfb')
+optdepends=('python-setuptools'
+'python-pip'
+'sqlite'
+'mpdecimal: for decimal'
+'xz: for lzma'
+'tk: for tkinter')
+provides=('python3')
+replaces=('python3')

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

2018-12-29 Thread Felix Yan via arch-commits
Date: Sunday, December 30, 2018 @ 07:59:09
  Author: felixonmars
Revision: 342794

upgpkg: python 3.7.2-1

Modified:
  python/trunk/PKGBUILD
Deleted:
  python/trunk/bpo34056-always-return-bytes-from-_HackedGetData.get_data.patch

-+
 PKGBUILD|4 
 bpo34056-always-return-bytes-from-_HackedGetData.get_data.patch |   83 
--
 2 files changed, 2 insertions(+), 85 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-30 07:28:32 UTC (rev 342793)
+++ PKGBUILD2018-12-30 07:59:09 UTC (rev 342794)
@@ -5,7 +5,7 @@
 # Contributor: Jason Chu 
 
 pkgname=python
-pkgver=3.7.1
+pkgver=3.7.2
 pkgrel=1
 _pybasever=${pkgver%.*}
 pkgdesc="Next generation of the python high-level scripting language"
@@ -25,7 +25,7 @@
 
source=("https://www.python.org/ftp/python/${pkgver%rc*}/Python-${pkgver}.tar.xz"{,.asc}
 dont-make-libpython-readonly.patch
 0001-compileall-Fix-ddir-when-recursing.patch)
-sha512sums=('3eb62a0127609b14420a47442727702f396519c649625aca59883d04f4c02e5f37ba1d58ac8e93c49d14a63f17ae7909315c33fc813293dbcdb6127f39a148b0'
+sha512sums=('6cd2d6d848783b99d55985cd7b22d67b98f41a09b4fdd96f680a630a4e035220d2b903f8c59ed513aa5ffe6730fa947ddb55bb72ce36f0e945ef8af5d971'
 'SKIP'
 
'2ef96708d5b13ae2a3d2cc62c87b4780e60ecfce914e190564492def3a11d5e56977659f41c7f9d12266e58050c766bce4e2b5d50b708eb792794fa8357920c4'
 
'ebd04c3b6d41321b1f0d439d356e0ce463760db55dc64109854c70d017cf56608aa19de9fc4a21bf840795ff202b4703444f9af8074b661780798c17e03089ff')

Deleted: bpo34056-always-return-bytes-from-_HackedGetData.get_data.patch
===
--- bpo34056-always-return-bytes-from-_HackedGetData.get_data.patch 
2018-12-30 07:28:32 UTC (rev 342793)
+++ bpo34056-always-return-bytes-from-_HackedGetData.get_data.patch 
2018-12-30 07:59:09 UTC (rev 342794)
@@ -1,83 +0,0 @@
-From 7bd6f0e5500f778e940374237b94651f60ae1990 Mon Sep 17 00:00:00 2001
-From: "Miss Islington (bot)"
- <31488909+miss-isling...@users.noreply.github.com>
-Date: Fri, 6 Jul 2018 21:00:45 -0700
-Subject: [PATCH] closes bpo-34056: Always return bytes from
- _HackedGetData.get_data(). (GH-8130)
-
-* Always return bytes from _HackedGetData.get_data().
-
-Ensure the imp.load_source shim always returns bytes by reopening the file in
-binary mode if needed. Hash-based pycs have to receive the source code in 
bytes.
-
-It's tempting to change imp.get_suffixes() to always return 'rb' as a mode, but
-that breaks some stdlib tests and likely 3rdparty code, too.
-(cherry picked from commit b0274f2cddd36b49fe5080efbe160277ef546471)
-
-Co-authored-by: Benjamin Peterson 

- Lib/imp.py| 13 ++---
- Lib/test/test_imp.py  | 15 +++
- 2 files changed, 21 insertions(+), 7 deletions(-)
-
-diff --git a/Lib/imp.py b/Lib/imp.py
-index 866464b245b2..31f8c766381a 100644
 a/Lib/imp.py
-+++ b/Lib/imp.py
-@@ -142,17 +142,16 @@ def __init__(self, fullname, path, file=None):
- def get_data(self, path):
- """Gross hack to contort loader to deal w/ load_*()'s bad API."""
- if self.file and path == self.path:
-+# The contract of get_data() requires us to return bytes. Reopen 
the
-+# file in binary mode if needed.
- if not self.file.closed:
- file = self.file
--else:
--self.file = file = open(self.path, 'r')
-+if 'b' not in file.mode:
-+file.close()
-+if self.file.closed:
-+self.file = file = open(self.path, 'rb')
- 
- with file:
--# Technically should be returning bytes, but
--# SourceLoader.get_code() just passed what is returned to
--# compile() which can handle str. And converting to bytes 
would
--# require figuring out the encoding to decode to and
--# tokenize.detect_encoding() only accepts bytes.
- return file.read()
- else:
- return super().get_data(path)
-diff --git a/Lib/test/test_imp.py b/Lib/test/test_imp.py
-index a115e60d4e4f..bb0144b12d41 100644
 a/Lib/test/test_imp.py
-+++ b/Lib/test/test_imp.py
-@@ -2,6 +2,7 @@
- import importlib.util
- import os
- import os.path
-+import py_compile
- import sys
- from test import support
- from test.support import script_helper
-@@ -350,6 +351,20 @@ def test_pyc_invalidation_mode_from_cmdline(self):
- res = script_helper.assert_python_ok(*args)
- self.assertEqual(res.out.strip().decode('utf-8'), expected)
- 
-+def test_find_and_load_checked_pyc(self):
-+# issue 34056
-+with support.temp_cwd():
-+  

[arch-commits] Commit in linux-lts/repos/testing-x86_64 (14 files)

2018-12-29 Thread Andreas Radke via arch-commits
Date: Sunday, December 30, 2018 @ 07:28:32
  Author: andyrtr
Revision: 342793

archrelease: copy trunk to testing-x86_64

Added:
  
linux-lts/repos/testing-x86_64/0001-add-sysctl-to-disallow-unprivileged-CLONE_NEWUSER-by.patch
(from rev 342792, 
linux-lts/trunk/0001-add-sysctl-to-disallow-unprivileged-CLONE_NEWUSER-by.patch)
  linux-lts/repos/testing-x86_64/60-linux.hook
(from rev 342792, linux-lts/trunk/60-linux.hook)
  linux-lts/repos/testing-x86_64/90-linux.hook
(from rev 342792, linux-lts/trunk/90-linux.hook)
  linux-lts/repos/testing-x86_64/PKGBUILD
(from rev 342792, linux-lts/trunk/PKGBUILD)
  linux-lts/repos/testing-x86_64/config
(from rev 342792, linux-lts/trunk/config)
  linux-lts/repos/testing-x86_64/linux-lts.install
(from rev 342792, linux-lts/trunk/linux-lts.install)
  linux-lts/repos/testing-x86_64/linux-lts.preset
(from rev 342792, linux-lts/trunk/linux-lts.preset)
Deleted:
  
linux-lts/repos/testing-x86_64/0001-add-sysctl-to-disallow-unprivileged-CLONE_NEWUSER-by.patch
  linux-lts/repos/testing-x86_64/60-linux.hook
  linux-lts/repos/testing-x86_64/90-linux.hook
  linux-lts/repos/testing-x86_64/PKGBUILD
  linux-lts/repos/testing-x86_64/config
  linux-lts/repos/testing-x86_64/linux-lts.install
  linux-lts/repos/testing-x86_64/linux-lts.preset

-+
 0001-add-sysctl-to-disallow-unprivileged-CLONE_NEWUSER-by.patch |  206 
 60-linux.hook   |   24 
 90-linux.hook   |   22 
 PKGBUILD|  464 
 config  |19584 
+-
 linux-lts.install   |   20 
 linux-lts.preset|   28 
 7 files changed, 10174 insertions(+), 10174 deletions(-)

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


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

2018-12-29 Thread Andreas Radke via arch-commits
Date: Sunday, December 30, 2018 @ 07:28:11
  Author: andyrtr
Revision: 342792

upgpkg: linux-lts 4.19.13-1

upstream update 4.19.13

Modified:
  linux-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-30 03:29:50 UTC (rev 342791)
+++ PKGBUILD2018-12-30 07:28:11 UTC (rev 342792)
@@ -3,7 +3,7 @@
 pkgbase=linux-lts
 #pkgbase=linux-lts-custom
 _srcname=linux-4.19
-pkgver=4.19.12
+pkgver=4.19.13
 pkgrel=1
 arch=('x86_64')
 url="https://www.kernel.org/;
@@ -23,7 +23,7 @@
 # https://www.kernel.org/pub/linux/kernel/v4.x/sha256sums.asc
 sha256sums=('0c68f5655528aed4f99dae71a5b259edc93239fa899e2df79c055275c21749a1'
 'SKIP'
-'4b2bab90b752a2cf2d2d2157e360ff4e37a5413620fdac624033a469d86518e0'
+'6b9be1fe9446535e1fcdd50ec9be4aec538466e4b9121b3434a6c29669834610'
 'd0f62ce948ad58b96fea316b9cf1f08193c6b56e0ca4901d382494a071865dfd'
 'ae2e95db94ef7176207c690224169594d49445e04249d2499e9d2fbc117a0b21'
 '75f99f5239e03238f88d1a834c50043ec32b1dc568f2cc291b07d04718483919'


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

2018-12-29 Thread Jerome Leclanche via arch-commits
Date: Sunday, December 30, 2018 @ 06:44:26
  Author: jleclanche
Revision: 418960

archrelease: copy trunk to community-any

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

---+
 PKGBUILD  |   42 +-
 xonsh.install |   22 +++---
 2 files changed, 32 insertions(+), 32 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-30 06:44:13 UTC (rev 418959)
+++ PKGBUILD2018-12-30 06:44:26 UTC (rev 418960)
@@ -1,21 +0,0 @@
-# Maintainer: Jerome Leclanche 
-
-pkgname=xonsh
-pkgver=0.8.6
-pkgrel=1
-pkgdesc="Python-powered, cross-platform, Unix-gazing shell"
-url="http://xon.sh/;
-arch=("any")
-license=("BSD")
-depends=("python" "python-ply")
-optdepends=("python-prompt_toolkit: support for SHELL_TYPE=prompt_toolkit")
-makedepends=("python-setuptools")
-source=("$pkgname-$pkgver.zip::https://github.com/xonsh/xonsh/archive/$pkgver.zip;)
-install=xonsh.install
-sha256sums=("4d5a8cde4d82ca7af8858273a437c763adf96e1b4c7d22bf6359e259cfe35520")
-
-package() {
-   cd "$srcdir/$pkgname-$pkgver"
-   python setup.py install --root="$pkgdir"
-   install -D -m644 license "$pkgdir/usr/share/licenses/$pkgname/license"
-}

Copied: xonsh/repos/community-any/PKGBUILD (from rev 418959, 
xonsh/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-30 06:44:26 UTC (rev 418960)
@@ -0,0 +1,21 @@
+# Maintainer: Jerome Leclanche 
+
+pkgname=xonsh
+pkgver=0.8.7
+pkgrel=1
+pkgdesc="Python-powered, cross-platform, Unix-gazing shell"
+url="http://xon.sh/;
+arch=("any")
+license=("BSD")
+depends=("python" "python-ply")
+optdepends=("python-prompt_toolkit: support for SHELL_TYPE=prompt_toolkit")
+makedepends=("python-setuptools")
+source=("$pkgname-$pkgver.zip::https://github.com/xonsh/xonsh/archive/$pkgver.zip;)
+install=xonsh.install
+sha256sums=("f7171d6f3c80743ad7729c7e1370a14029236fc5904c44e6b9fd9efdf13cdce6")
+
+package() {
+   cd "$srcdir/$pkgname-$pkgver"
+   python setup.py install --root="$pkgdir"
+   install -D -m644 license "$pkgdir/usr/share/licenses/$pkgname/license"
+}

Deleted: xonsh.install
===
--- xonsh.install   2018-12-30 06:44:13 UTC (rev 418959)
+++ xonsh.install   2018-12-30 06:44:26 UTC (rev 418960)
@@ -1,11 +0,0 @@
-post_install() {
-   grep -x /usr/bin/xonsh /etc/shells >/dev/null || echo /usr/bin/xonsh >> 
/etc/shells
-}
-
-post_remove() {
-   sed -i "/^\/usr\/bin\/xonsh$/d" /etc/shells
-}
-
-post_upgrade() {
-   post_install
-}

Copied: xonsh/repos/community-any/xonsh.install (from rev 418959, 
xonsh/trunk/xonsh.install)
===
--- xonsh.install   (rev 0)
+++ xonsh.install   2018-12-30 06:44:26 UTC (rev 418960)
@@ -0,0 +1,11 @@
+post_install() {
+   grep -x /usr/bin/xonsh /etc/shells >/dev/null || echo /usr/bin/xonsh >> 
/etc/shells
+}
+
+post_remove() {
+   sed -i "/^\/usr\/bin\/xonsh$/d" /etc/shells
+}
+
+post_upgrade() {
+   post_install
+}


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

2018-12-29 Thread Jerome Leclanche via arch-commits
Date: Sunday, December 30, 2018 @ 06:44:13
  Author: jleclanche
Revision: 418959

upgpkg: xonsh 0.8.7-1

Upstream release 0.8.7

Modified:
  xonsh/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-30 02:07:32 UTC (rev 418958)
+++ PKGBUILD2018-12-30 06:44:13 UTC (rev 418959)
@@ -1,7 +1,7 @@
 # Maintainer: Jerome Leclanche 
 
 pkgname=xonsh
-pkgver=0.8.6
+pkgver=0.8.7
 pkgrel=1
 pkgdesc="Python-powered, cross-platform, Unix-gazing shell"
 url="http://xon.sh/;
@@ -12,7 +12,7 @@
 makedepends=("python-setuptools")
 
source=("$pkgname-$pkgver.zip::https://github.com/xonsh/xonsh/archive/$pkgver.zip;)
 install=xonsh.install
-sha256sums=("4d5a8cde4d82ca7af8858273a437c763adf96e1b4c7d22bf6359e259cfe35520")
+sha256sums=("f7171d6f3c80743ad7729c7e1370a14029236fc5904c44e6b9fd9efdf13cdce6")
 
 package() {
cd "$srcdir/$pkgname-$pkgver"


[arch-commits] Commit in xfce4-session/repos/testing-x86_64 (14 files)

2018-12-29 Thread Evangelos Foutras via arch-commits
Date: Sunday, December 30, 2018 @ 03:29:50
  Author: foutrelis
Revision: 342791

archrelease: copy trunk to testing-x86_64

Added:
  
xfce4-session/repos/testing-x86_64/0001-Pass-VT-number-to-xinit-if-XDG_VTNR-is-set.patch
(from rev 342790, 
xfce4-session/trunk/0001-Pass-VT-number-to-xinit-if-XDG_VTNR-is-set.patch)
  
xfce4-session/repos/testing-x86_64/0002-Make-verbose-logging-conditional-Bug-11698.patch
(from rev 342790, 
xfce4-session/trunk/0002-Make-verbose-logging-conditional-Bug-11698.patch)
  
xfce4-session/repos/testing-x86_64/0003-xfce4-session-source-system-xinitrc-scripts.patch
(from rev 342790, 
xfce4-session/trunk/0003-xfce4-session-source-system-xinitrc-scripts.patch)
  xfce4-session/repos/testing-x86_64/0004-screenlockers.patch
(from rev 342790, xfce4-session/trunk/0004-screenlockers.patch)
  xfce4-session/repos/testing-x86_64/0005-dbus-user-session.patch
(from rev 342790, xfce4-session/trunk/0005-dbus-user-session.patch)
  xfce4-session/repos/testing-x86_64/PKGBUILD
(from rev 342790, xfce4-session/trunk/PKGBUILD)
  
xfce4-session/repos/testing-x86_64/xfce-polkit-gnome-authentication-agent-1.desktop
(from rev 342790, 
xfce4-session/trunk/xfce-polkit-gnome-authentication-agent-1.desktop)
Deleted:
  
xfce4-session/repos/testing-x86_64/0001-Pass-VT-number-to-xinit-if-XDG_VTNR-is-set.patch
  
xfce4-session/repos/testing-x86_64/0002-Make-verbose-logging-conditional-Bug-11698.patch
  
xfce4-session/repos/testing-x86_64/0003-xfce4-session-source-system-xinitrc-scripts.patch
  xfce4-session/repos/testing-x86_64/0004-screenlockers.patch
  xfce4-session/repos/testing-x86_64/0005-dbus-launch.patch
  xfce4-session/repos/testing-x86_64/PKGBUILD
  
xfce4-session/repos/testing-x86_64/xfce-polkit-gnome-authentication-agent-1.desktop

+
 0001-Pass-VT-number-to-xinit-if-XDG_VTNR-is-set.patch  |   54 ++--
 0002-Make-verbose-logging-conditional-Bug-11698.patch  |   62 ++---
 0003-xfce4-session-source-system-xinitrc-scripts.patch |   36 +--
 0004-screenlockers.patch   |  116 +-
 0005-dbus-launch.patch |   15 -
 0005-dbus-user-session.patch   |   18 +
 PKGBUILD   |  163 +++---
 xfce-polkit-gnome-authentication-agent-1.desktop   |  174 +++
 8 files changed, 322 insertions(+), 316 deletions(-)

Deleted: 0001-Pass-VT-number-to-xinit-if-XDG_VTNR-is-set.patch
===
--- 0001-Pass-VT-number-to-xinit-if-XDG_VTNR-is-set.patch   2018-12-30 
03:29:42 UTC (rev 342790)
+++ 0001-Pass-VT-number-to-xinit-if-XDG_VTNR-is-set.patch   2018-12-30 
03:29:50 UTC (rev 342791)
@@ -1,27 +0,0 @@
-From e740aad5d6761ce9a9df48a3d87ff29240433d19 Mon Sep 17 00:00:00 2001
-From: Evangelos Foutras 
-Date: Tue, 24 Mar 2015 10:09:33 +0200
-Subject: [PATCH] Pass VT number to xinit if XDG_VTNR is set
-

- scripts/startxfce4.in | 4 
- 1 file changed, 4 insertions(+)
-
-diff --git a/scripts/startxfce4.in b/scripts/startxfce4.in
-index d0a74a9..bf3201b 100644
 a/scripts/startxfce4.in
-+++ b/scripts/startxfce4.in
-@@ -92,6 +92,10 @@ if test "x$DISPLAY" = "x"
- then
-   echo "$0: Starting X server"
-   prog=xinit
-+
-+  if test ! "x$XDG_VTNR" = "x"; then
-+SERVERRC="vt$XDG_VTNR $SERVERRC"
-+  fi
- else
-   echo "$0: X server already running on display $DISPLAY"
-   prog=/bin/sh
--- 
-2.3.4
-

Copied: 
xfce4-session/repos/testing-x86_64/0001-Pass-VT-number-to-xinit-if-XDG_VTNR-is-set.patch
 (from rev 342790, 
xfce4-session/trunk/0001-Pass-VT-number-to-xinit-if-XDG_VTNR-is-set.patch)
===
--- 0001-Pass-VT-number-to-xinit-if-XDG_VTNR-is-set.patch   
(rev 0)
+++ 0001-Pass-VT-number-to-xinit-if-XDG_VTNR-is-set.patch   2018-12-30 
03:29:50 UTC (rev 342791)
@@ -0,0 +1,27 @@
+From e740aad5d6761ce9a9df48a3d87ff29240433d19 Mon Sep 17 00:00:00 2001
+From: Evangelos Foutras 
+Date: Tue, 24 Mar 2015 10:09:33 +0200
+Subject: [PATCH] Pass VT number to xinit if XDG_VTNR is set
+
+---
+ scripts/startxfce4.in | 4 
+ 1 file changed, 4 insertions(+)
+
+diff --git a/scripts/startxfce4.in b/scripts/startxfce4.in
+index d0a74a9..bf3201b 100644
+--- a/scripts/startxfce4.in
 b/scripts/startxfce4.in
+@@ -92,6 +92,10 @@ if test "x$DISPLAY" = "x"
+ then
+   echo "$0: Starting X server"
+   prog=xinit
++
++  if test ! "x$XDG_VTNR" = "x"; then
++SERVERRC="vt$XDG_VTNR $SERVERRC"
++  fi
+ else
+   echo "$0: X server already running on display $DISPLAY"
+   prog=/bin/sh
+-- 
+2.3.4
+

Deleted: 0002-Make-verbose-logging-conditional-Bug-11698.patch
===
--- 0002-Make-verbose-logging-conditional-Bug-11698.patch   2018-12-30 
03:29:42 UTC (rev 342790)
+++ 

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

2018-12-29 Thread Evangelos Foutras via arch-commits
Date: Sunday, December 30, 2018 @ 03:29:42
  Author: foutrelis
Revision: 342790

upgpkg: xfce4-session 4.12.1-10

Follow-up workaround for FS#61177. Leaving DBUS_SESSION_BUS_ADDRESS unset
prevents Chromium from connecting to the user bus and decrypting cookies:

ERROR:bus.cc(396)] Failed to connect to the bus: Could not parse server
address: Unknown address type (examples of valid types are "tcp" and on
UNIX "unix")

Added:
  xfce4-session/trunk/0005-dbus-user-session.patch
Modified:
  xfce4-session/trunk/PKGBUILD
Deleted:
  xfce4-session/trunk/0005-dbus-launch.patch

--+
 0005-dbus-launch.patch   |   15 ---
 0005-dbus-user-session.patch |   18 ++
 PKGBUILD |   15 +--
 3 files changed, 27 insertions(+), 21 deletions(-)

Deleted: 0005-dbus-launch.patch
===
--- 0005-dbus-launch.patch  2018-12-29 23:09:57 UTC (rev 342789)
+++ 0005-dbus-launch.patch  2018-12-30 03:29:42 UTC (rev 342790)
@@ -1,15 +0,0 @@
-diff --git a/xfce4-session/main.c b/xfce4-session/main.c
-index 0c27a55..925069f 100644
 a/xfce4-session/main.c
-+++ b/xfce4-session/main.c
-@@ -243,8 +243,10 @@ main (int argc, char **argv)
-   XfsmShutdown *shutdown_helper;
-   gboolean  succeed = TRUE;
- 
-+#if 0
-   if (!xfsm_dbus_require_session (argc, argv))
- return EXIT_SUCCESS;
-+#endif
- 
-   xfce_textdomain (GETTEXT_PACKAGE, PACKAGE_LOCALE_DIR, "UTF-8");
- 

Added: 0005-dbus-user-session.patch
===
--- 0005-dbus-user-session.patch(rev 0)
+++ 0005-dbus-user-session.patch2018-12-30 03:29:42 UTC (rev 342790)
@@ -0,0 +1,18 @@
+diff -upr xfce4-session-4.12.1.orig/scripts/xinitrc.in.in 
xfce4-session-4.12.1/scripts/xinitrc.in.in
+--- xfce4-session-4.12.1.orig/scripts/xinitrc.in.in2018-12-30 
05:05:04.201829621 +0200
 xfce4-session-4.12.1/scripts/xinitrc.in.in 2018-12-30 05:08:45.200127486 
+0200
+@@ -95,6 +95,14 @@ if [ -d /etc/X11/xinit/xinitrc.d ]; then
+ unset f
+ fi
+ 
++# unless DBUS_SESSION_BUS_ADDRESS is set elsewhere
++if [ -z "$DBUS_SESSION_BUS_ADDRESS" ]; then
++# use the user session bus if available
++if [ -S "$XDG_RUNTIME_DIR/bus" -a -O "$XDG_RUNTIME_DIR/bus" ]; then
++export DBUS_SESSION_BUS_ADDRESS="unix:path=$XDG_RUNTIME_DIR/bus"
++fi
++fi
++
+ # run xfce4-session if installed
+ if which xfce4-session >/dev/null 2>&1; then
+ 

Modified: PKGBUILD
===
--- PKGBUILD2018-12-29 23:09:57 UTC (rev 342789)
+++ PKGBUILD2018-12-30 03:29:42 UTC (rev 342790)
@@ -3,7 +3,7 @@
 
 pkgname=xfce4-session
 pkgver=4.12.1
-pkgrel=9
+pkgrel=10
 pkgdesc="A session manager for Xfce"
 arch=('x86_64')
 url="http://www.xfce.org/;
@@ -22,8 +22,8 @@
 0001-Pass-VT-number-to-xinit-if-XDG_VTNR-is-set.patch
 0002-Make-verbose-logging-conditional-Bug-11698.patch
 0003-xfce4-session-source-system-xinitrc-scripts.patch
-0004-screenlockers.patch
-0005-dbus-launch.patch
+0004-screenlockers.patch
+0005-dbus-user-session.patch
 xfce-polkit-gnome-authentication-agent-1.desktop)
 sha256sums=('97d7f2a2d0af7f3623b68d1f04091e02913b28f9555dab8b0d26c8a1299d08fd'
 '7ea702a1d3391d36958cff57496ba2474592dd915cf7569a65501522c2410cf1'
@@ -30,7 +30,7 @@
 '6bbd714008f31198f9631cdfb3ed8aac1c780f00d15b81c32c00860ae37521a6'
 'a717a0ee6289c9ce06a8e18c6a7cb5a6d6f1769c05c456a6a84843df6a0111da'
 '1d4063889af073c3de221e0bbd3cacc11dfc95ee11f6e530c6e35f7714a6e295'
-'842258be04687cd0da898eb0d8a9629ec444e9151fede50b0c18e7f61e54'
+'cb9d9f2adf9748760fb24412b16d84b13ff29e2601d29f3a4ebb4eb7bcb27c24'
 '74c94c5f7893d714e04ec7d8b8520c978a5748757a0cdcf5128492f09f31b643')
 
 prepare() {
@@ -49,9 +49,12 @@
   # 
https://git.xfce.org/xfce/xfce4-session/commit/?id=495aac78058cd78e2d34505af204e72a1b4f19ac
   patch -Np1 -i ../0004-screenlockers.patch
 
-  # not not start dbus-session but fall back to socket
+  # The idea of having a magic fallback for when DBUS_SESSION_BUS_ADDRESS is
+  # empty is nice and all but all hell breaks lose (Xfce doesn't start and/or
+  # Chromium can't access its cookies). Magic is bad; just set the silly var!
+  # (It feels like this should be a script under /etc/X11/xinit/xinitrc.d/.)
   # https://bugs.archlinux.org/task/61177
-  patch -Np1 -i ../0005-dbus-launch.patch
+  patch -Np1 -i ../0005-dbus-user-session.patch
 }
 
 build() {


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

2018-12-29 Thread Eli Schwartz via arch-commits
Date: Sunday, December 30, 2018 @ 02:07:32
  Author: eschwartz
Revision: 418958

archrelease: copy trunk to community-x86_64

Added:
  hub/repos/community-x86_64/PKGBUILD
(from rev 418957, hub/trunk/PKGBUILD)
Deleted:
  hub/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-30 02:07:13 UTC (rev 418957)
+++ PKGBUILD2018-12-30 02:07:32 UTC (rev 418958)
@@ -1,50 +0,0 @@
-# Maintainer: Johannes Löthberg 
-# Contributor: Daniel Wallace 
-# Contributor: Alfredo Palhares 
-
-pkgname=hub
-pkgver=2.6.1
-pkgrel=1
-
-pkgdesc="cli interface for Github"
-url="https://hub.github.com;
-arch=('x86_64')
-license=('MIT')
-
-depends=('git')
-makedepends=('go-pie' 'ruby-ronn')
-
-source=("hub-$pkgver.tar.gz::https://github.com/github/hub/archive/v$pkgver.tar.gz;)
-sha256sums=('3a78f7fc8a024cc232463c664fecf0b49574f5205a49f2320886763c136ac000')
-
-prepare() {
-  mkdir -p src/github.com/github
-  cp -r hub-$pkgver src/github.com/github/hub
-
-  sed -i 's@.man-pages.stamp: bin/ronn@.man-pages.stamp:@;s@bin/ronn@ronn@' 
src/github.com/github/hub/Makefile
-}
-
-build() {
-  cd src/github.com/github/hub
-
-  GOPATH="$srcdir" make
-  make man-pages
-}
-
-# Fails with weird 'loadinternal' errors, needs more investigation.
-#check() {
-#  cd src/github.com/github/hub
-#
-#  GOPATH="$srcdir" make test
-#}
-
-package() {
-  cd src/github.com/github/hub
-
-  make PREFIX="$pkgdir"/usr install
-
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-  install -Dm644 etc/hub.bash_completion.sh 
"$pkgdir"/usr/share/bash-completion/completions/hub
-  install -Dm644 etc/hub.zsh_completion 
"$pkgdir"/usr/share/zsh/site-functions/_hub
-  install -Dm644 etc/hub.fish_completion 
"$pkgdir"/usr/share/fish/vendor_completions.d/hub.fish
-}

Copied: hub/repos/community-x86_64/PKGBUILD (from rev 418957, 
hub/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-30 02:07:32 UTC (rev 418958)
@@ -0,0 +1,50 @@
+# Maintainer: Johannes Löthberg 
+# Contributor: Daniel Wallace 
+# Contributor: Alfredo Palhares 
+
+pkgname=hub
+pkgver=2.7.0
+pkgrel=1
+
+pkgdesc="cli interface for Github"
+url="https://hub.github.com;
+arch=('x86_64')
+license=('MIT')
+
+depends=('git')
+makedepends=('go-pie' 'ruby-ronn')
+
+source=("hub-$pkgver.tar.gz::https://github.com/github/hub/archive/v$pkgver.tar.gz;)
+sha256sums=('58d131c32404c963b06bcc067bda14317bc22be26187026a91960aecda324bf4')
+
+prepare() {
+  mkdir -p src/github.com/github
+  cp -r hub-$pkgver src/github.com/github/hub
+
+  sed -i 's@.man-pages.stamp: bin/ronn@.man-pages.stamp:@;s@bin/ronn@ronn@' 
src/github.com/github/hub/Makefile
+}
+
+build() {
+  cd src/github.com/github/hub
+
+  GOPATH="$srcdir" make
+  make man-pages
+}
+
+# Fails with weird 'loadinternal' errors, needs more investigation.
+#check() {
+#  cd src/github.com/github/hub
+#
+#  GOPATH="$srcdir" make test
+#}
+
+package() {
+  cd src/github.com/github/hub
+
+  make PREFIX="$pkgdir"/usr install
+
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+  install -Dm644 etc/hub.bash_completion.sh 
"$pkgdir"/usr/share/bash-completion/completions/hub
+  install -Dm644 etc/hub.zsh_completion 
"$pkgdir"/usr/share/zsh/site-functions/_hub
+  install -Dm644 etc/hub.fish_completion 
"$pkgdir"/usr/share/fish/vendor_completions.d/hub.fish
+}


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

2018-12-29 Thread Eli Schwartz via arch-commits
Date: Sunday, December 30, 2018 @ 02:07:13
  Author: eschwartz
Revision: 418957

upgpkg: hub 2.7.0-1

upstream release

Modified:
  hub/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-30 01:36:24 UTC (rev 418956)
+++ PKGBUILD2018-12-30 02:07:13 UTC (rev 418957)
@@ -3,7 +3,7 @@
 # Contributor: Alfredo Palhares 
 
 pkgname=hub
-pkgver=2.6.1
+pkgver=2.7.0
 pkgrel=1
 
 pkgdesc="cli interface for Github"
@@ -15,7 +15,7 @@
 makedepends=('go-pie' 'ruby-ronn')
 
 
source=("hub-$pkgver.tar.gz::https://github.com/github/hub/archive/v$pkgver.tar.gz;)
-sha256sums=('3a78f7fc8a024cc232463c664fecf0b49574f5205a49f2320886763c136ac000')
+sha256sums=('58d131c32404c963b06bcc067bda14317bc22be26187026a91960aecda324bf4')
 
 prepare() {
   mkdir -p src/github.com/github


[arch-commits] Commit in openbve/trunk (PKGBUILD openbve.appdata.xml)

2018-12-29 Thread Balló György via arch-commits
Date: Sunday, December 30, 2018 @ 01:36:19
  Author: bgyorgy
Revision: 418955

upgpkg: openbve 1.5.3.11-2

Add AppStream metadata, add better icon

Added:
  openbve/trunk/openbve.appdata.xml
Modified:
  openbve/trunk/PKGBUILD

-+
 PKGBUILD|   17 ++---
 openbve.appdata.xml |   22 ++
 2 files changed, 32 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-30 01:19:16 UTC (rev 418954)
+++ PKGBUILD2018-12-30 01:36:19 UTC (rev 418955)
@@ -3,18 +3,20 @@
 pkgname=openbve
 _pkgname=OpenBVE
 pkgver=1.5.3.11
-pkgrel=1
+pkgrel=2
 pkgdesc="Free-as-in-freedom train simulator placed in the public domain"
 arch=('any')
 url="http://openbve-project.net/;
 license=('MIT' 'custom:public domain')
-depends=('libxi' 'mono' 'openal')
+depends=('hicolor-icon-theme' 'libxi' 'mono' 'openal')
 
source=($_pkgname-$pkgver.tar.gz::https://github.com/leezer3/$_pkgname/archive/$pkgver.tar.gz
 $pkgname.sh
-$pkgname.desktop)
+$pkgname.desktop
+$pkgname.appdata.xml)
 sha256sums=('ea98f13071a8ee379a7c5206096d4e317ec063f2cb62f3e858eb3de3d8656133'
 'cf0f2a28e65248f742d6bb80f3101e36f24097e699c4e5acdf3fd4dbb965d3c3'
-'8190945fa834ecdcf8a3f271264e5be2e288933ecde943060346e16537611c0f')
+'8190945fa834ecdcf8a3f271264e5be2e288933ecde943060346e16537611c0f'
+'1ae1d4bf4dbe0d4e012fafef090d98b4c67ba87bee8981af0b2de11015b57df2')
 
 build() {
   cd $_pkgname-$pkgver
@@ -37,9 +39,10 @@
   install -Dm755 ../$pkgname.sh "$pkgdir/usr/bin/$pkgname"
 
   # Desktop file and icon
-  install -Dm644 ../$pkgname.desktop 
$pkgdir/usr/share/applications/$pkgname.desktop
-  mkdir -p "$pkgdir/usr/share/pixmaps"
-  ln -s ../games/$pkgname/Data/Menu/logo.png 
"$pkgdir/usr/share/pixmaps/$pkgname.png"
+  install -Dm644 ../$pkgname.desktop 
"$pkgdir/usr/share/applications/$pkgname.desktop"
+  install -Dm644 ../$pkgname.appdata.xml 
"$pkgdir/usr/share/metainfo/$pkgname.appdata.xml"
+  install -Dm644 assets/Menu/logo.png 
"$pkgdir/usr/share/icons/hicolor/128x128/apps/$pkgname.png"
+  install -Dm644 graphics/logo_icon.svg 
"$pkgdir/usr/share/icons/hicolor/scalable/apps/$pkgname.svg"
 
   # License
   install -dm755 "$pkgdir/usr/share/licenses/$pkgname/"

Added: openbve.appdata.xml
===
--- openbve.appdata.xml (rev 0)
+++ openbve.appdata.xml 2018-12-30 01:36:19 UTC (rev 418955)
@@ -0,0 +1,22 @@
+
+
+  net.openbve-project.openbve
+  openbve.desktop
+  OpenBVE
+  Train/railway simulator compatible with 'BVE Trainsim' 
routes
+  CC0-1.0
+  CC0-1.0
+  
+OpenBVE is a railway train-driving simulator with an emphasis on in-cab 
driving, realistic physics, braking system and train safety system 
modelling.
+  
+  
+
+  https://openbve-project.net/images/driving_1.jpg
+
+
+  https://openbve-project.net/images/driving_2.jpg
+
+  
+  https://github.com/leezer3/OpenBVE/issues
+  https://openbve-project.net/
+


[arch-commits] Commit in openbve/repos/community-any (7 files)

2018-12-29 Thread Balló György via arch-commits
Date: Sunday, December 30, 2018 @ 01:36:24
  Author: bgyorgy
Revision: 418956

archrelease: copy trunk to community-any

Added:
  openbve/repos/community-any/PKGBUILD
(from rev 418955, openbve/trunk/PKGBUILD)
  openbve/repos/community-any/openbve.appdata.xml
(from rev 418955, openbve/trunk/openbve.appdata.xml)
  openbve/repos/community-any/openbve.desktop
(from rev 418955, openbve/trunk/openbve.desktop)
  openbve/repos/community-any/openbve.sh
(from rev 418955, openbve/trunk/openbve.sh)
Deleted:
  openbve/repos/community-any/PKGBUILD
  openbve/repos/community-any/openbve.desktop
  openbve/repos/community-any/openbve.sh

-+
 PKGBUILD|   99 +-
 openbve.appdata.xml |   22 +++
 openbve.desktop |   18 -
 openbve.sh  |4 +-
 4 files changed, 84 insertions(+), 59 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-30 01:36:19 UTC (rev 418955)
+++ PKGBUILD2018-12-30 01:36:24 UTC (rev 418956)
@@ -1,48 +0,0 @@
-# Maintainer: Balló György 
-
-pkgname=openbve
-_pkgname=OpenBVE
-pkgver=1.5.3.11
-pkgrel=1
-pkgdesc="Free-as-in-freedom train simulator placed in the public domain"
-arch=('any')
-url="http://openbve-project.net/;
-license=('MIT' 'custom:public domain')
-depends=('libxi' 'mono' 'openal')
-source=($_pkgname-$pkgver.tar.gz::https://github.com/leezer3/$_pkgname/archive/$pkgver.tar.gz
-$pkgname.sh
-$pkgname.desktop)
-sha256sums=('ea98f13071a8ee379a7c5206096d4e317ec063f2cb62f3e858eb3de3d8656133'
-'cf0f2a28e65248f742d6bb80f3101e36f24097e699c4e5acdf3fd4dbb965d3c3'
-'8190945fa834ecdcf8a3f271264e5be2e288933ecde943060346e16537611c0f')
-
-build() {
-  cd $_pkgname-$pkgver
-  xbuild /p:Configuration=Release OpenBVE.sln
-}
-
-package() {
-  cd $_pkgname-$pkgver
-
-  # Binaries
-  install -dm755 "$pkgdir/usr/lib/$pkgname/"
-  cp -r bin_release/* "$pkgdir/usr/lib/$pkgname/"
-
-  # Data
-  install -dm755 "$pkgdir/usr/share/games/$pkgname/"
-  mv "$pkgdir/usr/lib/$pkgname/Data" "$pkgdir/usr/share/games/$pkgname/"
-  ln -s ../../share/games/$pkgname/Data "$pkgdir/usr/lib/$pkgname/Data"
-
-  # Executable
-  install -Dm755 ../$pkgname.sh "$pkgdir/usr/bin/$pkgname"
-
-  # Desktop file and icon
-  install -Dm644 ../$pkgname.desktop 
$pkgdir/usr/share/applications/$pkgname.desktop
-  mkdir -p "$pkgdir/usr/share/pixmaps"
-  ln -s ../games/$pkgname/Data/Menu/logo.png 
"$pkgdir/usr/share/pixmaps/$pkgname.png"
-
-  # License
-  install -dm755 "$pkgdir/usr/share/licenses/$pkgname/"
-  install -m644 licenses/* Readme.md \
-"$pkgdir/usr/share/licenses/$pkgname/"
-}

Copied: openbve/repos/community-any/PKGBUILD (from rev 418955, 
openbve/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-30 01:36:24 UTC (rev 418956)
@@ -0,0 +1,51 @@
+# Maintainer: Balló György 
+
+pkgname=openbve
+_pkgname=OpenBVE
+pkgver=1.5.3.11
+pkgrel=2
+pkgdesc="Free-as-in-freedom train simulator placed in the public domain"
+arch=('any')
+url="http://openbve-project.net/;
+license=('MIT' 'custom:public domain')
+depends=('hicolor-icon-theme' 'libxi' 'mono' 'openal')
+source=($_pkgname-$pkgver.tar.gz::https://github.com/leezer3/$_pkgname/archive/$pkgver.tar.gz
+$pkgname.sh
+$pkgname.desktop
+$pkgname.appdata.xml)
+sha256sums=('ea98f13071a8ee379a7c5206096d4e317ec063f2cb62f3e858eb3de3d8656133'
+'cf0f2a28e65248f742d6bb80f3101e36f24097e699c4e5acdf3fd4dbb965d3c3'
+'8190945fa834ecdcf8a3f271264e5be2e288933ecde943060346e16537611c0f'
+'1ae1d4bf4dbe0d4e012fafef090d98b4c67ba87bee8981af0b2de11015b57df2')
+
+build() {
+  cd $_pkgname-$pkgver
+  xbuild /p:Configuration=Release OpenBVE.sln
+}
+
+package() {
+  cd $_pkgname-$pkgver
+
+  # Binaries
+  install -dm755 "$pkgdir/usr/lib/$pkgname/"
+  cp -r bin_release/* "$pkgdir/usr/lib/$pkgname/"
+
+  # Data
+  install -dm755 "$pkgdir/usr/share/games/$pkgname/"
+  mv "$pkgdir/usr/lib/$pkgname/Data" "$pkgdir/usr/share/games/$pkgname/"
+  ln -s ../../share/games/$pkgname/Data "$pkgdir/usr/lib/$pkgname/Data"
+
+  # Executable
+  install -Dm755 ../$pkgname.sh "$pkgdir/usr/bin/$pkgname"
+
+  # Desktop file and icon
+  install -Dm644 ../$pkgname.desktop 
"$pkgdir/usr/share/applications/$pkgname.desktop"
+  install -Dm644 ../$pkgname.appdata.xml 
"$pkgdir/usr/share/metainfo/$pkgname.appdata.xml"
+  install -Dm644 assets/Menu/logo.png 
"$pkgdir/usr/share/icons/hicolor/128x128/apps/$pkgname.png"
+  install -Dm644 graphics/logo_icon.svg 
"$pkgdir/usr/share/icons/hicolor/scalable/apps/$pkgname.svg"
+
+  # License
+  install -dm755 "$pkgdir/usr/share/licenses/$pkgname/"
+  install -m644 licenses/* Readme.md \
+"$pkgdir/usr/share/licenses/$pkgname/"
+}

Copied: openbve/repos/community-any/openbve.appdata.xml (from rev 418955, 

[arch-commits] Commit in simutrans/trunk (PKGBUILD simutrans.appdata.xml)

2018-12-29 Thread Balló György via arch-commits
Date: Sunday, December 30, 2018 @ 01:18:55
  Author: bgyorgy
Revision: 418953

upgpkg: simutrans 120.4.1-2

Add AppStream metadata, add better icon

Added:
  simutrans/trunk/simutrans.appdata.xml
Modified:
  simutrans/trunk/PKGBUILD

---+
 PKGBUILD  |   18 +++---
 simutrans.appdata.xml |   19 +++
 2 files changed, 30 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-30 00:12:40 UTC (rev 418952)
+++ PKGBUILD2018-12-30 01:18:55 UTC (rev 418953)
@@ -7,28 +7,32 @@
 pkgname=simutrans
 pkgver=120.4.1
 _pkgver=120-4-1
-pkgrel=1
+pkgrel=2
 pkgdesc="Transportation simulation game"
 arch=('x86_64')
 url="https://www.simutrans.com/;
 license=('custom:Artistic')
-depends=('gcc-libs' 'zlib' 'sdl_mixer' 'bzip2' 'simutrans-pak64')
-makedepends=('imagemagick' 'dos2unix')
+depends=('gcc-libs' 'zlib' 'sdl_mixer' 'bzip2' 'simutrans-pak64' 
'hicolor-icon-theme')
+makedepends=('dos2unix')
 optdepends=('timidity++: play MIDI music')
 source=(https://downloads.sourceforge.net/$pkgname/$pkgname-src-$_pkgver.zip
+
https://raw.githubusercontent.com/aburch/simutrans/8593f5b1248d03f907a149f7abc41ae6512009e1/simutrans.svg
 settings-folder.patch
 path-for-game-data.patch
 config.patch
 Makefile
 common.mk
-simutrans.desktop)
+simutrans.desktop
+simutrans.appdata.xml)
 sha256sums=('2cee0d067b3b72fa3a8b4ff31ad2bf5fc77521e7ba8cf9aa10e07e56b7dc877b'
+'c0c2dd5da146f64901b00c6ee67e0818a166b983a81cee7897c4843aa9f21c81'
 'cbe5d7c7be96e6e7262c1e3b1c16155f5c179609f081e3ee050bbfc277845f71'
 '1a0fc75fe1422404e424c91f5a23301234b2997cb727b4985c98ac1af6a4582a'
 '24bf2b611706c42fd52dc00d61fa2e28f54a614f17e43bc463817406e63eba3a'
 '1107a873273bd0a02dc7877137816d2ca4fbfd403a3443fc244d31c8a611b81b'
 'd17d3b91a989ddca1735875e8d01c4c39ef318a3490d3f24a05b0713fcb69983'
-'99545152f5e739b7eb028152383fa10d3e3d303c99167e1c6e5a6bd7dcd00fa3')
+'99545152f5e739b7eb028152383fa10d3e3d303c99167e1c6e5a6bd7dcd00fa3'
+'f3d2416de0f725d15b18482c20231228791e65ceeeb7305115a8ea6a2e591dd6')
 
 prepare() {
   # Some files are distributed in DOS format
@@ -44,7 +48,6 @@
 }
 
 build() {
-  convert simutrans.ico +set date:create +set date:modify -alpha on 
simutrans.png
   make
 }
 
@@ -57,8 +60,9 @@
   cp -r $pkgname "$pkgdir/usr/share/games/"
 
   #desktop file and icon
-  install -Dm644 simutrans.png "$pkgdir/usr/share/pixmaps/simutrans.png"
+  install -Dm644 simutrans.svg 
"$pkgdir/usr/share/icons/hicolor/scalable/apps/simutrans.svg"
   install -Dm644 simutrans.desktop 
"$pkgdir/usr/share/applications/simutrans.desktop"
+  install -Dm644 simutrans.appdata.xml 
"$pkgdir/usr/share/metainfo/simutrans.appdata.xml"
 
   #license
   install -Dm644 simutrans/license.txt 
"$pkgdir/usr/share/licenses/simutrans/license.txt"

Added: simutrans.appdata.xml
===
--- simutrans.appdata.xml   (rev 0)
+++ simutrans.appdata.xml   2018-12-30 01:18:55 UTC (rev 418953)
@@ -0,0 +1,19 @@
+
+
+  com.simutrans.simutrans
+  simutrans.desktop
+  Simutrans
+  Transportation simulator
+  CC0-1.0
+  Artistic-1.0
+  
+Simutrans is a free transportation simulator: the player operates a 
transportation company and has to transport goods and passengers between 
factories and different cities.
+  
+  
+
+  
https://screenshots.debian.net/screenshots/000/001/205/large.png
+
+  
+  https://forum.simutrans.com/index.php?board=8.0
+  https://www.simutrans.com/
+


[arch-commits] Commit in simutrans/repos/community-x86_64 (15 files)

2018-12-29 Thread Balló György via arch-commits
Date: Sunday, December 30, 2018 @ 01:19:16
  Author: bgyorgy
Revision: 418954

archrelease: copy trunk to community-x86_64

Added:
  simutrans/repos/community-x86_64/Makefile
(from rev 418953, simutrans/trunk/Makefile)
  simutrans/repos/community-x86_64/PKGBUILD
(from rev 418953, simutrans/trunk/PKGBUILD)
  simutrans/repos/community-x86_64/common.mk
(from rev 418953, simutrans/trunk/common.mk)
  simutrans/repos/community-x86_64/config.patch
(from rev 418953, simutrans/trunk/config.patch)
  simutrans/repos/community-x86_64/path-for-game-data.patch
(from rev 418953, simutrans/trunk/path-for-game-data.patch)
  simutrans/repos/community-x86_64/settings-folder.patch
(from rev 418953, simutrans/trunk/settings-folder.patch)
  simutrans/repos/community-x86_64/simutrans.appdata.xml
(from rev 418953, simutrans/trunk/simutrans.appdata.xml)
  simutrans/repos/community-x86_64/simutrans.desktop
(from rev 418953, simutrans/trunk/simutrans.desktop)
Deleted:
  simutrans/repos/community-x86_64/Makefile
  simutrans/repos/community-x86_64/PKGBUILD
  simutrans/repos/community-x86_64/common.mk
  simutrans/repos/community-x86_64/config.patch
  simutrans/repos/community-x86_64/path-for-game-data.patch
  simutrans/repos/community-x86_64/settings-folder.patch
  simutrans/repos/community-x86_64/simutrans.desktop

--+
 Makefile | 1440 ++---
 PKGBUILD |  134 ++--
 common.mk|  112 +--
 config.patch |   66 +-
 path-for-game-data.patch |   36 -
 settings-folder.patch|   24 
 simutrans.appdata.xml|   19 
 simutrans.desktop|   18 
 8 files changed, 936 insertions(+), 913 deletions(-)

Deleted: Makefile
===
--- Makefile2018-12-30 01:18:55 UTC (rev 418953)
+++ Makefile2018-12-30 01:19:16 UTC (rev 418954)
@@ -1,720 +0,0 @@
-CFG ?= default
--include config.$(CFG)
-
-HOSTCC?=$(CC)
-HOSTCXX?=$(CXX)
-
-PROFILE ?= 0
-STATIC ?= 0
-AV_FOUNDATION ?= 0
-
-ALLEGRO_CONFIG ?= allegro-config
-SDL_CONFIG ?= sdl-config
-SDL2_CONFIG ?= sdl2-config
-FREETYPE_CONFIG ?= freetype-config
-
-BACKENDS  = allegro gdi opengl sdl sdl2 mixer_sdl mixer_sdl2 posix
-COLOUR_DEPTHS = 0 16
-OSTYPES   = amiga beos freebsd haiku linux mingw mac openbsd
-
-ifeq ($(findstring $(BACKEND), $(BACKENDS)),)
-  $(error Unkown BACKEND "$(BACKEND)", must be one of "$(BACKENDS)")
-endif
-
-ifeq ($(findstring $(COLOUR_DEPTH), $(COLOUR_DEPTHS)),)
-  $(error Unkown COLOUR_DEPTH "$(COLOUR_DEPTH)", must be one of 
"$(COLOUR_DEPTHS)")
-endif
-
-ifeq ($(findstring $(OSTYPE), $(OSTYPES)),)
-  $(error Unkown OSTYPE "$(OSTYPE)", must be one of "$(OSTYPES)")
-endif
-
-ifeq ($(OSTYPE),amiga)
-  STD_LIBS ?= -lunix -lSDL_mixer -lsmpeg -lvorbisfile -lvorbis -logg
-  CFLAGS += -mcrt=newlib -DSIM_BIG_ENDIAN -gstabs+
-  LDFLAGS += -Bstatic -non_shared
-else
-  # BeOS (obsolete)
-  ifeq ($(OSTYPE),beos)
-LIBS += -lnet
-  else
-ifeq ($(OSTYPE),mingw)
-  CFLAGS  += -DPNG_STATIC -DZLIB_STATIC
-  ifeq ($(shell expr $(STATIC) \>= 1), 1)
-CFLAGS  += -static
-LDFLAGS += -static-libgcc -static-libstdc++ -static
-  endif
-  LDFLAGS += -pthread -Wl,--large-address-aware
-  SOURCES += simsys_w32_png.cc
-  CFLAGS  += -DNOMINMAX -DWIN32_LEAN_AND_MEAN -DWINVER=0x0501 
-D_WIN32_IE=0x0500
-  LIBS+= -lmingw32 -lgdi32 -lwinmm -lws2_32 -limm32
-  # Disable the console on Windows unless WIN32_CONSOLE is set or graphics 
are disabled
-  ifdef WIN32_CONSOLE
-ifeq ($(shell expr $(WIN32_CONSOLE) \>= 1), 1)
-  LDFLAGS += -mconsole
-endif
-  else
-ifeq ($(BACKEND),posix)
-  LDFLAGS += -mconsole
-else
-  LDFLAGS += -mwindows
-endif
-  endif
-else
-  # Haiku (needs to activate the GCC 4x)
-  ifeq ($(OSTYPE),haiku)
-LIBS += -lnetwork -lbe
-  endif
-endif
-  endif
-endif
-
-ifeq ($(OSTYPE),mingw)
-  SOURCES += clipboard_w32.cc
-else
-  ifeq ($(BACKEND),SDL2)
-SOURCES += clipboard_s.cc
-   else
-SOURCES += clipboard_internal.cc
-   endif
-endif
-
-LIBS += -lbz2 -lz
-
-ifdef OPTIMISE
-  ifeq ($(shell expr $(OPTIMISE) \>= 1), 1)
-CFLAGS += -O3
-ifeq ($(findstring $(OSTYPE), amiga),)
-  ifneq ($(findstring $(CXX), clang),)
-CFLAGS += -minline-all-stringops
-  endif
-endif
-  endif
-else
-  CFLAGS += -O
-endif
-
-ifdef DEBUG
-  ifndef MSG_LEVEL
-MSG_LEVEL = 3
-  endif
-  ifeq ($(shell expr $(DEBUG) \>= 1), 1)
-CFLAGS += -g -DDEBUG
-  endif
-  ifeq ($(shell expr $(DEBUG) \>= 2), 1)
-ifeq ($(shell expr $(PROFILE) \>= 2), 1)
-  CFLAGS += -fno-inline
-endif
-  endif
-  ifeq ($(shell expr $(DEBUG) \>= 3), 1)
-ifeq ($(shell expr $(PROFILE) \>= 2), 1)
-  CFLAGS += -O0
-endif
-  endif
-else
-  CFLAGS += -DNDEBUG
-endif
-
-ifdef MSG_LEVEL
-  CFLAGS += 

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

2018-12-29 Thread Balló György via arch-commits
Date: Sunday, December 30, 2018 @ 00:12:30
  Author: bgyorgy
Revision: 418951

upgpkg: bt747 2.1.3-5

Add AppStream metadata

Modified:
  bt747/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-30 00:10:53 UTC (rev 418950)
+++ PKGBUILD2018-12-30 00:12:30 UTC (rev 418951)
@@ -3,7 +3,7 @@
 pkgname=bt747
 _pkgname=BT747
 pkgver=2.1.3
-pkgrel=4
+pkgrel=5
 pkgdesc="The swiss army knife for MTK GPS dataloggers"
 arch=('any')
 url="https://www.bt747.org/;


[arch-commits] Commit in bt747/repos/community-any (6 files)

2018-12-29 Thread Balló György via arch-commits
Date: Sunday, December 30, 2018 @ 00:12:40
  Author: bgyorgy
Revision: 418952

archrelease: copy trunk to community-any

Added:
  bt747/repos/community-any/PKGBUILD
(from rev 418951, bt747/trunk/PKGBUILD)
  bt747/repos/community-any/bt747.appdata.xml
(from rev 418951, bt747/trunk/bt747.appdata.xml)
  bt747/repos/community-any/bt747.desktop
(from rev 418951, bt747/trunk/bt747.desktop)
Deleted:
  bt747/repos/community-any/PKGBUILD
  bt747/repos/community-any/bt747.appdata.xml
  bt747/repos/community-any/bt747.desktop

---+
 PKGBUILD  |   92 ++--
 bt747.appdata.xml |   38 ++---
 bt747.desktop |   26 +++---
 3 files changed, 78 insertions(+), 78 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-30 00:12:30 UTC (rev 418951)
+++ PKGBUILD2018-12-30 00:12:40 UTC (rev 418952)
@@ -1,46 +0,0 @@
-# Maintainer: Balló György 
-
-pkgname=bt747
-_pkgname=BT747
-pkgver=2.1.3
-pkgrel=4
-pkgdesc="The swiss army knife for MTK GPS dataloggers"
-arch=('any')
-url="https://www.bt747.org/;
-license=('GPL')
-depends=('hicolor-icon-theme' 'java-rxtx')
-makedepends=('imagemagick')
-source=(https://downloads.sourceforge.net/$pkgname/${_pkgname}_${pkgver}_full.zip
-https://www.bt747.org/icon/${pkgname}_128x128.gif
-$pkgname.desktop
-$pkgname.appdata.xml)
-sha256sums=('b70bfb5a040e7ec687105e4092bc66f882dfa69fbbdd7971a5e9c649068ec615'
-'6e2aa20d9fcdf44b8ac779f0a12a87480cd6f3f1b47127b250bac978c1d42149'
-'8e9b9528e2bf41627fb226ed1e4af31da70e734047fd33d0586fb8000cdcdb62'
-'6906e3c67d892859a361a148e4f90411214bea31f7b53695f6832d0dc6f44bb8')
-
-prepare() {
-  sed -i 's|^ROOT_DIR=.*|ROOT_DIR=/usr/share/java/bt747|
-  s|"$JAVA" -jar "${ROOT_DIR}/dist/BT747_j2se.jar" arch|uname -m|
-  s|amd64|x86_64|
-  s|/usr/share/java/RXTXcomm.jar|/usr/share/java/rxtx/RXTXcomm.jar|
-  s|bt747.j2se_view.BT747Main $\* &|-Dbt747_settings="`echo 
~`/.config/bt747/bt747settings.pdb" bt747.j2se_view.BT747Main $\*|' 
./run_j2se.sh
-
-  convert +set date:create +set date:modify "${pkgname}_128x128.gif" 
"${pkgname}_128x128.png"
-}
-
-package() {
-  _installdir="$pkgdir"/usr/share/java/$pkgname
-  install -D -m644 lib/jchart2d-3.1.0.jar "$_installdir"/lib/jchart2d-3.1.0.jar
-  install -D -m644 lib/jopt-simple-2.4.1.jar 
"$_installdir"/lib/jopt-simple-2.4.1.jar
-  install -D -m644 lib/jcalendar-1.3.2.jar 
"$_installdir"/lib/jcalendar-1.3.2.jar
-  install -D -m644 lib/swing-layout-1.0.3.jar 
"$_installdir"/lib/swing-layout-1.0.3.jar
-  install -D -m644 lib/swingx.jar "$_installdir"/lib/swingx.jar
-  install -D -m644 lib/swingx-ws.jar "$_installdir"/lib/swingx-ws.jar
-  install -D -m644 dist/libBT747.jar "$_installdir"/dist/libBT747.jar
-  install -D -m644 dist/BT747_j2se.jar "$_installdir"/dist/BT747_j2se.jar
-  install -D -m755 ./run_j2se.sh "$pkgdir"/usr/bin/$pkgname
-  install -D -m644 $pkgname.desktop 
"$pkgdir"/usr/share/applications/$pkgname.desktop
-  install -D -m644 $pkgname.appdata.xml 
"$pkgdir"/usr/share/metainfo/$pkgname.appdata.xml
-  install -D -m644 ${pkgname}_128x128.png 
"$pkgdir"/usr/share/icons/hicolor/128x128/apps/$pkgname.png
-}

Copied: bt747/repos/community-any/PKGBUILD (from rev 418951, 
bt747/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-30 00:12:40 UTC (rev 418952)
@@ -0,0 +1,46 @@
+# Maintainer: Balló György 
+
+pkgname=bt747
+_pkgname=BT747
+pkgver=2.1.3
+pkgrel=5
+pkgdesc="The swiss army knife for MTK GPS dataloggers"
+arch=('any')
+url="https://www.bt747.org/;
+license=('GPL')
+depends=('hicolor-icon-theme' 'java-rxtx')
+makedepends=('imagemagick')
+source=(https://downloads.sourceforge.net/$pkgname/${_pkgname}_${pkgver}_full.zip
+https://www.bt747.org/icon/${pkgname}_128x128.gif
+$pkgname.desktop
+$pkgname.appdata.xml)
+sha256sums=('b70bfb5a040e7ec687105e4092bc66f882dfa69fbbdd7971a5e9c649068ec615'
+'6e2aa20d9fcdf44b8ac779f0a12a87480cd6f3f1b47127b250bac978c1d42149'
+'8e9b9528e2bf41627fb226ed1e4af31da70e734047fd33d0586fb8000cdcdb62'
+'6906e3c67d892859a361a148e4f90411214bea31f7b53695f6832d0dc6f44bb8')
+
+prepare() {
+  sed -i 's|^ROOT_DIR=.*|ROOT_DIR=/usr/share/java/bt747|
+  s|"$JAVA" -jar "${ROOT_DIR}/dist/BT747_j2se.jar" arch|uname -m|
+  s|amd64|x86_64|
+  s|/usr/share/java/RXTXcomm.jar|/usr/share/java/rxtx/RXTXcomm.jar|
+  s|bt747.j2se_view.BT747Main $\* &|-Dbt747_settings="`echo 
~`/.config/bt747/bt747settings.pdb" bt747.j2se_view.BT747Main $\*|' 
./run_j2se.sh
+
+  convert +set date:create +set date:modify "${pkgname}_128x128.gif" 
"${pkgname}_128x128.png"
+}
+
+package() {
+  _installdir="$pkgdir"/usr/share/java/$pkgname
+  install -D -m644 

[arch-commits] Commit in bt747/trunk (PKGBUILD bt747.appdata.xml bt747.desktop)

2018-12-29 Thread Balló György via arch-commits
Date: Sunday, December 30, 2018 @ 00:10:47
  Author: bgyorgy
Revision: 418949

upgpkg: bt747 2.1.3-4

Add AppStream metadata

Added:
  bt747/trunk/bt747.appdata.xml
Modified:
  bt747/trunk/PKGBUILD
  bt747/trunk/bt747.desktop

---+
 PKGBUILD  |   13 +++--
 bt747.appdata.xml |   19 +++
 bt747.desktop |2 +-
 3 files changed, 27 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-29 23:53:44 UTC (rev 418948)
+++ PKGBUILD2018-12-30 00:10:47 UTC (rev 418949)
@@ -8,14 +8,16 @@
 arch=('any')
 url="https://www.bt747.org/;
 license=('GPL')
-depends=('java-rxtx')
+depends=('hicolor-icon-theme' 'java-rxtx')
 makedepends=('imagemagick')
 
source=(https://downloads.sourceforge.net/$pkgname/${_pkgname}_${pkgver}_full.zip
 https://www.bt747.org/icon/${pkgname}_128x128.gif
-$pkgname.desktop)
+$pkgname.desktop
+$pkgname.appdata.xml)
 sha256sums=('b70bfb5a040e7ec687105e4092bc66f882dfa69fbbdd7971a5e9c649068ec615'
 '6e2aa20d9fcdf44b8ac779f0a12a87480cd6f3f1b47127b250bac978c1d42149'
-'7ab8f2ae7a1cdc6e4aec353b5b2b7601d1bf6c7df99c942a3b98c1bc2437474f')
+'8e9b9528e2bf41627fb226ed1e4af31da70e734047fd33d0586fb8000cdcdb62'
+'6906e3c67d892859a361a148e4f90411214bea31f7b53695f6832d0dc6f44bb8')
 
 prepare() {
   sed -i 's|^ROOT_DIR=.*|ROOT_DIR=/usr/share/java/bt747|
@@ -23,9 +25,7 @@
   s|amd64|x86_64|
   s|/usr/share/java/RXTXcomm.jar|/usr/share/java/rxtx/RXTXcomm.jar|
   s|bt747.j2se_view.BT747Main $\* &|-Dbt747_settings="`echo 
~`/.config/bt747/bt747settings.pdb" bt747.j2se_view.BT747Main $\*|' 
./run_j2se.sh
-}
 
-build() {
   convert +set date:create +set date:modify "${pkgname}_128x128.gif" 
"${pkgname}_128x128.png"
 }
 
@@ -41,5 +41,6 @@
   install -D -m644 dist/BT747_j2se.jar "$_installdir"/dist/BT747_j2se.jar
   install -D -m755 ./run_j2se.sh "$pkgdir"/usr/bin/$pkgname
   install -D -m644 $pkgname.desktop 
"$pkgdir"/usr/share/applications/$pkgname.desktop
-  install -D -m644 ${pkgname}_128x128.png 
"$pkgdir"/usr/share/pixmaps/$pkgname.png
+  install -D -m644 $pkgname.appdata.xml 
"$pkgdir"/usr/share/metainfo/$pkgname.appdata.xml
+  install -D -m644 ${pkgname}_128x128.png 
"$pkgdir"/usr/share/icons/hicolor/128x128/apps/$pkgname.png
 }

Added: bt747.appdata.xml
===
--- bt747.appdata.xml   (rev 0)
+++ bt747.appdata.xml   2018-12-30 00:10:47 UTC (rev 418949)
@@ -0,0 +1,19 @@
+
+
+  org.bt747.bt747
+  bt747.desktop
+  BT747
+  The swiss army knife for MTK loggers
+  CC0-1.0
+  GPL-3.0
+  
+BT747 is a software for GPS data logger devices. Compatible with most 
MTK GPS Chipset based loggers.
+  
+  
+
+  
https://www.bt747.org/files/images/bt747_linux_log.preview.png
+
+  
+  https://sourceforge.net/p/bt747/bugs/
+  https://www.bt747.org/
+

Modified: bt747.desktop
===
--- bt747.desktop   2018-12-29 23:53:44 UTC (rev 418948)
+++ bt747.desktop   2018-12-30 00:10:47 UTC (rev 418949)
@@ -10,4 +10,4 @@
 Comment[hu]=A svájcibicska MTK rögzítőkhöz
 Exec=bt747
 Icon=bt747
-Categories=Java;Utility;Map;
+Categories=Java;Utility;Maps;


[arch-commits] Commit in bt747/repos/community-any (5 files)

2018-12-29 Thread Balló György via arch-commits
Date: Sunday, December 30, 2018 @ 00:10:53
  Author: bgyorgy
Revision: 418950

archrelease: copy trunk to community-any

Added:
  bt747/repos/community-any/PKGBUILD
(from rev 418949, bt747/trunk/PKGBUILD)
  bt747/repos/community-any/bt747.appdata.xml
(from rev 418949, bt747/trunk/bt747.appdata.xml)
  bt747/repos/community-any/bt747.desktop
(from rev 418949, bt747/trunk/bt747.desktop)
Deleted:
  bt747/repos/community-any/PKGBUILD
  bt747/repos/community-any/bt747.desktop

---+
 PKGBUILD  |   91 ++--
 bt747.appdata.xml |   19 ++
 bt747.desktop |   26 +++---
 3 files changed, 78 insertions(+), 58 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-30 00:10:47 UTC (rev 418949)
+++ PKGBUILD2018-12-30 00:10:53 UTC (rev 418950)
@@ -1,45 +0,0 @@
-# Maintainer: Balló György 
-
-pkgname=bt747
-_pkgname=BT747
-pkgver=2.1.3
-pkgrel=4
-pkgdesc="The swiss army knife for MTK GPS dataloggers"
-arch=('any')
-url="https://www.bt747.org/;
-license=('GPL')
-depends=('java-rxtx')
-makedepends=('imagemagick')
-source=(https://downloads.sourceforge.net/$pkgname/${_pkgname}_${pkgver}_full.zip
-https://www.bt747.org/icon/${pkgname}_128x128.gif
-$pkgname.desktop)
-sha256sums=('b70bfb5a040e7ec687105e4092bc66f882dfa69fbbdd7971a5e9c649068ec615'
-'6e2aa20d9fcdf44b8ac779f0a12a87480cd6f3f1b47127b250bac978c1d42149'
-'7ab8f2ae7a1cdc6e4aec353b5b2b7601d1bf6c7df99c942a3b98c1bc2437474f')
-
-prepare() {
-  sed -i 's|^ROOT_DIR=.*|ROOT_DIR=/usr/share/java/bt747|
-  s|"$JAVA" -jar "${ROOT_DIR}/dist/BT747_j2se.jar" arch|uname -m|
-  s|amd64|x86_64|
-  s|/usr/share/java/RXTXcomm.jar|/usr/share/java/rxtx/RXTXcomm.jar|
-  s|bt747.j2se_view.BT747Main $\* &|-Dbt747_settings="`echo 
~`/.config/bt747/bt747settings.pdb" bt747.j2se_view.BT747Main $\*|' 
./run_j2se.sh
-}
-
-build() {
-  convert +set date:create +set date:modify "${pkgname}_128x128.gif" 
"${pkgname}_128x128.png"
-}
-
-package() {
-  _installdir="$pkgdir"/usr/share/java/$pkgname
-  install -D -m644 lib/jchart2d-3.1.0.jar "$_installdir"/lib/jchart2d-3.1.0.jar
-  install -D -m644 lib/jopt-simple-2.4.1.jar 
"$_installdir"/lib/jopt-simple-2.4.1.jar
-  install -D -m644 lib/jcalendar-1.3.2.jar 
"$_installdir"/lib/jcalendar-1.3.2.jar
-  install -D -m644 lib/swing-layout-1.0.3.jar 
"$_installdir"/lib/swing-layout-1.0.3.jar
-  install -D -m644 lib/swingx.jar "$_installdir"/lib/swingx.jar
-  install -D -m644 lib/swingx-ws.jar "$_installdir"/lib/swingx-ws.jar
-  install -D -m644 dist/libBT747.jar "$_installdir"/dist/libBT747.jar
-  install -D -m644 dist/BT747_j2se.jar "$_installdir"/dist/BT747_j2se.jar
-  install -D -m755 ./run_j2se.sh "$pkgdir"/usr/bin/$pkgname
-  install -D -m644 $pkgname.desktop 
"$pkgdir"/usr/share/applications/$pkgname.desktop
-  install -D -m644 ${pkgname}_128x128.png 
"$pkgdir"/usr/share/pixmaps/$pkgname.png
-}

Copied: bt747/repos/community-any/PKGBUILD (from rev 418949, 
bt747/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-30 00:10:53 UTC (rev 418950)
@@ -0,0 +1,46 @@
+# Maintainer: Balló György 
+
+pkgname=bt747
+_pkgname=BT747
+pkgver=2.1.3
+pkgrel=4
+pkgdesc="The swiss army knife for MTK GPS dataloggers"
+arch=('any')
+url="https://www.bt747.org/;
+license=('GPL')
+depends=('hicolor-icon-theme' 'java-rxtx')
+makedepends=('imagemagick')
+source=(https://downloads.sourceforge.net/$pkgname/${_pkgname}_${pkgver}_full.zip
+https://www.bt747.org/icon/${pkgname}_128x128.gif
+$pkgname.desktop
+$pkgname.appdata.xml)
+sha256sums=('b70bfb5a040e7ec687105e4092bc66f882dfa69fbbdd7971a5e9c649068ec615'
+'6e2aa20d9fcdf44b8ac779f0a12a87480cd6f3f1b47127b250bac978c1d42149'
+'8e9b9528e2bf41627fb226ed1e4af31da70e734047fd33d0586fb8000cdcdb62'
+'6906e3c67d892859a361a148e4f90411214bea31f7b53695f6832d0dc6f44bb8')
+
+prepare() {
+  sed -i 's|^ROOT_DIR=.*|ROOT_DIR=/usr/share/java/bt747|
+  s|"$JAVA" -jar "${ROOT_DIR}/dist/BT747_j2se.jar" arch|uname -m|
+  s|amd64|x86_64|
+  s|/usr/share/java/RXTXcomm.jar|/usr/share/java/rxtx/RXTXcomm.jar|
+  s|bt747.j2se_view.BT747Main $\* &|-Dbt747_settings="`echo 
~`/.config/bt747/bt747settings.pdb" bt747.j2se_view.BT747Main $\*|' 
./run_j2se.sh
+
+  convert +set date:create +set date:modify "${pkgname}_128x128.gif" 
"${pkgname}_128x128.png"
+}
+
+package() {
+  _installdir="$pkgdir"/usr/share/java/$pkgname
+  install -D -m644 lib/jchart2d-3.1.0.jar "$_installdir"/lib/jchart2d-3.1.0.jar
+  install -D -m644 lib/jopt-simple-2.4.1.jar 
"$_installdir"/lib/jopt-simple-2.4.1.jar
+  install -D -m644 lib/jcalendar-1.3.2.jar 
"$_installdir"/lib/jcalendar-1.3.2.jar
+  install -D -m644 lib/swing-layout-1.0.3.jar 

[arch-commits] Commit in gpsprune/trunk (PKGBUILD gpsprune.appdata.xml)

2018-12-29 Thread Balló György via arch-commits
Date: Saturday, December 29, 2018 @ 23:53:40
  Author: bgyorgy
Revision: 418947

upgpkg: gpsprune 19.1-2

Add AppStream metadata

Added:
  gpsprune/trunk/gpsprune.appdata.xml
Modified:
  gpsprune/trunk/PKGBUILD

--+
 PKGBUILD |   18 +-
 gpsprune.appdata.xml |   27 +++
 2 files changed, 40 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-29 23:45:10 UTC (rev 418946)
+++ PKGBUILD2018-12-29 23:53:40 UTC (rev 418947)
@@ -3,12 +3,13 @@
 
 pkgname=gpsprune
 pkgver=19.1
-pkgrel=1
+pkgrel=2
 pkgdesc="View, edit and convert coordinate data from GPS systems"
 arch=('any')
 url="https://activityworkshop.net/software/gpsprune/;
 license=('GPL')
-depends=('desktop-file-utils' 'java-runtime')
+depends=('desktop-file-utils' 'hicolor-icon-theme' 'java-runtime')
+makedepends=('imagemagick')
 optdepends=('gnuplot: draw charts'
 'gpsbabel: load data directly from GPS receivers'
 'perl-image-exiftool: save coordinates into JPEG files')
@@ -15,16 +16,23 @@
 source=("https://activityworkshop.net/software/$pkgname/${pkgname}_$pkgver.jar;
 "https://activityworkshop.net/software/gpsprune/prunelogo.png;
 "$pkgname.sh"
-"$pkgname.desktop")
+"$pkgname.desktop"
+"$pkgname.appdata.xml")
 noextract=("${pkgname}_$pkgver.jar")
 sha256sums=('fe0b387a15cbaca1bbb15e2caa6b67fb465516f62354560593bfe9203e183cb7'
 '9d08bebe643266d2be126597a6841b0364ab07b2d44fdde8c7ad2ec59088523c'
 'cd8b8f8fc54df03e7435e4849d734e7d9ef5291d8f75c6abab0bfe809fe6abd9'
-'744f83c1c6d76c3d339b41450ddc79a7c15fbaf6d637741fb2c09529a65a0311')
+'744f83c1c6d76c3d339b41450ddc79a7c15fbaf6d637741fb2c09529a65a0311'
+'bba63de51deff95f3453bdacd8e34126c7cbbd33658fadad0b2c51b19855fdb9')
 
+prepare() {
+  convert prunelogo.png +set date:create +set date:modify -gravity center 
-extent 96x96 $pkgname.png
+}
+
 package() {
   install -Dm644 ${pkgname}_$pkgver.jar 
"$pkgdir/usr/share/java/$pkgname/$pkgname.jar"
   install -Dm755 $pkgname.sh "$pkgdir/usr/bin/$pkgname"
   install -Dm644 $pkgname.desktop 
"$pkgdir/usr/share/applications/$pkgname.desktop"
-  install -Dm644 prunelogo.png "$pkgdir/usr/share/pixmaps/$pkgname.png"
+  install -Dm644 $pkgname.appdata.xml 
"$pkgdir/usr/share/metainfo/$pkgname.appdata.xml"
+  install -Dm644 $pkgname.png 
"$pkgdir/usr/share/icons/hicolor/96x96/apps/$pkgname.png"
 }

Added: gpsprune.appdata.xml
===
--- gpsprune.appdata.xml(rev 0)
+++ gpsprune.appdata.xml2018-12-29 23:53:40 UTC (rev 418947)
@@ -0,0 +1,27 @@
+
+
+  net.activityworkshop.gpsprune
+  gpsprune.desktop
+  GpsPrune
+  Visualize, edit and prune GPS tracks
+  CC0-1.0
+  GPL-2.0
+  
+GpsPrune is an application for viewing, editing and converting 
coordinate data from GPS systems. Basically it's a tool to let you play with 
your GPS data after you get home from your trip.
+It can load data from arbitrary text-based formats (for example, any 
tab-separated or comma-separated file) or Xml, or directly from a GPS receiver. 
It can display the data (as map view using openstreetmap images and as altitude 
profile), edit this data (for example delete points and ranges, sort waypoints, 
compress tracks), and save the data (in various text-based formats). It can 
also export data as a Gpx file, or as Kml/Kmz for import into Google Earth, or 
send it to a GPS receiver.
+Some example uses of GpsPrune include cleaning up tracks by deleting 
wayward points - either recorded by error or by unintended detours. It can also 
be used to compare and combine tracks, convert to and from various formats, 
compress tracks, export data to Google Earth, or to analyse data to calculate 
distances, altitudes and so on.
+  
+  
+
+  
https://activityworkshop.net/software/gpsprune/screengrabs/gpsprune_13_ordnance_survey.png
+
+
+  
https://activityworkshop.net/software/gpsprune/screengrabs/gpsprune_13_hungarian.png
+
+
+  
https://activityworkshop.net/software/gpsprune/screengrabs/prune_12_ubuntu.png
+
+  
+  https://github.com/activityworkshop/GpsPrune/issues
+  https://activityworkshop.net/software/gpsprune/
+


[arch-commits] Commit in gpsprune/repos/community-any (7 files)

2018-12-29 Thread Balló György via arch-commits
Date: Saturday, December 29, 2018 @ 23:53:44
  Author: bgyorgy
Revision: 418948

archrelease: copy trunk to community-any

Added:
  gpsprune/repos/community-any/PKGBUILD
(from rev 418947, gpsprune/trunk/PKGBUILD)
  gpsprune/repos/community-any/gpsprune.appdata.xml
(from rev 418947, gpsprune/trunk/gpsprune.appdata.xml)
  gpsprune/repos/community-any/gpsprune.desktop
(from rev 418947, gpsprune/trunk/gpsprune.desktop)
  gpsprune/repos/community-any/gpsprune.sh
(from rev 418947, gpsprune/trunk/gpsprune.sh)
Deleted:
  gpsprune/repos/community-any/PKGBUILD
  gpsprune/repos/community-any/gpsprune.desktop
  gpsprune/repos/community-any/gpsprune.sh

--+
 PKGBUILD |   69 ++---
 gpsprune.appdata.xml |   27 +++
 gpsprune.desktop |   24 -
 gpsprune.sh  |4 +-
 4 files changed, 79 insertions(+), 45 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-29 23:53:40 UTC (rev 418947)
+++ PKGBUILD2018-12-29 23:53:44 UTC (rev 418948)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor: jose 
-
-pkgname=gpsprune
-pkgver=19.1
-pkgrel=1
-pkgdesc="View, edit and convert coordinate data from GPS systems"
-arch=('any')
-url="https://activityworkshop.net/software/gpsprune/;
-license=('GPL')
-depends=('desktop-file-utils' 'java-runtime')
-optdepends=('gnuplot: draw charts'
-'gpsbabel: load data directly from GPS receivers'
-'perl-image-exiftool: save coordinates into JPEG files')
-source=("https://activityworkshop.net/software/$pkgname/${pkgname}_$pkgver.jar;
-"https://activityworkshop.net/software/gpsprune/prunelogo.png;
-"$pkgname.sh"
-"$pkgname.desktop")
-noextract=("${pkgname}_$pkgver.jar")
-sha256sums=('fe0b387a15cbaca1bbb15e2caa6b67fb465516f62354560593bfe9203e183cb7'
-'9d08bebe643266d2be126597a6841b0364ab07b2d44fdde8c7ad2ec59088523c'
-'cd8b8f8fc54df03e7435e4849d734e7d9ef5291d8f75c6abab0bfe809fe6abd9'
-'744f83c1c6d76c3d339b41450ddc79a7c15fbaf6d637741fb2c09529a65a0311')
-
-package() {
-  install -Dm644 ${pkgname}_$pkgver.jar 
"$pkgdir/usr/share/java/$pkgname/$pkgname.jar"
-  install -Dm755 $pkgname.sh "$pkgdir/usr/bin/$pkgname"
-  install -Dm644 $pkgname.desktop 
"$pkgdir/usr/share/applications/$pkgname.desktop"
-  install -Dm644 prunelogo.png "$pkgdir/usr/share/pixmaps/$pkgname.png"
-}

Copied: gpsprune/repos/community-any/PKGBUILD (from rev 418947, 
gpsprune/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-29 23:53:44 UTC (rev 418948)
@@ -0,0 +1,38 @@
+# Maintainer: Balló György 
+# Contributor: jose 
+
+pkgname=gpsprune
+pkgver=19.1
+pkgrel=2
+pkgdesc="View, edit and convert coordinate data from GPS systems"
+arch=('any')
+url="https://activityworkshop.net/software/gpsprune/;
+license=('GPL')
+depends=('desktop-file-utils' 'hicolor-icon-theme' 'java-runtime')
+makedepends=('imagemagick')
+optdepends=('gnuplot: draw charts'
+'gpsbabel: load data directly from GPS receivers'
+'perl-image-exiftool: save coordinates into JPEG files')
+source=("https://activityworkshop.net/software/$pkgname/${pkgname}_$pkgver.jar;
+"https://activityworkshop.net/software/gpsprune/prunelogo.png;
+"$pkgname.sh"
+"$pkgname.desktop"
+"$pkgname.appdata.xml")
+noextract=("${pkgname}_$pkgver.jar")
+sha256sums=('fe0b387a15cbaca1bbb15e2caa6b67fb465516f62354560593bfe9203e183cb7'
+'9d08bebe643266d2be126597a6841b0364ab07b2d44fdde8c7ad2ec59088523c'
+'cd8b8f8fc54df03e7435e4849d734e7d9ef5291d8f75c6abab0bfe809fe6abd9'
+'744f83c1c6d76c3d339b41450ddc79a7c15fbaf6d637741fb2c09529a65a0311'
+'bba63de51deff95f3453bdacd8e34126c7cbbd33658fadad0b2c51b19855fdb9')
+
+prepare() {
+  convert prunelogo.png +set date:create +set date:modify -gravity center 
-extent 96x96 $pkgname.png
+}
+
+package() {
+  install -Dm644 ${pkgname}_$pkgver.jar 
"$pkgdir/usr/share/java/$pkgname/$pkgname.jar"
+  install -Dm755 $pkgname.sh "$pkgdir/usr/bin/$pkgname"
+  install -Dm644 $pkgname.desktop 
"$pkgdir/usr/share/applications/$pkgname.desktop"
+  install -Dm644 $pkgname.appdata.xml 
"$pkgdir/usr/share/metainfo/$pkgname.appdata.xml"
+  install -Dm644 $pkgname.png 
"$pkgdir/usr/share/icons/hicolor/96x96/apps/$pkgname.png"
+}

Copied: gpsprune/repos/community-any/gpsprune.appdata.xml (from rev 418947, 
gpsprune/trunk/gpsprune.appdata.xml)
===
--- gpsprune.appdata.xml(rev 0)
+++ gpsprune.appdata.xml2018-12-29 23:53:44 UTC (rev 418948)
@@ -0,0 +1,27 @@
+
+
+  net.activityworkshop.gpsprune
+  gpsprune.desktop
+  GpsPrune
+  Visualize, edit and prune GPS tracks
+  CC0-1.0
+  

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

2018-12-29 Thread Santiago Torres-Arias via arch-commits
Date: Saturday, December 29, 2018 @ 23:45:10
  Author: sangy
Revision: 418946

archrelease: copy trunk to community-any

Added:
  uthash/repos/community-any/PKGBUILD
(from rev 418945, uthash/trunk/PKGBUILD)
Deleted:
  uthash/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-29 23:44:52 UTC (rev 418945)
+++ PKGBUILD2018-12-29 23:45:10 UTC (rev 418946)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli 
-# Contributor: Michael Frey 
-pkgname=uthash
-pkgver=2.0.2
-pkgrel=2
-pkgdesc="C preprocessor implementations of a hash table and a linked list"
-arch=('any')
-url="https://troydhanson.github.io/uthash/;
-license=('BSD')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/troydhanson/$pkgname/archive/v$pkgver.tar.gz;)
-md5sums=('d08632a58674274c9cd87e2930f5696a')
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}/src"
- 
-  # create directory for header files 
-  install -dm755 "${pkgdir}"/usr/include/
-
-  # install header files in /usr/include
-  for h in *.h; do
-  install -m 644 ${h} "${pkgdir}"/usr/include/
-  done
-
-  # install licence file
-  install -D -m644 ../LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-}
-

Copied: uthash/repos/community-any/PKGBUILD (from rev 418945, 
uthash/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-29 23:45:10 UTC (rev 418946)
@@ -0,0 +1,27 @@
+# Maintainer: Santiago Torres-Arias 
+# Contributor: Timothy Redaelli 
+# Contributor: Michael Frey 
+pkgname=uthash
+pkgver=2.1.0
+pkgrel=1
+pkgdesc="C preprocessor implementations of a hash table and a linked list"
+arch=('any')
+url="https://troydhanson.github.io/uthash/;
+license=('BSD')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/troydhanson/$pkgname/archive/v$pkgver.tar.gz;)
+sha256sums=('152ccd8e64d0f495377232e3964d06c7ec8bb8c3fbd3217f8a5702614f9a669e')
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}/src"
+ 
+  # create directory for header files 
+  install -dm755 "${pkgdir}"/usr/include/
+
+  # install header files in /usr/include
+  for h in *.h; do
+  install -m 644 ${h} "${pkgdir}"/usr/include/
+  done
+
+  # install license file
+  install -D -m644 ../LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}


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

2018-12-29 Thread Santiago Torres-Arias via arch-commits
Date: Saturday, December 29, 2018 @ 23:44:52
  Author: sangy
Revision: 418945

upgpkg: uthash 2.1.0-1

Modified:
  uthash/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-29 23:39:12 UTC (rev 418944)
+++ PKGBUILD2018-12-29 23:44:52 UTC (rev 418945)
@@ -1,14 +1,15 @@
-# Maintainer: Timothy Redaelli 
+# Maintainer: Santiago Torres-Arias 
+# Contributor: Timothy Redaelli 
 # Contributor: Michael Frey 
 pkgname=uthash
-pkgver=2.0.2
-pkgrel=2
+pkgver=2.1.0
+pkgrel=1
 pkgdesc="C preprocessor implementations of a hash table and a linked list"
 arch=('any')
 url="https://troydhanson.github.io/uthash/;
 license=('BSD')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/troydhanson/$pkgname/archive/v$pkgver.tar.gz;)
-md5sums=('d08632a58674274c9cd87e2930f5696a')
+sha256sums=('152ccd8e64d0f495377232e3964d06c7ec8bb8c3fbd3217f8a5702614f9a669e')
 
 package() {
   cd "${srcdir}/${pkgname}-${pkgver}/src"
@@ -21,7 +22,6 @@
   install -m 644 ${h} "${pkgdir}"/usr/include/
   done
 
-  # install licence file
+  # install license file
   install -D -m644 ../LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
 }
-


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

2018-12-29 Thread Santiago Torres-Arias via arch-commits
Date: Saturday, December 29, 2018 @ 23:39:12
  Author: sangy
Revision: 418944

archrelease: copy trunk to community-testing-any

Added:
  netbeans/repos/community-testing-any/
  netbeans/repos/community-testing-any/PKGBUILD
(from rev 418943, netbeans/trunk/PKGBUILD)
  netbeans/repos/community-testing-any/netbeans.clusters
(from rev 418943, netbeans/trunk/netbeans.clusters)

---+
 PKGBUILD  |   78 
 netbeans.clusters |   44 +
 2 files changed, 122 insertions(+)

Copied: netbeans/repos/community-testing-any/PKGBUILD (from rev 418943, 
netbeans/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2018-12-29 23:39:12 UTC (rev 418944)
@@ -0,0 +1,78 @@
+# Maintainer: Santiago Torres-Arias 
+# Contributor: Timm Preetz 
+# Contributor: Daniel J Griffiths 
+# Contributor: Ben Wolsieffer 
+
+pkgname=netbeans
+pkgver=10.0
+pkgrel=0
+pkgdesc='IDE for Java, HTML5, PHP, Groovy, C and C++'
+arch=('any')
+url='http://netbeans.apache.org/'
+license=('Apache2')
+# classpath is not needed, see FS#38567 (Oracle JDK does not need atk either)
+depends=('ttf-font')
+makedepends=('ant' 'java-environment=8')
+optdepends=('php: for developing programs in php'
+'groovy: for developing programs in groovy'
+'lib32-glibc')
+source=("https://www.apache.org/dist/incubator/netbeans/incubating-netbeans/incubating-${pkgver}/incubating-${pkgname}-${pkgver}-source.zip"{,.asc}
+   "netbeans.clusters")
+
+sha256sums=('456c9105b1968d976111650e05be1ccb23298cf09263e63183b8e7b8b6ce9478'
+'SKIP'
+'a7849ee0f21acef34a7bbd1216e8f822aba38284e3138ea04532224ad6f227c2')
+
+validpgpkeys=("1A83C352499305B6682E3D95CF7BA0AB1CCF4647" # Emilian Marius Bold 

+  "79C8F02A726E9EF53646D712B2BF814FA145CB2D" # Laszlo Kishalmi 

+)
+
+build() {
+  # full cluster configuration is not available at this time
+  #ant -quiet -Dcluster.config=full
+  export LDFLAGS_EXTRA=$LDFLAGS CFLAGS_EXTRA=$CFLAGS
+  ant -quiet
+}
+
+# It appears that they have disabled the CI tests upstream, so I'll disable 
these for now...
+# see the parms here: 
https://travis-ci.org/apache/incubator-netbeans/jobs/473379270 
+#check() {
+#  cd "${srcdir}"
+#  ant -quiet test -Djavac.compilerargs=-nowarn 
-Dbuild.compiler.deprecation=false -Dtest.includes=NoTestsJustBuild
+#}
+
+package() {
+  depends+=('java-environment>=9')
+
+  # install launcher script
+  install -Dm755 "nbbuild/${pkgname}/bin/${pkgname}" 
"${pkgdir}/usr/bin/${pkgname}"
+
+  # Resources for platform config
+  mkdir -p "${pkgdir}/usr/lib/${pkgname}"
+  cp -r 
"nbbuild/${pkgname}/"{java,harness,javafx,profiler,nb,ide,extide,apisupport,websvccommon,platform}
 "${pkgdir}/usr/lib/${pkgname}"
+  install -Dm644 "${srcdir}/nbbuild/netbeans/etc/netbeans.import" -t 
"${pkgdir}/usr/lib/${pkgname}/etc/"
+
+  # copy cluster configuration
+  install -Dm644 "${srcdir}/nbbuild/netbeans/etc/netbeans."* -t 
"${pkgdir}/usr/etc/"
+  install -Dm644 "netbeans."* -t "${pkgdir}/usr/etc/"
+
+  # Desktop shortcut and icon
+  install -Dm644 "nbbuild/packaging/snap/gui/$pkgname.desktop" \
+"${pkgdir}/usr/share/applications/${pkgname}.desktop"
+  sed -i "s/Icon=.*/Icon=\/usr\/share\/pixmaps\/${pkgname}.png/" 
"${pkgdir}/usr/share/applications/${pkgname}.desktop"
+  install -Dm644 "nbbuild/netbeans/nb/${pkgname}.png" 
"${pkgdir}/usr/share/pixmaps/${pkgname}.png"
+
+  # remove non-linux non x86_64 binaries (FIXME: ideally we should just *not* 
build these)
+  rm -rf "${pkgdir}/usr/lib/${pkgname}/ide/bin/nativeexecution/SunOS"*
+  rm -rf "${pkgdir}/usr/lib/${pkgname}/ide/bin/nativeexecution/MacOSX"*
+  rm -rf "${pkgdir}/usr/lib/${pkgname}/ide/bin/nativeexecution/Windows"*
+  rm -rf "${pkgdir}/usr/lib/${pkgname}/ide/bin/nativeexecution/"*-sparc_64
+  rm -rf "${pkgdir}/usr/lib/${pkgname}/profiler/lib/deployed/jdk16/solaris-"*
+  rm -rf "${pkgdir}/usr/lib/${pkgname}/profiler/lib/deployed/jdk16/hpux-"*
+  rm -rf "${pkgdir}/usr/lib/${pkgname}/profiler/lib/deployed/jdk16/linux-arm"*
+  rm -rf "${pkgdir}/usr/lib/${pkgname}/profiler/lib/deployed/jdk15/hpux-"*
+  rm -rf "${pkgdir}/usr/lib/${pkgname}/profiler/lib/deployed/jdk15/solaris-"*
+  find "${pkgdir}/usr/lib/${pkgname}/" -name "*.exe" -exec rm {} \;
+  find "${pkgdir}/usr/lib/${pkgname}/" -name "*.dll" -exec rm {} \;
+
+}

Copied: netbeans/repos/community-testing-any/netbeans.clusters (from rev 
418943, netbeans/trunk/netbeans.clusters)
===
--- community-testing-any/netbeans.clusters (rev 0)
+++ community-testing-any/netbeans.clusters 2018-12-29 23:39:12 UTC (rev 
418944)
@@ -0,0 +1,44 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the 

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

2018-12-29 Thread Santiago Torres-Arias via arch-commits
Date: Saturday, December 29, 2018 @ 23:38:55
  Author: sangy
Revision: 418943

upgpkg: netbeans 10.0-0

Modified:
  netbeans/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-29 22:37:13 UTC (rev 418942)
+++ PKGBUILD2018-12-29 23:38:55 UTC (rev 418943)
@@ -4,8 +4,8 @@
 # Contributor: Ben Wolsieffer 
 
 pkgname=netbeans
-pkgver=9.0
-pkgrel=5
+pkgver=10.0
+pkgrel=0
 pkgdesc='IDE for Java, HTML5, PHP, Groovy, C and C++'
 arch=('any')
 url='http://netbeans.apache.org/'
@@ -16,14 +16,17 @@
 optdepends=('php: for developing programs in php'
 'groovy: for developing programs in groovy'
 'lib32-glibc')
-source=("https://www.apache.org/dist/incubator/netbeans/incubating-netbeans-java/incubating-9.0/incubating-${pkgname}-java-${pkgver}-source.zip"{,.asc}
+source=("https://www.apache.org/dist/incubator/netbeans/incubating-netbeans/incubating-${pkgver}/incubating-${pkgname}-${pkgver}-source.zip"{,.asc}
"netbeans.clusters")
 
-sha256sums=('cc4cdaf3e1a6c80227410a6e54414e2109516d11a7150b7b9660061135bbc8db'
-'SKIP'
-'a7849ee0f21acef34a7bbd1216e8f822aba38284e3138ea04532224ad6f227c2')
-validpgpkeys=("1A83C352499305B6682E3D95CF7BA0AB1CCF4647")
+sha256sums=('456c9105b1968d976111650e05be1ccb23298cf09263e63183b8e7b8b6ce9478'
+'SKIP'
+'a7849ee0f21acef34a7bbd1216e8f822aba38284e3138ea04532224ad6f227c2')
 
+validpgpkeys=("1A83C352499305B6682E3D95CF7BA0AB1CCF4647" # Emilian Marius Bold 

+  "79C8F02A726E9EF53646D712B2BF814FA145CB2D" # Laszlo Kishalmi 

+)
+
 build() {
   # full cluster configuration is not available at this time
   #ant -quiet -Dcluster.config=full
@@ -31,10 +34,12 @@
   ant -quiet
 }
 
-check() {
-  cd "${srcdir}"
-  ant -quiet test -Djavac.compilerargs=-nowarn 
-Dbuild.compiler.deprecation=false -Dtest.includes=NoTestsJustBuild
-}
+# It appears that they have disabled the CI tests upstream, so I'll disable 
these for now...
+# see the parms here: 
https://travis-ci.org/apache/incubator-netbeans/jobs/473379270 
+#check() {
+#  cd "${srcdir}"
+#  ant -quiet test -Djavac.compilerargs=-nowarn 
-Dbuild.compiler.deprecation=false -Dtest.includes=NoTestsJustBuild
+#}
 
 package() {
   depends+=('java-environment>=9')
@@ -55,7 +60,7 @@
   install -Dm644 "nbbuild/packaging/snap/gui/$pkgname.desktop" \
 "${pkgdir}/usr/share/applications/${pkgname}.desktop"
   sed -i "s/Icon=.*/Icon=\/usr\/share\/pixmaps\/${pkgname}.png/" 
"${pkgdir}/usr/share/applications/${pkgname}.desktop"
-  install -Dm644 "ide.branding/release/${pkgname}.png" 
"${pkgdir}/usr/share/pixmaps/${pkgname}.png"
+  install -Dm644 "nbbuild/netbeans/nb/${pkgname}.png" 
"${pkgdir}/usr/share/pixmaps/${pkgname}.png"
 
   # remove non-linux non x86_64 binaries (FIXME: ideally we should just *not* 
build these)
   rm -rf "${pkgdir}/usr/lib/${pkgname}/ide/bin/nativeexecution/SunOS"*


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

2018-12-29 Thread Christian Hesse via arch-commits
Date: Saturday, December 29, 2018 @ 23:09:57
  Author: eworm
Revision: 342789

archrelease: copy trunk to testing-x86_64

Added:
  xfce4-session/repos/testing-x86_64/
  
xfce4-session/repos/testing-x86_64/0001-Pass-VT-number-to-xinit-if-XDG_VTNR-is-set.patch
(from rev 342788, 
xfce4-session/trunk/0001-Pass-VT-number-to-xinit-if-XDG_VTNR-is-set.patch)
  
xfce4-session/repos/testing-x86_64/0002-Make-verbose-logging-conditional-Bug-11698.patch
(from rev 342788, 
xfce4-session/trunk/0002-Make-verbose-logging-conditional-Bug-11698.patch)
  
xfce4-session/repos/testing-x86_64/0003-xfce4-session-source-system-xinitrc-scripts.patch
(from rev 342788, 
xfce4-session/trunk/0003-xfce4-session-source-system-xinitrc-scripts.patch)
  xfce4-session/repos/testing-x86_64/0004-screenlockers.patch
(from rev 342788, xfce4-session/trunk/0004-screenlockers.patch)
  xfce4-session/repos/testing-x86_64/0005-dbus-launch.patch
(from rev 342788, xfce4-session/trunk/0005-dbus-launch.patch)
  xfce4-session/repos/testing-x86_64/PKGBUILD
(from rev 342788, xfce4-session/trunk/PKGBUILD)
  
xfce4-session/repos/testing-x86_64/xfce-polkit-gnome-authentication-agent-1.desktop
(from rev 342788, 
xfce4-session/trunk/xfce-polkit-gnome-authentication-agent-1.desktop)

+
 0001-Pass-VT-number-to-xinit-if-XDG_VTNR-is-set.patch  |   27 
 0002-Make-verbose-logging-conditional-Bug-11698.patch  |   31 +
 0003-xfce4-session-source-system-xinitrc-scripts.patch |   18 +++
 0004-screenlockers.patch   |   58 ++
 0005-dbus-launch.patch |   15 ++
 PKGBUILD   |   80 +
 xfce-polkit-gnome-authentication-agent-1.desktop   |   87 +++
 7 files changed, 316 insertions(+)

Copied: 
xfce4-session/repos/testing-x86_64/0001-Pass-VT-number-to-xinit-if-XDG_VTNR-is-set.patch
 (from rev 342788, 
xfce4-session/trunk/0001-Pass-VT-number-to-xinit-if-XDG_VTNR-is-set.patch)
===
--- testing-x86_64/0001-Pass-VT-number-to-xinit-if-XDG_VTNR-is-set.patch
(rev 0)
+++ testing-x86_64/0001-Pass-VT-number-to-xinit-if-XDG_VTNR-is-set.patch
2018-12-29 23:09:57 UTC (rev 342789)
@@ -0,0 +1,27 @@
+From e740aad5d6761ce9a9df48a3d87ff29240433d19 Mon Sep 17 00:00:00 2001
+From: Evangelos Foutras 
+Date: Tue, 24 Mar 2015 10:09:33 +0200
+Subject: [PATCH] Pass VT number to xinit if XDG_VTNR is set
+
+---
+ scripts/startxfce4.in | 4 
+ 1 file changed, 4 insertions(+)
+
+diff --git a/scripts/startxfce4.in b/scripts/startxfce4.in
+index d0a74a9..bf3201b 100644
+--- a/scripts/startxfce4.in
 b/scripts/startxfce4.in
+@@ -92,6 +92,10 @@ if test "x$DISPLAY" = "x"
+ then
+   echo "$0: Starting X server"
+   prog=xinit
++
++  if test ! "x$XDG_VTNR" = "x"; then
++SERVERRC="vt$XDG_VTNR $SERVERRC"
++  fi
+ else
+   echo "$0: X server already running on display $DISPLAY"
+   prog=/bin/sh
+-- 
+2.3.4
+

Copied: 
xfce4-session/repos/testing-x86_64/0002-Make-verbose-logging-conditional-Bug-11698.patch
 (from rev 342788, 
xfce4-session/trunk/0002-Make-verbose-logging-conditional-Bug-11698.patch)
===
--- testing-x86_64/0002-Make-verbose-logging-conditional-Bug-11698.patch
(rev 0)
+++ testing-x86_64/0002-Make-verbose-logging-conditional-Bug-11698.patch
2018-12-29 23:09:57 UTC (rev 342789)
@@ -0,0 +1,31 @@
+From 26f9ae8df629f02af0773df2ed82db6b85c5b556 Mon Sep 17 00:00:00 2001
+From: Eric Koegel 
+Date: Sat, 28 Mar 2015 16:57:24 +0300
+Subject: [PATCH] Make verbose logging conditional (Bug #11698)
+
+Bug report and patch submitted by Zhihao Yuan
+
+Signed-off-by: Eric Koegel 
+---
+ xfce4-session/xfsm-global.h | 5 -
+ 1 file changed, 4 insertions(+), 1 deletion(-)
+
+diff --git a/xfce4-session/xfsm-global.h b/xfce4-session/xfsm-global.h
+index d2e0c29..d458712 100644
+--- a/xfce4-session/xfsm-global.h
 b/xfce4-session/xfsm-global.h
+@@ -49,7 +49,10 @@ extern XfsmSplashScreen *splash_screen;
+ #if defined(G_HAVE_ISO_VARARGS)
+ 
+ #define xfsm_verbose(...)\
+-xfsm_verbose_real (__func__, __FILE__, __LINE__, __VA_ARGS__)
++G_STMT_START{ \
++  if (G_UNLIKELY (verbose)) \
++xfsm_verbose_real (__func__, __FILE__, __LINE__, __VA_ARGS__); \
++}G_STMT_END
+ 
+ #else
+ 
+-- 
+2.13.2
+

Copied: 
xfce4-session/repos/testing-x86_64/0003-xfce4-session-source-system-xinitrc-scripts.patch
 (from rev 342788, 
xfce4-session/trunk/0003-xfce4-session-source-system-xinitrc-scripts.patch)
===
--- testing-x86_64/0003-xfce4-session-source-system-xinitrc-scripts.patch   
(rev 0)
+++ testing-x86_64/0003-xfce4-session-source-system-xinitrc-scripts.patch   
2018-12-29 23:09:57 UTC (rev 342789)

[arch-commits] Commit in xfce4-session/trunk (7 files)

2018-12-29 Thread Christian Hesse via arch-commits
Date: Saturday, December 29, 2018 @ 23:09:48
  Author: eworm
Revision: 342788

upgpkg: xfce4-session 4.12.1-9

* rename patch files
* support reading lock command from xfconf
* do not start dbus session but fall back to socket (FS#61177)

Added:
  xfce4-session/trunk/0002-Make-verbose-logging-conditional-Bug-11698.patch
(from rev 342787, 
xfce4-session/trunk/0001-Make-verbose-logging-conditional-Bug-11698.patch)
  xfce4-session/trunk/0003-xfce4-session-source-system-xinitrc-scripts.patch
(from rev 342787, 
xfce4-session/trunk/xfce4-session-source-system-xinitrc-scripts.patch)
  xfce4-session/trunk/0004-screenlockers.patch
  xfce4-session/trunk/0005-dbus-launch.patch
Modified:
  xfce4-session/trunk/PKGBUILD
Deleted:
  xfce4-session/trunk/0001-Make-verbose-logging-conditional-Bug-11698.patch
  xfce4-session/trunk/xfce4-session-source-system-xinitrc-scripts.patch

+
 0001-Make-verbose-logging-conditional-Bug-11698.patch  |   31 
 0002-Make-verbose-logging-conditional-Bug-11698.patch  |   31 
 0003-xfce4-session-source-system-xinitrc-scripts.patch |   18 
 0004-screenlockers.patch   |   58 +++
 0005-dbus-launch.patch |   15 +++
 PKGBUILD   |   22 -
 xfce4-session-source-system-xinitrc-scripts.patch  |   18 
 7 files changed, 139 insertions(+), 54 deletions(-)

Deleted: 0001-Make-verbose-logging-conditional-Bug-11698.patch
===
--- 0001-Make-verbose-logging-conditional-Bug-11698.patch   2018-12-29 
21:27:12 UTC (rev 342787)
+++ 0001-Make-verbose-logging-conditional-Bug-11698.patch   2018-12-29 
23:09:48 UTC (rev 342788)
@@ -1,31 +0,0 @@
-From 26f9ae8df629f02af0773df2ed82db6b85c5b556 Mon Sep 17 00:00:00 2001
-From: Eric Koegel 
-Date: Sat, 28 Mar 2015 16:57:24 +0300
-Subject: [PATCH] Make verbose logging conditional (Bug #11698)
-
-Bug report and patch submitted by Zhihao Yuan
-
-Signed-off-by: Eric Koegel 

- xfce4-session/xfsm-global.h | 5 -
- 1 file changed, 4 insertions(+), 1 deletion(-)
-
-diff --git a/xfce4-session/xfsm-global.h b/xfce4-session/xfsm-global.h
-index d2e0c29..d458712 100644
 a/xfce4-session/xfsm-global.h
-+++ b/xfce4-session/xfsm-global.h
-@@ -49,7 +49,10 @@ extern XfsmSplashScreen *splash_screen;
- #if defined(G_HAVE_ISO_VARARGS)
- 
- #define xfsm_verbose(...)\
--xfsm_verbose_real (__func__, __FILE__, __LINE__, __VA_ARGS__)
-+G_STMT_START{ \
-+  if (G_UNLIKELY (verbose)) \
-+xfsm_verbose_real (__func__, __FILE__, __LINE__, __VA_ARGS__); \
-+}G_STMT_END
- 
- #else
- 
--- 
-2.13.2
-

Copied: 
xfce4-session/trunk/0002-Make-verbose-logging-conditional-Bug-11698.patch (from 
rev 342787, 
xfce4-session/trunk/0001-Make-verbose-logging-conditional-Bug-11698.patch)
===
--- 0002-Make-verbose-logging-conditional-Bug-11698.patch   
(rev 0)
+++ 0002-Make-verbose-logging-conditional-Bug-11698.patch   2018-12-29 
23:09:48 UTC (rev 342788)
@@ -0,0 +1,31 @@
+From 26f9ae8df629f02af0773df2ed82db6b85c5b556 Mon Sep 17 00:00:00 2001
+From: Eric Koegel 
+Date: Sat, 28 Mar 2015 16:57:24 +0300
+Subject: [PATCH] Make verbose logging conditional (Bug #11698)
+
+Bug report and patch submitted by Zhihao Yuan
+
+Signed-off-by: Eric Koegel 
+---
+ xfce4-session/xfsm-global.h | 5 -
+ 1 file changed, 4 insertions(+), 1 deletion(-)
+
+diff --git a/xfce4-session/xfsm-global.h b/xfce4-session/xfsm-global.h
+index d2e0c29..d458712 100644
+--- a/xfce4-session/xfsm-global.h
 b/xfce4-session/xfsm-global.h
+@@ -49,7 +49,10 @@ extern XfsmSplashScreen *splash_screen;
+ #if defined(G_HAVE_ISO_VARARGS)
+ 
+ #define xfsm_verbose(...)\
+-xfsm_verbose_real (__func__, __FILE__, __LINE__, __VA_ARGS__)
++G_STMT_START{ \
++  if (G_UNLIKELY (verbose)) \
++xfsm_verbose_real (__func__, __FILE__, __LINE__, __VA_ARGS__); \
++}G_STMT_END
+ 
+ #else
+ 
+-- 
+2.13.2
+

Copied: 
xfce4-session/trunk/0003-xfce4-session-source-system-xinitrc-scripts.patch 
(from rev 342787, 
xfce4-session/trunk/xfce4-session-source-system-xinitrc-scripts.patch)
===
--- 0003-xfce4-session-source-system-xinitrc-scripts.patch  
(rev 0)
+++ 0003-xfce4-session-source-system-xinitrc-scripts.patch  2018-12-29 
23:09:48 UTC (rev 342788)
@@ -0,0 +1,18 @@
+diff -upr xfce4-session-4.12.1.orig/scripts/xinitrc.in.in 
xfce4-session-4.12.1/scripts/xinitrc.in.in
+--- xfce4-session-4.12.1.orig/scripts/xinitrc.in.in2015-03-16 
09:29:52.0 +0200
 xfce4-session-4.12.1/scripts/xinitrc.in.in 2017-03-03 04:11:03.591724694 
+0200
+@@ -87,6 +87,14 @@ cat /dev/null $XRESOURCES | xrdb -nocpp
+ # load local modmap
+ test -r $HOME/.Xmodmap && xmodmap $HOME/.Xmodmap
+ 
++# 

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

2018-12-29 Thread Balló György via arch-commits
Date: Saturday, December 29, 2018 @ 22:37:13
  Author: bgyorgy
Revision: 418942

archrelease: copy trunk to community-any

Added:
  smuxi/repos/community-any/PKGBUILD
(from rev 418941, smuxi/trunk/PKGBUILD)
Deleted:
  smuxi/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-29 22:37:09 UTC (rev 418941)
+++ PKGBUILD2018-12-29 22:37:13 UTC (rev 418942)
@@ -1,60 +0,0 @@
-# Maintainer: Balló György 
-# Contributor: Madek 
-# Contributor: Marcelo Cavalcante 
-# Contributor: Jens Kleikamp 
-# Contributor: Philipp Gildein 
-
-pkgbase=smuxi
-pkgname=('smuxi-server' 'smuxi')
-pkgver=1.0.7
-pkgrel=2
-pkgdesc="User-friendly and cross-platform IRC client for sophisticated users 
for GNOME/GTK+"
-arch=('any')
-url="https://smuxi.im/;
-license=('GPL')
-makedepends=('notify-sharp' 'log4net' 'nini' 'gtkspell' 'stfl' 'intltool')
-options=('!emptydirs')
-source=(https://smuxi.im/jaws/data/files/$pkgbase-$pkgver.tar.gz{,.asc})
-validpgpkeys=('ABE195E150A8DBE7809D3F427127E5ABEEF946C8') # Mirco Bauer
-sha256sums=('f6a6621d421694af71a93705bef0f70175901f52299e2205518c37cbe9881ab0'
-'SKIP')
-
-build() {
-  cd $pkgbase-$pkgver
-
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
-  --enable-frontend-stfl \
-  --with-vendor-package-version="Arch Linux $pkgver-$pkgrel"
-  LANG=C make -j1
-}
-
-package_smuxi-server() {
-  pkgdesc+=" (common files and server)"
-  depends=('log4net' 'nini')
-  cd $pkgbase-$pkgver
-
-  make DESTDIR="$pkgdir" install
-
-  # Split frontend
-  [[ -d $srcdir/frontend ]] && rm -r "$srcdir/frontend/"
-  mkdir "$srcdir"/frontend
-  mv "$pkgdir"/usr/bin/smuxi-frontend-{gnome,stfl} \
- "$pkgdir"/usr/lib/pkgconfig/smuxi-frontend.pc \
- "$pkgdir"/usr/lib/smuxi/smuxi-frontend* \
- "$pkgdir"/usr/share/{appdata,applications,icons} \
- "$pkgdir"/usr/share/man/man1/smuxi-frontend* \
- "$srcdir/frontend/"
-}
-
-package_smuxi() {
-  pkgdesc+=" (frontend)" 
-  depends=('smuxi-server' 'notify-sharp' 'gtkspell' 'stfl')
-  cd frontend
-
-  mkdir -p "$pkgdir"/usr/{bin,lib/{pkgconfig,smuxi},share/man/man1}
-  mv smuxi-frontend-{gnome,stfl} "$pkgdir/usr/bin"
-  mv smuxi-frontend.pc "$pkgdir/usr/lib/pkgconfig"
-  mv smuxi-frontend*.1 "$pkgdir/usr/share/man/man1"
-  mv smuxi-frontend* "$pkgdir/usr/lib/smuxi"
-  mv {appdata,applications,icons} "$pkgdir/usr/share"
-}

Copied: smuxi/repos/community-any/PKGBUILD (from rev 418941, 
smuxi/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-29 22:37:13 UTC (rev 418942)
@@ -0,0 +1,62 @@
+# Maintainer: Balló György 
+# Contributor: Madek 
+# Contributor: Marcelo Cavalcante 
+# Contributor: Jens Kleikamp 
+# Contributor: Philipp Gildein 
+
+pkgbase=smuxi
+pkgname=('smuxi-server' 'smuxi')
+pkgver=1.0.7
+pkgrel=3
+pkgdesc="User-friendly and cross-platform IRC client for sophisticated users 
for GNOME/GTK+"
+arch=('any')
+url="https://smuxi.im/;
+license=('GPL')
+makedepends=('notify-sharp' 'log4net' 'nini' 'gtkspell' 'stfl' 'intltool')
+options=('!emptydirs')
+source=(https://smuxi.im/jaws/data/files/$pkgbase-$pkgver.tar.gz{,.asc})
+validpgpkeys=('ABE195E150A8DBE7809D3F427127E5ABEEF946C8') # Mirco Bauer
+sha256sums=('f6a6621d421694af71a93705bef0f70175901f52299e2205518c37cbe9881ab0'
+'SKIP')
+
+prepare() {
+  cd $pkgbase-$pkgver
+  sed -i 's|$(datarootdir)/appdata|$(datarootdir)/metainfo|' 
src/Frontend-GNOME/Makefile.{am,in}
+}
+
+build() {
+  cd $pkgbase-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+  --enable-frontend-stfl \
+  --with-vendor-package-version="Arch Linux $pkgver-$pkgrel"
+  LANG=C make -j1
+}
+
+package_smuxi-server() {
+  pkgdesc+=" (common files and server)"
+  depends=('log4net' 'nini' 'stfl')
+
+  cd $pkgbase-$pkgver
+  make DESTDIR="$pkgdir" install
+
+  # Split frontend
+  [[ -d $srcdir/frontend ]] && rm -r "$srcdir/frontend/"
+  mkdir "$srcdir"/frontend
+  mv "$pkgdir"/usr/bin/smuxi-frontend-gnome \
+ "$pkgdir"/usr/lib/smuxi/smuxi-frontend-gnome* \
+ "$pkgdir"/usr/share/{applications,icons,metainfo} \
+ "$pkgdir"/usr/share/man/man1/smuxi-frontend-gnome.1 \
+ "$srcdir/frontend/"
+}
+
+package_smuxi() {
+  pkgdesc+=" (frontend)" 
+  depends=('smuxi-server' 'notify-sharp' 'gtkspell')
+
+  cd frontend
+  mkdir -p "$pkgdir"/usr/{bin,lib/smuxi,share/man/man1}
+  mv smuxi-frontend-gnome "$pkgdir/usr/bin"
+  mv smuxi-frontend-gnome.1 "$pkgdir/usr/share/man/man1"
+  mv smuxi-frontend-gnome* "$pkgdir/usr/lib/smuxi"
+  mv {applications,icons,metainfo} "$pkgdir/usr/share"
+}


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

2018-12-29 Thread Balló György via arch-commits
Date: Saturday, December 29, 2018 @ 22:37:09
  Author: bgyorgy
Revision: 418941

upgpkg: smuxi 1.0.7-3

Move the stfl frontend to the server package

Modified:
  smuxi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-29 22:05:07 UTC (rev 418940)
+++ PKGBUILD2018-12-29 22:37:09 UTC (rev 418941)
@@ -7,7 +7,7 @@
 pkgbase=smuxi
 pkgname=('smuxi-server' 'smuxi')
 pkgver=1.0.7
-pkgrel=2
+pkgrel=3
 pkgdesc="User-friendly and cross-platform IRC client for sophisticated users 
for GNOME/GTK+"
 arch=('any')
 url="https://smuxi.im/;
@@ -19,9 +19,13 @@
 sha256sums=('f6a6621d421694af71a93705bef0f70175901f52299e2205518c37cbe9881ab0'
 'SKIP')
 
+prepare() {
+  cd $pkgbase-$pkgver
+  sed -i 's|$(datarootdir)/appdata|$(datarootdir)/metainfo|' 
src/Frontend-GNOME/Makefile.{am,in}
+}
+
 build() {
   cd $pkgbase-$pkgver
-
   ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
   --enable-frontend-stfl \
   --with-vendor-package-version="Arch Linux $pkgver-$pkgrel"
@@ -30,31 +34,29 @@
 
 package_smuxi-server() {
   pkgdesc+=" (common files and server)"
-  depends=('log4net' 'nini')
+  depends=('log4net' 'nini' 'stfl')
+
   cd $pkgbase-$pkgver
-
   make DESTDIR="$pkgdir" install
 
   # Split frontend
   [[ -d $srcdir/frontend ]] && rm -r "$srcdir/frontend/"
   mkdir "$srcdir"/frontend
-  mv "$pkgdir"/usr/bin/smuxi-frontend-{gnome,stfl} \
- "$pkgdir"/usr/lib/pkgconfig/smuxi-frontend.pc \
- "$pkgdir"/usr/lib/smuxi/smuxi-frontend* \
- "$pkgdir"/usr/share/{appdata,applications,icons} \
- "$pkgdir"/usr/share/man/man1/smuxi-frontend* \
+  mv "$pkgdir"/usr/bin/smuxi-frontend-gnome \
+ "$pkgdir"/usr/lib/smuxi/smuxi-frontend-gnome* \
+ "$pkgdir"/usr/share/{applications,icons,metainfo} \
+ "$pkgdir"/usr/share/man/man1/smuxi-frontend-gnome.1 \
  "$srcdir/frontend/"
 }
 
 package_smuxi() {
   pkgdesc+=" (frontend)" 
-  depends=('smuxi-server' 'notify-sharp' 'gtkspell' 'stfl')
+  depends=('smuxi-server' 'notify-sharp' 'gtkspell')
+
   cd frontend
-
-  mkdir -p "$pkgdir"/usr/{bin,lib/{pkgconfig,smuxi},share/man/man1}
-  mv smuxi-frontend-{gnome,stfl} "$pkgdir/usr/bin"
-  mv smuxi-frontend.pc "$pkgdir/usr/lib/pkgconfig"
-  mv smuxi-frontend*.1 "$pkgdir/usr/share/man/man1"
-  mv smuxi-frontend* "$pkgdir/usr/lib/smuxi"
-  mv {appdata,applications,icons} "$pkgdir/usr/share"
+  mkdir -p "$pkgdir"/usr/{bin,lib/smuxi,share/man/man1}
+  mv smuxi-frontend-gnome "$pkgdir/usr/bin"
+  mv smuxi-frontend-gnome.1 "$pkgdir/usr/share/man/man1"
+  mv smuxi-frontend-gnome* "$pkgdir/usr/lib/smuxi"
+  mv {applications,icons,metainfo} "$pkgdir/usr/share"
 }


[arch-commits] Commit in (cinelerra-cv)

2018-12-29 Thread David Runge via arch-commits
Date: Saturday, December 29, 2018 @ 22:05:07
  Author: dvzrv
Revision: 418940

Moving cinelerra-cv to the AUR, after announcing it upstream and getting into 
contact with cinelerra-gg as a potential replacement (in the future).

Deleted:
  cinelerra-cv/


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

2018-12-29 Thread Balló György via arch-commits
Date: Saturday, December 29, 2018 @ 22:03:40
  Author: bgyorgy
Revision: 418939

archrelease: copy trunk to community-any

Added:
  driconf/repos/community-any/PKGBUILD
(from rev 418938, driconf/trunk/PKGBUILD)
  driconf/repos/community-any/driconf_simpleui.patch
(from rev 418938, driconf/trunk/driconf_simpleui.patch)
Deleted:
  driconf/repos/community-any/PKGBUILD
  driconf/repos/community-any/driconf_simpleui.patch

+
 PKGBUILD   |   79 +++
 driconf_simpleui.patch |   26 +++
 2 files changed, 53 insertions(+), 52 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-29 22:03:35 UTC (rev 418938)
+++ PKGBUILD2018-12-29 22:03:40 UTC (rev 418939)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor: Sergej Pupykin 
-# Contributor: Giovanni Scafora 
-
-pkgname=driconf
-pkgver=0.9.1
-pkgrel=12
-pkgdesc="Graphical configuration tool for the Direct Rendering Infrastructure"
-arch=('any')
-url="https://dri.freedesktop.org/wiki/DriConf/;
-license=('GPL')
-depends=('mesa-demos' 'pygtk' 'xorg-xdriinfo')
-source=(http://ftp.debian.org/debian/pool/main/d/$pkgname/${pkgname}_$pkgver.orig.tar.gz
-driconf_simpleui.patch)
-sha256sums=('4849a43f6324498e943c03777bce571229b5446985b1cec596b365505e76f73f'
-'a2f9c4fd50cb694cc743cdde0f4efe310cb11fbef347c1a1d5fbec9a99d3499b')
-
-prepare() {
-  cd $pkgname-$pkgver
-
-  # Fix uninitialized variable (FS#36934)
-  patch -Np0 -i ../driconf_simpleui.patch
-
-  # Install into /usr instead of /usr/local
-  sed -i 's|/usr/local|/usr|' *.py driconf driconf.desktop setup.cfg
-}
-
-build() {
-  cd $pkgname-$pkgver
-  python2 setup.py build
-}
-
-package() {
-  cd $pkgname-$pkgver
-  python2 setup.py install --root "$pkgdir" --optimize=1
-  install -Dm644 $pkgname.desktop 
"$pkgdir"/usr/share/applications/$pkgname.desktop
-  install -Dm644 drilogo.jpg "$pkgdir"/usr/share/pixmaps/drilogo.jpg
-}

Copied: driconf/repos/community-any/PKGBUILD (from rev 418938, 
driconf/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-29 22:03:40 UTC (rev 418939)
@@ -0,0 +1,40 @@
+# Maintainer: Balló György 
+# Contributor: Sergej Pupykin 
+# Contributor: Giovanni Scafora 
+
+pkgname=driconf
+pkgver=0.9.1
+pkgrel=13
+pkgdesc="Graphical configuration tool for the Direct Rendering Infrastructure"
+arch=('any')
+url="https://dri.freedesktop.org/wiki/DriConf/;
+license=('GPL')
+depends=('mesa-demos' 'pygtk' 'xorg-xdriinfo')
+source=(http://ftp.debian.org/debian/pool/main/d/$pkgname/${pkgname}_$pkgver.orig.tar.gz
+driconf_simpleui.patch)
+sha256sums=('4849a43f6324498e943c03777bce571229b5446985b1cec596b365505e76f73f'
+'a2f9c4fd50cb694cc743cdde0f4efe310cb11fbef347c1a1d5fbec9a99d3499b')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  # Fix uninitialized variable (FS#36934)
+  patch -Np0 -i ../driconf_simpleui.patch
+
+  # Install into /usr instead of /usr/local
+  sed -i 's|/usr/local|/usr|' *.py driconf setup.cfg
+  sed -i 's/^Icon=.*/Icon=drilogo/
+  s/AdvancedSettings;//' driconf.desktop
+}
+
+build() {
+  cd $pkgname-$pkgver
+  python2 setup.py build
+}
+
+package() {
+  cd $pkgname-$pkgver
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 $pkgname.desktop 
"$pkgdir"/usr/share/applications/$pkgname.desktop
+  install -Dm644 drilogo.jpg "$pkgdir"/usr/share/pixmaps/drilogo.jpg
+}

Deleted: driconf_simpleui.patch
===
--- driconf_simpleui.patch  2018-12-29 22:03:35 UTC (rev 418938)
+++ driconf_simpleui.patch  2018-12-29 22:03:40 UTC (rev 418939)
@@ -1,13 +0,0 @@
 driconf_simpleui-original.py   2013-09-14 18:28:51.783220606 -0600
-+++ driconf_simpleui.py2013-09-14 18:31:01.143223727 -0600
-@@ -266,8 +266,8 @@
- j = i
- break
- i = i - 1
--if i < chars/3:
--i = chars
-+else:
-+i = j = chars
- head, tail = head + tail[:i] + '\n', tail[j:]
- return head
- 

Copied: driconf/repos/community-any/driconf_simpleui.patch (from rev 418938, 
driconf/trunk/driconf_simpleui.patch)
===
--- driconf_simpleui.patch  (rev 0)
+++ driconf_simpleui.patch  2018-12-29 22:03:40 UTC (rev 418939)
@@ -0,0 +1,13 @@
+--- driconf_simpleui-original.py   2013-09-14 18:28:51.783220606 -0600
 driconf_simpleui.py2013-09-14 18:31:01.143223727 -0600
+@@ -266,8 +266,8 @@
+ j = i
+ break
+ i = i - 1
+-if i < chars/3:
+-i = chars
++else:
++i = j = chars
+ 

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

2018-12-29 Thread Balló György via arch-commits
Date: Saturday, December 29, 2018 @ 22:03:35
  Author: bgyorgy
Revision: 418938

upgpkg: driconf 0.9.1-13

Use larger icon, remove invalid category

Modified:
  driconf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-29 22:01:39 UTC (rev 418937)
+++ PKGBUILD2018-12-29 22:03:35 UTC (rev 418938)
@@ -4,7 +4,7 @@
 
 pkgname=driconf
 pkgver=0.9.1
-pkgrel=12
+pkgrel=13
 pkgdesc="Graphical configuration tool for the Direct Rendering Infrastructure"
 arch=('any')
 url="https://dri.freedesktop.org/wiki/DriConf/;
@@ -22,7 +22,9 @@
   patch -Np0 -i ../driconf_simpleui.patch
 
   # Install into /usr instead of /usr/local
-  sed -i 's|/usr/local|/usr|' *.py driconf driconf.desktop setup.cfg
+  sed -i 's|/usr/local|/usr|' *.py driconf setup.cfg
+  sed -i 's/^Icon=.*/Icon=drilogo/
+  s/AdvancedSettings;//' driconf.desktop
 }
 
 build() {


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

2018-12-29 Thread Brad Fanella via arch-commits
Date: Saturday, December 29, 2018 @ 21:56:24
  Author: cesura
Revision: 418935

upgpkg: mozo 1.20.2-1

Updated to version 1.20.2

Modified:
  mozo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-29 21:50:04 UTC (rev 418934)
+++ PKGBUILD2018-12-29 21:56:24 UTC (rev 418935)
@@ -2,7 +2,7 @@
 # Contributor: Martin Wimpress 
 
 pkgname=mozo
-pkgver=1.20.1
+pkgver=1.20.2
 pkgrel=1
 pkgdesc="MATE menu editing tool"
 url="http://mate-desktop.org;
@@ -14,16 +14,16 @@
 conflicts=('mozo-gtk3')
 replaces=('mozo-gtk3')
 
source=("http://pub.mate-desktop.org/releases/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
-sha256sums=('377b7fb55c66f3b57593cb800ba997d437f8c8b59a4d402953221634f0e2339b')
+sha256sums=('0deeda3637cf5428853f633378f5d7006184e928cdf78e94d8aad7f822c490e0')
 
 build() {
-cd ${pkgname}-${pkgver}
-PYTHON=/usr/bin/python2 ./configure \
---prefix=/usr
-make
+   cd "${pkgname}-${pkgver}"
+   PYTHON=/usr/bin/python2 ./configure \
+   --prefix=/usr
+   make
 }
 
 package() {
-cd ${pkgname}-${pkgver}
-make DESTDIR="${pkgdir}" install
+   cd "${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
 }


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

2018-12-29 Thread Brad Fanella via arch-commits
Date: Saturday, December 29, 2018 @ 21:56:53
  Author: cesura
Revision: 418936

archrelease: copy trunk to community-any

Added:
  mozo/repos/community-any/PKGBUILD
(from rev 418935, mozo/trunk/PKGBUILD)
Deleted:
  mozo/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-29 21:56:24 UTC (rev 418935)
+++ PKGBUILD2018-12-29 21:56:53 UTC (rev 418936)
@@ -1,29 +0,0 @@
-# Maintainer: Brad Fanella 
-# Contributor: Martin Wimpress 
-
-pkgname=mozo
-pkgver=1.20.1
-pkgrel=1
-pkgdesc="MATE menu editing tool"
-url="http://mate-desktop.org;
-arch=('any')
-license=('GPL')
-depends=('gtk3' 'mate-menus' 'python2-gobject')
-makedepends=('intltool')
-groups=('mate-extra')
-conflicts=('mozo-gtk3')
-replaces=('mozo-gtk3')
-source=("http://pub.mate-desktop.org/releases/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
-sha256sums=('377b7fb55c66f3b57593cb800ba997d437f8c8b59a4d402953221634f0e2339b')
-
-build() {
-cd ${pkgname}-${pkgver}
-PYTHON=/usr/bin/python2 ./configure \
---prefix=/usr
-make
-}
-
-package() {
-cd ${pkgname}-${pkgver}
-make DESTDIR="${pkgdir}" install
-}

Copied: mozo/repos/community-any/PKGBUILD (from rev 418935, mozo/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-29 21:56:53 UTC (rev 418936)
@@ -0,0 +1,29 @@
+# Maintainer: Brad Fanella 
+# Contributor: Martin Wimpress 
+
+pkgname=mozo
+pkgver=1.20.2
+pkgrel=1
+pkgdesc="MATE menu editing tool"
+url="http://mate-desktop.org;
+arch=('any')
+license=('GPL')
+depends=('gtk3' 'mate-menus' 'python2-gobject')
+makedepends=('intltool')
+groups=('mate-extra')
+conflicts=('mozo-gtk3')
+replaces=('mozo-gtk3')
+source=("http://pub.mate-desktop.org/releases/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
+sha256sums=('0deeda3637cf5428853f633378f5d7006184e928cdf78e94d8aad7f822c490e0')
+
+build() {
+   cd "${pkgname}-${pkgver}"
+   PYTHON=/usr/bin/python2 ./configure \
+   --prefix=/usr
+   make
+}
+
+package() {
+   cd "${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+}


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

2018-12-29 Thread Brad Fanella via arch-commits
Date: Saturday, December 29, 2018 @ 21:49:25
  Author: cesura
Revision: 418931

upgpkg: pluma 1.20.4-1

Updated to version 1.20.4

Modified:
  pluma/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-29 21:42:47 UTC (rev 418930)
+++ PKGBUILD2018-12-29 21:49:25 UTC (rev 418931)
@@ -2,7 +2,7 @@
 # Contributor: Martin Wimpress 
 
 pkgname=pluma
-pkgver=1.20.3
+pkgver=1.20.4
 pkgrel=1
 pkgdesc="A powerful text editor for MATE"
 url="https://mate-desktop.org;
@@ -15,30 +15,30 @@
 conflicts=('pluma-gtk3')
 replaces=('pluma-gtk3')
 
source=("https://pub.mate-desktop.org/releases/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
-sha256sums=('85845e61cf719374860e66d5c90ede00f5dc2210594b6e72bad7e9e3bf608bd9')
+sha256sums=('fffd1ad0309c058ebd364ea0185d5dbbada2a9cde3d580da528b226c7ca9ab61')
 
 prepare() {
-cd ${pkgname}-${pkgver}
-sed -i 's/python/python2/' plugins/externaltools/data/switch-c.tool.in
-sed -i 's/, enchant/, enchant-2/' configure.ac
+   cd "${pkgname}-${pkgver}"
+   sed -i 's/python/python2/' plugins/externaltools/data/switch-c.tool.in
+   sed -i 's/, enchant/, enchant-2/' configure.ac
 }
 
 build() {
-cd ${pkgname}-${pkgver}
-./autogen.sh
-PYTHON=/usr/bin/python2 ./configure \
---prefix=/usr \
---libexecdir=/usr/lib/${pkgname} \
---enable-gtk-doc=no \
---enable-python
+   cd "${pkgname}-${pkgver}"
+   ./autogen.sh
+   PYTHON=/usr/bin/python2 ./configure \
+   --prefix=/usr \
+   --libexecdir=/usr/lib/${pkgname} \
+   --enable-gtk-doc=no \
+   --enable-python
 
-#https://bugzilla.gnome.org/show_bug.cgi?id=656231
-sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+   #https://bugzilla.gnome.org/show_bug.cgi?id=656231
+   sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
 
-make
+   make
 }
 
 package() {
-cd ${pkgname}-${pkgver}
-make DESTDIR="${pkgdir}" install
+   cd "${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
 }


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

2018-12-29 Thread Brad Fanella via arch-commits
Date: Saturday, December 29, 2018 @ 21:49:49
  Author: cesura
Revision: 418932

archrelease: copy trunk to community-x86_64

Added:
  pluma/repos/community-x86_64/PKGBUILD
(from rev 418931, pluma/trunk/PKGBUILD)
Deleted:
  pluma/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-29 21:49:25 UTC (rev 418931)
+++ PKGBUILD2018-12-29 21:49:49 UTC (rev 418932)
@@ -1,44 +0,0 @@
-# Maintainer: Brad Fanella 
-# Contributor: Martin Wimpress 
-
-pkgname=pluma
-pkgver=1.20.3
-pkgrel=1
-pkgdesc="A powerful text editor for MATE"
-url="https://mate-desktop.org;
-arch=('x86_64')
-license=('GPL')
-depends=('iso-codes' 'mate-desktop' 'zenity' 'gtksourceview3' 'libpeas' 
'python2')
-makedepends=('intltool' 'itstool' 'gobject-introspection' 'python2' 
'mate-common' 'yelp-tools')
-optdepends=('python2-gobject: to use the python plugins')
-groups=('mate-extra')
-conflicts=('pluma-gtk3')
-replaces=('pluma-gtk3')
-source=("https://pub.mate-desktop.org/releases/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
-sha256sums=('85845e61cf719374860e66d5c90ede00f5dc2210594b6e72bad7e9e3bf608bd9')
-
-prepare() {
-cd ${pkgname}-${pkgver}
-sed -i 's/python/python2/' plugins/externaltools/data/switch-c.tool.in
-sed -i 's/, enchant/, enchant-2/' configure.ac
-}
-
-build() {
-cd ${pkgname}-${pkgver}
-./autogen.sh
-PYTHON=/usr/bin/python2 ./configure \
---prefix=/usr \
---libexecdir=/usr/lib/${pkgname} \
---enable-gtk-doc=no \
---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 ${pkgname}-${pkgver}
-make DESTDIR="${pkgdir}" install
-}

Copied: pluma/repos/community-x86_64/PKGBUILD (from rev 418931, 
pluma/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-29 21:49:49 UTC (rev 418932)
@@ -0,0 +1,44 @@
+# Maintainer: Brad Fanella 
+# Contributor: Martin Wimpress 
+
+pkgname=pluma
+pkgver=1.20.4
+pkgrel=1
+pkgdesc="A powerful text editor for MATE"
+url="https://mate-desktop.org;
+arch=('x86_64')
+license=('GPL')
+depends=('iso-codes' 'mate-desktop' 'zenity' 'gtksourceview3' 'libpeas' 
'python2')
+makedepends=('intltool' 'itstool' 'gobject-introspection' 'python2' 
'mate-common' 'yelp-tools')
+optdepends=('python2-gobject: to use the python plugins')
+groups=('mate-extra')
+conflicts=('pluma-gtk3')
+replaces=('pluma-gtk3')
+source=("https://pub.mate-desktop.org/releases/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
+sha256sums=('fffd1ad0309c058ebd364ea0185d5dbbada2a9cde3d580da528b226c7ca9ab61')
+
+prepare() {
+   cd "${pkgname}-${pkgver}"
+   sed -i 's/python/python2/' plugins/externaltools/data/switch-c.tool.in
+   sed -i 's/, enchant/, enchant-2/' configure.ac
+}
+
+build() {
+   cd "${pkgname}-${pkgver}"
+   ./autogen.sh
+   PYTHON=/usr/bin/python2 ./configure \
+   --prefix=/usr \
+   --libexecdir=/usr/lib/${pkgname} \
+   --enable-gtk-doc=no \
+   --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 "${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+}


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

2018-12-29 Thread Balló György via arch-commits
Date: Saturday, December 29, 2018 @ 21:49:59
  Author: bgyorgy
Revision: 418933

upgpkg: lat 1.2.4-5

Use standard icon instead of the very small included icon

Modified:
  lat/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-29 21:49:49 UTC (rev 418932)
+++ PKGBUILD2018-12-29 21:49:59 UTC (rev 418933)
@@ -4,7 +4,7 @@
 
 pkgname=lat
 pkgver=1.2.4
-pkgrel=4
+pkgrel=5
 pkgdesc="LDAP administration tool"
 arch=('any')
 url="https://sourceforge.net/projects/ldap-at/;
@@ -40,4 +40,8 @@
 package() {
   cd $pkgname-$pkgver
   make DESTDIR="$pkgdir" install
+
+  # Use standard icon instead of the very small included icon
+  sed -i 's/^Icon=.*/Icon=network-server/' 
"$pkgdir/usr/share/applications/lat.desktop"
+  rm -r "$pkgdir/usr/share/pixmaps/"
 }


[arch-commits] Commit in lat/repos/community-any (6 files)

2018-12-29 Thread Balló György via arch-commits
Date: Saturday, December 29, 2018 @ 21:50:04
  Author: bgyorgy
Revision: 418934

archrelease: copy trunk to community-any

Added:
  lat/repos/community-any/PKGBUILD
(from rev 418933, lat/trunk/PKGBUILD)
  lat/repos/community-any/drop-gconf.patch
(from rev 418933, lat/trunk/drop-gconf.patch)
  lat/repos/community-any/drop-gnome-sharp.patch
(from rev 418933, lat/trunk/drop-gnome-sharp.patch)
Deleted:
  lat/repos/community-any/PKGBUILD
  lat/repos/community-any/drop-gconf.patch
  lat/repos/community-any/drop-gnome-sharp.patch

+
 PKGBUILD   |   91 ++--
 drop-gconf.patch   |  980 +++
 drop-gnome-sharp.patch |  804 +++---
 3 files changed, 939 insertions(+), 936 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-29 21:49:59 UTC (rev 418933)
+++ PKGBUILD2018-12-29 21:50:04 UTC (rev 418934)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor: Sergej Pupykin 
-# Contributor: William Rea 
-
-pkgname=lat
-pkgver=1.2.4
-pkgrel=4
-pkgdesc="LDAP administration tool"
-arch=('any')
-url="https://sourceforge.net/projects/ldap-at/;
-license=('GPL')
-depends=('gtk-sharp-2' 'libgnome-keyring')
-makedepends=('intltool' 'rarian')
-source=(https://downloads.sourceforge.net/ldap-at/$pkgname-$pkgver.tar.gz
-drop-gnome-sharp.patch
-drop-gconf.patch)
-sha256sums=('a37f3b5361956e5d664a0f8b767969d012acf67c5a4c99142edfa0d7c7a0890a'
-'7b84b0d1f07a8951971c423549de88213885fef9af10d35151327fbafacf4ecd'
-'bbe3eda800a3c7ff0710cd7934800cb65f76edfd3414639901fc39ef4a29ddc1')
-
-prepare() {
-  cd $pkgname-$pkgver
-  sed -i 's/gmcs/mcs/' configure{,.ac}
-
-  # Remove gnome-sharp dependency
-  patch -Np1 -i ../drop-gnome-sharp.patch
-
-  # Remove GConf dependency
-  patch -Np1 -i ../drop-gconf.patch
-
-  autoreconf -fi
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: lat/repos/community-any/PKGBUILD (from rev 418933, lat/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-29 21:50:04 UTC (rev 418934)
@@ -0,0 +1,47 @@
+# Maintainer: Balló György 
+# Contributor: Sergej Pupykin 
+# Contributor: William Rea 
+
+pkgname=lat
+pkgver=1.2.4
+pkgrel=5
+pkgdesc="LDAP administration tool"
+arch=('any')
+url="https://sourceforge.net/projects/ldap-at/;
+license=('GPL')
+depends=('gtk-sharp-2' 'libgnome-keyring')
+makedepends=('intltool' 'rarian')
+source=(https://downloads.sourceforge.net/ldap-at/$pkgname-$pkgver.tar.gz
+drop-gnome-sharp.patch
+drop-gconf.patch)
+sha256sums=('a37f3b5361956e5d664a0f8b767969d012acf67c5a4c99142edfa0d7c7a0890a'
+'7b84b0d1f07a8951971c423549de88213885fef9af10d35151327fbafacf4ecd'
+'bbe3eda800a3c7ff0710cd7934800cb65f76edfd3414639901fc39ef4a29ddc1')
+
+prepare() {
+  cd $pkgname-$pkgver
+  sed -i 's/gmcs/mcs/' configure{,.ac}
+
+  # Remove gnome-sharp dependency
+  patch -Np1 -i ../drop-gnome-sharp.patch
+
+  # Remove GConf dependency
+  patch -Np1 -i ../drop-gconf.patch
+
+  autoreconf -fi
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+
+  # Use standard icon instead of the very small included icon
+  sed -i 's/^Icon=.*/Icon=network-server/' 
"$pkgdir/usr/share/applications/lat.desktop"
+  rm -r "$pkgdir/usr/share/pixmaps/"
+}

Deleted: drop-gconf.patch
===
--- drop-gconf.patch2018-12-29 21:49:59 UTC (rev 418933)
+++ drop-gconf.patch2018-12-29 21:50:04 UTC (rev 418934)
@@ -1,490 +0,0 @@
-diff -Naur lat-1.2.4.orig/configure.ac lat-1.2.4/configure.ac
 lat-1.2.4.orig/configure.ac2012-11-18 10:48:06.0 +0100
-+++ lat-1.2.4/configure.ac 2018-09-03 00:58:14.508472772 +0200
-@@ -28,7 +28,6 @@
- 
- PKG_CHECK_MODULES(GTKSHARP,
- gtk-sharp-2.0 >= $GTKSHARP_REQUIRED \
--gconf-sharp-2.0 >= $GTKSHARP_REQUIRED \
- glade-sharp-2.0 >= $GTKSHARP_REQUIRED)
- 
- AC_SUBST(GTKSHARP_LIBS)
-diff -Naur lat-1.2.4.orig/lat/LdapTreeView.cs lat-1.2.4/lat/LdapTreeView.cs
 lat-1.2.4.orig/lat/LdapTreeView.cs 2012-01-09 21:24:10.0 +0100
-+++ lat-1.2.4/lat/LdapTreeView.cs  2018-09-03 01:11:14.148828656 +0200
-@@ -73,8 +73,6 @@
-   Gtk.ToolButton _newButton = null;
-   Gtk.ToolButton _deleteButton = null;
- 
--  int browserSelectionMethod = 0;
--
-   enum TreeCols { Icon, DN, RDN };
- 
-   public event dnSelectedHandler dnSelected;
-@@ -143,7 +141,6 @@
-   this.RowActivated += new RowActivatedHandler 

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

2018-12-29 Thread Brad Fanella via arch-commits
Date: Saturday, December 29, 2018 @ 21:42:47
  Author: cesura
Revision: 418930

archrelease: copy trunk to community-x86_64

Added:
  mate-terminal/repos/community-x86_64/PKGBUILD
(from rev 418929, mate-terminal/trunk/PKGBUILD)
Deleted:
  mate-terminal/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-29 21:42:19 UTC (rev 418929)
+++ PKGBUILD2018-12-29 21:42:47 UTC (rev 418930)
@@ -1,29 +0,0 @@
-# Maintainer: Brad Fanella 
-# Contributor: Martin Wimpress 
-
-pkgname=mate-terminal
-pkgver=1.20.1
-pkgrel=1
-pkgdesc="The MATE Terminal Emulator"
-url="https://mate-desktop.org;
-arch=('x86_64')
-license=('GPL')
-depends=('libsm' 'mate-desktop' 'vte3')
-makedepends=('intltool' 'itstool' 'python')
-groups=('mate-extra')
-conflicts=('mate-terminal-gtk3')
-replaces=('mate-terminal-gtk3')
-source=("https://pub.mate-desktop.org/releases/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
-sha256sums=('27a97914d92f5cc1b0744fe10c60d0484d7eeb699bc5dafe2fc3f75b4f41d979')
-
-build() {
-cd ${pkgname}-${pkgver}
-./configure \
---prefix=/usr
-make
-}
-
-package() {
-cd ${pkgname}-${pkgver}
-make DESTDIR="${pkgdir}" install
-}

Copied: mate-terminal/repos/community-x86_64/PKGBUILD (from rev 418929, 
mate-terminal/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-29 21:42:47 UTC (rev 418930)
@@ -0,0 +1,29 @@
+# Maintainer: Brad Fanella 
+# Contributor: Martin Wimpress 
+
+pkgname=mate-terminal
+pkgver=1.20.2
+pkgrel=1
+pkgdesc="The MATE Terminal Emulator"
+url="https://mate-desktop.org;
+arch=('x86_64')
+license=('GPL')
+depends=('libsm' 'mate-desktop' 'vte3')
+makedepends=('intltool' 'itstool' 'python')
+groups=('mate-extra')
+conflicts=('mate-terminal-gtk3')
+replaces=('mate-terminal-gtk3')
+source=("https://pub.mate-desktop.org/releases/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
+sha256sums=('78dc43f14042ddb002931457aa4f632d3381b53eadfa57a67fa12bf215881e3b')
+
+build() {
+   cd "${pkgname}-${pkgver}"
+   ./configure \
+   --prefix=/usr
+   make
+}
+
+package() {
+   cd "${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+}


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

2018-12-29 Thread Brad Fanella via arch-commits
Date: Saturday, December 29, 2018 @ 21:42:19
  Author: cesura
Revision: 418929

upgpkg: mate-terminal 1.20.2-1

Updated to version 1.20.2

Modified:
  mate-terminal/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-29 21:35:01 UTC (rev 418928)
+++ PKGBUILD2018-12-29 21:42:19 UTC (rev 418929)
@@ -2,7 +2,7 @@
 # Contributor: Martin Wimpress 
 
 pkgname=mate-terminal
-pkgver=1.20.1
+pkgver=1.20.2
 pkgrel=1
 pkgdesc="The MATE Terminal Emulator"
 url="https://mate-desktop.org;
@@ -14,16 +14,16 @@
 conflicts=('mate-terminal-gtk3')
 replaces=('mate-terminal-gtk3')
 
source=("https://pub.mate-desktop.org/releases/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
-sha256sums=('27a97914d92f5cc1b0744fe10c60d0484d7eeb699bc5dafe2fc3f75b4f41d979')
+sha256sums=('78dc43f14042ddb002931457aa4f632d3381b53eadfa57a67fa12bf215881e3b')
 
 build() {
-cd ${pkgname}-${pkgver}
-./configure \
---prefix=/usr
-make
+   cd "${pkgname}-${pkgver}"
+   ./configure \
+   --prefix=/usr
+   make
 }
 
 package() {
-cd ${pkgname}-${pkgver}
-make DESTDIR="${pkgdir}" install
+   cd "${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
 }


[arch-commits] Commit in mate-power-manager/repos/community-x86_64 (PKGBUILD PKGBUILD)

2018-12-29 Thread Brad Fanella via arch-commits
Date: Saturday, December 29, 2018 @ 21:35:01
  Author: cesura
Revision: 418928

archrelease: copy trunk to community-x86_64

Added:
  mate-power-manager/repos/community-x86_64/PKGBUILD
(from rev 418927, mate-power-manager/trunk/PKGBUILD)
Deleted:
  mate-power-manager/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-29 21:33:52 UTC (rev 418927)
+++ PKGBUILD2018-12-29 21:35:01 UTC (rev 418928)
@@ -1,37 +0,0 @@
-# Maintainer: Brad Fanella 
-# Contributor: Martin Wimpress 
-
-pkgname=mate-power-manager
-pkgver=1.20.2
-pkgrel=2
-pkgdesc="Power management tool for the MATE desktop"
-url="https://mate-desktop.org;
-arch=('x86_64')
-license=('GPL')
-depends=('dbus-glib' 'libcanberra' 'libnotify' 'upower')
-makedepends=('intltool' 'itstool' 'mate-panel' 'python')
-optdepends=('mate-panel: Set brightness and inhibit power management from the 
panel')
-source=("https://pub.mate-desktop.org/releases/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
-groups=('mate-extra')
-conflicts=('mate-power-manager-gtk3')
-replaces=('mate-power-manager-gtk3')
-sha256sums=('506e58d23cdfd06f65159effbfd5ebd2e3e5625a9d8de77ae7502b6ebb24e5fc')
-
-build() {
-cd ${pkgname}-${pkgver}
-./configure \
---prefix=/usr \
---libexecdir=/usr/lib/${pkgname} \
---sysconfdir=/etc \
---localstatedir=/var \
---sbindir=/usr/bin \
---enable-applets \
---disable-strict \
---without-keyring
-make
-}
-
-package() {
-cd ${pkgname}-${pkgver}
-make DESTDIR="${pkgdir}" install
-}

Copied: mate-power-manager/repos/community-x86_64/PKGBUILD (from rev 418927, 
mate-power-manager/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-29 21:35:01 UTC (rev 418928)
@@ -0,0 +1,37 @@
+# Maintainer: Brad Fanella 
+# Contributor: Martin Wimpress 
+
+pkgname=mate-power-manager
+pkgver=1.20.3
+pkgrel=1
+pkgdesc="Power management tool for the MATE desktop"
+url="https://mate-desktop.org;
+arch=('x86_64')
+license=('GPL')
+depends=('dbus-glib' 'libcanberra' 'libnotify' 'upower')
+makedepends=('intltool' 'itstool' 'mate-panel' 'python')
+optdepends=('mate-panel: Set brightness and inhibit power management from the 
panel')
+source=("https://pub.mate-desktop.org/releases/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
+groups=('mate-extra')
+conflicts=('mate-power-manager-gtk3')
+replaces=('mate-power-manager-gtk3')
+sha256sums=('25435fa01c18e11d7d26c113e59bf0be35fbfa705c8abd86c1baf7d98a3ca49f')
+
+build() {
+   cd "${pkgname}-${pkgver}"
+   ./configure \
+   --prefix=/usr \
+   --libexecdir=/usr/lib/${pkgname} \
+   --sysconfdir=/etc \
+   --localstatedir=/var \
+   --sbindir=/usr/bin \
+   --enable-applets \
+   --disable-strict \
+   --without-keyring
+   make
+}
+
+package() {
+   cd "${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+}


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

2018-12-29 Thread Brad Fanella via arch-commits
Date: Saturday, December 29, 2018 @ 21:33:52
  Author: cesura
Revision: 418927

upgpkg: mate-power-manager 1.20.3-1

Updated to version 1.20.3

Modified:
  mate-power-manager/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-29 21:31:14 UTC (rev 418926)
+++ PKGBUILD2018-12-29 21:33:52 UTC (rev 418927)
@@ -2,8 +2,8 @@
 # Contributor: Martin Wimpress 
 
 pkgname=mate-power-manager
-pkgver=1.20.2
-pkgrel=2
+pkgver=1.20.3
+pkgrel=1
 pkgdesc="Power management tool for the MATE desktop"
 url="https://mate-desktop.org;
 arch=('x86_64')
@@ -15,23 +15,23 @@
 groups=('mate-extra')
 conflicts=('mate-power-manager-gtk3')
 replaces=('mate-power-manager-gtk3')
-sha256sums=('506e58d23cdfd06f65159effbfd5ebd2e3e5625a9d8de77ae7502b6ebb24e5fc')
+sha256sums=('25435fa01c18e11d7d26c113e59bf0be35fbfa705c8abd86c1baf7d98a3ca49f')
 
 build() {
-cd ${pkgname}-${pkgver}
-./configure \
---prefix=/usr \
---libexecdir=/usr/lib/${pkgname} \
---sysconfdir=/etc \
---localstatedir=/var \
---sbindir=/usr/bin \
---enable-applets \
---disable-strict \
---without-keyring
-make
+   cd "${pkgname}-${pkgver}"
+   ./configure \
+   --prefix=/usr \
+   --libexecdir=/usr/lib/${pkgname} \
+   --sysconfdir=/etc \
+   --localstatedir=/var \
+   --sbindir=/usr/bin \
+   --enable-applets \
+   --disable-strict \
+   --without-keyring
+   make
 }
 
 package() {
-cd ${pkgname}-${pkgver}
-make DESTDIR="${pkgdir}" install
+   cd "${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
 }


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

2018-12-29 Thread Felix Yan via arch-commits
Date: Saturday, December 29, 2018 @ 21:31:14
  Author: felixonmars
Revision: 418926

archrelease: copy trunk to multilib-x86_64

Added:
  wine-staging/repos/multilib-x86_64/30-win32-aliases.conf
(from rev 418925, wine-staging/trunk/30-win32-aliases.conf)
  wine-staging/repos/multilib-x86_64/PKGBUILD
(from rev 418925, wine-staging/trunk/PKGBUILD)
  wine-staging/repos/multilib-x86_64/wine-binfmt.conf
(from rev 418925, wine-staging/trunk/wine-binfmt.conf)
  wine-staging/repos/multilib-x86_64/wine.install
(from rev 418925, wine-staging/trunk/wine.install)
Deleted:
  wine-staging/repos/multilib-x86_64/30-win32-aliases.conf
  wine-staging/repos/multilib-x86_64/PKGBUILD
  wine-staging/repos/multilib-x86_64/wine-binfmt.conf
  wine-staging/repos/multilib-x86_64/wine.install

--+
 PKGBUILD |  360 ++---
 wine-binfmt.conf |4 
 wine.install |   14 +-
 3 files changed, 189 insertions(+), 189 deletions(-)

Deleted: 30-win32-aliases.conf
===
(Binary files differ)

Copied: wine-staging/repos/multilib-x86_64/30-win32-aliases.conf (from rev 
418925, wine-staging/trunk/30-win32-aliases.conf)
===
(Binary files differ)

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-29 21:30:50 UTC (rev 418925)
+++ PKGBUILD2018-12-29 21:31:14 UTC (rev 418926)
@@ -1,180 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Sven-Hendrik Haase 
-# Contributor: Jan "heftig" Steffens 
-# Contributor: Eduardo Romero 
-# Contributor: Giovanni Scafora 
-
-pkgname=wine-staging
-pkgver=4.0rc3
-pkgrel=1
-
-_pkgbasever=${pkgver/rc/-rc}
-
-source=(https://dl.winehq.org/wine/source/4.0/wine-$_pkgbasever.tar.xz{,.sign}
-
"wine-staging-v$_pkgbasever.tar.gz::https://github.com/wine-staging/wine-staging/archive/v$_pkgbasever.tar.gz;
-30-win32-aliases.conf
-wine-binfmt.conf)
-sha512sums=('8987dd46581803ef669a5b29b69268ded471644071443119c90bb0830ed2f1c6781107c17ac291188360b075a076da7f70602927354797c309df1bdca1e61c86'
-'SKIP'
-
'5494a0f04ac76ea2f1f4bcf4d9a1b2eb86d7ddf93d55aa8ac4571f807ec04e970daee8fb69a8f81c96d5394b8fc8f67a068e0ca1bf27f45e825900670cb9b098'
-
'6e54ece7ec7022b3c9d94ad64bdf1017338da16c618966e8baf398e6f18f80f7b0576edf1d1da47ed77b96d577e4cbb2bb0156b0b11c183a0accf22654b0a2bb'
-
'bdde7ae015d8a98ba55e84b86dc05aca1d4f8de85be7e4bd6187054bfe4ac83b5a20538945b63fb073caab78022141e9545685e4e3698c97ff173cf30859e285')
-validpgpkeys=(5AC1A08B03BD7A313E0A955AF5E6E9EEB9461DD7
-  DA23579A74D4AD9AF9D3F945CEFAC8EAAF17519D)
-
-pkgdesc="A compatibility layer for running Windows programs - Staging branch"
-url="http://www.wine-staging.com;
-arch=(x86_64)
-options=(staticlibs)
-license=(LGPL)
-
-depends=(
-  attr lib32-attr
-  fontconfig   lib32-fontconfig
-  lcms2lib32-lcms2
-  libxml2  lib32-libxml2
-  libxcursor   lib32-libxcursor
-  libxrandrlib32-libxrandr
-  libxdamage   lib32-libxdamage
-  libxilib32-libxi
-  gettext  lib32-gettext
-  freetype2lib32-freetype2
-  glu  lib32-glu
-  libsmlib32-libsm
-  gcc-libs lib32-gcc-libs
-  libpcap  lib32-libpcap
-  desktop-file-utils
-)
-
-makedepends=(autoconf ncurses bison perl fontforge flex
-  'gcc>=4.5.0-2'
-  gifliblib32-giflib
-  libpnglib32-libpng
-  gnutlslib32-gnutls
-  libxinerama   lib32-libxinerama
-  libxcomposite lib32-libxcomposite
-  libxmulib32-libxmu
-  libxxf86vmlib32-libxxf86vm
-  libldap   lib32-libldap
-  mpg123lib32-mpg123
-  openallib32-openal
-  v4l-utils lib32-v4l-utils
-  alsa-lib  lib32-alsa-lib
-  libxcomposite lib32-libxcomposite
-  mesa  lib32-mesa
-  mesa-libgllib32-mesa-libgl
-  opencl-icd-loader lib32-opencl-icd-loader
-  libxslt   lib32-libxslt
-  libpulse  lib32-libpulse
-  libva lib32-libva
-  gtk3  lib32-gtk3
-  gst-plugins-base-libs lib32-gst-plugins-base-libs
-  vulkan-icd-loader lib32-vulkan-icd-loader
-  sdl2  lib32-sdl2
-  samba
-  opencl-headers
-)
-
-optdepends=(
-  gifliblib32-giflib
-  libpnglib32-libpng
-  libldap   lib32-libldap
-  gnutlslib32-gnutls
-  mpg123lib32-mpg123
-  openallib32-openal
-  v4l-utils lib32-v4l-utils
-  libpulse  lib32-libpulse
-  alsa-plugins  lib32-alsa-plugins
-  alsa-lib  lib32-alsa-lib
-  libjpeg-turbo lib32-libjpeg-turbo
-  libxcomposite 

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

2018-12-29 Thread Felix Yan via arch-commits
Date: Saturday, December 29, 2018 @ 21:30:50
  Author: felixonmars
Revision: 418925

upgpkg: wine-staging 4.0rc4-1

Modified:
  wine-staging/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-29 21:28:19 UTC (rev 418924)
+++ PKGBUILD2018-12-29 21:30:50 UTC (rev 418925)
@@ -5,7 +5,7 @@
 # Contributor: Giovanni Scafora 
 
 pkgname=wine-staging
-pkgver=4.0rc3
+pkgver=4.0rc4
 pkgrel=1
 
 _pkgbasever=${pkgver/rc/-rc}
@@ -14,9 +14,9 @@
 
"wine-staging-v$_pkgbasever.tar.gz::https://github.com/wine-staging/wine-staging/archive/v$_pkgbasever.tar.gz;
 30-win32-aliases.conf
 wine-binfmt.conf)
-sha512sums=('8987dd46581803ef669a5b29b69268ded471644071443119c90bb0830ed2f1c6781107c17ac291188360b075a076da7f70602927354797c309df1bdca1e61c86'
+sha512sums=('683b696ea1225da73495758f08715ba6fb2f8e0477942462f2c627da1f695d868b54287fdb6dba8252211d794e40c4bb3c881d68e792bf196e0a4271347212bb'
 'SKIP'
-
'5494a0f04ac76ea2f1f4bcf4d9a1b2eb86d7ddf93d55aa8ac4571f807ec04e970daee8fb69a8f81c96d5394b8fc8f67a068e0ca1bf27f45e825900670cb9b098'
+
'63c6cb0bf10b9bf2aeb2a93d70e6a4efabdb4bb617f93ca68b2eb9de51837c6a15e970063fa9f3c067aa65d32c87ebef3e888565962f8fd541276e4be97b1855'
 
'6e54ece7ec7022b3c9d94ad64bdf1017338da16c618966e8baf398e6f18f80f7b0576edf1d1da47ed77b96d577e4cbb2bb0156b0b11c183a0accf22654b0a2bb'
 
'bdde7ae015d8a98ba55e84b86dc05aca1d4f8de85be7e4bd6187054bfe4ac83b5a20538945b63fb073caab78022141e9545685e4e3698c97ff173cf30859e285')
 validpgpkeys=(5AC1A08B03BD7A313E0A955AF5E6E9EEB9461DD7


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

2018-12-29 Thread Brad Fanella via arch-commits
Date: Saturday, December 29, 2018 @ 21:28:19
  Author: cesura
Revision: 418924

archrelease: copy trunk to community-x86_64

Added:
  mate-panel/repos/community-x86_64/PKGBUILD
(from rev 418923, mate-panel/trunk/PKGBUILD)
Deleted:
  mate-panel/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-29 21:27:55 UTC (rev 418923)
+++ PKGBUILD2018-12-29 21:28:19 UTC (rev 418924)
@@ -1,37 +0,0 @@
-# Maintainer: Brad Fanella 
-# Contributor: Martin Wimpress 
-
-pkgname=mate-panel
-pkgver=1.20.3
-pkgrel=1
-pkgdesc="The MATE Panel"
-url="https://mate-desktop.org;
-arch=('x86_64')
-license=('GPL')
-depends=('dbus-glib' 'libwnck3' 'libcanberra' 'libmateweather' 'libsm' 
'mate-menus' 'mate-desktop')
-makedepends=('intltool' 'itstool' 'gobject-introspection')
-source=("https://pub.mate-desktop.org/releases/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
-groups=('mate')
-conflicts=('mate-panel-gtk3')
-replaces=('mate-panel-gtk3')
-sha256sums=('ceb56d7de37c162e3671e3bf061753d0af3aa3b8e477b04ddb90301a9ab6e856')
-
-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-panel/repos/community-x86_64/PKGBUILD (from rev 418923, 
mate-panel/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-29 21:28:19 UTC (rev 418924)
@@ -0,0 +1,37 @@
+# Maintainer: Brad Fanella 
+# Contributor: Martin Wimpress 
+
+pkgname=mate-panel
+pkgver=1.20.3
+pkgrel=1
+pkgdesc="The MATE Panel"
+url="https://mate-desktop.org;
+arch=('x86_64')
+license=('GPL')
+depends=('dbus-glib' 'libwnck3' 'libcanberra' 'libmateweather' 'libsm' 
'mate-menus' 'mate-desktop')
+makedepends=('intltool' 'itstool' 'gobject-introspection')
+source=("https://pub.mate-desktop.org/releases/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
+groups=('mate')
+conflicts=('mate-panel-gtk3')
+replaces=('mate-panel-gtk3')
+sha256sums=('ceb56d7de37c162e3671e3bf061753d0af3aa3b8e477b04ddb90301a9ab6e856')
+
+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 wine/repos/multilib-x86_64 (8 files)

2018-12-29 Thread Felix Yan via arch-commits
Date: Saturday, December 29, 2018 @ 21:27:55
  Author: felixonmars
Revision: 418923

archrelease: copy trunk to multilib-x86_64

Added:
  wine/repos/multilib-x86_64/30-win32-aliases.conf
(from rev 418921, wine/trunk/30-win32-aliases.conf)
  wine/repos/multilib-x86_64/PKGBUILD
(from rev 418921, wine/trunk/PKGBUILD)
  wine/repos/multilib-x86_64/wine-binfmt.conf
(from rev 418921, wine/trunk/wine-binfmt.conf)
  wine/repos/multilib-x86_64/wine.install
(from rev 418922, wine/trunk/wine.install)
Deleted:
  wine/repos/multilib-x86_64/30-win32-aliases.conf
  wine/repos/multilib-x86_64/PKGBUILD
  wine/repos/multilib-x86_64/wine-binfmt.conf
  wine/repos/multilib-x86_64/wine.install

---+
 30-win32-aliases.conf |   40 ++---
 PKGBUILD  |  328 
 wine-binfmt.conf  |4 
 wine.install  |   14 +-
 4 files changed, 193 insertions(+), 193 deletions(-)

Deleted: 30-win32-aliases.conf
===
--- 30-win32-aliases.conf   2018-12-29 21:27:44 UTC (rev 418922)
+++ 30-win32-aliases.conf   2018-12-29 21:27:55 UTC (rev 418923)
@@ -1,20 +0,0 @@
-
-
-
-  
-MS Shell Dlg
-Microsoft Sans Serif
-sans-serif
-  
-  
-MS Shell Dlg 2
-Tahoma
-sans-serif
-  
-
-  
-MS Sans Serif
-Microsoft Sans Serif
-sans-serif
-  
-

Copied: wine/repos/multilib-x86_64/30-win32-aliases.conf (from rev 418921, 
wine/trunk/30-win32-aliases.conf)
===
--- 30-win32-aliases.conf   (rev 0)
+++ 30-win32-aliases.conf   2018-12-29 21:27:55 UTC (rev 418923)
@@ -0,0 +1,20 @@
+
+
+
+  
+MS Shell Dlg
+Microsoft Sans Serif
+sans-serif
+  
+  
+MS Shell Dlg 2
+Tahoma
+sans-serif
+  
+
+  
+MS Sans Serif
+Microsoft Sans Serif
+sans-serif
+  
+

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-29 21:27:44 UTC (rev 418922)
+++ PKGBUILD2018-12-29 21:27:55 UTC (rev 418923)
@@ -1,164 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Jan "heftig" Steffens 
-# Contributor: Eduardo Romero 
-# Contributor: Giovanni Scafora 
-
-pkgname=wine
-pkgver=4.0rc3
-pkgrel=1
-
-_pkgbasever=${pkgver/rc/-rc}
-
-source=(https://dl.winehq.org/wine/source/4.0/$pkgname-$_pkgbasever.tar.xz{,.sign}
-30-win32-aliases.conf
-wine-binfmt.conf)
-sha512sums=('8987dd46581803ef669a5b29b69268ded471644071443119c90bb0830ed2f1c6781107c17ac291188360b075a076da7f70602927354797c309df1bdca1e61c86'
-'SKIP'
-
'6e54ece7ec7022b3c9d94ad64bdf1017338da16c618966e8baf398e6f18f80f7b0576edf1d1da47ed77b96d577e4cbb2bb0156b0b11c183a0accf22654b0a2bb'
-
'bdde7ae015d8a98ba55e84b86dc05aca1d4f8de85be7e4bd6187054bfe4ac83b5a20538945b63fb073caab78022141e9545685e4e3698c97ff173cf30859e285')
-validpgpkeys=(5AC1A08B03BD7A313E0A955AF5E6E9EEB9461DD7
-  DA23579A74D4AD9AF9D3F945CEFAC8EAAF17519D)
-
-pkgdesc="A compatibility layer for running Windows programs"
-url="http://www.winehq.com;
-arch=(x86_64)
-options=(staticlibs)
-license=(LGPL)
-depends=(
-  fontconfig  lib32-fontconfig
-  lcms2   lib32-lcms2
-  libxml2 lib32-libxml2
-  libxcursor  lib32-libxcursor
-  libxrandr   lib32-libxrandr
-  libxdamage  lib32-libxdamage
-  libxi   lib32-libxi
-  gettext lib32-gettext
-  freetype2   lib32-freetype2
-  glu lib32-glu
-  libsm   lib32-libsm
-  gcc-libslib32-gcc-libs
-  libpcap lib32-libpcap
-  desktop-file-utils
-)
-makedepends=(autoconf ncurses bison perl fontforge flex
-  'gcc>=4.5.0-2'
-  gifliblib32-giflib
-  libpnglib32-libpng
-  gnutlslib32-gnutls
-  libxinerama   lib32-libxinerama
-  libxcomposite lib32-libxcomposite
-  libxmulib32-libxmu
-  libxxf86vmlib32-libxxf86vm
-  libldap   lib32-libldap
-  mpg123lib32-mpg123
-  openallib32-openal
-  v4l-utils lib32-v4l-utils
-  libpulse  lib32-libpulse
-  alsa-lib  lib32-alsa-lib
-  libxcomposite lib32-libxcomposite
-  mesa  lib32-mesa
-  mesa-libgllib32-mesa-libgl
-  opencl-icd-loader lib32-opencl-icd-loader
-  libxslt   lib32-libxslt
-  gst-plugins-base-libs lib32-gst-plugins-base-libs
-  vulkan-icd-loader lib32-vulkan-icd-loader
-  vulkan-headers
-  samba
-  opencl-headers
-)
-optdepends=(
-  gifliblib32-giflib
-  libpnglib32-libpng
-  libldap   lib32-libldap
-  gnutlslib32-gnutls
-  mpg123lib32-mpg123
-  openallib32-openal
-  v4l-utils lib32-v4l-utils
-  libpulse  lib32-libpulse
-  alsa-plugins  

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

2018-12-29 Thread Brad Fanella via arch-commits
Date: Saturday, December 29, 2018 @ 21:27:44
  Author: cesura
Revision: 418922

upgpkg: mate-panel 1.20.3-1

Updated to version 1.20.3

Modified:
  mate-panel/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-29 21:27:30 UTC (rev 418921)
+++ PKGBUILD2018-12-29 21:27:44 UTC (rev 418922)
@@ -17,21 +17,21 @@
 sha256sums=('ceb56d7de37c162e3671e3bf061753d0af3aa3b8e477b04ddb90301a9ab6e856')
 
 build() {
-cd ${pkgname}-${pkgver}
-./configure \
---prefix=/usr \
---libexecdir=/usr/lib/${pkgname} \
---sysconfdir=/etc \
---localstatedir=/var \
---enable-introspection
+   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
+   #https://bugzilla.gnome.org/show_bug.cgi?id=656231
+   sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
 
-make
+   make
 }
 
 package() {
-cd ${pkgname}-${pkgver}
-make DESTDIR="${pkgdir}" install
+   cd "${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
 }


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

2018-12-29 Thread Felix Yan via arch-commits
Date: Saturday, December 29, 2018 @ 21:27:30
  Author: felixonmars
Revision: 418921

upgpkg: wine 4.0rc4-1

Modified:
  wine/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-29 21:11:56 UTC (rev 418920)
+++ PKGBUILD2018-12-29 21:27:30 UTC (rev 418921)
@@ -4,7 +4,7 @@
 # Contributor: Giovanni Scafora 
 
 pkgname=wine
-pkgver=4.0rc3
+pkgver=4.0rc4
 pkgrel=1
 
 _pkgbasever=${pkgver/rc/-rc}
@@ -12,7 +12,7 @@
 
source=(https://dl.winehq.org/wine/source/4.0/$pkgname-$_pkgbasever.tar.xz{,.sign}
 30-win32-aliases.conf
 wine-binfmt.conf)
-sha512sums=('8987dd46581803ef669a5b29b69268ded471644071443119c90bb0830ed2f1c6781107c17ac291188360b075a076da7f70602927354797c309df1bdca1e61c86'
+sha512sums=('683b696ea1225da73495758f08715ba6fb2f8e0477942462f2c627da1f695d868b54287fdb6dba8252211d794e40c4bb3c881d68e792bf196e0a4271347212bb'
 'SKIP'
 
'6e54ece7ec7022b3c9d94ad64bdf1017338da16c618966e8baf398e6f18f80f7b0576edf1d1da47ed77b96d577e4cbb2bb0156b0b11c183a0accf22654b0a2bb'
 
'bdde7ae015d8a98ba55e84b86dc05aca1d4f8de85be7e4bd6187054bfe4ac83b5a20538945b63fb073caab78022141e9545685e4e3698c97ff173cf30859e285')


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

2018-12-29 Thread Felix Yan via arch-commits
Date: Saturday, December 29, 2018 @ 21:27:12
  Author: felixonmars
Revision: 342787

archrelease: copy trunk to testing-x86_64

Added:
  cmake/repos/testing-x86_64/
  cmake/repos/testing-x86_64/PKGBUILD
(from rev 342786, cmake/trunk/PKGBUILD)
  cmake/repos/testing-x86_64/rebuild.list
(from rev 342786, cmake/trunk/rebuild.list)

--+
 PKGBUILD |   51 +++
 rebuild.list |2 ++
 2 files changed, 53 insertions(+)

Copied: cmake/repos/testing-x86_64/PKGBUILD (from rev 342786, 
cmake/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2018-12-29 21:27:12 UTC (rev 342787)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=cmake
+pkgver=3.13.2
+pkgrel=1
+pkgdesc='A cross-platform open-source make system'
+arch=('x86_64')
+url="http://www.cmake.org/;
+license=('custom')
+depends=('curl' 'libarchive' 'shared-mime-info' 'jsoncpp' 'libuv' 'rhash')
+makedepends=('qt5-base' 'python-sphinx' 'emacs')
+optdepends=('qt5-base: cmake-gui'
+'libxkbcommon-x11: cmake-gui')
+source=("https://www.cmake.org/files/v${pkgver%.*}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('da095d483326ed379bfc8fa54e95db3426149ab923479a757149a4aed5c90693c0244bc2c9550cf4b64385f5003ee2060fea1698d989ed13bd0198e718c40903')
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  ./bootstrap --prefix=/usr \
+--mandir=/share/man \
+--docdir=/share/doc/cmake \
+--sphinx-man \
+--system-libs \
+--qt-gui \
+--parallel=$(/usr/bin/getconf _NPROCESSORS_ONLN)
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  vimpath="${pkgdir}/usr/share/vim/vimfiles"
+  install -d "${vimpath}"/{help,indent,syntax}
+  ln -s /usr/share/cmake-${pkgver%.*}/editors/vim/indent/cmake.vim \
+"${vimpath}"/indent/
+  ln -s /usr/share/cmake-${pkgver%.*}/editors/vim/syntax/cmake.vim \
+"${vimpath}"/syntax/
+
+  install -d "${pkgdir}"/usr/share/emacs/site-lisp/
+  emacs -batch -f batch-byte-compile \
+"${pkgdir}"/usr/share/cmake-${pkgver%.*}/editors/emacs/cmake-mode.el
+  ln -s /usr/share/cmake-${pkgver%.*}/editors/emacs/cmake-mode.el \
+"${pkgdir}"/usr/share/emacs/site-lisp/
+
+  install -Dm644 Copyright.txt \
+"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}

Copied: cmake/repos/testing-x86_64/rebuild.list (from rev 342786, 
cmake/trunk/rebuild.list)
===
--- testing-x86_64/rebuild.list (rev 0)
+++ testing-x86_64/rebuild.list 2018-12-29 21:27:12 UTC (rev 342787)
@@ -0,0 +1,2 @@
+cmake-fedora
+uranium


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

2018-12-29 Thread Felix Yan via arch-commits
Date: Saturday, December 29, 2018 @ 21:26:57
  Author: felixonmars
Revision: 342786

upgpkg: cmake 3.13.2-1

Modified:
  cmake/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-29 21:21:05 UTC (rev 342785)
+++ PKGBUILD2018-12-29 21:26:57 UTC (rev 342786)
@@ -3,7 +3,7 @@
 # Contributor: Pierre Schmitz 
 
 pkgname=cmake
-pkgver=3.13.1
+pkgver=3.13.2
 pkgrel=1
 pkgdesc='A cross-platform open-source make system'
 arch=('x86_64')
@@ -14,7 +14,7 @@
 optdepends=('qt5-base: cmake-gui'
 'libxkbcommon-x11: cmake-gui')
 
source=("https://www.cmake.org/files/v${pkgver%.*}/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('693520e53fa21e81f5f15e6f8979e5264e3bf7e194e4c19b884a44767b3b6d6535dee674f355440e7dcac480372882152c0523ac3c2f1c12d51b43540bcffa59')
+sha512sums=('da095d483326ed379bfc8fa54e95db3426149ab923479a757149a4aed5c90693c0244bc2c9550cf4b64385f5003ee2060fea1698d989ed13bd0198e718c40903')
 
 build() {
   cd ${pkgname}-${pkgver}


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

2018-12-29 Thread Felix Yan via arch-commits
Date: Saturday, December 29, 2018 @ 21:21:05
  Author: felixonmars
Revision: 342785

archrelease: copy trunk to testing-x86_64

Added:
  rp-pppoe/repos/testing-x86_64/
  rp-pppoe/repos/testing-x86_64/PKGBUILD
(from rev 342784, rp-pppoe/trunk/PKGBUILD)
  rp-pppoe/repos/testing-x86_64/adsl.service
(from rev 342784, rp-pppoe/trunk/adsl.service)
  rp-pppoe/repos/testing-x86_64/kmode.patch
(from rev 342784, rp-pppoe/trunk/kmode.patch)
  rp-pppoe/repos/testing-x86_64/rp-pppoe-linux-headers.patch
(from rev 342784, rp-pppoe/trunk/rp-pppoe-linux-headers.patch)
  rp-pppoe/repos/testing-x86_64/rp-pppoe.install
(from rev 342784, rp-pppoe/trunk/rp-pppoe.install)

--+
 PKGBUILD |   36 
 adsl.service |   10 ++
 kmode.patch  |   19 +++
 rp-pppoe-linux-headers.patch |   28 
 rp-pppoe.install |   12 
 5 files changed, 105 insertions(+)

Copied: rp-pppoe/repos/testing-x86_64/PKGBUILD (from rev 342784, 
rp-pppoe/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2018-12-29 21:21:05 UTC (rev 342785)
@@ -0,0 +1,36 @@
+# Maintainer: Felix Yan 
+# Contributor: Daniel Isenmann 
+# Contributor: orelien 
+
+pkgname=rp-pppoe
+pkgver=3.13
+pkgrel=1
+pkgdesc="Roaring Penguin's Point-to-Point Protocol over Ethernet client"
+arch=('x86_64')
+url="https://dianne.skoll.ca/projects/rp-pppoe;
+license=('GPL')
+depends=('ppp=2.4.7' 'sh' 'net-tools')
+backup=(etc/ppp/pppoe.conf etc/ppp/firewall-standalone etc/ppp/firewall-masq 
+etc/ppp/pppoe-server-options)
+options=('!makeflags')
+install=rp-pppoe.install
+source=(https://dianne.skoll.ca/projects/rp-pppoe/download/rp-pppoe-$pkgver.tar.gz{,.sig}
 
+   adsl.service)
+validpgpkeys=('FC2E9B645468698FD7B21655C1842E2A126F42E0') # Dianne Skoll
+sha512sums=('e29ddc39252a0e71d509096e275f6f195f86a5871052dd558e8fb174d13086b1c601e6652f45619279a1eb2fbda96ba0ec85dea9edb27459af56ded4a52b5f36'
+'SKIP'
+
'75fdb55b872e6388053aa0c1ba0b98ab9eda6b6f59a7452843cff8de5a68276be3f48dbd9a6324917254d4fe0d1b2d7442f7a9bbfa1355b6f500db13c9409089')
+
+build() {
+  cd $pkgname-$pkgver/src
+  ./configure --prefix=/usr --sbindir=/usr/bin --enable-plugin
+  make PLUGIN_DIR="/usr/lib/rp-pppoe" all rp-pppoe.so
+}
+
+package() {
+  cd $pkgname-$pkgver/src
+  make PLUGIN_DIR="/usr/lib/rp-pppoe" DESTDIR="$pkgdir" install
+
+  #install -Dm755 "$srcdir/adsl" "$pkgdir/etc/rc.d/adsl"
+  install -Dm644 "$srcdir/adsl.service" 
"$pkgdir/usr/lib/systemd/system/adsl.service"
+}

Copied: rp-pppoe/repos/testing-x86_64/adsl.service (from rev 342784, 
rp-pppoe/trunk/adsl.service)
===
--- testing-x86_64/adsl.service (rev 0)
+++ testing-x86_64/adsl.service 2018-12-29 21:21:05 UTC (rev 342785)
@@ -0,0 +1,10 @@
+[Unit]
+Description=ADSL Daemon
+
+[Service]
+Type=forking
+ExecStart=/usr/bin/pppoe-start
+ExecStop=/usr/bin/pppoe-stop
+
+[Install]
+WantedBy=multi-user.target

Copied: rp-pppoe/repos/testing-x86_64/kmode.patch (from rev 342784, 
rp-pppoe/trunk/kmode.patch)
===
--- testing-x86_64/kmode.patch  (rev 0)
+++ testing-x86_64/kmode.patch  2018-12-29 21:21:05 UTC (rev 342785)
@@ -0,0 +1,19 @@
+diff -up rp-pppoe-3.11/src/configure.orig rp-pppoe-3.11/src/configure
+--- rp-pppoe-3.11/src/configure.orig   2012-08-17 12:31:25.0 -0600
 rp-pppoe-3.11/src/configure2013-02-11 14:23:05.0 -0700
+@@ -3709,6 +3709,7 @@ do :
+ #include
+ #include
+ #include
++#include
+ 
+ "
+ if test "x$ac_cv_header_linux_if_pppox_h" = x""yes; then :
+@@ -4559,6 +4559,7 @@ else
+ #include 
+ #include 
+ #include 
++#include 
+ #include 
+ int main()
+ {

Copied: rp-pppoe/repos/testing-x86_64/rp-pppoe-linux-headers.patch (from rev 
342784, rp-pppoe/trunk/rp-pppoe-linux-headers.patch)
===
--- testing-x86_64/rp-pppoe-linux-headers.patch (rev 0)
+++ testing-x86_64/rp-pppoe-linux-headers.patch 2018-12-29 21:21:05 UTC (rev 
342785)
@@ -0,0 +1,28 @@
+the linux headers have started adding shims to not define types or structs
+when C lib headers are active, but in order to work, the C lib headers have
+to be included before the linux headers.
+
+move the netinet/in.h include up above the linux/ includes.
+
+Mike Frysinger 
+
+--- a/src/pppoe.h
 b/src/pppoe.h
+@@ -47,6 +47,8 @@
+ #include 
+ #endif
+ 
++#include 
++
+ /* Ugly header files on some Linux boxes... */
+ #if defined(HAVE_LINUX_IF_H)
+ #include 
+@@ -84,8 +86,6 @@ typedef unsigned long UINT32_t;
+ #include 
+ #endif
+ 
+-#include 
+-
+ #ifdef 

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

2018-12-29 Thread Felix Yan via arch-commits
Date: Saturday, December 29, 2018 @ 21:20:40
  Author: felixonmars
Revision: 342784

upgpkg: rp-pppoe 3.13-1

Modified:
  rp-pppoe/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-29 17:30:30 UTC (rev 342783)
+++ PKGBUILD2018-12-29 21:20:40 UTC (rev 342784)
@@ -1,12 +1,13 @@
-# Maintainer: Daniel Isenmann 
+# Maintainer: Felix Yan 
+# Contributor: Daniel Isenmann 
 # Contributor: orelien 
 
 pkgname=rp-pppoe
-pkgver=3.12
-pkgrel=3
+pkgver=3.13
+pkgrel=1
 pkgdesc="Roaring Penguin's Point-to-Point Protocol over Ethernet client"
 arch=('x86_64')
-url="https://www.roaringpenguin.com/products/pppoe;
+url="https://dianne.skoll.ca/projects/rp-pppoe;
 license=('GPL')
 depends=('ppp=2.4.7' 'sh' 'net-tools')
 backup=(etc/ppp/pppoe.conf etc/ppp/firewall-standalone etc/ppp/firewall-masq 
@@ -13,17 +14,13 @@
 etc/ppp/pppoe-server-options)
 options=('!makeflags')
 install=rp-pppoe.install
-source=(http://www.roaringpenguin.com/files/download/rp-pppoe-$pkgver.tar.gz{,.sig}
 
-   adsl.service 
-   kmode.patch rp-pppoe-linux-headers.patch)
+source=(https://dianne.skoll.ca/projects/rp-pppoe/download/rp-pppoe-$pkgver.tar.gz{,.sig}
 
+   adsl.service)
 validpgpkeys=('FC2E9B645468698FD7B21655C1842E2A126F42E0') # Dianne Skoll
+sha512sums=('e29ddc39252a0e71d509096e275f6f195f86a5871052dd558e8fb174d13086b1c601e6652f45619279a1eb2fbda96ba0ec85dea9edb27459af56ded4a52b5f36'
+'SKIP'
+
'75fdb55b872e6388053aa0c1ba0b98ab9eda6b6f59a7452843cff8de5a68276be3f48dbd9a6324917254d4fe0d1b2d7442f7a9bbfa1355b6f500db13c9409089')
 
-prepare() {
-  cd $pkgname-$pkgver
-  patch -p1 -i ../kmode.patch
-  patch -p1 -i ../rp-pppoe-linux-headers.patch # Gentoo patch
-}
-
 build() {
   cd $pkgname-$pkgver/src
   ./configure --prefix=/usr --sbindir=/usr/bin --enable-plugin
@@ -37,8 +34,3 @@
   #install -Dm755 "$srcdir/adsl" "$pkgdir/etc/rc.d/adsl"
   install -Dm644 "$srcdir/adsl.service" 
"$pkgdir/usr/lib/systemd/system/adsl.service"
 }
-md5sums=('216eb52b69062b92a64ee37fd71f4b66'
- 'SKIP'
- '926b00aa2a0c0d3a21970acde9695e47'
- '8df35e67558b6b4567d1ab24c9202898'
- 'e78dfb8f459784ff3e1cc4cd56b63a8c')


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

2018-12-29 Thread Morten Linderud via arch-commits
Date: Saturday, December 29, 2018 @ 21:11:48
  Author: foxboron
Revision: 418919

upgpkg: jgmenu 1.6-1

Modified:
  jgmenu/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-29 20:41:03 UTC (rev 418918)
+++ PKGBUILD2018-12-29 21:11:48 UTC (rev 418919)
@@ -2,7 +2,7 @@
 # Contributor: Johan Malm 
 
 pkgname=jgmenu
-pkgver=1.5
+pkgver=1.6
 pkgrel=1
 pkgdesc="Small X11 menu intended to be used with openbox and tint2"
 arch=('i686' 'x86_64')
@@ -10,7 +10,7 @@
 license=('GPL')
 depends=('libx11' 'cairo' 'pango' 'libxrandr' 'librsvg' 'libxml2' 'glib2' 
'menu-cache' 'python')
 
source=("${pkgname}-${pkgver}.tar.gz::http://www.github.com/johanmalm/jgmenu/archive/v${pkgver}.tar.gz;)
-sha256sums=('5fbde27cb8493ce8ffcb9e2f0015219be1f85b7aa1a6e9ce5ed2f4ff091e25d6')
+sha256sums=('40c0a9a0cd2368eeda437a14685fffc8262020debc39bb4b2e7c4e72d7e4cf78')
 
 build() {
cd "$pkgname-$pkgver"


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

2018-12-29 Thread Morten Linderud via arch-commits
Date: Saturday, December 29, 2018 @ 21:11:56
  Author: foxboron
Revision: 418920

archrelease: copy trunk to community-x86_64

Added:
  jgmenu/repos/community-x86_64/PKGBUILD
(from rev 418919, jgmenu/trunk/PKGBUILD)
Deleted:
  jgmenu/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-29 21:11:48 UTC (rev 418919)
+++ PKGBUILD2018-12-29 21:11:56 UTC (rev 418920)
@@ -1,29 +0,0 @@
-# Maintainer: Mortne Linderu 
-# Contributor: Johan Malm 
-
-pkgname=jgmenu
-pkgver=1.5
-pkgrel=1
-pkgdesc="Small X11 menu intended to be used with openbox and tint2"
-arch=('i686' 'x86_64')
-url="http://www.github.com/johanmalm/jgmenu;
-license=('GPL')
-depends=('libx11' 'cairo' 'pango' 'libxrandr' 'librsvg' 'libxml2' 'glib2' 
'menu-cache' 'python')
-source=("${pkgname}-${pkgver}.tar.gz::http://www.github.com/johanmalm/jgmenu/archive/v${pkgver}.tar.gz;)
-sha256sums=('5fbde27cb8493ce8ffcb9e2f0015219be1f85b7aa1a6e9ce5ed2f4ff091e25d6')
-
-build() {
-   cd "$pkgname-$pkgver"
-   make
-}
-
-check(){
-   cd "$pkgname-$pkgver"
-   make check
-   make test
-}
-
-package() {
-   cd "$pkgname-$pkgver"
-   make DESTDIR="$pkgdir" prefix=/usr install
-}

Copied: jgmenu/repos/community-x86_64/PKGBUILD (from rev 418919, 
jgmenu/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-29 21:11:56 UTC (rev 418920)
@@ -0,0 +1,29 @@
+# Maintainer: Mortne Linderu 
+# Contributor: Johan Malm 
+
+pkgname=jgmenu
+pkgver=1.6
+pkgrel=1
+pkgdesc="Small X11 menu intended to be used with openbox and tint2"
+arch=('i686' 'x86_64')
+url="http://www.github.com/johanmalm/jgmenu;
+license=('GPL')
+depends=('libx11' 'cairo' 'pango' 'libxrandr' 'librsvg' 'libxml2' 'glib2' 
'menu-cache' 'python')
+source=("${pkgname}-${pkgver}.tar.gz::http://www.github.com/johanmalm/jgmenu/archive/v${pkgver}.tar.gz;)
+sha256sums=('40c0a9a0cd2368eeda437a14685fffc8262020debc39bb4b2e7c4e72d7e4cf78')
+
+build() {
+   cd "$pkgname-$pkgver"
+   make
+}
+
+check(){
+   cd "$pkgname-$pkgver"
+   make check
+   make test
+}
+
+package() {
+   cd "$pkgname-$pkgver"
+   make DESTDIR="$pkgdir" prefix=/usr install
+}


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

2018-12-29 Thread Balló György via arch-commits
Date: Saturday, December 29, 2018 @ 20:40:55
  Author: bgyorgy
Revision: 418917

upgpkg: planner 0.14.6-6

Install icons to datadir/icons/hicolor

Added:
  planner/trunk/42e0d6b3f60b06bbe55b3ebad7ffc6edbf16e7e0.patch
  planner/trunk/8dd069a1e54c5b47e107f6df0db6ceb03e50c72d.patch
Modified:
  planner/trunk/PKGBUILD

+
 42e0d6b3f60b06bbe55b3ebad7ffc6edbf16e7e0.patch |   29 ++
 8dd069a1e54c5b47e107f6df0db6ceb03e50c72d.patch |  296 +++
 PKGBUILD   |   14 -
 3 files changed, 336 insertions(+), 3 deletions(-)

Added: 42e0d6b3f60b06bbe55b3ebad7ffc6edbf16e7e0.patch
===
--- 42e0d6b3f60b06bbe55b3ebad7ffc6edbf16e7e0.patch  
(rev 0)
+++ 42e0d6b3f60b06bbe55b3ebad7ffc6edbf16e7e0.patch  2018-12-29 20:40:55 UTC 
(rev 418917)
@@ -0,0 +1,29 @@
+From 42e0d6b3f60b06bbe55b3ebad7ffc6edbf16e7e0 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Ville=20Skytt=C3=A4?= 
+Date: Tue, 5 Jun 2012 21:36:41 +0300
+Subject: [PATCH] Install PNG icon to datadir/icons/hicolor per the XDG icon
+ spec.
+
+http://standards.freedesktop.org/icon-theme-spec/icon-theme-spec-latest.html#install_icons
+
+https://bugzilla.gnome.org/show_bug.cgi?id=677297
+---
+ data/images/Makefile.am | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/data/images/Makefile.am b/data/images/Makefile.am
+index 671d7a0..1bbdd6e 100644
+--- a/data/images/Makefile.am
 b/data/images/Makefile.am
+@@ -21,7 +21,7 @@ images_DATA =\
+ mimeiconsdir = $(datadir)/icons/hicolor/48x48/mimetypes
+ mimeicons_DATA = gnome-mime-application-x-planner.png
+ 
+-pixmapdir = $(datadir)/pixmaps
++pixmapdir = $(datadir)/icons/hicolor/48x48/apps
+ pixmap_DATA = gnome-planner.png
+ 
+ svgiconsdir = $(datadir)/icons/hicolor/scalable/apps
+-- 
+2.18.1
+

Added: 8dd069a1e54c5b47e107f6df0db6ceb03e50c72d.patch
===
--- 8dd069a1e54c5b47e107f6df0db6ceb03e50c72d.patch  
(rev 0)
+++ 8dd069a1e54c5b47e107f6df0db6ceb03e50c72d.patch  2018-12-29 20:40:55 UTC 
(rev 418917)
@@ -0,0 +1,296 @@
+From 8dd069a1e54c5b47e107f6df0db6ceb03e50c72d Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Ville=20Skytt=C3=A4?= 
+Date: Tue, 5 Jun 2012 21:27:04 +0300
+Subject: [PATCH] Add SVG icon by Frederik Elwert.
+
+https://mail.gnome.org/archives/planner-dev-list/2012-March/msg0.html
+
+https://bugzilla.gnome.org/show_bug.cgi?id=677297
+---
+ data/images/Makefile.am   |   6 +-
+ data/images/gnome-planner.svg | 256 ++
+ 2 files changed, 261 insertions(+), 1 deletion(-)
+ create mode 100644 data/images/gnome-planner.svg
+
+diff --git a/data/images/Makefile.am b/data/images/Makefile.am
+index efaed99..671d7a0 100644
+--- a/data/images/Makefile.am
 b/data/images/Makefile.am
+@@ -24,7 +24,11 @@ mimeicons_DATA = gnome-mime-application-x-planner.png
+ pixmapdir = $(datadir)/pixmaps
+ pixmap_DATA = gnome-planner.png
+ 
++svgiconsdir = $(datadir)/icons/hicolor/scalable/apps
++svgicons_DATA = gnome-planner.svg
++
+ EXTRA_DIST =  \
+   $(images_DATA)  \
+-  $(mimeicons_DATA)
++  $(mimeicons_DATA)   \
++  $(svgicons_DATA)
+ 
+diff --git a/data/images/gnome-planner.svg b/data/images/gnome-planner.svg
+new file mode 100644
+index 000..164d1ed
+--- /dev/null
 b/data/images/gnome-planner.svg
+@@ -0,0 +1,256 @@
++
++
++
++http://purl.org/dc/elements/1.1/;
++   xmlns:cc="http://creativecommons.org/ns#;
++   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#;
++   xmlns:svg="http://www.w3.org/2000/svg;
++   xmlns="http://www.w3.org/2000/svg;
++   xmlns:xlink="http://www.w3.org/1999/xlink;
++   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd;
++   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape;
++   width="48"
++   height="48"
++   id="svg2"
++   version="1.1"
++   inkscape:version="0.48.3.1 r9886"
++   sodipodi:docname="gnome-planner.svg">
++  
++
++  
++  
++
++
++  
++  
++
++
++
++
++
++
++
++
++  
++  
++  
++  
++  
++
++  
++  
++
++  
++  
++
++  
++image/svg+xml
++http://purl.org/dc/dcmitype/StillImage; />
++
++  
++
++  
++  
++
++  
++  
++
++  
++  
++
++
++  
++  
++
++
++  
++  
++
++
++  
++
+-- 
+2.18.1
+

Modified: PKGBUILD
===
--- PKGBUILD2018-12-29 20:32:23 UTC (rev 418916)
+++ PKGBUILD2018-12-29 20:40:55 UTC (rev 418917)
@@ -4,7 +4,7 @@
 
 pkgname=planner
 pkgver=0.14.6
-pkgrel=5
+pkgrel=6
 pkgdesc='Project management application for GNOME'
 arch=('x86_64')
 license=('GPL')
@@ -17,13 +17,17 @@

[arch-commits] Commit in planner/repos/community-x86_64 (14 files)

2018-12-29 Thread Balló György via arch-commits
Date: Saturday, December 29, 2018 @ 20:41:03
  Author: bgyorgy
Revision: 418918

archrelease: copy trunk to community-x86_64

Added:
  planner/repos/community-x86_64/05ba23be296085313abd8d7d5075d962084f5d38.patch
(from rev 418917, 
planner/trunk/05ba23be296085313abd8d7d5075d962084f5d38.patch)
  planner/repos/community-x86_64/0cc65e2f420af45f78d190ac2af64810a148bb31.patch
(from rev 418917, 
planner/trunk/0cc65e2f420af45f78d190ac2af64810a148bb31.patch)
  planner/repos/community-x86_64/42e0d6b3f60b06bbe55b3ebad7ffc6edbf16e7e0.patch
(from rev 418917, 
planner/trunk/42e0d6b3f60b06bbe55b3ebad7ffc6edbf16e7e0.patch)
  planner/repos/community-x86_64/8dd069a1e54c5b47e107f6df0db6ceb03e50c72d.patch
(from rev 418917, 
planner/trunk/8dd069a1e54c5b47e107f6df0db6ceb03e50c72d.patch)
  planner/repos/community-x86_64/PKGBUILD
(from rev 418917, planner/trunk/PKGBUILD)
  planner/repos/community-x86_64/cd2b658e83d47e8f49d1bbaf54be6433a21d3758.patch
(from rev 418917, 
planner/trunk/cd2b658e83d47e8f49d1bbaf54be6433a21d3758.patch)
  planner/repos/community-x86_64/f9840c342e4b5767ee35f0d326b7f7eaf56850ed.patch
(from rev 418917, 
planner/trunk/f9840c342e4b5767ee35f0d326b7f7eaf56850ed.patch)
  planner/repos/community-x86_64/fd8da8994f7006b9fcefc90d2fe5c2b484c7871e.patch
(from rev 418917, 
planner/trunk/fd8da8994f7006b9fcefc90d2fe5c2b484c7871e.patch)
Deleted:
  planner/repos/community-x86_64/05ba23be296085313abd8d7d5075d962084f5d38.patch
  planner/repos/community-x86_64/0cc65e2f420af45f78d190ac2af64810a148bb31.patch
  planner/repos/community-x86_64/PKGBUILD
  planner/repos/community-x86_64/cd2b658e83d47e8f49d1bbaf54be6433a21d3758.patch
  planner/repos/community-x86_64/f9840c342e4b5767ee35f0d326b7f7eaf56850ed.patch
  planner/repos/community-x86_64/fd8da8994f7006b9fcefc90d2fe5c2b484c7871e.patch

+
 05ba23be296085313abd8d7d5075d962084f5d38.patch |   52 ++--
 0cc65e2f420af45f78d190ac2af64810a148bb31.patch |   82 +++---
 42e0d6b3f60b06bbe55b3ebad7ffc6edbf16e7e0.patch |   29 ++
 8dd069a1e54c5b47e107f6df0db6ceb03e50c72d.patch |  296 +++
 PKGBUILD   |  124 +
 cd2b658e83d47e8f49d1bbaf54be6433a21d3758.patch |  294 +++---
 f9840c342e4b5767ee35f0d326b7f7eaf56850ed.patch |  228 -
 fd8da8994f7006b9fcefc90d2fe5c2b484c7871e.patch |   82 +++---
 8 files changed, 760 insertions(+), 427 deletions(-)

Deleted: 05ba23be296085313abd8d7d5075d962084f5d38.patch
===
--- 05ba23be296085313abd8d7d5075d962084f5d38.patch  2018-12-29 20:40:55 UTC 
(rev 418917)
+++ 05ba23be296085313abd8d7d5075d962084f5d38.patch  2018-12-29 20:41:03 UTC 
(rev 418918)
@@ -1,26 +0,0 @@
-From 05ba23be296085313abd8d7d5075d962084f5d38 Mon Sep 17 00:00:00 2001
-From: Alexandre Franke 
-Date: Wed, 14 Mar 2012 10:52:25 +
-Subject: Better use of fields in the .desktop file
-
-https://bugzilla.gnome.org/show_bug.cgi?id=672033

-diff --git a/data/planner.desktop.in.in b/data/planner.desktop.in.in
-index af61d34..30eb921 100644
 a/data/planner.desktop.in.in
-+++ b/data/planner.desktop.in.in
-@@ -1,6 +1,10 @@
- [Desktop Entry]
--_Name=Project Management
--_Comment=Planner Project Management
-+Version=1.0
-+_Name=Planner
-+_GenericName=Project Management
-+_X-GNOME-FullName=Planner Project Management
-+_Comment=Handle the tasks, resources, and cost of your projects
-+_Keywords=Gantt;Chart;Critical path;Relationship;Dependency;WBS;
- Exec=planner %F
- Icon=gnome-planner.png
- Terminal=false
---
-cgit v0.9.2

Copied: 
planner/repos/community-x86_64/05ba23be296085313abd8d7d5075d962084f5d38.patch 
(from rev 418917, planner/trunk/05ba23be296085313abd8d7d5075d962084f5d38.patch)
===
--- 05ba23be296085313abd8d7d5075d962084f5d38.patch  
(rev 0)
+++ 05ba23be296085313abd8d7d5075d962084f5d38.patch  2018-12-29 20:41:03 UTC 
(rev 418918)
@@ -0,0 +1,26 @@
+From 05ba23be296085313abd8d7d5075d962084f5d38 Mon Sep 17 00:00:00 2001
+From: Alexandre Franke 
+Date: Wed, 14 Mar 2012 10:52:25 +
+Subject: Better use of fields in the .desktop file
+
+https://bugzilla.gnome.org/show_bug.cgi?id=672033
+---
+diff --git a/data/planner.desktop.in.in b/data/planner.desktop.in.in
+index af61d34..30eb921 100644
+--- a/data/planner.desktop.in.in
 b/data/planner.desktop.in.in
+@@ -1,6 +1,10 @@
+ [Desktop Entry]
+-_Name=Project Management
+-_Comment=Planner Project Management
++Version=1.0
++_Name=Planner
++_GenericName=Project Management
++_X-GNOME-FullName=Planner Project Management
++_Comment=Handle the tasks, resources, and cost of your projects
++_Keywords=Gantt;Chart;Critical path;Relationship;Dependency;WBS;
+ Exec=planner %F
+ Icon=gnome-planner.png
+ Terminal=false
+--
+cgit v0.9.2

Deleted: 0cc65e2f420af45f78d190ac2af64810a148bb31.patch

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

2018-12-29 Thread Daniel M. Capella via arch-commits
Date: Saturday, December 29, 2018 @ 20:32:23
  Author: polyzen
Revision: 418916

archrelease: copy trunk to community-x86_64

Added:
  espeak-ng/repos/community-x86_64/PKGBUILD
(from rev 418915, espeak-ng/trunk/PKGBUILD)
Deleted:
  espeak-ng/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-29 20:31:52 UTC (rev 418915)
+++ PKGBUILD2018-12-29 20:32:23 UTC (rev 418916)
@@ -1,32 +0,0 @@
-# Maintainer: Daniel M. Capella 
-
-pkgname=espeak-ng
-pkgver=1.49.2
-pkgrel=2
-pkgdesc='Multi-lingual software speech synthesizer'
-url=https://github.com/espeak-ng/espeak-ng
-arch=('x86_64')
-license=('GPL3')
-depends=('pcaudiolib')
-conflicts=('espeak')
-source=("$url/releases/download/$pkgver/$pkgname-$pkgver.tar.gz")
-sha512sums=('521220113cb4e2a4a03e29f2c0edad6239170fec95ba67077ccae46d32167f6b72b7a357d73e48abf21fdb0334bf9f010ee1b8325f6520ec4893c48f2a2676ca')
-
-prepare() {
-  cd $pkgname-$pkgver
-  ./autogen.sh
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make src/espeak-ng src/speak-ng
-  make -j1
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: espeak-ng/repos/community-x86_64/PKGBUILD (from rev 418915, 
espeak-ng/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-29 20:32:23 UTC (rev 418916)
@@ -0,0 +1,33 @@
+# Maintainer: Daniel M. Capella 
+
+pkgname=espeak-ng
+pkgver=1.49.2
+pkgrel=3
+pkgdesc='Multi-lingual software speech synthesizer'
+url=https://github.com/espeak-ng/espeak-ng
+arch=('x86_64')
+license=('GPL3')
+depends=('pcaudiolib')
+makedepends=('ruby-ronn')
+conflicts=('espeak')
+source=("$url/releases/download/$pkgver/$pkgname-$pkgver.tar.gz")
+sha512sums=('521220113cb4e2a4a03e29f2c0edad6239170fec95ba67077ccae46d32167f6b72b7a357d73e48abf21fdb0334bf9f010ee1b8325f6520ec4893c48f2a2676ca')
+
+prepare() {
+  cd $pkgname-$pkgver
+  ./autogen.sh
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make src/espeak-ng src/speak-ng
+  make -j1
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:


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

2018-12-29 Thread Daniel M. Capella via arch-commits
Date: Saturday, December 29, 2018 @ 20:31:52
  Author: polyzen
Revision: 418915

Build manuals

Modified:
  espeak-ng/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-29 20:12:46 UTC (rev 418914)
+++ PKGBUILD2018-12-29 20:31:52 UTC (rev 418915)
@@ -2,12 +2,13 @@
 
 pkgname=espeak-ng
 pkgver=1.49.2
-pkgrel=2
+pkgrel=3
 pkgdesc='Multi-lingual software speech synthesizer'
 url=https://github.com/espeak-ng/espeak-ng
 arch=('x86_64')
 license=('GPL3')
 depends=('pcaudiolib')
+makedepends=('ruby-ronn')
 conflicts=('espeak')
 source=("$url/releases/download/$pkgver/$pkgname-$pkgver.tar.gz")
 
sha512sums=('521220113cb4e2a4a03e29f2c0edad6239170fec95ba67077ccae46d32167f6b72b7a357d73e48abf21fdb0334bf9f010ee1b8325f6520ec4893c48f2a2676ca')


[arch-commits] Commit in mopidy/repos/community-any (8 files)

2018-12-29 Thread Morten Linderud via arch-commits
Date: Saturday, December 29, 2018 @ 20:12:46
  Author: foxboron
Revision: 418914

archrelease: copy trunk to community-any

Added:
  mopidy/repos/community-any/PKGBUILD
(from rev 418913, mopidy/trunk/PKGBUILD)
  mopidy/repos/community-any/logging.conf
(from rev 418913, mopidy/trunk/logging.conf)
  mopidy/repos/community-any/mopidy.conf
(from rev 418913, mopidy/trunk/mopidy.conf)
  mopidy/repos/community-any/mopidy.sysusers
(from rev 418913, mopidy/trunk/mopidy.sysusers)
Deleted:
  mopidy/repos/community-any/PKGBUILD
  mopidy/repos/community-any/logging.conf
  mopidy/repos/community-any/mopidy.conf
  mopidy/repos/community-any/mopidy.sysusers

-+
 PKGBUILD|  136 +++---
 logging.conf|   42 
 mopidy.conf |   30 +--
 mopidy.sysusers |4 -
 4 files changed, 106 insertions(+), 106 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-29 20:12:27 UTC (rev 418913)
+++ PKGBUILD2018-12-29 20:12:46 UTC (rev 418914)
@@ -1,68 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Alexandre Petitjean 
-
-pkgname=mopidy
-pkgver=2.2.1
-pkgrel=1
-pkgdesc="An extensible music server written in Python"
-arch=('any')
-url="http://www.mopidy.com;
-license=('APACHE')
-depends=('python2' 'python2-pykka' 'python2-setuptools' 'python2-requests' 
'gstreamer'
- 'gst-python2' 'gst-plugins-good' 'gst-plugins-ugly' 'python2-tornado' 
'gst-plugins-base')
-makedepends=('python2-sphinx')
-backup=('etc/mopidy/mopidy.conf')
-source=("https://github.com/mopidy/mopidy/archive/v${pkgver}.tar.gz;
-'mopidy.conf'
-'logging.conf'
-'mopidy.sysusers')
-sha512sums=('13dc2dd47be9c1022921b8568c80c77052ec0b3f39e7f759205364cf59f03db74e052c21b14b6a68d1c574cd9e8151e811fd2f47280d4048da54da5c38e2f1de'
-
'eb66e8e826640a939b1ba51569ab7fab041b8b5e8823ea2d5f05596faf1de8882fd8c1c32bdb92534e759243fb5ff741bda0d2ebb3282af542d1287c8c68b5ea'
-
'0c438058500ab7559baae21b03b10e2b80b10c6b240b2100da1f4c84ea8efe24dc7a38a95034e75605eaf5d21604d13e5b8c7358778c555ddb6372a49388'
-
'ff6c9f0406dfc1cc01ac6edcc6bae429342437397321ab9205ca273a63b28611d08005a0a5dba639b5ae2157a4f03a1d58c2199f7dbc6965864685b4b71f0b6f')
-
-prepare() {
-  cd $pkgname-$pkgver
-  sed -e 's|, < 5||' -i setup.py
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-
-  make -C docs SPHINXBUILD=sphinx-build2 man
-  make -C docs SPHINXBUILD=sphinx-build2 html
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  python2 setup.py install --root="${pkgdir}/" --optimize=1
-
-  install -Dm755 extra/mopidyctl/mopidyctl "${pkgdir}/usr/bin/mopidyctl"
-
-  install -dm755 "${pkgdir}/usr/share/doc/mopidy"
-  cp -r docs/_build/html "${pkgdir}/usr/share/doc/mopidy"
-
-  install -dm755 "${pkgdir}/usr/share/man/man1/"
-  gzip -c docs/_build/man/mopidy.1 > "${pkgdir}/usr/share/man/man1/mopidy.1.gz"
-
-  install -dm755 "${pkgdir}/usr/share/man/man8/"
-  gzip -c extra/mopidyctl/mopidyctl.8 > 
"${pkgdir}/usr/share/man/man8/mopidyctl.8.gz"
-
-  install -Dm644 "${srcdir}/mopidy.conf" "${pkgdir}/etc/mopidy/mopidy.conf"
-  install -Dm644 "${srcdir}/logging.conf" "${pkgdir}/etc/mopidy/logging.conf"
-
-  install -Dm644 "extra/systemd/mopidy.service" 
"${pkgdir}/usr/lib/systemd/system/mopidy.service"
-  install -Dm644 "extra/desktop/mopidy.desktop" 
"${pkgdir}/usr/share/applications/mopidy.desktop"
-
-  install -dm755 -g 46 -o 46 "${pkgdir}/var/cache/mopidy"
-  install -dm755 -g 46 -o 46 "${pkgdir}/var/log/mopidy"
-  install -dm755 -g 46 -o 46 "${pkgdir}/var/lib/mopidy"
-  install -dm755 -g 46 -o 46 "${pkgdir}/var/lib/mopidy/local"
-  install -dm755 -g 46 -o 46 "${pkgdir}/var/lib/mopidy/media"
-  install -dm755 -g 46 -o 46 "${pkgdir}/var/lib/mopidy/playlists"
-
-  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  install -Dm644 "${srcdir}/mopidy.sysusers" 
"${pkgdir}/usr/lib/sysusers.d/$pkgname.conf"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: mopidy/repos/community-any/PKGBUILD (from rev 418913, 
mopidy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-29 20:12:46 UTC (rev 418914)
@@ -0,0 +1,68 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Alexandre Petitjean 
+
+pkgname=mopidy
+pkgver=2.2.2
+pkgrel=1
+pkgdesc="An extensible music server written in Python"
+arch=('any')
+url="http://www.mopidy.com;
+license=('APACHE')
+depends=('python2' 'python2-pykka' 'python2-setuptools' 'python2-requests' 
'gstreamer'
+ 'gst-python2' 'gst-plugins-good' 'gst-plugins-ugly' 'python2-tornado' 
'gst-plugins-base')
+makedepends=('python2-sphinx')
+backup=('etc/mopidy/mopidy.conf')
+source=("https://github.com/mopidy/mopidy/archive/v${pkgver}.tar.gz;
+'mopidy.conf'
+'logging.conf'
+'mopidy.sysusers')

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

2018-12-29 Thread Morten Linderud via arch-commits
Date: Saturday, December 29, 2018 @ 20:12:27
  Author: foxboron
Revision: 418913

upgpkg: mopidy 2.2.2-1

Modified:
  mopidy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-29 20:06:49 UTC (rev 418912)
+++ PKGBUILD2018-12-29 20:12:27 UTC (rev 418913)
@@ -2,7 +2,7 @@
 # Contributor: Alexandre Petitjean 
 
 pkgname=mopidy
-pkgver=2.2.1
+pkgver=2.2.2
 pkgrel=1
 pkgdesc="An extensible music server written in Python"
 arch=('any')
@@ -16,7 +16,7 @@
 'mopidy.conf'
 'logging.conf'
 'mopidy.sysusers')
-sha512sums=('13dc2dd47be9c1022921b8568c80c77052ec0b3f39e7f759205364cf59f03db74e052c21b14b6a68d1c574cd9e8151e811fd2f47280d4048da54da5c38e2f1de'
+sha512sums=('3826c69147f3aaf9ba6cb5663cbe8cf7c8d024167ec0071a4722621d994ca58575696c1c8292d09f3274aa7c871654f93a0f8e6338f528f6097b2f5f0491'
 
'eb66e8e826640a939b1ba51569ab7fab041b8b5e8823ea2d5f05596faf1de8882fd8c1c32bdb92534e759243fb5ff741bda0d2ebb3282af542d1287c8c68b5ea'
 
'0c438058500ab7559baae21b03b10e2b80b10c6b240b2100da1f4c84ea8efe24dc7a38a95034e75605eaf5d21604d13e5b8c7358778c555ddb6372a49388'
 
'ff6c9f0406dfc1cc01ac6edcc6bae429342437397321ab9205ca273a63b28611d08005a0a5dba639b5ae2157a4f03a1d58c2199f7dbc6965864685b4b71f0b6f')


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

2018-12-29 Thread Morten Linderud via arch-commits
Date: Saturday, December 29, 2018 @ 20:06:37
  Author: foxboron
Revision: 418911

upgpkg: python-docs 3.7.2-1

Modified:
  python-docs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-29 19:44:50 UTC (rev 418910)
+++ PKGBUILD2018-12-29 20:06:37 UTC (rev 418911)
@@ -1,9 +1,9 @@
 # Maintainer: Morten Linderud 
 # Contributor: Sergej Pupykin 
-# Contributor : Rohan Dhruva (rohandhruva at gmail dot com)
+# Contributor: Rohan Dhruva (rohandhruva at gmail dot com)
 
 pkgname=python-docs
-pkgver=3.7.1
+pkgver=3.7.2
 pkgrel=1
 pkgdesc="Set of HTML documentation for python"
 arch=('any')
@@ -11,7 +11,7 @@
 license=('GPL')
 options=('docs')
 
source=(https://sources.archlinux.org/other/community/python-docs/python-$pkgver-docs-html.tar.bz2)
-sha256sums=('78fdfce38a5c9887232f016bcb2f0b9030626196a5e737b958e10b20caa003a8')
+sha256sums=('36fb7f797208f23e98d17734c945ee91f9825da2d8ce37ba2d0bcb137bee33ba')
 
 package() {
   mkdir -p "$pkgdir"/usr/share/doc/python/html


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

2018-12-29 Thread Morten Linderud via arch-commits
Date: Saturday, December 29, 2018 @ 20:06:49
  Author: foxboron
Revision: 418912

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-29 20:06:37 UTC (rev 418911)
+++ PKGBUILD2018-12-29 20:06:49 UTC (rev 418912)
@@ -1,24 +0,0 @@
-# Maintainer: Morten Linderud 
-# Contributor: Sergej Pupykin 
-# Contributor : Rohan Dhruva (rohandhruva at gmail dot com)
-
-pkgname=python-docs
-pkgver=3.7.1
-pkgrel=1
-pkgdesc="Set of HTML documentation for python"
-arch=('any')
-url="http://docs.python.org/py3k/;
-license=('GPL')
-options=('docs')
-source=(https://sources.archlinux.org/other/community/python-docs/python-$pkgver-docs-html.tar.bz2)
-sha256sums=('78fdfce38a5c9887232f016bcb2f0b9030626196a5e737b958e10b20caa003a8')
-
-package() {
-  mkdir -p "$pkgdir"/usr/share/doc/python/html
-  cp -rf "$srcdir"/python-$pkgver-docs-html/* 
"$pkgdir"/usr/share/doc/python/html/
-  find "$pkgdir"/usr/share/doc/python/html/ -type f -exec chmod 0644 {} \;
-  find "$pkgdir"/usr/share/doc/python/html/ -type d -exec chmod 0755 {} \;
-  install -dm0755 "$pkgdir"/etc/profile.d
-  echo "export PYTHONDOCS=/usr/share/doc/python/html/library" 
>"$pkgdir"/etc/profile.d/$pkgname.sh
-  echo "setenv PYTHONDOCS /usr/share/doc/python/html/library" 
>"$pkgdir"/etc/profile.d/$pkgname.csh
-}

Copied: python-docs/repos/community-any/PKGBUILD (from rev 418911, 
python-docs/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-29 20:06:49 UTC (rev 418912)
@@ -0,0 +1,24 @@
+# Maintainer: Morten Linderud 
+# Contributor: Sergej Pupykin 
+# Contributor: Rohan Dhruva (rohandhruva at gmail dot com)
+
+pkgname=python-docs
+pkgver=3.7.2
+pkgrel=1
+pkgdesc="Set of HTML documentation for python"
+arch=('any')
+url="http://docs.python.org/py3k/;
+license=('GPL')
+options=('docs')
+source=(https://sources.archlinux.org/other/community/python-docs/python-$pkgver-docs-html.tar.bz2)
+sha256sums=('36fb7f797208f23e98d17734c945ee91f9825da2d8ce37ba2d0bcb137bee33ba')
+
+package() {
+  mkdir -p "$pkgdir"/usr/share/doc/python/html
+  cp -rf "$srcdir"/python-$pkgver-docs-html/* 
"$pkgdir"/usr/share/doc/python/html/
+  find "$pkgdir"/usr/share/doc/python/html/ -type f -exec chmod 0644 {} \;
+  find "$pkgdir"/usr/share/doc/python/html/ -type d -exec chmod 0755 {} \;
+  install -dm0755 "$pkgdir"/etc/profile.d
+  echo "export PYTHONDOCS=/usr/share/doc/python/html/library" 
>"$pkgdir"/etc/profile.d/$pkgname.sh
+  echo "setenv PYTHONDOCS /usr/share/doc/python/html/library" 
>"$pkgdir"/etc/profile.d/$pkgname.csh
+}


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

2018-12-29 Thread Jelle van der Waa via arch-commits
Date: Saturday, December 29, 2018 @ 19:44:44
  Author: jelle
Revision: 418909

upgpkg: python-zabbix-api 0.5.3-1

Required for deployed Arch infrastructure

Modified:
  python-zabbix-api/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-29 19:41:13 UTC (rev 418908)
+++ PKGBUILD2018-12-29 19:44:44 UTC (rev 418909)
@@ -14,11 +14,11 @@
 md5sums=('ecb0cb8f6ef27a6a229912b47ed1e54a')
 
 build() {
-  cd "$pkgname-$pkgver"
+  cd "$_name-$pkgver"
   python setup.py build
 }
 
 package() {
-  cd "$pkgname-$pkgver"
+  cd "$_name-$pkgver"
   python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
 }


[arch-commits] Commit in python-zabbix-api/repos (2 files)

2018-12-29 Thread Jelle van der Waa via arch-commits
Date: Saturday, December 29, 2018 @ 19:44:50
  Author: jelle
Revision: 418910

archrelease: copy trunk to community-any

Added:
  python-zabbix-api/repos/community-any/
  python-zabbix-api/repos/community-any/PKGBUILD
(from rev 418909, python-zabbix-api/trunk/PKGBUILD)

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

Copied: python-zabbix-api/repos/community-any/PKGBUILD (from rev 418909, 
python-zabbix-api/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2018-12-29 19:44:50 UTC (rev 418910)
@@ -0,0 +1,24 @@
+# Maintainer: Jelle van der Waa 
+
+_name=zabbix-api
+pkgname=python-zabbix-api
+pkgver=0.5.3
+pkgrel=1
+pkgdesc="Python Zabbix API"
+arch=(any)
+url="https://pypi.org/project/zabbix-api;
+license=('LGPL')
+depends=('python')
+makedepends=('python-setuptools')
+source=(https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz)
+md5sums=('ecb0cb8f6ef27a6a229912b47ed1e54a')
+
+build() {
+  cd "$_name-$pkgver"
+  python setup.py build
+}
+
+package() {
+  cd "$_name-$pkgver"
+  python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+}


[arch-commits] Commit in (geotag)

2018-12-29 Thread Balló György via arch-commits
Date: Saturday, December 29, 2018 @ 19:41:13
  Author: bgyorgy
Revision: 418908

Remove geotag

It doesn't work with OpenJDK >= 9, and no response from upstream:
https://sourceforge.net/p/geotag/bugs/40/

Deleted:
  geotag/


[arch-commits] Commit in (4 files)

2018-12-29 Thread Jelle van der Waa via arch-commits
Date: Saturday, December 29, 2018 @ 19:41:04
  Author: jelle
Revision: 418907

python-zabbix-api: initial commit

Added:
  python-zabbix-api/
  python-zabbix-api/repos/
  python-zabbix-api/trunk/
  python-zabbix-api/trunk/PKGBUILD

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

Added: python-zabbix-api/trunk/PKGBUILD
===
--- python-zabbix-api/trunk/PKGBUILD(rev 0)
+++ python-zabbix-api/trunk/PKGBUILD2018-12-29 19:41:04 UTC (rev 418907)
@@ -0,0 +1,24 @@
+# Maintainer: Jelle van der Waa 
+
+_name=zabbix-api
+pkgname=python-zabbix-api
+pkgver=0.5.3
+pkgrel=1
+pkgdesc="Python Zabbix API"
+arch=(any)
+url="https://pypi.org/project/zabbix-api;
+license=('LGPL')
+depends=('python')
+makedepends=('python-setuptools')
+source=(https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz)
+md5sums=('ecb0cb8f6ef27a6a229912b47ed1e54a')
+
+build() {
+  cd "$pkgname-$pkgver"
+  python setup.py build
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+}


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

2018-12-29 Thread Balló György via arch-commits
Date: Saturday, December 29, 2018 @ 18:57:21
  Author: bgyorgy
Revision: 418905

archrelease: copy trunk to community-x86_64

Added:
  l3afpad/repos/community-x86_64/PKGBUILD
(from rev 418904, l3afpad/trunk/PKGBUILD)
  l3afpad/repos/community-x86_64/l3afpad.appdata.xml
(from rev 418904, l3afpad/trunk/l3afpad.appdata.xml)
Deleted:
  l3afpad/repos/community-x86_64/PKGBUILD

-+
 PKGBUILD|   66 ++
 l3afpad.appdata.xml |   24 ++
 2 files changed, 59 insertions(+), 31 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-29 18:57:17 UTC (rev 418904)
+++ PKGBUILD2018-12-29 18:57:21 UTC (rev 418905)
@@ -1,31 +0,0 @@
-# Maintainer: Balló György 
-# Contributor: Steven Honeyman 
-# Contributor: nbvcxz (b4283)
-
-pkgname=l3afpad
-pkgver=0.8.18.1.11
-pkgrel=3
-pkgdesc="Simple plain text editor for GTK+ 3"
-arch=('x86_64')
-url="https://github.com/stevenhoneyman/l3afpad;
-license=('GPL2')
-depends=('gtk3')
-makedepends=('intltool')
-source=(https://github.com/stevenhoneyman/l3afpad/archive/v$pkgver.tar.gz)
-md5sums=('2c209503116b53e732c37f8d8d4c40fd')
-
-prepare() {
-  cd $pkgname-$pkgver
-  ./autogen.sh
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: l3afpad/repos/community-x86_64/PKGBUILD (from rev 418904, 
l3afpad/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-29 18:57:21 UTC (rev 418905)
@@ -0,0 +1,35 @@
+# Maintainer: Balló György 
+# Contributor: Steven Honeyman 
+# Contributor: nbvcxz (b4283)
+
+pkgname=l3afpad
+pkgver=0.8.18.1.11
+pkgrel=4
+pkgdesc="Simple plain text editor for GTK+ 3"
+arch=('x86_64')
+url="https://github.com/stevenhoneyman/l3afpad;
+license=('GPL2')
+depends=('gtk3')
+makedepends=('intltool')
+source=($pkgname-$pkgver.tar.gz::https://github.com/stevenhoneyman/l3afpad/archive/v$pkgver.tar.gz
+l3afpad.appdata.xml)
+sha256sums=('86f374b2f950b7c60dda50aa80a5034b8e3c80ded5cd3284c2d5921b31652793'
+'f6a49d9bbe4406ecfc1859592742af530e5f9ae29e590b7a164e729034304f03')
+
+prepare() {
+  cd $pkgname-$pkgver
+  ./autogen.sh
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -Dm644 ../$pkgname.appdata.xml 
"$pkgdir/usr/share/metainfo/$pkgname.appdata.xml"
+  rm -r "$pkgdir/usr/share/pixmaps/"
+}

Copied: l3afpad/repos/community-x86_64/l3afpad.appdata.xml (from rev 418904, 
l3afpad/trunk/l3afpad.appdata.xml)
===
--- l3afpad.appdata.xml (rev 0)
+++ l3afpad.appdata.xml 2018-12-29 18:57:21 UTC (rev 418905)
@@ -0,0 +1,24 @@
+
+
+  com.github.l3afpad
+  l3afpad.desktop
+  L3afpad
+  Simple text editor
+  CC0-1.0
+  GPL-2.0
+  
+
+  L3afpad is a simple GTK+ text editor that emphasizes simplicity. As 
development
+  focuses on keeping weight down to a minimum, only the most essential 
features
+  are implemented in the editor. L3afpad is simple to use, is easily 
compiled,
+  requires few libraries, and starts up quickly.
+
+  
+  
+
+  
https://cn.opendesktop.org/img/hive/content-pre1/144892-1.png
+
+  
+  https://github.com/stevenhoneyman/l3afpad/issues
+  https://github.com/stevenhoneyman/l3afpad
+


[arch-commits] Commit in l3afpad/trunk (PKGBUILD l3afpad.appdata.xml)

2018-12-29 Thread Balló György via arch-commits
Date: Saturday, December 29, 2018 @ 18:57:17
  Author: bgyorgy
Revision: 418904

upgpkg: l3afpad 0.8.18.1.11-4

Add AppStream metadata

Added:
  l3afpad/trunk/l3afpad.appdata.xml
Modified:
  l3afpad/trunk/PKGBUILD

-+
 PKGBUILD|   10 +++---
 l3afpad.appdata.xml |   24 
 2 files changed, 31 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-29 17:55:24 UTC (rev 418903)
+++ PKGBUILD2018-12-29 18:57:17 UTC (rev 418904)
@@ -4,7 +4,7 @@
 
 pkgname=l3afpad
 pkgver=0.8.18.1.11
-pkgrel=3
+pkgrel=4
 pkgdesc="Simple plain text editor for GTK+ 3"
 arch=('x86_64')
 url="https://github.com/stevenhoneyman/l3afpad;
@@ -11,8 +11,10 @@
 license=('GPL2')
 depends=('gtk3')
 makedepends=('intltool')
-source=(https://github.com/stevenhoneyman/l3afpad/archive/v$pkgver.tar.gz)
-md5sums=('2c209503116b53e732c37f8d8d4c40fd')
+source=($pkgname-$pkgver.tar.gz::https://github.com/stevenhoneyman/l3afpad/archive/v$pkgver.tar.gz
+l3afpad.appdata.xml)
+sha256sums=('86f374b2f950b7c60dda50aa80a5034b8e3c80ded5cd3284c2d5921b31652793'
+'f6a49d9bbe4406ecfc1859592742af530e5f9ae29e590b7a164e729034304f03')
 
 prepare() {
   cd $pkgname-$pkgver
@@ -28,4 +30,6 @@
 package() {
   cd $pkgname-$pkgver
   make DESTDIR="$pkgdir" install
+  install -Dm644 ../$pkgname.appdata.xml 
"$pkgdir/usr/share/metainfo/$pkgname.appdata.xml"
+  rm -r "$pkgdir/usr/share/pixmaps/"
 }

Added: l3afpad.appdata.xml
===
--- l3afpad.appdata.xml (rev 0)
+++ l3afpad.appdata.xml 2018-12-29 18:57:17 UTC (rev 418904)
@@ -0,0 +1,24 @@
+
+
+  com.github.l3afpad
+  l3afpad.desktop
+  L3afpad
+  Simple text editor
+  CC0-1.0
+  GPL-2.0
+  
+
+  L3afpad is a simple GTK+ text editor that emphasizes simplicity. As 
development
+  focuses on keeping weight down to a minimum, only the most essential 
features
+  are implemented in the editor. L3afpad is simple to use, is easily 
compiled,
+  requires few libraries, and starts up quickly.
+
+  
+  
+
+  
https://cn.opendesktop.org/img/hive/content-pre1/144892-1.png
+
+  
+  https://github.com/stevenhoneyman/l3afpad/issues
+  https://github.com/stevenhoneyman/l3afpad
+


[arch-commits] Commit in systemd-ui/trunk (PKGBUILD systemadm.appdata.xml)

2018-12-29 Thread Balló György via arch-commits
Date: Saturday, December 29, 2018 @ 17:55:19
  Author: bgyorgy
Revision: 418902

upgpkg: systemd-ui 3-4

Add AppStream metadata

Added:
  systemd-ui/trunk/systemadm.appdata.xml
Modified:
  systemd-ui/trunk/PKGBUILD

---+
 PKGBUILD  |9 ++---
 systemadm.appdata.xml |   34 ++
 2 files changed, 40 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-29 17:36:24 UTC (rev 418901)
+++ PKGBUILD2018-12-29 17:55:19 UTC (rev 418902)
@@ -3,7 +3,7 @@
 
 pkgname=systemd-ui
 pkgver=3
-pkgrel=3
+pkgrel=4
 pkgdesc="Graphical front-end for systemd"
 arch=('x86_64')
 url="https://www.freedesktop.org/wiki/Software/systemd;
@@ -10,8 +10,10 @@
 license=('GPL')
 depends=('gtk3' 'libgee' 'libnotify')
 makedepends=('vala' 'docbook-xsl' 'libxslt')
-source=("https://www.freedesktop.org/software/systemd/$pkgname-$pkgver.tar.xz;)
-sha512sums=('babc81dc6c205b3b95d19b4c762e2658c02942db884384f25324f63b4dca3cdafdb1b12e1a63ff33f9ff0c8152529cc700a1173c888cf4f6e3a9f0992889c9cd')
+source=(https://www.freedesktop.org/software/systemd/$pkgname-$pkgver.tar.xz
+systemadm.appdata.xml)
+sha256sums=('455e65000abf39bbccd937786b5f0d7c76ea631b6f28d7142f007fa141338dad'
+'2d335848d3810e34baa1efada6bb48c459c75e7007db3c7065a9e0d7325adefb')
 
 build() {
   cd $pkgname-$pkgver
@@ -22,4 +24,5 @@
 package() {
   cd $pkgname-$pkgver
   make DESTDIR="$pkgdir" install
+  install -Dm644 ../systemadm.appdata.xml 
"$pkgdir/usr/share/metainfo/systemadm.appdata.xml"
 }

Added: systemadm.appdata.xml
===
--- systemadm.appdata.xml   (rev 0)
+++ systemadm.appdata.xml   2018-12-29 17:55:19 UTC (rev 418902)
@@ -0,0 +1,34 @@
+
+
+
+  org.freedesktop.systemadm
+  systemadm.desktop
+  systemd System Manager
+  Manage systemd units
+  CC0-1.0
+  GPL-2.0
+  
+
+  systemadm is the graphical browser for systemd units. It
+  can show the list of units, possibly filtered by type.
+  For individual units, name, description and dependencies
+  with other units will be shown.
+
+
+
+  This tool has been largely obsoleted by the commandline
+  tools like systemctl and systemd-analyze. Bugs are likely
+  to be present.
+
+  
+  
+
+  https://in.waw.pl/~zbyszek/systemd/systemadm-main-window.png
+
+
+  https://in.waw.pl/~zbyszek/systemd/systemadm-sockets-target.png
+
+  
+  https://www.freedesktop.org/wiki/Software/systemd/
+  zbys...@in.waw.pl
+


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

2018-12-29 Thread Balló György via arch-commits
Date: Saturday, December 29, 2018 @ 17:55:24
  Author: bgyorgy
Revision: 418903

archrelease: copy trunk to community-x86_64

Added:
  systemd-ui/repos/community-x86_64/PKGBUILD
(from rev 418902, systemd-ui/trunk/PKGBUILD)
  systemd-ui/repos/community-x86_64/systemadm.appdata.xml
(from rev 418902, systemd-ui/trunk/systemadm.appdata.xml)
Deleted:
  systemd-ui/repos/community-x86_64/PKGBUILD

---+
 PKGBUILD  |   54 
 systemadm.appdata.xml |   34 ++
 2 files changed, 62 insertions(+), 26 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-29 17:55:19 UTC (rev 418902)
+++ PKGBUILD2018-12-29 17:55:24 UTC (rev 418903)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor: Jameson Pugh 
-
-pkgname=systemd-ui
-pkgver=3
-pkgrel=3
-pkgdesc="Graphical front-end for systemd"
-arch=('x86_64')
-url="https://www.freedesktop.org/wiki/Software/systemd;
-license=('GPL')
-depends=('gtk3' 'libgee' 'libnotify')
-makedepends=('vala' 'docbook-xsl' 'libxslt')
-source=("https://www.freedesktop.org/software/systemd/$pkgname-$pkgver.tar.xz;)
-sha512sums=('babc81dc6c205b3b95d19b4c762e2658c02942db884384f25324f63b4dca3cdafdb1b12e1a63ff33f9ff0c8152529cc700a1173c888cf4f6e3a9f0992889c9cd')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: systemd-ui/repos/community-x86_64/PKGBUILD (from rev 418902, 
systemd-ui/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-29 17:55:24 UTC (rev 418903)
@@ -0,0 +1,28 @@
+# Maintainer: Balló György 
+# Contributor: Jameson Pugh 
+
+pkgname=systemd-ui
+pkgver=3
+pkgrel=4
+pkgdesc="Graphical front-end for systemd"
+arch=('x86_64')
+url="https://www.freedesktop.org/wiki/Software/systemd;
+license=('GPL')
+depends=('gtk3' 'libgee' 'libnotify')
+makedepends=('vala' 'docbook-xsl' 'libxslt')
+source=(https://www.freedesktop.org/software/systemd/$pkgname-$pkgver.tar.xz
+systemadm.appdata.xml)
+sha256sums=('455e65000abf39bbccd937786b5f0d7c76ea631b6f28d7142f007fa141338dad'
+'2d335848d3810e34baa1efada6bb48c459c75e7007db3c7065a9e0d7325adefb')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -Dm644 ../systemadm.appdata.xml 
"$pkgdir/usr/share/metainfo/systemadm.appdata.xml"
+}

Copied: systemd-ui/repos/community-x86_64/systemadm.appdata.xml (from rev 
418902, systemd-ui/trunk/systemadm.appdata.xml)
===
--- systemadm.appdata.xml   (rev 0)
+++ systemadm.appdata.xml   2018-12-29 17:55:24 UTC (rev 418903)
@@ -0,0 +1,34 @@
+
+
+
+  org.freedesktop.systemadm
+  systemadm.desktop
+  systemd System Manager
+  Manage systemd units
+  CC0-1.0
+  GPL-2.0
+  
+
+  systemadm is the graphical browser for systemd units. It
+  can show the list of units, possibly filtered by type.
+  For individual units, name, description and dependencies
+  with other units will be shown.
+
+
+
+  This tool has been largely obsoleted by the commandline
+  tools like systemctl and systemd-analyze. Bugs are likely
+  to be present.
+
+  
+  
+
+  https://in.waw.pl/~zbyszek/systemd/systemadm-main-window.png
+
+
+  https://in.waw.pl/~zbyszek/systemd/systemadm-sockets-target.png
+
+  
+  https://www.freedesktop.org/wiki/Software/systemd/
+  zbys...@in.waw.pl
+


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

2018-12-29 Thread Felix Yan via arch-commits
Date: Saturday, December 29, 2018 @ 17:35:35
  Author: felixonmars
Revision: 418898

upgpkg: git-annex 7.20181211-13

rebuild with aws 0.21

Modified:
  git-annex/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-29 17:34:59 UTC (rev 418897)
+++ PKGBUILD2018-12-29 17:35:35 UTC (rev 418898)
@@ -3,7 +3,7 @@
 
 pkgname=git-annex
 pkgver=7.20181211
-pkgrel=12
+pkgrel=13
 pkgdesc="Manage files with git, without checking their contents into git"
 url="http://git-annex.branchable.com/;
 license=("AGPL3")


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

2018-12-29 Thread Felix Yan via arch-commits
Date: Saturday, December 29, 2018 @ 17:35:56
  Author: felixonmars
Revision: 418899

archrelease: copy trunk to community-staging-x86_64

Added:
  git-annex/repos/community-staging-x86_64/
  git-annex/repos/community-staging-x86_64/PKGBUILD
(from rev 418898, git-annex/trunk/PKGBUILD)
  git-annex/repos/community-staging-x86_64/ghc-8.4.patch
(from rev 418898, git-annex/trunk/ghc-8.4.patch)

---+
 PKGBUILD  |   56 +
 ghc-8.4.patch |  121 
 2 files changed, 177 insertions(+)

Copied: git-annex/repos/community-staging-x86_64/PKGBUILD (from rev 418898, 
git-annex/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-12-29 17:35:56 UTC (rev 418899)
@@ -0,0 +1,56 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=git-annex
+pkgver=7.20181211
+pkgrel=13
+pkgdesc="Manage files with git, without checking their contents into git"
+url="http://git-annex.branchable.com/;
+license=("AGPL3")
+arch=('x86_64')
+depends=('git' 'lsof' 'rsync' 'ghc-libs' 'haskell-aeson' 'haskell-async' 
'haskell-aws'
+ 'haskell-blaze-builder' 'haskell-bloomfilter' 'haskell-byteable' 
'haskell-case-insensitive'
+ 'haskell-clientsession' 'haskell-concurrent-output' 
'haskell-connection' 'haskell-conduit'
+ 'haskell-crypto-api' 'haskell-cryptonite' 'haskell-data-default' 
'haskell-dav'
+ 'haskell-dbus' 'haskell-disk-free-space' 'haskell-dlist' 
'haskell-edit-distance'
+ 'haskell-exceptions' 'haskell-fdo-notify' 'haskell-feed' 
'haskell-hinotify'
+ 'haskell-hslogger' 'haskell-http-client' 'haskell-http-client-tls' 
'haskell-http-conduit'
+ 'haskell-http-types' 'haskell-ifelse' 'haskell-magic' 
'haskell-memory' 'haskell-microlens'
+ 'haskell-monad-control' 'haskell-monad-logger' 'haskell-mountpoints' 
'haskell-network'
+ 'haskell-network-info' 'haskell-network-multicast' 
'haskell-network-uri'
+ 'haskell-old-locale' 'haskell-optparse-applicative' 
'haskell-path-pieces'
+ 'haskell-persistent' 'haskell-persistent-sqlite' 
'haskell-persistent-template'
+ 'haskell-quickcheck' 'haskell-random' 'haskell-regex-tdfa' 
'haskell-resourcet'
+ 'haskell-safesemaphore' 'haskell-sandi' 'haskell-securemem' 
'haskell-shakespeare'
+ 'haskell-socks' 'haskell-split' 'haskell-stm-chans' 'haskell-tagsoup' 
'haskell-tasty'
+ 'haskell-tasty-hunit' 'haskell-tasty-quickcheck' 
'haskell-tasty-rerun' 'haskell-torrent'
+ 'haskell-unix-compat' 'haskell-unordered-containers' 
'haskell-utf8-string' 'haskell-uuid'
+ 'haskell-vector' 'haskell-wai' 'haskell-wai-extra' 'haskell-warp' 
'haskell-warp-tls'
+ 'haskell-yesod' 'haskell-yesod-core' 'haskell-yesod-form' 
'haskell-yesod-static')
+makedepends=('chrpath' 'ghc')
+source=("git+https://git.joeyh.name/git/git-annex.git#tag=$pkgver;)
+sha512sums=('SKIP')
+
+prepare() {
+  cd git-annex
+  sed -i '1i{-# language NoMonadFailDesugaring #-}' Remote/Glacier.hs 
Remote/Ddar.hs Remote/Helper/Ssh.hs Remote/Bup.hs Annex/YoutubeDl.hs 
Remote/Git.hs Assistant/TransferQueue.hs Assistant/Threads/RemoteControl.hs 
Test.hs
+}
+
+build() {
+  cd git-annex
+
+  runhaskell Setup configure -O --prefix=/usr --enable-executable-dynamic 
--disable-library-vanilla \
+--docdir="/usr/share/doc/$pkgname" \
+-ftorrentparser -fproduction -fpairing -fwebapp \
+-fassistant -fwebdav -fs3 -f-benchmark -fdbus -fmagicmime
+  runhaskell Setup build
+}
+
+package() {
+  cd git-annex
+  runhaskell Setup copy --destdir="$pkgdir"
+  make GHC="ghc -dynamic" BUILDER=true DESTDIR="$pkgdir" -j1 install-misc
+
+  rm "$pkgdir"/usr/share/doc/git-annex/COPYRIGHT
+  rmdir "$pkgdir"/usr/share/doc/git-annex "$pkgdir"/usr/share/doc
+}

Copied: git-annex/repos/community-staging-x86_64/ghc-8.4.patch (from rev 
418898, git-annex/trunk/ghc-8.4.patch)
===
--- community-staging-x86_64/ghc-8.4.patch  (rev 0)
+++ community-staging-x86_64/ghc-8.4.patch  2018-12-29 17:35:56 UTC (rev 
418899)
@@ -0,0 +1,121 @@
+diff --git a/Command/Info.hs b/Command/Info.hs
+index c9a314056a..3ae82f5532 100644
+--- a/Command/Info.hs
 b/Command/Info.hs
+@@ -56,15 +56,17 @@ data KeyData = KeyData
+   , backendsKeys :: M.Map KeyVariety Integer
+   }
+ 
+-instance Monoid KeyData where
+-  mempty = KeyData 0 0 0 M.empty
+-  mappend a b = KeyData
++instance Semigroup KeyData where
++  a <> b = KeyData
+   { countKeys = countKeys a + countKeys b
+   , sizeKeys = sizeKeys a + sizeKeys b
+   , unknownSizeKeys = unknownSizeKeys a + unknownSizeKeys b
+   , backendsKeys = backendsKeys a <> backendsKeys b
+   }
+ 

[arch-commits] Commit in xarchiver/trunk (PKGBUILD xarchiver.appdata.xml)

2018-12-29 Thread Balló György via arch-commits
Date: Saturday, December 29, 2018 @ 17:34:55
  Author: bgyorgy
Revision: 418896

upgpkg: xarchiver 0.5.4.13-2

Add AppStream metadata

Added:
  xarchiver/trunk/xarchiver.appdata.xml
Modified:
  xarchiver/trunk/PKGBUILD

---+
 PKGBUILD  |   12 +---
 xarchiver.appdata.xml |   19 +++
 2 files changed, 28 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-29 17:31:22 UTC (rev 418895)
+++ PKGBUILD2018-12-29 17:34:55 UTC (rev 418896)
@@ -5,7 +5,7 @@
 pkgbase=xarchiver
 pkgname=(xarchiver xarchiver-gtk2)
 pkgver=0.5.4.13
-pkgrel=1
+pkgrel=2
 pkgdesc="GTK+ frontend to various command line archivers"
 arch=('x86_64')
 url="https://github.com/ib/xarchiver;
@@ -30,8 +30,10 @@
 'xz: xz support'
 'zip: ZIP support'
 'zstd: zstd support')
-source=($pkgbase-$pkgver.tar.gz::https://github.com/ib/xarchiver/archive/$pkgver.tar.gz)
-sha256sums=('617154435731554b793ab00cc373d957c066dc29444c6189029299a89430776c')
+source=($pkgbase-$pkgver.tar.gz::https://github.com/ib/xarchiver/archive/$pkgver.tar.gz
+xarchiver.appdata.xml)
+sha256sums=('617154435731554b793ab00cc373d957c066dc29444c6189029299a89430776c'
+'55f41aa0e5569b446933a34ac0585443fa5bd92f03f47e1fd53daf19905cc97e')
 
 build() {
   # GTK+ 3 version
@@ -53,6 +55,7 @@
 
   cd gtk3
   make DESTDIR="$pkgdir" install
+  install -Dm644 ../$pkgname.appdata.xml 
"$pkgdir/usr/share/metainfo/$pkgname.appdata.xml"
 }
 
 package_xarchiver-gtk2() {
@@ -62,4 +65,7 @@
 
   cd gtk2
   make DESTDIR="$pkgdir" install
+
+  # Ignore package by AppStream to avoid duplicated IDs
+  echo 'X-AppStream-Ignore=true' >> 
"$pkgdir/usr/share/applications/xarchiver.desktop"
 }

Added: xarchiver.appdata.xml
===
--- xarchiver.appdata.xml   (rev 0)
+++ xarchiver.appdata.xml   2018-12-29 17:34:55 UTC (rev 418896)
@@ -0,0 +1,19 @@
+
+
+  com.github.xarchiver
+  xarchiver.desktop
+  Xarchiver
+  A GTK+ only archive manager
+  CC0-1.0
+  GPL-2.0
+  
+Xarchiver is a lightweight desktop independent GTK+ frontend for 
manipulating xz, 7z, lzma, arj, bzip2, gzip, rar, tar, zip, rpm, lz4, compress, 
zstd, lzip, lrzip, lzop, lha and deb files. It allows you to create archives 
and add, extract, and delete files from them. Password protected archives in 
the arj, 7z, rar, zip and lrzip formats are supported.
+  
+  
+
+  
http://xarchiver.sourceforge.net/screenshots/main_window.png
+
+  
+  https://github.com/ib/xarchiver/issues
+  https://github.com/ib/xarchiver
+


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

2018-12-29 Thread Balló György via arch-commits
Date: Saturday, December 29, 2018 @ 17:34:59
  Author: bgyorgy
Revision: 418897

archrelease: copy trunk to community-x86_64

Added:
  xarchiver/repos/community-x86_64/PKGBUILD
(from rev 418896, xarchiver/trunk/PKGBUILD)
  xarchiver/repos/community-x86_64/xarchiver.appdata.xml
(from rev 418896, xarchiver/trunk/xarchiver.appdata.xml)
Deleted:
  xarchiver/repos/community-x86_64/PKGBUILD

---+
 PKGBUILD  |  137 
 xarchiver.appdata.xml |   19 ++
 2 files changed, 90 insertions(+), 66 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-29 17:34:55 UTC (rev 418896)
+++ PKGBUILD2018-12-29 17:34:59 UTC (rev 418897)
@@ -1,66 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor: Alexander Fehr 
-# Contributor: Andrew Simmons 
-
-pkgbase=xarchiver
-pkgname=(xarchiver xarchiver-gtk2)
-pkgver=0.5.4.13
-pkgrel=1
-pkgdesc="GTK+ frontend to various command line archivers"
-arch=('x86_64')
-url="https://github.com/ib/xarchiver;
-license=('GPL')
-depends=('gtk2' 'gtk3')
-makedepends=('docbook-xsl' 'intltool' 'xmlto')
-optdepends=('arj: ARJ support'
-'binutils: deb support'
-'bzip2: bzip2 support'
-'cpio: RPM support'
-'gzip: gzip support'
-'lha: LHA support'
-'lrzip: lrzip support'
-'lz4: LZ4 support'
-'lzip: lzip support'
-'lzop: LZOP support'
-'p7zip: 7z support'
-'tar: tar support'
-'unarj: ARJ support'
-'unrar: RAR support'
-'unzip: ZIP support'
-'xz: xz support'
-'zip: ZIP support'
-'zstd: zstd support')
-source=($pkgbase-$pkgver.tar.gz::https://github.com/ib/xarchiver/archive/$pkgver.tar.gz)
-sha256sums=('617154435731554b793ab00cc373d957c066dc29444c6189029299a89430776c')
-
-build() {
-  # GTK+ 3 version
-  [ -d gtk3 ] || cp -r $pkgbase-$pkgver gtk3
-  cd gtk3
-  ./configure --prefix=/usr --libexecdir=/usr/lib/xfce4
-  make -j1
-
-  cd "$srcdir"
-  # GTK+ 2 version
-  [ -d gtk2 ] || cp -r $pkgbase-$pkgver gtk2
-  cd gtk2
-  ./configure --prefix=/usr --libexecdir=/usr/lib/xfce4 --enable-gtk2
-  make -j1
-}
-
-package_xarchiver() {
-  depends=('gtk3')
-
-  cd gtk3
-  make DESTDIR="$pkgdir" install
-}
-
-package_xarchiver-gtk2() {
-  pkgdesc+=' (GTK+ 2 version)'
-  depends=('gtk2')
-  conflicts=('xarchiver')
-
-  cd gtk2
-  make DESTDIR="$pkgdir" install
-}

Copied: xarchiver/repos/community-x86_64/PKGBUILD (from rev 418896, 
xarchiver/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-29 17:34:59 UTC (rev 418897)
@@ -0,0 +1,71 @@
+# Maintainer: Balló György 
+# Contributor: Alexander Fehr 
+# Contributor: Andrew Simmons 
+
+pkgbase=xarchiver
+pkgname=(xarchiver xarchiver-gtk2)
+pkgver=0.5.4.13
+pkgrel=2
+pkgdesc="GTK+ frontend to various command line archivers"
+arch=('x86_64')
+url="https://github.com/ib/xarchiver;
+license=('GPL')
+depends=('gtk2' 'gtk3')
+makedepends=('docbook-xsl' 'intltool' 'xmlto')
+optdepends=('arj: ARJ support'
+'binutils: deb support'
+'bzip2: bzip2 support'
+'cpio: RPM support'
+'gzip: gzip support'
+'lha: LHA support'
+'lrzip: lrzip support'
+'lz4: LZ4 support'
+'lzip: lzip support'
+'lzop: LZOP support'
+'p7zip: 7z support'
+'tar: tar support'
+'unarj: ARJ support'
+'unrar: RAR support'
+'unzip: ZIP support'
+'xz: xz support'
+'zip: ZIP support'
+'zstd: zstd support')
+source=($pkgbase-$pkgver.tar.gz::https://github.com/ib/xarchiver/archive/$pkgver.tar.gz
+xarchiver.appdata.xml)
+sha256sums=('617154435731554b793ab00cc373d957c066dc29444c6189029299a89430776c'
+'55f41aa0e5569b446933a34ac0585443fa5bd92f03f47e1fd53daf19905cc97e')
+
+build() {
+  # GTK+ 3 version
+  [ -d gtk3 ] || cp -r $pkgbase-$pkgver gtk3
+  cd gtk3
+  ./configure --prefix=/usr --libexecdir=/usr/lib/xfce4
+  make -j1
+
+  cd "$srcdir"
+  # GTK+ 2 version
+  [ -d gtk2 ] || cp -r $pkgbase-$pkgver gtk2
+  cd gtk2
+  ./configure --prefix=/usr --libexecdir=/usr/lib/xfce4 --enable-gtk2
+  make -j1
+}
+
+package_xarchiver() {
+  depends=('gtk3')
+
+  cd gtk3
+  make DESTDIR="$pkgdir" install
+  install -Dm644 ../$pkgname.appdata.xml 
"$pkgdir/usr/share/metainfo/$pkgname.appdata.xml"
+}
+
+package_xarchiver-gtk2() {
+  pkgdesc+=' (GTK+ 2 version)'
+  depends=('gtk2')
+  conflicts=('xarchiver')
+
+  cd gtk2
+  make DESTDIR="$pkgdir" install
+
+  # Ignore package by AppStream to avoid duplicated IDs
+  echo 'X-AppStream-Ignore=true' >> 
"$pkgdir/usr/share/applications/xarchiver.desktop"
+}

Copied: 

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

2018-12-29 Thread Brett Cornwall via arch-commits
Date: Saturday, December 29, 2018 @ 17:31:22
  Author: ainola
Revision: 418895

add waybar from AUR (10 votes) - wait until next sway version to package

Added:
  waybar/
  waybar/repos/
  waybar/trunk/
  waybar/trunk/PKGBUILD

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

Added: waybar/trunk/PKGBUILD
===
--- waybar/trunk/PKGBUILD   (rev 0)
+++ waybar/trunk/PKGBUILD   2018-12-29 17:31:22 UTC (rev 418895)
@@ -0,0 +1,39 @@
+# Maintainer: Ainola 
+
+pkgname=waybar
+pkgver=0.2.3
+pkgrel=1
+pkgdesc='Highly customizable Wayland bar for Sway and Wlroots based 
compositors'
+arch=('x86_64')
+url="https://github.com/Alexays/Waybar/;
+license=('MIT')
+depends=(
+'fmt'
+'gtkmm3'
+'jsoncpp'
+'libappindicator-gtk3'
+'libpulse'
+)
+# Sway is needed for building support for workspace and window title modules
+makedepends=(
+'meson'
+'sway'
+'wlroots'
+)
+optdepends=(
+'otf-font-awesome: Icons in the default configuration'
+)
+source=("$pkgname-$pkgver.tar.gz::https://github.com/Alexays/Waybar/archive/$pkgver.tar.gz;)
+sha256sums=('dbaccbf829ab62578a5956e412b4cc9905be62af74425423628721a1b550f4c8')
+
+build() {
+cd "Waybar-$pkgver"
+meson --prefix=/usr build
+ninja -C build
+}
+
+package() {
+cd "Waybar-$pkgver"
+DESTDIR="$pkgdir" ninja -C build install
+install -Dm644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname/"
+}


[arch-commits] Commit in grml-zsh-config/repos/extra-any (PKGBUILD PKGBUILD)

2018-12-29 Thread Pierre Schmitz via arch-commits
Date: Saturday, December 29, 2018 @ 17:30:30
  Author: pierre
Revision: 342783

archrelease: copy trunk to extra-any

Added:
  grml-zsh-config/repos/extra-any/PKGBUILD
(from rev 342782, grml-zsh-config/trunk/PKGBUILD)
Deleted:
  grml-zsh-config/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-29 17:30:04 UTC (rev 342782)
+++ PKGBUILD2018-12-29 17:30:30 UTC (rev 342783)
@@ -1,29 +0,0 @@
-# Maintainer: Pierre Schmitz 
-
-pkgname=grml-zsh-config
-pkgver=0.15.2
-pkgrel=1
-pkgdesc="grml's zsh setup"
-arch=('any')
-url='https://grml.org/zsh/'
-license=('GPL2')
-provides=('grmlzshrc')
-depends=('zsh' 'coreutils' 'inetutils' 'grep' 'sed' 'procps')
-makedepends=('txt2tags')
-source=("https://deb.grml.org/pool/main/g/grml-etc-core/grml-etc-core_${pkgver}.tar.gz;)
-sha256sums=('b7c577fa87bd883783021331f9508a5da09f80a57a9a66840cace2d321aae299')
-
-build() {
-   cd ${srcdir}/grml-etc-core-${pkgver}/doc
-   make
-}
-
-package() {
-   cd ${srcdir}/grml-etc-core-${pkgver}
-   install -D -m644 etc/skel/.zshrc ${pkgdir}/etc/skel/.zshrc
-   install -D -m644 etc/zsh/keephack ${pkgdir}/etc/zsh/keephack
-   install -D -m644 etc/zsh/zshrc ${pkgdir}/etc/zsh/zshrc
-
-   install -D -m644 doc/grmlzshrc.5 
${pkgdir}/usr/share/man/man5/grmlzshrc.5
-   ln -sf grmlzshrc.5.gz ${pkgdir}/usr/share/man/man5/grml-zsh-config.5.gz
-}

Copied: grml-zsh-config/repos/extra-any/PKGBUILD (from rev 342782, 
grml-zsh-config/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-29 17:30:30 UTC (rev 342783)
@@ -0,0 +1,29 @@
+# Maintainer: Pierre Schmitz 
+
+pkgname=grml-zsh-config
+pkgver=0.15.3
+pkgrel=1
+pkgdesc="grml's zsh setup"
+arch=('any')
+url='https://grml.org/zsh/'
+license=('GPL2')
+provides=('grmlzshrc')
+depends=('zsh' 'coreutils' 'inetutils' 'grep' 'sed' 'procps')
+makedepends=('txt2tags')
+source=("https://deb.grml.org/pool/main/g/grml-etc-core/grml-etc-core_${pkgver}.tar.gz;)
+sha256sums=('680579577eedd5110b363268968c1bfd87799afa7002c8fe9801e95ea7c819a1')
+
+build() {
+   cd ${srcdir}/grml-etc-core-${pkgver}/doc
+   make
+}
+
+package() {
+   cd ${srcdir}/grml-etc-core-${pkgver}
+   install -D -m644 etc/skel/.zshrc ${pkgdir}/etc/skel/.zshrc
+   install -D -m644 etc/zsh/keephack ${pkgdir}/etc/zsh/keephack
+   install -D -m644 etc/zsh/zshrc ${pkgdir}/etc/zsh/zshrc
+
+   install -D -m644 doc/grmlzshrc.5 
${pkgdir}/usr/share/man/man5/grmlzshrc.5
+   ln -sf grmlzshrc.5.gz ${pkgdir}/usr/share/man/man5/grml-zsh-config.5.gz
+}


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

2018-12-29 Thread Felix Yan via arch-commits
Date: Saturday, December 29, 2018 @ 17:29:55
  Author: felixonmars
Revision: 418894

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-aws/repos/community-staging-x86_64/
  haskell-aws/repos/community-staging-x86_64/PKGBUILD
(from rev 418893, haskell-aws/trunk/PKGBUILD)

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

Copied: haskell-aws/repos/community-staging-x86_64/PKGBUILD (from rev 418893, 
haskell-aws/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-12-29 17:29:55 UTC (rev 418894)
@@ -0,0 +1,53 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=aws
+pkgname=haskell-aws
+pkgver=0.21
+pkgrel=1
+pkgdesc="Amazon Web Services (AWS) for Haskell"
+url="https://github.com/aristidb/aws;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-attoparsec' 
'haskell-base16-bytestring'
+ 'haskell-base64-bytestring' 'haskell-blaze-builder' 'haskell-byteable'
+ 'haskell-case-insensitive' 'haskell-cereal' 'haskell-conduit' 
'haskell-conduit-extra'
+ 'haskell-cryptonite' 'haskell-data-default' 'haskell-exceptions' 
'haskell-http-conduit'
+ 'haskell-http-client-tls' 'haskell-http-types' 'haskell-lifted-base' 
'haskell-memory'
+ 'haskell-monad-control' 'haskell-network' 'haskell-old-locale' 
'haskell-resourcet'
+ 'haskell-safe' 'haskell-scientific' 'haskell-tagged' 
'haskell-unordered-containers'
+ 'haskell-utf8-string' 'haskell-vector' 'haskell-xml-conduit')
+makedepends=('ghc' 'haskell-quickcheck' 'haskell-errors' 'haskell-http-client'
+ 'haskell-http-client-tls' 'haskell-quickcheck-instances' 
'haskell-tasty'
+ 'haskell-tasty-hunit' 'haskell-tasty-quickcheck' 
'haskell-transformers-base')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('7122c5c62ef05865dd06f2bd953f34aabcc3254bc6119a8dd2d931c098f4b58fb8479cd2dd0fd65e5ffa042b28b9d1ed5c0ba627a8b400e7eaf499ffd3bc')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-examples
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test || warning "Requires AWS credentials to test"
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-12-29 Thread Pierre Schmitz via arch-commits
Date: Saturday, December 29, 2018 @ 17:30:04
  Author: pierre
Revision: 342782

upgpkg: grml-zsh-config 0.15.3-1

Modified:
  grml-zsh-config/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-29 13:55:22 UTC (rev 342781)
+++ PKGBUILD2018-12-29 17:30:04 UTC (rev 342782)
@@ -1,7 +1,7 @@
 # Maintainer: Pierre Schmitz 
 
 pkgname=grml-zsh-config
-pkgver=0.15.2
+pkgver=0.15.3
 pkgrel=1
 pkgdesc="grml's zsh setup"
 arch=('any')
@@ -11,7 +11,7 @@
 depends=('zsh' 'coreutils' 'inetutils' 'grep' 'sed' 'procps')
 makedepends=('txt2tags')
 
source=("https://deb.grml.org/pool/main/g/grml-etc-core/grml-etc-core_${pkgver}.tar.gz;)
-sha256sums=('b7c577fa87bd883783021331f9508a5da09f80a57a9a66840cace2d321aae299')
+sha256sums=('680579577eedd5110b363268968c1bfd87799afa7002c8fe9801e95ea7c819a1')
 
 build() {
cd ${srcdir}/grml-etc-core-${pkgver}/doc


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

2018-12-29 Thread Felix Yan via arch-commits
Date: Saturday, December 29, 2018 @ 17:29:23
  Author: felixonmars
Revision: 418893

upgpkg: haskell-aws 0.21-1

rebuild with aws 0.21

Modified:
  haskell-aws/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-29 17:29:15 UTC (rev 418892)
+++ PKGBUILD2018-12-29 17:29:23 UTC (rev 418893)
@@ -3,8 +3,8 @@
 
 _hkgname=aws
 pkgname=haskell-aws
-pkgver=0.20
-pkgrel=128
+pkgver=0.21
+pkgrel=1
 pkgdesc="Amazon Web Services (AWS) for Haskell"
 url="https://github.com/aristidb/aws;
 license=("BSD")
@@ -13,15 +13,15 @@
  'haskell-base64-bytestring' 'haskell-blaze-builder' 'haskell-byteable'
  'haskell-case-insensitive' 'haskell-cereal' 'haskell-conduit' 
'haskell-conduit-extra'
  'haskell-cryptonite' 'haskell-data-default' 'haskell-exceptions' 
'haskell-http-conduit'
- 'haskell-http-types' 'haskell-lifted-base' 'haskell-memory' 
'haskell-monad-control'
- 'haskell-network' 'haskell-old-locale' 'haskell-resourcet' 
'haskell-safe'
- 'haskell-scientific' 'haskell-tagged' 'haskell-unordered-containers'
+ 'haskell-http-client-tls' 'haskell-http-types' 'haskell-lifted-base' 
'haskell-memory'
+ 'haskell-monad-control' 'haskell-network' 'haskell-old-locale' 
'haskell-resourcet'
+ 'haskell-safe' 'haskell-scientific' 'haskell-tagged' 
'haskell-unordered-containers'
  'haskell-utf8-string' 'haskell-vector' 'haskell-xml-conduit')
 makedepends=('ghc' 'haskell-quickcheck' 'haskell-errors' 'haskell-http-client'
  'haskell-http-client-tls' 'haskell-quickcheck-instances' 
'haskell-tasty'
  'haskell-tasty-hunit' 'haskell-tasty-quickcheck' 
'haskell-transformers-base')
 
source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha512sums=('b6c9b78c1918fc01057ac3c9f57c98d0d796a228b2efce7f4b8763e6ba86fdad0e29637359a1f2f830adb19cdaade20c4eb08bbe9259bbc79da718771ac5f821')
+sha512sums=('7122c5c62ef05865dd06f2bd953f34aabcc3254bc6119a8dd2d931c098f4b58fb8479cd2dd0fd65e5ffa042b28b9d1ed5c0ba627a8b400e7eaf499ffd3bc')
 
 build() {
 cd $_hkgname-$pkgver


[arch-commits] Commit in deepin-daemon/repos/community-x86_64 (6 files)

2018-12-29 Thread Felix Yan via arch-commits
Date: Saturday, December 29, 2018 @ 17:29:15
  Author: felixonmars
Revision: 418892

archrelease: copy trunk to community-x86_64

Added:
  deepin-daemon/repos/community-x86_64/PKGBUILD
(from rev 418891, deepin-daemon/trunk/PKGBUILD)
  deepin-daemon/repos/community-x86_64/deepin-daemon.install
(from rev 418891, deepin-daemon/trunk/deepin-daemon.install)
  deepin-daemon/repos/community-x86_64/deepin-daemon.sysusers
(from rev 418891, deepin-daemon/trunk/deepin-daemon.sysusers)
Deleted:
  deepin-daemon/repos/community-x86_64/PKGBUILD
  deepin-daemon/repos/community-x86_64/deepin-daemon.install
  deepin-daemon/repos/community-x86_64/deepin-daemon.sysusers

+
 PKGBUILD   |  136 +++
 deepin-daemon.install  |6 +-
 deepin-daemon.sysusers |4 -
 3 files changed, 73 insertions(+), 73 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-29 17:28:54 UTC (rev 418891)
+++ PKGBUILD2018-12-29 17:29:15 UTC (rev 418892)
@@ -1,68 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-daemon
-pkgver=3.15.0
-pkgrel=2
-pkgdesc='Daemon handling the DDE session settings'
-arch=('x86_64')
-url="https://github.com/linuxdeepin/dde-daemon;
-license=('GPL3')
-depends=('deepin-desktop-schemas' 'gvfs' 'libcanberra-pulse' 'poppler-glib' 
'rfkill' 'bluez'
- 'deepin-notifications' 'iso-codes' 'lsb-release' 
'mobile-broadband-provider-info'
- 'deepin-polkit-agent' 'deepin-polkit-agent-ext-gnomekeyring' 
'udisks2' 'upower'
- 'libxkbfile' 'accountsservice' 'deepin-desktop-base' 'bamf' 
'pulseaudio'
- 'gnome-keyring' 'noto-fonts' 'imwheel')
-makedepends=('deepin-dbus-factory' 'deepin-go-dbus-factory' 
'deepin-gir-generator' 'deepin-go-lib'
- 'deepin-api' 'sqlite' 'deepin-gettext-tools' 'git' 'mercurial' 
'python-gobject'
- 'networkmanager' 'go-pie')
-optdepends=('networkmanager: for network management support'
-'deepin-grub2-themes: theme for grub module'
-'iw: for miracast module'
-'proxychains-ng: for proxy configuration module')
-conflicts=('dde-daemon')
-replaces=('dde-daemon')
-groups=('deepin')
-install="${pkgname}.install"
-source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/dde-daemon/archive/$pkgver.tar.gz;
-
https://raw.githubusercontent.com/jouyouyun/tap-gesture-patches/master/patches/dde-daemon_3.8.0.patch
-'deepin-daemon.sysusers')
-sha512sums=('61225ed04c76da111af55fa610bae3b526e5781dde0432d47eb03c134b60d2358f1bf9ef7e6a30bf2649a7758b903602604f225f031f7079f05287bc7a862578'
-
'334839a8136cad44aadb4c97be29ae89f8a1106928175b9bd9115051b34d52cb468902636a67bae8685888bdfe8d8ae195cf8df2b9e93e480f3f008494942e74'
-
'808c02d4fec4cbbb01119bbb10499090199e738b7dd72c28a57dde098eef6132723f3434c151f79e21d9f788c7f7bae8046573ac93ba917afe0e803fbffa6d5a')
-
-prepare() {
-  cd dde-daemon-$pkgver
-  patch -p1 -i ../dde-daemon_3.8.0.patch
-
-  export GOPATH="$srcdir/build:/usr/share/gocode"
-
-  # https://github.com/niemeyer/gopkg/issues/50
-  git config --global http.https://gopkg.in.followRedirects true
-
-  go get github.com/BurntSushi/xgb github.com/BurntSushi/xgbutil 
github.com/linuxdeepin/go-x11-client \
- github.com/mattn/go-sqlite3 gopkg.in/alecthomas/kingpin.v2 
github.com/disintegration/imaging \
- github.com/BurntSushi/freetype-go/freetype 
github.com/BurntSushi/freetype-go/freetype/truetype \
- github.com/BurntSushi/graphics-go/graphics 
github.com/fsnotify/fsnotify golang.org/x/sys/unix \
- gopkg.in/yaml.v2 github.com/axgle/mahonia github.com/msteinert/pam 
github.com/nfnt/resize \
- golang.org/x/text/encoding/charmap github.com/cryptix/wav 
golang.org/x/net/context
-
-  sed -i 
's#/usr/share/backgrounds/default_background.jpg#/usr/share/backgrounds/deepin/desktop.jpg#'
 accounts/user.go
-}
-
-build() {
-  cd dde-daemon-$pkgver
-  make -C network/nm_generator gen-nm-code
-  make
-}
-
-package() {
-  cd dde-daemon-$pkgver
-  make DESTDIR="$pkgdir" install
-
-  mv "$pkgdir"{,/usr}/lib/systemd
-  rmdir "$pkgdir"/lib
-
-  install -Dm644 ../deepin-daemon.sysusers 
"$pkgdir/usr/lib/sysusers.d/deepin-daemon.conf"
-}

Copied: deepin-daemon/repos/community-x86_64/PKGBUILD (from rev 418891, 
deepin-daemon/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-29 17:29:15 UTC (rev 418892)
@@ -0,0 +1,68 @@
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-daemon
+pkgver=3.16.0
+pkgrel=1
+pkgdesc='Daemon handling the DDE session settings'
+arch=('x86_64')
+url="https://github.com/linuxdeepin/dde-daemon;
+license=('GPL3')
+depends=('deepin-desktop-schemas' 'gvfs' 'libcanberra-pulse' 

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

2018-12-29 Thread Felix Yan via arch-commits
Date: Saturday, December 29, 2018 @ 17:28:54
  Author: felixonmars
Revision: 418891

upgpkg: deepin-daemon 3.16.0-1

Modified:
  deepin-daemon/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-29 17:24:33 UTC (rev 418890)
+++ PKGBUILD2018-12-29 17:28:54 UTC (rev 418891)
@@ -3,8 +3,8 @@
 # Contributor: Xu Fasheng 
 
 pkgname=deepin-daemon
-pkgver=3.15.0
-pkgrel=2
+pkgver=3.16.0
+pkgrel=1
 pkgdesc='Daemon handling the DDE session settings'
 arch=('x86_64')
 url="https://github.com/linuxdeepin/dde-daemon;
@@ -28,7 +28,7 @@
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/dde-daemon/archive/$pkgver.tar.gz;
 
https://raw.githubusercontent.com/jouyouyun/tap-gesture-patches/master/patches/dde-daemon_3.8.0.patch
 'deepin-daemon.sysusers')
-sha512sums=('61225ed04c76da111af55fa610bae3b526e5781dde0432d47eb03c134b60d2358f1bf9ef7e6a30bf2649a7758b903602604f225f031f7079f05287bc7a862578'
+sha512sums=('077a52c234de5c0ff4f80fa10152667d8eac95f68b8adf70e3187c7e9ec76a81206c65aa51de2ec3dc9d5dff2572b258be554dd27a45a19cba56ce1e01c655a9'
 
'334839a8136cad44aadb4c97be29ae89f8a1106928175b9bd9115051b34d52cb468902636a67bae8685888bdfe8d8ae195cf8df2b9e93e480f3f008494942e74'
 
'808c02d4fec4cbbb01119bbb10499090199e738b7dd72c28a57dde098eef6132723f3434c151f79e21d9f788c7f7bae8046573ac93ba917afe0e803fbffa6d5a')
 


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

2018-12-29 Thread Felix Yan via arch-commits
Date: Saturday, December 29, 2018 @ 17:24:33
  Author: felixonmars
Revision: 418890

archrelease: copy trunk to community-x86_64

Added:
  startdde/repos/community-x86_64/PKGBUILD
(from rev 418889, startdde/trunk/PKGBUILD)
Deleted:
  startdde/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-29 17:24:15 UTC (rev 418889)
+++ PKGBUILD2018-12-29 17:24:33 UTC (rev 418890)
@@ -1,36 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=startdde
-pkgver=3.8.0
-pkgrel=2
-pkgdesc="starter of deepin desktop environment"
-arch=('x86_64')
-url="https://github.com/linuxdeepin/startdde;
-license=('GPL3')
-depends=('deepin-daemon' 'deepin-wm' 'deepin-metacity' 'libgnome-keyring')
-makedepends=('cmake' 'coffeescript' 'deepin-go-dbus-factory' 
'deepin-gir-generator' 'deepin-go-lib'
- 'deepin-api' 'go-pie' 'python2' 'git' 'jq' 'deepin-dbus-factory')
-replaces=('deepin-wm-switcher')
-groups=('deepin')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/startdde/archive/$pkgver.tar.gz;)
-sha512sums=('ca0915636b51472b5224bf1031ecf09d634e55ec1a61198934f913fe529ae29206bb3614324261bcb498f3fa87a96e6c5bc96e154246e265259e307f15c987ed')
-
-prepare() {
-  export GOPATH="$srcdir/build:/usr/share/gocode"
-  go get github.com/BurntSushi/xgb github.com/BurntSushi/xgbutil 
github.com/howeyc/fsnotify \
- github.com/cryptix/wav golang.org/x/net/context 
github.com/linuxdeepin/go-x11-client
-
-  sed -i 's/sbin/bin/' startdde-$pkgver/Makefile
-}
-
-build() {
-  cd startdde-$pkgver
-  make
-}
-
-package() {
-  cd startdde-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: startdde/repos/community-x86_64/PKGBUILD (from rev 418889, 
startdde/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-29 17:24:33 UTC (rev 418890)
@@ -0,0 +1,36 @@
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=startdde
+pkgver=3.8.0
+pkgrel=3
+pkgdesc="starter of deepin desktop environment"
+arch=('x86_64')
+url="https://github.com/linuxdeepin/startdde;
+license=('GPL3')
+depends=('deepin-daemon' 'deepin-wm' 'deepin-metacity' 'libgnome-keyring')
+makedepends=('cmake' 'coffeescript' 'deepin-go-dbus-factory' 
'deepin-gir-generator' 'deepin-go-lib'
+ 'deepin-api' 'go-pie' 'python2' 'git' 'jq' 'deepin-dbus-factory')
+replaces=('deepin-wm-switcher')
+groups=('deepin')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/startdde/archive/$pkgver.tar.gz;)
+sha512sums=('ca0915636b51472b5224bf1031ecf09d634e55ec1a61198934f913fe529ae29206bb3614324261bcb498f3fa87a96e6c5bc96e154246e265259e307f15c987ed')
+
+prepare() {
+  export GOPATH="$srcdir/build:/usr/share/gocode"
+  go get github.com/BurntSushi/xgb github.com/BurntSushi/xgbutil 
github.com/howeyc/fsnotify \
+ github.com/cryptix/wav golang.org/x/net/context 
github.com/linuxdeepin/go-x11-client
+
+  sed -i 's/sbin/bin/' startdde-$pkgver/Makefile
+}
+
+build() {
+  cd startdde-$pkgver
+  make
+}
+
+package() {
+  cd startdde-$pkgver
+  make DESTDIR="$pkgdir" install
+}


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

2018-12-29 Thread Felix Yan via arch-commits
Date: Saturday, December 29, 2018 @ 17:24:15
  Author: felixonmars
Revision: 418889

upgpkg: startdde 3.8.0-3

rebuild with new go-lib

Modified:
  startdde/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-29 17:23:54 UTC (rev 41)
+++ PKGBUILD2018-12-29 17:24:15 UTC (rev 418889)
@@ -4,7 +4,7 @@
 
 pkgname=startdde
 pkgver=3.8.0
-pkgrel=2
+pkgrel=3
 pkgdesc="starter of deepin desktop environment"
 arch=('x86_64')
 url="https://github.com/linuxdeepin/startdde;


[arch-commits] Commit in deepin-file-manager/repos/community-x86_64 (4 files)

2018-12-29 Thread Felix Yan via arch-commits
Date: Saturday, December 29, 2018 @ 17:23:54
  Author: felixonmars
Revision: 41

archrelease: copy trunk to community-x86_64

Added:
  deepin-file-manager/repos/community-x86_64/PKGBUILD
(from rev 418887, deepin-file-manager/trunk/PKGBUILD)
  deepin-file-manager/repos/community-x86_64/fix-plugin-link.patch
(from rev 418887, deepin-file-manager/trunk/fix-plugin-link.patch)
Deleted:
  deepin-file-manager/repos/community-x86_64/PKGBUILD
  deepin-file-manager/repos/community-x86_64/fix-plugin-link.patch

---+
 PKGBUILD  |   70 
 fix-plugin-link.patch |   26 -
 2 files changed, 48 insertions(+), 48 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-29 17:23:36 UTC (rev 418887)
+++ PKGBUILD2018-12-29 17:23:54 UTC (rev 41)
@@ -1,35 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-file-manager
-pkgver=4.7.1.10
-pkgrel=1
-epoch=1
-pkgdesc='Deepin File Manager'
-arch=('x86_64')
-url="https://github.com/linuxdeepin/dde-file-manager;
-license=('GPL3')
-depends=('deepin-qt5integration' 'gtk2' 'gsettings-qt' 'libsecret' 'qt5-svg' 
'file' 'avfs'
- 'polkit-qt5' 'deepin-shortcut-viewer' 'poppler' 'ffmpegthumbnailer' 
'xdg-user-dirs'
- 'file-roller' 'deepin-qt-dbus-factory' 'treefrog-framework' 
'deepin-terminal'
- 'gst-plugins-good' 'mpv' 'deepin-anything' 'deepin-movie' 'jemalloc' 
'kcodecs')
-makedepends=('qt5-tools' 'deepin-dock' 'deepin-gettext-tools')
-optdepends=('deepin-manual: view the help manual')
-groups=('deepin')
-provides=('deepin-desktop')
-conflicts=('deepin-desktop')
-replaces=('deepin-desktop')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/dde-file-manager/archive/$pkgver.tar.gz;)
-sha512sums=('f29b103785e958d6222f4fa84416d6f4cec54c93e173188687e7beb36a0152913d2c11898b137cc5be1c9ee2788695f8acdadfb8542882205b40bab55730fc9a')
-
-build() {
-  cd dde-file-manager-$pkgver
-  qmake-qt5 PREFIX=/usr
-  make
-}
-
-package() {
-  cd dde-file-manager-$pkgver
-  make INSTALL_ROOT="$pkgdir" install
-}

Copied: deepin-file-manager/repos/community-x86_64/PKGBUILD (from rev 418887, 
deepin-file-manager/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-29 17:23:54 UTC (rev 41)
@@ -0,0 +1,35 @@
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-file-manager
+pkgver=4.7.1.12
+pkgrel=1
+epoch=1
+pkgdesc='Deepin File Manager'
+arch=('x86_64')
+url="https://github.com/linuxdeepin/dde-file-manager;
+license=('GPL3')
+depends=('deepin-qt5integration' 'gtk2' 'gsettings-qt' 'libsecret' 'qt5-svg' 
'file' 'avfs'
+ 'polkit-qt5' 'deepin-shortcut-viewer' 'poppler' 'ffmpegthumbnailer' 
'xdg-user-dirs'
+ 'file-roller' 'deepin-qt-dbus-factory' 'treefrog-framework' 
'deepin-terminal'
+ 'gst-plugins-good' 'mpv' 'deepin-anything' 'deepin-movie' 'jemalloc' 
'kcodecs')
+makedepends=('qt5-tools' 'deepin-dock' 'deepin-gettext-tools')
+optdepends=('deepin-manual: view the help manual')
+groups=('deepin')
+provides=('deepin-desktop')
+conflicts=('deepin-desktop')
+replaces=('deepin-desktop')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/dde-file-manager/archive/$pkgver.tar.gz;)
+sha512sums=('0e88522e07de73896550ed1a1a1e7e5d28f1d591e1a790f5cd08418906e5a407c3806058f5edd5a24e7b4f696b98d49549abe9fde4431193328d7136c8e6a029')
+
+build() {
+  cd dde-file-manager-$pkgver
+  qmake-qt5 PREFIX=/usr
+  make
+}
+
+package() {
+  cd dde-file-manager-$pkgver
+  make INSTALL_ROOT="$pkgdir" install
+}

Deleted: fix-plugin-link.patch
===
--- fix-plugin-link.patch   2018-12-29 17:23:36 UTC (rev 418887)
+++ fix-plugin-link.patch   2018-12-29 17:23:54 UTC (rev 41)
@@ -1,13 +0,0 @@
-diff --git a/dde-dock-plugins/disk-mount/disk-mount.pro 
b/dde-dock-plugins/disk-mount/disk-mount.pro
-index c5d336e8..c9575b15 100644
 a/dde-dock-plugins/disk-mount/disk-mount.pro
-+++ b/dde-dock-plugins/disk-mount/disk-mount.pro
-@@ -15,7 +15,7 @@ DISTFILES   += disk-mount.json
- 
- DEFINES += QT_MESSAGELOGCONTEXT DFM_NO_FILE_WATCHER
- 
--#unix: LIBS += -L$$OUT_PWD/../../dde-file-manager-lib -ldde-file-manager
-+LIBS += -L$$OUT_PWD/../../dde-file-manager-lib -ldde-file-manager
- 
- HEADERS += \
- diskmountplugin.h \

Copied: deepin-file-manager/repos/community-x86_64/fix-plugin-link.patch (from 
rev 418887, deepin-file-manager/trunk/fix-plugin-link.patch)
===
--- fix-plugin-link.patch   (rev 0)
+++ fix-plugin-link.patch   2018-12-29 17:23:54 UTC (rev 41)
@@ -0,0 +1,13 @@
+diff --git 

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

2018-12-29 Thread Felix Yan via arch-commits
Date: Saturday, December 29, 2018 @ 17:23:36
  Author: felixonmars
Revision: 418887

upgpkg: deepin-file-manager 1:4.7.1.12-1

Modified:
  deepin-file-manager/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-29 17:19:21 UTC (rev 418886)
+++ PKGBUILD2018-12-29 17:23:36 UTC (rev 418887)
@@ -3,7 +3,7 @@
 # Contributor: Xu Fasheng 
 
 pkgname=deepin-file-manager
-pkgver=4.7.1.10
+pkgver=4.7.1.12
 pkgrel=1
 epoch=1
 pkgdesc='Deepin File Manager'
@@ -21,7 +21,7 @@
 conflicts=('deepin-desktop')
 replaces=('deepin-desktop')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/dde-file-manager/archive/$pkgver.tar.gz;)
-sha512sums=('f29b103785e958d6222f4fa84416d6f4cec54c93e173188687e7beb36a0152913d2c11898b137cc5be1c9ee2788695f8acdadfb8542882205b40bab55730fc9a')
+sha512sums=('0e88522e07de73896550ed1a1a1e7e5d28f1d591e1a790f5cd08418906e5a407c3806058f5edd5a24e7b4f696b98d49549abe9fde4431193328d7136c8e6a029')
 
 build() {
   cd dde-file-manager-$pkgver


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

2018-12-29 Thread Felix Yan via arch-commits
Date: Saturday, December 29, 2018 @ 17:19:21
  Author: felixonmars
Revision: 418886

archrelease: copy trunk to community-x86_64

Added:
  deepin-api/repos/community-x86_64/PKGBUILD
(from rev 418885, deepin-api/trunk/PKGBUILD)
  deepin-api/repos/community-x86_64/deepin-api.sysusers
(from rev 418885, deepin-api/trunk/deepin-api.sysusers)
Deleted:
  deepin-api/repos/community-x86_64/PKGBUILD
  deepin-api/repos/community-x86_64/deepin-api.sysusers

-+
 PKGBUILD|   96 +-
 deepin-api.sysusers |4 +-
 2 files changed, 50 insertions(+), 50 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-29 17:18:40 UTC (rev 418885)
+++ PKGBUILD2018-12-29 17:19:21 UTC (rev 418886)
@@ -1,48 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-api
-pkgver=3.13.0
-pkgrel=1
-pkgdesc='Golang bindings for dde-daemon'
-arch=('x86_64')
-url="https://github.com/linuxdeepin/dde-api;
-license=('GPL3')
-depends=('glib2' 'gdk-pixbuf2' 'gtk3' 'libcanberra-pulse' 'libxi' 'libxfixes' 
'rfkill'
- 'poppler-glib' 'xcur2png' 'blur-effect')
-makedepends=('git' 'deepin-gettext-tools' 'deepin-dbus-factory' 
'deepin-gir-generator'
- 'deepin-go-lib' 'deepin-go-dbus-factory' 'bzr' 'go-pie')
-conflicts=('dde-api')
-replaces=('dde-api')
-groups=('deepin')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/dde-api/archive/$pkgver.tar.gz;
-deepin-api.sysusers)
-sha512sums=('9fd3259928fd49746cd6b8ba973552d44203951df4d8aa5eb77ff032a255e0990d519ea93e0910f763e57c27ed41a4c9d81ec0337fd511344884ec13530448dc'
-
'548b4c8d06a10f0103d84fe6b68532ca71aae53347a6ad85dad1d274844146c9861d1bf6ce8e5518ea1b043aa082d705c534f0a4c0feb16a031537cee6befb08')
-
-prepare() {
-  export GOPATH="$srcdir/build:/usr/share/gocode"
-  mkdir -p build/src/pkg.deepin.io/dde/api
-  cp -a dde-api-$pkgver/* build/src/pkg.deepin.io/dde/api/
-
-  # https://github.com/niemeyer/gopkg/issues/50
-  git config --global http.https://gopkg.in.followRedirects true
-
-  cd "$srcdir"/dde-api-$pkgver
-  make build-dep
-  go get gopkg.in/alecthomas/kingpin.v2 github.com/nfnt/resize 
github.com/cryptix/wav \
- golang.org/x/net/context github.com/fogleman/gg
-}
-
-build(){
-  cd dde-api-$pkgver
-  make
-}
-
-package() {
-  cd dde-api-$pkgver
-  make DESTDIR="$pkgdir" SYSTEMD_LIB_DIR=/usr/lib install
-
-  install -Dm644 ../deepin-api.sysusers 
"$pkgdir"/usr/lib/sysusers.d/deepin-api.conf
-}

Copied: deepin-api/repos/community-x86_64/PKGBUILD (from rev 418885, 
deepin-api/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-29 17:19:21 UTC (rev 418886)
@@ -0,0 +1,48 @@
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-api
+pkgver=3.14.0
+pkgrel=1
+pkgdesc='Golang bindings for dde-daemon'
+arch=('x86_64')
+url="https://github.com/linuxdeepin/dde-api;
+license=('GPL3')
+depends=('glib2' 'gdk-pixbuf2' 'gtk3' 'libcanberra-pulse' 'libxi' 'libxfixes' 
'rfkill'
+ 'poppler-glib' 'xcur2png' 'blur-effect')
+makedepends=('git' 'deepin-gettext-tools' 'deepin-dbus-factory' 
'deepin-gir-generator'
+ 'deepin-go-lib' 'deepin-go-dbus-factory' 'bzr' 'go-pie')
+conflicts=('dde-api')
+replaces=('dde-api')
+groups=('deepin')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/dde-api/archive/$pkgver.tar.gz;
+deepin-api.sysusers)
+sha512sums=('3e1a8dff33e1f5dd683fba6fbc0980ff5c3b89601fad05ff8d40423836aa97440559325cbf6aec9e341290856f51a41f8bf6b723b150825b3dfdc097c87e7e0d'
+
'548b4c8d06a10f0103d84fe6b68532ca71aae53347a6ad85dad1d274844146c9861d1bf6ce8e5518ea1b043aa082d705c534f0a4c0feb16a031537cee6befb08')
+
+prepare() {
+  export GOPATH="$srcdir/build:/usr/share/gocode"
+  mkdir -p build/src/pkg.deepin.io/dde/api
+  cp -a dde-api-$pkgver/* build/src/pkg.deepin.io/dde/api/
+
+  # https://github.com/niemeyer/gopkg/issues/50
+  git config --global http.https://gopkg.in.followRedirects true
+
+  cd "$srcdir"/dde-api-$pkgver
+  make build-dep
+  go get gopkg.in/alecthomas/kingpin.v2 github.com/nfnt/resize 
github.com/cryptix/wav \
+ golang.org/x/net/context github.com/fogleman/gg
+}
+
+build(){
+  cd dde-api-$pkgver
+  make
+}
+
+package() {
+  cd dde-api-$pkgver
+  make DESTDIR="$pkgdir" SYSTEMD_LIB_DIR=/usr/lib install
+
+  install -Dm644 ../deepin-api.sysusers 
"$pkgdir"/usr/lib/sysusers.d/deepin-api.conf
+}

Deleted: deepin-api.sysusers
===
--- deepin-api.sysusers 2018-12-29 17:18:40 UTC (rev 418885)
+++ deepin-api.sysusers 2018-12-29 17:19:21 UTC (rev 418886)
@@ -1,2 +0,0 @@
-u deepin-sound-player - "Deepin Sound Player"
-g deepin-sound-player -

Copied: 

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

2018-12-29 Thread Felix Yan via arch-commits
Date: Saturday, December 29, 2018 @ 17:18:40
  Author: felixonmars
Revision: 418885

upgpkg: deepin-api 3.14.0-1

Modified:
  deepin-api/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-29 17:18:01 UTC (rev 418884)
+++ PKGBUILD2018-12-29 17:18:40 UTC (rev 418885)
@@ -3,7 +3,7 @@
 # Contributor: Xu Fasheng 
 
 pkgname=deepin-api
-pkgver=3.13.0
+pkgver=3.14.0
 pkgrel=1
 pkgdesc='Golang bindings for dde-daemon'
 arch=('x86_64')
@@ -18,7 +18,7 @@
 groups=('deepin')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/dde-api/archive/$pkgver.tar.gz;
 deepin-api.sysusers)
-sha512sums=('9fd3259928fd49746cd6b8ba973552d44203951df4d8aa5eb77ff032a255e0990d519ea93e0910f763e57c27ed41a4c9d81ec0337fd511344884ec13530448dc'
+sha512sums=('3e1a8dff33e1f5dd683fba6fbc0980ff5c3b89601fad05ff8d40423836aa97440559325cbf6aec9e341290856f51a41f8bf6b723b150825b3dfdc097c87e7e0d'
 
'548b4c8d06a10f0103d84fe6b68532ca71aae53347a6ad85dad1d274844146c9861d1bf6ce8e5518ea1b043aa082d705c534f0a4c0feb16a031537cee6befb08')
 
 prepare() {


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

2018-12-29 Thread Felix Yan via arch-commits
Date: Saturday, December 29, 2018 @ 17:17:17
  Author: felixonmars
Revision: 418880

upgpkg: hledger-ui 1.12.1-4

rebuild with data-clist 0.1.2.2

Modified:
  hledger-ui/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-29 17:15:37 UTC (rev 418879)
+++ PKGBUILD2018-12-29 17:17:17 UTC (rev 418880)
@@ -3,7 +3,7 @@
 
 pkgname=hledger-ui
 pkgver=1.12.1
-pkgrel=3
+pkgrel=4
 pkgdesc="Curses-style user interface for the hledger accounting tool"
 url="http://hledger.org;
 license=("GPL")


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

2018-12-29 Thread Felix Yan via arch-commits
Date: Saturday, December 29, 2018 @ 17:17:40
  Author: felixonmars
Revision: 418881

archrelease: copy trunk to community-staging-x86_64

Added:
  hledger-ui/repos/community-staging-x86_64/
  hledger-ui/repos/community-staging-x86_64/PKGBUILD
(from rev 418880, hledger-ui/trunk/PKGBUILD)

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

Copied: hledger-ui/repos/community-staging-x86_64/PKGBUILD (from rev 418880, 
hledger-ui/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-12-29 17:17:40 UTC (rev 418881)
@@ -0,0 +1,38 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hledger-ui
+pkgver=1.12.1
+pkgrel=4
+pkgdesc="Curses-style user interface for the hledger accounting tool"
+url="http://hledger.org;
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'hledger' 'haskell-hledger-lib' 'haskell-ansi-terminal' 
'haskell-async'
+ 'haskell-base-compat-batteries' 'haskell-cmdargs' 
'haskell-data-default' 'haskell-fsnotify'
+ 'haskell-microlens' 'haskell-microlens-platform' 'haskell-megaparsec' 
'haskell-pretty-show'
+ 'haskell-safe' 'haskell-split' 'haskell-text-zipper' 'haskell-vector' 
'haskell-brick'
+ 'haskell-vty')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('60bffe992673b7f1f7d4ac9c94a45daa24626314952e569ee66b543dc4ef7d6832e76bd785a067224e5c273c07ffddd4ccf40b656c42f33eb54027cee0b36baa')
+
+prepare() {
+# It does nothing
+sed -e '/mtl-compat/d' \
+-i ${pkgname}-${pkgver}/${pkgname}.cabal
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup configure -O --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" \
+-fthreaded
+runhaskell Setup build
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-12-29 Thread Felix Yan via arch-commits
Date: Saturday, December 29, 2018 @ 17:15:37
  Author: felixonmars
Revision: 418879

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-brick/repos/community-staging-x86_64/
  haskell-brick/repos/community-staging-x86_64/PKGBUILD
(from rev 418878, haskell-brick/trunk/PKGBUILD)

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

Copied: haskell-brick/repos/community-staging-x86_64/PKGBUILD (from rev 418878, 
haskell-brick/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-12-29 17:15:37 UTC (rev 418879)
@@ -0,0 +1,46 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=brick
+pkgname=haskell-brick
+pkgver=0.46
+pkgrel=2
+pkgdesc="A declarative terminal user interface library"
+url="https://github.com/jtdaugherty/brick;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-vty' 'haskell-data-clist' 'haskell-dlist' 
'haskell-microlens'
+ 'haskell-microlens-th' 'haskell-microlens-mtl' 'haskell-config-ini' 
'haskell-vector'
+ 'haskell-contravariant' 'haskell-text-zipper' 'haskell-word-wrap')
+makedepends=('ghc' 'haskell-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('dc238bbec9df56f963614bc2b818c6df1883b3dcf58a078fe18e8d058c6245cdf45d112168a374bc0cb7bdd10b5f825027e6aba6bc7dc3d6cd56cccaa34bb80a')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-demos
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-12-29 Thread Felix Yan via arch-commits
Date: Saturday, December 29, 2018 @ 17:14:45
  Author: felixonmars
Revision: 418877

upgpkg: haskell-brick 0.46-2

rebuild with data-clist 0.1.2.2

Modified:
  haskell-brick/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-29 17:14:22 UTC (rev 418876)
+++ PKGBUILD2018-12-29 17:14:45 UTC (rev 418877)
@@ -4,7 +4,7 @@
 _hkgname=brick
 pkgname=haskell-brick
 pkgver=0.46
-pkgrel=1
+pkgrel=2
 pkgdesc="A declarative terminal user interface library"
 url="https://github.com/jtdaugherty/brick;
 license=("BSD")


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

2018-12-29 Thread Felix Yan via arch-commits
Date: Saturday, December 29, 2018 @ 17:15:21
  Author: felixonmars
Revision: 418878

archrelease: copy trunk to community-x86_64

Added:
  python-ruamel-yaml/repos/community-x86_64/PKGBUILD
(from rev 418877, python-ruamel-yaml/trunk/PKGBUILD)
Deleted:
  python-ruamel-yaml/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-29 17:14:45 UTC (rev 418877)
+++ PKGBUILD2018-12-29 17:15:21 UTC (rev 418878)
@@ -1,22 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Samuel Littley 
-# Contributor: rnons 
-
-pkgname=python-ruamel-yaml
-pkgver=0.15.81
-pkgrel=1
-pkgdesc="YAML parser/emitter that supports roundtrip preservation of comments, 
seq/map flow style, and map key order"
-arch=('x86_64')
-url="https://bitbucket.org/ruamel/yaml;
-license=("MIT")
-makedepends=('python-pip' 'python-wheel')
-source=("https://pypi.io/packages/source/r/ruamel.yaml/ruamel.yaml-$pkgver.tar.gz;)
-sha512sums=('1d8985239993cb60e034415f236ca98914ff048261a0ab1eaff4d944fa8e9074e4f5d7f9b4ad78f9da44710545f0f37a4e3404bf1829c51fc5dc58f801772244')
-
-package() {
-  depends=('python')
-
-  cd ruamel.yaml-$pkgver
-  LC_CTYPE=en_US.UTF-8 pip install . --root="$pkgdir"
-  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-ruamel-yaml/repos/community-x86_64/PKGBUILD (from rev 418877, 
python-ruamel-yaml/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-29 17:15:21 UTC (rev 418878)
@@ -0,0 +1,22 @@
+# Maintainer: Felix Yan 
+# Contributor: Samuel Littley 
+# Contributor: rnons 
+
+pkgname=python-ruamel-yaml
+pkgver=0.15.82
+pkgrel=1
+pkgdesc="YAML parser/emitter that supports roundtrip preservation of comments, 
seq/map flow style, and map key order"
+arch=('x86_64')
+url="https://bitbucket.org/ruamel/yaml;
+license=("MIT")
+makedepends=('python-pip' 'python-wheel')
+source=("https://pypi.io/packages/source/r/ruamel.yaml/ruamel.yaml-$pkgver.tar.gz;)
+sha512sums=('235310ed4df949e4ea88994c816b61bd14750277dbb1f95ca7f72ac79dfcfb3ae175be26d6298210c6ddc83d0f99d4882a979b9e8eb3ec874b33c9629ff3ec53')
+
+package() {
+  depends=('python')
+
+  cd ruamel.yaml-$pkgver
+  LC_CTYPE=en_US.UTF-8 pip install . --root="$pkgdir"
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2018-12-29 Thread Felix Yan via arch-commits
Date: Saturday, December 29, 2018 @ 17:13:41
  Author: felixonmars
Revision: 418875

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-29 17:13:29 UTC (rev 418874)
+++ PKGBUILD2018-12-29 17:13:41 UTC (rev 418875)
@@ -1,78 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgbase=python-hypothesis
-pkgname=('python-hypothesis' 'python2-hypothesis')
-pkgver=3.84.6
-pkgrel=1
-pkgdesc="Advanced Quickcheck style testing library for Python"
-arch=('any')
-license=('MPL')
-url="https://hypothesis.readthedocs.org;
-makedepends=('python-setuptools' 'python2-setuptools' 'python-attrs' 
'python2-attrs'
- 'python-coverage' 'python2-coverage' 'python2-enum34')
-checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'flake8' 
'python2-flake8' 'python-pytz'
-  'python2-pytz' 'python-numpy' 'python2-numpy' 'python-faker' 
'python2-faker'
-  'python-flaky' 'python2-flaky' 'python-django' 'python2-django' 
'python-pytest-xdist'
-  'python2-pytest-xdist' 'python-mock' 'python2-mock' 
'python-pandas' 'python2-pandas'
-  'python-dpcontracts' 'python2-dpcontracts')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis/archive/hypothesis-python-$pkgver.tar.gz;)
-sha512sums=('329cb2017c9616f73a7a2bbe7f86f977b9157105715a3d619ced20cc024cdfac9241d47d9731b399405756d0289bc3e6e2b7e94e85cfa569f42c9d0db51a1cd7')
-
-prepare() {
-  mv hypothesis-hypothesis-python-$pkgver hypothesis-$pkgver
-
-  sed -i "/FutureWarning/a \filterwarnings('ignore', 
category=DeprecationWarning, module='pandas.core')" 
hypothesis-$pkgver/hypothesis-python/tests/common/setup.py
-
-  cp -a hypothesis-$pkgver{,-py2}
-
-  rm -r hypothesis-$pkgver/hypothesis-python/tests/py2
-  rm -r hypothesis-$pkgver-py2/hypothesis-python/tests/py3
-
-  export LC_CTYPE=en_US.UTF-8
-}
-
-build() {
-  cd "$srcdir"/hypothesis-$pkgver/hypothesis-python
-  python setup.py build
-
-  cd "$srcdir"/hypothesis-$pkgver-py2/hypothesis-python
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/hypothesis-$pkgver/hypothesis-python
-  mv tests/django ../
-  python setup.py pytest --addopts -n16
-  mv ../django tests/
-  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python -m tests.django.manage test 
tests.django || warning "Tests failed"
-
-  cd "$srcdir"/hypothesis-$pkgver-py2/hypothesis-python
-  mv tests/django ../
-  python2 setup.py pytest --addopts -n16
-  mv ../django tests/
-  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python2 -m tests.django.manage test 
tests.django
-}
-
-package_python-hypothesis() {
-  depends=('python-attrs' 'python-coverage')
-  optdepends=('python-pytz: for datetime and django module'
-  'python-faker: for fakefactory and django module'
-  'python-django: for django module'
-  'python-numpy: for numpy module'
-  'python-pytest: for pytest module')
-
-  cd hypothesis-$pkgver/hypothesis-python
-  python setup.py install --root="$pkgdir" --optimize=1
-}
-
-package_python2-hypothesis() {
-  depends=('python2-attrs' 'python2-coverage' 'python2-enum34')
-  optdepends=('python2-pytz: for datetime and django module'
-  'python2-faker: for fakefactory and django module'
-  'python2-django: for django module'
-  'python2-numpy: for numpy module'
-  'python2-pytest: for pytest module')
-
-  cd hypothesis-$pkgver-py2/hypothesis-python
-  python2 setup.py install --root="$pkgdir" --optimize=1
-}

Copied: python-hypothesis/repos/community-any/PKGBUILD (from rev 418874, 
python-hypothesis/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-29 17:13:41 UTC (rev 418875)
@@ -0,0 +1,78 @@
+# Maintainer: Felix Yan 
+
+pkgbase=python-hypothesis
+pkgname=('python-hypothesis' 'python2-hypothesis')
+pkgver=3.85.0
+pkgrel=1
+pkgdesc="Advanced Quickcheck style testing library for Python"
+arch=('any')
+license=('MPL')
+url="https://hypothesis.readthedocs.org;
+makedepends=('python-setuptools' 'python2-setuptools' 'python-attrs' 
'python2-attrs'
+ 'python-coverage' 'python2-coverage' 'python2-enum34')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'flake8' 
'python2-flake8' 'python-pytz'
+  'python2-pytz' 'python-numpy' 'python2-numpy' 'python-faker' 
'python2-faker'
+  'python-flaky' 'python2-flaky' 'python-django' 'python2-django' 
'python-pytest-xdist'
+  'python2-pytest-xdist' 'python-mock' 'python2-mock' 
'python-pandas' 

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

2018-12-29 Thread Felix Yan via arch-commits
Date: Saturday, December 29, 2018 @ 17:14:22
  Author: felixonmars
Revision: 418876

upgpkg: python-ruamel-yaml 0.15.82-1

Modified:
  python-ruamel-yaml/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-29 17:13:41 UTC (rev 418875)
+++ PKGBUILD2018-12-29 17:14:22 UTC (rev 418876)
@@ -3,7 +3,7 @@
 # Contributor: rnons 
 
 pkgname=python-ruamel-yaml
-pkgver=0.15.81
+pkgver=0.15.82
 pkgrel=1
 pkgdesc="YAML parser/emitter that supports roundtrip preservation of comments, 
seq/map flow style, and map key order"
 arch=('x86_64')
@@ -11,7 +11,7 @@
 license=("MIT")
 makedepends=('python-pip' 'python-wheel')
 
source=("https://pypi.io/packages/source/r/ruamel.yaml/ruamel.yaml-$pkgver.tar.gz;)
-sha512sums=('1d8985239993cb60e034415f236ca98914ff048261a0ab1eaff4d944fa8e9074e4f5d7f9b4ad78f9da44710545f0f37a4e3404bf1829c51fc5dc58f801772244')
+sha512sums=('235310ed4df949e4ea88994c816b61bd14750277dbb1f95ca7f72ac79dfcfb3ae175be26d6298210c6ddc83d0f99d4882a979b9e8eb3ec874b33c9629ff3ec53')
 
 package() {
   depends=('python')


[arch-commits] Commit in haskell-data-clist/repos (2 files)

2018-12-29 Thread Felix Yan via arch-commits
Date: Saturday, December 29, 2018 @ 17:13:29
  Author: felixonmars
Revision: 418874

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-data-clist/repos/community-staging-x86_64/
  haskell-data-clist/repos/community-staging-x86_64/PKGBUILD
(from rev 418873, haskell-data-clist/trunk/PKGBUILD)

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

Copied: haskell-data-clist/repos/community-staging-x86_64/PKGBUILD (from rev 
418873, haskell-data-clist/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-12-29 17:13:29 UTC (rev 418874)
@@ -0,0 +1,38 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=data-clist
+pkgname=haskell-data-clist
+pkgver=0.1.2.2
+pkgrel=1
+pkgdesc="Simple functional ring type."
+url="https://github.com/sw17ch/data-clist;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-quickcheck")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('fe94838d19fa13daca258cf40b5df6303b55ed0ff70eccbef16cab22766028bdb9568547c85e3bf3ad95d858418887aae9d21e1873fb6fb8ac48c57310034ccb')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-12-29 Thread Felix Yan via arch-commits
Date: Saturday, December 29, 2018 @ 17:13:01
  Author: felixonmars
Revision: 418873

upgpkg: python-hypothesis 3.85.0-1

Modified:
  python-hypothesis/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-29 17:12:42 UTC (rev 418872)
+++ PKGBUILD2018-12-29 17:13:01 UTC (rev 418873)
@@ -2,7 +2,7 @@
 
 pkgbase=python-hypothesis
 pkgname=('python-hypothesis' 'python2-hypothesis')
-pkgver=3.84.6
+pkgver=3.85.0
 pkgrel=1
 pkgdesc="Advanced Quickcheck style testing library for Python"
 arch=('any')
@@ -16,7 +16,7 @@
   'python2-pytest-xdist' 'python-mock' 'python2-mock' 
'python-pandas' 'python2-pandas'
   'python-dpcontracts' 'python2-dpcontracts')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis/archive/hypothesis-python-$pkgver.tar.gz;)
-sha512sums=('329cb2017c9616f73a7a2bbe7f86f977b9157105715a3d619ced20cc024cdfac9241d47d9731b399405756d0289bc3e6e2b7e94e85cfa569f42c9d0db51a1cd7')
+sha512sums=('8ad7119a51a55ae641b196d34d3520b2ad6f88b06216b889422f5f01e8b91103a8deeb08f4d7079a9ca27721182d84c0226301c53789bff0f4f6d4107bcce55a')
 
 prepare() {
   mv hypothesis-hypothesis-python-$pkgver hypothesis-$pkgver


[arch-commits] Commit in haskell-data-clist/trunk (PKGBUILD)

2018-12-29 Thread Felix Yan via arch-commits
Date: Saturday, December 29, 2018 @ 17:12:42
  Author: felixonmars
Revision: 418872

upgpkg: haskell-data-clist 0.1.2.2-1

rebuild with data-clist 0.1.2.2

Modified:
  haskell-data-clist/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-29 17:11:52 UTC (rev 418871)
+++ PKGBUILD2018-12-29 17:12:42 UTC (rev 418872)
@@ -3,8 +3,8 @@
 
 _hkgname=data-clist
 pkgname=haskell-data-clist
-pkgver=0.1.2.1
-pkgrel=8
+pkgver=0.1.2.2
+pkgrel=1
 pkgdesc="Simple functional ring type."
 url="https://github.com/sw17ch/data-clist;
 license=("BSD")
@@ -12,7 +12,7 @@
 depends=('ghc-libs' "haskell-quickcheck")
 makedepends=('ghc')
 
source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha512sums=('2fe1bb69270b37ed1c1a4ee2657b49b6bb699d3306a57156c8664a7ccbb6310f0a9a7f5bd19403f0024b891c6ae1eb7604612501f1698ed7ae53fd60dae841ba')
+sha512sums=('fe94838d19fa13daca258cf40b5df6303b55ed0ff70eccbef16cab22766028bdb9568547c85e3bf3ad95d858418887aae9d21e1873fb6fb8ac48c57310034ccb')
 
 build() {
 cd $_hkgname-$pkgver


[arch-commits] Commit in deepin-go-lib/repos/community-any (4 files)

2018-12-29 Thread Felix Yan via arch-commits
Date: Saturday, December 29, 2018 @ 17:11:52
  Author: felixonmars
Revision: 418871

archrelease: copy trunk to community-any

Added:
  deepin-go-lib/repos/community-any/PKGBUILD
(from rev 418870, deepin-go-lib/trunk/PKGBUILD)
  deepin-go-lib/repos/community-any/dbus-fix.patch
(from rev 418870, deepin-go-lib/trunk/dbus-fix.patch)
Deleted:
  deepin-go-lib/repos/community-any/PKGBUILD
  deepin-go-lib/repos/community-any/dbus-fix.patch

+
 PKGBUILD   |   52 +++
 dbus-fix.patch |  183 +--
 2 files changed, 165 insertions(+), 70 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-29 17:11:09 UTC (rev 418870)
+++ PKGBUILD2018-12-29 17:11:52 UTC (rev 418871)
@@ -1,26 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=deepin-go-lib
-pkgver=1.6.0
-pkgrel=2
-pkgdesc='A library containing many useful go routines for things such as glib, 
gettext, archive, graphic,etc.'
-arch=('any')
-url="https://github.com/linuxdeepin/go-lib;
-license=('GPL3')
-depends=('libpulse' 'gdk-pixbuf2' 'mobile-broadband-provider-info' 'libx11')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/go-lib/archive/$pkgver.tar.gz;
-dbus-fix.patch)
-sha512sums=('c350792d5a445d0f235f0402e36952c7ff9e5a88bf39b41fa2ae6a31f9cbd67e73c6426f4bc76bc14d465fc84750ee2f65f4450ecbe725a0d5ce7169a7c2182c'
-
'80a540358c2d9c51b647d7afa1b9c2a075677b596861fdb894f97298ba580b242f8cfcaa3d0ac7b8a4fdd18d39fb9eee8c62ef20d0efb5f928a88117b6fa8a9c')
-
-prepare() {
-  cd go-lib-$pkgver
-  patch -p1 -i ../dbus-fix.patch
-}
-
-package() {
-  mkdir -p "$pkgdir"/usr/share/gocode/src/pkg.deepin.io
-  cp -a go-lib-$pkgver "$pkgdir"/usr/share/gocode/src/pkg.deepin.io/lib
-
-  rm -r "$pkgdir"/usr/share/gocode/src/pkg.deepin.io/lib/debian
-}

Copied: deepin-go-lib/repos/community-any/PKGBUILD (from rev 418870, 
deepin-go-lib/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-29 17:11:52 UTC (rev 418871)
@@ -0,0 +1,26 @@
+# Maintainer: Felix Yan 
+
+pkgname=deepin-go-lib
+pkgver=1.7.0
+pkgrel=1
+pkgdesc='A library containing many useful go routines for things such as glib, 
gettext, archive, graphic,etc.'
+arch=('any')
+url="https://github.com/linuxdeepin/go-lib;
+license=('GPL3')
+depends=('libpulse' 'gdk-pixbuf2' 'mobile-broadband-provider-info' 'libx11')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/go-lib/archive/$pkgver.tar.gz;
+dbus-fix.patch)
+sha512sums=('edfc5f50e3126a2ef563027c2b000d60c25f5eee540fa49fb69c36a100bbc4bb3b46e1aa2b161fa93e8fee5223c95d4a7e241697cbb43044c61a60b3ce7ab1a7'
+
'7cd2f41d0b26fce32a775043c4da2328e899f6bb8f34557e3c6f8f1d9a14ef9a218def555dabadb3e57ae501795c84c86e19172c39053b704c281277507bf181')
+
+prepare() {
+  cd go-lib-$pkgver
+  patch -p1 -i ../dbus-fix.patch
+}
+
+package() {
+  mkdir -p "$pkgdir"/usr/share/gocode/src/pkg.deepin.io
+  cp -a go-lib-$pkgver "$pkgdir"/usr/share/gocode/src/pkg.deepin.io/lib
+
+  rm -r "$pkgdir"/usr/share/gocode/src/pkg.deepin.io/lib/debian
+}

Deleted: dbus-fix.patch
===
--- dbus-fix.patch  2018-12-29 17:11:09 UTC (rev 418870)
+++ dbus-fix.patch  2018-12-29 17:11:52 UTC (rev 418871)
@@ -1,44 +0,0 @@
-diff --git a/dbus/conn.go b/dbus/conn.go
-index 20f65b1..01da4e3 100644
 a/dbus/conn.go
-+++ b/dbus/conn.go
-@@ -26,6 +26,7 @@ import (
-   "reflect"
-   "strings"
-   "sync"
-+  dbus1 "pkg.deepin.io/lib/dbus1"
- )
- 
- const defaultSystemBusAddress = "unix:path=/var/run/dbus/system_bus_socket"
-@@ -112,12 +113,12 @@ func SessionBus() (conn *Conn, err error) {
- 
- // SessionBusPrivate returns a new private connection to the session bus.
- func SessionBusPrivate() (*Conn, error) {
--  address := os.Getenv("DBUS_SESSION_BUS_ADDRESS")
--  if address != "" && address != "autolaunch:" {
--  return Dial(address)
-+  address, err := dbus1.GetSessionBusAddress()
-+  if err != nil {
-+  return nil, err
-   }
- 
--  return sessionBusPlatform()
-+  return Dial(address)
- }
- 
- // SystemBus returns a shared connection to the system bus, connecting to it 
if
-diff --git a/dbus1/conn.go b/dbus1/conn.go
-index 2737621..ac89088 100644
 a/dbus1/conn.go
-+++ b/dbus1/conn.go
-@@ -77,6 +77,10 @@ func SessionBus() (conn *Conn, err error) {
-   return
- }
- 
-+func GetSessionBusAddress() (string, error) {
-+  return getSessionBusAddress()
-+}
-+
- func getSessionBusAddress() (string, error) {
-   if address := os.Getenv("DBUS_SESSION_BUS_ADDRESS"); address != "" && 
address != "autolaunch:" {
-   return address, nil

Copied: deepin-go-lib/repos/community-any/dbus-fix.patch (from rev 418870, 
deepin-go-lib/trunk/dbus-fix.patch)

[arch-commits] Commit in deepin-go-lib/trunk (PKGBUILD dbus-fix.patch)

2018-12-29 Thread Felix Yan via arch-commits
Date: Saturday, December 29, 2018 @ 17:11:09
  Author: felixonmars
Revision: 418870

upgpkg: deepin-go-lib 1.7.0-1

Modified:
  deepin-go-lib/trunk/PKGBUILD
  deepin-go-lib/trunk/dbus-fix.patch

+
 PKGBUILD   |8 +--
 dbus-fix.patch |  141 ++-
 2 files changed, 122 insertions(+), 27 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-29 17:09:55 UTC (rev 418869)
+++ PKGBUILD2018-12-29 17:11:09 UTC (rev 418870)
@@ -1,8 +1,8 @@
 # Maintainer: Felix Yan 
 
 pkgname=deepin-go-lib
-pkgver=1.6.0
-pkgrel=2
+pkgver=1.7.0
+pkgrel=1
 pkgdesc='A library containing many useful go routines for things such as glib, 
gettext, archive, graphic,etc.'
 arch=('any')
 url="https://github.com/linuxdeepin/go-lib;
@@ -10,8 +10,8 @@
 depends=('libpulse' 'gdk-pixbuf2' 'mobile-broadband-provider-info' 'libx11')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/go-lib/archive/$pkgver.tar.gz;
 dbus-fix.patch)
-sha512sums=('c350792d5a445d0f235f0402e36952c7ff9e5a88bf39b41fa2ae6a31f9cbd67e73c6426f4bc76bc14d465fc84750ee2f65f4450ecbe725a0d5ce7169a7c2182c'
-
'80a540358c2d9c51b647d7afa1b9c2a075677b596861fdb894f97298ba580b242f8cfcaa3d0ac7b8a4fdd18d39fb9eee8c62ef20d0efb5f928a88117b6fa8a9c')
+sha512sums=('edfc5f50e3126a2ef563027c2b000d60c25f5eee540fa49fb69c36a100bbc4bb3b46e1aa2b161fa93e8fee5223c95d4a7e241697cbb43044c61a60b3ce7ab1a7'
+
'7cd2f41d0b26fce32a775043c4da2328e899f6bb8f34557e3c6f8f1d9a14ef9a218def555dabadb3e57ae501795c84c86e19172c39053b704c281277507bf181')
 
 prepare() {
   cd go-lib-$pkgver

Modified: dbus-fix.patch
===
--- dbus-fix.patch  2018-12-29 17:09:55 UTC (rev 418869)
+++ dbus-fix.patch  2018-12-29 17:11:09 UTC (rev 418870)
@@ -1,23 +1,36 @@
+From e9e0a68a7eb72da7dfa181375e6ec891be89d662 Mon Sep 17 00:00:00 2001
+From: electricface 
+Date: Sat, 29 Dec 2018 09:42:54 +0800
+Subject: [PATCH] fix(dbus): failed to find session bus address in systemd 240+
+
+Change-Id: I401cf471ad396003b950fc9fc038bbee0b60bc6c
+---
+
 diff --git a/dbus/conn.go b/dbus/conn.go
-index 20f65b1..01da4e3 100644
+index 20f65b1..41bb6e5 100644
 --- a/dbus/conn.go
 +++ b/dbus/conn.go
-@@ -26,6 +26,7 @@ import (
-   "reflect"
-   "strings"
-   "sync"
-+  dbus1 "pkg.deepin.io/lib/dbus1"
- )
+@@ -110,14 +110,25 @@
+   return
+ }
  
- const defaultSystemBusAddress = "unix:path=/var/run/dbus/system_bus_socket"
-@@ -112,12 +113,12 @@ func SessionBus() (conn *Conn, err error) {
- 
++func getSessionBusAddress() (string, error) {
++  if address := os.Getenv("DBUS_SESSION_BUS_ADDRESS"); address != "" && 
address != "autolaunch:" {
++  return address, nil
++
++  } else if address := tryDiscoverDbusSessionBusAddress(); address != "" {
++  os.Setenv("DBUS_SESSION_BUS_ADDRESS", address)
++  return address, nil
++  }
++  return getSessionBusPlatformAddress()
++}
++
  // SessionBusPrivate returns a new private connection to the session bus.
  func SessionBusPrivate() (*Conn, error) {
 -  address := os.Getenv("DBUS_SESSION_BUS_ADDRESS")
 -  if address != "" && address != "autolaunch:" {
 -  return Dial(address)
-+  address, err := dbus1.GetSessionBusAddress()
++  address, err := getSessionBusAddress()
 +  if err != nil {
 +  return nil, err
}
@@ -27,18 +40,100 @@
  }
  
  // SystemBus returns a shared connection to the system bus, connecting to it 
if
-diff --git a/dbus1/conn.go b/dbus1/conn.go
-index 2737621..ac89088 100644
 a/dbus1/conn.go
-+++ b/dbus1/conn.go
-@@ -77,6 +77,10 @@ func SessionBus() (conn *Conn, err error) {
-   return
- }
+diff --git a/dbus/conn_other.go b/dbus/conn_other.go
+index 293d8cb..d8d1adf 100644
+--- a/dbus/conn_other.go
 b/dbus/conn_other.go
+@@ -24,23 +24,87 @@
+ import (
+   "bytes"
+   "errors"
++  "fmt"
++  "io/ioutil"
++  "os"
+   "os/exec"
++  "os/user"
++  "path"
++  "strings"
+ )
  
-+func GetSessionBusAddress() (string, error) {
-+  return getSessionBusAddress()
+-func sessionBusPlatform() (*Conn, error) {
+-  cmd := exec.Command("/usr/bin/dbus-launch")
++func getSessionBusPlatformAddress() (string, error) {
++  cmd := exec.Command("dbus-launch")
+   b, err := cmd.CombinedOutput()
+ 
+   if err != nil {
+-  return nil, err
++  return "", err
+   }
+ 
+   i := bytes.IndexByte(b, '=')
+   j := bytes.IndexByte(b, '\n')
+ 
+   if i == -1 || j == -1 {
+-  return nil, errors.New("dbus: couldn't determine address of 
session bus")
++  return "", errors.New("dbus: couldn't determine address of 
session bus")
+   }
+ 
+-  return Dial(string(b[i+1 : j]))
++  env, addr := string(b[0:i]), string(b[i+1:j])
++  

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

2018-12-29 Thread Felix Yan via arch-commits
Date: Saturday, December 29, 2018 @ 17:07:11
  Author: felixonmars
Revision: 418866

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-29 17:06:05 UTC (rev 418865)
+++ PKGBUILD2018-12-29 17:07:11 UTC (rev 418866)
@@ -1,51 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Simon Sapin 
-# Contributor: Kyle Keen 
-
-pkgbase=python-ldap3
-pkgname=(python-ldap3 python2-ldap3)
-pkgver=2.5.1
-pkgrel=1
-pkgdesc="A strictly RFC 4510 conforming LDAP V3 pure Python client library"
-url="https://github.com/cannatag/ldap3;
-license=('LGPL')
-arch=('any')
-makedepends=('python-pyasn1' 'python2-pyasn1' 'python-setuptools' 
'python2-setuptools')
-checkdepends=('python-nose' 'python2-nose')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/cannatag/ldap3/archive/$pkgver.tar.gz;)
-sha512sums=('15b49efee10ae34d7a0a4ca156bbed1bec1e86cfd918b1e6853bee0fd3cb2c82246b04328964079c1681a9a8a2fd212208250007a68b10abbd4f11c84a140a11')
-
-prepare() {
-  cp -a ldap3-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir"/ldap3-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/ldap3-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/ldap3-$pkgver
-  nosetests3 -s test || warning "Tests require a running LDAP server"
-
-  cd "$srcdir"/ldap3-$pkgver-py2
-  nosetests2 -s test || warning "Tests require a running LDAP server"
-}
-
-package_python-ldap3() {
-  depends=('python-pyasn1')
-
-  cd ldap3-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-}
-
-package_python2-ldap3() {
-  depends=('python2-pyasn1')
-
-  cd ldap3-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-}

Copied: python-ldap3/repos/community-any/PKGBUILD (from rev 418865, 
python-ldap3/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-29 17:07:11 UTC (rev 418866)
@@ -0,0 +1,50 @@
+# Maintainer: Felix Yan 
+# Contributor: Simon Sapin 
+# Contributor: Kyle Keen 
+
+pkgbase=python-ldap3
+pkgname=(python-ldap3 python2-ldap3)
+pkgver=2.5.2
+pkgrel=1
+pkgdesc="A strictly RFC 4510 conforming LDAP V3 pure Python client library"
+url="https://github.com/cannatag/ldap3;
+license=('LGPL')
+arch=('any')
+makedepends=('python-pyasn1' 'python2-pyasn1' 'python-setuptools' 
'python2-setuptools')
+checkdepends=('python-nose' 'python2-nose')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/cannatag/ldap3/archive/v$pkgver.tar.gz;)
+sha512sums=('212b79cc24c55639ce9fab1b3340bb10c4f00b6f08886d5d3120f0ef3af3a138f02c1e63ee55ed22a877d8ecd8fb45447b8bf60371de00520cfc38df7713c20d')
+
+prepare() {
+  cp -a ldap3-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/ldap3-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/ldap3-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/ldap3-$pkgver
+  nosetests3 -s test || warning "Tests require a running LDAP server"
+
+  cd "$srcdir"/ldap3-$pkgver-py2
+  nosetests2 -s test || warning "Tests require a running LDAP server"
+}
+
+package_python-ldap3() {
+  depends=('python-pyasn1')
+
+  cd ldap3-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+}
+
+package_python2-ldap3() {
+  depends=('python2-pyasn1')
+
+  cd ldap3-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+}


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

2018-12-29 Thread Felix Yan via arch-commits
Date: Saturday, December 29, 2018 @ 17:06:05
  Author: felixonmars
Revision: 418865

upgpkg: python-ldap3 2.5.2-1

Modified:
  python-ldap3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-29 17:05:28 UTC (rev 418864)
+++ PKGBUILD2018-12-29 17:06:05 UTC (rev 418865)
@@ -4,7 +4,7 @@
 
 pkgbase=python-ldap3
 pkgname=(python-ldap3 python2-ldap3)
-pkgver=2.5.1
+pkgver=2.5.2
 pkgrel=1
 pkgdesc="A strictly RFC 4510 conforming LDAP V3 pure Python client library"
 url="https://github.com/cannatag/ldap3;
@@ -12,8 +12,8 @@
 arch=('any')
 makedepends=('python-pyasn1' 'python2-pyasn1' 'python-setuptools' 
'python2-setuptools')
 checkdepends=('python-nose' 'python2-nose')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/cannatag/ldap3/archive/$pkgver.tar.gz;)
-sha512sums=('15b49efee10ae34d7a0a4ca156bbed1bec1e86cfd918b1e6853bee0fd3cb2c82246b04328964079c1681a9a8a2fd212208250007a68b10abbd4f11c84a140a11')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/cannatag/ldap3/archive/v$pkgver.tar.gz;)
+sha512sums=('212b79cc24c55639ce9fab1b3340bb10c4f00b6f08886d5d3120f0ef3af3a138f02c1e63ee55ed22a877d8ecd8fb45447b8bf60371de00520cfc38df7713c20d')
 
 prepare() {
   cp -a ldap3-$pkgver{,-py2}


  1   2   >