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

2018-09-08 Thread Christian Hesse via arch-commits
Date: Saturday, September 8, 2018 @ 19:34:33
  Author: eworm
Revision: 334144

upgpkg: mariadb 10.1.36-1

new upstream release

Modified:
  mariadb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-09-08 17:51:57 UTC (rev 334143)
+++ PKGBUILD2018-09-08 19:34:33 UTC (rev 334144)
@@ -4,7 +4,7 @@
 
 pkgbase=mariadb
 pkgname=('libmariadbclient' 'mariadb-clients' 'mytop' 'mariadb')
-pkgver=10.1.35
+pkgver=10.1.36
 pkgrel=1
 arch=('x86_64')
 license=('GPL')
@@ -14,7 +14,7 @@
 validpgpkeys=('199369E5404BD5FC7D2FE43BCBCB082A1BB943DB') # MariaDB Package 
Signing Key 
 
source=("https://mirrors.n-ix.net/mariadb/mariadb-$pkgver/source/mariadb-$pkgver.tar.gz"{,.asc}
 '0001-openssl-1-1-0.patch')
-sha256sums=('9e91d985ed4f662126e3e5791fe91ec8a2f44ec83c2b6fbc72fa14553c4d'
+sha256sums=('ad742e8cf02b9294259cc8b0c888f7ba2e105e76554e4183603d275bcd91aa58'
 'SKIP'
 '229d556748119757f36be1e9956834be28db0f5a35cdacce53f6c640784fca77')
 


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

2018-09-08 Thread Christian Hesse via arch-commits
Date: Saturday, September 8, 2018 @ 19:34:37
  Author: eworm
Revision: 334145

archrelease: copy trunk to testing-x86_64

Added:
  mariadb/repos/testing-x86_64/
  mariadb/repos/testing-x86_64/0001-openssl-1-1-0.patch
(from rev 334144, mariadb/trunk/0001-openssl-1-1-0.patch)
  mariadb/repos/testing-x86_64/PKGBUILD
(from rev 334144, mariadb/trunk/PKGBUILD)
  mariadb/repos/testing-x86_64/mariadb.install
(from rev 334144, mariadb/trunk/mariadb.install)

--+
 0001-openssl-1-1-0.patch |  995 +
 PKGBUILD |  195 
 mariadb.install  |   11 
 3 files changed, 1201 insertions(+)

Copied: mariadb/repos/testing-x86_64/0001-openssl-1-1-0.patch (from rev 334144, 
mariadb/trunk/0001-openssl-1-1-0.patch)
===
--- testing-x86_64/0001-openssl-1-1-0.patch (rev 0)
+++ testing-x86_64/0001-openssl-1-1-0.patch 2018-09-08 19:34:37 UTC (rev 
334145)
@@ -0,0 +1,995 @@
+diff --git a/include/ssl_compat.h b/include/ssl_compat.h
+new file mode 100644
+index 000..b0e3ed4
+--- /dev/null
 b/include/ssl_compat.h
+@@ -0,0 +1,75 @@
++/*
++ Copyright (c) 2016, 2017 MariaDB Corporation
++
++ This program is free software; you can redistribute it and/or modify
++ it under the terms of the GNU General Public License as published by
++ the Free Software Foundation; version 2 of the License.
++
++ This program is distributed in the hope that it will be useful,
++ but WITHOUT ANY WARRANTY; without even the implied warranty of
++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
++ GNU General Public License for more details.
++
++ You should have received a copy of the GNU General Public License
++ along with this program; if not, write to the Free Software
++ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301  USA */
++
++#include 
++
++/* OpenSSL version specific definitions */
++#if !defined(HAVE_YASSL) && defined(OPENSSL_VERSION_NUMBER)
++
++#if OPENSSL_VERSION_NUMBER >= 0x10002000L && !defined(LIBRESSL_VERSION_NUMBER)
++#define HAVE_X509_check_host 1
++#endif
++
++#if OPENSSL_VERSION_NUMBER >= 0x1010L && !defined(LIBRESSL_VERSION_NUMBER)
++#define HAVE_OPENSSL11 1
++#define ERR_remove_state(X) ERR_clear_error()
++#define EVP_MD_CTX_cleanup(X) EVP_MD_CTX_reset(X)
++#define EVP_CIPHER_CTX_SIZE 168
++#define EVP_MD_CTX_SIZE 48
++#undef EVP_MD_CTX_init
++#define EVP_MD_CTX_init(X) do { bzero((X), EVP_MD_CTX_SIZE); 
EVP_MD_CTX_reset(X); } while(0)
++#undef EVP_CIPHER_CTX_init
++#define EVP_CIPHER_CTX_init(X) do { bzero((X), EVP_CIPHER_CTX_SIZE); 
EVP_CIPHER_CTX_reset(X); } while(0)
++
++#else
++#define HAVE_OPENSSL10 1
++/*
++  Unfortunately RAND_bytes manual page does not provide any guarantees
++  in relation to blocking behavior. Here we explicitly use SSLeay random
++  instead of whatever random engine is currently set in OpenSSL. That way
++  we are guaranteed to have a non-blocking random.
++*/
++#define RAND_OpenSSL() RAND_SSLeay()
++
++#ifdef HAVE_ERR_remove_thread_state
++#define ERR_remove_state(X) ERR_remove_thread_state(NULL)
++#endif /* HAVE_ERR_remove_thread_state */
++
++#endif /* HAVE_OPENSSL11 */
++
++#elif defined(HAVE_YASSL)
++#define BN_free(X) do { } while(0)
++#endif /* !defined(HAVE_YASSL) */
++
++#ifndef HAVE_OPENSSL11
++#define ASN1_STRING_get0_data(X)ASN1_STRING_data(X)
++#define OPENSSL_init_ssl(X,Y)   SSL_library_init()
++#define DH_set0_pqg(D,P,Q,G)((D)->p= (P), (D)->g= (G))
++#define EVP_CIPHER_CTX_buf_noconst(ctx) ((ctx)->buf)
++#define EVP_CIPHER_CTX_encrypting(ctx)  ((ctx)->encrypt)
++#define EVP_CIPHER_CTX_SIZE sizeof(EVP_CIPHER_CTX)
++#define EVP_MD_CTX_SIZE sizeof(EVP_MD_CTX)
++#endif
++
++#ifdef__cplusplus
++extern "C" {
++#endif /* __cplusplus */
++
++int check_openssl_compatibility();
++
++#ifdef__cplusplus
++}
++#endif
+diff --git a/include/violite.h b/include/violite.h
+index a7165ca..572d474 100644
+--- a/include/violite.h
 b/include/violite.h
+@@ -123,13 +123,6 @@ int vio_getnameinfo(const struct sockaddr *sa,
+ int flags);
+ 
+ #ifdef HAVE_OPENSSL
+-#include 
+-#if OPENSSL_VERSION_NUMBER < 0x0090700f
+-#define DES_cblock des_cblock
+-#define DES_key_schedule des_key_schedule
+-#define DES_set_key_unchecked(k,ks) des_set_key_unchecked((k),*(ks))
+-#define DES_ede3_cbc_encrypt(i,o,l,k1,k2,k3,iv,e) 
des_ede3_cbc_encrypt((i),(o),(l),*(k1),*(k2),*(k3),(iv),(e))
+-#endif
+ /* apple deprecated openssl in MacOSX Lion */
+ #ifdef __APPLE__
+ #pragma GCC diagnostic ignored "-Wdeprecated-declarations"
+@@ -146,14 +139,10 @@ typedef my_socket YASSL_SOCKET_T;
+ #include 
+ #include 
+ 
+-#ifdef HAVE_ERR_remove_thread_state
+-#define ERR_remove_state(X) ERR_remove_thread_state(NULL)
+-#endif
+-
+ enum enum_ssl_init_error
+ {
+-  SSL_INITERR_NOERROR= 0, SSL_INITERR_CERT, 

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

2018-09-08 Thread Gaëtan Bisson via arch-commits
Date: Saturday, September 8, 2018 @ 17:51:29
  Author: bisson
Revision: 334142

upstream update

Modified:
  libmpdclient/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-09-08 15:06:39 UTC (rev 334141)
+++ PKGBUILD2018-09-08 17:51:29 UTC (rev 334142)
@@ -3,7 +3,7 @@
 # Contributor: Andrea Scarpino 
 
 pkgname=libmpdclient
-pkgver=2.14
+pkgver=2.15
 pkgrel=1
 pkgdesc='Asynchronous API library for interfacing MPD in the C, C++ & 
Objective C languages'
 url='https://www.musicpd.org/libs/libmpdclient/'
@@ -12,7 +12,7 @@
 makedepends=('meson')
 validpgpkeys=('0392335A78083894A4301C43236E8A58C6DB4512')
 
source=("https://www.musicpd.org/download/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz"{,.sig})
-sha256sums=('0a84e2791bfe3077cf22ee1784c805d5bb550803dffe56a39aa3690a38061372'
+sha256sums=('b4dbf6f9fd99e8e7c183cb3b7de75ee4ac14d92ca43e9a99bef09168b20246d1'
 'SKIP')
 
 build() {


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

2018-09-08 Thread Gaëtan Bisson via arch-commits
Date: Saturday, September 8, 2018 @ 17:51:57
  Author: bisson
Revision: 334143

archrelease: copy trunk to extra-x86_64

Added:
  libmpdclient/repos/extra-x86_64/PKGBUILD
(from rev 334142, libmpdclient/trunk/PKGBUILD)
Deleted:
  libmpdclient/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-09-08 17:51:29 UTC (rev 334142)
+++ PKGBUILD2018-09-08 17:51:57 UTC (rev 334143)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson 
-# Contributor: Andrea Scarpino 
-
-pkgname=libmpdclient
-pkgver=2.14
-pkgrel=1
-pkgdesc='Asynchronous API library for interfacing MPD in the C, C++ & 
Objective C languages'
-url='https://www.musicpd.org/libs/libmpdclient/'
-license=('custom:BSD')
-arch=('x86_64')
-makedepends=('meson')
-validpgpkeys=('0392335A78083894A4301C43236E8A58C6DB4512')
-source=("https://www.musicpd.org/download/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz"{,.sig})
-sha256sums=('0a84e2791bfe3077cf22ee1784c805d5bb550803dffe56a39aa3690a38061372'
-'SKIP')
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   arch-meson . build
-   ninja -C build
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   DESTDIR="${pkgdir}" ninja -C build install
-
-   cd "${pkgdir}"
-   install -d usr/share/licenses/libmpdclient
-   ln -s ../../doc/libmpdclient/COPYING 
usr/share/licenses/libmpdclient/COPYING
-}

Copied: libmpdclient/repos/extra-x86_64/PKGBUILD (from rev 334142, 
libmpdclient/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-09-08 17:51:57 UTC (rev 334143)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Andrea Scarpino 
+
+pkgname=libmpdclient
+pkgver=2.15
+pkgrel=1
+pkgdesc='Asynchronous API library for interfacing MPD in the C, C++ & 
Objective C languages'
+url='https://www.musicpd.org/libs/libmpdclient/'
+license=('custom:BSD')
+arch=('x86_64')
+makedepends=('meson')
+validpgpkeys=('0392335A78083894A4301C43236E8A58C6DB4512')
+source=("https://www.musicpd.org/download/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz"{,.sig})
+sha256sums=('b4dbf6f9fd99e8e7c183cb3b7de75ee4ac14d92ca43e9a99bef09168b20246d1'
+'SKIP')
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   arch-meson . build
+   ninja -C build
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   DESTDIR="${pkgdir}" ninja -C build install
+
+   cd "${pkgdir}"
+   install -d usr/share/licenses/libmpdclient
+   ln -s ../../doc/libmpdclient/COPYING 
usr/share/licenses/libmpdclient/COPYING
+}


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

2018-09-08 Thread Felix Yan via arch-commits
Date: Saturday, September 8, 2018 @ 15:06:39
  Author: felixonmars
Revision: 334141

archrelease: copy trunk to testing-x86_64

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

--+
 PKGBUILD |   52 
 rebuild.list |2 ++
 2 files changed, 54 insertions(+)

Copied: cmake/repos/testing-x86_64/PKGBUILD (from rev 334140, 
cmake/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2018-09-08 15:06:39 UTC (rev 334141)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Pierre Schmitz 
+
+pkgname=cmake
+pkgver=3.12.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=('a2f44b2d77d9a3aa62273dbdeb94ad336c7430f41a31f48b4b395d170577b2b296d598ed9d1d548df95758b3fbf3ced193e1398fd701bc99792580798ec2a99d')
+
+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 334140, 
cmake/trunk/rebuild.list)
===
--- testing-x86_64/rebuild.list (rev 0)
+++ testing-x86_64/rebuild.list 2018-09-08 15:06:39 UTC (rev 334141)
@@ -0,0 +1,2 @@
+cmake-fedora
+uranium


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

2018-09-08 Thread Felix Yan via arch-commits
Date: Saturday, September 8, 2018 @ 15:06:24
  Author: felixonmars
Revision: 334140

upgpkg: cmake 3.12.2-1

Modified:
  cmake/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-09-08 14:23:30 UTC (rev 334139)
+++ PKGBUILD2018-09-08 15:06:24 UTC (rev 334140)
@@ -4,7 +4,7 @@
 # Contributor: Pierre Schmitz 
 
 pkgname=cmake
-pkgver=3.12.1
+pkgver=3.12.2
 pkgrel=1
 pkgdesc='A cross-platform open-source make system'
 arch=('x86_64')
@@ -15,7 +15,7 @@
 optdepends=('qt5-base: cmake-gui'
 'libxkbcommon-x11: cmake-gui')
 
source=("https://www.cmake.org/files/v${pkgver%.*}/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('7a0a769ef060785a8dc8c6aa272435a90a07cc8079f6c83c916da0b79d8bcdefca0d7be21f55f408ab4dfa6a57caa9ff8dec4be993145f4e3337ff392481b692')
+sha512sums=('a2f44b2d77d9a3aa62273dbdeb94ad336c7430f41a31f48b4b395d170577b2b296d598ed9d1d548df95758b3fbf3ced193e1398fd701bc99792580798ec2a99d')
 
 build() {
   cd ${pkgname}-${pkgver}


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

2018-09-08 Thread Christian Hesse via arch-commits
Date: Saturday, September 8, 2018 @ 19:18:59
  Author: eworm
Revision: 378822

conflict with pacserve

Modified:
  pacredir/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-09-08 15:57:40 UTC (rev 378821)
+++ PKGBUILD2018-09-08 19:18:59 UTC (rev 378822)
@@ -9,6 +9,7 @@
 url='https://github.com/eworm-de/pacredir'
 depends=('libsystemd' 'avahi' 'curl' 'iniparser' 'darkhttpd' 'libmicrohttpd')
 makedepends=('systemd' 'markdown')
+conflicts=('pacserve')
 license=('GPL')
 install=pacredir.install
 backup=('etc/pacredir.conf' 'etc/pacman.d/pacredir')


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

2018-09-08 Thread Morten Linderud via arch-commits
Date: Saturday, September 8, 2018 @ 15:57:30
  Author: foxboron
Revision: 378820

upgpkg: python-autobahn 18.8.2-1

Modified:
  python-autobahn/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-09-08 15:55:17 UTC (rev 378819)
+++ PKGBUILD2018-09-08 15:57:30 UTC (rev 378820)
@@ -1,9 +1,9 @@
-# Maintainer: Morten Linderud
+# Maintainer: Morten Linderud 
 # Maintainer: Anatol Pomozov
 
 pkgbase=python-autobahn
 pkgname=(python-autobahn python2-autobahn)
-pkgver=18.8.1
+pkgver=18.8.2
 pkgrel=1
 pkgdesc='Real-time framework for Web, Mobile & Internet of Things'
 arch=(any)
@@ -12,7 +12,7 @@
 makedepends=(python-setuptools python2-setuptools python-twisted python-six 
python-txaio python2-twisted python2-six python2-txaio)
 checkdepends=(python2-unittest2)
 source=(https://pypi.io/packages/source/a/autobahn/autobahn-$pkgver.tar.gz)
-sha256sums=('b69858e0be4bff8437b0bd82a0db1cbef7405e16bd9354ba587c043d6d5e1ad9')
+sha256sums=('448df2e241011ea2948799918930042d81e63d26b01912c472f5a9a37f42f319')
 
 prepare() {
   cp -a autobahn-$pkgver{,-py2}


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

2018-09-08 Thread Morten Linderud via arch-commits
Date: Saturday, September 8, 2018 @ 15:57:40
  Author: foxboron
Revision: 378821

archrelease: copy trunk to community-any

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

--+
 PKGBUILD |  104 ++---
 1 file changed, 52 insertions(+), 52 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-09-08 15:57:30 UTC (rev 378820)
+++ PKGBUILD2018-09-08 15:57:40 UTC (rev 378821)
@@ -1,52 +0,0 @@
-# Maintainer: Morten Linderud
-# Maintainer: Anatol Pomozov
-
-pkgbase=python-autobahn
-pkgname=(python-autobahn python2-autobahn)
-pkgver=18.8.1
-pkgrel=1
-pkgdesc='Real-time framework for Web, Mobile & Internet of Things'
-arch=(any)
-url='http://autobahn.ws/python/'
-license=(MIT)
-makedepends=(python-setuptools python2-setuptools python-twisted python-six 
python-txaio python2-twisted python2-six python2-txaio)
-checkdepends=(python2-unittest2)
-source=(https://pypi.io/packages/source/a/autobahn/autobahn-$pkgver.tar.gz)
-sha256sums=('b69858e0be4bff8437b0bd82a0db1cbef7405e16bd9354ba587c043d6d5e1ad9')
-
-prepare() {
-  cp -a autobahn-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir/autobahn-$pkgver"
-  python setup.py build
-
-  cd "$srcdir/autobahn-$pkgver-py2"
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir/autobahn-$pkgver"
-  #It requires python-unittest2 in [community]
-  #python setup.py test
-
-  cd "$srcdir/autobahn-$pkgver-py2"
-  #python2 setup.py test
-}
-
-package_python-autobahn() {
-  depends=(python python-twisted python-six python-txaio)
-
-  cd "$srcdir/autobahn-$pkgver"
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-package_python2-autobahn() {
-  depends=(python2 python2-twisted python2-six python2-txaio)
-
-  cd "$srcdir/autobahn-$pkgver-py2"
-  python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: python-autobahn/repos/community-any/PKGBUILD (from rev 378820, 
python-autobahn/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-09-08 15:57:40 UTC (rev 378821)
@@ -0,0 +1,52 @@
+# Maintainer: Morten Linderud 
+# Maintainer: Anatol Pomozov
+
+pkgbase=python-autobahn
+pkgname=(python-autobahn python2-autobahn)
+pkgver=18.8.2
+pkgrel=1
+pkgdesc='Real-time framework for Web, Mobile & Internet of Things'
+arch=(any)
+url='http://autobahn.ws/python/'
+license=(MIT)
+makedepends=(python-setuptools python2-setuptools python-twisted python-six 
python-txaio python2-twisted python2-six python2-txaio)
+checkdepends=(python2-unittest2)
+source=(https://pypi.io/packages/source/a/autobahn/autobahn-$pkgver.tar.gz)
+sha256sums=('448df2e241011ea2948799918930042d81e63d26b01912c472f5a9a37f42f319')
+
+prepare() {
+  cp -a autobahn-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir/autobahn-$pkgver"
+  python setup.py build
+
+  cd "$srcdir/autobahn-$pkgver-py2"
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir/autobahn-$pkgver"
+  #It requires python-unittest2 in [community]
+  #python setup.py test
+
+  cd "$srcdir/autobahn-$pkgver-py2"
+  #python2 setup.py test
+}
+
+package_python-autobahn() {
+  depends=(python python-twisted python-six python-txaio)
+
+  cd "$srcdir/autobahn-$pkgver"
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_python2-autobahn() {
+  depends=(python2 python2-twisted python2-six python2-txaio)
+
+  cd "$srcdir/autobahn-$pkgver-py2"
+  python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2018-09-08 Thread Christian Hesse via arch-commits
Date: Saturday, September 8, 2018 @ 19:22:08
  Author: eworm
Revision: 378824

archrelease: copy trunk to community-any

Added:
  gitolite/repos/community-any/PKGBUILD
(from rev 378823, gitolite/trunk/PKGBUILD)
  gitolite/repos/community-any/gitolite-sysusers.conf
(from rev 378823, gitolite/trunk/gitolite-sysusers.conf)
Deleted:
  gitolite/repos/community-any/PKGBUILD
  gitolite/repos/community-any/gitolite-sysusers.conf

+
 PKGBUILD   |   68 +++
 gitolite-sysusers.conf |2 -
 2 files changed, 35 insertions(+), 35 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-09-08 19:22:05 UTC (rev 378823)
+++ PKGBUILD2018-09-08 19:22:08 UTC (rev 378824)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer:  Bartłomiej Piotrowski 
-# Maintainer:  Christian Hesse 
-# Contributor: Jon Eyolfson 
-
-pkgname=gitolite
-pkgver=3.6.8
-pkgrel=1
-pkgdesc='An access control layer on top of git'
-url='https://github.com/sitaramc/gitolite'
-arch=('any')
-license=('GPL2')
-depends=('git' 'perl' 'openssh')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/v${pkgver}.tar.gz"
-'gitolite-sysusers.conf')
-sha256sums=('4c5d66964b2881221915f1751ae5e64a89266f8943abf5efd457672374f03edf'
-'5e4f3aaa406c25fcd88fffaee74ea4878cecf1dd8c777456e4416caf35292dbf')
-
-prepare() {
-  cd $pkgname-$pkgver/src
-  echo "$pkgver" > VERSION
-}
-
-package() {
-  # create directories
-  install -d "$pkgdir"/usr/{bin,lib/gitolite}
-
-  # install files and create symlink
-  cp -a $pkgname-$pkgver/src/* "$pkgdir"/usr/lib/gitolite
-  ln -s /usr/lib/gitolite/gitolite "$pkgdir"/usr/bin/
-
-  # sysusers file
-  install -D -m 0644 "${srcdir}"/gitolite-sysusers.conf 
"${pkgdir}"/usr/lib/sysusers.d/gitolite.conf
-}

Copied: gitolite/repos/community-any/PKGBUILD (from rev 378823, 
gitolite/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-09-08 19:22:08 UTC (rev 378824)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski 
+# Maintainer:  Christian Hesse 
+# Contributor: Jon Eyolfson 
+
+pkgname=gitolite
+pkgver=3.6.9
+pkgrel=1
+pkgdesc='An access control layer on top of git'
+url='https://github.com/sitaramc/gitolite'
+arch=('any')
+license=('GPL2')
+depends=('git' 'perl' 'openssh')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v${pkgver}.tar.gz"
+'gitolite-sysusers.conf')
+sha256sums=('771ae7b5731d4ac6cace8b589c5903dc82ddaa4127691f487183e58764d2a4c3'
+'5e4f3aaa406c25fcd88fffaee74ea4878cecf1dd8c777456e4416caf35292dbf')
+
+prepare() {
+  cd $pkgname-$pkgver/src
+  echo "$pkgver" > VERSION
+}
+
+package() {
+  # create directories
+  install -d "$pkgdir"/usr/{bin,lib/gitolite}
+
+  # install files and create symlink
+  cp -a $pkgname-$pkgver/src/* "$pkgdir"/usr/lib/gitolite
+  ln -s /usr/lib/gitolite/gitolite "$pkgdir"/usr/bin/
+
+  # sysusers file
+  install -D -m 0644 "${srcdir}"/gitolite-sysusers.conf 
"${pkgdir}"/usr/lib/sysusers.d/gitolite.conf
+}

Deleted: gitolite-sysusers.conf
===
--- gitolite-sysusers.conf  2018-09-08 19:22:05 UTC (rev 378823)
+++ gitolite-sysusers.conf  2018-09-08 19:22:08 UTC (rev 378824)
@@ -1 +0,0 @@
-u gitolite - "gitolite user" /var/lib/gitolite /bin/bash

Copied: gitolite/repos/community-any/gitolite-sysusers.conf (from rev 378823, 
gitolite/trunk/gitolite-sysusers.conf)
===
--- gitolite-sysusers.conf  (rev 0)
+++ gitolite-sysusers.conf  2018-09-08 19:22:08 UTC (rev 378824)
@@ -0,0 +1 @@
+u gitolite - "gitolite user" /var/lib/gitolite /bin/bash


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

2018-09-08 Thread Antonio Rojas via arch-commits
Date: Saturday, September 8, 2018 @ 20:56:18
  Author: arojas
Revision: 334147

archrelease: copy trunk to extra-x86_64

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

--+
 PKGBUILD |   85 -
 kwin.install |9 ++
 2 files changed, 52 insertions(+), 42 deletions(-)

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

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

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

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

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

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

Copied: kwin/repos/extra-x86_64/kwin.install (from rev 334146, 
kwin/trunk/kwin.install)
===
--- kwin.install(rev 0)
+++ kwin.install2018-09-08 20:56:18 UTC (rev 334147)
@@ -0,0 +1,9 @@
+post_install() {
+# this is executed by make install, but doesn't work since setcap can only be 
run as root
+  setcap CAP_SYS_NICE=+ep /usr/bin/kwin_wayland
+}
+
+post_upgrade() {
+  post_install
+}
+


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

2018-09-08 Thread Antonio Rojas via arch-commits
Date: Saturday, September 8, 2018 @ 20:55:51
  Author: arojas
Revision: 334146

Set kwin_wayland capabilities on install since it needs to be done as root 
(FS#59988)

Added:
  kwin/trunk/kwin.install
Modified:
  kwin/trunk/PKGBUILD

--+
 PKGBUILD |3 ++-
 kwin.install |9 +
 2 files changed, 11 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-09-08 19:34:37 UTC (rev 334145)
+++ PKGBUILD2018-09-08 20:55:51 UTC (rev 334146)
@@ -5,7 +5,7 @@
 
 pkgname=kwin
 pkgver=5.13.5
-pkgrel=1
+pkgrel=2
 pkgdesc='An easy to use, but flexible, composited Window Manager'
 arch=(x86_64)
 url='https://www.kde.org/workspaces/plasmadesktop/'
@@ -15,6 +15,7 @@
 optdepends=('qt5-virtualkeyboard: virtual keyboard support for kwin-wayland')
 groups=(plasma)
 
source=("https://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
+install=$pkgname.install
 sha256sums=('d53d380dab763827e4f3effcb4f0725aaec91ded6f702e0fcc5d856829bba151'
 'SKIP')
 validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell

Added: kwin.install
===
--- kwin.install(rev 0)
+++ kwin.install2018-09-08 20:55:51 UTC (rev 334146)
@@ -0,0 +1,9 @@
+post_install() {
+# this is executed by make install, but doesn't work since setcap can only be 
run as root
+  setcap CAP_SYS_NICE=+ep /usr/bin/kwin_wayland
+}
+
+post_upgrade() {
+  post_install
+}
+


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

2018-09-08 Thread Morten Linderud via arch-commits
Date: Saturday, September 8, 2018 @ 15:55:07
  Author: foxboron
Revision: 378818

upgpkg: font-awesome 5.3.1-1

Modified:
  font-awesome/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-09-08 14:34:54 UTC (rev 378817)
+++ PKGBUILD2018-09-08 15:55:07 UTC (rev 378818)
@@ -3,7 +3,7 @@
 
 pkgbase=font-awesome
 pkgname=(ttf-font-awesome otf-font-awesome)
-pkgver=5.2.0
+pkgver=5.3.1
 pkgrel=1
 pkgdesc="Iconic font designed for Bootstrap"
 url="http://fontawesome.com;
@@ -11,7 +11,7 @@
 arch=('any')
 depends=('fontconfig')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/FortAwesome/Font-Awesome/archive/$pkgver.tar.gz;)
-sha256sums=('9d228c30b7f30fa258a44781c04d9886c8134ddfc8fe7590093fbd6ea2af1d6d')
+sha256sums=('4b13bd9772e0d34a127a8f3e42c0ed2669d6ccc3c903bd32aaa78ca791a4ce7a')
 
 package_ttf-font-awesome() {
   cd "Font-Awesome-${pkgver}"


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

2018-09-08 Thread Morten Linderud via arch-commits
Date: Saturday, September 8, 2018 @ 15:55:17
  Author: foxboron
Revision: 378819

archrelease: copy trunk to community-any

Added:
  font-awesome/repos/community-any/PKGBUILD
(from rev 378818, font-awesome/trunk/PKGBUILD)
Deleted:
  font-awesome/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-09-08 15:55:07 UTC (rev 378818)
+++ PKGBUILD2018-09-08 15:55:17 UTC (rev 378819)
@@ -1,28 +0,0 @@
-# Maintainer: Morten Linderud  
-# Contributor: Alad Wenter 

-
-pkgbase=font-awesome
-pkgname=(ttf-font-awesome otf-font-awesome)
-pkgver=5.2.0
-pkgrel=1
-pkgdesc="Iconic font designed for Bootstrap"
-url="http://fontawesome.com;
-license=('custom:OFL')
-arch=('any')
-depends=('fontconfig')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/FortAwesome/Font-Awesome/archive/$pkgver.tar.gz;)
-sha256sums=('9d228c30b7f30fa258a44781c04d9886c8134ddfc8fe7590093fbd6ea2af1d6d')
-
-package_ttf-font-awesome() {
-  cd "Font-Awesome-${pkgver}"
-  install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
-  install -d "$pkgdir/usr/share/fonts/TTF"
-  install -m644 ./web-fonts-with-css/webfonts/*.ttf 
"$pkgdir/usr/share/fonts/TTF"
-}
-
-package_otf-font-awesome() {
-  cd "Font-Awesome-${pkgver}"
-  install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
-  install -d "$pkgdir/usr/share/fonts/OTF"
-  install -m644 ./use-on-desktop/*.otf "$pkgdir/usr/share/fonts/OTF"
-}

Copied: font-awesome/repos/community-any/PKGBUILD (from rev 378818, 
font-awesome/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-09-08 15:55:17 UTC (rev 378819)
@@ -0,0 +1,28 @@
+# Maintainer: Morten Linderud  
+# Contributor: Alad Wenter 

+
+pkgbase=font-awesome
+pkgname=(ttf-font-awesome otf-font-awesome)
+pkgver=5.3.1
+pkgrel=1
+pkgdesc="Iconic font designed for Bootstrap"
+url="http://fontawesome.com;
+license=('custom:OFL')
+arch=('any')
+depends=('fontconfig')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/FortAwesome/Font-Awesome/archive/$pkgver.tar.gz;)
+sha256sums=('4b13bd9772e0d34a127a8f3e42c0ed2669d6ccc3c903bd32aaa78ca791a4ce7a')
+
+package_ttf-font-awesome() {
+  cd "Font-Awesome-${pkgver}"
+  install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
+  install -d "$pkgdir/usr/share/fonts/TTF"
+  install -m644 ./web-fonts-with-css/webfonts/*.ttf 
"$pkgdir/usr/share/fonts/TTF"
+}
+
+package_otf-font-awesome() {
+  cd "Font-Awesome-${pkgver}"
+  install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
+  install -d "$pkgdir/usr/share/fonts/OTF"
+  install -m644 ./use-on-desktop/*.otf "$pkgdir/usr/share/fonts/OTF"
+}


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

2018-09-08 Thread Christian Hesse via arch-commits
Date: Saturday, September 8, 2018 @ 19:22:05
  Author: eworm
Revision: 378823

upgpkg: gitolite 3.6.9-1

new upstream release

Modified:
  gitolite/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-09-08 19:18:59 UTC (rev 378822)
+++ PKGBUILD2018-09-08 19:22:05 UTC (rev 378823)
@@ -4,7 +4,7 @@
 # Contributor: Jon Eyolfson 
 
 pkgname=gitolite
-pkgver=3.6.8
+pkgver=3.6.9
 pkgrel=1
 pkgdesc='An access control layer on top of git'
 url='https://github.com/sitaramc/gitolite'
@@ -13,7 +13,7 @@
 depends=('git' 'perl' 'openssh')
 source=("$pkgname-$pkgver.tar.gz::$url/archive/v${pkgver}.tar.gz"
 'gitolite-sysusers.conf')
-sha256sums=('4c5d66964b2881221915f1751ae5e64a89266f8943abf5efd457672374f03edf'
+sha256sums=('771ae7b5731d4ac6cace8b589c5903dc82ddaa4127691f487183e58764d2a4c3'
 '5e4f3aaa406c25fcd88fffaee74ea4878cecf1dd8c777456e4416caf35292dbf')
 
 prepare() {


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

2018-09-08 Thread David Runge via arch-commits
Date: Saturday, September 8, 2018 @ 23:10:47
  Author: dvzrv
Revision: 378830

archrelease: copy trunk to community-testing-any

Added:
  python-doit/repos/community-testing-any/
  python-doit/repos/community-testing-any/PKGBUILD
(from rev 378829, python-doit/trunk/PKGBUILD)

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

Copied: python-doit/repos/community-testing-any/PKGBUILD (from rev 378829, 
python-doit/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2018-09-08 23:10:47 UTC (rev 378830)
@@ -0,0 +1,49 @@
+# Maintainer: David Runge 
+_name=doit
+pkgname=python-doit
+pkgver=0.31.1
+pkgrel=1
+pkgdesc="A task management and automation tool"
+arch=('any')
+url="http://pydoit.org/;
+license=('MIT')
+depends=('python-cloudpickle' 'python-setuptools')
+#checkdepends=('flake8'  'python-coverage' 'python-pytest')
+optdepends=('python-pyinotify: notifications'
+'bash-completion: autocomplete for bash'
+'zsh-completions: autocomplete for ZSH')
+source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz;)
+sha512sums=('31235cb46a73adc2d3e726dce24dd9632f5b1ef00d313bf1c42ff895a03eff41be0ec7ae14a004e742d50003c2da17f29bd3392a49d80e73cfb59c12bd152d9d')
+
+prepare() {
+  mv -v "$_name-$pkgver" "$pkgname-$pkgver"
+  cd "$pkgname-$pkgver"
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  python setup.py build
+}
+
+# tests are broken:
+# https://github.com/pydoit/doit/issues/269
+#check() {
+#  cd "$pkgname-$pkgver"
+#  export PYTHONPATH=build/lib:${PYTHONPATH}
+#  py.test
+#}
+
+package() {
+  cd "$pkgname-$pkgver"
+  python setup.py install --skip-build \
+--optimize=1 \
+--prefix=/usr \
+--root="${pkgdir}"
+  install -vDm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -vDm 644 {AUTHORS,CHANGES,CONTRIBUTING.md,README.rst} \
+-t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -vDm 644 "bash_completion_${_name}" \
+"${pkgdir}/usr/share/bash-completion/completions/${_name}"
+  install -vDm 644 "zsh_completion_${_name}" \
+"${pkgdir}/usr/share/zsh/site-functions/_${_name}"
+}


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

2018-09-08 Thread Morten Linderud via arch-commits
Date: Saturday, September 8, 2018 @ 23:37:21
  Author: foxboron
Revision: 378831

archrelease: copy trunk to community-any

Added:
  py3status/
  py3status/repos/
  py3status/repos/community-any/


[arch-commits] Commit in (6 files)

2018-09-08 Thread Morten Linderud via arch-commits
Date: Saturday, September 8, 2018 @ 23:46:52
  Author: foxboron
Revision: 378832

addpkg: py3status 3.12-2

Added:
  py3status/
  py3status/repos/
  py3status/trunk/
  py3status/trunk/PKGBUILD
  py3status/trunk/fix_to_ascii.patch
Deleted:
  py3status/

+
 PKGBUILD   |   37 +++
 fix_to_ascii.patch |   81 +++
 2 files changed, 118 insertions(+)

Added: py3status/trunk/PKGBUILD
===
--- py3status/trunk/PKGBUILD(rev 0)
+++ py3status/trunk/PKGBUILD2018-09-08 23:46:52 UTC (rev 378832)
@@ -0,0 +1,37 @@
+# Maintainer: Morten Linderud 
+# Contributor: Alexis "Horgix" Chotard 
+# Contributor: carstene1ns  - http://git.io/ctPKG
+
+pkgname=py3status
+pkgver=3.12
+pkgrel=2
+pkgdesc="An extensible i3status replacement/wrapper written in python"
+url="http://www.ultrabug.fr/tag/py3status/;
+arch=('any')
+license=('BSD')
+depends=('python' 'python-setuptools' 'i3status')
+optdepends=('i3status: for some of the functionality'
+'acpi: for some of the battery related modules'
+'pacman-contrib: for the arch_updates module')
+source=($pkgname-$pkgver.tar.gz::"https://github.com/ultrabug/py3status/archive/$pkgver.tar.gz;
+"fix_to_ascii.patch")
+sha256sums=('c85e10116be2c62ba0916c3cc2e2af75e7fb3c1c714f0690dbdadfcb3871c51f'
+'bf3d79664e0f6974b52a84c386663969b6394fc1c5f4680f6eaae24a8b459de9')
+
+prepare() {
+  cd $pkgname-$pkgver
+  patch -p0 -i "$srcdir/fix_to_ascii.patch" setup.py
+}
+
+package() {
+  cd $pkgname-$pkgver
+  python setup.py build
+}
+
+package() {
+  cd $pkgname-$pkgver
+  python setup.py install --root="$pkgdir/" --optimize=1 --skip-build
+  install -d "$pkgdir"/usr/share/doc/$pkgname
+  install -m644 doc/* README.rst CHANGELOG "$pkgdir"/usr/share/doc/$pkgname
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}

Added: py3status/trunk/fix_to_ascii.patch
===
--- py3status/trunk/fix_to_ascii.patch  (rev 0)
+++ py3status/trunk/fix_to_ascii.patch  2018-09-08 23:46:52 UTC (rev 378832)
@@ -0,0 +1,81 @@
+--- src/py3status-3.12/setup.py2018-08-09 08:03:15.0 +0200
 src/py3status-3.12/setupnew.py 2018-08-30 01:48:06.579451985 +0200
+@@ -5,9 +5,6 @@
+ import os
+ import sys
+ from setuptools import find_packages, setup
+-from setuptools.command.develop import develop
+-from setuptools.command.install import install
+-from setuptools.command.easy_install import _to_ascii, ScriptWriter
+ 
+ module_path = os.path.join(
+ os.path.dirname(os.path.realpath(__file__)), 'py3status')
+@@ -16,50 +13,6 @@
+ sys.path.remove(module_path)
+ 
+ 
+-# setuptools causes scripts to run slowly see
+-# https://github.com/pypa/setuptools/issues/510
+-# We can make py3-cmd run much faster when installed via
+-# python setup install/develop
+-PY3_CMD_SCRIPT_TEXT = u"""{}
+-# -*- coding: utf-8 -*-
+-import re
+-import sys
+-
+-from py3status.command import send_command
+-
+-if __name__ == '__main__':
+-sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
+-sys.exit(send_command())
+-"""
+-
+-
+-def install_py3_cmd(installer):
+-"""Attempt to overwrite /bin/py3-cmd with efficient version"""
+-py_cmd = ScriptWriter.get_header()
+-script_text = PY3_CMD_SCRIPT_TEXT.format(py_cmd)
+-try:
+-installer.write_script('py3-cmd', _to_ascii(script_text), 'b')
+-except AttributeError:
+-# building wheel etc
+-pass
+-
+-
+-class PostDevelopCommand(develop):
+-"""Post-installation for develop"""
+-
+-def run(self):
+-develop.run(self)
+-install_py3_cmd(self)
+-
+-
+-class PostInstallCommand(install):
+-"""Post-installation for install"""
+-
+-def run(self):
+-install.run(self)
+-install_py3_cmd(self)
+-
+-
+ # Utility function to read the README file.
+ # Used for the long_description.  It's nice, because now 1) we have a top 
level
+ # README file and 2) it's easier to type in the README file than to put a raw
+@@ -83,10 +36,6 @@
+ packages=find_packages(),
+ include_package_data=True,
+ install_requires=[],
+-cmdclass={
+-'develop': PostDevelopCommand,
+-'install': PostInstallCommand,
+-},
+ entry_points={
+ 'console_scripts': [
+ 'py3status = py3status:main',
+@@ -105,5 +54,6 @@
+ 'Programming Language :: Python :: 3.4',
+ 'Programming Language :: Python :: 3.5',
+ 'Programming Language :: Python :: 3.6',
++'Programming Language :: Python :: 3.7',
+ 'Topic :: Software Development :: Libraries :: Python Modules',
+ ], )


[arch-commits] Commit in (4 files)

2018-09-08 Thread David Runge via arch-commits
Date: Saturday, September 8, 2018 @ 23:48:20
  Author: dvzrv
Revision: 378833

Adding python-phpserialize as optdepends for nikola.

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

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

Added: python-phpserialize/trunk/PKGBUILD
===
--- python-phpserialize/trunk/PKGBUILD  (rev 0)
+++ python-phpserialize/trunk/PKGBUILD  2018-09-08 23:48:20 UTC (rev 378833)
@@ -0,0 +1,50 @@
+# Maintainer: David Runge 
+_name=phpserialize
+pkgname=python-phpserialize
+pkgver=1.3
+pkgrel=3
+pkgdesc="A port of the serialize and unserialize functions of php to python"
+arch=('any')
+url="https://github.com/mitsuhiko/phpserialize;
+license=('BSD')
+depends=('python')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest')
+# tests not included in pypi source:
+# https://github.com/mitsuhiko/phpserialize/issues/21
+# LICENSE not in any source tarball:
+# https://github.com/mitsuhiko/phpserialize/issues/22
+#source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz;)
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/mitsuhiko/${_name}/archive/${pkgver}.tar.gz;
+"https://raw.githubusercontent.com/mitsuhiko/${_name}/master/LICENSE;)
+sha512sums=('d96e3aa87d2f03fef6c7cee234e90b373989a9c8e3a07a8e2147a2e7487d3448ea0ef646263e517d6b307bf66f9ba1a4e8def04f919767532cede802cc7db144'
+
'95be97fbe3b8d03ba27aee2d9f5e29ff2923425970103f8b15f13e36beb744e8bc1f9361e89b05d2e9677368b5ab95c5ad84722e3523b3b8574e2d94b69f2d3e')
+
+prepare() {
+  mv -v "${_name}-$pkgver" "$pkgname-$pkgver"
+  cd "$pkgname-$pkgver"
+  # disabling broken test: https://github.com/mitsuhiko/phpserialize/issues/17
+  sed -e 's/test_tuple_roundtrips/disabled_test_tuple_roundtrips/' \
+  -e 's/test_dumps_dict/disabled_test_dumps_dict/' \
+  -i tests.py
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  python setup.py build
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  python setup.py test
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  python setup.py install --skip-build \
+--optimize=1 \
+--prefix=/usr \
+--root="${pkgdir}"
+  install -vDm 644 ../LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -vDm 644 README -t "${pkgdir}/usr/share/doc/${pkgname}"
+}


[arch-commits] Commit in (6 files)

2018-09-08 Thread Morten Linderud via arch-commits
Date: Saturday, September 8, 2018 @ 23:48:25
  Author: foxboron
Revision: 378834

addpkg: py3status 3.12-2

Added:
  py3status/
  py3status/repos/
  py3status/trunk/
  py3status/trunk/PKGBUILD
  py3status/trunk/fix_to_ascii.patch
Deleted:
  py3status/

+
 PKGBUILD   |   37 +++
 fix_to_ascii.patch |   81 +++
 2 files changed, 118 insertions(+)

Added: py3status/trunk/PKGBUILD
===
--- py3status/trunk/PKGBUILD(rev 0)
+++ py3status/trunk/PKGBUILD2018-09-08 23:48:25 UTC (rev 378834)
@@ -0,0 +1,37 @@
+# Maintainer: Morten Linderud 
+# Contributor: Alexis "Horgix" Chotard 
+# Contributor: carstene1ns  - http://git.io/ctPKG
+
+pkgname=py3status
+pkgver=3.12
+pkgrel=2
+pkgdesc="An extensible i3status replacement/wrapper written in python"
+url="http://www.ultrabug.fr/tag/py3status/;
+arch=('any')
+license=('BSD')
+depends=('python' 'python-setuptools' 'i3status')
+optdepends=('i3status: for some of the functionality'
+'acpi: for some of the battery related modules'
+'pacman-contrib: for the arch_updates module')
+source=($pkgname-$pkgver.tar.gz::"https://github.com/ultrabug/py3status/archive/$pkgver.tar.gz;
+"fix_to_ascii.patch")
+sha256sums=('c85e10116be2c62ba0916c3cc2e2af75e7fb3c1c714f0690dbdadfcb3871c51f'
+'bf3d79664e0f6974b52a84c386663969b6394fc1c5f4680f6eaae24a8b459de9')
+
+prepare() {
+  cd $pkgname-$pkgver
+  patch -p0 -i "$srcdir/fix_to_ascii.patch" setup.py
+}
+
+package() {
+  cd $pkgname-$pkgver
+  python setup.py build
+}
+
+package() {
+  cd $pkgname-$pkgver
+  python setup.py install --root="$pkgdir/" --optimize=1 --skip-build
+  install -d "$pkgdir"/usr/share/doc/$pkgname
+  install -m644 doc/* README.rst CHANGELOG "$pkgdir"/usr/share/doc/$pkgname
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}

Added: py3status/trunk/fix_to_ascii.patch
===
--- py3status/trunk/fix_to_ascii.patch  (rev 0)
+++ py3status/trunk/fix_to_ascii.patch  2018-09-08 23:48:25 UTC (rev 378834)
@@ -0,0 +1,81 @@
+--- src/py3status-3.12/setup.py2018-08-09 08:03:15.0 +0200
 src/py3status-3.12/setupnew.py 2018-08-30 01:48:06.579451985 +0200
+@@ -5,9 +5,6 @@
+ import os
+ import sys
+ from setuptools import find_packages, setup
+-from setuptools.command.develop import develop
+-from setuptools.command.install import install
+-from setuptools.command.easy_install import _to_ascii, ScriptWriter
+ 
+ module_path = os.path.join(
+ os.path.dirname(os.path.realpath(__file__)), 'py3status')
+@@ -16,50 +13,6 @@
+ sys.path.remove(module_path)
+ 
+ 
+-# setuptools causes scripts to run slowly see
+-# https://github.com/pypa/setuptools/issues/510
+-# We can make py3-cmd run much faster when installed via
+-# python setup install/develop
+-PY3_CMD_SCRIPT_TEXT = u"""{}
+-# -*- coding: utf-8 -*-
+-import re
+-import sys
+-
+-from py3status.command import send_command
+-
+-if __name__ == '__main__':
+-sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
+-sys.exit(send_command())
+-"""
+-
+-
+-def install_py3_cmd(installer):
+-"""Attempt to overwrite /bin/py3-cmd with efficient version"""
+-py_cmd = ScriptWriter.get_header()
+-script_text = PY3_CMD_SCRIPT_TEXT.format(py_cmd)
+-try:
+-installer.write_script('py3-cmd', _to_ascii(script_text), 'b')
+-except AttributeError:
+-# building wheel etc
+-pass
+-
+-
+-class PostDevelopCommand(develop):
+-"""Post-installation for develop"""
+-
+-def run(self):
+-develop.run(self)
+-install_py3_cmd(self)
+-
+-
+-class PostInstallCommand(install):
+-"""Post-installation for install"""
+-
+-def run(self):
+-install.run(self)
+-install_py3_cmd(self)
+-
+-
+ # Utility function to read the README file.
+ # Used for the long_description.  It's nice, because now 1) we have a top 
level
+ # README file and 2) it's easier to type in the README file than to put a raw
+@@ -83,10 +36,6 @@
+ packages=find_packages(),
+ include_package_data=True,
+ install_requires=[],
+-cmdclass={
+-'develop': PostDevelopCommand,
+-'install': PostInstallCommand,
+-},
+ entry_points={
+ 'console_scripts': [
+ 'py3status = py3status:main',
+@@ -105,5 +54,6 @@
+ 'Programming Language :: Python :: 3.4',
+ 'Programming Language :: Python :: 3.5',
+ 'Programming Language :: Python :: 3.6',
++'Programming Language :: Python :: 3.7',
+ 'Topic :: Software Development :: Libraries :: Python Modules',
+ ], )


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

2018-09-08 Thread Morten Linderud via arch-commits
Date: Saturday, September 8, 2018 @ 23:48:34
  Author: foxboron
Revision: 378835

archrelease: copy trunk to community-any

Added:
  py3status/repos/community-any/
  py3status/repos/community-any/PKGBUILD
(from rev 378834, py3status/trunk/PKGBUILD)
  py3status/repos/community-any/fix_to_ascii.patch
(from rev 378834, py3status/trunk/fix_to_ascii.patch)

+
 PKGBUILD   |   37 +++
 fix_to_ascii.patch |   81 +++
 2 files changed, 118 insertions(+)

Copied: py3status/repos/community-any/PKGBUILD (from rev 378834, 
py3status/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2018-09-08 23:48:34 UTC (rev 378835)
@@ -0,0 +1,37 @@
+# Maintainer: Morten Linderud 
+# Contributor: Alexis "Horgix" Chotard 
+# Contributor: carstene1ns  - http://git.io/ctPKG
+
+pkgname=py3status
+pkgver=3.12
+pkgrel=2
+pkgdesc="An extensible i3status replacement/wrapper written in python"
+url="http://www.ultrabug.fr/tag/py3status/;
+arch=('any')
+license=('BSD')
+depends=('python' 'python-setuptools' 'i3status')
+optdepends=('i3status: for some of the functionality'
+'acpi: for some of the battery related modules'
+'pacman-contrib: for the arch_updates module')
+source=($pkgname-$pkgver.tar.gz::"https://github.com/ultrabug/py3status/archive/$pkgver.tar.gz;
+"fix_to_ascii.patch")
+sha256sums=('c85e10116be2c62ba0916c3cc2e2af75e7fb3c1c714f0690dbdadfcb3871c51f'
+'bf3d79664e0f6974b52a84c386663969b6394fc1c5f4680f6eaae24a8b459de9')
+
+prepare() {
+  cd $pkgname-$pkgver
+  patch -p0 -i "$srcdir/fix_to_ascii.patch" setup.py
+}
+
+package() {
+  cd $pkgname-$pkgver
+  python setup.py build
+}
+
+package() {
+  cd $pkgname-$pkgver
+  python setup.py install --root="$pkgdir/" --optimize=1 --skip-build
+  install -d "$pkgdir"/usr/share/doc/$pkgname
+  install -m644 doc/* README.rst CHANGELOG "$pkgdir"/usr/share/doc/$pkgname
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}

Copied: py3status/repos/community-any/fix_to_ascii.patch (from rev 378834, 
py3status/trunk/fix_to_ascii.patch)
===
--- community-any/fix_to_ascii.patch(rev 0)
+++ community-any/fix_to_ascii.patch2018-09-08 23:48:34 UTC (rev 378835)
@@ -0,0 +1,81 @@
+--- src/py3status-3.12/setup.py2018-08-09 08:03:15.0 +0200
 src/py3status-3.12/setupnew.py 2018-08-30 01:48:06.579451985 +0200
+@@ -5,9 +5,6 @@
+ import os
+ import sys
+ from setuptools import find_packages, setup
+-from setuptools.command.develop import develop
+-from setuptools.command.install import install
+-from setuptools.command.easy_install import _to_ascii, ScriptWriter
+ 
+ module_path = os.path.join(
+ os.path.dirname(os.path.realpath(__file__)), 'py3status')
+@@ -16,50 +13,6 @@
+ sys.path.remove(module_path)
+ 
+ 
+-# setuptools causes scripts to run slowly see
+-# https://github.com/pypa/setuptools/issues/510
+-# We can make py3-cmd run much faster when installed via
+-# python setup install/develop
+-PY3_CMD_SCRIPT_TEXT = u"""{}
+-# -*- coding: utf-8 -*-
+-import re
+-import sys
+-
+-from py3status.command import send_command
+-
+-if __name__ == '__main__':
+-sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
+-sys.exit(send_command())
+-"""
+-
+-
+-def install_py3_cmd(installer):
+-"""Attempt to overwrite /bin/py3-cmd with efficient version"""
+-py_cmd = ScriptWriter.get_header()
+-script_text = PY3_CMD_SCRIPT_TEXT.format(py_cmd)
+-try:
+-installer.write_script('py3-cmd', _to_ascii(script_text), 'b')
+-except AttributeError:
+-# building wheel etc
+-pass
+-
+-
+-class PostDevelopCommand(develop):
+-"""Post-installation for develop"""
+-
+-def run(self):
+-develop.run(self)
+-install_py3_cmd(self)
+-
+-
+-class PostInstallCommand(install):
+-"""Post-installation for install"""
+-
+-def run(self):
+-install.run(self)
+-install_py3_cmd(self)
+-
+-
+ # Utility function to read the README file.
+ # Used for the long_description.  It's nice, because now 1) we have a top 
level
+ # README file and 2) it's easier to type in the README file than to put a raw
+@@ -83,10 +36,6 @@
+ packages=find_packages(),
+ include_package_data=True,
+ install_requires=[],
+-cmdclass={
+-'develop': PostDevelopCommand,
+-'install': PostInstallCommand,
+-},
+ entry_points={
+ 'console_scripts': [
+ 'py3status = py3status:main',
+@@ -105,5 +54,6 @@
+ 'Programming Language :: Python :: 3.4',
+ 'Programming Language :: Python :: 3.5',
+ 'Programming Language :: Python :: 3.6',
++'Programming Language :: Python :: 3.7',
+

[arch-commits] Commit in gnome-documents/trunk (PKGBUILD js60.diff)

2018-09-08 Thread Jan Steffens via arch-commits
Date: Sunday, September 9, 2018 @ 00:10:57
  Author: heftig
Revision: 334153

3.29.91+6+gbc9b6cc1-2

Added:
  gnome-documents/trunk/js60.diff
Modified:
  gnome-documents/trunk/PKGBUILD

---+
 PKGBUILD  |   10 +++---
 js60.diff |   28 
 2 files changed, 35 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-09-09 00:08:50 UTC (rev 334152)
+++ PKGBUILD2018-09-09 00:10:57 UTC (rev 334153)
@@ -2,7 +2,7 @@
 
 pkgname=gnome-documents
 pkgver=3.29.91+6+gbc9b6cc1
-pkgrel=1
+pkgrel=2
 pkgdesc="A document manager application for GNOME"
 url="https://wiki.gnome.org/Apps/Documents;
 arch=(x86_64)
@@ -14,9 +14,11 @@
 groups=(gnome)
 _commit=bc9b6cc1838d0c97f6ae33c0f56ec1c7d3a32b48  # master
 
source=("git+https://gitlab.gnome.org/GNOME/gnome-documents.git#commit=$_commit;
-"git+https://gitlab.gnome.org/GNOME/libgd.git;)
+"git+https://gitlab.gnome.org/GNOME/libgd.git;
+js60.diff)
 sha256sums=('SKIP'
-'SKIP')
+'SKIP'
+'26e86a8a5185f0a4b564b0f4d6658bfa63bd65f1f1a4c0ac7416e183bca4a136')
 
 pkgver() {
   cd $pkgname
@@ -26,6 +28,8 @@
 prepare() {
   cd $pkgname
 
+  patch -Np1 -i ../js60.diff
+
   git submodule init
   git config --local submodule.subprojects/libgd.url "$srcdir/libgd"
   git submodule update

Added: js60.diff
===
--- js60.diff   (rev 0)
+++ js60.diff   2018-09-09 00:10:57 UTC (rev 334153)
@@ -0,0 +1,28 @@
+diff --git i/src/evinceview.js w/src/evinceview.js
+index 60c314c5..8f01128a 100644
+--- i/src/evinceview.js
 w/src/evinceview.js
+@@ -315,9 +315,9 @@ var EvinceView = new Lang.Class({
+ // the following invocation to work.
+ let evDoc = this._model.get_document();
+ evDoc.find_text();
+-} catch (e if e instanceof TypeError) {
+-canFind = false;
+ } catch (e) {
++if (e instanceof TypeError)
++canFind = false;
+ }
+ 
+ this.getAction('find').enabled = (this.hasPages && canFind);
+diff --git i/src/places.js w/src/places.js
+index 220cd311..0bebbde0 100644
+--- i/src/places.js
 w/src/places.js
+@@ -60,7 +60,6 @@ var PlacesDialog = new Lang.Class({
+ // This is a hack to find out if evDoc implements the
+ // EvDocument.DocumentLinks interface or not.
+ docHasLinks = evDoc.has_document_links();
+-} catch (e if e instanceof TypeError) {
+ } catch (e) {
+ }
+ 


[arch-commits] Commit in gnome-documents/repos/testing-x86_64 (3 files)

2018-09-08 Thread Jan Steffens via arch-commits
Date: Sunday, September 9, 2018 @ 00:11:11
  Author: heftig
Revision: 334154

archrelease: copy trunk to testing-x86_64

Added:
  gnome-documents/repos/testing-x86_64/PKGBUILD
(from rev 334153, gnome-documents/trunk/PKGBUILD)
  gnome-documents/repos/testing-x86_64/js60.diff
(from rev 334153, gnome-documents/trunk/js60.diff)
Deleted:
  gnome-documents/repos/testing-x86_64/PKGBUILD

---+
 PKGBUILD  |  100 +++-
 js60.diff |   28 
 2 files changed, 80 insertions(+), 48 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-09-09 00:10:57 UTC (rev 334153)
+++ PKGBUILD2018-09-09 00:11:11 UTC (rev 334154)
@@ -1,48 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=gnome-documents
-pkgver=3.29.91+6+gbc9b6cc1
-pkgrel=1
-pkgdesc="A document manager application for GNOME"
-url="https://wiki.gnome.org/Apps/Documents;
-arch=(x86_64)
-license=(GPL)
-depends=(evince gjs gtk3 gnome-desktop gnome-online-accounts libgdata 
tracker-miners libzapojit
- webkit2gtk gnome-online-miners librsvg libgepub)
-makedepends=(gobject-introspection git meson yelp-tools inkscape)
-optdepends=('libreoffice-fresh: Support for Libreoffice document types')
-groups=(gnome)
-_commit=bc9b6cc1838d0c97f6ae33c0f56ec1c7d3a32b48  # master
-source=("git+https://gitlab.gnome.org/GNOME/gnome-documents.git#commit=$_commit;
-"git+https://gitlab.gnome.org/GNOME/libgd.git;)
-sha256sums=('SKIP'
-'SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-
-  git submodule init
-  git config --local submodule.subprojects/libgd.url "$srcdir/libgd"
-  git submodule update
-}
-  
-
-build() {
-  arch-meson $pkgname build -D getting_started=true
-  ninja -C build
-}
-
-check() {
-  meson test -C build
-}
-
-package() {
-  DESTDIR="$pkgdir" meson install -C build
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gnome-documents/repos/testing-x86_64/PKGBUILD (from rev 334153, 
gnome-documents/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-09-09 00:11:11 UTC (rev 334154)
@@ -0,0 +1,52 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=gnome-documents
+pkgver=3.29.91+6+gbc9b6cc1
+pkgrel=2
+pkgdesc="A document manager application for GNOME"
+url="https://wiki.gnome.org/Apps/Documents;
+arch=(x86_64)
+license=(GPL)
+depends=(evince gjs gtk3 gnome-desktop gnome-online-accounts libgdata 
tracker-miners libzapojit
+ webkit2gtk gnome-online-miners librsvg libgepub)
+makedepends=(gobject-introspection git meson yelp-tools inkscape)
+optdepends=('libreoffice-fresh: Support for Libreoffice document types')
+groups=(gnome)
+_commit=bc9b6cc1838d0c97f6ae33c0f56ec1c7d3a32b48  # master
+source=("git+https://gitlab.gnome.org/GNOME/gnome-documents.git#commit=$_commit;
+"git+https://gitlab.gnome.org/GNOME/libgd.git;
+js60.diff)
+sha256sums=('SKIP'
+'SKIP'
+'26e86a8a5185f0a4b564b0f4d6658bfa63bd65f1f1a4c0ac7416e183bca4a136')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+
+  patch -Np1 -i ../js60.diff
+
+  git submodule init
+  git config --local submodule.subprojects/libgd.url "$srcdir/libgd"
+  git submodule update
+}
+  
+
+build() {
+  arch-meson $pkgname build -D getting_started=true
+  ninja -C build
+}
+
+check() {
+  meson test -C build
+}
+
+package() {
+  DESTDIR="$pkgdir" meson install -C build
+}
+
+# vim:set ts=2 sw=2 et:

Copied: gnome-documents/repos/testing-x86_64/js60.diff (from rev 334153, 
gnome-documents/trunk/js60.diff)
===
--- js60.diff   (rev 0)
+++ js60.diff   2018-09-09 00:11:11 UTC (rev 334154)
@@ -0,0 +1,28 @@
+diff --git i/src/evinceview.js w/src/evinceview.js
+index 60c314c5..8f01128a 100644
+--- i/src/evinceview.js
 w/src/evinceview.js
+@@ -315,9 +315,9 @@ var EvinceView = new Lang.Class({
+ // the following invocation to work.
+ let evDoc = this._model.get_document();
+ evDoc.find_text();
+-} catch (e if e instanceof TypeError) {
+-canFind = false;
+ } catch (e) {
++if (e instanceof TypeError)
++canFind = false;
+ }
+ 
+ this.getAction('find').enabled = (this.hasPages && canFind);
+diff --git i/src/places.js w/src/places.js
+index 220cd311..0bebbde0 100644
+--- i/src/places.js
 w/src/places.js
+@@ -60,7 +60,6 @@ var PlacesDialog = new Lang.Class({
+ // This is a hack to find out if evDoc implements the
+ // EvDocument.DocumentLinks interface or not.
+ docHasLinks = evDoc.has_document_links();
+-} catch (e if e instanceof TypeError) {
+ } catch (e) 

[arch-commits] Commit in evolution-data-server/repos/testing-x86_64 (2 files)

2018-09-08 Thread Jan Steffens via arch-commits
Date: Sunday, September 9, 2018 @ 00:26:02
  Author: heftig
Revision: 334164

archrelease: copy trunk to testing-x86_64

Added:
  evolution-data-server/repos/testing-x86_64/PKGBUILD
(from rev 334163, evolution-data-server/trunk/PKGBUILD)
Deleted:
  evolution-data-server/repos/testing-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-09-09 00:25:21 UTC (rev 334163)
+++ PKGBUILD2018-09-09 00:26:02 UTC (rev 334164)
@@ -1,49 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Maintainer: Jan de Groot 
-
-pkgname=evolution-data-server
-pkgver=3.30.0
-pkgrel=1
-pkgdesc="Centralized access to appointments and contacts"
-url="https://wiki.gnome.org/Apps/Evolution;
-arch=(x86_64)
-depends=(gnome-online-accounts nss krb5 libgweather libical db libgdata 
libphonenumber)
-makedepends=(intltool gperf gobject-introspection vala gtk-doc boost git cmake 
ninja)
-license=(GPL)
-_commit=ffc4277ac891f2a66cbf005ff40d9de0594d7ec6  # tags/3.30.0^0
-source=("git+https://gitlab.gnome.org/GNOME/evolution-data-server.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/^EVOLUTION_DATA_SERVER_//;s/_/./g;s/-/+/g'
-}
-
-prepare() {
-  mkdir build
-  cd $pkgname
-}
-
-build() {
-  cd build
-  cmake ../$pkgname -G Ninja \
--DCMAKE_INSTALL_PREFIX=/usr \
--DLIBEXEC_INSTALL_DIR=/usr/lib \
--DSYSCONF_INSTALL_DIR=/etc \
--DENABLE_INTROSPECTION=ON \
--DENABLE_VALA_BINDINGS=ON \
--DENABLE_UOA=OFF \
--DENABLE_GTK_DOC=ON \
--DWITH_PHONENUMBER=ON
-  cmake --build .
-}
-
-check() {
-  # libedata-book tests fail because they try to
-  # mkdir /usr/lib/evolution-data-server/camel-providers
-  cmake --build build --target test || :
-}
-
-package() {
-  DESTDIR="$pkgdir" cmake --build build --target install
-}

Copied: evolution-data-server/repos/testing-x86_64/PKGBUILD (from rev 334163, 
evolution-data-server/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-09-09 00:26:02 UTC (rev 334164)
@@ -0,0 +1,49 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Maintainer: Jan de Groot 
+
+pkgname=evolution-data-server
+pkgver=3.30.0
+pkgrel=2
+pkgdesc="Centralized access to appointments and contacts"
+url="https://wiki.gnome.org/Apps/Evolution;
+arch=(x86_64)
+depends=(gnome-online-accounts nss krb5 libgweather libical db libgdata 
libphonenumber)
+makedepends=(intltool gperf gobject-introspection vala gtk-doc boost git cmake 
ninja)
+license=(GPL)
+_commit=ffc4277ac891f2a66cbf005ff40d9de0594d7ec6  # tags/3.30.0^0
+source=("git+https://gitlab.gnome.org/GNOME/evolution-data-server.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^EVOLUTION_DATA_SERVER_//;s/_/./g;s/-/+/g'
+}
+
+prepare() {
+  mkdir build
+  cd $pkgname
+}
+
+build() {
+  cd build
+  cmake ../$pkgname -G Ninja \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIBEXEC_INSTALL_DIR=/usr/lib \
+-DSYSCONF_INSTALL_DIR=/etc \
+-DENABLE_INTROSPECTION=ON \
+-DENABLE_VALA_BINDINGS=ON \
+-DENABLE_UOA=OFF \
+-DENABLE_GTK_DOC=ON \
+-DWITH_PHONENUMBER=ON
+  cmake --build .
+}
+
+check() {
+  # libedata-book tests fail because they try to
+  # mkdir /usr/lib/evolution-data-server/camel-providers
+  cmake --build build --target test || :
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --build build --target install
+}


[arch-commits] Commit in evince/repos/testing-x86_64 (PKGBUILD PKGBUILD)

2018-09-08 Thread Jan Steffens via arch-commits
Date: Sunday, September 9, 2018 @ 00:26:30
  Author: heftig
Revision: 334167

archrelease: copy trunk to testing-x86_64

Added:
  evince/repos/testing-x86_64/PKGBUILD
(from rev 334166, evince/trunk/PKGBUILD)
Deleted:
  evince/repos/testing-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-09-09 00:26:22 UTC (rev 334166)
+++ PKGBUILD2018-09-09 00:26:30 UTC (rev 334167)
@@ -1,60 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Maintainer: Jan de Groot 
-
-pkgname=evince
-pkgver=3.30.0
-pkgrel=2
-pkgdesc="Document viewer (PDF, Postscript, djvu, tiff, dvi, XPS, SyncTex 
support with gedit, comics books (cbr,cbz,cb7 and cbt))"
-url="https://wiki.gnome.org/Apps/Evince;
-arch=(x86_64)
-license=(GPL)
-depends=(gtk3 libgxps libspectre gsfonts poppler-glib djvulibre t1lib dconf 
libsecret libsynctex
- gsettings-desktop-schemas gnome-desktop libarchive 
gst-plugins-base-libs gspell)
-makedepends=(itstool libnautilus-extension texlive-bin gobject-introspection 
intltool docbook-xsl
- python gtk-doc git gnome-common)
-optdepends=('texlive-bin: DVI support'
-'gvfs: bookmark support and session saving')
-groups=(gnome)
-options=('!emptydirs')
-_commit=bfe177e42b460350893ce89c0f7a3ceaaf2953dc  # tags/3.30.0^0
-source=("git+https://gitlab.gnome.org/GNOME/evince.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  NOCONFIGURE=1 ./autogen.sh
-}
-  
-build() {
-  cd $pkgname
-
-  BROWSER_PLUGIN_DIR=/usr/lib/epiphany/plugins \
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---libexecdir=/usr/lib/$pkgname \
---disable-static \
---enable-compile-warnings=minimum \
---enable-introspection \
---enable-nautilus \
---enable-pdf \
---enable-ps \
---enable-tiff \
---enable-djvu \
---enable-dvi \
---enable-t1lib \
---enable-comics \
---enable-gtk-doc \
---enable-multimedia \
---disable-schemas-compile
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-}

Copied: evince/repos/testing-x86_64/PKGBUILD (from rev 334166, 
evince/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-09-09 00:26:30 UTC (rev 334167)
@@ -0,0 +1,60 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Maintainer: Jan de Groot 
+
+pkgname=evince
+pkgver=3.30.0+8+g238f8ee6
+pkgrel=1
+pkgdesc="Document viewer (PDF, Postscript, djvu, tiff, dvi, XPS, SyncTex 
support with gedit, comics books (cbr,cbz,cb7 and cbt))"
+url="https://wiki.gnome.org/Apps/Evince;
+arch=(x86_64)
+license=(GPL)
+depends=(gtk3 libgxps libspectre gsfonts poppler-glib djvulibre t1lib dconf 
libsecret libsynctex
+ gsettings-desktop-schemas gnome-desktop libarchive 
gst-plugins-base-libs gspell)
+makedepends=(itstool libnautilus-extension texlive-bin gobject-introspection 
intltool docbook-xsl
+ python gtk-doc git gnome-common)
+optdepends=('texlive-bin: DVI support'
+'gvfs: bookmark support and session saving')
+groups=(gnome)
+options=('!emptydirs')
+_commit=238f8ee6a00dc8e7a593172d5a1e2f5dd41f09ed  # master
+source=("git+https://gitlab.gnome.org/GNOME/evince.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+  
+build() {
+  cd $pkgname
+
+  BROWSER_PLUGIN_DIR=/usr/lib/epiphany/plugins \
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--libexecdir=/usr/lib/$pkgname \
+--disable-static \
+--enable-compile-warnings=minimum \
+--enable-introspection \
+--enable-nautilus \
+--enable-pdf \
+--enable-ps \
+--enable-tiff \
+--enable-djvu \
+--enable-dvi \
+--enable-t1lib \
+--enable-comics \
+--enable-gtk-doc \
+--enable-multimedia \
+--disable-schemas-compile
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in gpaste/repos/testing-x86_64 (PKGBUILD PKGBUILD)

2018-09-08 Thread Jan Steffens via arch-commits
Date: Sunday, September 9, 2018 @ 00:26:39
  Author: heftig
Revision: 334168

archrelease: copy trunk to testing-x86_64

Added:
  gpaste/repos/testing-x86_64/PKGBUILD
(from rev 334167, gpaste/trunk/PKGBUILD)
Deleted:
  gpaste/repos/testing-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-09-09 00:26:30 UTC (rev 334167)
+++ PKGBUILD2018-09-09 00:26:39 UTC (rev 334168)
@@ -1,44 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=gpaste
-pkgver=3.28.2+5+g8604a34e
-pkgrel=1
-pkgdesc="Clipboard management system"
-url="http://www.imagination-land.org/tags/GPaste.html;
-license=(BSD)
-arch=(x86_64)
-depends=(gtk3)
-makedepends=(intltool vala appstream-glib gobject-introspection gnome-shell 
gnome-control-center git)
-optdepends=("wgetpaste: Upload clipboard contents")
-_commit=8604a34ec6109b32df5242de4fbfa6be9df71bb2  # gpaste-3.30
-source=("git+https://github.com/keruspe/gpaste#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/^v//;s/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd $pkgname
-  ./configure --prefix=/usr --libexecdir=/usr/lib --sysconfdir=/etc \
---enable-vala
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-check() {
-  cd $pkgname
-  make check
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-  install -Dt "$pkgdir/usr/share/licenses/$pkgname" COPYING
-}

Copied: gpaste/repos/testing-x86_64/PKGBUILD (from rev 334167, 
gpaste/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-09-09 00:26:39 UTC (rev 334168)
@@ -0,0 +1,44 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=gpaste
+pkgver=3.30.0
+pkgrel=1
+pkgdesc="Clipboard management system"
+url="http://www.imagination-land.org/tags/GPaste.html;
+license=(BSD)
+arch=(x86_64)
+depends=(gtk3)
+makedepends=(intltool vala appstream-glib gobject-introspection gnome-shell 
gnome-control-center git)
+optdepends=("wgetpaste: Upload clipboard contents")
+_commit=56327893b0679af225ba4e169eead9f54c009dc8  # tags/v3.30.0^0
+source=("git+https://github.com/keruspe/gpaste#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^v//;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr --libexecdir=/usr/lib --sysconfdir=/etc \
+--enable-vala
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+check() {
+  cd $pkgname
+  make check
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+  install -Dt "$pkgdir/usr/share/licenses/$pkgname" COPYING
+}


[arch-commits] Commit in devhelp/repos/testing-x86_64 (PKGBUILD PKGBUILD)

2018-09-08 Thread Jan Steffens via arch-commits
Date: Sunday, September 9, 2018 @ 00:26:22
  Author: heftig
Revision: 334166

archrelease: copy trunk to testing-x86_64

Added:
  devhelp/repos/testing-x86_64/PKGBUILD
(from rev 334165, devhelp/trunk/PKGBUILD)
Deleted:
  devhelp/repos/testing-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-09-09 00:26:10 UTC (rev 334165)
+++ PKGBUILD2018-09-09 00:26:22 UTC (rev 334166)
@@ -1,39 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-# Contributor: Link Dupont 
-
-pkgname=devhelp
-pkgver=3.30.0+40+g7c92e1b3
-pkgrel=1
-pkgdesc="API documentation browser for GNOME"
-arch=(x86_64)
-license=(GPL)
-url="https://wiki.gnome.org/Apps/Devhelp;
-depends=(webkit2gtk)
-makedepends=(gtk-doc git appstream-glib gobject-introspection meson yelp-tools)
-groups=(gnome-extra)
-_commit=7c92e1b3f64915eb2245aae7a41588cc80ff54e1  # master
-source=("git+https://gitlab.gnome.org/GNOME/devhelp.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-}
-
-build() {
-  arch-meson $pkgname build -D gtk_doc=true
-  ninja -C build
-}
-
-check() {
-  meson test -C build
-}
-
-package() {
-  DESTDIR="$pkgdir" meson install -C build
-}

Copied: devhelp/repos/testing-x86_64/PKGBUILD (from rev 334165, 
devhelp/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-09-09 00:26:22 UTC (rev 334166)
@@ -0,0 +1,39 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+# Contributor: Link Dupont 
+
+pkgname=devhelp
+pkgver=3.30.0+40+g7c92e1b3
+pkgrel=2
+pkgdesc="API documentation browser for GNOME"
+arch=(x86_64)
+license=(GPL)
+url="https://wiki.gnome.org/Apps/Devhelp;
+depends=(webkit2gtk)
+makedepends=(gtk-doc git appstream-glib gobject-introspection meson yelp-tools)
+groups=(gnome-extra)
+_commit=7c92e1b3f64915eb2245aae7a41588cc80ff54e1  # master
+source=("git+https://gitlab.gnome.org/GNOME/devhelp.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+}
+
+build() {
+  arch-meson $pkgname build -D gtk_doc=true
+  ninja -C build
+}
+
+check() {
+  meson test -C build
+}
+
+package() {
+  DESTDIR="$pkgdir" meson install -C build
+}


[arch-commits] Commit in libdazzle/repos/testing-x86_64 (PKGBUILD PKGBUILD)

2018-09-08 Thread Jan Steffens via arch-commits
Date: Sunday, September 9, 2018 @ 00:26:10
  Author: heftig
Revision: 334165

archrelease: copy trunk to testing-x86_64

Added:
  libdazzle/repos/testing-x86_64/PKGBUILD
(from rev 334164, libdazzle/trunk/PKGBUILD)
Deleted:
  libdazzle/repos/testing-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-09-09 00:26:02 UTC (rev 334164)
+++ PKGBUILD2018-09-09 00:26:10 UTC (rev 334165)
@@ -1,34 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Maintainer: Jan de Groot 
-
-pkgname=libdazzle
-pkgver=3.30.0
-pkgrel=1
-pkgdesc="A library to delight your users with fancy features"
-url="https://gitlab.gnome.org/GNOME/libdazzle;
-arch=(x86_64)
-license=(LGPL)
-depends=(gtk3)
-makedepends=(git meson vala gobject-introspection gtk-doc)
-checkdepends=(xorg-server-xvfb)
-_commit=3487f60c4d430861db41e8c55fe52ec10788eaa0  # tags/3.30.0^0
-source=("git+https://gitlab.gnome.org/GNOME/libdazzle.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-build() {
-  arch-meson $pkgname build -D enable_gtk_doc=true
-  ninja -C build
-}
-
-check() {
-  xvfb-run dbus-run-session meson test -C build
-}
-
-package() {
-  DESTDIR="$pkgdir" meson install -C build
-}

Copied: libdazzle/repos/testing-x86_64/PKGBUILD (from rev 334164, 
libdazzle/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-09-09 00:26:10 UTC (rev 334165)
@@ -0,0 +1,34 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Maintainer: Jan de Groot 
+
+pkgname=libdazzle
+pkgver=3.30.0
+pkgrel=2
+pkgdesc="A library to delight your users with fancy features"
+url="https://gitlab.gnome.org/GNOME/libdazzle;
+arch=(x86_64)
+license=(LGPL)
+depends=(gtk3)
+makedepends=(git meson vala gobject-introspection gtk-doc)
+checkdepends=(xorg-server-xvfb)
+_commit=3487f60c4d430861db41e8c55fe52ec10788eaa0  # tags/3.30.0^0
+source=("git+https://gitlab.gnome.org/GNOME/libdazzle.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+build() {
+  arch-meson $pkgname build -D enable_gtk_doc=true
+  ninja -C build
+}
+
+check() {
+  xvfb-run dbus-run-session meson test -C build
+}
+
+package() {
+  DESTDIR="$pkgdir" meson install -C build
+}


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

2018-09-08 Thread Jan Steffens via arch-commits
Date: Sunday, September 9, 2018 @ 00:28:23
  Author: heftig
Revision: 334170

11.0.2+7+ga4ddb0ad-1

Modified:
  gucharmap/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-09-09 00:27:23 UTC (rev 334169)
+++ PKGBUILD2018-09-09 00:28:23 UTC (rev 334170)
@@ -2,7 +2,7 @@
 # Contributor: Jan De Groot 
 
 pkgname=gucharmap
-pkgver=11.0.2+5+gda0fec68
+pkgver=11.0.2+7+ga4ddb0ad
 pkgrel=1
 pkgdesc="Gnome Unicode Charmap"
 url="https://wiki.gnome.org/Apps/Gucharmap;
@@ -11,7 +11,7 @@
 depends=(dconf gtk3)
 makedepends=(gtk-doc intltool gobject-introspection itstool docbook-xsl
  python2 appdata-tools unicode-character-database unzip 
gnome-common git)
-_commit=da0fec68babd4525581f93875a4735c25437aa78  # master
+_commit=a4ddb0ad210018c3cc749115b7ec39e317461bd1  # master
 source=("git+https://gitlab.gnome.org/GNOME/gucharmap.git#commit=$_commit;)
 sha256sums=('SKIP')
 


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

2018-09-08 Thread Jan Steffens via arch-commits
Date: Sunday, September 9, 2018 @ 00:27:23
  Author: heftig
Revision: 334169

3.28.1-3

Modified:
  gnome-todo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-09-09 00:26:39 UTC (rev 334168)
+++ PKGBUILD2018-09-09 00:27:23 UTC (rev 334169)
@@ -3,7 +3,7 @@
 
 pkgname=gnome-todo
 pkgver=3.28.1
-pkgrel=2
+pkgrel=3
 pkgdesc="Task manager for GNOME"
 url="https://wiki.gnome.org/Apps/Todo;
 arch=(x86_64)


[arch-commits] Commit in sushi/repos/testing-x86_64 (PKGBUILD PKGBUILD)

2018-09-08 Thread Jan Steffens via arch-commits
Date: Sunday, September 9, 2018 @ 00:34:59
  Author: heftig
Revision: 334175

archrelease: copy trunk to testing-x86_64

Added:
  sushi/repos/testing-x86_64/PKGBUILD
(from rev 334174, sushi/trunk/PKGBUILD)
Deleted:
  sushi/repos/testing-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-09-09 00:34:41 UTC (rev 334174)
+++ PKGBUILD2018-09-09 00:34:59 UTC (rev 334175)
@@ -1,43 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Ionut Biru 
-
-pkgname=sushi
-pkgver=3.30.0
-pkgrel=1
-pkgdesc="A quick previewer for Nautilus"
-url="https://gitlab.gnome.org/GNOME/sushi;
-arch=(x86_64)
-license=(GPL2)
-groups=(gnome)
-depends=(clutter-gtk clutter-gst gjs libmusicbrainz5 webkit2gtk gtksourceview3 
evince)
-optdepends=('libreoffice: OpenDocument formats')
-makedepends=(intltool gobject-introspection git)
-_commit=9178916157fa2cf023610b4695486b570cabdb8a  # tags/3.30.0^0
-source=("git+https://gitlab.gnome.org/GNOME/sushi.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  mkdir m4
-  intltoolize
-  autoreconf -fvi
-}
-
-build() {
-  cd $pkgname
-  ./configure --prefix=/usr --libexecdir=/usr/lib
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: sushi/repos/testing-x86_64/PKGBUILD (from rev 334174, 
sushi/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-09-09 00:34:59 UTC (rev 334175)
@@ -0,0 +1,43 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Ionut Biru 
+
+pkgname=sushi
+pkgver=3.30.0
+pkgrel=2
+pkgdesc="A quick previewer for Nautilus"
+url="https://gitlab.gnome.org/GNOME/sushi;
+arch=(x86_64)
+license=(GPL2)
+groups=(gnome)
+depends=(clutter-gtk clutter-gst gjs libmusicbrainz5 webkit2gtk gtksourceview3 
evince)
+optdepends=('libreoffice: OpenDocument formats')
+makedepends=(intltool gobject-introspection git)
+_commit=9178916157fa2cf023610b4695486b570cabdb8a  # tags/3.30.0^0
+source=("git+https://gitlab.gnome.org/GNOME/sushi.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  mkdir m4
+  intltoolize
+  autoreconf -fvi
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr --libexecdir=/usr/lib
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in vte3/repos/testing-x86_64 (PKGBUILD PKGBUILD)

2018-09-08 Thread Jan Steffens via arch-commits
Date: Sunday, September 9, 2018 @ 00:35:18
  Author: heftig
Revision: 334176

archrelease: copy trunk to testing-x86_64

Added:
  vte3/repos/testing-x86_64/PKGBUILD
(from rev 334175, vte3/trunk/PKGBUILD)
Deleted:
  vte3/repos/testing-x86_64/PKGBUILD

--+
 PKGBUILD |  118 ++---
 1 file changed, 59 insertions(+), 59 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-09-09 00:34:59 UTC (rev 334175)
+++ PKGBUILD2018-09-09 00:35:18 UTC (rev 334176)
@@ -1,59 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Ionut Biru 
-
-pkgbase=vte3
-pkgname=(vte3 vte-common)
-pkgver=0.54.0+8+g9d2802b4
-pkgrel=1
-pkgdesc="Virtual Terminal Emulator widget for use with GTK3"
-url="https://wiki.gnome.org/Apps/Terminal/VTE;
-arch=(x86_64)
-license=(LGPL)
-options=(!emptydirs)
-depends=(gtk3 pcre2 gnutls)
-makedepends=(intltool gobject-introspection vala glade git gtk-doc gperf)
-_commit=9d2802b49664a67369fdeaf5c371f9c6ab40f121  # vte-0-54
-source=("git+https://gitlab.gnome.org/GNOME/vte.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd vte
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd vte
-
-  # https://bugzilla.gnome.org/show_bug.cgi?id=778926
-  git cherry-pick -n 809e79770b4dea34d64574710ce429a86855fdb2
-
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd vte
-
-  ./configure --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/lib/vte \
---localstatedir=/var --disable-static --enable-introspection 
--enable-glade-catalogue --enable-gtk-doc
-
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-package_vte3(){
-  depends+=(vte-common)
-
-  cd vte
-  make DESTDIR="$pkgdir" install
-
-  rm "$pkgdir"/etc/profile.d/vte.sh
-}
-
-package_vte-common() {
-  pkgdesc="Common files used by vte and vte3"
-  depends=(sh)
-
-  cd vte
-  install -Dm644 src/vte.sh "$pkgdir"/etc/profile.d/vte.sh
-}

Copied: vte3/repos/testing-x86_64/PKGBUILD (from rev 334175, 
vte3/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-09-09 00:35:18 UTC (rev 334176)
@@ -0,0 +1,59 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Ionut Biru 
+
+pkgbase=vte3
+pkgname=(vte3 vte-common)
+pkgver=0.54.0+9+gdace9988
+pkgrel=1
+pkgdesc="Virtual Terminal Emulator widget for use with GTK3"
+url="https://wiki.gnome.org/Apps/Terminal/VTE;
+arch=(x86_64)
+license=(LGPL)
+options=(!emptydirs)
+depends=(gtk3 pcre2 gnutls)
+makedepends=(intltool gobject-introspection vala glade git gtk-doc gperf)
+_commit=dace9988710869d0a3a02e6a1f3904f7d2289bf5  # vte-0-54
+source=("git+https://gitlab.gnome.org/GNOME/vte.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd vte
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd vte
+
+  # https://bugzilla.gnome.org/show_bug.cgi?id=778926
+  git cherry-pick -n 809e79770b4dea34d64574710ce429a86855fdb2
+
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd vte
+
+  ./configure --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/lib/vte \
+--localstatedir=/var --disable-static --enable-introspection 
--enable-glade-catalogue --enable-gtk-doc
+
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+package_vte3(){
+  depends+=(vte-common)
+
+  cd vte
+  make DESTDIR="$pkgdir" install
+
+  rm "$pkgdir"/etc/profile.d/vte.sh
+}
+
+package_vte-common() {
+  pkgdesc="Common files used by vte and vte3"
+  depends=(sh)
+
+  cd vte
+  install -Dm644 src/vte.sh "$pkgdir"/etc/profile.d/vte.sh
+}


[arch-commits] Commit in gnome-boxes/repos/community-testing-x86_64 (4 files)

2018-09-08 Thread Jan Steffens via arch-commits
Date: Sunday, September 9, 2018 @ 00:35:10
  Author: heftig
Revision: 378840

archrelease: copy trunk to community-testing-x86_64

Added:
  gnome-boxes/repos/community-testing-x86_64/PKGBUILD
(from rev 378839, gnome-boxes/trunk/PKGBUILD)
  gnome-boxes/repos/community-testing-x86_64/rpath.diff
(from rev 378839, gnome-boxes/trunk/rpath.diff)
Deleted:
  gnome-boxes/repos/community-testing-x86_64/PKGBUILD
  gnome-boxes/repos/community-testing-x86_64/rpath.diff

+
 PKGBUILD   |  110 +--
 rpath.diff |   24 ++--
 2 files changed, 67 insertions(+), 67 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-09-09 00:31:50 UTC (rev 378839)
+++ PKGBUILD2018-09-09 00:35:10 UTC (rev 378840)
@@ -1,55 +0,0 @@
-# Maintainer: Balló György 
-# Contributor: Stefano Facchini 
-
-pkgname=gnome-boxes
-pkgver=3.30.0
-pkgrel=2
-pkgdesc="Simple GNOME application to access remote or virtual systems"
-arch=('x86_64')
-url="https://wiki.gnome.org/Boxes;
-license=('LGPL')
-groups=('gnome')
-depends=('cdrtools' 'gtk-vnc' 'libarchive' 'libgovirt' 'libgudev' 'libosinfo' 
'libsecret'
- 'libvirt-glib' 'mtools' 'qemu' 'spice-gtk3' 'tracker' 'webkit2gtk' 
'freerdp')
-makedepends=('git' 'gobject-introspection' 'itstool' 'meson' 'spice-protocol' 
'vala')
-_commit=1070fca80a43472576b5641935831f8d21d53341  # tags/v3.30.0^0
-source=("git+https://gitlab.gnome.org/GNOME/gnome-boxes.git#commit=$_commit;
-"git+https://gitlab.gnome.org/GNOME/gtk-frdp.git;
-"git+https://gitlab.gnome.org/felipeborges/libovf-glib.git;
-rpath.diff)
-sha256sums=('SKIP'
-'SKIP'
-'SKIP'
-'5d8b03dab802794b4f416504434212cfc8e6908f66d0304f45566219e4ae7748')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/^v//;s/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  git submodule init
-  git config --local submodule.subprojects/gtk-frdp.url "$srcdir/gtk-frdp"
-  git config --local submodule.subprojects/libovf-glib.url 
"$srcdir/libovf-glib"
-  git submodule update
-
-  # disable broken tests
-  git -C subprojects/libovf-glib cherry-pick -n 
4bef85e97c636ac4747cb815cf12a0591271b218
-
-  # fix linking
-  git apply -3 ../rpath.diff
-}
-
-build() {
-  arch-meson $pkgname build
-  ninja -C build
-}
-
-check() {
-  meson test -C build
-}
-
-package() {
-  DESTDIR="$pkgdir" meson install -C build
-}

Copied: gnome-boxes/repos/community-testing-x86_64/PKGBUILD (from rev 378839, 
gnome-boxes/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-09-09 00:35:10 UTC (rev 378840)
@@ -0,0 +1,55 @@
+# Maintainer: Balló György 
+# Contributor: Stefano Facchini 
+
+pkgname=gnome-boxes
+pkgver=3.30.0
+pkgrel=3
+pkgdesc="Simple GNOME application to access remote or virtual systems"
+arch=('x86_64')
+url="https://wiki.gnome.org/Boxes;
+license=('LGPL')
+groups=('gnome')
+depends=('cdrtools' 'gtk-vnc' 'libarchive' 'libgovirt' 'libgudev' 'libosinfo' 
'libsecret'
+ 'libvirt-glib' 'mtools' 'qemu' 'spice-gtk3' 'tracker' 'webkit2gtk' 
'freerdp')
+makedepends=('git' 'gobject-introspection' 'itstool' 'meson' 'spice-protocol' 
'vala')
+_commit=1070fca80a43472576b5641935831f8d21d53341  # tags/v3.30.0^0
+source=("git+https://gitlab.gnome.org/GNOME/gnome-boxes.git#commit=$_commit;
+"git+https://gitlab.gnome.org/GNOME/gtk-frdp.git;
+"git+https://gitlab.gnome.org/felipeborges/libovf-glib.git;
+rpath.diff)
+sha256sums=('SKIP'
+'SKIP'
+'SKIP'
+'5d8b03dab802794b4f416504434212cfc8e6908f66d0304f45566219e4ae7748')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^v//;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  git submodule init
+  git config --local submodule.subprojects/gtk-frdp.url "$srcdir/gtk-frdp"
+  git config --local submodule.subprojects/libovf-glib.url 
"$srcdir/libovf-glib"
+  git submodule update
+
+  # disable broken tests
+  git -C subprojects/libovf-glib cherry-pick -n 
4bef85e97c636ac4747cb815cf12a0591271b218
+
+  # fix linking
+  git apply -3 ../rpath.diff
+}
+
+build() {
+  arch-meson $pkgname build
+  ninja -C build
+}
+
+check() {
+  meson test -C build
+}
+
+package() {
+  DESTDIR="$pkgdir" meson install -C build
+}

Deleted: rpath.diff
===
--- rpath.diff  2018-09-09 00:31:50 UTC (rev 378839)
+++ rpath.diff  2018-09-09 00:35:10 UTC (rev 378840)
@@ -1,12 +0,0 @@
-diff --git i/src/meson.build w/src/meson.build
-index 000dbf86..787aa2d0 100644
 i/src/meson.build
-+++ w/src/meson.build
-@@ -202,6 +202,7 @@ executable ('gnome-boxes', vala_sources + resources,
- c_args : c_args,
- dependencies: dependencies,
- link_with: libcommon,
-+install_rpath: join_paths (get_option ('prefix'), 

[arch-commits] Commit in mutter/repos/testing-x86_64 (4 files)

2018-09-08 Thread Jan Steffens via arch-commits
Date: Sunday, September 9, 2018 @ 00:42:03
  Author: heftig
Revision: 334179

archrelease: copy trunk to testing-x86_64

Added:
  mutter/repos/testing-x86_64/PKGBUILD
(from rev 334178, mutter/trunk/PKGBUILD)
  mutter/repos/testing-x86_64/startup-notification.patch
(from rev 334178, mutter/trunk/startup-notification.patch)
Deleted:
  mutter/repos/testing-x86_64/PKGBUILD
  mutter/repos/testing-x86_64/startup-notification.patch

+
 PKGBUILD   |  114 +--
 startup-notification.patch |   90 -
 2 files changed, 102 insertions(+), 102 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-09-09 00:41:47 UTC (rev 334178)
+++ PKGBUILD2018-09-09 00:42:03 UTC (rev 334179)
@@ -1,57 +0,0 @@
-# $Id: PKGBUILD 330962 2018-08-06 10:26:11Z heftig $
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Maintainer: Ionut Biru 
-# Contributor: Michael Kanis 
-
-pkgname=mutter
-pkgver=3.30.0
-pkgrel=1
-pkgdesc="A window manager for GNOME"
-url="https://gitlab.gnome.org/GNOME/mutter;
-arch=(x86_64)
-license=(GPL)
-depends=(dconf gobject-introspection-runtime gsettings-desktop-schemas 
libcanberra
- startup-notification zenity libsm gnome-desktop upower 
libxkbcommon-x11
- gnome-settings-daemon libgudev libinput pipewire)
-makedepends=(intltool gobject-introspection git egl-wayland)
-groups=(gnome)
-_commit=34f5be726dbd90ad6c494cda5eeff7bd68fd83a1  # tags/3.30.0^0
-source=("git+https://gitlab.gnome.org/GNOME/mutter.git#commit=$_commit;
-startup-notification.patch)
-sha256sums=('SKIP'
-'5a35ca4794fc361219658d9fae24a3ca21a365f2cb1901702961ac869c759366')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-
-  # https://bugs.archlinux.org/task/51940
-  # As of 2018-05-08: Still needed, according to fmuellner
-  patch -Np1 -i ../startup-notification.patch
-
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd $pkgname
-
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
-  --libexecdir=/usr/lib --disable-static \
-  --disable-schemas-compile --enable-compile-warnings=minimum \
-  --enable-gtk-doc --enable-egl-device --enable-remote-desktop
-
-  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
-  sed -e 's/ -shared / -Wl,-O1,--as-needed\0/g' \
-  -i {.,cogl,clutter}/libtool
-
-  make
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-}

Copied: mutter/repos/testing-x86_64/PKGBUILD (from rev 334178, 
mutter/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-09-09 00:42:03 UTC (rev 334179)
@@ -0,0 +1,57 @@
+# $Id: PKGBUILD 330962 2018-08-06 10:26:11Z heftig $
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Maintainer: Ionut Biru 
+# Contributor: Michael Kanis 
+
+pkgname=mutter
+pkgver=3.30.0
+pkgrel=2
+pkgdesc="A window manager for GNOME"
+url="https://gitlab.gnome.org/GNOME/mutter;
+arch=(x86_64)
+license=(GPL)
+depends=(dconf gobject-introspection-runtime gsettings-desktop-schemas 
libcanberra
+ startup-notification zenity libsm gnome-desktop upower 
libxkbcommon-x11
+ gnome-settings-daemon libgudev libinput pipewire)
+makedepends=(intltool gobject-introspection git egl-wayland)
+groups=(gnome)
+_commit=34f5be726dbd90ad6c494cda5eeff7bd68fd83a1  # tags/3.30.0^0
+source=("git+https://gitlab.gnome.org/GNOME/mutter.git#commit=$_commit;
+startup-notification.patch)
+sha256sums=('SKIP'
+'5a35ca4794fc361219658d9fae24a3ca21a365f2cb1901702961ac869c759366')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+
+  # https://bugs.archlinux.org/task/51940
+  # As of 2018-05-08: Still needed, according to fmuellner
+  patch -Np1 -i ../startup-notification.patch
+
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+  --libexecdir=/usr/lib --disable-static \
+  --disable-schemas-compile --enable-compile-warnings=minimum \
+  --enable-gtk-doc --enable-egl-device --enable-remote-desktop
+
+  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -e 's/ -shared / -Wl,-O1,--as-needed\0/g' \
+  -i {.,cogl,clutter}/libtool
+
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}

Deleted: startup-notification.patch
===
--- startup-notification.patch  2018-09-09 00:41:47 UTC (rev 334178)
+++ startup-notification.patch  2018-09-09 00:42:03 UTC (rev 334179)
@@ -1,45 +0,0 @@
-From 4ed430b4ef3013c96fa56cdc57b925b42d20ead9 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Florian=20M=C3=BCllner?= 
-Date: Thu, 20 Oct 2016 18:00:04 +0200
-Subject: [PATCH] gtk-shell: Work 

[arch-commits] Commit in gnome-builder/repos/testing-x86_64 (PKGBUILD PKGBUILD)

2018-09-08 Thread Jan Steffens via arch-commits
Date: Sunday, September 9, 2018 @ 00:42:10
  Author: heftig
Revision: 334180

archrelease: copy trunk to testing-x86_64

Added:
  gnome-builder/repos/testing-x86_64/PKGBUILD
(from rev 334179, gnome-builder/trunk/PKGBUILD)
Deleted:
  gnome-builder/repos/testing-x86_64/PKGBUILD

--+
 PKGBUILD |  104 ++---
 1 file changed, 52 insertions(+), 52 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-09-09 00:42:03 UTC (rev 334179)
+++ PKGBUILD2018-09-09 00:42:10 UTC (rev 334180)
@@ -1,52 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=gnome-builder
-pkgver=3.30.0
-pkgrel=1
-pkgdesc="An IDE for writing GNOME-based software"
-url="https://wiki.gnome.org/Apps/Builder;
-arch=(x86_64)
-license=(GPL3)
-depends=(gtksourceview4 devhelp libgit2-glib gjs python-gobject clang 
desktop-file-utils
- ctags libpeas vte3 vala python-jedi autoconf-archive sysprof flatpak 
gspell libdazzle
- template-glib jsonrpc-glib python-sphinx webkit2gtk)
-makedepends=(intltool llvm gobject-introspection gtk-doc yelp-tools 
appstream-glib vala git
- mm-common meson)
-checkdepends=(xorg-server-xvfb)
-optdepends=('gnome-code-assistance: Legacy assistance services')
-groups=(gnome-extra)
-_commit=81a9a8235f3c9818147cd1a710ac870bed4c5938  # tags/3.30.0^0
-source=("git+https://gitlab.gnome.org/GNOME/gnome-builder.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/^GNOME_BUILDER_//;s/_/./g;s/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  git cherry-pick -n ba4d103
-}
-
-build() {
-  arch-meson $pkgname build \
---buildtype debugoptimized \
--D with_docs=true \
--D with_help=true \
--D with_editorconfig=true \
--D with_webkit=true \
--D with_vapi=true
-  ninja -C build
-}
-
-check() {
-  # some tests need an installed gnome-builder
-  xvfb-run meson test -C build || :
-}
-
-package() {
-  DESTDIR="$pkgdir" meson install -C build
-}
-
-# vim:set sw=2 et:

Copied: gnome-builder/repos/testing-x86_64/PKGBUILD (from rev 334179, 
gnome-builder/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-09-09 00:42:10 UTC (rev 334180)
@@ -0,0 +1,52 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=gnome-builder
+pkgver=3.30.0
+pkgrel=2
+pkgdesc="An IDE for writing GNOME-based software"
+url="https://wiki.gnome.org/Apps/Builder;
+arch=(x86_64)
+license=(GPL3)
+depends=(gtksourceview4 devhelp libgit2-glib gjs python-gobject clang 
desktop-file-utils
+ ctags libpeas vte3 vala python-jedi autoconf-archive sysprof flatpak 
gspell libdazzle
+ template-glib jsonrpc-glib python-sphinx webkit2gtk)
+makedepends=(intltool llvm gobject-introspection gtk-doc yelp-tools 
appstream-glib vala git
+ mm-common meson)
+checkdepends=(xorg-server-xvfb)
+optdepends=('gnome-code-assistance: Legacy assistance services')
+groups=(gnome-extra)
+_commit=81a9a8235f3c9818147cd1a710ac870bed4c5938  # tags/3.30.0^0
+source=("git+https://gitlab.gnome.org/GNOME/gnome-builder.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^GNOME_BUILDER_//;s/_/./g;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  git cherry-pick -n ba4d103
+}
+
+build() {
+  arch-meson $pkgname build \
+--buildtype debugoptimized \
+-D with_docs=true \
+-D with_help=true \
+-D with_editorconfig=true \
+-D with_webkit=true \
+-D with_vapi=true
+  ninja -C build
+}
+
+check() {
+  # some tests need an installed gnome-builder
+  xvfb-run meson test -C build || :
+}
+
+package() {
+  DESTDIR="$pkgdir" meson install -C build
+}
+
+# vim:set sw=2 et:


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

2018-09-08 Thread Jan Steffens via arch-commits
Date: Sunday, September 9, 2018 @ 00:41:47
  Author: heftig
Revision: 334178

3.30.0-2

Modified:
  gnome-builder/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-09-09 00:39:15 UTC (rev 334177)
+++ PKGBUILD2018-09-09 00:41:47 UTC (rev 334178)
@@ -2,7 +2,7 @@
 
 pkgname=gnome-builder
 pkgver=3.30.0
-pkgrel=1
+pkgrel=2
 pkgdesc="An IDE for writing GNOME-based software"
 url="https://wiki.gnome.org/Apps/Builder;
 arch=(x86_64)


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

2018-09-08 Thread Eli Schwartz via arch-commits
Date: Sunday, September 9, 2018 @ 02:11:01
  Author: eschwartz
Revision: 378843

archrelease: copy trunk to community-staging-x86_64

Added:
  calibre/repos/community-staging-x86_64/PKGBUILD
(from rev 378842, calibre/trunk/PKGBUILD)
  calibre/repos/community-staging-x86_64/podofo_0.9.6.patch
(from rev 378842, calibre/trunk/podofo_0.9.6.patch)
Deleted:
  calibre/repos/community-staging-x86_64/PKGBUILD
  calibre/repos/community-staging-x86_64/podofo_0.9.6.patch

+
 PKGBUILD   |  185 -
 podofo_0.9.6.patch |  228 ++-
 2 files changed, 298 insertions(+), 115 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-09-09 02:10:43 UTC (rev 378842)
+++ PKGBUILD2018-09-09 02:11:01 UTC (rev 378843)
@@ -1,93 +0,0 @@
-# Maintainer: Jelle van der Waa 
-# Maintainer: Eli Schwartz 
-# Contributor: Daniel Wallace 
-# Contributor: Giovanni Scafora 
-# Contributor: Petrov Roman 
-# Contributor: Andrea Fagiani 
-# Contributor: Larry Hajali 
-
-pkgname=calibre
-pkgver=3.31.0
-pkgrel=2
-pkgdesc="Ebook management application"
-arch=('x86_64')
-url="https://calibre-ebook.com/;
-license=('GPL3')
-depends=('python2-six' 'python2-dateutil' 'python2-cssutils' 'python2-dukpy'
- 'python2-mechanize' 'podofo' 'libwmf' 'jxrlib'
- 'chmlib' 'python2-lxml' 'libusbx' 'python2-html5-parser'
- 'python2-pillow' 'shared-mime-info' 'python2-dnspython' 
'python2-msgpack'
- 'python2-pyqt5' 'python2-psutil' 'icu' 'libmtp' 'python2-dbus'
- 'python2-netifaces' 'python2-cssselect' 'python2-apsw' 'qt5-webkit'
- 'qt5-svg' 'python2-regex' 'python2-pygments' 'mtdev' 
'python2-unrardll'
- 'desktop-file-utils' 'gtk-update-icon-cache' 'optipng' 'udisks2')
-makedepends=('qt5-x11extras' 'sip' 'xdg-utils')
-checkdepends=('xorg-server-xvfb')
-optdepends=('ipython2: to use calibre-debug'
-'poppler: required for converting pdf to html'
-)
-source=("https://download.calibre-ebook.com/${pkgver}/calibre-${pkgver}.tar.xz;
-"https://calibre-ebook.com/signatures/${pkgname}-${pkgver}.tar.xz.sig;
-podofo_0.9.6.patch)
-sha256sums=('3c2713a89a186e20d45ea42f2ed6be509fecce880ce6e233e63e6f3a415fe1f5'
-'SKIP'
-'6e5c856b164724ed54bf84b1e592a6aea52d0472874be706fd8b61e88ad73151')
-validpgpkeys=('3CE1780F78DD88DF45194FD706BC317B515ACE7C') # Kovid Goyal (New 
longer key) 
-
-prepare(){
-  cd "${pkgname}-${pkgver}"
-
-  patch -Np1 -i ${srcdir}/podofo_0.9.6.patch
-
-  # Remove unneeded files
-  rm -rf resources/${pkgname}-portable.*
-
-  # Desktop integration (e.g. enforce arch defaults)
-  sed -e "/self.create_uninstaller()/,/os.rmdir(config_dir)/d" \
-  -e "/cc(\['xdg-desktop-menu', 'forceupdate'\])/d" \
-  -e "/cc(\['xdg-mime', 'install', MIME\])/d" \
-  -e "s/'ctc-posml'/'text' not in mt and 'pdf' not in mt and 'xhtml'/" \
-  -e "s/^Name=calibre/Name=Calibre/g" \
-  -i  src/calibre/linux.py
-}
-
-build() {
-  cd "${pkgname}-${pkgver}"
-
-  LANG='en_US.UTF-8' python2 setup.py build
-  LANG='en_US.UTF-8' python2 setup.py gui
-}
-
-check() {
-  cd "${pkgname}-${pkgver}"
-
-  # without xvfb-run this fails with much "Control socket failed to recv(), 
resetting"
-  # ERROR: test_websocket_perf (calibre.srv.tests.web_sockets.WebSocketTest)
-
-  # websocket test fails currently.
-  rm src/calibre/srv/tests/web_sockets.py
-  LANG='en_US.UTF-8' xvfb-run python2 setup.py test
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-
-  install -d "${pkgdir}/usr/share/zsh/site-functions" \
- 
"${pkgdir}"/usr/share/{applications,desktop-directories,icons/hicolor}
-
-  install -Dm644 resources/calibre-mimetypes.xml \
-"${pkgdir}/usr/share/mime/packages/calibre-mimetypes.xml"
-
-  XDG_DATA_DIRS="${pkgdir}/usr/share" LANG='en_US.UTF-8' \
-python2 setup.py install --staging-root="${pkgdir}/usr" --prefix=/usr
-
-  cp -a man-pages/ "${pkgdir}/usr/share/man"
-
-  # Compiling bytecode FS#33392
-  # This is kind of ugly but removes traces of the build root.
-  while read -rd '' _file; do
-_destdir="$(dirname "${_file#${pkgdir}}")"
-python2 -m compileall -d "${_destdir}" "${_file}"
-python2 -O -m compileall -d "${_destdir}" "${_file}"
-  done < <(find "${pkgdir}"/usr/lib/ -name '*.py' -print0)
-}

Copied: calibre/repos/community-staging-x86_64/PKGBUILD (from rev 378842, 
calibre/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-09-09 02:11:01 UTC (rev 378843)
@@ -0,0 +1,92 @@
+# Maintainer: Jelle van der Waa 
+# Maintainer: Eli Schwartz 
+# Contributor: Daniel Wallace 
+# Contributor: Giovanni Scafora 
+# Contributor: Petrov Roman 
+# Contributor: Andrea Fagiani 
+# Contributor: Larry Hajali 
+
+pkgname=calibre
+pkgver=3.31.0
+pkgrel=3
+pkgdesc="Ebook management 

[arch-commits] Commit in calibre/trunk (PKGBUILD podofo_0.9.6.patch)

2018-09-08 Thread Eli Schwartz via arch-commits
Date: Sunday, September 9, 2018 @ 02:10:43
  Author: eschwartz
Revision: 378842

upgpkg: calibre 3.31.0-3

update podofo patch with upstream version
websocket test works for me, re-enabling for now

Modified:
  calibre/trunk/PKGBUILD
  calibre/trunk/podofo_0.9.6.patch

+
 PKGBUILD   |7 -
 podofo_0.9.6.patch |  198 +--
 2 files changed, 194 insertions(+), 11 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-09-09 02:09:52 UTC (rev 378841)
+++ PKGBUILD2018-09-09 02:10:43 UTC (rev 378842)
@@ -8,7 +8,7 @@
 
 pkgname=calibre
 pkgver=3.31.0
-pkgrel=2
+pkgrel=3
 pkgdesc="Ebook management application"
 arch=('x86_64')
 url="https://calibre-ebook.com/;
@@ -31,12 +31,13 @@
 podofo_0.9.6.patch)
 sha256sums=('3c2713a89a186e20d45ea42f2ed6be509fecce880ce6e233e63e6f3a415fe1f5'
 'SKIP'
-'6e5c856b164724ed54bf84b1e592a6aea52d0472874be706fd8b61e88ad73151')
+'4243e18653348aed438e28af7268c40ea6047e4b1d2b091faeaa1351572f7873')
 validpgpkeys=('3CE1780F78DD88DF45194FD706BC317B515ACE7C') # Kovid Goyal (New 
longer key) 
 
 prepare(){
   cd "${pkgname}-${pkgver}"
 
+  # https://bugs.launchpad.net/bugs/1791430
   patch -Np1 -i ${srcdir}/podofo_0.9.6.patch
 
   # Remove unneeded files
@@ -64,8 +65,6 @@
   # without xvfb-run this fails with much "Control socket failed to recv(), 
resetting"
   # ERROR: test_websocket_perf (calibre.srv.tests.web_sockets.WebSocketTest)
 
-  # websocket test fails currently.
-  rm src/calibre/srv/tests/web_sockets.py
   LANG='en_US.UTF-8' xvfb-run python2 setup.py test
 }
 

Modified: podofo_0.9.6.patch
===
--- podofo_0.9.6.patch  2018-09-09 02:09:52 UTC (rev 378841)
+++ podofo_0.9.6.patch  2018-09-09 02:10:43 UTC (rev 378842)
@@ -1,22 +1,206 @@
+From dc130d90cdd257f37037a4699b8be1550efc2b6b Mon Sep 17 00:00:00 2001
+From: Kovid Goyal 
+Date: Sat, 8 Sep 2018 20:51:58 +0530
+Subject: [PATCH 1/3] Fix #1791430 [Podofo ABI breakage in
+ 0.9.6](https://bugs.launchpad.net/calibre/+bug/1791430)
+
+---
+ src/calibre/utils/podofo/doc.cpp | 31 +++
+ 1 file changed, 19 insertions(+), 12 deletions(-)
+
 diff --git a/src/calibre/utils/podofo/doc.cpp 
b/src/calibre/utils/podofo/doc.cpp
-index b33647336c..3d25ac993f 100644
+index b33647336c..58572a688e 100644
 --- a/src/calibre/utils/podofo/doc.cpp
 +++ b/src/calibre/utils/podofo/doc.cpp
-@@ -39,7 +39,7 @@ PDFDoc_load(PDFDoc *self, PyObject *args) {
+@@ -39,7 +39,11 @@ PDFDoc_load(PDFDoc *self, PyObject *args) {
  
  if (PyArg_ParseTuple(args, "s#", , )) {
  try {
--self->doc->Load(buffer, (long)size);
-+self->doc->LoadFromBuffer(buffer, (long)size);
++#if PODOFO_VERSION <= 0x000905
+ self->doc->Load(buffer, (long)size);
++#else
++self->doc->LoadBuffer(buffer, (long)size);
++#endif
  } catch(const PdfError & err) {
  podofo_set_exception(err);
  return NULL;
-@@ -56,7 +56,7 @@ PDFDoc_open(PDFDoc *self, PyObject *args) {
+@@ -56,7 +60,11 @@ PDFDoc_open(PDFDoc *self, PyObject *args) {
  
  if (PyArg_ParseTuple(args, "s", )) {
  try {
--self->doc->Load(fname);
-+self->doc->LoadFromBuffer(fname, (long)strlen(fname));
++#if PODOFO_VERSION <= 0x000905
+ self->doc->Load(fname);
++#else
++self->doc->LoadFromFile(fname);
++#endif
  } catch(const PdfError & err) {
  podofo_set_exception(err);
  return NULL;
+@@ -88,7 +96,7 @@ PDFDoc_save(PDFDoc *self, PyObject *args) {
+ static PyObject *
+ PDFDoc_write(PDFDoc *self, PyObject *args) {
+ PyObject *ans;
+-
++
+ try {
+ PdfRefCountedBuffer buffer(1*1024*1024);
+ PdfOutputDevice out();
+@@ -305,7 +313,7 @@ PDFDoc_set_xmp_metadata(PDFDoc *self, PyObject *args) {
+ long len = 0;
+ PoDoFo::PdfObject *metadata = NULL, *catalog = NULL;
+ PoDoFo::PdfStream *str = NULL;
+-TVecFilters compressed(1); 
++TVecFilters compressed(1);
+ compressed[0] = ePdfFilter_FlateDecode;
+ 
+ if (!PyArg_ParseTuple(args, "s#", , )) return NULL;
+@@ -428,7 +436,7 @@ PDFDoc_setter(PDFDoc *self, PyObject *val, int field) {
+ PdfString *s = NULL;
+ 
+ if (self->doc->GetEncrypted()) s = 
podofo_convert_pystring_single_byte(val);
+-else s = podofo_convert_pystring(val); 
++else s = podofo_convert_pystring(val);
+ if (s == NULL) return -1;
+ 
+ 
+@@ -503,35 +511,35 @@ PDFDoc_producer_setter(PDFDoc *self, PyObject *val, void 
*closure) {
+ }
+ 
+ static PyGetSetDef PDFDoc_getsetters[] = {
+-{(char *)"title", 
++{(char *)"title",
+  (getter)PDFDoc_title_getter, (setter)PDFDoc_title_setter,
+  (char *)"Document title",
+  NULL},
+-{(char *)"author", 
++{(char *)"author",
+  

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

2018-09-08 Thread Kyle Keen via arch-commits
Date: Sunday, September 9, 2018 @ 02:13:17
  Author: kkeen
Revision: 378844

archrelease: copy trunk to community-x86_64

Added:
  keynav/repos/community-x86_64/
  keynav/repos/community-x86_64/PKGBUILD
(from rev 378843, keynav/trunk/PKGBUILD)

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

Copied: keynav/repos/community-x86_64/PKGBUILD (from rev 378843, 
keynav/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2018-09-09 02:13:17 UTC (rev 378844)
@@ -0,0 +1,44 @@
+# Maintainer: Kyle Keen 
+# Contributor: Jan Fader 
+pkgname=keynav
+pkgver=0.20110708.0
+pkgrel=3
+pkgdesc="Ingenious and fast way to move the mouse pointer on the screen with 
keystrokes."
+url="http://www.semicomplete.com/projects/keynav/;
+license=('BSD')
+arch=('x86_64')
+depends=('cairo' 'xdotool')
+source=("https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/semicomplete/keynav-$pkgver.tar.gz;)
+#source=("http://http.debian.net/debian/pool/main/k/keynav/keynav_$pkgver.orig.tar.gz;)
+md5sums=('d1b273d72b15fc9c28270c28f644e7c6')
+
+prepare() {
+  cd "$srcdir/$pkgname-$pkgver"
+  sed -e 's/xdo_symbol_map/xdo_get_symbol_map/' \
+  -e 's/xdo_window_setclass/xdo_set_window_class/' \
+  -e 's/xdo_window_get_active/xdo_get_window_at_mouse/' \
+  -e 's/xdo_click/xdo_click_window/' \
+  -e 's/xdo_mouseup/xdo_mouse_up/' \
+  -e 's/xdo_mousedown/xdo_mouse_down/' \
+  -e 's/xdo_mousemove/xdo_move_mouse/' \
+  -e 's/xdo_mousemove_relative/xdo_move_mouse_relative/' \
+  -e 's/xdo_mouselocation/xdo_get_mouse_location/' \
+  -e 's/xdo_mouse_wait_for_move_to/xdo_wait_for_mouse_move_to/' \
+  -e 's/xdo_keysequence_up/xdo_send_keysequence_window_up/' \
+  -e 's/xdo_keysequence_down/xdo_send_keysequence_window_down/' \
+  -i keynav.c
+}
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make keynav
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  install -Dm755 keynav"$pkgdir/usr/bin/keynav"
+  install -Dm644 keynavrc  "$pkgdir/etc/keynavrc"
+  install -Dm644 COPYRIGHT "$pkgdir/usr/share/licenses/keynav/COPYRIGHT"
+}
+
+# vim:set ts=2 sw=2 et:


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

2018-09-08 Thread Kyle Keen via arch-commits
Date: Sunday, September 9, 2018 @ 04:18:45
  Author: kkeen
Revision: 378856

archrelease: copy trunk to community-x86_64

Added:
  twin/repos/community-x86_64/
  twin/repos/community-x86_64/PKGBUILD
(from rev 378855, twin/trunk/PKGBUILD)

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

Copied: twin/repos/community-x86_64/PKGBUILD (from rev 378855, 
twin/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2018-09-09 04:18:45 UTC (rev 378856)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Kyle Keen 
+# Contributor: Fabio 'Lolix' Loli 
+# Contributor: Sergej Pupykin 
+# Contributor: G_Syme 
+
+pkgname=twin
+pkgver=0.8.0
+pkgrel=2
+pkgdesc="A text-mode window environment"
+arch=('x86_64')
+url='http://sourceforge.net/projects/twin/'
+license=('GPL2' 'LGPL2.1')
+depends=('gpm' 'zlib' 'libxpm')
+options=('!makeflags')
+source=("$pkgname-$pkgver.tgz::https://github.com/cosmos72/twin/archive/v${pkgver}.tar.gz;)
+md5sums=('35ca4512dceaff97e700b06665c3c8dc')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  LDFLAGS="-lX11" ./configure --prefix=/usr --sbindir=/usr/bin \
+   --enable-tt=yes \
+   --enable-tt-hw-twin=yes \
+   --enable-tt-hw-twin-tunnel=yes \
+   --enable-tt-hw-twin-detunnel=yes \
+   --enable-tt-hw-xml=yes
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}


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

2018-09-08 Thread Jelle van der Waa via arch-commits
Date: Saturday, September 8, 2018 @ 20:17:24
  Author: jelle
Revision: 378825

upgpkg: bandit 1.5.1-1

Modified:
  bandit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-09-08 19:22:08 UTC (rev 378824)
+++ PKGBUILD2018-09-08 20:17:24 UTC (rev 378825)
@@ -1,18 +1,19 @@
 # Maintainer: Jelle van der Waa 
 
 pkgname=bandit
-pkgver=1.4.0
-pkgrel=4
+pkgver=1.5.1
+pkgrel=1
 pkgdesc='Python security linter from OpenStack Security'
 arch=('any')
-url='https://wiki.openstack.org/wiki/Security/Projects/Bandit'
+url='https://github.com/PyCQA/bandit'
 license=('Apache')
 depends=('python-yaml' 'python-stevedore' 'python-appdirs' 'python-six' 
'python-pbr')
 makedepends=('python-setuptools' 'git')
-source=('https://pypi.python.org/packages/45/b2/f5a4adb1e7773e6d631481b784ad49e6ec56aa81e9fdafcabf0fe3e0241a/bandit-1.4.0.tar.gz')
-md5sums=('f74155cb9921be857693b32d2531e857')
+source=(https://files.pythonhosted.org/packages/source/${pkgname::1}/${pkgname}/${pkgname}-${pkgver}.tar.gz)
 
+
 package() {
 cd "bandit-$pkgver"
 python setup.py install --root=$pkgdir --optimize=1
 }
+md5sums=('81ba3979ded1b421fa8d69e6faa06dcb')


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

2018-09-08 Thread Jelle van der Waa via arch-commits
Date: Saturday, September 8, 2018 @ 20:17:44
  Author: jelle
Revision: 378826

archrelease: copy trunk to community-any

Added:
  bandit/repos/community-any/PKGBUILD
(from rev 378825, bandit/trunk/PKGBUILD)
Deleted:
  bandit/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-09-08 20:17:24 UTC (rev 378825)
+++ PKGBUILD2018-09-08 20:17:44 UTC (rev 378826)
@@ -1,18 +0,0 @@
-# Maintainer: Jelle van der Waa 
-
-pkgname=bandit
-pkgver=1.4.0
-pkgrel=4
-pkgdesc='Python security linter from OpenStack Security'
-arch=('any')
-url='https://wiki.openstack.org/wiki/Security/Projects/Bandit'
-license=('Apache')
-depends=('python-yaml' 'python-stevedore' 'python-appdirs' 'python-six' 
'python-pbr')
-makedepends=('python-setuptools' 'git')
-source=('https://pypi.python.org/packages/45/b2/f5a4adb1e7773e6d631481b784ad49e6ec56aa81e9fdafcabf0fe3e0241a/bandit-1.4.0.tar.gz')
-md5sums=('f74155cb9921be857693b32d2531e857')
-
-package() {
-cd "bandit-$pkgver"
-python setup.py install --root=$pkgdir --optimize=1
-}

Copied: bandit/repos/community-any/PKGBUILD (from rev 378825, 
bandit/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-09-08 20:17:44 UTC (rev 378826)
@@ -0,0 +1,19 @@
+# Maintainer: Jelle van der Waa 
+
+pkgname=bandit
+pkgver=1.5.1
+pkgrel=1
+pkgdesc='Python security linter from OpenStack Security'
+arch=('any')
+url='https://github.com/PyCQA/bandit'
+license=('Apache')
+depends=('python-yaml' 'python-stevedore' 'python-appdirs' 'python-six' 
'python-pbr')
+makedepends=('python-setuptools' 'git')
+source=(https://files.pythonhosted.org/packages/source/${pkgname::1}/${pkgname}/${pkgname}-${pkgver}.tar.gz)
+
+
+package() {
+cd "bandit-$pkgver"
+python setup.py install --root=$pkgdir --optimize=1
+}
+md5sums=('81ba3979ded1b421fa8d69e6faa06dcb')


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

2018-09-08 Thread Filipe Laíns via arch-commits
Date: Saturday, September 8, 2018 @ 20:24:51
  Author: ffy00
Revision: 378827

upgpkg: gdc 8.2.1+2.068.2-1

Modified:
  gdc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-09-08 20:17:44 UTC (rev 378826)
+++ PKGBUILD2018-09-08 20:24:51 UTC (rev 378827)
@@ -1,3 +1,4 @@
+# $Id$
 # Maintainer: Filipe Laíns (FFY00) 
 # Contributor: Daniel Kozak (kozzi) 
 # Contributor: Mihails Strasuns 
@@ -8,15 +9,15 @@
 # Contributor: Elijah Stone 
 
 pkgbase=gdc
-pkgname=('gdc' 'libgphobos')
-pkgver=8.2.0+2.068.2
+pkgname=(gdc libgphobos)
+pkgver=8.2.1+2.068.2
 #_branch=gdc-8-stable
-_gdc_commit=76136b64ad3a5b8b38992c56f7f70ec700702e76
-_islver=0.19
-_gccver=8.2.0
+_islver=0.20 # Change here
+_gccver=8-20180831 # Change here
+_gdc_commit=76136b64ad3a5b8b38992c56f7f70ec700702e76 # Change here
+_gdmd_commit=0b374bfb3b0df7d0ad76de95e9dd0d5ff7ea07fa # Change here
 _d_ver=''
-_gdmd_commit=0b374bfb3b0df7d0ad76de95e9dd0d5ff7ea07fa
-pkgrel=6
+pkgrel=1
 arch=('x86_64')
 license=('GPL3')
 url="https://github.com/D-Programming-GDC/GDC;
@@ -23,13 +24,13 @@
 pkgdesc="GCC based D compiler"
 groups=('dlang')
 makedepends=('git')
-source=("ftp://gcc.gnu.org/pub/gcc/releases/$_gccver/gcc-$_gccver.tar.xz;
+source=("ftp://gcc.gnu.org/pub/gcc/snapshots/$_gccver/gcc-$_gccver.tar.xz;
 "http://isl.gforge.inria.fr/isl-$_islver.tar.bz2;
 
"gdc::git+https://github.com/D-Programming-GDC/GDC.git#commit=$_gdc_commit;
 
"git+https://github.com/D-Programming-GDC/GDMD.git#commit=$_gdmd_commit;
 'paths.diff')
-sha512sums=('64898a165f67e136d802a92e7633bf1b06c85266027e52127ea025bf5fc2291b5e858288aac0bdba246e6cdf7c6ec88bc8e0e7f3f6f1985f4297710cafde56ed'
-
'08f4db964d9e02ec8aa9779378ed76e0ddf1d56f81f87664dbf787555ce496cdc87e836f8a51ae137f45e648c604870cce07ee45919eafb549e404afb8f27083'
+sha512sums=('56f00dfb37611183a446d80f3c56c91fc4e5287801eaa5871ba6695b19654ecd424d4f9346f03ab1d30017e81fb5646beecd6cb1c63b88767ab2b3f8181fef2a'
+
'afe2e159b74646a26449268637403d271f9e3f6410d8cc1c9cffca41370c4357b165dea844db0c2a654591f954e54710dda650c8088abd4711406aa6302da950'
 'SKIP'
 'SKIP'
 
'841504e9dffe718f7e5a5fbbf03299f2b51acd783d47f99894aa5d411abcc56aedfffd4b16595e3a9446f2206f9eb29cb01e235e82c211796cd24dc23c02b578')
@@ -41,7 +42,7 @@
 _d_ver="+$(cat gdc/gcc/d/VERSION | sed 's|\"||g')"
   fi
 
-  echo "$(cat gdc/gcc.version | sed -e 's|gcc-||' -e 's|-.*||')$_d_ver"
+  echo "$(cat gcc/gcc/BASE-VER | sed -e 's|gcc-||' -e 's|-.*||')$_d_ver"
 }
 
 prepare() {
@@ -101,13 +102,10 @@
   --disable-bootstrap \
   --enable-default-pie \
   --enable-default-ssp \
-  --with-bugurl=https://bugs.archlinux.org/ \
+  --with-bugurl=https://bugzilla.gdcproject.org/ \
   --with-pkgversion="GDC ${pkgver%+*} based on D 
v${pkgver#*+} built with ISL $_islver for Arch Linux" \
   gdc_include_dir=/usr/include/dlang/gdc
 
-  #--enable-gold \
-
-
   make
 }
 
@@ -125,7 +123,6 @@
   install -Dm 644 "$srcdir"/GDMD/dmd-script.1 
"$pkgdir"/usr/share/man/man1/gdmd.1
 }
 
-
 package_libgphobos() {
   pkgdesc="Standard library for D programming language, GDC port"
   provides=('d-runtime' 'd-stdlib')
@@ -139,3 +136,4 @@
 rmdir "$pkgdir"/usr/lib64
   fi
 }
+


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

2018-09-08 Thread Filipe Laíns via arch-commits
Date: Saturday, September 8, 2018 @ 20:24:56
  Author: ffy00
Revision: 378828

archrelease: copy trunk to community-x86_64

Added:
  gdc/repos/community-x86_64/PKGBUILD
(from rev 378827, gdc/trunk/PKGBUILD)
  gdc/repos/community-x86_64/paths.diff
(from rev 378827, gdc/trunk/paths.diff)
Deleted:
  gdc/repos/community-x86_64/PKGBUILD
  gdc/repos/community-x86_64/paths.diff

+
 PKGBUILD   |  280 +--
 paths.diff |   78 
 2 files changed, 178 insertions(+), 180 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-09-08 20:24:51 UTC (rev 378827)
+++ PKGBUILD2018-09-08 20:24:56 UTC (rev 378828)
@@ -1,141 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-# Contributor: Daniel Kozak (kozzi) 
-# Contributor: Mihails Strasuns 
-# Contributor: Moritz Maxeiner 
-# Contributor: Jerome Berger 
-# Contributor: Jesus Alvarez 
-# Contributor: Allan McRae 
-# Contributor: Elijah Stone 
-
-pkgbase=gdc
-pkgname=('gdc' 'libgphobos')
-pkgver=8.2.0+2.068.2
-#_branch=gdc-8-stable
-_gdc_commit=76136b64ad3a5b8b38992c56f7f70ec700702e76
-_islver=0.19
-_gccver=8.2.0
-_d_ver=''
-_gdmd_commit=0b374bfb3b0df7d0ad76de95e9dd0d5ff7ea07fa
-pkgrel=6
-arch=('x86_64')
-license=('GPL3')
-url="https://github.com/D-Programming-GDC/GDC;
-pkgdesc="GCC based D compiler"
-groups=('dlang')
-makedepends=('git')
-source=("ftp://gcc.gnu.org/pub/gcc/releases/$_gccver/gcc-$_gccver.tar.xz;
-"http://isl.gforge.inria.fr/isl-$_islver.tar.bz2;
-
"gdc::git+https://github.com/D-Programming-GDC/GDC.git#commit=$_gdc_commit;
-
"git+https://github.com/D-Programming-GDC/GDMD.git#commit=$_gdmd_commit;
-'paths.diff')
-sha512sums=('64898a165f67e136d802a92e7633bf1b06c85266027e52127ea025bf5fc2291b5e858288aac0bdba246e6cdf7c6ec88bc8e0e7f3f6f1985f4297710cafde56ed'
-
'08f4db964d9e02ec8aa9779378ed76e0ddf1d56f81f87664dbf787555ce496cdc87e836f8a51ae137f45e648c604870cce07ee45919eafb549e404afb8f27083'
-'SKIP'
-'SKIP'
-
'841504e9dffe718f7e5a5fbbf03299f2b51acd783d47f99894aa5d411abcc56aedfffd4b16595e3a9446f2206f9eb29cb01e235e82c211796cd24dc23c02b578')
-
-pkgver() {
-  if [ -f gdc/gcc/d/verstr.h ]; then
-_d_ver="+$(cat gdc/gcc/d/verstr.h | sed 's|\"||g')"
-  elif [ -f gdc/gcc/d/VERSION ]; then
-_d_ver="+$(cat gdc/gcc/d/VERSION | sed 's|\"||g')"
-  fi
-
-  echo "$(cat gdc/gcc.version | sed -e 's|gcc-||' -e 's|-.*||')$_d_ver"
-}
-
-prepare() {
-  # Setup paths
-  ln -sf "$srcdir"/gcc-$_gccver "$srcdir"/gcc
-  ln -sf "$srcdir"/isl-$_islver "$srcdir"/gcc/isl
-
-  # Setup gcc
-  cd "$srcdir"/gcc
-
-  sed -i 's|\./fixinc\.sh|-c true|' gcc/Makefile.in # Do not run fixincludes
-  sed -i "/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/" {libiberty,gcc}/configure # 
hack! - some configure tests for header files using "$CPP $CPPFLAGS"
-
-  # Seup gdc
-  cd "$srcdir"/gdc
-
-  git apply "$srcdir"/paths.diff
-  ./setup-gcc.sh ../gcc
-
-  mkdir "$srcdir"/gcc-build
-}
-
-build() {
-  cd "$srcdir"/gcc-build
-
-  # using -pipe causes spurious test-suite failures
-  # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48565
-  export CFLAGS="${CFLAGS/-pipe/} -O2"
-  export CXXFLAGS="${CXXFLAGS/-pipe/} -O2"
-
-  "$srcdir"/gcc/configure --prefix=/usr \
-  --libdir=/usr/lib \
-  --libexecdir=/usr/lib \
-  --mandir=/usr/share/man \
-  --infodir=/usr/share/info \
-  --enable-languages=d \
-  --enable-shared \
-  --enable-static \
-  --enable-threads=posix \
-  --enable-libmpx \
-  --with-system-zlib \
-  --with-isl \
-  --enable-__cxa_atexit \
-  --disable-libunwind-exceptions \
-  --enable-clocale=gnu \
-  --disable-libstdcxx-pch \
-  --disable-libssp \
-  --enable-gnu-unique-object \
-  --enable-linker-build-id \
-  --enable-lto \
-  --enable-plugin \
-  --enable-install-libiberty \
-  --with-linker-hash-style=gnu \
-  --enable-gnu-indirect-function \
-  --disable-multilib \
-  --disable-werror \
-  --disable-bootstrap \
-  --enable-default-pie \
-  --enable-default-ssp \
-  --with-bugurl=https://bugs.archlinux.org/ \
-  --with-pkgversion="GDC ${pkgver%+*} based on D 
v${pkgver#*+} built with ISL $_islver for Arch Linux" \
-  

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

2018-09-08 Thread Kyle Keen via arch-commits
Date: Saturday, September 8, 2018 @ 23:56:55
  Author: kkeen
Revision: 378838

archrelease: copy trunk to community-any

Added:
  tamsyn-font/repos/community-any/PKGBUILD
(from rev 378837, tamsyn-font/trunk/PKGBUILD)
Deleted:
  tamsyn-font/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-09-08 23:56:43 UTC (rev 378837)
+++ PKGBUILD2018-09-08 23:56:55 UTC (rev 378838)
@@ -1,26 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Scott Fial 
-
-pkgname=tamsyn-font
-pkgver=1.11
-pkgrel=2
-pkgdesc="A monospaced bitmap font for the console and X11"
-arch=('any')
-url="http://www.fial.com/~scott/tamsyn-font;
-license=('custom')
-depends=('fontconfig' 'xorg-fonts-encodings' 'xorg-font-utils')
-source=(http://www.fial.com/~scott/$pkgname/download/$pkgname-$pkgver.tar.gz)
-md5sums=('6ec13672d2f0d6a829f2403cdeebd980')
-
-package () {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  install -d "$pkgdir/usr/share/fonts/local"
-  install -d "$pkgdir/usr/share/kbd/consolefonts"
-  install -d "$pkgdir/usr/share/doc/$pkgname"
-
-  install -m644 *.pcf "$pkgdir/usr/share/fonts/local/"
-  install -m644 *.psf.gz "$pkgdir/usr/share/kbd/consolefonts/"
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-  install -Dm644 README "$pkgdir/usr/share/doc/$pkgname/"
-}

Copied: tamsyn-font/repos/community-any/PKGBUILD (from rev 378837, 
tamsyn-font/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-09-08 23:56:55 UTC (rev 378838)
@@ -0,0 +1,26 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Scott Fial 
+
+pkgname=tamsyn-font
+pkgver=1.11
+pkgrel=3
+pkgdesc="A monospaced bitmap font for the console and X11"
+arch=('any')
+url="http://www.fial.com/~scott/tamsyn-font;
+license=('custom')
+depends=('fontconfig' 'xorg-fonts-encodings' 'xorg-font-utils')
+source=("http://www.fial.com/~scott/$pkgname/download/$pkgname-$pkgver.tar.gz;)
+md5sums=('6ec13672d2f0d6a829f2403cdeebd980')
+
+package () {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  install -d "$pkgdir/usr/share/fonts/misc"
+  install -d "$pkgdir/usr/share/kbd/consolefonts"
+  install -d "$pkgdir/usr/share/doc/$pkgname"
+
+  install -m644 *.pcf "$pkgdir/usr/share/fonts/misc/"
+  install -m644 *.psf.gz "$pkgdir/usr/share/kbd/consolefonts/"
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+  install -Dm644 README "$pkgdir/usr/share/doc/$pkgname/"
+}


[arch-commits] Commit in (ant ant/repos ant/repos/extra-any)

2018-09-08 Thread Levente Polyak via arch-commits
Date: Sunday, September 9, 2018 @ 00:00:57
  Author: anthraxx
Revision: 334150

archrelease: copy trunk to extra-any

Added:
  ant/
  ant/repos/
  ant/repos/extra-any/


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

2018-09-08 Thread Jan Steffens via arch-commits
Date: Sunday, September 9, 2018 @ 00:25:21
  Author: heftig
Revision: 334163

3.30.0-1

Modified:
  gpaste/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-09-09 00:25:15 UTC (rev 334162)
+++ PKGBUILD2018-09-09 00:25:21 UTC (rev 334163)
@@ -1,7 +1,7 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgname=gpaste
-pkgver=3.28.2+5+g8604a34e
+pkgver=3.30.0
 pkgrel=1
 pkgdesc="Clipboard management system"
 url="http://www.imagination-land.org/tags/GPaste.html;
@@ -10,7 +10,7 @@
 depends=(gtk3)
 makedepends=(intltool vala appstream-glib gobject-introspection gnome-shell 
gnome-control-center git)
 optdepends=("wgetpaste: Upload clipboard contents")
-_commit=8604a34ec6109b32df5242de4fbfa6be9df71bb2  # gpaste-3.30
+_commit=56327893b0679af225ba4e169eead9f54c009dc8  # tags/v3.30.0^0
 source=("git+https://github.com/keruspe/gpaste#commit=$_commit;)
 sha256sums=('SKIP')
 


[arch-commits] Commit in evolution-data-server/trunk (PKGBUILD)

2018-09-08 Thread Jan Steffens via arch-commits
Date: Sunday, September 9, 2018 @ 00:25:15
  Author: heftig
Revision: 334162

3.30.0-2

Modified:
  evolution-data-server/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-09-09 00:25:09 UTC (rev 334161)
+++ PKGBUILD2018-09-09 00:25:15 UTC (rev 334162)
@@ -3,7 +3,7 @@
 
 pkgname=evolution-data-server
 pkgver=3.30.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Centralized access to appointments and contacts"
 url="https://wiki.gnome.org/Apps/Evolution;
 arch=(x86_64)


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

2018-09-08 Thread Jan Steffens via arch-commits
Date: Sunday, September 9, 2018 @ 00:25:09
  Author: heftig
Revision: 334161

3.30.0+8+g238f8ee6-1

Modified:
  evince/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-09-09 00:25:02 UTC (rev 334160)
+++ PKGBUILD2018-09-09 00:25:09 UTC (rev 334161)
@@ -2,8 +2,8 @@
 # Maintainer: Jan de Groot 
 
 pkgname=evince
-pkgver=3.30.0
-pkgrel=2
+pkgver=3.30.0+8+g238f8ee6
+pkgrel=1
 pkgdesc="Document viewer (PDF, Postscript, djvu, tiff, dvi, XPS, SyncTex 
support with gedit, comics books (cbr,cbz,cb7 and cbt))"
 url="https://wiki.gnome.org/Apps/Evince;
 arch=(x86_64)
@@ -16,7 +16,7 @@
 'gvfs: bookmark support and session saving')
 groups=(gnome)
 options=('!emptydirs')
-_commit=bfe177e42b460350893ce89c0f7a3ceaaf2953dc  # tags/3.30.0^0
+_commit=238f8ee6a00dc8e7a593172d5a1e2f5dd41f09ed  # master
 source=("git+https://gitlab.gnome.org/GNOME/evince.git#commit=$_commit;)
 sha256sums=('SKIP')
 


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

2018-09-08 Thread Jan Steffens via arch-commits
Date: Sunday, September 9, 2018 @ 00:25:02
  Author: heftig
Revision: 334160

3.30.0-2

Modified:
  libdazzle/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-09-09 00:21:04 UTC (rev 334159)
+++ PKGBUILD2018-09-09 00:25:02 UTC (rev 334160)
@@ -3,7 +3,7 @@
 
 pkgname=libdazzle
 pkgver=3.30.0
-pkgrel=1
+pkgrel=2
 pkgdesc="A library to delight your users with fancy features"
 url="https://gitlab.gnome.org/GNOME/libdazzle;
 arch=(x86_64)


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

2018-09-08 Thread Jan Steffens via arch-commits
Date: Sunday, September 9, 2018 @ 00:39:15
  Author: heftig
Revision: 334177

3.30.0-2

Modified:
  mutter/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-09-09 00:35:18 UTC (rev 334176)
+++ PKGBUILD2018-09-09 00:39:15 UTC (rev 334177)
@@ -5,7 +5,7 @@
 
 pkgname=mutter
 pkgver=3.30.0
-pkgrel=1
+pkgrel=2
 pkgdesc="A window manager for GNOME"
 url="https://gitlab.gnome.org/GNOME/mutter;
 arch=(x86_64)


[arch-commits] Commit in gnome-shell/repos/testing-x86_64 (PKGBUILD PKGBUILD)

2018-09-08 Thread Jan Steffens via arch-commits
Date: Sunday, September 9, 2018 @ 00:45:27
  Author: heftig
Revision: 334182

archrelease: copy trunk to testing-x86_64

Added:
  gnome-shell/repos/testing-x86_64/PKGBUILD
(from rev 334181, gnome-shell/trunk/PKGBUILD)
Deleted:
  gnome-shell/repos/testing-x86_64/PKGBUILD

--+
 PKGBUILD |  104 ++---
 1 file changed, 52 insertions(+), 52 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-09-09 00:45:10 UTC (rev 334181)
+++ PKGBUILD2018-09-09 00:45:27 UTC (rev 334182)
@@ -1,52 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Ionut Biru 
-# Contributor: Flamelab https://wiki.gnome.org/Projects/GnomeShell;
-arch=(x86_64)
-license=(GPL2)
-depends=(accountsservice gcr gjs gnome-bluetooth upower gnome-session 
gnome-settings-daemon
- gnome-themes-extra gsettings-desktop-schemas libcanberra-pulse 
libcroco libgdm libsecret
- mutter nm-connection-editor unzip gstreamer libibus)
-makedepends=(gtk-doc gnome-control-center evolution-data-server 
gobject-introspection git meson
- sassc)
-optdepends=('gnome-control-center: System settings'
-'evolution-data-server: Evolution calendar integration')
-groups=(gnome)
-_commit=1bdb3f194d5ae6c07d4a5fe05fad2abeb8f61c14  # master
-source=("git+https://gitlab.gnome.org/GNOME/gnome-shell.git#commit=$_commit;
-"git+https://gitlab.gnome.org/GNOME/libgnome-volume-control.git;)
-sha256sums=('SKIP'
-'SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-
-  # Move the plugin to our custom epiphany-only dir
-  sed -i "s/'mozilla'/'epiphany'/g" meson.build
-
-  git submodule init
-  git config --local submodule.subprojects/gvc.url 
"$srcdir/libgnome-volume-control"
-  git submodule update
-}
-  
-build() {
-  arch-meson $pkgname build -D gtk_doc=true
-  ninja -C build
-}
-
-package() {
-  DESTDIR="$pkgdir" meson install -C build
-
-  # https://bugs.archlinux.org/task/37412
-  mkdir "$pkgdir/usr/share/gnome-shell/modes"
-}

Copied: gnome-shell/repos/testing-x86_64/PKGBUILD (from rev 334181, 
gnome-shell/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-09-09 00:45:27 UTC (rev 334182)
@@ -0,0 +1,52 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Ionut Biru 
+# Contributor: Flamelab https://wiki.gnome.org/Projects/GnomeShell;
+arch=(x86_64)
+license=(GPL2)
+depends=(accountsservice gcr gjs gnome-bluetooth upower gnome-session 
gnome-settings-daemon
+ gnome-themes-extra gsettings-desktop-schemas libcanberra-pulse 
libcroco libgdm libsecret
+ mutter nm-connection-editor unzip gstreamer libibus)
+makedepends=(gtk-doc gnome-control-center evolution-data-server 
gobject-introspection git meson
+ sassc)
+optdepends=('gnome-control-center: System settings'
+'evolution-data-server: Evolution calendar integration')
+groups=(gnome)
+_commit=7778d1c30839f63f9d31ea959f046f1888a03ec8  # master
+source=("git+https://gitlab.gnome.org/GNOME/gnome-shell.git#commit=$_commit;
+"git+https://gitlab.gnome.org/GNOME/libgnome-volume-control.git;)
+sha256sums=('SKIP'
+'SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+
+  # Move the plugin to our custom epiphany-only dir
+  sed -i "s/'mozilla'/'epiphany'/g" meson.build
+
+  git submodule init
+  git config --local submodule.subprojects/gvc.url 
"$srcdir/libgnome-volume-control"
+  git submodule update
+}
+  
+build() {
+  arch-meson $pkgname build -D gtk_doc=true
+  ninja -C build
+}
+
+package() {
+  DESTDIR="$pkgdir" meson install -C build
+
+  # https://bugs.archlinux.org/task/37412
+  mkdir "$pkgdir/usr/share/gnome-shell/modes"
+}


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

2018-09-08 Thread Jan Steffens via arch-commits
Date: Sunday, September 9, 2018 @ 00:45:10
  Author: heftig
Revision: 334181

3.30.0+19+g7778d1c30-1

Modified:
  gnome-shell/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-09-09 00:42:10 UTC (rev 334180)
+++ PKGBUILD2018-09-09 00:45:10 UTC (rev 334181)
@@ -3,8 +3,8 @@
 # Contributor: Flamelab https://wiki.gnome.org/Projects/GnomeShell;
 arch=(x86_64)
@@ -17,7 +17,7 @@
 optdepends=('gnome-control-center: System settings'
 'evolution-data-server: Evolution calendar integration')
 groups=(gnome)
-_commit=1bdb3f194d5ae6c07d4a5fe05fad2abeb8f61c14  # master
+_commit=7778d1c30839f63f9d31ea959f046f1888a03ec8  # master
 source=("git+https://gitlab.gnome.org/GNOME/gnome-shell.git#commit=$_commit;
 "git+https://gitlab.gnome.org/GNOME/libgnome-volume-control.git;)
 sha256sums=('SKIP'


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

2018-09-08 Thread Kyle Keen via arch-commits
Date: Sunday, September 9, 2018 @ 02:33:17
  Author: kkeen
Revision: 378846

archrelease: copy trunk to community-x86_64

Added:
  fbv/repos/community-x86_64/
  fbv/repos/community-x86_64/PKGBUILD
(from rev 378845, fbv/trunk/PKGBUILD)
  fbv/repos/community-x86_64/giflib-5.1.patch
(from rev 378845, fbv/trunk/giflib-5.1.patch)

--+
 PKGBUILD |   37 +++
 giflib-5.1.patch |   62 +
 2 files changed, 99 insertions(+)

Copied: fbv/repos/community-x86_64/PKGBUILD (from rev 378845, 
fbv/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2018-09-09 02:33:17 UTC (rev 378846)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Kyle Keen 
+# Contributor: Sergej Pupykin 
+# Contributor: Aectann 
+
+pkgname=fbv
+pkgver=1.0b
+pkgrel=10
+pkgdesc="FrameBuffer image viewer"
+arch=('x86_64')
+url="http://s-tech.elsat.net.pl/fbv/;
+license=('GPL')
+depends=('libpng' 'giflib' 'libjpeg')
+source=("http://s-tech.elsat.net.pl/fbv/$pkgname-$pkgver.tar.gz;
+'giflib-5.1.patch')
+md5sums=('3e466375b930ec22be44f1041e77b55d'
+ 'f91404fb82f0b6b9fc0e0716f0c182c0')
+
+prepare() {
+  cd "$srcdir/$pkgname-$pkgver"
+  sed -i 's|setjmp(png_ptr->jmpbuf)|setjmp(png_jmpbuf(png_ptr))|' png.c
+  patch -Np1 -i ../giflib-5.1.patch
+}
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  ./configure --prefix=/usr --mandir=/usr/share/man
+  sed -i 's|LIBS.*|LIBS=-lpng -ljpeg -lgif|' Make.conf
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  install -d "$pkgdir/usr/bin"
+  install -d "$pkgdir/usr/share/man/man1"
+  make DESTDIR="$pkgdir" install
+}

Copied: fbv/repos/community-x86_64/giflib-5.1.patch (from rev 378845, 
fbv/trunk/giflib-5.1.patch)
===
--- community-x86_64/giflib-5.1.patch   (rev 0)
+++ community-x86_64/giflib-5.1.patch   2018-09-09 02:33:17 UTC (rev 378846)
@@ -0,0 +1,62 @@
+diff -wbBur fbv-1.0b/gif.c fbv-1.0b.my/gif.c
+--- fbv-1.0b/gif.c 2003-08-25 00:23:02.0 +0400
 fbv-1.0b.my/gif.c  2014-05-29 18:39:41.337332872 +0400
+@@ -31,10 +31,10 @@
+ #include 
+ #define min(a,b) ((a) < (b) ? (a) : (b))
+ #define gflush return(FH_ERROR_FILE);
+-#define grflush { DGifCloseFile(gft); return(FH_ERROR_FORMAT); }
+-#define mgrflush { free(lb); free(slb); DGifCloseFile(gft); 
return(FH_ERROR_FORMAT); }
++#define grflush { DGifCloseFile(gft, NULL); return(FH_ERROR_FORMAT); }
++#define mgrflush { free(lb); free(slb); DGifCloseFile(gft, NULL); 
return(FH_ERROR_FORMAT); }
+ #define agflush return(FH_ERROR_FORMAT);
+-#define agrflush { DGifCloseFile(gft); return(FH_ERROR_FORMAT); }
++#define agrflush { DGifCloseFile(gft, NULL); return(FH_ERROR_FORMAT); }
+ 
+ 
+ int fh_gif_id(char *name)
+@@ -81,7 +81,7 @@
+ ColorMapObject *cmap;
+ int cmaps;
+ 
+-gft=DGifOpenFileName(name);
++gft=DGifOpenFileName(name, NULL);
+ if(gft==NULL){printf("err5\n"); gflush;} //
+ do
+ {
+@@ -170,7 +170,7 @@
+   }
+ }
+ while( rt!= TERMINATE_RECORD_TYPE );
+-DGifCloseFile(gft);
++DGifCloseFile(gft, NULL);
+ return(FH_ERROR_OK);
+ }
+ 
+@@ -184,7 +184,7 @@
+ int extcode;
+ GifRecordType rt;
+ 
+-gft=DGifOpenFileName(name);
++gft=DGifOpenFileName(name, NULL);
+ if(gft==NULL) gflush;
+ do
+ {
+@@ -197,7 +197,7 @@
+   px=gft->Image.Width;
+   py=gft->Image.Height;
+   *x=px; *y=py;
+-  DGifCloseFile(gft);
++  DGifCloseFile(gft, NULL);
+   return(FH_ERROR_OK);
+   break;
+   case EXTENSION_RECORD_TYPE:
+@@ -210,7 +210,7 @@
+   }  
+ }
+ while( rt!= TERMINATE_RECORD_TYPE );
+-DGifCloseFile(gft);
++DGifCloseFile(gft, NULL);
+ return(FH_ERROR_FORMAT);
+ }
+ #endif


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

2018-09-08 Thread Kyle Keen via arch-commits
Date: Sunday, September 9, 2018 @ 02:30:54
  Author: kkeen
Revision: 378845

upgpkg: fbv 1.0b-10

Modified:
  fbv/trunk/PKGBUILD
Deleted:
  fbv/trunk/ChangeLog

---+
 ChangeLog |2 --
 PKGBUILD  |   25 +++--
 2 files changed, 15 insertions(+), 12 deletions(-)

Deleted: ChangeLog
===
--- ChangeLog   2018-09-09 02:13:17 UTC (rev 378844)
+++ ChangeLog   2018-09-09 02:30:54 UTC (rev 378845)
@@ -1,2 +0,0 @@
-2007-06-26 tardo 
-* Built for x86_64

Modified: PKGBUILD
===
--- PKGBUILD2018-09-09 02:13:17 UTC (rev 378844)
+++ PKGBUILD2018-09-09 02:30:54 UTC (rev 378845)
@@ -1,32 +1,37 @@
 # $Id$
-# Maintainer: Sergej Pupykin 
+# Maintainer: Kyle Keen 
+# Contributor: Sergej Pupykin 
 # Contributor: Aectann 
 
 pkgname=fbv
 pkgver=1.0b
-pkgrel=9
+pkgrel=10
 pkgdesc="FrameBuffer image viewer"
 arch=('x86_64')
 url="http://s-tech.elsat.net.pl/fbv/;
 license=('GPL')
 depends=('libpng' 'giflib' 'libjpeg')
-source=(http://s-tech.elsat.net.pl/fbv/$pkgname-$pkgver.tar.gz
-giflib-5.1.patch)
+source=("http://s-tech.elsat.net.pl/fbv/$pkgname-$pkgver.tar.gz;
+'giflib-5.1.patch')
 md5sums=('3e466375b930ec22be44f1041e77b55d'
  'f91404fb82f0b6b9fc0e0716f0c182c0')
 
+prepare() {
+  cd "$srcdir/$pkgname-$pkgver"
+  sed -i 's|setjmp(png_ptr->jmpbuf)|setjmp(png_jmpbuf(png_ptr))|' png.c
+  patch -Np1 -i ../giflib-5.1.patch
+}
+
 build() {
-  cd "$srcdir"/$pkgname-$pkgver
+  cd "$srcdir/$pkgname-$pkgver"
   ./configure --prefix=/usr --mandir=/usr/share/man
   sed -i 's|LIBS.*|LIBS=-lpng -ljpeg -lgif|' Make.conf
-  sed -i 's|setjmp(png_ptr->jmpbuf)|setjmp(png_jmpbuf(png_ptr))|' png.c
-  patch -Np1 -i ../giflib-5.1.patch
   make
 }
 
 package() {
-  cd "$srcdir"/$pkgname-$pkgver
-  mkdir -p "$pkgdir"/usr/bin
-  mkdir -p "$pkgdir"/usr/share/man/man1
+  cd "$srcdir/$pkgname-$pkgver"
+  install -d "$pkgdir/usr/bin"
+  install -d "$pkgdir/usr/share/man/man1"
   make DESTDIR="$pkgdir" install
 }


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

2018-09-08 Thread Kyle Keen via arch-commits
Date: Sunday, September 9, 2018 @ 03:03:36
  Author: kkeen
Revision: 378847

upgpkg: fbdump 0.4.2-5

Modified:
  fbdump/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-09-09 02:33:17 UTC (rev 378846)
+++ PKGBUILD2018-09-09 03:03:36 UTC (rev 378847)
@@ -1,24 +1,25 @@
 # $Id$
-# Maintainer: Sergej Pupykin 
+# Maintainer: Kyle Keen 
+# Contributor: Sergej Pupykin 
 
 pkgname=fbdump
 pkgver=0.4.2
-pkgrel=4
+pkgrel=5
 pkgdesc="captures the contents of the visible portion of the Linux framebuffer 
to stdout"
 arch=('x86_64')
 url="http://www.rcdrummond.net/fbdump/;
 license=("GPL")
-depends=()
-source=(http://www.rcdrummond.net/$pkgname/$pkgname-$pkgver.tar.gz)
+depends=('glibc')
+source=("http://www.rcdrummond.net/$pkgname/$pkgname-$pkgver.tar.gz;)
 md5sums=('85ae97c0800a2caf2b04ad7764e3915b')
 
 build() {
-  cd "$srcdir"/$pkgname-$pkgver
+  cd "$srcdir/$pkgname-$pkgver"
   ./configure --prefix=/usr
   make
 }
 
 package() {
-  cd "$srcdir"/$pkgname-$pkgver
+  cd "$srcdir/$pkgname-$pkgver"
   make DESTDIR="$pkgdir" install
 }


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

2018-09-08 Thread Kyle Keen via arch-commits
Date: Sunday, September 9, 2018 @ 03:03:48
  Author: kkeen
Revision: 378848

archrelease: copy trunk to community-x86_64

Added:
  fbdump/repos/community-x86_64/
  fbdump/repos/community-x86_64/PKGBUILD
(from rev 378847, fbdump/trunk/PKGBUILD)

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

Copied: fbdump/repos/community-x86_64/PKGBUILD (from rev 378847, 
fbdump/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2018-09-09 03:03:48 UTC (rev 378848)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Kyle Keen 
+# Contributor: Sergej Pupykin 
+
+pkgname=fbdump
+pkgver=0.4.2
+pkgrel=5
+pkgdesc="captures the contents of the visible portion of the Linux framebuffer 
to stdout"
+arch=('x86_64')
+url="http://www.rcdrummond.net/fbdump/;
+license=("GPL")
+depends=('glibc')
+source=("http://www.rcdrummond.net/$pkgname/$pkgname-$pkgver.tar.gz;)
+md5sums=('85ae97c0800a2caf2b04ad7764e3915b')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}


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

2018-09-08 Thread Kyle Keen via arch-commits
Date: Sunday, September 9, 2018 @ 03:48:03
  Author: kkeen
Revision: 378851

pkginit: libtsm

Added:
  libtsm/
  libtsm/repos/
  libtsm/trunk/
  libtsm/trunk/PKGBUILD

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

Added: libtsm/trunk/PKGBUILD
===
--- libtsm/trunk/PKGBUILD   (rev 0)
+++ libtsm/trunk/PKGBUILD   2018-09-09 03:48:03 UTC (rev 378851)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Daniel Micay 
+# Contributor: David Herrmann 
+pkgname=libtsm
+pkgver=3
+pkgrel=4
+pkgdesc='Terminal-emulator State Machine'
+arch=('x86_64')
+url="http://www.freedesktop.org/wiki/Software/kmscon/$pkgname;
+license=('MIT')
+depends=('glibc')
+makedepends=('libxkbcommon')
+options=(!libtool)
+source=("http://www.freedesktop.org/software/kmscon/releases/$pkgname-$pkgver.tar.xz;)
+md5sums=('c1b297a69d11a72f207ec35ae5ce7d69')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
+  make DESTDIR="$pkgdir" install
+}


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


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

2018-09-08 Thread Kyle Keen via arch-commits
Date: Sunday, September 9, 2018 @ 03:48:39
  Author: kkeen
Revision: 378852

archrelease: copy trunk to community-x86_64

Added:
  libtsm/repos/community-x86_64/
  libtsm/repos/community-x86_64/PKGBUILD
(from rev 378851, libtsm/trunk/PKGBUILD)

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

Copied: libtsm/repos/community-x86_64/PKGBUILD (from rev 378851, 
libtsm/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2018-09-09 03:48:39 UTC (rev 378852)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Daniel Micay 
+# Contributor: David Herrmann 
+pkgname=libtsm
+pkgver=3
+pkgrel=4
+pkgdesc='Terminal-emulator State Machine'
+arch=('x86_64')
+url="http://www.freedesktop.org/wiki/Software/kmscon/$pkgname;
+license=('MIT')
+depends=('glibc')
+makedepends=('libxkbcommon')
+options=(!libtool)
+source=("http://www.freedesktop.org/software/kmscon/releases/$pkgname-$pkgver.tar.xz;)
+md5sums=('c1b297a69d11a72f207ec35ae5ce7d69')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
+  make DESTDIR="$pkgdir" install
+}


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

2018-09-08 Thread Kyle Keen via arch-commits
Date: Sunday, September 9, 2018 @ 04:00:26
  Author: kkeen
Revision: 378853

pkginit: kmscon-8-5

Added:
  kmscon/
  kmscon/repos/
  kmscon/trunk/
  kmscon/trunk/PKGBUILD

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

Added: kmscon/trunk/PKGBUILD
===
--- kmscon/trunk/PKGBUILD   (rev 0)
+++ kmscon/trunk/PKGBUILD   2018-09-09 04:00:26 UTC (rev 378853)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Kyle Keen 
+# Contributor: Chris Tam 
+# Contributor: Daniel Micay 
+# Contributor: David Herrmann 
+pkgname=kmscon
+pkgver=8
+pkgrel=5
+pkgdesc='Terminal emulator based on Kernel Mode Setting (KMS)'
+arch=('x86_64')
+url='http://www.freedesktop.org/wiki/Software/kmscon/'
+license=('MIT')
+depends=('systemd' 'libdrm' 'mesa' 'libgl' 'pango' 'libxkbcommon'
+ 'xkeyboard-config' 'libtsm')
+makedepends=('libxslt' 'docbook-xsl' 'linux-api-headers')
+source=("http://www.freedesktop.org/software/kmscon/releases/kmscon-${pkgver}.tar.xz;)
+md5sums=('90d39c4ef53a11c53f27be4a7e9acee4')
+
+prepare() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  sed -i -e '302s/SIGUNUSED/SIGSYS/' src/pty.c
+  sed -i '43i #include ' src/uterm_vt.c
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir/" install
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
+  install -d "$pkgdir/usr/lib/systemd/system"
+  cp docs/kmscon{,vt@}.service "$pkgdir/usr/lib/systemd/system/"
+}


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


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

2018-09-08 Thread Kyle Keen via arch-commits
Date: Sunday, September 9, 2018 @ 04:01:01
  Author: kkeen
Revision: 378854

archrelease: copy trunk to community-x86_64

Added:
  kmscon/repos/community-x86_64/
  kmscon/repos/community-x86_64/PKGBUILD
(from rev 378853, kmscon/trunk/PKGBUILD)

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

Copied: kmscon/repos/community-x86_64/PKGBUILD (from rev 378853, 
kmscon/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2018-09-09 04:01:01 UTC (rev 378854)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Kyle Keen 
+# Contributor: Chris Tam 
+# Contributor: Daniel Micay 
+# Contributor: David Herrmann 
+pkgname=kmscon
+pkgver=8
+pkgrel=5
+pkgdesc='Terminal emulator based on Kernel Mode Setting (KMS)'
+arch=('x86_64')
+url='http://www.freedesktop.org/wiki/Software/kmscon/'
+license=('MIT')
+depends=('systemd' 'libdrm' 'mesa' 'libgl' 'pango' 'libxkbcommon'
+ 'xkeyboard-config' 'libtsm')
+makedepends=('libxslt' 'docbook-xsl' 'linux-api-headers')
+source=("http://www.freedesktop.org/software/kmscon/releases/kmscon-${pkgver}.tar.xz;)
+md5sums=('90d39c4ef53a11c53f27be4a7e9acee4')
+
+prepare() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  sed -i -e '302s/SIGUNUSED/SIGSYS/' src/pty.c
+  sed -i '43i #include ' src/uterm_vt.c
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir/" install
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
+  install -d "$pkgdir/usr/lib/systemd/system"
+  cp docs/kmscon{,vt@}.service "$pkgdir/usr/lib/systemd/system/"
+}


[arch-commits] Commit in (4 files)

2018-09-08 Thread David Runge via arch-commits
Date: Saturday, September 8, 2018 @ 23:07:46
  Author: dvzrv
Revision: 378829

Adding python-doit as dependency for nikola.

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

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

Added: python-doit/trunk/PKGBUILD
===
--- python-doit/trunk/PKGBUILD  (rev 0)
+++ python-doit/trunk/PKGBUILD  2018-09-08 23:07:46 UTC (rev 378829)
@@ -0,0 +1,49 @@
+# Maintainer: David Runge 
+_name=doit
+pkgname=python-doit
+pkgver=0.31.1
+pkgrel=1
+pkgdesc="A task management and automation tool"
+arch=('any')
+url="http://pydoit.org/;
+license=('MIT')
+depends=('python-cloudpickle' 'python-setuptools')
+#checkdepends=('flake8'  'python-coverage' 'python-pytest')
+optdepends=('python-pyinotify: notifications'
+'bash-completion: autocomplete for bash'
+'zsh-completions: autocomplete for ZSH')
+source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz;)
+sha512sums=('31235cb46a73adc2d3e726dce24dd9632f5b1ef00d313bf1c42ff895a03eff41be0ec7ae14a004e742d50003c2da17f29bd3392a49d80e73cfb59c12bd152d9d')
+
+prepare() {
+  mv -v "$_name-$pkgver" "$pkgname-$pkgver"
+  cd "$pkgname-$pkgver"
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  python setup.py build
+}
+
+# tests are broken:
+# https://github.com/pydoit/doit/issues/269
+#check() {
+#  cd "$pkgname-$pkgver"
+#  export PYTHONPATH=build/lib:${PYTHONPATH}
+#  py.test
+#}
+
+package() {
+  cd "$pkgname-$pkgver"
+  python setup.py install --skip-build \
+--optimize=1 \
+--prefix=/usr \
+--root="${pkgdir}"
+  install -vDm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -vDm 644 {AUTHORS,CHANGES,CONTRIBUTING.md,README.rst} \
+-t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -vDm 644 "bash_completion_${_name}" \
+"${pkgdir}/usr/share/bash-completion/completions/${_name}"
+  install -vDm 644 "zsh_completion_${_name}" \
+"${pkgdir}/usr/share/zsh/site-functions/_${_name}"
+}


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

2018-09-08 Thread Kyle Keen via arch-commits
Date: Sunday, September 9, 2018 @ 04:16:06
  Author: kkeen
Revision: 378855

pkginit: twin-0.8.0-2

Added:
  twin/
  twin/repos/
  twin/trunk/
  twin/trunk/PKGBUILD

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

Added: twin/trunk/PKGBUILD
===
--- twin/trunk/PKGBUILD (rev 0)
+++ twin/trunk/PKGBUILD 2018-09-09 04:16:06 UTC (rev 378855)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Kyle Keen 
+# Contributor: Fabio 'Lolix' Loli 
+# Contributor: Sergej Pupykin 
+# Contributor: G_Syme 
+
+pkgname=twin
+pkgver=0.8.0
+pkgrel=2
+pkgdesc="A text-mode window environment"
+arch=('x86_64')
+url='http://sourceforge.net/projects/twin/'
+license=('GPL2' 'LGPL2.1')
+depends=('gpm' 'zlib' 'libxpm')
+options=('!makeflags')
+source=("$pkgname-$pkgver.tgz::https://github.com/cosmos72/twin/archive/v${pkgver}.tar.gz;)
+md5sums=('35ca4512dceaff97e700b06665c3c8dc')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  LDFLAGS="-lX11" ./configure --prefix=/usr --sbindir=/usr/bin \
+   --enable-tt=yes \
+   --enable-tt-hw-twin=yes \
+   --enable-tt-hw-twin-tunnel=yes \
+   --enable-tt-hw-twin-detunnel=yes \
+   --enable-tt-hw-xml=yes
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}


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


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

2018-09-08 Thread Felix Yan via arch-commits
Date: Sunday, September 9, 2018 @ 04:35:42
  Author: felixonmars
Revision: 378860

try to fix agda again

Modified:
  agda/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-09-09 04:34:01 UTC (rev 378859)
+++ PKGBUILD2018-09-09 04:35:42 UTC (rev 378860)
@@ -4,8 +4,8 @@
 
 _hkgname=Agda
 pkgname=agda
-pkgver=2.5.4
-pkgrel=11
+pkgver=2.5.4.1
+pkgrel=1
 pkgdesc="A dependently typed functional programming language and proof 
assistant"
 url="http://wiki.portal.chalmers.se/agda/;
 license=("custom")
@@ -17,9 +17,9 @@
  'haskell-regex-tdfa' 'haskell-strict' 'haskell-unordered-containers' 
'haskell-uri-encode'
  'haskell-zlib')
 optdepends=('agda-stdlib: for standard library')
-makedepends=('alex' 'happy' 'ghc')
+makedepends=('alex' 'happy' 'ghc' 'haskell-filemanip')
 
source=("$_Hkgname-$pkgver.tar.gz::https://github.com/agda/agda/archive/v$pkgver.tar.gz;)
-sha512sums=('8565d365cc2e5dab997bf36e5c3353efdc8575cacd2b399767e4653cfae2e4a410161d15b92d7e00f99421ef7df58e6c11176ce078752712b525d51fbed8b283')
+sha512sums=('3df2218a38596eceea148cdf39ad9af9e67e92811dcf2d92dddaf230d8f7e2b818210a39e166e479693df281faffc6d62947e4727a552aa902156c965eb25869')
 
 prepare() {
 mkdir -p lib-target


[arch-commits] Commit in gnome-music/repos/testing-x86_64 (PKGBUILD PKGBUILD)

2018-09-08 Thread Jan Steffens via arch-commits
Date: Sunday, September 9, 2018 @ 00:19:00
  Author: heftig
Revision: 334157

archrelease: copy trunk to testing-x86_64

Added:
  gnome-music/repos/testing-x86_64/PKGBUILD
(from rev 334156, gnome-music/trunk/PKGBUILD)
Deleted:
  gnome-music/repos/testing-x86_64/PKGBUILD

--+
 PKGBUILD |  104 ++---
 1 file changed, 52 insertions(+), 52 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-09-09 00:18:39 UTC (rev 334156)
+++ PKGBUILD2018-09-09 00:19:00 UTC (rev 334157)
@@ -1,52 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Maintainer: Jan de Groot 
-
-pkgname=gnome-music
-pkgver=3.30.0
-pkgrel=1
-epoch=1
-pkgdesc="Music player and management application"
-url="https://wiki.gnome.org/Apps/Music;
-arch=(x86_64)
-license=(GPL)
-depends=(grilo grilo-plugins tracker-miners libdmapsharing libmediaart gtk3 
gvfs python-gobject
- python-cairo gst-plugins-base python-requests libdazzle)
-makedepends=(gobject-introspection git meson yelp-tools appstream-glib)
-optdepends=('gst-plugins-good: Extra media codecs'
-'gst-plugins-ugly: Extra media codecs'
-'gst-plugins-bad: Extra media codecs'
-'gst-libav: Extra media codecs')
-groups=(gnome)
-_commit=f5eb3ca5d3fcfd117cc6fd67471adc53a944dc1b  # tags/3.30.0^0
-source=("git+https://gitlab.gnome.org/GNOME/gnome-music.git#commit=$_commit;
-"git+https://gitlab.gnome.org/GNOME/libgd.git;)
-sha256sums=('SKIP'
-'SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-
-  git submodule init
-  git config --local submodule.subprojects/libgd.url "$srcdir/libgd"
-  git submodule update
-}
-
-build() {
-  arch-meson $pkgname build
-  ninja -C build
-}
-
-check() {
-  meson test -C build
-}
-
-package() {
-  DESTDIR="$pkgdir" meson install -C build
-  python -m compileall "$pkgdir/usr/lib"
-  python -O -m compileall "$pkgdir/usr/lib"
-}

Copied: gnome-music/repos/testing-x86_64/PKGBUILD (from rev 334156, 
gnome-music/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-09-09 00:19:00 UTC (rev 334157)
@@ -0,0 +1,52 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Maintainer: Jan de Groot 
+
+pkgname=gnome-music
+pkgver=3.30.0+8+g68f6c867
+pkgrel=1
+epoch=1
+pkgdesc="Music player and management application"
+url="https://wiki.gnome.org/Apps/Music;
+arch=(x86_64)
+license=(GPL)
+depends=(grilo grilo-plugins tracker-miners libdmapsharing libmediaart gtk3 
gvfs python-gobject
+ python-cairo gst-plugins-base python-requests libdazzle)
+makedepends=(gobject-introspection git meson yelp-tools appstream-glib)
+optdepends=('gst-plugins-good: Extra media codecs'
+'gst-plugins-ugly: Extra media codecs'
+'gst-plugins-bad: Extra media codecs'
+'gst-libav: Extra media codecs')
+groups=(gnome)
+_commit=68f6c867b9edd19557a1f5c784d05057ca09e143  # 
environments/review-gnome-3-30-6fvdp1/deployments/266
+source=("git+https://gitlab.gnome.org/GNOME/gnome-music.git#commit=$_commit;
+"git+https://gitlab.gnome.org/GNOME/libgd.git;)
+sha256sums=('SKIP'
+'SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+
+  git submodule init
+  git config --local submodule.subprojects/libgd.url "$srcdir/libgd"
+  git submodule update
+}
+
+build() {
+  arch-meson $pkgname build
+  ninja -C build
+}
+
+check() {
+  meson test -C build
+}
+
+package() {
+  DESTDIR="$pkgdir" meson install -C build
+  python -m compileall "$pkgdir/usr/lib"
+  python -O -m compileall "$pkgdir/usr/lib"
+}


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

2018-09-08 Thread Jan Steffens via arch-commits
Date: Sunday, September 9, 2018 @ 00:21:04
  Author: heftig
Revision: 334159

3.30.0+40+g7c92e1b3-2

Modified:
  devhelp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-09-09 00:19:12 UTC (rev 334158)
+++ PKGBUILD2018-09-09 00:21:04 UTC (rev 334159)
@@ -4,7 +4,7 @@
 
 pkgname=devhelp
 pkgver=3.30.0+40+g7c92e1b3
-pkgrel=1
+pkgrel=2
 pkgdesc="API documentation browser for GNOME"
 arch=(x86_64)
 license=(GPL)


[arch-commits] Commit in gedit/repos/testing-x86_64 (PKGBUILD PKGBUILD)

2018-09-08 Thread Jan Steffens via arch-commits
Date: Sunday, September 9, 2018 @ 00:19:12
  Author: heftig
Revision: 334158

archrelease: copy trunk to testing-x86_64

Added:
  gedit/repos/testing-x86_64/PKGBUILD
(from rev 334157, gedit/trunk/PKGBUILD)
Deleted:
  gedit/repos/testing-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-09-09 00:19:00 UTC (rev 334157)
+++ PKGBUILD2018-09-09 00:19:12 UTC (rev 334158)
@@ -1,49 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-
-pkgname=gedit
-pkgver=3.30.0
-pkgrel=1
-pkgdesc="GNOME Text Editor"
-url="https://wiki.gnome.org/Apps/Gedit;
-arch=(x86_64)
-license=(GPL)
-depends=(gtksourceview3 gsettings-desktop-schemas libpeas gspell 
python-gobject dconf)
-makedepends=(yelp-tools intltool vala gobject-introspection gnome-common git 
gtk-doc)
-optdepends=('gedit-plugins: Additional features')
-groups=(gnome)
-_commit=ad626786357e83821b1b1eed6c8b4612a3ede2c5  # tags/3.30.0^0
-source=("git+https://gitlab.gnome.org/GNOME/gedit.git#commit=$_commit;
-"git+https://gitlab.gnome.org/GNOME/libgd.git;)
-sha256sums=('SKIP'
-'SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-
-  git submodule init
-  git config --local submodule.libgd.url "$srcdir/libgd"
-  git submodule update
-
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd $pkgname
-  ./configure --prefix=/usr \
-  --sysconfdir=/etc --localstatedir=/var \
-  --libexecdir=/usr/lib --disable-updater --disable-schemas-compile \
-  --enable-python --enable-gtk-doc
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-package(){
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-}

Copied: gedit/repos/testing-x86_64/PKGBUILD (from rev 334157, 
gedit/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-09-09 00:19:12 UTC (rev 334158)
@@ -0,0 +1,49 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+
+pkgname=gedit
+pkgver=3.30.0
+pkgrel=2
+pkgdesc="GNOME Text Editor"
+url="https://wiki.gnome.org/Apps/Gedit;
+arch=(x86_64)
+license=(GPL)
+depends=(gtksourceview3 gsettings-desktop-schemas libpeas gspell 
python-gobject dconf)
+makedepends=(yelp-tools intltool vala gobject-introspection gnome-common git 
gtk-doc)
+optdepends=('gedit-plugins: Additional features')
+groups=(gnome)
+_commit=ad626786357e83821b1b1eed6c8b4612a3ede2c5  # tags/3.30.0^0
+source=("git+https://gitlab.gnome.org/GNOME/gedit.git#commit=$_commit;
+"git+https://gitlab.gnome.org/GNOME/libgd.git;)
+sha256sums=('SKIP'
+'SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+
+  git submodule init
+  git config --local submodule.libgd.url "$srcdir/libgd"
+  git submodule update
+
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr \
+  --sysconfdir=/etc --localstatedir=/var \
+  --libexecdir=/usr/lib --disable-updater --disable-schemas-compile \
+  --enable-python --enable-gtk-doc
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package(){
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}


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

2018-09-08 Thread Jan Steffens via arch-commits
Date: Sunday, September 9, 2018 @ 00:18:35
  Author: heftig
Revision: 334155

3.30.0-2

Modified:
  gedit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-09-09 00:11:11 UTC (rev 334154)
+++ PKGBUILD2018-09-09 00:18:35 UTC (rev 334155)
@@ -3,7 +3,7 @@
 
 pkgname=gedit
 pkgver=3.30.0
-pkgrel=1
+pkgrel=2
 pkgdesc="GNOME Text Editor"
 url="https://wiki.gnome.org/Apps/Gedit;
 arch=(x86_64)


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

2018-09-08 Thread Jan Steffens via arch-commits
Date: Sunday, September 9, 2018 @ 00:18:39
  Author: heftig
Revision: 334156

3.30.0+8+g68f6c867-1

Modified:
  gnome-music/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-09-09 00:18:35 UTC (rev 334155)
+++ PKGBUILD2018-09-09 00:18:39 UTC (rev 334156)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot 
 
 pkgname=gnome-music
-pkgver=3.30.0
+pkgver=3.30.0+8+g68f6c867
 pkgrel=1
 epoch=1
 pkgdesc="Music player and management application"
@@ -17,7 +17,7 @@
 'gst-plugins-bad: Extra media codecs'
 'gst-libav: Extra media codecs')
 groups=(gnome)
-_commit=f5eb3ca5d3fcfd117cc6fd67471adc53a944dc1b  # tags/3.30.0^0
+_commit=68f6c867b9edd19557a1f5c784d05057ca09e143  # 
environments/review-gnome-3-30-6fvdp1/deployments/266
 source=("git+https://gitlab.gnome.org/GNOME/gnome-music.git#commit=$_commit;
 "git+https://gitlab.gnome.org/GNOME/libgd.git;)
 sha256sums=('SKIP'


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

2018-09-08 Thread Jan Steffens via arch-commits
Date: Sunday, September 9, 2018 @ 00:28:34
  Author: heftig
Revision: 334171

0.54.0+9+gdace9988-1

Modified:
  vte3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-09-09 00:28:23 UTC (rev 334170)
+++ PKGBUILD2018-09-09 00:28:34 UTC (rev 334171)
@@ -3,7 +3,7 @@
 
 pkgbase=vte3
 pkgname=(vte3 vte-common)
-pkgver=0.54.0+8+g9d2802b4
+pkgver=0.54.0+9+gdace9988
 pkgrel=1
 pkgdesc="Virtual Terminal Emulator widget for use with GTK3"
 url="https://wiki.gnome.org/Apps/Terminal/VTE;
@@ -12,7 +12,7 @@
 options=(!emptydirs)
 depends=(gtk3 pcre2 gnutls)
 makedepends=(intltool gobject-introspection vala glade git gtk-doc gperf)
-_commit=9d2802b49664a67369fdeaf5c371f9c6ab40f121  # vte-0-54
+_commit=dace9988710869d0a3a02e6a1f3904f7d2289bf5  # vte-0-54
 source=("git+https://gitlab.gnome.org/GNOME/vte.git#commit=$_commit;)
 sha256sums=('SKIP')
 


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

2018-09-08 Thread Kyle Keen via arch-commits
Date: Sunday, September 9, 2018 @ 02:09:52
  Author: kkeen
Revision: 378841

pkginit: keynav

Added:
  keynav/
  keynav/repos/
  keynav/trunk/
  keynav/trunk/PKGBUILD

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

Added: keynav/trunk/PKGBUILD
===
--- keynav/trunk/PKGBUILD   (rev 0)
+++ keynav/trunk/PKGBUILD   2018-09-09 02:09:52 UTC (rev 378841)
@@ -0,0 +1,44 @@
+# Maintainer: Kyle Keen 
+# Contributor: Jan Fader 
+pkgname=keynav
+pkgver=0.20110708.0
+pkgrel=3
+pkgdesc="Ingenious and fast way to move the mouse pointer on the screen with 
keystrokes."
+url="http://www.semicomplete.com/projects/keynav/;
+license=('BSD')
+arch=('x86_64')
+depends=('cairo' 'xdotool')
+source=("https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/semicomplete/keynav-$pkgver.tar.gz;)
+#source=("http://http.debian.net/debian/pool/main/k/keynav/keynav_$pkgver.orig.tar.gz;)
+md5sums=('d1b273d72b15fc9c28270c28f644e7c6')
+
+prepare() {
+  cd "$srcdir/$pkgname-$pkgver"
+  sed -e 's/xdo_symbol_map/xdo_get_symbol_map/' \
+  -e 's/xdo_window_setclass/xdo_set_window_class/' \
+  -e 's/xdo_window_get_active/xdo_get_window_at_mouse/' \
+  -e 's/xdo_click/xdo_click_window/' \
+  -e 's/xdo_mouseup/xdo_mouse_up/' \
+  -e 's/xdo_mousedown/xdo_mouse_down/' \
+  -e 's/xdo_mousemove/xdo_move_mouse/' \
+  -e 's/xdo_mousemove_relative/xdo_move_mouse_relative/' \
+  -e 's/xdo_mouselocation/xdo_get_mouse_location/' \
+  -e 's/xdo_mouse_wait_for_move_to/xdo_wait_for_mouse_move_to/' \
+  -e 's/xdo_keysequence_up/xdo_send_keysequence_window_up/' \
+  -e 's/xdo_keysequence_down/xdo_send_keysequence_window_down/' \
+  -i keynav.c
+}
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make keynav
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  install -Dm755 keynav"$pkgdir/usr/bin/keynav"
+  install -Dm644 keynavrc  "$pkgdir/etc/keynavrc"
+  install -Dm644 COPYRIGHT "$pkgdir/usr/share/licenses/keynav/COPYRIGHT"
+}
+
+# vim:set ts=2 sw=2 et:


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


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

2018-09-08 Thread Kyle Keen via arch-commits
Date: Sunday, September 9, 2018 @ 03:06:53
  Author: kkeen
Revision: 378850

archrelease: copy trunk to community-x86_64

Added:
  fbgrab/repos/community-x86_64/
  fbgrab/repos/community-x86_64/PKGBUILD
(from rev 378849, fbgrab/trunk/PKGBUILD)

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

Copied: fbgrab/repos/community-x86_64/PKGBUILD (from rev 378849, 
fbgrab/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2018-09-09 03:06:53 UTC (rev 378850)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Kyle Keen 
+# Contributor: Sergej Pupykin 
+# Contributor: dibblethewrecker dibblethewrecker.at.jiwe.dot.org
+
+pkgname=fbgrab
+pkgver=1.3
+pkgrel=3
+pkgdesc="A framebuffer screenshot grabber"
+arch=('x86_64')
+url="http://fbgrab.monells.se/;
+license=("GPL")
+depends=('libpng')
+makedepends=('libpng')
+source=("https://fbgrab.monells.se/fbgrab-$pkgver.tar.gz;)
+sha256sums=('5fab478cbf8731fbacefaa76236a8f8b38ccff920c53b3a8253bc35509fba8ed')
+
+prepare() {
+  cd "$srcdir/$pkgname-$pkgver"
+  # patch from Curtis McEnroe  which should fix alpha
+  patch -p1 fbgrab.c <= 0 ? inbuffer[i*4+srcAlpha] : 
0xff;
++outbuffer[(i<<2)+Alpha] = srcAlpha >= 0 ? inbuffer[i*4+srcAlpha] : 
'\0';
+ }
+ }
+ 
+EOF
+}
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make install DESTDIR="$pkgdir"
+}


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

2018-09-08 Thread Kyle Keen via arch-commits
Date: Sunday, September 9, 2018 @ 03:06:43
  Author: kkeen
Revision: 378849

upgpkg: fbgrab 1.3-3

Modified:
  fbgrab/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-09-09 03:03:48 UTC (rev 378848)
+++ PKGBUILD2018-09-09 03:06:43 UTC (rev 378849)
@@ -1,12 +1,13 @@
 # $Id$
-# Maintainer: Sergej Pupykin 
+# Maintainer: Kyle Keen 
+# Contributor: Sergej Pupykin 
 # Contributor: dibblethewrecker dibblethewrecker.at.jiwe.dot.org
 
 pkgname=fbgrab
 pkgver=1.3
-pkgrel=2
+pkgrel=3
 pkgdesc="A framebuffer screenshot grabber"
-arch=(x86_64)
+arch=('x86_64')
 url="http://fbgrab.monells.se/;
 license=("GPL")
 depends=('libpng')
@@ -15,7 +16,7 @@
 sha256sums=('5fab478cbf8731fbacefaa76236a8f8b38ccff920c53b3a8253bc35509fba8ed')
 
 prepare() {
-  cd "$srcdir"/$pkgname-$pkgver
+  cd "$srcdir/$pkgname-$pkgver"
   # patch from Curtis McEnroe  which should fix alpha
   patch -p1 fbgrab.c <

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

2018-09-08 Thread Felix Yan via arch-commits
Date: Sunday, September 9, 2018 @ 04:30:01
  Author: felixonmars
Revision: 378858

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-quickcheck/repos/community-staging-x86_64/PKGBUILD (from rev 
378857, haskell-quickcheck/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-09-09 04:30:01 UTC (rev 378858)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Alexander F Rødseth 
+# Contributor: Vesa Kaihlavirta 
+# Contributor: Arch Haskell Team 
+
+_hkgname=QuickCheck
+pkgname=haskell-quickcheck
+pkgver=2.12.1
+pkgrel=1
+pkgdesc='Automatic testing of Haskell programs'
+url='https://hackage.haskell.org/package/QuickCheck'
+license=('custom:BSD3')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-erf' 'haskell-random' 'haskell-tf-random')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha512sums=('280bc8e8b05e096629e5afdb6cd5c7f42690b8632af11ed513454ec7dbd8eff88518ae532b2055a30a57fe8bef3afa35cfe4ed981509d917b20a45c010b62629')
+
+build() {
+  cd "$srcdir/$_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 \
+-ftemplateHaskell
+
+  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 "$srcdir/$_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"
+}
+
+# vim: ts=2 sw=2 et:


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

2018-09-08 Thread Felix Yan via arch-commits
Date: Sunday, September 9, 2018 @ 04:29:47
  Author: felixonmars
Revision: 378857

upgpkg: haskell-quickcheck 2.12.1-1

rebuild with QuickCheck 2.12.1, hspec 2.5.6, hspec-core 2.5.6, hspec-discover 
2.5.6

Modified:
  haskell-quickcheck/trunk/PKGBUILD
Deleted:
  
haskell-quickcheck/trunk/0001-update-code-to-support-extensible-exceptions-no-long.patch

-+
 0001-update-code-to-support-extensible-exceptions-no-long.patch |   50 
--
 PKGBUILD|8 -
 2 files changed, 4 insertions(+), 54 deletions(-)

Deleted: 0001-update-code-to-support-extensible-exceptions-no-long.patch
===
--- 0001-update-code-to-support-extensible-exceptions-no-long.patch 
2018-09-09 04:18:45 UTC (rev 378856)
+++ 0001-update-code-to-support-extensible-exceptions-no-long.patch 
2018-09-09 04:29:47 UTC (rev 378857)
@@ -1,50 +0,0 @@
-From 554b8dc1439b4dbb5bc9a853fc27efe7b1e111de Mon Sep 17 00:00:00 2001
-From: Thomas Dziedzic 
-Date: Tue, 11 Sep 2012 03:59:50 -0700
-Subject: [PATCH] update code to support extensible exceptions no longer being
- a part of ghc >= 7.6.1
-

- QuickCheck.cabal | 6 +-
- Test/QuickCheck/Exception.hs | 6 ++
- 2 files changed, 11 insertions(+), 1 deletion(-)
-
-diff --git a/QuickCheck.cabal b/QuickCheck.cabal
-index 1a9126e..5afd6fb 100644
 a/QuickCheck.cabal
-+++ b/QuickCheck.cabal
-@@ -60,9 +60,13 @@ library
-   Build-depends: ghc
- 
-   -- We want to use extensible-exceptions even if linking against base-3.
--  if impl(ghc >= 6.9)
-+  if impl(ghc >= 6.9) && impl(ghc < 7.6)
- Build-depends: extensible-exceptions
- 
-+  -- GHC >= 7.6.1 no longer provides extensible exceptions
-+  if impl(ghc >= 7.6)
-+cpp-options: -DNEW_EXCEPTIONS
-+
-   -- Modules that are always built.
-   Exposed-Modules:
- Test.QuickCheck,
-diff --git a/Test/QuickCheck/Exception.hs b/Test/QuickCheck/Exception.hs
-index f895351..d463195 100644
 a/Test/QuickCheck/Exception.hs
-+++ b/Test/QuickCheck/Exception.hs
-@@ -18,6 +18,12 @@ module Test.QuickCheck.Exception where
- 
- #if defined(OLD_EXCEPTIONS)
- import Control.Exception(evaluate, try, Exception(..), throw)
-+#elif defined(NEW_EXCEPTIONS)
-+import Control.Exception(evaluate, try, SomeException(SomeException), 
ErrorCall(..), throw
-+#if defined(GHC_INTERRUPT)
-+  , AsyncException(UserInterrupt)
-+#endif
-+  )
- #else
- import Control.Exception.Extensible(evaluate, try, 
SomeException(SomeException), ErrorCall(..), throw
- #if defined(GHC_INTERRUPT)
--- 
-1.7.12
-

Modified: PKGBUILD
===
--- PKGBUILD2018-09-09 04:18:45 UTC (rev 378856)
+++ PKGBUILD2018-09-09 04:29:47 UTC (rev 378857)
@@ -5,16 +5,16 @@
 
 _hkgname=QuickCheck
 pkgname=haskell-quickcheck
-pkgver=2.11.3
-pkgrel=4
+pkgver=2.12.1
+pkgrel=1
 pkgdesc='Automatic testing of Haskell programs'
 url='https://hackage.haskell.org/package/QuickCheck'
 license=('custom:BSD3')
 arch=('x86_64')
-depends=('ghc-libs' 'haskell-random' 'haskell-tf-random')
+depends=('ghc-libs' 'haskell-erf' 'haskell-random' 'haskell-tf-random')
 makedepends=('ghc')
 
source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
-sha512sums=('17b3c5803cbca980375a1837b4ba931f346be8a720fcc0e37ad2c46abc8ba2073c49635bc89739d34653376c3f7fe1bd39560092c005b8dbce0a7effac25d73d')
+sha512sums=('280bc8e8b05e096629e5afdb6cd5c7f42690b8632af11ed513454ec7dbd8eff88518ae532b2055a30a57fe8bef3afa35cfe4ed981509d917b20a45c010b62629')
 
 build() {
   cd "$srcdir/$_hkgname-$pkgver"


[arch-commits] Commit in gtk3/repos/testing-x86_64 (13 files)

2018-09-08 Thread Jan Steffens via arch-commits
Date: Saturday, September 8, 2018 @ 23:44:33
  Author: heftig
Revision: 334149

archrelease: copy trunk to testing-x86_64

Added:
  gtk3/repos/testing-x86_64/PKGBUILD
(from rev 334148, gtk3/trunk/PKGBUILD)
  gtk3/repos/testing-x86_64/gtk-query-immodules-3.0.hook
(from rev 334148, gtk3/trunk/gtk-query-immodules-3.0.hook)
  gtk3/repos/testing-x86_64/gtk-update-icon-cache.hook
(from rev 334148, gtk3/trunk/gtk-update-icon-cache.hook)
  gtk3/repos/testing-x86_64/gtk-update-icon-cache.script
(from rev 334148, gtk3/trunk/gtk-update-icon-cache.script)
  gtk3/repos/testing-x86_64/gtk3.install
(from rev 334148, gtk3/trunk/gtk3.install)
  gtk3/repos/testing-x86_64/settings.ini
(from rev 334148, gtk3/trunk/settings.ini)
Deleted:
  
gtk3/repos/testing-x86_64/0001-GtkApplication-Fix-CRITICAL-on-shutdown-when-registe.patch
  gtk3/repos/testing-x86_64/PKGBUILD
  gtk3/repos/testing-x86_64/gtk-query-immodules-3.0.hook
  gtk3/repos/testing-x86_64/gtk-update-icon-cache.hook
  gtk3/repos/testing-x86_64/gtk-update-icon-cache.script
  gtk3/repos/testing-x86_64/gtk3.install
  gtk3/repos/testing-x86_64/settings.ini

-+
 0001-GtkApplication-Fix-CRITICAL-on-shutdown-when-registe.patch |   49 --
 PKGBUILD|  172 
--
 gtk-query-immodules-3.0.hook|   22 -
 gtk-update-icon-cache.hook  |   26 -
 gtk-update-icon-cache.script|   20 -
 gtk3.install|6 
 settings.ini|8 
 7 files changed, 124 insertions(+), 179 deletions(-)

Deleted: 0001-GtkApplication-Fix-CRITICAL-on-shutdown-when-registe.patch
===
--- 0001-GtkApplication-Fix-CRITICAL-on-shutdown-when-registe.patch 
2018-09-08 23:43:24 UTC (rev 334148)
+++ 0001-GtkApplication-Fix-CRITICAL-on-shutdown-when-registe.patch 
2018-09-08 23:44:33 UTC (rev 334149)
@@ -1,49 +0,0 @@
-From 3c7d5e749ccafa75718ef00f1d5f6cdc0defacb3 Mon Sep 17 00:00:00 2001
-Message-Id: 
<3c7d5e749ccafa75718ef00f1d5f6cdc0defacb3.1536176847.git.jan.steff...@gmail.com>
-From: "Jan Alexander Steffens (heftig)" 
-Date: Wed, 5 Sep 2018 21:46:28 +0200
-Subject: [PATCH] GtkApplication: Fix CRITICAL on shutdown when
- register_session=FALSE
-

- gtk/gtkapplication-dbus.c | 23 +++
- 1 file changed, 15 insertions(+), 8 deletions(-)
-
-diff --git a/gtk/gtkapplication-dbus.c b/gtk/gtkapplication-dbus.c
-index 25015eb68c..0946edf35c 100644
 a/gtk/gtkapplication-dbus.c
-+++ b/gtk/gtkapplication-dbus.c
-@@ -826,15 +826,22 @@ gtk_application_impl_dbus_finalize (GObject *object)
- {
-   GtkApplicationImplDBus *dbus = (GtkApplicationImplDBus *) object;
- 
--  g_dbus_connection_call (dbus->session,
--  "org.freedesktop.portal.Desktop",
--  dbus->session_id,
--  "org.freedesktop.portal.Session",
--  "Close",
--  NULL, NULL, 0, -1, NULL, NULL, NULL);
-+  if (dbus->session_id)
-+{
-+  g_dbus_connection_call (dbus->session,
-+  "org.freedesktop.portal.Desktop",
-+  dbus->session_id,
-+  "org.freedesktop.portal.Session",
-+  "Close",
-+  NULL, NULL, 0, -1, NULL, NULL, NULL);
-+
-+  g_free (dbus->session_id);
-+}
-+
-+  if (dbus->state_changed_handler)
-+g_dbus_connection_signal_unsubscribe (dbus->session,
-+  dbus->state_changed_handler);
- 
--  g_free (dbus->session_id);
--  g_dbus_connection_signal_unsubscribe (dbus->session, 
dbus->state_changed_handler);
-   g_clear_object (>inhibit_proxy);
-   g_slist_free_full (dbus->inhibit_handles, inhibit_handle_free);
-   g_free (dbus->app_menu_path);
--- 
-2.18.0
-

Deleted: PKGBUILD
===
--- PKGBUILD2018-09-08 23:43:24 UTC (rev 334148)
+++ PKGBUILD2018-09-08 23:44:33 UTC (rev 334149)
@@ -1,89 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Ionut Biru 
-
-pkgbase=gtk3
-pkgname=(gtk3 gtk-update-icon-cache)
-pkgver=3.24.0
-pkgrel=2
-pkgdesc="GObject-based multi-platform GUI toolkit"
-arch=(x86_64)
-url="https://www.gtk.org/;
-depends=(atk cairo libxcursor libxinerama libxrandr libxi libepoxy gdk-pixbuf2 
dconf
- libxcomposite libxdamage pango shared-mime-info at-spi2-atk wayland 
libxkbcommon
- adwaita-icon-theme json-glib librsvg wayland-protocols 
desktop-file-utils mesa
- cantarell-fonts colord rest libcups libcanberra)
-makedepends=(gobject-introspection gtk-doc git glib2-docs sassc)

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

2018-09-08 Thread Jan Steffens via arch-commits
Date: Saturday, September 8, 2018 @ 23:43:24
  Author: heftig
Revision: 334148

3.24.0+9+g4858f4b46e-1

Modified:
  gtk3/trunk/PKGBUILD
Deleted:
  gtk3/trunk/0001-GtkApplication-Fix-CRITICAL-on-shutdown-when-registe.patch

-+
 0001-GtkApplication-Fix-CRITICAL-on-shutdown-when-registe.patch |   49 
--
 PKGBUILD|   12 --
 2 files changed, 3 insertions(+), 58 deletions(-)

Deleted: 0001-GtkApplication-Fix-CRITICAL-on-shutdown-when-registe.patch
===
--- 0001-GtkApplication-Fix-CRITICAL-on-shutdown-when-registe.patch 
2018-09-08 20:56:18 UTC (rev 334147)
+++ 0001-GtkApplication-Fix-CRITICAL-on-shutdown-when-registe.patch 
2018-09-08 23:43:24 UTC (rev 334148)
@@ -1,49 +0,0 @@
-From 3c7d5e749ccafa75718ef00f1d5f6cdc0defacb3 Mon Sep 17 00:00:00 2001
-Message-Id: 
<3c7d5e749ccafa75718ef00f1d5f6cdc0defacb3.1536176847.git.jan.steff...@gmail.com>
-From: "Jan Alexander Steffens (heftig)" 
-Date: Wed, 5 Sep 2018 21:46:28 +0200
-Subject: [PATCH] GtkApplication: Fix CRITICAL on shutdown when
- register_session=FALSE
-

- gtk/gtkapplication-dbus.c | 23 +++
- 1 file changed, 15 insertions(+), 8 deletions(-)
-
-diff --git a/gtk/gtkapplication-dbus.c b/gtk/gtkapplication-dbus.c
-index 25015eb68c..0946edf35c 100644
 a/gtk/gtkapplication-dbus.c
-+++ b/gtk/gtkapplication-dbus.c
-@@ -826,15 +826,22 @@ gtk_application_impl_dbus_finalize (GObject *object)
- {
-   GtkApplicationImplDBus *dbus = (GtkApplicationImplDBus *) object;
- 
--  g_dbus_connection_call (dbus->session,
--  "org.freedesktop.portal.Desktop",
--  dbus->session_id,
--  "org.freedesktop.portal.Session",
--  "Close",
--  NULL, NULL, 0, -1, NULL, NULL, NULL);
-+  if (dbus->session_id)
-+{
-+  g_dbus_connection_call (dbus->session,
-+  "org.freedesktop.portal.Desktop",
-+  dbus->session_id,
-+  "org.freedesktop.portal.Session",
-+  "Close",
-+  NULL, NULL, 0, -1, NULL, NULL, NULL);
-+
-+  g_free (dbus->session_id);
-+}
-+
-+  if (dbus->state_changed_handler)
-+g_dbus_connection_signal_unsubscribe (dbus->session,
-+  dbus->state_changed_handler);
- 
--  g_free (dbus->session_id);
--  g_dbus_connection_signal_unsubscribe (dbus->session, 
dbus->state_changed_handler);
-   g_clear_object (>inhibit_proxy);
-   g_slist_free_full (dbus->inhibit_handles, inhibit_handle_free);
-   g_free (dbus->app_menu_path);
--- 
-2.18.0
-

Modified: PKGBUILD
===
--- PKGBUILD2018-09-08 20:56:18 UTC (rev 334147)
+++ PKGBUILD2018-09-08 23:43:24 UTC (rev 334148)
@@ -4,8 +4,8 @@
 
 pkgbase=gtk3
 pkgname=(gtk3 gtk-update-icon-cache)
-pkgver=3.24.0
-pkgrel=2
+pkgver=3.24.0+9+g4858f4b46e
+pkgrel=1
 pkgdesc="GObject-based multi-platform GUI toolkit"
 arch=(x86_64)
 url="https://www.gtk.org/;
@@ -15,15 +15,13 @@
  cantarell-fonts colord rest libcups libcanberra)
 makedepends=(gobject-introspection gtk-doc git glib2-docs sassc)
 license=(LGPL)
-_commit=ef1a1b5cb1010977d631dc1131b0db45a1e1e15f  # tags/3.24.0^0
+_commit=4858f4b46ef19db884afb71957fe1d6a67d88915  # gtk-3-24
 source=("git+https://gitlab.gnome.org/GNOME/gtk.git#commit=$_commit;
-0001-GtkApplication-Fix-CRITICAL-on-shutdown-when-registe.patch
 settings.ini
 gtk-query-immodules-3.0.hook
 gtk-update-icon-cache.hook
 gtk-update-icon-cache.script)
 sha256sums=('SKIP'
-'54ea494642c2498dc9f14c310744a4a9d43b6d1fd217bc8ca50f4a86ec56973f'
 '01fc1d81dc82c4a052ac6e25bf9a04e7647267cc3017bc91f9ce3e63e5eb9202'
 'de46e5514ff39a7a65e01e485e874775ab1c0ad20b8e94ada43f4a6af1370845'
 '496064a9dd6214bd58f689dd817dbdc4d7f17d42a8c9940a87018c3f829ce308'
@@ -36,10 +34,6 @@
 
 prepare() {
   cd gtk
-
-  # Attempt to unbreak libdazzle test-application
-  patch -Np1 -i 
../0001-GtkApplication-Fix-CRITICAL-on-shutdown-when-registe.patch
-
   NOCONFIGURE=1 ./autogen.sh
 }
 


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

2018-09-08 Thread David Runge via arch-commits
Date: Saturday, September 8, 2018 @ 23:51:19
  Author: dvzrv
Revision: 378836

archrelease: copy trunk to community-testing-any

Added:
  python-phpserialize/repos/community-testing-any/
  python-phpserialize/repos/community-testing-any/PKGBUILD
(from rev 378835, python-phpserialize/trunk/PKGBUILD)

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

Copied: python-phpserialize/repos/community-testing-any/PKGBUILD (from rev 
378835, python-phpserialize/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2018-09-08 23:51:19 UTC (rev 378836)
@@ -0,0 +1,50 @@
+# Maintainer: David Runge 
+_name=phpserialize
+pkgname=python-phpserialize
+pkgver=1.3
+pkgrel=3
+pkgdesc="A port of the serialize and unserialize functions of php to python"
+arch=('any')
+url="https://github.com/mitsuhiko/phpserialize;
+license=('BSD')
+depends=('python')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest')
+# tests not included in pypi source:
+# https://github.com/mitsuhiko/phpserialize/issues/21
+# LICENSE not in any source tarball:
+# https://github.com/mitsuhiko/phpserialize/issues/22
+#source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz;)
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/mitsuhiko/${_name}/archive/${pkgver}.tar.gz;
+"https://raw.githubusercontent.com/mitsuhiko/${_name}/master/LICENSE;)
+sha512sums=('d96e3aa87d2f03fef6c7cee234e90b373989a9c8e3a07a8e2147a2e7487d3448ea0ef646263e517d6b307bf66f9ba1a4e8def04f919767532cede802cc7db144'
+
'95be97fbe3b8d03ba27aee2d9f5e29ff2923425970103f8b15f13e36beb744e8bc1f9361e89b05d2e9677368b5ab95c5ad84722e3523b3b8574e2d94b69f2d3e')
+
+prepare() {
+  mv -v "${_name}-$pkgver" "$pkgname-$pkgver"
+  cd "$pkgname-$pkgver"
+  # disabling broken test: https://github.com/mitsuhiko/phpserialize/issues/17
+  sed -e 's/test_tuple_roundtrips/disabled_test_tuple_roundtrips/' \
+  -e 's/test_dumps_dict/disabled_test_dumps_dict/' \
+  -i tests.py
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  python setup.py build
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  python setup.py test
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  python setup.py install --skip-build \
+--optimize=1 \
+--prefix=/usr \
+--root="${pkgdir}"
+  install -vDm 644 ../LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -vDm 644 README -t "${pkgdir}/usr/share/doc/${pkgname}"
+}


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

2018-09-08 Thread Kyle Keen via arch-commits
Date: Saturday, September 8, 2018 @ 23:56:43
  Author: kkeen
Revision: 378837

upgpkg: tamsyn-font 1.11-3  FS#59845

Modified:
  tamsyn-font/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-09-08 23:51:19 UTC (rev 378836)
+++ PKGBUILD2018-09-08 23:56:43 UTC (rev 378837)
@@ -3,23 +3,23 @@
 
 pkgname=tamsyn-font
 pkgver=1.11
-pkgrel=2
+pkgrel=3
 pkgdesc="A monospaced bitmap font for the console and X11"
 arch=('any')
 url="http://www.fial.com/~scott/tamsyn-font;
 license=('custom')
 depends=('fontconfig' 'xorg-fonts-encodings' 'xorg-font-utils')
-source=(http://www.fial.com/~scott/$pkgname/download/$pkgname-$pkgver.tar.gz)
+source=("http://www.fial.com/~scott/$pkgname/download/$pkgname-$pkgver.tar.gz;)
 md5sums=('6ec13672d2f0d6a829f2403cdeebd980')
 
 package () {
   cd "$srcdir/$pkgname-$pkgver"
 
-  install -d "$pkgdir/usr/share/fonts/local"
+  install -d "$pkgdir/usr/share/fonts/misc"
   install -d "$pkgdir/usr/share/kbd/consolefonts"
   install -d "$pkgdir/usr/share/doc/$pkgname"
 
-  install -m644 *.pcf "$pkgdir/usr/share/fonts/local/"
+  install -m644 *.pcf "$pkgdir/usr/share/fonts/misc/"
   install -m644 *.psf.gz "$pkgdir/usr/share/kbd/consolefonts/"
   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
   install -Dm644 README "$pkgdir/usr/share/doc/$pkgname/"


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

2018-09-08 Thread Levente Polyak via arch-commits
Date: Sunday, September 9, 2018 @ 00:08:50
  Author: anthraxx
Revision: 334152

archrelease: copy trunk to testing-any

Added:
  ant/repos/testing-any/
  ant/repos/testing-any/PKGBUILD
(from rev 334151, ant/trunk/PKGBUILD)
  ant/repos/testing-any/ant.conf
(from rev 334151, ant/trunk/ant.conf)

--+
 PKGBUILD |   82 +
 ant.conf |8 +
 2 files changed, 90 insertions(+)

Copied: ant/repos/testing-any/PKGBUILD (from rev 334151, ant/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2018-09-09 00:08:50 UTC (rev 334152)
@@ -0,0 +1,82 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Guillaume ALAUX 
+# Contributor: Andrew Wright 
+# Contributor: Paul Mattal 
+
+pkgbase=ant
+pkgname=('ant' 'ant-doc')
+pkgver=1.10.5
+pkgrel=1
+pkgdesc='Java based build tool'
+url='https://ant.apache.org/'
+arch=('any')
+license=('APACHE')
+makedepends=('bash' 'java-environment' 'junit' 'java-hamcrest')
+source=(https://www.apache.org/dist/ant/source/apache-${pkgbase}-${pkgver}-src.tar.bz2{,.asc}
+ant.conf)
+sha256sums=('71a5cdd45a54901b6321d5a140d882f7580c38f766a4e4959bcc36555da9f3ac'
+'SKIP'
+'23bbef577b56d48adb1985dbd9795e5533146646f1e8bb879dd061a4014ffcf2')
+validpgpkeys=('CE8075A251547BEE249BC151A2115AE15F6B8B72') # Stefan Bodewig
+
+_replace_lib() {
+  # explicitly call rm to ensure we replace instead of add
+  rm "$2"
+  ln -s "$1" "$2"
+}
+
+prepare() {
+  cd apache-${pkgbase}-${pkgver}
+  sed -i 's|/usr/bin/python|/usr/bin/python2|' src/script/runant.py
+}
+
+build() {
+  cd apache-${pkgbase}-${pkgver}
+  export JAVA_HOME=/usr/lib/jvm/default
+  ./bootstrap.sh
+  bootstrap/bin/ant -Ddest=optional -f fetch.xml
+  _replace_lib /usr/share/java/junit.jar lib/optional/junit-4.12.jar
+  _replace_lib /usr/share/java/hamcrest-core.jar 
lib/optional/hamcrest-core-1.3.jar
+  _replace_lib /usr/share/java/hamcrest-library.jar 
lib/optional/hamcrest-library-1.3.jar
+  bootstrap/bin/ant dist
+}
+
+package_ant() {
+  depends=('java-environment' 'bash')
+  optdepends=('junit: junit tasks'
+  'java-hamcrest: junit tasks')
+  replaces=('apache-ant')
+  provides=('apache-ant')
+  conflicts=('apache-ant')
+  backup=('etc/ant.conf')
+
+  cd apache-${pkgbase}-${pkgver}/apache-${pkgbase}-${pkgver}
+  local _ant_home=/usr/share/ant
+
+  install -d "${pkgdir}${_ant_home}"
+  cp -Rp etc "${pkgdir}${_ant_home}"
+
+  find bin -type f -a ! -name \*.bat -a ! -name \*.cmd \
+-exec install -Dm 755 {} -t "${pkgdir}${_ant_home}/bin" \;
+  install -d "${pkgdir}/usr/bin"
+  ln -s /usr/share/ant/bin/ant "${pkgdir}/usr/bin/ant"
+
+  install -Dm 644 "${srcdir}/ant.conf" -t "${pkgdir}/etc"
+  install -Dm 644 lib/*.jar -t "${pkgdir}/usr/share/java/ant"
+  ln -s /usr/share/java/ant "${pkgdir}${_ant_home}/lib"
+
+  install -Dm 644 ../{LICENSE,NOTICE} -t 
"${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+package_ant-doc() {
+  pkgdesc='Apache Ant build tool documentation'
+  replaces=('apache-ant-doc')
+  provices=('apache-ant-doc')
+  conflicts=('apache-ant-doc')
+
+  install -d "${pkgdir}/usr/share/doc/ant"
+  cp -r apache-${pkgbase}-${pkgver}/apache-${pkgbase}-${pkgver}/manual/* \
+"${pkgdir}/usr/share/doc/ant"
+}
+
+# vim: ts=2 sw=2 et:

Copied: ant/repos/testing-any/ant.conf (from rev 334151, ant/trunk/ant.conf)
===
--- testing-any/ant.conf(rev 0)
+++ testing-any/ant.conf2018-09-09 00:08:50 UTC (rev 334152)
@@ -0,0 +1,8 @@
+# Apache Ant start script configuration file
+ANT_HOME=/usr/share/ant
+
+# Optional jars and their dependencies
+OPT_JAR_LIST=/usr/share/java/junit.jar:/usr/share/java/hamcrest-core.jar
+LOCALCLASSPATH=${OPT_JAR_LIST}
+
+# vim:ft=sh


[arch-commits] Commit in ant (trunk trunk/PKGBUILD trunk/ant.conf)

2018-09-08 Thread Levente Polyak via arch-commits
Date: Sunday, September 9, 2018 @ 00:08:05
  Author: anthraxx
Revision: 334151

addpkg: ant 1.10.5-1

Added:
  ant/trunk/
  ant/trunk/PKGBUILD
  ant/trunk/ant.conf

--+
 PKGBUILD |   82 +
 ant.conf |8 +
 2 files changed, 90 insertions(+)

Added: trunk/PKGBUILD
===
--- trunk/PKGBUILD  (rev 0)
+++ trunk/PKGBUILD  2018-09-09 00:08:05 UTC (rev 334151)
@@ -0,0 +1,82 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Guillaume ALAUX 
+# Contributor: Andrew Wright 
+# Contributor: Paul Mattal 
+
+pkgbase=ant
+pkgname=('ant' 'ant-doc')
+pkgver=1.10.5
+pkgrel=1
+pkgdesc='Java based build tool'
+url='https://ant.apache.org/'
+arch=('any')
+license=('APACHE')
+makedepends=('bash' 'java-environment' 'junit' 'java-hamcrest')
+source=(https://www.apache.org/dist/ant/source/apache-${pkgbase}-${pkgver}-src.tar.bz2{,.asc}
+ant.conf)
+sha256sums=('71a5cdd45a54901b6321d5a140d882f7580c38f766a4e4959bcc36555da9f3ac'
+'SKIP'
+'23bbef577b56d48adb1985dbd9795e5533146646f1e8bb879dd061a4014ffcf2')
+validpgpkeys=('CE8075A251547BEE249BC151A2115AE15F6B8B72') # Stefan Bodewig
+
+_replace_lib() {
+  # explicitly call rm to ensure we replace instead of add
+  rm "$2"
+  ln -s "$1" "$2"
+}
+
+prepare() {
+  cd apache-${pkgbase}-${pkgver}
+  sed -i 's|/usr/bin/python|/usr/bin/python2|' src/script/runant.py
+}
+
+build() {
+  cd apache-${pkgbase}-${pkgver}
+  export JAVA_HOME=/usr/lib/jvm/default
+  ./bootstrap.sh
+  bootstrap/bin/ant -Ddest=optional -f fetch.xml
+  _replace_lib /usr/share/java/junit.jar lib/optional/junit-4.12.jar
+  _replace_lib /usr/share/java/hamcrest-core.jar 
lib/optional/hamcrest-core-1.3.jar
+  _replace_lib /usr/share/java/hamcrest-library.jar 
lib/optional/hamcrest-library-1.3.jar
+  bootstrap/bin/ant dist
+}
+
+package_ant() {
+  depends=('java-environment' 'bash')
+  optdepends=('junit: junit tasks'
+  'java-hamcrest: junit tasks')
+  replaces=('apache-ant')
+  provides=('apache-ant')
+  conflicts=('apache-ant')
+  backup=('etc/ant.conf')
+
+  cd apache-${pkgbase}-${pkgver}/apache-${pkgbase}-${pkgver}
+  local _ant_home=/usr/share/ant
+
+  install -d "${pkgdir}${_ant_home}"
+  cp -Rp etc "${pkgdir}${_ant_home}"
+
+  find bin -type f -a ! -name \*.bat -a ! -name \*.cmd \
+-exec install -Dm 755 {} -t "${pkgdir}${_ant_home}/bin" \;
+  install -d "${pkgdir}/usr/bin"
+  ln -s /usr/share/ant/bin/ant "${pkgdir}/usr/bin/ant"
+
+  install -Dm 644 "${srcdir}/ant.conf" -t "${pkgdir}/etc"
+  install -Dm 644 lib/*.jar -t "${pkgdir}/usr/share/java/ant"
+  ln -s /usr/share/java/ant "${pkgdir}${_ant_home}/lib"
+
+  install -Dm 644 ../{LICENSE,NOTICE} -t 
"${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+package_ant-doc() {
+  pkgdesc='Apache Ant build tool documentation'
+  replaces=('apache-ant-doc')
+  provices=('apache-ant-doc')
+  conflicts=('apache-ant-doc')
+
+  install -d "${pkgdir}/usr/share/doc/ant"
+  cp -r apache-${pkgbase}-${pkgver}/apache-${pkgbase}-${pkgver}/manual/* \
+"${pkgdir}/usr/share/doc/ant"
+}
+
+# vim: ts=2 sw=2 et:

Added: trunk/ant.conf
===
--- trunk/ant.conf  (rev 0)
+++ trunk/ant.conf  2018-09-09 00:08:05 UTC (rev 334151)
@@ -0,0 +1,8 @@
+# Apache Ant start script configuration file
+ANT_HOME=/usr/share/ant
+
+# Optional jars and their dependencies
+OPT_JAR_LIST=/usr/share/java/junit.jar:/usr/share/java/hamcrest-core.jar
+LOCALCLASSPATH=${OPT_JAR_LIST}
+
+# vim:ft=sh


[arch-commits] Commit in gnome-todo/repos/testing-x86_64 (PKGBUILD PKGBUILD)

2018-09-08 Thread Jan Steffens via arch-commits
Date: Sunday, September 9, 2018 @ 00:34:31
  Author: heftig
Revision: 334173

archrelease: copy trunk to testing-x86_64

Added:
  gnome-todo/repos/testing-x86_64/PKGBUILD
(from rev 334172, gnome-todo/trunk/PKGBUILD)
Deleted:
  gnome-todo/repos/testing-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-09-09 00:34:07 UTC (rev 334172)
+++ PKGBUILD2018-09-09 00:34:31 UTC (rev 334173)
@@ -1,41 +0,0 @@
-# $Id: PKGBUILD 321482 2018-04-10 17:16:08Z heftig $
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=gnome-todo
-pkgver=3.28.1
-pkgrel=2
-pkgdesc="Task manager for GNOME"
-url="https://wiki.gnome.org/Apps/Todo;
-arch=(x86_64)
-license=(GPL)
-depends=(evolution-data-server libpeas python)
-makedepends=(gobject-introspection appstream-glib git meson gtk-doc)
-groups=(gnome)
-_commit=75d8d0930e2fe81e6d72f2ab3e957f31620796d0  # tags/3.28.1^0
-source=("git+https://gitlab.gnome.org/GNOME/gnome-todo.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/^GNOME_TODO_//;s/_/./g;s/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-}
-
-build() {
-  arch-meson $pkgname build -D gtk_doc=true
-  ninja -C build
-}
-
-check() {
-  cd build
-  meson test
-}
-
-package() {
-  DESTDIR="$pkgdir" meson install -C build
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gnome-todo/repos/testing-x86_64/PKGBUILD (from rev 334172, 
gnome-todo/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-09-09 00:34:31 UTC (rev 334173)
@@ -0,0 +1,41 @@
+# $Id: PKGBUILD 321482 2018-04-10 17:16:08Z heftig $
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=gnome-todo
+pkgver=3.28.1
+pkgrel=3
+pkgdesc="Task manager for GNOME"
+url="https://wiki.gnome.org/Apps/Todo;
+arch=(x86_64)
+license=(GPL)
+depends=(evolution-data-server libpeas python)
+makedepends=(gobject-introspection appstream-glib git meson gtk-doc)
+groups=(gnome)
+_commit=75d8d0930e2fe81e6d72f2ab3e957f31620796d0  # tags/3.28.1^0
+source=("git+https://gitlab.gnome.org/GNOME/gnome-todo.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^GNOME_TODO_//;s/_/./g;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+}
+
+build() {
+  arch-meson $pkgname build -D gtk_doc=true
+  ninja -C build
+}
+
+check() {
+  cd build
+  meson test
+}
+
+package() {
+  DESTDIR="$pkgdir" meson install -C build
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in gucharmap/repos/testing-x86_64 (PKGBUILD PKGBUILD)

2018-09-08 Thread Jan Steffens via arch-commits
Date: Sunday, September 9, 2018 @ 00:34:41
  Author: heftig
Revision: 334174

archrelease: copy trunk to testing-x86_64

Added:
  gucharmap/repos/testing-x86_64/PKGBUILD
(from rev 334173, gucharmap/trunk/PKGBUILD)
Deleted:
  gucharmap/repos/testing-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-09-09 00:34:31 UTC (rev 334173)
+++ PKGBUILD2018-09-09 00:34:41 UTC (rev 334174)
@@ -1,38 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan De Groot 
-
-pkgname=gucharmap
-pkgver=11.0.2+5+gda0fec68
-pkgrel=1
-pkgdesc="Gnome Unicode Charmap"
-url="https://wiki.gnome.org/Apps/Gucharmap;
-arch=(x86_64)
-license=(GPL)
-depends=(dconf gtk3)
-makedepends=(gtk-doc intltool gobject-introspection itstool docbook-xsl
- python2 appdata-tools unicode-character-database unzip 
gnome-common git)
-_commit=da0fec68babd4525581f93875a4735c25437aa78  # master
-source=("git+https://gitlab.gnome.org/GNOME/gucharmap.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd $pkgname
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
--disable-static \
---disable-schemas-compile --enable-introspection 
--with-unicode-data=/usr/share/unicode
-  make
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-}

Copied: gucharmap/repos/testing-x86_64/PKGBUILD (from rev 334173, 
gucharmap/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-09-09 00:34:41 UTC (rev 334174)
@@ -0,0 +1,38 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan De Groot 
+
+pkgname=gucharmap
+pkgver=11.0.2+7+ga4ddb0ad
+pkgrel=1
+pkgdesc="Gnome Unicode Charmap"
+url="https://wiki.gnome.org/Apps/Gucharmap;
+arch=(x86_64)
+license=(GPL)
+depends=(dconf gtk3)
+makedepends=(gtk-doc intltool gobject-introspection itstool docbook-xsl
+ python2 appdata-tools unicode-character-database unzip 
gnome-common git)
+_commit=a4ddb0ad210018c3cc749115b7ec39e317461bd1  # master
+source=("git+https://gitlab.gnome.org/GNOME/gucharmap.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
--disable-static \
+--disable-schemas-compile --enable-introspection 
--with-unicode-data=/usr/share/unicode
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}


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

2018-09-08 Thread Jan Steffens via arch-commits
Date: Sunday, September 9, 2018 @ 00:34:07
  Author: heftig
Revision: 334172

3.30.0-2

Modified:
  sushi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-09-09 00:28:34 UTC (rev 334171)
+++ PKGBUILD2018-09-09 00:34:07 UTC (rev 334172)
@@ -3,7 +3,7 @@
 
 pkgname=sushi
 pkgver=3.30.0
-pkgrel=1
+pkgrel=2
 pkgdesc="A quick previewer for Nautilus"
 url="https://gitlab.gnome.org/GNOME/sushi;
 arch=(x86_64)


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

2018-09-08 Thread Jan Steffens via arch-commits
Date: Sunday, September 9, 2018 @ 00:31:50
  Author: heftig
Revision: 378839

3.30.0-3

Modified:
  gnome-boxes/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-09-08 23:56:55 UTC (rev 378838)
+++ PKGBUILD2018-09-09 00:31:50 UTC (rev 378839)
@@ -3,7 +3,7 @@
 
 pkgname=gnome-boxes
 pkgver=3.30.0
-pkgrel=2
+pkgrel=3
 pkgdesc="Simple GNOME application to access remote or virtual systems"
 arch=('x86_64')
 url="https://wiki.gnome.org/Boxes;


[arch-commits] Commit in gdm/repos/testing-x86_64 (6 files)

2018-09-08 Thread Jan Steffens via arch-commits
Date: Sunday, September 9, 2018 @ 01:05:55
  Author: heftig
Revision: 334184

archrelease: copy trunk to testing-x86_64

Added:
  gdm/repos/testing-x86_64/0002-Xsession-Don-t-start-ssh-agent-by-default.patch
(from rev 334183, 
gdm/trunk/0002-Xsession-Don-t-start-ssh-agent-by-default.patch)
  gdm/repos/testing-x86_64/PKGBUILD
(from rev 334183, gdm/trunk/PKGBUILD)
  gdm/repos/testing-x86_64/gdm.sysusers
(from rev 334183, gdm/trunk/gdm.sysusers)
Deleted:
  gdm/repos/testing-x86_64/0002-Xsession-Don-t-start-ssh-agent-by-default.patch
  gdm/repos/testing-x86_64/PKGBUILD
  gdm/repos/testing-x86_64/gdm.sysusers

--+
 0002-Xsession-Don-t-start-ssh-agent-by-default.patch |   62 ++---
 PKGBUILD |  180 -
 gdm.sysusers |4 
 3 files changed, 123 insertions(+), 123 deletions(-)

Deleted: 0002-Xsession-Don-t-start-ssh-agent-by-default.patch
===
--- 0002-Xsession-Don-t-start-ssh-agent-by-default.patch2018-09-09 
01:05:30 UTC (rev 334183)
+++ 0002-Xsession-Don-t-start-ssh-agent-by-default.patch2018-09-09 
01:05:55 UTC (rev 334184)
@@ -1,31 +0,0 @@
-From 8bf4d553ba9e7a5978ed8920ca0b06e624de2eda Mon Sep 17 00:00:00 2001
-From: "Jan Alexander Steffens (heftig)" 
-Date: Sat, 20 Jun 2015 17:22:38 +0200
-Subject: [PATCH 2/2] Xsession: Don't start ssh-agent by default
-

- data/Xsession.in | 8 
- 1 file changed, 8 deletions(-)
-
-diff --git a/data/Xsession.in b/data/Xsession.in
-index f253375..c143b30 100755
 a/data/Xsession.in
-+++ b/data/Xsession.in
-@@ -184,14 +184,6 @@ if [ "x$command" = "xdefault" ] ; then
-   fi
- fi
- 
--# add ssh-agent if found
--sshagent="`gdmwhich ssh-agent`"
--if [ -n "$sshagent" ] && [ -x "$sshagent" ] && [ -z "$SSH_AUTH_SOCK" ]; then
--command="$sshagent -- $command"
--elif [ -z "$sshagent" ] ; then
--echo "$0: ssh-agent not found!"
--fi
--
- echo "$0: Setup done, will execute: $command"
- 
- eval exec $command
--- 
-2.4.5
-

Copied: 
gdm/repos/testing-x86_64/0002-Xsession-Don-t-start-ssh-agent-by-default.patch 
(from rev 334183, 
gdm/trunk/0002-Xsession-Don-t-start-ssh-agent-by-default.patch)
===
--- 0002-Xsession-Don-t-start-ssh-agent-by-default.patch
(rev 0)
+++ 0002-Xsession-Don-t-start-ssh-agent-by-default.patch2018-09-09 
01:05:55 UTC (rev 334184)
@@ -0,0 +1,31 @@
+From 8bf4d553ba9e7a5978ed8920ca0b06e624de2eda Mon Sep 17 00:00:00 2001
+From: "Jan Alexander Steffens (heftig)" 
+Date: Sat, 20 Jun 2015 17:22:38 +0200
+Subject: [PATCH 2/2] Xsession: Don't start ssh-agent by default
+
+---
+ data/Xsession.in | 8 
+ 1 file changed, 8 deletions(-)
+
+diff --git a/data/Xsession.in b/data/Xsession.in
+index f253375..c143b30 100755
+--- a/data/Xsession.in
 b/data/Xsession.in
+@@ -184,14 +184,6 @@ if [ "x$command" = "xdefault" ] ; then
+   fi
+ fi
+ 
+-# add ssh-agent if found
+-sshagent="`gdmwhich ssh-agent`"
+-if [ -n "$sshagent" ] && [ -x "$sshagent" ] && [ -z "$SSH_AUTH_SOCK" ]; then
+-command="$sshagent -- $command"
+-elif [ -z "$sshagent" ] ; then
+-echo "$0: ssh-agent not found!"
+-fi
+-
+ echo "$0: Setup done, will execute: $command"
+ 
+ eval exec $command
+-- 
+2.4.5
+

Deleted: PKGBUILD
===
--- PKGBUILD2018-09-09 01:05:30 UTC (rev 334183)
+++ PKGBUILD2018-09-09 01:05:55 UTC (rev 334184)
@@ -1,90 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Maintainer: Jan de Groot 
-
-pkgbase=gdm
-pkgname=(gdm libgdm)
-pkgver=3.30.0+2+gef231c27
-pkgrel=1
-pkgdesc="Display manager and login screen"
-url="https://wiki.gnome.org/Projects/GDM;
-arch=(x86_64)
-license=(GPL)
-depends=(gnome-shell gnome-session upower xorg-xrdb xorg-server 
xorg-server-xwayland xorg-xhost)
-makedepends=(yelp-tools intltool gobject-introspection git docbook-xsl)
-checkdepends=(check)
-_commit=ef231c2790e7a3bbee3f09ac4a125e28e95011b4  # master
-source=("git+https://gitlab.gnome.org/GNOME/gdm.git#commit=$_commit;
-0002-Xsession-Don-t-start-ssh-agent-by-default.patch
-gdm.sysusers)
-sha256sums=('SKIP'
-'9449da0b6ee58aa3fde65e6d8d1f30513e4176a7dc6d176f17f320ce82cb1d82'
-'6d9c8e38c7de85b6ec75e488585b8c451f5d9b4fabd2a42921dc3bfcc4aa3e13')
-
-pkgver() {
-  cd $pkgbase
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgbase
-  patch -Np1 -i ../0002-Xsession-Don-t-start-ssh-agent-by-default.patch
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd $pkgbase
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---localstatedir=/var \
---sbindir=/usr/bin \
---libexecdir=/usr/lib \
---disable-schemas-compile \
---disable-static \
---enable-gdm-xsession \
---enable-ipv6 \
-

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

2018-09-08 Thread Jan Steffens via arch-commits
Date: Sunday, September 9, 2018 @ 01:05:30
  Author: heftig
Revision: 334183

3.30.0+4+g839c9501-1

Modified:
  gdm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-09-09 00:45:27 UTC (rev 334182)
+++ PKGBUILD2018-09-09 01:05:30 UTC (rev 334183)
@@ -3,7 +3,7 @@
 
 pkgbase=gdm
 pkgname=(gdm libgdm)
-pkgver=3.30.0+2+gef231c27
+pkgver=3.30.0+4+g839c9501
 pkgrel=1
 pkgdesc="Display manager and login screen"
 url="https://wiki.gnome.org/Projects/GDM;
@@ -12,7 +12,7 @@
 depends=(gnome-shell gnome-session upower xorg-xrdb xorg-server 
xorg-server-xwayland xorg-xhost)
 makedepends=(yelp-tools intltool gobject-introspection git docbook-xsl)
 checkdepends=(check)
-_commit=ef231c2790e7a3bbee3f09ac4a125e28e95011b4  # master
+_commit=839c9501959c95eea3b524d7e3710cdec6d97531  # master
 source=("git+https://gitlab.gnome.org/GNOME/gdm.git#commit=$_commit;
 0002-Xsession-Don-t-start-ssh-agent-by-default.patch
 gdm.sysusers)


[arch-commits] Commit in webkit2gtk/repos/testing-x86_64 (PKGBUILD PKGBUILD)

2018-09-08 Thread Jan Steffens via arch-commits
Date: Sunday, September 9, 2018 @ 01:42:33
  Author: heftig
Revision: 334186

archrelease: copy trunk to testing-x86_64

Added:
  webkit2gtk/repos/testing-x86_64/PKGBUILD
(from rev 334185, webkit2gtk/trunk/PKGBUILD)
Deleted:
  webkit2gtk/repos/testing-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-09-09 01:42:14 UTC (rev 334185)
+++ PKGBUILD2018-09-09 01:42:33 UTC (rev 334186)
@@ -1,60 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Eric Bélanger 
-
-pkgname=webkit2gtk
-pkgver=2.22.0
-pkgrel=1
-pkgdesc="GTK+ Web content engine library"
-arch=(x86_64)
-url="https://webkitgtk.org/;
-license=(custom)
-depends=(libxt libxslt enchant geoclue2 gst-plugins-base-libs
- libsecret libwebp harfbuzz-icu gtk3 libnotify hyphen woff2)
-makedepends=(gtk2 gperf gobject-introspection ruby gtk-doc cmake python 
python2 ninja)
-optdepends=('gtk2: Netscape plugin support'
-'gst-plugins-base: free media decoding'
-'gst-plugins-good: media decoding'
-'gst-libav: nonfree media decoding')
-source=(https://webkitgtk.org/releases/webkitgtk-${pkgver}.tar.xz{,.asc})
-sha256sums=('fa42b54a98831405c8a3e7f40371eec3f0bd5cdbb124813a5e329e7a9f8c6f2a'
-'SKIP')
-validpgpkeys=('D7FCF61CF9A2DEAB31D81BD3F3D322D0EC4582C3')
-
-prepare() {
-  mkdir build
-  cd webkitgtk-$pkgver
-  sed -i '1s/python$/&2/' Tools/gtk/generate-gtkdoc
-}
-
-build() {
-  cd build
-  cmake ../webkitgtk-$pkgver -G Ninja \
--DPORT=GTK \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_SKIP_RPATH=ON \
--DENABLE_GTKDOC=ON \
--DLIBEXEC_INSTALL_DIR=/usr/lib \
--DLIB_INSTALL_DIR=/usr/lib \
--DPYTHON_EXECUTABLE=/usr/bin/python2
-  cmake --build .
-}
-
-check() {
-  : cmake --build build --target tests
-}
-
-package() {
-  DESTDIR="$pkgdir" cmake --build build --target install
-
-  cd webkitgtk-$pkgver
-  find Source -name 'COPYING*' -or -name 'LICENSE*' -print0 | sort -z |
-while IFS= read -d $'\0' -r _f; do
-  echo "### $_f ###"
-  cat "$_f"
-  echo
-done |
-install -Dm644 /dev/stdin "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# vim:set sw=2 et:

Copied: webkit2gtk/repos/testing-x86_64/PKGBUILD (from rev 334185, 
webkit2gtk/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-09-09 01:42:33 UTC (rev 334186)
@@ -0,0 +1,60 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Eric Bélanger 
+
+pkgname=webkit2gtk
+pkgver=2.22.0
+pkgrel=2
+pkgdesc="GTK+ Web content engine library"
+arch=(x86_64)
+url="https://webkitgtk.org/;
+license=(custom)
+depends=(libxt libxslt enchant geoclue2 gst-plugins-base-libs
+ libsecret libwebp harfbuzz-icu gtk3 libnotify hyphen woff2)
+makedepends=(gtk2 gperf gobject-introspection ruby gtk-doc cmake python 
python2 ninja)
+optdepends=('gtk2: Netscape plugin support'
+'gst-plugins-base: free media decoding'
+'gst-plugins-good: media decoding'
+'gst-libav: nonfree media decoding')
+source=(https://webkitgtk.org/releases/webkitgtk-${pkgver}.tar.xz{,.asc})
+sha256sums=('fa42b54a98831405c8a3e7f40371eec3f0bd5cdbb124813a5e329e7a9f8c6f2a'
+'SKIP')
+validpgpkeys=('D7FCF61CF9A2DEAB31D81BD3F3D322D0EC4582C3')
+
+prepare() {
+  mkdir build
+  cd webkitgtk-$pkgver
+  sed -i '1s/python$/&2/' Tools/gtk/generate-gtkdoc
+}
+
+build() {
+  cd build
+  cmake ../webkitgtk-$pkgver -G Ninja \
+-DPORT=GTK \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_SKIP_RPATH=ON \
+-DENABLE_GTKDOC=ON \
+-DLIBEXEC_INSTALL_DIR=/usr/lib \
+-DLIB_INSTALL_DIR=/usr/lib \
+-DPYTHON_EXECUTABLE=/usr/bin/python2
+  cmake --build .
+}
+
+check() {
+  : cmake --build build --target tests
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --build build --target install
+
+  cd webkitgtk-$pkgver
+  find Source -name 'COPYING*' -or -name 'LICENSE*' -print0 | sort -z |
+while IFS= read -d $'\0' -r _f; do
+  echo "### $_f ###"
+  cat "$_f"
+  echo
+done |
+install -Dm644 /dev/stdin "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set sw=2 et:


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

2018-09-08 Thread Jan Steffens via arch-commits
Date: Sunday, September 9, 2018 @ 01:42:14
  Author: heftig
Revision: 334185

2.22.0-2

Modified:
  webkit2gtk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-09-09 01:05:55 UTC (rev 334184)
+++ PKGBUILD2018-09-09 01:42:14 UTC (rev 334185)
@@ -3,7 +3,7 @@
 
 pkgname=webkit2gtk
 pkgver=2.22.0
-pkgrel=1
+pkgrel=2
 pkgdesc="GTK+ Web content engine library"
 arch=(x86_64)
 url="https://webkitgtk.org/;


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

2018-09-08 Thread Felix Yan via arch-commits
Date: Saturday, September 8, 2018 @ 06:46:16
  Author: felixonmars
Revision: 378755

upgpkg: haskell-hsopenssl 0.11.4.15-1

rebuild with HsOpenSSL 0.11.4.15

Modified:
  haskell-hsopenssl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-09-08 03:42:02 UTC (rev 378754)
+++ PKGBUILD2018-09-08 06:46:16 UTC (rev 378755)
@@ -3,8 +3,8 @@
 
 _hkgname=HsOpenSSL
 pkgname=haskell-hsopenssl
-pkgver=0.11.4.14
-pkgrel=16
+pkgver=0.11.4.15
+pkgrel=1
 pkgdesc="Partial OpenSSL binding for Haskell"
 url="https://github.com/vshabanov/HsOpenSSL;
 license=('custom:PublicDomain')
@@ -12,7 +12,7 @@
 depends=('ghc-libs' 'haskell-network' 'openssl')
 makedepends=('ghc')
 
source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
-sha512sums=('bc1ed25df06d7ee1267f6880e02a6a194ee8a0c7f041b3e62999f2ea0ecd90734f6cb9c8348eb9e82ccf0c437035c732941c5a6e638c7d2e86a27a1a359561c6')
+sha512sums=('0d145d2a7fd839fb40cbfb11c35ce80abe3bd8b436ed19f2dea38d06670468c967ca1522a8bd37700537b4f3a245f95a5aadfcbc939d130d49c028c0d62c068f')
 
 build() {
 cd $_hkgname-$pkgver


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

2018-09-08 Thread Felix Yan via arch-commits
Date: Saturday, September 8, 2018 @ 06:46:37
  Author: felixonmars
Revision: 378756

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-hsopenssl/repos/community-staging-x86_64/PKGBUILD (from rev 
378755, haskell-hsopenssl/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-09-08 06:46:37 UTC (rev 378756)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=HsOpenSSL
+pkgname=haskell-hsopenssl
+pkgver=0.11.4.15
+pkgrel=1
+pkgdesc="Partial OpenSSL binding for Haskell"
+url="https://github.com/vshabanov/HsOpenSSL;
+license=('custom:PublicDomain')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-network' 'openssl')
+makedepends=('ghc')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('0d145d2a7fd839fb40cbfb11c35ce80abe3bd8b436ed19f2dea38d06670468c967ca1522a8bd37700537b4f3a245f95a5aadfcbc939d130d49c028c0d62c068f')
+
+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
+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 "COPYING" 
"${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/COPYING"
+}


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

2018-09-08 Thread Felix Yan via arch-commits
Date: Saturday, September 8, 2018 @ 06:47:27
  Author: felixonmars
Revision: 378757

upgpkg: haskell-openssl-streams 1.2.1.3-24

rebuild with HsOpenSSL 0.11.4.15

Modified:
  haskell-openssl-streams/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-09-08 06:46:37 UTC (rev 378756)
+++ PKGBUILD2018-09-08 06:47:27 UTC (rev 378757)
@@ -4,7 +4,7 @@
 _hkgname=openssl-streams
 pkgname=haskell-openssl-streams
 pkgver=1.2.1.3
-pkgrel=23
+pkgrel=24
 pkgdesc="OpenSSL network support for io-streams"
 url="https://github.com/snapframework/openssl-streams;
 license=('custom:BSD3')


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

2018-09-08 Thread Felix Yan via arch-commits
Date: Saturday, September 8, 2018 @ 06:47:43
  Author: felixonmars
Revision: 378758

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-openssl-streams/repos/community-staging-x86_64/
  haskell-openssl-streams/repos/community-staging-x86_64/PKGBUILD
(from rev 378757, haskell-openssl-streams/trunk/PKGBUILD)

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

Copied: haskell-openssl-streams/repos/community-staging-x86_64/PKGBUILD (from 
rev 378757, haskell-openssl-streams/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-09-08 06:47:43 UTC (rev 378758)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=openssl-streams
+pkgname=haskell-openssl-streams
+pkgver=1.2.1.3
+pkgrel=24
+pkgdesc="OpenSSL network support for io-streams"
+url="https://github.com/snapframework/openssl-streams;
+license=('custom:BSD3')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-hsopenssl' 'haskell-io-streams' 'haskell-network')
+makedepends=('ghc' 'haskell-hunit' 'haskell-test-framework' 
'haskell-test-framework-hunit')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('cdfa1d6946b1ed8750de55ecd8acfa1e65bcaa2b7531fefaf1fba4a9fc8e59f37261e2f8baee3ba04c4622fcc9af0d2b04986f5680e03729ba966946629c1ab2')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i 's/<.*2.7/<3/' $_hkgname.cabal
+}
+
+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
+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-snap-server/trunk (PKGBUILD)

2018-09-08 Thread Felix Yan via arch-commits
Date: Saturday, September 8, 2018 @ 06:51:46
  Author: felixonmars
Revision: 378759

upgpkg: haskell-snap-server 1.1.0.0-45

rebuild pass 1, specified --nocheck

Modified:
  haskell-snap-server/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-09-08 06:47:43 UTC (rev 378758)
+++ PKGBUILD2018-09-08 06:51:46 UTC (rev 378759)
@@ -4,7 +4,7 @@
 _hkgname=snap-server
 pkgname=haskell-snap-server
 pkgver=1.1.0.0
-pkgrel=44
+pkgrel=45
 pkgdesc="A web server for the Snap Framework"
 url="https://github.com/snapframework/snap-server;
 license=('custom:BSD3')


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

2018-09-08 Thread Felix Yan via arch-commits
Date: Saturday, September 8, 2018 @ 06:52:03
  Author: felixonmars
Revision: 378760

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-snap-server/repos/community-staging-x86_64/
  haskell-snap-server/repos/community-staging-x86_64/PKGBUILD
(from rev 378759, haskell-snap-server/trunk/PKGBUILD)

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

Copied: haskell-snap-server/repos/community-staging-x86_64/PKGBUILD (from rev 
378759, haskell-snap-server/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-09-08 06:52:03 UTC (rev 378760)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=snap-server
+pkgname=haskell-snap-server
+pkgver=1.1.0.0
+pkgrel=45
+pkgdesc="A web server for the Snap Framework"
+url="https://github.com/snapframework/snap-server;
+license=('custom:BSD3')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-attoparsec' 'haskell-blaze-builder' 
'haskell-case-insensitive'
+ 'haskell-clock' 'haskell-io-streams' 'haskell-io-streams-haproxy' 
'haskell-lifted-base'
+ 'haskell-network' 'haskell-old-locale' 'haskell-snap-core' 
'haskell-unix-compat'
+ 'haskell-vector')
+makedepends=('ghc')
+checkdepends=('haskell-base16-bytestring' 'haskell-monad-control' 
'haskell-random'
+ 'haskell-threads' 'haskell-hunit' 'haskell-quickcheck' 
'haskell-http-streams'
+ 'haskell-http-common' 'haskell-parallel' 'haskell-test-framework'
+ 'haskell-test-framework-hunit' 
'haskell-test-framework-quickcheck2')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('ccd438310746c59bd7456df69c072ad3a2d473eb69f721fe2c91e086f4916d386c8b83a786d7ff9de11f0ce5294e36034baf10b0a109c65e16ec771e688a1184')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i -e '/bytestring-builder/d' -e 's/<.*2.7/<3/' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+if (( CHECKFUNC )); then
+_opts=('--enable-tests')
+else
+_opts=('--disable-tests')
+fi
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" "${_opts[@]}" \
+--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
+}
+
+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-http-streams/repos (2 files)

2018-09-08 Thread Felix Yan via arch-commits
Date: Saturday, September 8, 2018 @ 06:56:01
  Author: felixonmars
Revision: 378762

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-http-streams/repos/community-staging-x86_64/
  haskell-http-streams/repos/community-staging-x86_64/PKGBUILD
(from rev 378761, haskell-http-streams/trunk/PKGBUILD)

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

Copied: haskell-http-streams/repos/community-staging-x86_64/PKGBUILD (from rev 
378761, haskell-http-streams/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-09-08 06:56:01 UTC (rev 378762)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=http-streams
+pkgname=haskell-http-streams
+pkgver=0.8.6.1
+pkgrel=53
+pkgdesc="An HTTP client using io-streams"
+url="https://github.com/afcowie/http-streams;
+license=('custom:BSD3')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-attoparsec' 'haskell-base64-bytestring' 
'haskell-blaze-builder'
+ 'haskell-case-insensitive' 'haskell-io-streams' 'haskell-hsopenssl'
+ 'haskell-openssl-streams' 'haskell-unordered-containers' 
'haskell-aeson'
+ 'haskell-http-common' 'haskell-network' 'haskell-network-uri')
+makedepends=('ghc')
+checkdepends=('haskell-hunit' 'haskell-aeson-pretty' 'haskell-hspec'
+ 'haskell-hspec-expectations' 'haskell-snap-core' 
'haskell-snap-server'
+ 'haskell-system-fileio' 'haskell-system-filepath')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('76f6aa750974cdca834dfa7de79ebf22faa1cd0a40426d4df19f24b0699ce2d86a0b1f512846da4daf52f210607ed823690bab3fd1bb7ebe117f705a92d4a3b4')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i 's/<.*1.1/<2/' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+if (( CHECKFUNC )); then
+_opts=('--enable-tests')
+else
+_opts=('--disable-tests')
+fi
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" "${_opts[@]}" \
+--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
+}
+
+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 "LICENCE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENCE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENCE"
+}


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

2018-09-08 Thread Felix Yan via arch-commits
Date: Saturday, September 8, 2018 @ 06:55:45
  Author: felixonmars
Revision: 378761

upgpkg: haskell-http-streams 0.8.6.1-53

rebuild with HsOpenSSL 0.11.4.15

Modified:
  haskell-http-streams/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-09-08 06:52:03 UTC (rev 378760)
+++ PKGBUILD2018-09-08 06:55:45 UTC (rev 378761)
@@ -4,7 +4,7 @@
 _hkgname=http-streams
 pkgname=haskell-http-streams
 pkgver=0.8.6.1
-pkgrel=52
+pkgrel=53
 pkgdesc="An HTTP client using io-streams"
 url="https://github.com/afcowie/http-streams;
 license=('custom:BSD3')


[arch-commits] Commit in haskell-snap-server/repos/community-staging-x86_64 (2 files)

2018-09-08 Thread Felix Yan via arch-commits
Date: Saturday, September 8, 2018 @ 06:58:30
  Author: felixonmars
Revision: 378764

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-snap-server/repos/community-staging-x86_64/PKGBUILD
(from rev 378763, haskell-snap-server/trunk/PKGBUILD)
Deleted:
  haskell-snap-server/repos/community-staging-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-09-08 06:58:11 UTC (rev 378763)
+++ PKGBUILD2018-09-08 06:58:30 UTC (rev 378764)
@@ -1,61 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-_hkgname=snap-server
-pkgname=haskell-snap-server
-pkgver=1.1.0.0
-pkgrel=45
-pkgdesc="A web server for the Snap Framework"
-url="https://github.com/snapframework/snap-server;
-license=('custom:BSD3')
-arch=('x86_64')
-depends=('ghc-libs' 'haskell-attoparsec' 'haskell-blaze-builder' 
'haskell-case-insensitive'
- 'haskell-clock' 'haskell-io-streams' 'haskell-io-streams-haproxy' 
'haskell-lifted-base'
- 'haskell-network' 'haskell-old-locale' 'haskell-snap-core' 
'haskell-unix-compat'
- 'haskell-vector')
-makedepends=('ghc')
-checkdepends=('haskell-base16-bytestring' 'haskell-monad-control' 
'haskell-random'
- 'haskell-threads' 'haskell-hunit' 'haskell-quickcheck' 
'haskell-http-streams'
- 'haskell-http-common' 'haskell-parallel' 'haskell-test-framework'
- 'haskell-test-framework-hunit' 
'haskell-test-framework-quickcheck2')
-source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
-sha512sums=('ccd438310746c59bd7456df69c072ad3a2d473eb69f721fe2c91e086f4916d386c8b83a786d7ff9de11f0ce5294e36034baf10b0a109c65e16ec771e688a1184')
-
-prepare() {
-cd $_hkgname-$pkgver
-sed -i -e '/bytestring-builder/d' -e 's/<.*2.7/<3/' $_hkgname.cabal
-}
-
-build() {
-cd $_hkgname-$pkgver
-
-if (( CHECKFUNC )); then
-_opts=('--enable-tests')
-else
-_opts=('--disable-tests')
-fi
-
-runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
---prefix=/usr --docdir="/usr/share/doc/${pkgname}" "${_opts[@]}" \
---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
-}
-
-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"
-}

Copied: haskell-snap-server/repos/community-staging-x86_64/PKGBUILD (from rev 
378763, haskell-snap-server/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-09-08 06:58:30 UTC (rev 378764)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=snap-server
+pkgname=haskell-snap-server
+pkgver=1.1.0.0
+pkgrel=46
+pkgdesc="A web server for the Snap Framework"
+url="https://github.com/snapframework/snap-server;
+license=('custom:BSD3')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-attoparsec' 'haskell-blaze-builder' 
'haskell-case-insensitive'
+ 'haskell-clock' 'haskell-io-streams' 'haskell-io-streams-haproxy' 
'haskell-lifted-base'
+ 'haskell-network' 'haskell-old-locale' 'haskell-snap-core' 
'haskell-unix-compat'
+ 'haskell-vector')
+makedepends=('ghc')
+checkdepends=('haskell-base16-bytestring' 'haskell-monad-control' 
'haskell-random'
+ 'haskell-threads' 'haskell-hunit' 'haskell-quickcheck' 
'haskell-http-streams'
+ 'haskell-http-common' 'haskell-parallel' 'haskell-test-framework'
+ 'haskell-test-framework-hunit' 
'haskell-test-framework-quickcheck2')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('ccd438310746c59bd7456df69c072ad3a2d473eb69f721fe2c91e086f4916d386c8b83a786d7ff9de11f0ce5294e36034baf10b0a109c65e16ec771e688a1184')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i -e '/bytestring-builder/d' -e 's/<.*2.7/<3/' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+if (( CHECKFUNC )); then
+_opts=('--enable-tests')
+else
+_opts=('--disable-tests')
+fi
+
+runhaskell Setup configure -O --enable-shared 

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

2018-09-08 Thread Felix Yan via arch-commits
Date: Saturday, September 8, 2018 @ 06:58:11
  Author: felixonmars
Revision: 378763

upgpkg: haskell-snap-server 1.1.0.0-46

rebuild with HsOpenSSL 0.11.4.15

Modified:
  haskell-snap-server/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-09-08 06:56:01 UTC (rev 378762)
+++ PKGBUILD2018-09-08 06:58:11 UTC (rev 378763)
@@ -4,7 +4,7 @@
 _hkgname=snap-server
 pkgname=haskell-snap-server
 pkgver=1.1.0.0
-pkgrel=45
+pkgrel=46
 pkgdesc="A web server for the Snap Framework"
 url="https://github.com/snapframework/snap-server;
 license=('custom:BSD3')


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

2018-09-08 Thread Felix Yan via arch-commits
Date: Saturday, September 8, 2018 @ 07:06:57
  Author: felixonmars
Revision: 378766

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-wreq/repos/community-staging-x86_64/PKGBUILD (from rev 378765, 
haskell-wreq/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-09-08 07:06:57 UTC (rev 378766)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=wreq
+pkgname=haskell-wreq
+pkgver=0.5.2.1
+pkgrel=55
+pkgdesc="An easy-to-use HTTP client library."
+url="https://github.com/bos/wreq;
+license=('custom:BSD3')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-attoparsec' 
'haskell-authenticate-oauth'
+ 'haskell-base16-bytestring' 'haskell-case-insensitive' 
'haskell-cryptonite'
+ 'haskell-exceptions' 'haskell-hashable' 'haskell-http-client' 
'haskell-http-client-tls'
+ 'haskell-http-types' 'haskell-lens' 'haskell-lens-aeson' 
'haskell-memory'
+ 'haskell-mime-types' 'haskell-psqueues' 'haskell-time-locale-compat'
+ 'haskell-unordered-containers' 'haskell-aeson-pretty' 
'haskell-base64-bytestring'
+ 'haskell-snap-core' 'haskell-snap-server' 'haskell-unix-compat' 
'haskell-uuid')
+makedepends=('ghc' 'haskell-cabal-doctest' 'haskell-doctest' 'haskell-hunit' 
'haskell-quickcheck'
+ 'haskell-network-info' 'haskell-temporary' 
'haskell-test-framework'
+ 'haskell-test-framework-hunit' 
'haskell-test-framework-quickcheck2' 'haskell-vector')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('4054c9951417e65ad7b215f1fdfa497513daa52b18242b4c20ea14a76030ba91a34fed664bd3bd06f6a62a38c3d5d09ada171ad3ca1d43928c709ffc44560b2f')
+
+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 \
+-fdoctest -f-aws -fhttpbin -f-developer
+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.md" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.md"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE.md"
+}


  1   2   3   >