[arch-commits] Commit in python-jsonpatch/repos/community-any (3 files)

2017-01-13 Thread Felix Yan
Date: Saturday, January 14, 2017 @ 03:18:45
  Author: felixonmars
Revision: 207286

archrelease: copy trunk to community-any

Added:
  python-jsonpatch/repos/community-any/PKGBUILD
(from rev 207285, python-jsonpatch/trunk/PKGBUILD)
Deleted:
  python-jsonpatch/repos/community-any/PKGBUILD
  python-jsonpatch/repos/community-any/python3.6.patch

-+
 PKGBUILD|  125 ++
 python3.6.patch |   29 
 2 files changed, 61 insertions(+), 93 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-01-14 03:18:23 UTC (rev 207285)
+++ PKGBUILD2017-01-14 03:18:45 UTC (rev 207286)
@@ -1,64 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Daniel Wallace 
-# Contributor: Limao Luo 
-
-pkgbase=python-jsonpatch
-_pkgname=jsonpatch
-pkgname=(python-jsonpatch python2-jsonpatch)
-pkgver=1.14
-pkgrel=2
-pkgdesc="An implementation of the JSON Patch format"
-arch=("any")
-url="https://github.com/stefankoegl/python-json-patch;
-license=("BSD")
-makedepends=("python-setuptools" "python2-setuptools" "python-jsonpointer" 
"python2-jsonpointer"
- "python-pypandoc" "python2-pypandoc" "git")
-checkdepends=('python-coverage' 'python2-coverage')
-source=("git+https://github.com/stefankoegl/python-json-patch.git#tag=v$pkgver;
-python3.6.patch)
-sha512sums=('SKIP'
-
'e6f536bf89002cbdce63828fbc9f37690cf23fddad3b300258766b18bd735fc9ac22f6cd3f8ecf59e79206721ca31b2867ab1518efb578d86f485a2d63b07fcc')
-
-prepare(){
-  (cd python-json-patch; patch -p1 -i ../python3.6.patch)
-
-  cp -a python-json-patch{,-py2}
-  find python-json-patch-py2 -name \*.py -exec sed -i '1s/python$/&2/' {} +
-}
-
-build() {
-  cd "$srcdir"/python-json-patch
-  python setup.py build
-
-  cd "$srcdir"/python-json-patch-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/python-json-patch
-  coverage run --source=jsonpatch tests.py
-
-  cd "$srcdir"/python-json-patch-py2
-  coverage2 run --source=jsonpatch tests.py
-}
-
-package_python-jsonpatch() {
-  depends=("python-jsonpointer")
-
-  cd "$srcdir"/python-json-patch
-
-  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
-  python setup.py install --prefix=/usr --root="$pkgdir"
-}
-package_python2-jsonpatch() {
-  depends=("python2-jsonpointer")
-
-  cd "$srcdir"/python-json-patch-py2
-
-  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
-  python2 setup.py install --prefix=/usr --root="$pkgdir"
-  for _bin in "$pkgdir"/usr/bin/*; do
-mv "$_bin"{,2}
-  done
-}

Copied: python-jsonpatch/repos/community-any/PKGBUILD (from rev 207285, 
python-jsonpatch/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-01-14 03:18:45 UTC (rev 207286)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Daniel Wallace 
+# Contributor: Limao Luo 
+
+pkgbase=python-jsonpatch
+_pkgname=jsonpatch
+pkgname=(python-jsonpatch python2-jsonpatch)
+pkgver=1.15
+_commit=27f1f987e0c9d101a8dc01cc322d5f31ca89d074
+pkgrel=1
+pkgdesc="An implementation of the JSON Patch format"
+arch=("any")
+url="https://github.com/stefankoegl/python-json-patch;
+license=("BSD")
+makedepends=("python-setuptools" "python2-setuptools" "python-jsonpointer" 
"python2-jsonpointer"
+ "python-pypandoc" "python2-pypandoc" "git")
+checkdepends=('python-coverage' 'python2-coverage')
+source=("git+https://github.com/stefankoegl/python-json-patch.git#commit=$_commit;)
+sha512sums=('SKIP')
+
+prepare(){
+  cp -a python-json-patch{,-py2}
+  find python-json-patch-py2 -name \*.py -exec sed -i '1s/python$/&2/' {} +
+}
+
+build() {
+  cd "$srcdir"/python-json-patch
+  python setup.py build
+
+  cd "$srcdir"/python-json-patch-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/python-json-patch
+  coverage run --source=jsonpatch tests.py
+
+  cd "$srcdir"/python-json-patch-py2
+  coverage2 run --source=jsonpatch tests.py
+}
+
+package_python-jsonpatch() {
+  depends=("python-jsonpointer")
+
+  cd "$srcdir"/python-json-patch
+
+  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+  python setup.py install --prefix=/usr --root="$pkgdir"
+}
+package_python2-jsonpatch() {
+  depends=("python2-jsonpointer")
+
+  cd "$srcdir"/python-json-patch-py2
+
+  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+  python2 setup.py install --prefix=/usr --root="$pkgdir"
+  for _bin in "$pkgdir"/usr/bin/*; do
+mv "$_bin"{,2}
+  done
+}

Deleted: python3.6.patch
===
--- python3.6.patch 2017-01-14 03:18:23 UTC (rev 207285)
+++ python3.6.patch 2017-01-14 03:18:45 UTC (rev 207286)
@@ -1,29 +0,0 @@
-From 

[arch-commits] Commit in python-jsonpatch/trunk (PKGBUILD python3.6.patch)

2017-01-13 Thread Felix Yan
Date: Saturday, January 14, 2017 @ 03:18:23
  Author: felixonmars
Revision: 207285

upgpkg: python-jsonpatch 1.15-1

Modified:
  python-jsonpatch/trunk/PKGBUILD
Deleted:
  python-jsonpatch/trunk/python3.6.patch

-+
 PKGBUILD|   13 +
 python3.6.patch |   29 -
 2 files changed, 5 insertions(+), 37 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-01-13 22:51:49 UTC (rev 207284)
+++ PKGBUILD2017-01-14 03:18:23 UTC (rev 207285)
@@ -6,8 +6,9 @@
 pkgbase=python-jsonpatch
 _pkgname=jsonpatch
 pkgname=(python-jsonpatch python2-jsonpatch)
-pkgver=1.14
-pkgrel=2
+pkgver=1.15
+_commit=27f1f987e0c9d101a8dc01cc322d5f31ca89d074
+pkgrel=1
 pkgdesc="An implementation of the JSON Patch format"
 arch=("any")
 url="https://github.com/stefankoegl/python-json-patch;
@@ -15,14 +16,10 @@
 makedepends=("python-setuptools" "python2-setuptools" "python-jsonpointer" 
"python2-jsonpointer"
  "python-pypandoc" "python2-pypandoc" "git")
 checkdepends=('python-coverage' 'python2-coverage')
-source=("git+https://github.com/stefankoegl/python-json-patch.git#tag=v$pkgver;
-python3.6.patch)
-sha512sums=('SKIP'
-
'e6f536bf89002cbdce63828fbc9f37690cf23fddad3b300258766b18bd735fc9ac22f6cd3f8ecf59e79206721ca31b2867ab1518efb578d86f485a2d63b07fcc')
+source=("git+https://github.com/stefankoegl/python-json-patch.git#commit=$_commit;)
+sha512sums=('SKIP')
 
 prepare(){
-  (cd python-json-patch; patch -p1 -i ../python3.6.patch)
-
   cp -a python-json-patch{,-py2}
   find python-json-patch-py2 -name \*.py -exec sed -i '1s/python$/&2/' {} +
 }

Deleted: python3.6.patch
===
--- python3.6.patch 2017-01-13 22:51:49 UTC (rev 207284)
+++ python3.6.patch 2017-01-14 03:18:23 UTC (rev 207285)
@@ -1,29 +0,0 @@
-From d6e9a0047bad780b53151f572ea257f1cb6ebe41 Mon Sep 17 00:00:00 2001
-From: Victor Stinner 
-Date: Wed, 29 Jun 2016 11:13:00 +0200
-Subject: [PATCH] Use inspect.signature() on Python 3
-
-The inspect.getargspec() function has been deprecated in Python 3:
-https://docs.python.org/3/library/inspect.html#inspect.getargspec

- jsonpatch.py | 7 +--
- 1 file changed, 5 insertions(+), 2 deletions(-)
-
-diff --git a/jsonpatch.py b/jsonpatch.py
-index 32508e2..3c83f61 100644
 a/jsonpatch.py
-+++ b/jsonpatch.py
-@@ -105,8 +105,11 @@ def get_loadjson():
- function with object_pairs_hook set to multidict for Python versions that
- support the parameter. """
- 
--argspec = inspect.getargspec(json.load)
--if 'object_pairs_hook' not in argspec.args:
-+if sys.version_info >= (3, 3):
-+args = inspect.signature(json.load).parameters
-+else:
-+args = inspect.getargspec(json.load).args
-+if 'object_pairs_hook' not in args:
- return json.load
- 
- return functools.partial(json.load, object_pairs_hook=multidict)


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

2017-01-13 Thread Christian Hesse
Date: Saturday, January 14, 2017 @ 01:44:13
  Author: eworm
Revision: 286266

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

Added:
  libarchive/repos/testing-i686/
  libarchive/repos/testing-i686/PKGBUILD
(from rev 286265, libarchive/trunk/PKGBUILD)
  libarchive/repos/testing-x86_64/
  libarchive/repos/testing-x86_64/PKGBUILD
(from rev 286265, libarchive/trunk/PKGBUILD)

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

Copied: libarchive/repos/testing-i686/PKGBUILD (from rev 286265, 
libarchive/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2017-01-14 01:44:13 UTC (rev 286266)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Dan McGee 
+
+pkgname=libarchive
+pkgver=3.2.2
+pkgrel=2
+pkgdesc="library that can create and read several streaming archive formats"
+arch=('i686' 'x86_64')
+url="http://libarchive.org/;
+license=('BSD')
+depends=('acl' 'attr' 'bzip2' 'expat' 'lz4' 'lzo' 'openssl' 'xz' 'zlib')
+options=('strip' 'debug' 'libtool')
+provides=('libarchive.so')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/$pkgname/$pkgname/archive/v$pkgver.tar.gz;)
+sha256sums=('edfc2ee7d42dd03228d0fa3bb9cbaade454557b326b2608b2e32c27aae62bdd4')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  autoreconf -fi
+  ./configure \
+  --prefix=/usr \
+  --without-xml2 \
+  --without-nettle
+
+  make
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+
+  make check
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+  install -D -m644 COPYING "$pkgdir"/usr/share/licenses/libarchive/COPYING
+}

Copied: libarchive/repos/testing-x86_64/PKGBUILD (from rev 286265, 
libarchive/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2017-01-14 01:44:13 UTC (rev 286266)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Dan McGee 
+
+pkgname=libarchive
+pkgver=3.2.2
+pkgrel=2
+pkgdesc="library that can create and read several streaming archive formats"
+arch=('i686' 'x86_64')
+url="http://libarchive.org/;
+license=('BSD')
+depends=('acl' 'attr' 'bzip2' 'expat' 'lz4' 'lzo' 'openssl' 'xz' 'zlib')
+options=('strip' 'debug' 'libtool')
+provides=('libarchive.so')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/$pkgname/$pkgname/archive/v$pkgver.tar.gz;)
+sha256sums=('edfc2ee7d42dd03228d0fa3bb9cbaade454557b326b2608b2e32c27aae62bdd4')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  autoreconf -fi
+  ./configure \
+  --prefix=/usr \
+  --without-xml2 \
+  --without-nettle
+
+  make
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+
+  make check
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+  install -D -m644 COPYING "$pkgdir"/usr/share/licenses/libarchive/COPYING
+}


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

2017-01-13 Thread Christian Hesse
Date: Saturday, January 14, 2017 @ 01:44:05
  Author: eworm
Revision: 286265

upgpkg: libarchive 3.2.2-2

download tarball from github.com (where https is available)

Modified:
  libarchive/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-14 00:53:33 UTC (rev 286264)
+++ PKGBUILD2017-01-14 01:44:05 UTC (rev 286265)
@@ -3,7 +3,7 @@
 
 pkgname=libarchive
 pkgver=3.2.2
-pkgrel=1
+pkgrel=2
 pkgdesc="library that can create and read several streaming archive formats"
 arch=('i686' 'x86_64')
 url="http://libarchive.org/;
@@ -11,12 +11,13 @@
 depends=('acl' 'attr' 'bzip2' 'expat' 'lz4' 'lzo' 'openssl' 'xz' 'zlib')
 options=('strip' 'debug' 'libtool')
 provides=('libarchive.so')
-source=("http://libarchive.org/downloads/$pkgname-$pkgver.tar.gz;)
-md5sums=('1ec00b7dcaf969dd2a5712f85f23c764')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/$pkgname/$pkgname/archive/v$pkgver.tar.gz;)
+sha256sums=('edfc2ee7d42dd03228d0fa3bb9cbaade454557b326b2608b2e32c27aae62bdd4')
 
 build() {
   cd "$pkgname-$pkgver"
 
+  autoreconf -fi
   ./configure \
   --prefix=/usr \
   --without-xml2 \


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

2017-01-13 Thread Antonio Rojas
Date: Friday, January 13, 2017 @ 23:52:19
  Author: arojas
Revision: 286263

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

Added:
  qt5-webengine/repos/staging-i686/
  qt5-webengine/repos/staging-i686/PKGBUILD
(from rev 286262, qt5-webengine/trunk/PKGBUILD)
  qt5-webengine/repos/staging-i686/qt5-webengine-nss.patch
(from rev 286262, qt5-webengine/trunk/qt5-webengine-nss.patch)
  qt5-webengine/repos/staging-i686/qtwebengine-5.7.0-icu58.patch
(from rev 286262, qt5-webengine/trunk/qtwebengine-5.7.0-icu58.patch)
  qt5-webengine/repos/staging-x86_64/
  qt5-webengine/repos/staging-x86_64/PKGBUILD
(from rev 286262, qt5-webengine/trunk/PKGBUILD)
  qt5-webengine/repos/staging-x86_64/qt5-webengine-nss.patch
(from rev 286262, qt5-webengine/trunk/qt5-webengine-nss.patch)
  qt5-webengine/repos/staging-x86_64/qtwebengine-5.7.0-icu58.patch
(from rev 286262, qt5-webengine/trunk/qtwebengine-5.7.0-icu58.patch)

--+
 staging-i686/PKGBUILD|   58 +
 staging-i686/qt5-webengine-nss.patch |   31 +
 staging-i686/qtwebengine-5.7.0-icu58.patch   |   51 +
 staging-x86_64/PKGBUILD  |   58 +
 staging-x86_64/qt5-webengine-nss.patch   |   31 +
 staging-x86_64/qtwebengine-5.7.0-icu58.patch |   51 +
 6 files changed, 280 insertions(+)

Copied: qt5-webengine/repos/staging-i686/PKGBUILD (from rev 286262, 
qt5-webengine/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2017-01-13 23:52:19 UTC (rev 286263)
@@ -0,0 +1,58 @@
+# $Id: PKGBUILD 240297 2015-06-03 10:22:03Z fyan $
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt5-webengine
+_qtver=5.7.1
+pkgver=${_qtver/-/}
+pkgrel=2
+arch=('i686' 'x86_64')
+url='http://qt-project.org/'
+license=('LGPL3' 'LGPL2.1' 'BSD')
+pkgdesc='Provides support for web applications using the Chromium browser 
project'
+depends=('qt5-webchannel' 'qt5-location' 'libxcomposite' 'libxrandr' 
'pciutils' 'libxss' 'libvpx'
+ 'libevent' 'libsrtp' 'snappy' 'nss' 'protobuf' 'libxslt' 'minizip' 
'ffmpeg')
+makedepends=('python2' 'git' 'gperf' 'jsoncpp')
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-opensource-src-${_qtver}"
+source=("http://download.qt.io/official_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;
 qt5-webengine-nss.patch
+qtwebengine-5.7.0-icu58.patch)
+
+md5sums=('c90fba515fb33c091904fe2cadbb345a'
+ '2a1610b34204102938a24154a52e5571'
+ 'c2ffb0073e6f67a0a77a8fe39f9e9859')
+
+prepare() {
+  mkdir -p build
+
+  # Hack to force using python2
+  mkdir -p bin
+  ln -s /usr/bin/python2 bin/python
+
+  # Fix opening some websites with recent NSS 
https://github.com/QupZilla/qupzilla/issues/1870 (KaOSx patch)
+  cd ${_pkgfqn}
+ # patch -p1 -i ../qt5-webengine-nss.patch
+
+  # Fix build with ICU 58 (gentoo)
+  patch -p1 -i "$srcdir"/qtwebengine-5.7.0-icu58.patch
+}
+
+build() {
+  cd build
+
+  export PATH="$srcdir/bin:$PATH"
+  export CXXFLAGS+=" -fno-delete-null-pointer-checks"
+  qmake WEBENGINE_CONFIG+="use_proprietary_codecs use_system_ffmpeg 
use_system_icu" ../${_pkgfqn}
+  make
+}
+
+package() {
+  cd build
+  make INSTALL_ROOT="$pkgdir" install
+
+  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
+  find "$pkgdir/usr/lib" -type f -name '*.prl' \
+-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
+
+  install -Dm644 "$srcdir"/${_pkgfqn}/src/3rdparty/chromium/LICENSE 
"$pkgdir"/usr/share/licenses/${pkgname}/LICENSE.chromium
+}

Copied: qt5-webengine/repos/staging-i686/qt5-webengine-nss.patch (from rev 
286262, qt5-webengine/trunk/qt5-webengine-nss.patch)
===
--- staging-i686/qt5-webengine-nss.patch(rev 0)
+++ staging-i686/qt5-webengine-nss.patch2017-01-13 23:52:19 UTC (rev 
286263)
@@ -0,0 +1,31 @@
+diff -ur 
qtwebengine-opensource-src-5.6.0-beta/src/3rdparty/chromium/net/socket/ssl_client_socket_openssl.cc
 
+qtwebengine-opensource-src-5.6.0-beta-chimera-nss-init/src/3rdparty/chromium/net/socket/ssl_client_socket_openssl.cc
+--- 
qtwebengine-opensource-src-5.6.0-beta/src/3rdparty/chromium/net/socket/ssl_client_socket_openssl.cc
2015-12-10 18:17:21.0 +0100
 
qtwebengine-opensource-src-5.6.0-beta-chimera-nss-init/src/3rdparty/chromium/net/socket/ssl_client_socket_openssl.cc
   2016-01-14 
+17:11:38.432633534 +0100
+@@ -57,6 +57,10 @@
+ #include "net/ssl/ssl_platform_key.h"
+ #endif
+ 
++#if defined(USE_NSS_CERTS) || defined(OS_IOS)
++#include "net/cert_net/nss_ocsp.h"
++#endif
++
+ namespace net {
+ 
+ namespace {
+@@ -795,6 +799,14 @@
+   DCHECK(!ssl_);
+   

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

2017-01-13 Thread Antonio Rojas
Date: Friday, January 13, 2017 @ 23:51:41
  Author: arojas
Revision: 286262

protobuf 3.1.0 rebuild

Modified:
  qt5-webengine/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-13 22:17:28 UTC (rev 286261)
+++ PKGBUILD2017-01-13 23:51:41 UTC (rev 286262)
@@ -5,7 +5,7 @@
 pkgname=qt5-webengine
 _qtver=5.7.1
 pkgver=${_qtver/-/}
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 url='http://qt-project.org/'
 license=('LGPL3' 'LGPL2.1' 'BSD')


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

2017-01-13 Thread Daniel Micay
Date: Friday, January 13, 2017 @ 22:51:49
  Author: thestinger
Revision: 207284

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

Added:
  linux-grsec/repos/community-i686/99-linux.hook
(from rev 207283, linux-grsec/trunk/99-linux.hook)
  linux-grsec/repos/community-i686/PKGBUILD
(from rev 207283, linux-grsec/trunk/PKGBUILD)
  linux-grsec/repos/community-i686/change-default-console-loglevel.patch
(from rev 207283, linux-grsec/trunk/change-default-console-loglevel.patch)
  linux-grsec/repos/community-i686/config
(from rev 207283, linux-grsec/trunk/config)
  linux-grsec/repos/community-i686/config.x86_64
(from rev 207283, linux-grsec/trunk/config.x86_64)
  linux-grsec/repos/community-i686/linux-grsec.install
(from rev 207283, linux-grsec/trunk/linux-grsec.install)
  linux-grsec/repos/community-i686/linux.preset
(from rev 207283, linux-grsec/trunk/linux.preset)
  linux-grsec/repos/community-x86_64/99-linux.hook
(from rev 207283, linux-grsec/trunk/99-linux.hook)
  linux-grsec/repos/community-x86_64/PKGBUILD
(from rev 207283, linux-grsec/trunk/PKGBUILD)
  linux-grsec/repos/community-x86_64/change-default-console-loglevel.patch
(from rev 207283, linux-grsec/trunk/change-default-console-loglevel.patch)
  linux-grsec/repos/community-x86_64/config
(from rev 207283, linux-grsec/trunk/config)
  linux-grsec/repos/community-x86_64/config.x86_64
(from rev 207283, linux-grsec/trunk/config.x86_64)
  linux-grsec/repos/community-x86_64/linux-grsec.install
(from rev 207283, linux-grsec/trunk/linux-grsec.install)
  linux-grsec/repos/community-x86_64/linux.preset
(from rev 207283, linux-grsec/trunk/linux.preset)
Deleted:
  linux-grsec/repos/community-i686/99-linux.hook
  linux-grsec/repos/community-i686/PKGBUILD
  linux-grsec/repos/community-i686/change-default-console-loglevel.patch
  linux-grsec/repos/community-i686/config
  linux-grsec/repos/community-i686/config.x86_64
  linux-grsec/repos/community-i686/linux-grsec.install
  linux-grsec/repos/community-i686/linux.preset
  linux-grsec/repos/community-x86_64/99-linux.hook
  linux-grsec/repos/community-x86_64/PKGBUILD
  linux-grsec/repos/community-x86_64/change-default-console-loglevel.patch
  linux-grsec/repos/community-x86_64/config
  linux-grsec/repos/community-x86_64/config.x86_64
  linux-grsec/repos/community-x86_64/linux-grsec.install
  linux-grsec/repos/community-x86_64/linux.preset

+
 /99-linux.hook |   22 
 /PKGBUILD  |  638 
 /change-default-console-loglevel.patch |   22 
 /config|16548 +++
 /config.x86_64 |15948 ++
 /linux-grsec.install   |   54 
 /linux.preset  |   28 
 community-i686/99-linux.hook   |   11 
 community-i686/PKGBUILD|  319 
 community-i686/change-default-console-loglevel.patch   |   11 
 community-i686/config  | 8274 ---
 community-i686/config.x86_64   | 7974 ---
 community-i686/linux-grsec.install |   27 
 community-i686/linux.preset|   14 
 community-x86_64/99-linux.hook |   11 
 community-x86_64/PKGBUILD  |  319 
 community-x86_64/change-default-console-loglevel.patch |   11 
 community-x86_64/config| 8274 ---
 community-x86_64/config.x86_64 | 7974 ---
 community-x86_64/linux-grsec.install   |   27 
 community-x86_64/linux.preset  |   14 
 21 files changed, 33260 insertions(+), 33260 deletions(-)

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


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

2017-01-13 Thread Daniel Micay
Date: Friday, January 13, 2017 @ 22:50:39
  Author: thestinger
Revision: 207283

upgpkg: linux-grsec 1:4.8.17.r201701121950-1

Modified:
  linux-grsec/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-13 21:34:51 UTC (rev 207282)
+++ PKGBUILD2017-01-13 22:50:39 UTC (rev 207283)
@@ -9,7 +9,7 @@
 _srcname=linux-4.8
 _pkgver=4.8.17
 _grsecver=3.1
-_timestamp=201701090823
+_timestamp=201701121950
 _grsec_patch="grsecurity-$_grsecver-$_pkgver-$_timestamp.patch"
 epoch=1
 pkgver=$_pkgver.r$_timestamp
@@ -38,7 +38,7 @@
 'SKIP'
 '1e4be6f6a8eab3edcd0899db382fe1a9330320c603a9ad2c32ebb1dc6f53b3db'
 'SKIP'
-'e0520f7702c671787db530e0d64ab2ab6f915e0e8e39f93f96c15a9c32fcf6d4'
+'64d43615b20e5cd6b45c27394dda47751caeb50db2b5289b43e1c1f723c5d50a'
 'SKIP'
 '705ef1b95c7c6c2835d7772b848d2cb25359664ff4db36d5f766a54a39fbeae6'
 '68ced2f2ad616724ada3e7c8ca3f5648b226554cd18541bfdf3fd1e8fdfe692e'


[arch-commits] Commit in libtasn1/repos/core-i686 (PKGBUILD PKGBUILD)

2017-01-13 Thread Andreas Radke
Date: Friday, January 13, 2017 @ 22:17:10
  Author: andyrtr
Revision: 286260

archrelease: copy trunk to core-i686

Added:
  libtasn1/repos/core-i686/PKGBUILD
(from rev 286259, libtasn1/trunk/PKGBUILD)
Deleted:
  libtasn1/repos/core-i686/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-01-13 22:16:56 UTC (rev 286259)
+++ PKGBUILD2017-01-13 22:17:10 UTC (rev 286260)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: AndyRTR 
-# Maintainer: Jan de Groot 
-# Contributor: judd 
-
-pkgname=libtasn1
-pkgver=4.9
-pkgrel=2
-pkgdesc="The ASN.1 library used in GNUTLS"
-arch=('i686' 'x86_64')
-license=('GPL3' 'LGPL')
-url="http://www.gnu.org/software/libtasn1/;
-depends=('glibc')
-makedepends=('texinfo' 'gtk-doc')
-source=(http://ftp.gnu.org/gnu/libtasn1/${pkgname}-${pkgver}.tar.gz{,.sig})
-md5sums=('3018d0f466a32b66dde41bb122e6cab6'
- 'SKIP')
-validpgpkeys=('1F42418905D8206AA754CCDC29EE58B996865171') #Nikos 
Mavrogiannopoulos 
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr \
-  --with-packager=Archlinux \
-  --with-packager-bug-reports="http://bugs.archlinux.org/; \
-  --with-packager-version=${pkgver}-${pkgrel} \
-  --disable-gcc-warnings \
-  --enable-gtk-doc
-  make
-}
-
-check() {
-  cd ${pkgname}-${pkgver}
-  make check
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-}

Copied: libtasn1/repos/core-i686/PKGBUILD (from rev 286259, 
libtasn1/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-01-13 22:17:10 UTC (rev 286260)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: AndyRTR 
+# Maintainer: Jan de Groot 
+# Contributor: judd 
+
+pkgname=libtasn1
+pkgver=4.9
+pkgrel=2
+pkgdesc="The ASN.1 library used in GNUTLS"
+arch=('i686' 'x86_64')
+license=('GPL3' 'LGPL')
+url="https://www.gnu.org/software/libtasn1/;
+depends=('glibc')
+makedepends=('texinfo' 'gtk-doc')
+source=(https://ftp.gnu.org/gnu/libtasn1/${pkgname}-${pkgver}.tar.gz{,.sig})
+md5sums=('3018d0f466a32b66dde41bb122e6cab6'
+ 'SKIP')
+validpgpkeys=('1F42418905D8206AA754CCDC29EE58B996865171') #Nikos 
Mavrogiannopoulos 
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr \
+  --with-packager=Archlinux \
+  --with-packager-bug-reports="http://bugs.archlinux.org/; \
+  --with-packager-version=${pkgver}-${pkgrel} \
+  --disable-gcc-warnings \
+  --enable-gtk-doc
+  make
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}


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

2017-01-13 Thread Andreas Radke
Date: Friday, January 13, 2017 @ 22:16:56
  Author: andyrtr
Revision: 286259

https sources / gpg signature fixes

Modified:
  libtasn1/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-13 22:15:35 UTC (rev 286258)
+++ PKGBUILD2017-01-13 22:16:56 UTC (rev 286259)
@@ -9,10 +9,10 @@
 pkgdesc="The ASN.1 library used in GNUTLS"
 arch=('i686' 'x86_64')
 license=('GPL3' 'LGPL')
-url="http://www.gnu.org/software/libtasn1/;
+url="https://www.gnu.org/software/libtasn1/;
 depends=('glibc')
 makedepends=('texinfo' 'gtk-doc')
-source=(http://ftp.gnu.org/gnu/libtasn1/${pkgname}-${pkgver}.tar.gz{,.sig})
+source=(https://ftp.gnu.org/gnu/libtasn1/${pkgname}-${pkgver}.tar.gz{,.sig})
 md5sums=('3018d0f466a32b66dde41bb122e6cab6'
  'SKIP')
 validpgpkeys=('1F42418905D8206AA754CCDC29EE58B996865171') #Nikos 
Mavrogiannopoulos 


[arch-commits] Commit in libtasn1/repos/core-x86_64 (PKGBUILD PKGBUILD)

2017-01-13 Thread Andreas Radke
Date: Friday, January 13, 2017 @ 22:17:28
  Author: andyrtr
Revision: 286261

archrelease: copy trunk to core-x86_64

Added:
  libtasn1/repos/core-x86_64/PKGBUILD
(from rev 286260, libtasn1/trunk/PKGBUILD)
Deleted:
  libtasn1/repos/core-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-01-13 22:17:10 UTC (rev 286260)
+++ PKGBUILD2017-01-13 22:17:28 UTC (rev 286261)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: AndyRTR 
-# Maintainer: Jan de Groot 
-# Contributor: judd 
-
-pkgname=libtasn1
-pkgver=4.9
-pkgrel=2
-pkgdesc="The ASN.1 library used in GNUTLS"
-arch=('i686' 'x86_64')
-license=('GPL3' 'LGPL')
-url="http://www.gnu.org/software/libtasn1/;
-depends=('glibc')
-makedepends=('texinfo' 'gtk-doc')
-source=(http://ftp.gnu.org/gnu/libtasn1/${pkgname}-${pkgver}.tar.gz{,.sig})
-md5sums=('3018d0f466a32b66dde41bb122e6cab6'
- 'SKIP')
-validpgpkeys=('1F42418905D8206AA754CCDC29EE58B996865171') #Nikos 
Mavrogiannopoulos 
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr \
-  --with-packager=Archlinux \
-  --with-packager-bug-reports="http://bugs.archlinux.org/; \
-  --with-packager-version=${pkgver}-${pkgrel} \
-  --disable-gcc-warnings \
-  --enable-gtk-doc
-  make
-}
-
-check() {
-  cd ${pkgname}-${pkgver}
-  make check
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-}

Copied: libtasn1/repos/core-x86_64/PKGBUILD (from rev 286260, 
libtasn1/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-01-13 22:17:28 UTC (rev 286261)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: AndyRTR 
+# Maintainer: Jan de Groot 
+# Contributor: judd 
+
+pkgname=libtasn1
+pkgver=4.9
+pkgrel=2
+pkgdesc="The ASN.1 library used in GNUTLS"
+arch=('i686' 'x86_64')
+license=('GPL3' 'LGPL')
+url="https://www.gnu.org/software/libtasn1/;
+depends=('glibc')
+makedepends=('texinfo' 'gtk-doc')
+source=(https://ftp.gnu.org/gnu/libtasn1/${pkgname}-${pkgver}.tar.gz{,.sig})
+md5sums=('3018d0f466a32b66dde41bb122e6cab6'
+ 'SKIP')
+validpgpkeys=('1F42418905D8206AA754CCDC29EE58B996865171') #Nikos 
Mavrogiannopoulos 
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr \
+  --with-packager=Archlinux \
+  --with-packager-bug-reports="http://bugs.archlinux.org/; \
+  --with-packager-version=${pkgver}-${pkgrel} \
+  --disable-gcc-warnings \
+  --enable-gtk-doc
+  make
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}


[arch-commits] Commit in libsm/repos/extra-i686 (PKGBUILD PKGBUILD)

2017-01-13 Thread Andreas Radke
Date: Friday, January 13, 2017 @ 22:15:35
  Author: andyrtr
Revision: 286258

archrelease: copy trunk to extra-i686

Added:
  libsm/repos/extra-i686/PKGBUILD
(from rev 286257, libsm/trunk/PKGBUILD)
Deleted:
  libsm/repos/extra-i686/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-01-13 22:15:25 UTC (rev 286257)
+++ PKGBUILD2017-01-13 22:15:35 UTC (rev 286258)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=libsm
-pkgver=1.2.2
-pkgrel=2
-pkgdesc="X11 Session Management library"
-arch=('i686' 'x86_64')
-license=('custom')
-url="http://xorg.freedesktop.org/;
-depends=('libice' 'util-linux')
-makedepends=('xorg-util-macros' 'xtrans')
-source=(${url}/releases/individual/lib/libSM-${pkgver}.tar.bz2)
-sha256sums=('0baca8c9f5d934450a70896c4ad38d06475521255ca63b717a6510fdb6e287bd')
-
-build() {
-  cd libSM-${pkgver}
-  ./configure --prefix=/usr --sysconfdir=/etc
-  make
-}
-
-package() {
-  cd libSM-${pkgver}
-  make DESTDIR="${pkgdir}" install
-
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
-}

Copied: libsm/repos/extra-i686/PKGBUILD (from rev 286257, libsm/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-01-13 22:15:35 UTC (rev 286258)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=libsm
+pkgver=1.2.2
+pkgrel=2
+pkgdesc="X11 Session Management library"
+arch=('i686' 'x86_64')
+license=('custom')
+url="https://xorg.freedesktop.org/;
+depends=('libice' 'util-linux')
+makedepends=('xorg-util-macros' 'xtrans')
+source=(${url}/releases/individual/lib/libSM-${pkgver}.tar.bz2)
+sha256sums=('0baca8c9f5d934450a70896c4ad38d06475521255ca63b717a6510fdb6e287bd')
+
+build() {
+  cd libSM-${pkgver}
+  ./configure --prefix=/usr --sysconfdir=/etc
+  make
+}
+
+package() {
+  cd libSM-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+}


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

2017-01-13 Thread Andreas Radke
Date: Friday, January 13, 2017 @ 22:15:25
  Author: andyrtr
Revision: 286257

archrelease: copy trunk to extra-x86_64

Added:
  libsm/repos/extra-x86_64/PKGBUILD
(from rev 286256, libsm/trunk/PKGBUILD)
Deleted:
  libsm/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-01-13 22:15:10 UTC (rev 286256)
+++ PKGBUILD2017-01-13 22:15:25 UTC (rev 286257)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=libsm
-pkgver=1.2.2
-pkgrel=2
-pkgdesc="X11 Session Management library"
-arch=('i686' 'x86_64')
-license=('custom')
-url="http://xorg.freedesktop.org/;
-depends=('libice' 'util-linux')
-makedepends=('xorg-util-macros' 'xtrans')
-source=(${url}/releases/individual/lib/libSM-${pkgver}.tar.bz2)
-sha256sums=('0baca8c9f5d934450a70896c4ad38d06475521255ca63b717a6510fdb6e287bd')
-
-build() {
-  cd libSM-${pkgver}
-  ./configure --prefix=/usr --sysconfdir=/etc
-  make
-}
-
-package() {
-  cd libSM-${pkgver}
-  make DESTDIR="${pkgdir}" install
-
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
-}

Copied: libsm/repos/extra-x86_64/PKGBUILD (from rev 286256, 
libsm/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-01-13 22:15:25 UTC (rev 286257)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=libsm
+pkgver=1.2.2
+pkgrel=2
+pkgdesc="X11 Session Management library"
+arch=('i686' 'x86_64')
+license=('custom')
+url="https://xorg.freedesktop.org/;
+depends=('libice' 'util-linux')
+makedepends=('xorg-util-macros' 'xtrans')
+source=(${url}/releases/individual/lib/libSM-${pkgver}.tar.bz2)
+sha256sums=('0baca8c9f5d934450a70896c4ad38d06475521255ca63b717a6510fdb6e287bd')
+
+build() {
+  cd libSM-${pkgver}
+  ./configure --prefix=/usr --sysconfdir=/etc
+  make
+}
+
+package() {
+  cd libSM-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+}


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

2017-01-13 Thread Andreas Radke
Date: Friday, January 13, 2017 @ 22:15:10
  Author: andyrtr
Revision: 286256

https sources / gpg signature fixes

Modified:
  libsm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-13 22:14:09 UTC (rev 286255)
+++ PKGBUILD2017-01-13 22:15:10 UTC (rev 286256)
@@ -7,7 +7,7 @@
 pkgdesc="X11 Session Management library"
 arch=('i686' 'x86_64')
 license=('custom')
-url="http://xorg.freedesktop.org/;
+url="https://xorg.freedesktop.org/;
 depends=('libice' 'util-linux')
 makedepends=('xorg-util-macros' 'xtrans')
 source=(${url}/releases/individual/lib/libSM-${pkgver}.tar.bz2)


[arch-commits] Commit in libpciaccess/repos/extra-i686 (PKGBUILD PKGBUILD)

2017-01-13 Thread Andreas Radke
Date: Friday, January 13, 2017 @ 22:13:57
  Author: andyrtr
Revision: 286254

archrelease: copy trunk to extra-i686

Added:
  libpciaccess/repos/extra-i686/PKGBUILD
(from rev 286253, libpciaccess/trunk/PKGBUILD)
Deleted:
  libpciaccess/repos/extra-i686/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-01-13 22:13:44 UTC (rev 286253)
+++ PKGBUILD2017-01-13 22:13:57 UTC (rev 286254)
@@ -1,29 +0,0 @@
-# $Id: PKGBUILD 356 2008-04-18 22:56:27Z aaron $
-# Maintainer: Jan de Groot 
-# Contributor: Alexander Baldeck 
-
-pkgname=libpciaccess
-pkgver=0.13.4
-pkgrel=1
-pkgdesc="X11 PCI access library"
-arch=(i686 x86_64)
-license=('custom')
-url="http://xorg.freedesktop.org/;
-depends=('glibc')
-makedepends=('xorg-util-macros')
-source=(${url}/releases/individual/lib/${pkgname}-${pkgver}.tar.bz2{,.sig})
-sha256sums=('07f864654561e4ac8629a0ef9c8f07fbc1f8592d1b6c418431593e9ba2cf2fcf'
-'SKIP')
-validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # Alan Coopersmith 

-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr --sysconfdir=/etc
-  make
-}
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
-}

Copied: libpciaccess/repos/extra-i686/PKGBUILD (from rev 286253, 
libpciaccess/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-01-13 22:13:57 UTC (rev 286254)
@@ -0,0 +1,29 @@
+# $Id: PKGBUILD 356 2008-04-18 22:56:27Z aaron $
+# Maintainer: Jan de Groot 
+# Contributor: Alexander Baldeck 
+
+pkgname=libpciaccess
+pkgver=0.13.4
+pkgrel=1
+pkgdesc="X11 PCI access library"
+arch=(i686 x86_64)
+license=('custom')
+url="https://xorg.freedesktop.org/;
+depends=('glibc')
+makedepends=('xorg-util-macros')
+source=(${url}/releases/individual/lib/${pkgname}-${pkgver}.tar.bz2{,.sig})
+sha256sums=('07f864654561e4ac8629a0ef9c8f07fbc1f8592d1b6c418431593e9ba2cf2fcf'
+'SKIP')
+validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # Alan Coopersmith 

+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr --sysconfdir=/etc
+  make
+}
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}


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

2017-01-13 Thread Andreas Radke
Date: Friday, January 13, 2017 @ 22:14:09
  Author: andyrtr
Revision: 286255

archrelease: copy trunk to extra-x86_64

Added:
  libpciaccess/repos/extra-x86_64/PKGBUILD
(from rev 286254, libpciaccess/trunk/PKGBUILD)
Deleted:
  libpciaccess/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-01-13 22:13:57 UTC (rev 286254)
+++ PKGBUILD2017-01-13 22:14:09 UTC (rev 286255)
@@ -1,29 +0,0 @@
-# $Id: PKGBUILD 356 2008-04-18 22:56:27Z aaron $
-# Maintainer: Jan de Groot 
-# Contributor: Alexander Baldeck 
-
-pkgname=libpciaccess
-pkgver=0.13.4
-pkgrel=1
-pkgdesc="X11 PCI access library"
-arch=(i686 x86_64)
-license=('custom')
-url="http://xorg.freedesktop.org/;
-depends=('glibc')
-makedepends=('xorg-util-macros')
-source=(${url}/releases/individual/lib/${pkgname}-${pkgver}.tar.bz2{,.sig})
-sha256sums=('07f864654561e4ac8629a0ef9c8f07fbc1f8592d1b6c418431593e9ba2cf2fcf'
-'SKIP')
-validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # Alan Coopersmith 

-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr --sysconfdir=/etc
-  make
-}
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
-}

Copied: libpciaccess/repos/extra-x86_64/PKGBUILD (from rev 286254, 
libpciaccess/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-01-13 22:14:09 UTC (rev 286255)
@@ -0,0 +1,29 @@
+# $Id: PKGBUILD 356 2008-04-18 22:56:27Z aaron $
+# Maintainer: Jan de Groot 
+# Contributor: Alexander Baldeck 
+
+pkgname=libpciaccess
+pkgver=0.13.4
+pkgrel=1
+pkgdesc="X11 PCI access library"
+arch=(i686 x86_64)
+license=('custom')
+url="https://xorg.freedesktop.org/;
+depends=('glibc')
+makedepends=('xorg-util-macros')
+source=(${url}/releases/individual/lib/${pkgname}-${pkgver}.tar.bz2{,.sig})
+sha256sums=('07f864654561e4ac8629a0ef9c8f07fbc1f8592d1b6c418431593e9ba2cf2fcf'
+'SKIP')
+validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # Alan Coopersmith 

+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr --sysconfdir=/etc
+  make
+}
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}


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

2017-01-13 Thread Andreas Radke
Date: Friday, January 13, 2017 @ 22:13:44
  Author: andyrtr
Revision: 286253

https sources / gpg signature fixes

Modified:
  libpciaccess/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-13 22:12:21 UTC (rev 286252)
+++ PKGBUILD2017-01-13 22:13:44 UTC (rev 286253)
@@ -8,7 +8,7 @@
 pkgdesc="X11 PCI access library"
 arch=(i686 x86_64)
 license=('custom')
-url="http://xorg.freedesktop.org/;
+url="https://xorg.freedesktop.org/;
 depends=('glibc')
 makedepends=('xorg-util-macros')
 source=(${url}/releases/individual/lib/${pkgname}-${pkgver}.tar.bz2{,.sig})


[arch-commits] Commit in libinput/repos/testing-i686 (PKGBUILD PKGBUILD)

2017-01-13 Thread Andreas Radke
Date: Friday, January 13, 2017 @ 22:12:05
  Author: andyrtr
Revision: 286251

archrelease: copy trunk to testing-i686

Added:
  libinput/repos/testing-i686/PKGBUILD
(from rev 286250, libinput/trunk/PKGBUILD)
Deleted:
  libinput/repos/testing-i686/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-01-13 22:11:51 UTC (rev 286250)
+++ PKGBUILD2017-01-13 22:12:05 UTC (rev 286251)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke 
-# Maintainer: Jan de Groot
-
-pkgname=libinput
-pkgver=1.5.4
-pkgrel=1
-pkgdesc="Input device management and event handling library"
-arch=(i686 x86_64)
-url="http://www.freedesktop.org/wiki/Software/libinput/;
-license=(custom:X11)
-depends=('mtdev' 'systemd' 'libevdev' 'libwacom')
-# currently no doc files to install
-makedepends=('doxygen' 'graphviz' 'gtk3')
-#checkdepends=('check' 'libunwind')
-source=(http://freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.xz{,.sig})
-sha256sums=('6f9ad1ede468bd54ec4469b8a4eb93a6f62f7fe6480c7a43e36c5d58cc2822b7'
-'SKIP')
-validpgpkeys=('3C2C43D9447D5938EF4551EBE23B7E70B467F0BF') # Peter Hutterer 
(Who-T) 
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --disable-static
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-# disabled for now:
-# https://github.com/libcheck/check/issues/18
-#  make check
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
-  # install doc - no Makefile target
-  install -v -dm755 ${pkgdir}/usr/share/doc/libinput
-  cp -rv doc/html/* ${pkgdir}/usr/share/doc/libinput
-}

Copied: libinput/repos/testing-i686/PKGBUILD (from rev 286250, 
libinput/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-01-13 22:12:05 UTC (rev 286251)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Andreas Radke 
+# Maintainer: Jan de Groot
+
+pkgname=libinput
+pkgver=1.5.4
+pkgrel=1
+pkgdesc="Input device management and event handling library"
+arch=(i686 x86_64)
+url="https://www.freedesktop.org/wiki/Software/libinput/;
+license=(custom:X11)
+depends=('mtdev' 'systemd' 'libevdev' 'libwacom')
+# currently no doc files to install
+makedepends=('doxygen' 'graphviz' 'gtk3')
+#checkdepends=('check' 'libunwind')
+source=(https://freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.xz{,.sig})
+sha256sums=('6f9ad1ede468bd54ec4469b8a4eb93a6f62f7fe6480c7a43e36c5d58cc2822b7'
+'SKIP')
+validpgpkeys=('3C2C43D9447D5938EF4551EBE23B7E70B467F0BF') # Peter Hutterer 
(Who-T) 
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+# disabled for now:
+# https://github.com/libcheck/check/issues/18
+#  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+  # install doc - no Makefile target
+  install -v -dm755 ${pkgdir}/usr/share/doc/libinput
+  cp -rv doc/html/* ${pkgdir}/usr/share/doc/libinput
+}


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

2017-01-13 Thread Andreas Radke
Date: Friday, January 13, 2017 @ 22:12:21
  Author: andyrtr
Revision: 286252

archrelease: copy trunk to testing-x86_64

Added:
  libinput/repos/testing-x86_64/PKGBUILD
(from rev 286251, libinput/trunk/PKGBUILD)
Deleted:
  libinput/repos/testing-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-01-13 22:12:05 UTC (rev 286251)
+++ PKGBUILD2017-01-13 22:12:21 UTC (rev 286252)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke 
-# Maintainer: Jan de Groot
-
-pkgname=libinput
-pkgver=1.5.4
-pkgrel=1
-pkgdesc="Input device management and event handling library"
-arch=(i686 x86_64)
-url="http://www.freedesktop.org/wiki/Software/libinput/;
-license=(custom:X11)
-depends=('mtdev' 'systemd' 'libevdev' 'libwacom')
-# currently no doc files to install
-makedepends=('doxygen' 'graphviz' 'gtk3')
-#checkdepends=('check' 'libunwind')
-source=(http://freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.xz{,.sig})
-sha256sums=('6f9ad1ede468bd54ec4469b8a4eb93a6f62f7fe6480c7a43e36c5d58cc2822b7'
-'SKIP')
-validpgpkeys=('3C2C43D9447D5938EF4551EBE23B7E70B467F0BF') # Peter Hutterer 
(Who-T) 
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --disable-static
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-# disabled for now:
-# https://github.com/libcheck/check/issues/18
-#  make check
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
-  # install doc - no Makefile target
-  install -v -dm755 ${pkgdir}/usr/share/doc/libinput
-  cp -rv doc/html/* ${pkgdir}/usr/share/doc/libinput
-}

Copied: libinput/repos/testing-x86_64/PKGBUILD (from rev 286251, 
libinput/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-01-13 22:12:21 UTC (rev 286252)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Andreas Radke 
+# Maintainer: Jan de Groot
+
+pkgname=libinput
+pkgver=1.5.4
+pkgrel=1
+pkgdesc="Input device management and event handling library"
+arch=(i686 x86_64)
+url="https://www.freedesktop.org/wiki/Software/libinput/;
+license=(custom:X11)
+depends=('mtdev' 'systemd' 'libevdev' 'libwacom')
+# currently no doc files to install
+makedepends=('doxygen' 'graphviz' 'gtk3')
+#checkdepends=('check' 'libunwind')
+source=(https://freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.xz{,.sig})
+sha256sums=('6f9ad1ede468bd54ec4469b8a4eb93a6f62f7fe6480c7a43e36c5d58cc2822b7'
+'SKIP')
+validpgpkeys=('3C2C43D9447D5938EF4551EBE23B7E70B467F0BF') # Peter Hutterer 
(Who-T) 
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+# disabled for now:
+# https://github.com/libcheck/check/issues/18
+#  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+  # install doc - no Makefile target
+  install -v -dm755 ${pkgdir}/usr/share/doc/libinput
+  cp -rv doc/html/* ${pkgdir}/usr/share/doc/libinput
+}


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

2017-01-13 Thread Andreas Radke
Date: Friday, January 13, 2017 @ 22:11:51
  Author: andyrtr
Revision: 286250

https sources / gpg signature fixes

Modified:
  libinput/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-13 22:10:57 UTC (rev 286249)
+++ PKGBUILD2017-01-13 22:11:51 UTC (rev 286250)
@@ -7,13 +7,13 @@
 pkgrel=1
 pkgdesc="Input device management and event handling library"
 arch=(i686 x86_64)
-url="http://www.freedesktop.org/wiki/Software/libinput/;
+url="https://www.freedesktop.org/wiki/Software/libinput/;
 license=(custom:X11)
 depends=('mtdev' 'systemd' 'libevdev' 'libwacom')
 # currently no doc files to install
 makedepends=('doxygen' 'graphviz' 'gtk3')
 #checkdepends=('check' 'libunwind')
-source=(http://freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.xz{,.sig})
+source=(https://freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.xz{,.sig})
 sha256sums=('6f9ad1ede468bd54ec4469b8a4eb93a6f62f7fe6480c7a43e36c5d58cc2822b7'
 'SKIP')
 validpgpkeys=('3C2C43D9447D5938EF4551EBE23B7E70B467F0BF') # Peter Hutterer 
(Who-T) 


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

2017-01-13 Thread Andreas Radke
Date: Friday, January 13, 2017 @ 22:10:47
  Author: andyrtr
Revision: 286248

archrelease: copy trunk to extra-x86_64

Added:
  libice/repos/extra-x86_64/PKGBUILD
(from rev 286247, libice/trunk/PKGBUILD)
Deleted:
  libice/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-01-13 22:10:36 UTC (rev 286247)
+++ PKGBUILD2017-01-13 22:10:47 UTC (rev 286248)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: AndyRTR 
-# Maintainer: Jan de Groot 
-# Contributor: Alexander Baldeck 
-
-pkgname=libice
-pkgver=1.0.9
-pkgrel=1
-pkgdesc="X11 Inter-Client Exchange library"
-arch=('i686' 'x86_64')
-url="http://xorg.freedesktop.org/;
-depends=('glibc' 'xproto>=7.0.18')
-makedepends=('xtrans>=1.2.5' 'xorg-util-macros')
-source=(${url}/releases/individual/lib/libICE-${pkgver}.tar.bz2)
-license=('custom')
-sha256sums=('8f7032f2c1c64352b5423f6b48a8ebdc339cc63064af34d66a6c9aa79759e202')
-
-build() {
-  cd libICE-${pkgver}
-  ./configure --prefix=/usr --sysconfdir=/etc
-  make
-}
-
-package() {
-  cd libICE-${pkgver}
-  make DESTDIR="${pkgdir}" install
-
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
-}

Copied: libice/repos/extra-x86_64/PKGBUILD (from rev 286247, 
libice/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-01-13 22:10:47 UTC (rev 286248)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: AndyRTR 
+# Maintainer: Jan de Groot 
+# Contributor: Alexander Baldeck 
+
+pkgname=libice
+pkgver=1.0.9
+pkgrel=1
+pkgdesc="X11 Inter-Client Exchange library"
+arch=('i686' 'x86_64')
+url="https://xorg.freedesktop.org/;
+depends=('glibc' 'xproto>=7.0.18')
+makedepends=('xtrans>=1.2.5' 'xorg-util-macros')
+source=(${url}/releases/individual/lib/libICE-${pkgver}.tar.bz2{,.sig})
+license=('custom')
+sha256sums=('8f7032f2c1c64352b5423f6b48a8ebdc339cc63064af34d66a6c9aa79759e202'
+'SKIP')
+validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # "Alan Coopersmith 
"
+
+build() {
+  cd libICE-${pkgver}
+  ./configure --prefix=/usr --sysconfdir=/etc
+  make
+}
+
+package() {
+  cd libICE-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+}


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

2017-01-13 Thread Andreas Radke
Date: Friday, January 13, 2017 @ 22:10:36
  Author: andyrtr
Revision: 286247

https sources / gpg signature fixes

Modified:
  libice/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-13 22:07:42 UTC (rev 286246)
+++ PKGBUILD2017-01-13 22:10:36 UTC (rev 286247)
@@ -8,12 +8,14 @@
 pkgrel=1
 pkgdesc="X11 Inter-Client Exchange library"
 arch=('i686' 'x86_64')
-url="http://xorg.freedesktop.org/;
+url="https://xorg.freedesktop.org/;
 depends=('glibc' 'xproto>=7.0.18')
 makedepends=('xtrans>=1.2.5' 'xorg-util-macros')
-source=(${url}/releases/individual/lib/libICE-${pkgver}.tar.bz2)
+source=(${url}/releases/individual/lib/libICE-${pkgver}.tar.bz2{,.sig})
 license=('custom')
-sha256sums=('8f7032f2c1c64352b5423f6b48a8ebdc339cc63064af34d66a6c9aa79759e202')
+sha256sums=('8f7032f2c1c64352b5423f6b48a8ebdc339cc63064af34d66a6c9aa79759e202'
+'SKIP')
+validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # "Alan Coopersmith 
"
 
 build() {
   cd libICE-${pkgver}


[arch-commits] Commit in libice/repos/extra-i686 (PKGBUILD PKGBUILD)

2017-01-13 Thread Andreas Radke
Date: Friday, January 13, 2017 @ 22:10:57
  Author: andyrtr
Revision: 286249

archrelease: copy trunk to extra-i686

Added:
  libice/repos/extra-i686/PKGBUILD
(from rev 286248, libice/trunk/PKGBUILD)
Deleted:
  libice/repos/extra-i686/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-01-13 22:10:47 UTC (rev 286248)
+++ PKGBUILD2017-01-13 22:10:57 UTC (rev 286249)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: AndyRTR 
-# Maintainer: Jan de Groot 
-# Contributor: Alexander Baldeck 
-
-pkgname=libice
-pkgver=1.0.9
-pkgrel=1
-pkgdesc="X11 Inter-Client Exchange library"
-arch=('i686' 'x86_64')
-url="http://xorg.freedesktop.org/;
-depends=('glibc' 'xproto>=7.0.18')
-makedepends=('xtrans>=1.2.5' 'xorg-util-macros')
-source=(${url}/releases/individual/lib/libICE-${pkgver}.tar.bz2)
-license=('custom')
-sha256sums=('8f7032f2c1c64352b5423f6b48a8ebdc339cc63064af34d66a6c9aa79759e202')
-
-build() {
-  cd libICE-${pkgver}
-  ./configure --prefix=/usr --sysconfdir=/etc
-  make
-}
-
-package() {
-  cd libICE-${pkgver}
-  make DESTDIR="${pkgdir}" install
-
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
-}

Copied: libice/repos/extra-i686/PKGBUILD (from rev 286248, 
libice/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-01-13 22:10:57 UTC (rev 286249)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: AndyRTR 
+# Maintainer: Jan de Groot 
+# Contributor: Alexander Baldeck 
+
+pkgname=libice
+pkgver=1.0.9
+pkgrel=1
+pkgdesc="X11 Inter-Client Exchange library"
+arch=('i686' 'x86_64')
+url="https://xorg.freedesktop.org/;
+depends=('glibc' 'xproto>=7.0.18')
+makedepends=('xtrans>=1.2.5' 'xorg-util-macros')
+source=(${url}/releases/individual/lib/libICE-${pkgver}.tar.bz2{,.sig})
+license=('custom')
+sha256sums=('8f7032f2c1c64352b5423f6b48a8ebdc339cc63064af34d66a6c9aa79759e202'
+'SKIP')
+validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # "Alan Coopersmith 
"
+
+build() {
+  cd libICE-${pkgver}
+  ./configure --prefix=/usr --sysconfdir=/etc
+  make
+}
+
+package() {
+  cd libICE-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+}


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

2017-01-13 Thread Andreas Radke
Date: Friday, January 13, 2017 @ 22:07:33
  Author: andyrtr
Revision: 286245

archrelease: copy trunk to extra-x86_64

Added:
  libfs/repos/extra-x86_64/PKGBUILD
(from rev 286244, libfs/trunk/PKGBUILD)
Deleted:
  libfs/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-01-13 22:07:24 UTC (rev 286244)
+++ PKGBUILD2017-01-13 22:07:33 UTC (rev 286245)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke 
-# Maintainer: Jan de Groot 
-
-pkgname=libfs
-pkgver=1.0.7
-pkgrel=1
-pkgdesc="X11 Font Services Library"
-arch=('i686' 'x86_64')
-license=('custom')
-url="http://xorg.freedesktop.org/;
-depends=('glibc' 'xproto' 'fontsproto')
-makedepends=('xorg-util-macros' 'xtrans')
-source=(${url}/releases/individual/lib/libFS-${pkgver}.tar.bz2{,.sig})
-sha256sums=('2e9d4c07026a7401d4fa4ffae86e6ac7fec83f50f3268fa85f52718e479dc4f3'
-'SKIP')
-validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') #Alan Coopersmith 

-
-build() {
-  cd libFS-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd libFS-${pkgver}
-  make DESTDIR="${pkgdir}" install
-  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
-}

Copied: libfs/repos/extra-x86_64/PKGBUILD (from rev 286244, 
libfs/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-01-13 22:07:33 UTC (rev 286245)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Andreas Radke 
+# Maintainer: Jan de Groot 
+
+pkgname=libfs
+pkgver=1.0.7
+pkgrel=1
+pkgdesc="X11 Font Services Library"
+arch=('i686' 'x86_64')
+license=('custom')
+url="https://xorg.freedesktop.org/;
+depends=('glibc' 'xproto' 'fontsproto')
+makedepends=('xorg-util-macros' 'xtrans')
+source=(${url}/releases/individual/lib/libFS-${pkgver}.tar.bz2{,.sig})
+sha256sums=('2e9d4c07026a7401d4fa4ffae86e6ac7fec83f50f3268fa85f52718e479dc4f3'
+'SKIP')
+validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') #Alan Coopersmith 

+
+build() {
+  cd libFS-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd libFS-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}


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

2017-01-13 Thread Andreas Radke
Date: Friday, January 13, 2017 @ 22:03:00
  Author: andyrtr
Revision: 286240

archrelease: copy trunk to extra-x86_64

Added:
  libdmx/repos/extra-x86_64/PKGBUILD
(from rev 286239, libdmx/trunk/PKGBUILD)
Deleted:
  libdmx/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-01-13 22:02:35 UTC (rev 286239)
+++ PKGBUILD2017-01-13 22:03:00 UTC (rev 286240)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke 
-#Maintainer: Jan de Groot 
-
-pkgname=libdmx
-pkgver=1.1.3
-pkgrel=1
-pkgdesc="X11 Distributed Multihead extension library"
-arch=('i686' 'x86_64')
-url="http://xorg.freedesktop.org/;
-license=('custom')
-depends=('dmxproto' 'libxext')
-makedepends=('xorg-util-macros')
-source=("${url}/releases/individual/lib/${pkgname}-${pkgver}.tar.bz2")
-sha256sums=('c97da36d2e56a2d7b6e4f896241785acc95e97eb9557465fd66ba2a155a7b201')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr --disable-static
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-
-  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
-}

Copied: libdmx/repos/extra-x86_64/PKGBUILD (from rev 286239, 
libdmx/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-01-13 22:03:00 UTC (rev 286240)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Andreas Radke 
+#Maintainer: Jan de Groot 
+
+pkgname=libdmx
+pkgver=1.1.3
+pkgrel=1
+pkgdesc="X11 Distributed Multihead extension library"
+arch=('i686' 'x86_64')
+url="https://xorg.freedesktop.org/;
+license=('custom')
+depends=('dmxproto' 'libxext')
+makedepends=('xorg-util-macros')
+source=("${url}/releases/individual/lib/${pkgname}-${pkgver}.tar.bz2")
+sha256sums=('c97da36d2e56a2d7b6e4f896241785acc95e97eb9557465fd66ba2a155a7b201')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}


[arch-commits] Commit in libfs/repos/extra-i686 (PKGBUILD PKGBUILD)

2017-01-13 Thread Andreas Radke
Date: Friday, January 13, 2017 @ 22:07:42
  Author: andyrtr
Revision: 286246

archrelease: copy trunk to extra-i686

Added:
  libfs/repos/extra-i686/PKGBUILD
(from rev 286245, libfs/trunk/PKGBUILD)
Deleted:
  libfs/repos/extra-i686/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-01-13 22:07:33 UTC (rev 286245)
+++ PKGBUILD2017-01-13 22:07:42 UTC (rev 286246)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke 
-# Maintainer: Jan de Groot 
-
-pkgname=libfs
-pkgver=1.0.7
-pkgrel=1
-pkgdesc="X11 Font Services Library"
-arch=('i686' 'x86_64')
-license=('custom')
-url="http://xorg.freedesktop.org/;
-depends=('glibc' 'xproto' 'fontsproto')
-makedepends=('xorg-util-macros' 'xtrans')
-source=(${url}/releases/individual/lib/libFS-${pkgver}.tar.bz2{,.sig})
-sha256sums=('2e9d4c07026a7401d4fa4ffae86e6ac7fec83f50f3268fa85f52718e479dc4f3'
-'SKIP')
-validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') #Alan Coopersmith 

-
-build() {
-  cd libFS-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd libFS-${pkgver}
-  make DESTDIR="${pkgdir}" install
-  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
-}

Copied: libfs/repos/extra-i686/PKGBUILD (from rev 286245, libfs/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-01-13 22:07:42 UTC (rev 286246)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Andreas Radke 
+# Maintainer: Jan de Groot 
+
+pkgname=libfs
+pkgver=1.0.7
+pkgrel=1
+pkgdesc="X11 Font Services Library"
+arch=('i686' 'x86_64')
+license=('custom')
+url="https://xorg.freedesktop.org/;
+depends=('glibc' 'xproto' 'fontsproto')
+makedepends=('xorg-util-macros' 'xtrans')
+source=(${url}/releases/individual/lib/libFS-${pkgver}.tar.bz2{,.sig})
+sha256sums=('2e9d4c07026a7401d4fa4ffae86e6ac7fec83f50f3268fa85f52718e479dc4f3'
+'SKIP')
+validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') #Alan Coopersmith 

+
+build() {
+  cd libFS-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd libFS-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}


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

2017-01-13 Thread Andreas Radke
Date: Friday, January 13, 2017 @ 22:07:24
  Author: andyrtr
Revision: 286244

https sources / gpg signature fixes

Modified:
  libfs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-13 22:04:58 UTC (rev 286243)
+++ PKGBUILD2017-01-13 22:07:24 UTC (rev 286244)
@@ -8,7 +8,7 @@
 pkgdesc="X11 Font Services Library"
 arch=('i686' 'x86_64')
 license=('custom')
-url="http://xorg.freedesktop.org/;
+url="https://xorg.freedesktop.org/;
 depends=('glibc' 'xproto' 'fontsproto')
 makedepends=('xorg-util-macros' 'xtrans')
 source=(${url}/releases/individual/lib/libFS-${pkgver}.tar.bz2{,.sig})


[arch-commits] Commit in libfontenc/repos/extra-i686 (PKGBUILD PKGBUILD)

2017-01-13 Thread Andreas Radke
Date: Friday, January 13, 2017 @ 22:04:58
  Author: andyrtr
Revision: 286243

archrelease: copy trunk to extra-i686

Added:
  libfontenc/repos/extra-i686/PKGBUILD
(from rev 286242, libfontenc/trunk/PKGBUILD)
Deleted:
  libfontenc/repos/extra-i686/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-01-13 22:04:46 UTC (rev 286242)
+++ PKGBUILD2017-01-13 22:04:58 UTC (rev 286243)
@@ -1,30 +0,0 @@
-# $Id$
-#Maintainer: Jan de Groot 
-
-pkgname=libfontenc
-pkgver=1.1.3
-pkgrel=1
-pkgdesc="X11 font encoding library"
-arch=('i686' 'x86_64')
-url="http://xorg.freedesktop.org/;
-license=('custom')
-depends=('zlib')
-makedepends=('pkgconfig' 'xproto>=7.0.18')
-source=(${url}/releases/individual/lib/${pkgname}-${pkgver}.tar.bz2{,.sig})
-sha256sums=('70588930e6fc9542ff38e0884778fbc6e6febf21adbab92fd8f524fe60aefd21'
-'SKIP')
-validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') #Alan Coopersmith 

-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var --disable-static \
-  --with-encodingsdir=/usr/share/fonts/encodings  
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
-}

Copied: libfontenc/repos/extra-i686/PKGBUILD (from rev 286242, 
libfontenc/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-01-13 22:04:58 UTC (rev 286243)
@@ -0,0 +1,30 @@
+# $Id$
+#Maintainer: Jan de Groot 
+
+pkgname=libfontenc
+pkgver=1.1.3
+pkgrel=1
+pkgdesc="X11 font encoding library"
+arch=('i686' 'x86_64')
+url="https://xorg.freedesktop.org/;
+license=('custom')
+depends=('zlib')
+makedepends=('pkgconfig' 'xproto>=7.0.18')
+source=(${url}/releases/individual/lib/${pkgname}-${pkgver}.tar.bz2{,.sig})
+sha256sums=('70588930e6fc9542ff38e0884778fbc6e6febf21adbab92fd8f524fe60aefd21'
+'SKIP')
+validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') #Alan Coopersmith 

+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-static \
+  --with-encodingsdir=/usr/share/fonts/encodings  
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+}


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

2017-01-13 Thread Andreas Radke
Date: Friday, January 13, 2017 @ 22:04:46
  Author: andyrtr
Revision: 286242

archrelease: copy trunk to extra-x86_64

Added:
  libfontenc/repos/extra-x86_64/PKGBUILD
(from rev 286241, libfontenc/trunk/PKGBUILD)
Deleted:
  libfontenc/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-01-13 22:04:33 UTC (rev 286241)
+++ PKGBUILD2017-01-13 22:04:46 UTC (rev 286242)
@@ -1,30 +0,0 @@
-# $Id$
-#Maintainer: Jan de Groot 
-
-pkgname=libfontenc
-pkgver=1.1.3
-pkgrel=1
-pkgdesc="X11 font encoding library"
-arch=('i686' 'x86_64')
-url="http://xorg.freedesktop.org/;
-license=('custom')
-depends=('zlib')
-makedepends=('pkgconfig' 'xproto>=7.0.18')
-source=(${url}/releases/individual/lib/${pkgname}-${pkgver}.tar.bz2{,.sig})
-sha256sums=('70588930e6fc9542ff38e0884778fbc6e6febf21adbab92fd8f524fe60aefd21'
-'SKIP')
-validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') #Alan Coopersmith 

-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var --disable-static \
-  --with-encodingsdir=/usr/share/fonts/encodings  
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
-}

Copied: libfontenc/repos/extra-x86_64/PKGBUILD (from rev 286241, 
libfontenc/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-01-13 22:04:46 UTC (rev 286242)
@@ -0,0 +1,30 @@
+# $Id$
+#Maintainer: Jan de Groot 
+
+pkgname=libfontenc
+pkgver=1.1.3
+pkgrel=1
+pkgdesc="X11 font encoding library"
+arch=('i686' 'x86_64')
+url="https://xorg.freedesktop.org/;
+license=('custom')
+depends=('zlib')
+makedepends=('pkgconfig' 'xproto>=7.0.18')
+source=(${url}/releases/individual/lib/${pkgname}-${pkgver}.tar.bz2{,.sig})
+sha256sums=('70588930e6fc9542ff38e0884778fbc6e6febf21adbab92fd8f524fe60aefd21'
+'SKIP')
+validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') #Alan Coopersmith 

+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-static \
+  --with-encodingsdir=/usr/share/fonts/encodings  
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+}


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

2017-01-13 Thread Andreas Radke
Date: Friday, January 13, 2017 @ 22:04:33
  Author: andyrtr
Revision: 286241

https sources / gpg signature fixes

Modified:
  libfontenc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-13 22:03:00 UTC (rev 286240)
+++ PKGBUILD2017-01-13 22:04:33 UTC (rev 286241)
@@ -6,7 +6,7 @@
 pkgrel=1
 pkgdesc="X11 font encoding library"
 arch=('i686' 'x86_64')
-url="http://xorg.freedesktop.org/;
+url="https://xorg.freedesktop.org/;
 license=('custom')
 depends=('zlib')
 makedepends=('pkgconfig' 'xproto>=7.0.18')


[arch-commits] Commit in libdmx/repos/extra-i686 (PKGBUILD PKGBUILD)

2017-01-13 Thread Andreas Radke
Date: Friday, January 13, 2017 @ 22:02:35
  Author: andyrtr
Revision: 286239

archrelease: copy trunk to extra-i686

Added:
  libdmx/repos/extra-i686/PKGBUILD
(from rev 286238, libdmx/trunk/PKGBUILD)
Deleted:
  libdmx/repos/extra-i686/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-01-13 22:02:23 UTC (rev 286238)
+++ PKGBUILD2017-01-13 22:02:35 UTC (rev 286239)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke 
-#Maintainer: Jan de Groot 
-
-pkgname=libdmx
-pkgver=1.1.3
-pkgrel=1
-pkgdesc="X11 Distributed Multihead extension library"
-arch=('i686' 'x86_64')
-url="http://xorg.freedesktop.org/;
-license=('custom')
-depends=('dmxproto' 'libxext')
-makedepends=('xorg-util-macros')
-source=("${url}/releases/individual/lib/${pkgname}-${pkgver}.tar.bz2")
-sha256sums=('c97da36d2e56a2d7b6e4f896241785acc95e97eb9557465fd66ba2a155a7b201')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr --disable-static
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-
-  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
-}

Copied: libdmx/repos/extra-i686/PKGBUILD (from rev 286238, 
libdmx/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-01-13 22:02:35 UTC (rev 286239)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Andreas Radke 
+#Maintainer: Jan de Groot 
+
+pkgname=libdmx
+pkgver=1.1.3
+pkgrel=1
+pkgdesc="X11 Distributed Multihead extension library"
+arch=('i686' 'x86_64')
+url="https://xorg.freedesktop.org/;
+license=('custom')
+depends=('dmxproto' 'libxext')
+makedepends=('xorg-util-macros')
+source=("${url}/releases/individual/lib/${pkgname}-${pkgver}.tar.bz2")
+sha256sums=('c97da36d2e56a2d7b6e4f896241785acc95e97eb9557465fd66ba2a155a7b201')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}


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

2017-01-13 Thread Andreas Radke
Date: Friday, January 13, 2017 @ 22:02:23
  Author: andyrtr
Revision: 286238

https sources / gpg signature fixes

Modified:
  libdmx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-13 21:57:58 UTC (rev 286237)
+++ PKGBUILD2017-01-13 22:02:23 UTC (rev 286238)
@@ -7,7 +7,7 @@
 pkgrel=1
 pkgdesc="X11 Distributed Multihead extension library"
 arch=('i686' 'x86_64')
-url="http://xorg.freedesktop.org/;
+url="https://xorg.freedesktop.org/;
 license=('custom')
 depends=('dmxproto' 'libxext')
 makedepends=('xorg-util-macros')


[arch-commits] Commit in ijs/repos/extra-i686 (PKGBUILD PKGBUILD)

2017-01-13 Thread Andreas Radke
Date: Friday, January 13, 2017 @ 21:57:58
  Author: andyrtr
Revision: 286237

archrelease: copy trunk to extra-i686

Added:
  ijs/repos/extra-i686/PKGBUILD
(from rev 286236, ijs/trunk/PKGBUILD)
Deleted:
  ijs/repos/extra-i686/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-01-13 21:57:45 UTC (rev 286236)
+++ PKGBUILD2017-01-13 21:57:58 UTC (rev 286237)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke 
-
-pkgname=ijs
-pkgver=0.35
-pkgrel=1
-pkgdesc="a library which implements a protocol for transmission of raster page 
images"
-arch=('i686' 'x86_64')
-url="http://www.openprinting.org/download/ijs/;
-license=('GPL')
-depends=('glibc' 'sh')
-makedepends=('docbook-utils' 'ghostscript')
-source=("http://www.openprinting.org/download/ijs/download/ijs-$pkgver.tar.bz2;)
-md5sums=('896fdcb7a01c586ba6eb81398ea3f6e9')
-
-build() {
-   cd "$pkgname-$pkgver"
-   ./configure --prefix=/usr \
-  --disable-static \
-  --enable-shared \
-  --mandir=/usr/share/man
-   make
-}
-
-package() {
-   cd "$pkgname-$pkgver"
-   make DESTDIR="$pkgdir/" install
-# install doc
-install -Dm644 ijs_spec.pdf 
${pkgdir}/usr/share/doc/$pkgname/ijs_spec.pdf
-}

Copied: ijs/repos/extra-i686/PKGBUILD (from rev 286236, ijs/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-01-13 21:57:58 UTC (rev 286237)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Andreas Radke 
+
+pkgname=ijs
+pkgver=0.35
+pkgrel=1
+pkgdesc="a library which implements a protocol for transmission of raster page 
images"
+arch=('i686' 'x86_64')
+url="https://www.openprinting.org/download/ijs/;
+license=('GPL')
+depends=('glibc' 'sh')
+makedepends=('docbook-utils' 'ghostscript')
+source=("https://www.openprinting.org/download/ijs/download/ijs-$pkgver.tar.bz2;)
+md5sums=('896fdcb7a01c586ba6eb81398ea3f6e9')
+
+build() {
+   cd "$pkgname-$pkgver"
+   ./configure --prefix=/usr \
+  --disable-static \
+  --enable-shared \
+  --mandir=/usr/share/man
+   make
+}
+
+package() {
+   cd "$pkgname-$pkgver"
+   make DESTDIR="$pkgdir/" install
+# install doc
+install -Dm644 ijs_spec.pdf 
${pkgdir}/usr/share/doc/$pkgname/ijs_spec.pdf
+}


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

2017-01-13 Thread Andreas Radke
Date: Friday, January 13, 2017 @ 21:57:45
  Author: andyrtr
Revision: 286236

archrelease: copy trunk to extra-x86_64

Added:
  ijs/repos/extra-x86_64/PKGBUILD
(from rev 286235, ijs/trunk/PKGBUILD)
Deleted:
  ijs/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-01-13 21:57:32 UTC (rev 286235)
+++ PKGBUILD2017-01-13 21:57:45 UTC (rev 286236)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke 
-
-pkgname=ijs
-pkgver=0.35
-pkgrel=1
-pkgdesc="a library which implements a protocol for transmission of raster page 
images"
-arch=('i686' 'x86_64')
-url="http://www.openprinting.org/download/ijs/;
-license=('GPL')
-depends=('glibc' 'sh')
-makedepends=('docbook-utils' 'ghostscript')
-source=("http://www.openprinting.org/download/ijs/download/ijs-$pkgver.tar.bz2;)
-md5sums=('896fdcb7a01c586ba6eb81398ea3f6e9')
-
-build() {
-   cd "$pkgname-$pkgver"
-   ./configure --prefix=/usr \
-  --disable-static \
-  --enable-shared \
-  --mandir=/usr/share/man
-   make
-}
-
-package() {
-   cd "$pkgname-$pkgver"
-   make DESTDIR="$pkgdir/" install
-# install doc
-install -Dm644 ijs_spec.pdf 
${pkgdir}/usr/share/doc/$pkgname/ijs_spec.pdf
-}

Copied: ijs/repos/extra-x86_64/PKGBUILD (from rev 286235, ijs/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-01-13 21:57:45 UTC (rev 286236)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Andreas Radke 
+
+pkgname=ijs
+pkgver=0.35
+pkgrel=1
+pkgdesc="a library which implements a protocol for transmission of raster page 
images"
+arch=('i686' 'x86_64')
+url="https://www.openprinting.org/download/ijs/;
+license=('GPL')
+depends=('glibc' 'sh')
+makedepends=('docbook-utils' 'ghostscript')
+source=("https://www.openprinting.org/download/ijs/download/ijs-$pkgver.tar.bz2;)
+md5sums=('896fdcb7a01c586ba6eb81398ea3f6e9')
+
+build() {
+   cd "$pkgname-$pkgver"
+   ./configure --prefix=/usr \
+  --disable-static \
+  --enable-shared \
+  --mandir=/usr/share/man
+   make
+}
+
+package() {
+   cd "$pkgname-$pkgver"
+   make DESTDIR="$pkgdir/" install
+# install doc
+install -Dm644 ijs_spec.pdf 
${pkgdir}/usr/share/doc/$pkgname/ijs_spec.pdf
+}


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

2017-01-13 Thread Andreas Radke
Date: Friday, January 13, 2017 @ 21:57:32
  Author: andyrtr
Revision: 286235

https sources / gpg signature fixes

Modified:
  ijs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-13 21:56:54 UTC (rev 286234)
+++ PKGBUILD2017-01-13 21:57:32 UTC (rev 286235)
@@ -6,11 +6,11 @@
 pkgrel=1
 pkgdesc="a library which implements a protocol for transmission of raster page 
images"
 arch=('i686' 'x86_64')
-url="http://www.openprinting.org/download/ijs/;
+url="https://www.openprinting.org/download/ijs/;
 license=('GPL')
 depends=('glibc' 'sh')
 makedepends=('docbook-utils' 'ghostscript')
-source=("http://www.openprinting.org/download/ijs/download/ijs-$pkgver.tar.bz2;)
+source=("https://www.openprinting.org/download/ijs/download/ijs-$pkgver.tar.bz2;)
 md5sums=('896fdcb7a01c586ba6eb81398ea3f6e9')
 
 build() {


[arch-commits] Commit in hunspell-de/repos/extra-any (PKGBUILD PKGBUILD)

2017-01-13 Thread Andreas Radke
Date: Friday, January 13, 2017 @ 21:56:54
  Author: andyrtr
Revision: 286234

archrelease: copy trunk to extra-any

Added:
  hunspell-de/repos/extra-any/PKGBUILD
(from rev 286233, hunspell-de/trunk/PKGBUILD)
Deleted:
  hunspell-de/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-01-13 21:56:43 UTC (rev 286233)
+++ PKGBUILD2017-01-13 21:56:54 UTC (rev 286234)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer: AndyRTR 
-# Contributor: Alexander Fehr 
-
-pkgname=hunspell-de
-pkgver=20151222
-pkgrel=1
-pkgdesc="German hunspell dictionaries"
-arch=('any')
-url="http://www.j3e.de/ispell/igerman98/;
-license=('GPL')
-makedepends=('hunspell' 'ispell')
-optdepends=('hunspell: the spell checking libraries and apps')
-source=("http://www.j3e.de/ispell/igerman98/dict/igerman98-$pkgver.tar.bz2;)
-md5sums=('d4cc73954389454e4045e0c4c6824813')
-
-build() {
-  cd "$srcdir/igerman98-$pkgver"
-  make hunspell/de_AT.dic hunspell/de_AT.aff \
-   hunspell/de_CH.dic hunspell/de_CH.aff \
-   hunspell/de_DE.dic hunspell/de_DE.aff
-}
-
-package() {
-  cd "$srcdir/igerman98-$pkgver/hunspell"
-  install -dm755 ${pkgdir}/usr/share/hunspell
-  cp -p de_??.dic de_??.aff $pkgdir/usr/share/hunspell
-
-  pushd $pkgdir/usr/share/hunspell/
-  de_DE_aliases="de_BE de_LU"
-  for lang in $de_DE_aliases; do
-ln -s de_DE.aff $lang.aff
-ln -s de_DE.dic $lang.dic
-  done
-  de_CH_aliases="de_LI"
-  for lang in $de_CH_aliases; do
-ln -s de_CH.aff $lang.aff
-ln -s de_CH.dic $lang.dic
-  done
-  popd
-
-  # the symlinks
-  install -dm755 ${pkgdir}/usr/share/myspell/dicts
-  pushd $pkgdir/usr/share/myspell/dicts
-for file in $pkgdir/usr/share/hunspell/*; do
-  ln -sv /usr/share/hunspell/$(basename $file) .
-done
-  popd
-
-  # docs
-  install -dm755 ${pkgdir}/usr/share/doc/$pkgname
-  cp -p README_de_??.txt $pkgdir/usr/share/doc/$pkgname
-}

Copied: hunspell-de/repos/extra-any/PKGBUILD (from rev 286233, 
hunspell-de/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-01-13 21:56:54 UTC (rev 286234)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: AndyRTR 
+# Contributor: Alexander Fehr 
+
+pkgname=hunspell-de
+pkgver=20151222
+pkgrel=1
+pkgdesc="German hunspell dictionaries"
+arch=('any')
+url="https://www.j3e.de/ispell/igerman98/;
+license=('GPL')
+makedepends=('hunspell' 'ispell')
+optdepends=('hunspell: the spell checking libraries and apps')
+source=("https://www.j3e.de/ispell/igerman98/dict/igerman98-$pkgver.tar.bz2;)
+md5sums=('d4cc73954389454e4045e0c4c6824813')
+
+build() {
+  cd "$srcdir/igerman98-$pkgver"
+  make hunspell/de_AT.dic hunspell/de_AT.aff \
+   hunspell/de_CH.dic hunspell/de_CH.aff \
+   hunspell/de_DE.dic hunspell/de_DE.aff
+}
+
+package() {
+  cd "$srcdir/igerman98-$pkgver/hunspell"
+  install -dm755 ${pkgdir}/usr/share/hunspell
+  cp -p de_??.dic de_??.aff $pkgdir/usr/share/hunspell
+
+  pushd $pkgdir/usr/share/hunspell/
+  de_DE_aliases="de_BE de_LU"
+  for lang in $de_DE_aliases; do
+ln -s de_DE.aff $lang.aff
+ln -s de_DE.dic $lang.dic
+  done
+  de_CH_aliases="de_LI"
+  for lang in $de_CH_aliases; do
+ln -s de_CH.aff $lang.aff
+ln -s de_CH.dic $lang.dic
+  done
+  popd
+
+  # the symlinks
+  install -dm755 ${pkgdir}/usr/share/myspell/dicts
+  pushd $pkgdir/usr/share/myspell/dicts
+for file in $pkgdir/usr/share/hunspell/*; do
+  ln -sv /usr/share/hunspell/$(basename $file) .
+done
+  popd
+
+  # docs
+  install -dm755 ${pkgdir}/usr/share/doc/$pkgname
+  cp -p README_de_??.txt $pkgdir/usr/share/doc/$pkgname
+}


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

2017-01-13 Thread Andreas Radke
Date: Friday, January 13, 2017 @ 21:56:43
  Author: andyrtr
Revision: 286233

https sources / gpg signature fixes

Modified:
  hunspell-de/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-13 21:50:22 UTC (rev 286232)
+++ PKGBUILD2017-01-13 21:56:43 UTC (rev 286233)
@@ -7,11 +7,11 @@
 pkgrel=1
 pkgdesc="German hunspell dictionaries"
 arch=('any')
-url="http://www.j3e.de/ispell/igerman98/;
+url="https://www.j3e.de/ispell/igerman98/;
 license=('GPL')
 makedepends=('hunspell' 'ispell')
 optdepends=('hunspell: the spell checking libraries and apps')
-source=("http://www.j3e.de/ispell/igerman98/dict/igerman98-$pkgver.tar.bz2;)
+source=("https://www.j3e.de/ispell/igerman98/dict/igerman98-$pkgver.tar.bz2;)
 md5sums=('d4cc73954389454e4045e0c4c6824813')
 
 build() {


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

2017-01-13 Thread Dave Reisner
Date: Friday, January 13, 2017 @ 21:50:22
  Author: dreisner
Revision: 286232

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

Added:
  ed/repos/testing-i686/PKGBUILD
(from rev 286231, ed/trunk/PKGBUILD)
  ed/repos/testing-x86_64/PKGBUILD
(from rev 286231, ed/trunk/PKGBUILD)
Deleted:
  ed/repos/testing-i686/PKGBUILD
  ed/repos/testing-x86_64/PKGBUILD

-+
 /PKGBUILD   |   76 ++
 testing-i686/PKGBUILD   |   38 ---
 testing-x86_64/PKGBUILD |   38 ---
 3 files changed, 76 insertions(+), 76 deletions(-)

Deleted: testing-i686/PKGBUILD
===
--- testing-i686/PKGBUILD   2017-01-13 21:49:44 UTC (rev 286231)
+++ testing-i686/PKGBUILD   2017-01-13 21:50:22 UTC (rev 286232)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Dave Reisner 
-# Maintainer: Andreas Radke 
-
-pkgname=ed
-pkgver=1.14
-pkgrel=1
-pkgdesc="A POSIX-compliant line-oriented text editor"
-arch=('i686' 'x86_64')
-license=('GPL')
-url="http://www.gnu.org/software/ed/ed.html;
-depends=('glibc' 'sh')
-options=('!emptydirs')
-validpgpkeys=('1D41C14B272A2219A739FA4F8FE99503132D7742')  # Antonio Diaz Diaz
-source=("https://ftp.gnu.org/gnu/ed/$pkgname-$pkgver.tar.lz"{,.sig})
-md5sums=('cde9deb22f1139b9e66098ccbb4bb0ba'
- 'SKIP')
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  ./configure --prefix=/ \
-  --bindir=/usr/bin \
-  --mandir=/usr/share/man \
-  --infodir=/usr/share/info \
-  "CFLAGS=$CFLAGS" \
-  "LDFLAGS=$LDFLAGS"
-
-  make
-}
-
-check() {
-  make -C "$pkgname-$pkgver" check
-}
-
-package() {
-  make -C "$pkgname-$pkgver" "DESTDIR=$pkgdir" install
-}

Copied: ed/repos/testing-i686/PKGBUILD (from rev 286231, ed/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2017-01-13 21:50:22 UTC (rev 286232)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Dave Reisner 
+# Maintainer: Andreas Radke 
+
+pkgname=ed
+pkgver=1.14.1
+pkgrel=1
+pkgdesc="A POSIX-compliant line-oriented text editor"
+arch=('i686' 'x86_64')
+license=('GPL')
+url="http://www.gnu.org/software/ed/ed.html;
+depends=('glibc' 'sh')
+options=('!emptydirs')
+validpgpkeys=('1D41C14B272A2219A739FA4F8FE99503132D7742')  # Antonio Diaz Diaz
+source=("https://ftp.gnu.org/gnu/ed/$pkgname-$pkgver.tar.lz"{,.sig})
+md5sums=('7f4a54fa7f366479f03654b8af645fd0'
+ 'SKIP')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure --prefix=/ \
+  --bindir=/usr/bin \
+  --mandir=/usr/share/man \
+  --infodir=/usr/share/info \
+  "CFLAGS=$CFLAGS" \
+  "LDFLAGS=$LDFLAGS"
+
+  make
+}
+
+check() {
+  make -C "$pkgname-$pkgver" check
+}
+
+package() {
+  make -C "$pkgname-$pkgver" "DESTDIR=$pkgdir" install
+}

Deleted: testing-x86_64/PKGBUILD
===
--- testing-x86_64/PKGBUILD 2017-01-13 21:49:44 UTC (rev 286231)
+++ testing-x86_64/PKGBUILD 2017-01-13 21:50:22 UTC (rev 286232)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Dave Reisner 
-# Maintainer: Andreas Radke 
-
-pkgname=ed
-pkgver=1.14
-pkgrel=1
-pkgdesc="A POSIX-compliant line-oriented text editor"
-arch=('i686' 'x86_64')
-license=('GPL')
-url="http://www.gnu.org/software/ed/ed.html;
-depends=('glibc' 'sh')
-options=('!emptydirs')
-validpgpkeys=('1D41C14B272A2219A739FA4F8FE99503132D7742')  # Antonio Diaz Diaz
-source=("https://ftp.gnu.org/gnu/ed/$pkgname-$pkgver.tar.lz"{,.sig})
-md5sums=('cde9deb22f1139b9e66098ccbb4bb0ba'
- 'SKIP')
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  ./configure --prefix=/ \
-  --bindir=/usr/bin \
-  --mandir=/usr/share/man \
-  --infodir=/usr/share/info \
-  "CFLAGS=$CFLAGS" \
-  "LDFLAGS=$LDFLAGS"
-
-  make
-}
-
-check() {
-  make -C "$pkgname-$pkgver" check
-}
-
-package() {
-  make -C "$pkgname-$pkgver" "DESTDIR=$pkgdir" install
-}

Copied: ed/repos/testing-x86_64/PKGBUILD (from rev 286231, ed/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2017-01-13 21:50:22 UTC (rev 286232)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Dave Reisner 
+# Maintainer: Andreas Radke 
+
+pkgname=ed
+pkgver=1.14.1
+pkgrel=1
+pkgdesc="A POSIX-compliant line-oriented text editor"
+arch=('i686' 'x86_64')
+license=('GPL')
+url="http://www.gnu.org/software/ed/ed.html;
+depends=('glibc' 'sh')
+options=('!emptydirs')
+validpgpkeys=('1D41C14B272A2219A739FA4F8FE99503132D7742')  

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

2017-01-13 Thread Dave Reisner
Date: Friday, January 13, 2017 @ 21:49:44
  Author: dreisner
Revision: 286231

upgpkg: ed 1.14.1-1

Modified:
  ed/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-13 21:35:34 UTC (rev 286230)
+++ PKGBUILD2017-01-13 21:49:44 UTC (rev 286231)
@@ -3,7 +3,7 @@
 # Maintainer: Andreas Radke 
 
 pkgname=ed
-pkgver=1.14
+pkgver=1.14.1
 pkgrel=1
 pkgdesc="A POSIX-compliant line-oriented text editor"
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 options=('!emptydirs')
 validpgpkeys=('1D41C14B272A2219A739FA4F8FE99503132D7742')  # Antonio Diaz Diaz
 source=("https://ftp.gnu.org/gnu/ed/$pkgname-$pkgver.tar.lz"{,.sig})
-md5sums=('cde9deb22f1139b9e66098ccbb4bb0ba'
+md5sums=('7f4a54fa7f366479f03654b8af645fd0'
  'SKIP')
 
 build() {


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

2017-01-13 Thread Andreas Radke
Date: Friday, January 13, 2017 @ 21:35:25
  Author: andyrtr
Revision: 286229

https sources / gpg signature fixes

Modified:
  glproto/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-13 21:32:51 UTC (rev 286228)
+++ PKGBUILD2017-01-13 21:35:25 UTC (rev 286229)
@@ -7,9 +7,9 @@
 pkgrel=1
 pkgdesc="X11 OpenGL extension wire protocol"
 arch=(any)
-url="http://xorg.freedesktop.org/;
+url="https://xorg.freedesktop.org/;
 license=('custom')
-source=(http://xorg.freedesktop.org/releases/individual/proto/${pkgname}-${pkgver}.tar.bz2)
+source=(https://xorg.freedesktop.org/releases/individual/proto/${pkgname}-${pkgver}.tar.bz2)
 sha256sums=('adaa94bded310a2bfcbb9deb4d751d965fcfe6fb3a2f6d242e2df2d6589dbe40')
 
 build() {


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

2017-01-13 Thread Andreas Radke
Date: Friday, January 13, 2017 @ 21:35:34
  Author: andyrtr
Revision: 286230

archrelease: copy trunk to extra-any

Added:
  glproto/repos/extra-any/PKGBUILD
(from rev 286229, glproto/trunk/PKGBUILD)
Deleted:
  glproto/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-01-13 21:35:25 UTC (rev 286229)
+++ PKGBUILD2017-01-13 21:35:34 UTC (rev 286230)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-# Contributor: Alexander Baldeck 
-
-pkgname=glproto
-pkgver=1.4.17
-pkgrel=1
-pkgdesc="X11 OpenGL extension wire protocol"
-arch=(any)
-url="http://xorg.freedesktop.org/;
-license=('custom')
-source=(http://xorg.freedesktop.org/releases/individual/proto/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('adaa94bded310a2bfcbb9deb4d751d965fcfe6fb3a2f6d242e2df2d6589dbe40')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 "COPYING" "${pkgdir}/usr/share/licenses/${pkgname}/"
-}

Copied: glproto/repos/extra-any/PKGBUILD (from rev 286229, 
glproto/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-01-13 21:35:34 UTC (rev 286230)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Alexander Baldeck 
+
+pkgname=glproto
+pkgver=1.4.17
+pkgrel=1
+pkgdesc="X11 OpenGL extension wire protocol"
+arch=(any)
+url="https://xorg.freedesktop.org/;
+license=('custom')
+source=(https://xorg.freedesktop.org/releases/individual/proto/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('adaa94bded310a2bfcbb9deb4d751d965fcfe6fb3a2f6d242e2df2d6589dbe40')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 "COPYING" "${pkgdir}/usr/share/licenses/${pkgname}/"
+}


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

2017-01-13 Thread Lukas Fleischer
Date: Friday, January 13, 2017 @ 21:34:51
  Author: lfleischer
Revision: 207282

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

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

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

Copied: bitcoin/repos/community-staging-i686/PKGBUILD (from rev 207281, 
bitcoin/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-01-13 21:34:51 UTC (rev 207282)
@@ -0,0 +1,221 @@
+# $Id$
+# Maintainer: Timothy Redaelli 
+# Contributor: shahid 
+
+#_dbver=4.8.30
+pkgbase=bitcoin
+pkgname=('bitcoin-daemon' 'bitcoin-cli' 'bitcoin-qt' 'bitcoin-tx')
+pkgver=0.13.2
+pkgrel=3
+arch=('i686' 'x86_64')
+url="http://www.bitcoin.org/;
+makedepends=('git' 'boost' 'libevent' 'qt5-base' 'qt5-tools' 'qrencode' 
'miniupnpc' 'protobuf' 'zeromq')
+license=('MIT')
+source=(git+https://github.com/bitcoin/bitcoin.git#tag=v${pkgver})
+#http://download.oracle.com/berkeley-db/db-${_dbver}.NC.tar.gz
+sha256sums=('SKIP')
+
+validpgpkeys=(71A3B16735405025D447E8F274810B012346C9A6)
+
+# TODO: Build using db 4.8.30
+#prepare() {
+#  mkdir -p db4
+#}
+
+_parse_gpg_statusfile() {
+   local type arg1 arg6 arg10
+
+   while read -r _ type arg1 _ _ _ _ arg6 _ _ _ arg10 _; do
+   case "$type" in
+   GOODSIG)
+   pubkey=$arg1
+   success=1
+   status="good"
+   ;;
+   EXPSIG)
+   pubkey=$arg1
+   success=1
+   status="expired"
+   ;;
+   EXPKEYSIG)
+   pubkey=$arg1
+   success=1
+   status="expiredkey"
+   ;;
+   REVKEYSIG)
+   pubkey=$arg1
+   success=0
+   status="revokedkey"
+   ;;
+   BADSIG)
+   pubkey=$arg1
+   success=0
+   status="bad"
+   ;;
+   ERRSIG)
+   pubkey=$arg1
+   success=0
+   if [[ $arg6 == 9 ]]; then
+   status="missingkey"
+   else
+   status="error"
+   fi
+   ;;
+   VALIDSIG)
+   if [[ $arg10 ]]; then
+   # If the file was signed with a subkey, 
arg10 contains
+   # the fingerprint of the primary key
+   fingerprint=$arg10
+   else
+   fingerprint=$arg1
+   fi
+   ;;
+   TRUST_UNDEFINED|TRUST_NEVER)
+   trusted=0
+   ;;
+   TRUST_MARGINAL|TRUST_FULLY|TRUST_ULTIMATE)
+   trusted=1
+   ;;
+   esac
+   done < "$1"
+}
+
+_validate_gpg_tag() {
+  local file ext decompress found pubkey success status fingerprint trusted
+  local warning=0
+  local errors=0
+  local statusfile=$(mktemp)
+
+  msg "$(gettext "Verifying source file signatures with %s...")" "gpg"
+
+  git verify-tag --raw "$1" 2>"$statusfile"
+
+  # these variables are assigned values in parse_gpg_statusfile
+  success=0
+  status=
+  pubkey=
+  fingerprint=
+  trusted=
+  _parse_gpg_statusfile "$statusfile"
+  if (( ! $success )); then
+printf '%s' "$(gettext "FAILED")" >&2
+case "$status" in
+  "missingkey")
+printf ' (%s)' "$(gettext "unknown public key") $pubkey" >&2
+;;
+  "revokedkey")
+printf " ($(gettext "public key %s has been revoked"))" "$pubkey" >&2
+;;
+  "bad")
+printf ' (%s)' "$(gettext "bad signature from public key") $pubkey" >&2
+;;
+  "error")
+ 

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

2017-01-13 Thread Lukas Fleischer
Date: Friday, January 13, 2017 @ 21:34:41
  Author: lfleischer
Revision: 207281

upgpkg: bitcoin 0.13.2-3

protobuf 3.1.0 rebuild.

Modified:
  bitcoin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-13 20:59:07 UTC (rev 207280)
+++ PKGBUILD2017-01-13 21:34:41 UTC (rev 207281)
@@ -6,7 +6,7 @@
 pkgbase=bitcoin
 pkgname=('bitcoin-daemon' 'bitcoin-cli' 'bitcoin-qt' 'bitcoin-tx')
 pkgver=0.13.2
-pkgrel=2
+pkgrel=3
 arch=('i686' 'x86_64')
 url="http://www.bitcoin.org/;
 makedepends=('git' 'boost' 'libevent' 'qt5-base' 'qt5-tools' 'qrencode' 
'miniupnpc' 'protobuf' 'zeromq')


[arch-commits] Commit in dri3proto/repos/extra-any (COPYING COPYING PKGBUILD PKGBUILD)

2017-01-13 Thread Andreas Radke
Date: Friday, January 13, 2017 @ 21:32:51
  Author: andyrtr
Revision: 286228

archrelease: copy trunk to extra-any

Added:
  dri3proto/repos/extra-any/COPYING
(from rev 286227, dri3proto/trunk/COPYING)
  dri3proto/repos/extra-any/PKGBUILD
(from rev 286227, dri3proto/trunk/PKGBUILD)
Deleted:
  dri3proto/repos/extra-any/COPYING
  dri3proto/repos/extra-any/PKGBUILD

--+
 COPYING  |   42 +-
 PKGBUILD |   60 ++--
 2 files changed, 51 insertions(+), 51 deletions(-)

Deleted: COPYING
===
--- COPYING 2017-01-13 21:32:39 UTC (rev 286227)
+++ COPYING 2017-01-13 21:32:51 UTC (rev 286228)
@@ -1,21 +0,0 @@
-/*
- * Copyright © 2013 Keith Packard
- *
- * Permission to use, copy, modify, distribute, and sell this software and its
- * documentation for any purpose is hereby granted without fee, provided that
- * the above copyright notice appear in all copies and that both that copyright
- * notice and this permission notice appear in supporting documentation, and
- * that the name of the copyright holders not be used in advertising or
- * publicity pertaining to distribution of the software without specific,
- * written prior permission.  The copyright holders make no representations
- * about the suitability of this software for any purpose.  It is provided "as
- * is" without express or implied warranty.
- *
- * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
- * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
- * EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
- * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
- * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
- * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
- * OF THIS SOFTWARE.
- */

Copied: dri3proto/repos/extra-any/COPYING (from rev 286227, 
dri3proto/trunk/COPYING)
===
--- COPYING (rev 0)
+++ COPYING 2017-01-13 21:32:51 UTC (rev 286228)
@@ -0,0 +1,21 @@
+/*
+ * Copyright © 2013 Keith Packard
+ *
+ * Permission to use, copy, modify, distribute, and sell this software and its
+ * documentation for any purpose is hereby granted without fee, provided that
+ * the above copyright notice appear in all copies and that both that copyright
+ * notice and this permission notice appear in supporting documentation, and
+ * that the name of the copyright holders not be used in advertising or
+ * publicity pertaining to distribution of the software without specific,
+ * written prior permission.  The copyright holders make no representations
+ * about the suitability of this software for any purpose.  It is provided "as
+ * is" without express or implied warranty.
+ *
+ * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
+ * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
+ * EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
+ * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
+ * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
+ * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
+ * OF THIS SOFTWARE.
+ */

Deleted: PKGBUILD
===
--- PKGBUILD2017-01-13 21:32:39 UTC (rev 286227)
+++ PKGBUILD2017-01-13 21:32:51 UTC (rev 286228)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: AndyRTR 
-
-pkgname=dri3proto
-pkgver=1.0
-pkgrel=1
-pkgdesc="X11 DRI3 protocol"
-arch=('any')
-url="http://xorg.freedesktop.org/;
-license=('custom')
-source=(${url}/releases/individual/proto/${pkgname}-${pkgver}.tar.bz2
-COPYING)
-sha256sums=('01be49d70200518b9a6b297131f6cc71f4ea2de17436896af153226a774fc074'
-'5e46864ede2fda46c3cb7cfe3a7b9f9e4bd36d8d21d8010a284caa64b81d465a')
-
-build() {
-   cd $pkgname-$pkgver
-   ./configure --prefix=/usr
-   make
-}
-
-package() {
-   cd $pkgname-$pkgver
-   make DESTDIR="$pkgdir/" install
-   
-# license is still missing
-# COPYING is taken from top of /usr/include/X11/extensions/dri3proto.h
-install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-install -m644 ${srcdir}/COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
-}

Copied: dri3proto/repos/extra-any/PKGBUILD (from rev 286227, 
dri3proto/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-01-13 21:32:51 UTC (rev 286228)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: AndyRTR 
+
+pkgname=dri3proto
+pkgver=1.0
+pkgrel=1
+pkgdesc="X11 DRI3 protocol"
+arch=('any')

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

2017-01-13 Thread Andreas Radke
Date: Friday, January 13, 2017 @ 21:32:39
  Author: andyrtr
Revision: 286227

https sources / gpg signature fixes

Modified:
  dri3proto/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-13 21:30:28 UTC (rev 286226)
+++ PKGBUILD2017-01-13 21:32:39 UTC (rev 286227)
@@ -6,7 +6,7 @@
 pkgrel=1
 pkgdesc="X11 DRI3 protocol"
 arch=('any')
-url="http://xorg.freedesktop.org/;
+url="https://xorg.freedesktop.org/;
 license=('custom')
 source=(${url}/releases/individual/proto/${pkgname}-${pkgver}.tar.bz2
 COPYING)


[arch-commits] Commit in cups-pk-helper/repos/extra-i686 (PKGBUILD PKGBUILD)

2017-01-13 Thread Andreas Radke
Date: Friday, January 13, 2017 @ 21:30:28
  Author: andyrtr
Revision: 286226

archrelease: copy trunk to extra-i686

Added:
  cups-pk-helper/repos/extra-i686/PKGBUILD
(from rev 286225, cups-pk-helper/trunk/PKGBUILD)
Deleted:
  cups-pk-helper/repos/extra-i686/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-01-13 21:30:12 UTC (rev 286225)
+++ PKGBUILD2017-01-13 21:30:28 UTC (rev 286226)
@@ -1,27 +0,0 @@
-#$Id$
-# Maintainer: Ionut Biru 
-pkgname=cups-pk-helper
-pkgver=0.2.6
-pkgrel=1
-pkgdesc="A helper that makes system-config-printer use PolicyKit"
-arch=(i686 x86_64)
-url="http://www.freedesktop.org/software/cups-pk-helper/releases/;
-license=('GPL')
-depends=(polkit libcups)
-makedepends=(intltool)
-source=(http://www.freedesktop.org/software/$pkgname/releases/$pkgname-$pkgver.tar.xz)
-sha256sums=('959af8f2f5a2761e7e498b61c9caf25ae963335031eae9972d999e9a0d97a228')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc \
---libexecdir=/usr/lib/cups-pk-helper
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: cups-pk-helper/repos/extra-i686/PKGBUILD (from rev 286225, 
cups-pk-helper/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-01-13 21:30:28 UTC (rev 286226)
@@ -0,0 +1,28 @@
+#$Id$
+# Maintainer: Ionut Biru 
+
+pkgname=cups-pk-helper
+pkgver=0.2.6
+pkgrel=1
+pkgdesc="A helper that makes system-config-printer use PolicyKit"
+arch=(i686 x86_64)
+url="https://www.freedesktop.org/software/cups-pk-helper/releases/;
+license=('GPL')
+depends=(polkit libcups)
+makedepends=(intltool)
+source=(https://www.freedesktop.org/software/$pkgname/releases/$pkgname-$pkgver.tar.xz)
+sha256sums=('959af8f2f5a2761e7e498b61c9caf25ae963335031eae9972d999e9a0d97a228')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc \
+--libexecdir=/usr/lib/cups-pk-helper
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in cups-pk-helper/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2017-01-13 Thread Andreas Radke
Date: Friday, January 13, 2017 @ 21:30:12
  Author: andyrtr
Revision: 286225

archrelease: copy trunk to extra-x86_64

Added:
  cups-pk-helper/repos/extra-x86_64/PKGBUILD
(from rev 286224, cups-pk-helper/trunk/PKGBUILD)
Deleted:
  cups-pk-helper/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-01-13 21:29:57 UTC (rev 286224)
+++ PKGBUILD2017-01-13 21:30:12 UTC (rev 286225)
@@ -1,27 +0,0 @@
-#$Id$
-# Maintainer: Ionut Biru 
-pkgname=cups-pk-helper
-pkgver=0.2.6
-pkgrel=1
-pkgdesc="A helper that makes system-config-printer use PolicyKit"
-arch=(i686 x86_64)
-url="http://www.freedesktop.org/software/cups-pk-helper/releases/;
-license=('GPL')
-depends=(polkit libcups)
-makedepends=(intltool)
-source=(http://www.freedesktop.org/software/$pkgname/releases/$pkgname-$pkgver.tar.xz)
-sha256sums=('959af8f2f5a2761e7e498b61c9caf25ae963335031eae9972d999e9a0d97a228')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc \
---libexecdir=/usr/lib/cups-pk-helper
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: cups-pk-helper/repos/extra-x86_64/PKGBUILD (from rev 286224, 
cups-pk-helper/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-01-13 21:30:12 UTC (rev 286225)
@@ -0,0 +1,28 @@
+#$Id$
+# Maintainer: Ionut Biru 
+
+pkgname=cups-pk-helper
+pkgver=0.2.6
+pkgrel=1
+pkgdesc="A helper that makes system-config-printer use PolicyKit"
+arch=(i686 x86_64)
+url="https://www.freedesktop.org/software/cups-pk-helper/releases/;
+license=('GPL')
+depends=(polkit libcups)
+makedepends=(intltool)
+source=(https://www.freedesktop.org/software/$pkgname/releases/$pkgname-$pkgver.tar.xz)
+sha256sums=('959af8f2f5a2761e7e498b61c9caf25ae963335031eae9972d999e9a0d97a228')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc \
+--libexecdir=/usr/lib/cups-pk-helper
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in cups-pk-helper/trunk (PKGBUILD)

2017-01-13 Thread Andreas Radke
Date: Friday, January 13, 2017 @ 21:29:57
  Author: andyrtr
Revision: 286224

https sources / gpg signature fixes

Modified:
  cups-pk-helper/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-13 21:18:36 UTC (rev 286223)
+++ PKGBUILD2017-01-13 21:29:57 UTC (rev 286224)
@@ -1,15 +1,16 @@
 #$Id$
 # Maintainer: Ionut Biru 
+
 pkgname=cups-pk-helper
 pkgver=0.2.6
 pkgrel=1
 pkgdesc="A helper that makes system-config-printer use PolicyKit"
 arch=(i686 x86_64)
-url="http://www.freedesktop.org/software/cups-pk-helper/releases/;
+url="https://www.freedesktop.org/software/cups-pk-helper/releases/;
 license=('GPL')
 depends=(polkit libcups)
 makedepends=(intltool)
-source=(http://www.freedesktop.org/software/$pkgname/releases/$pkgname-$pkgver.tar.xz)
+source=(https://www.freedesktop.org/software/$pkgname/releases/$pkgname-$pkgver.tar.xz)
 sha256sums=('959af8f2f5a2761e7e498b61c9caf25ae963335031eae9972d999e9a0d97a228')
 
 build() {


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

2017-01-13 Thread Lukas Fleischer
Date: Friday, January 13, 2017 @ 21:18:36
  Author: lfleischer
Revision: 286223

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-01-13 21:18:28 UTC (rev 286222)
+++ extra-i686/PKGBUILD 2017-01-13 21:18:36 UTC (rev 286223)
@@ -1,33 +0,0 @@
-# Maintainer: Lukas Fleischer 
-# Contributor: Hilton Medeiros 
-# Contributor: Dave Reisner 
-
-pkgname=libgit2
-pkgver=0.24.3
-pkgrel=1
-epoch=1
-pkgdesc='A linkable library for Git'
-arch=('i686' 'x86_64')
-url='https://libgit2.github.com/'
-depends=(zlib openssl libssh2 curl)
-makedepends=(cmake python)
-license=('GPL2')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/libgit2/libgit2/archive/v${pkgver}.tar.gz;)
-sha1sums=('08bda95828f9e0aa470f43b902a6b166063cf6fe')
-
-build() {
-  cd "$pkgname-$pkgver"
-  export LANG=en_US.UTF-8
-  cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr -DTHREADSAFE=ON
-  make
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-  make test
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}

Copied: libgit2/repos/extra-i686/PKGBUILD (from rev 286222, 
libgit2/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-01-13 21:18:36 UTC (rev 286223)
@@ -0,0 +1,33 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: Hilton Medeiros 
+# Contributor: Dave Reisner 
+
+pkgname=libgit2
+pkgver=0.24.6
+pkgrel=1
+epoch=1
+pkgdesc='A linkable library for Git'
+arch=('i686' 'x86_64')
+url='https://libgit2.github.com/'
+depends=(zlib openssl libssh2 curl)
+makedepends=(cmake python)
+license=('GPL2')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/libgit2/libgit2/archive/v${pkgver}.tar.gz;)
+sha1sums=('259d7ccdf716b273f239810bdd567195c3e02d0d')
+
+build() {
+  cd "$pkgname-$pkgver"
+  export LANG=en_US.UTF-8
+  cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr -DTHREADSAFE=ON
+  make
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  make test
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2017-01-13 21:18:28 UTC (rev 286222)
+++ extra-x86_64/PKGBUILD   2017-01-13 21:18:36 UTC (rev 286223)
@@ -1,33 +0,0 @@
-# Maintainer: Lukas Fleischer 
-# Contributor: Hilton Medeiros 
-# Contributor: Dave Reisner 
-
-pkgname=libgit2
-pkgver=0.24.3
-pkgrel=1
-epoch=1
-pkgdesc='A linkable library for Git'
-arch=('i686' 'x86_64')
-url='https://libgit2.github.com/'
-depends=(zlib openssl libssh2 curl)
-makedepends=(cmake python)
-license=('GPL2')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/libgit2/libgit2/archive/v${pkgver}.tar.gz;)
-sha1sums=('08bda95828f9e0aa470f43b902a6b166063cf6fe')
-
-build() {
-  cd "$pkgname-$pkgver"
-  export LANG=en_US.UTF-8
-  cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr -DTHREADSAFE=ON
-  make
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-  make test
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}

Copied: libgit2/repos/extra-x86_64/PKGBUILD (from rev 286222, 
libgit2/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2017-01-13 21:18:36 UTC (rev 286223)
@@ -0,0 +1,33 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: Hilton Medeiros 
+# Contributor: Dave Reisner 
+
+pkgname=libgit2
+pkgver=0.24.6
+pkgrel=1
+epoch=1
+pkgdesc='A linkable library for Git'
+arch=('i686' 'x86_64')
+url='https://libgit2.github.com/'
+depends=(zlib openssl libssh2 curl)
+makedepends=(cmake python)
+license=('GPL2')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/libgit2/libgit2/archive/v${pkgver}.tar.gz;)
+sha1sums=('259d7ccdf716b273f239810bdd567195c3e02d0d')
+
+build() {
+  cd "$pkgname-$pkgver"
+  export LANG=en_US.UTF-8
+  cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr -DTHREADSAFE=ON
+  make
+}
+
+check() {
+ 

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

2017-01-13 Thread Lukas Fleischer
Date: Friday, January 13, 2017 @ 21:18:28
  Author: lfleischer
Revision: 286222

upgpkg: libgit2 1:0.24.6-1

Upstream update.

Switch to 0.24.6, the 0.25 branch is not supported by libgit2-glib yet.

Modified:
  libgit2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-13 21:14:02 UTC (rev 286221)
+++ PKGBUILD2017-01-13 21:18:28 UTC (rev 286222)
@@ -3,7 +3,7 @@
 # Contributor: Dave Reisner 
 
 pkgname=libgit2
-pkgver=0.25.1
+pkgver=0.24.6
 pkgrel=1
 epoch=1
 pkgdesc='A linkable library for Git'
@@ -13,7 +13,7 @@
 makedepends=(cmake python)
 license=('GPL2')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/libgit2/libgit2/archive/v${pkgver}.tar.gz;)
-sha1sums=('c65238d0e0a698b202a3a886d003228cac6dacc3')
+sha1sums=('259d7ccdf716b273f239810bdd567195c3e02d0d')
 
 build() {
   cd "$pkgname-$pkgver"


[arch-commits] Commit in xorg-mkfontdir/repos/testing-any (8 files)

2017-01-13 Thread Jan Steffens
Date: Friday, January 13, 2017 @ 21:08:55
  Author: heftig
Revision: 286219

archrelease: copy trunk to testing-any

Added:
  xorg-mkfontdir/repos/testing-any/PKGBUILD
(from rev 286218, xorg-mkfontdir/trunk/PKGBUILD)
  xorg-mkfontdir/repos/testing-any/xorg-mkfontdir.hook
(from rev 286218, xorg-mkfontdir/trunk/xorg-mkfontdir.hook)
  xorg-mkfontdir/repos/testing-any/xorg-mkfontdir.install
(from rev 286218, xorg-mkfontdir/trunk/xorg-mkfontdir.install)
  xorg-mkfontdir/repos/testing-any/xorg-mkfontdir.script
(from rev 286218, xorg-mkfontdir/trunk/xorg-mkfontdir.script)
Deleted:
  xorg-mkfontdir/repos/testing-any/PKGBUILD
  xorg-mkfontdir/repos/testing-any/xorg-mkfontdir.hook
  xorg-mkfontdir/repos/testing-any/xorg-mkfontdir.install
  xorg-mkfontdir/repos/testing-any/xorg-mkfontdir.script

+
 PKGBUILD   |   68 +++
 xorg-mkfontdir.hook|   24 
 xorg-mkfontdir.install |   15 +-
 xorg-mkfontdir.script  |   18 ++--
 4 files changed, 63 insertions(+), 62 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-01-13 21:07:51 UTC (rev 286218)
+++ PKGBUILD2017-01-13 21:08:55 UTC (rev 286219)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=xorg-mkfontdir
-pkgver=1.0.7
-pkgrel=6
-pkgdesc="Create an index of X font files in a directory"
-arch=(any)
-url="http://xorg.freedesktop.org/;
-license=('custom')
-depends=('bash' 'xorg-mkfontscale')
-makedepends=('xorg-util-macros')
-groups=('xorg' 'xorg-apps')
-install=xorg-mkfontdir.install
-source=(http://xorg.freedesktop.org/archive/individual/app/mkfontdir-${pkgver}.tar.bz2
-xorg-mkfontdir.hook
-xorg-mkfontdir.script)
-sha256sums=('56d52a482df130484e51fd066d1b6eda7c2c02ddbc91fe6e2be1b9c4e7306530'
-'df6f71601b2be5161bb8e980acee753d6ef86d71221f61627422bcbe87ed09cd'
-'06c60e3e46a76b5300c3224cea6b5094556ea712a08ff9a0103be2eb58d222b5')
-
-build() {
-  cd mkfontdir-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd mkfontdir-${pkgver}
-  make DESTDIR="${pkgdir}" install
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
-  install -Dm644 ../xorg-mkfontdir.hook 
"${pkgdir}/usr/share/libalpm/hooks/xorg-mkfontdir.hook"
-  install -D ../xorg-mkfontdir.script 
"${pkgdir}/usr/share/libalpm/scripts/xorg-mkfontdir"
-}

Copied: xorg-mkfontdir/repos/testing-any/PKGBUILD (from rev 286218, 
xorg-mkfontdir/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-01-13 21:08:55 UTC (rev 286219)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=xorg-mkfontdir
+pkgver=1.0.7
+pkgrel=7
+pkgdesc="Create an index of X font files in a directory"
+arch=(any)
+url="http://xorg.freedesktop.org/;
+license=('custom')
+depends=('bash' 'xorg-mkfontscale')
+makedepends=('xorg-util-macros')
+groups=('xorg' 'xorg-apps')
+install=xorg-mkfontdir.install
+source=(http://xorg.freedesktop.org/archive/individual/app/mkfontdir-${pkgver}.tar.bz2
+xorg-mkfontdir.hook
+xorg-mkfontdir.script)
+sha256sums=('56d52a482df130484e51fd066d1b6eda7c2c02ddbc91fe6e2be1b9c4e7306530'
+'df6f71601b2be5161bb8e980acee753d6ef86d71221f61627422bcbe87ed09cd'
+'06c60e3e46a76b5300c3224cea6b5094556ea712a08ff9a0103be2eb58d222b5')
+
+build() {
+  cd mkfontdir-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd mkfontdir-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+  install -Dm644 ../xorg-mkfontdir.hook 
"${pkgdir}/usr/share/libalpm/hooks/xorg-mkfontdir.hook"
+  install -D ../xorg-mkfontdir.script 
"${pkgdir}/usr/share/libalpm/scripts/xorg-mkfontdir"
+}

Deleted: xorg-mkfontdir.hook
===
--- xorg-mkfontdir.hook 2017-01-13 21:07:51 UTC (rev 286218)
+++ xorg-mkfontdir.hook 2017-01-13 21:08:55 UTC (rev 286219)
@@ -1,12 +0,0 @@
-[Trigger]
-Type = File
-Operation = Install
-Operation = Upgrade
-Operation = Remove
-Target = usr/share/fonts/*/
-
-[Action]
-Description = Updating X fontdir indices...
-When = PostTransaction
-Exec = /usr/share/libalpm/scripts/xorg-mkfontdir
-NeedsTargets

Copied: xorg-mkfontdir/repos/testing-any/xorg-mkfontdir.hook (from rev 286218, 
xorg-mkfontdir/trunk/xorg-mkfontdir.hook)
===
--- xorg-mkfontdir.hook (rev 0)
+++ xorg-mkfontdir.hook 2017-01-13 21:08:55 UTC (rev 286219)
@@ -0,0 +1,12 @@
+[Trigger]
+Type = File
+Operation = Install
+Operation = Upgrade
+Operation = Remove
+Target = usr/share/fonts/*/
+
+[Action]
+Description = Updating X fontdir indices...
+When = PostTransaction
+Exec = 

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

2017-01-13 Thread Jan Steffens
Date: Friday, January 13, 2017 @ 21:07:51
  Author: heftig
Revision: 286218

Whoops, fix install

Modified:
  xorg-mkfontdir/trunk/PKGBUILD
  xorg-mkfontdir/trunk/xorg-mkfontdir.install

+
 PKGBUILD   |2 +-
 xorg-mkfontdir.install |3 ++-
 2 files changed, 3 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-01-13 20:57:45 UTC (rev 286217)
+++ PKGBUILD2017-01-13 21:07:51 UTC (rev 286218)
@@ -3,7 +3,7 @@
 
 pkgname=xorg-mkfontdir
 pkgver=1.0.7
-pkgrel=6
+pkgrel=7
 pkgdesc="Create an index of X font files in a directory"
 arch=(any)
 url="http://xorg.freedesktop.org/;

Modified: xorg-mkfontdir.install
===
--- xorg-mkfontdir.install  2017-01-13 20:57:45 UTC (rev 286217)
+++ xorg-mkfontdir.install  2017-01-13 21:07:51 UTC (rev 286218)
@@ -1,7 +1,8 @@
 post_install() {
   if [[ -d /usr/share/fonts ]]; then
 echo -n "Creating X fontdir indices..."
-find /usr/share/fonts -mindepth 1 -type d | 
/usr/share/libalpm/scripts/xorg-mkfontdir
+find /usr/share/fonts -mindepth 1 -type d -printf '%p/\n' |
+  /usr/share/libalpm/scripts/xorg-mkfontdir
 echo " done."
   fi
 }


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

2017-01-13 Thread Lukas Fleischer
Date: Friday, January 13, 2017 @ 20:59:07
  Author: lfleischer
Revision: 207280

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

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

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

Copied: clementine/repos/community-staging-i686/PKGBUILD (from rev 207279, 
clementine/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-01-13 20:59:07 UTC (rev 207280)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: Stéphane Gaudreault 
+# Contributor: BlackEagle 
+# Contributor: Dany Martineau 
+
+pkgname=clementine
+pkgver=1.3.1
+pkgrel=6
+pkgdesc='A modern music player and library organizer'
+url='http://www.clementine-player.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+depends=('chromaprint' 'crypto++' 'fftw' 'gcc-libs' 'glew' 'glib2' 'glibc'
+ 'gst-plugins-base-libs' 'gstreamer' 'libcdio' 'libechonest' 'libgl'
+ 'libgpod' 'liblastfm' 'libmtp' 'libpulse' 'libx11' 'protobuf' 'qjson'
+ 'qt4' 'sqlite' 'taglib' 'zlib')
+makedepends=('boost' 'cmake' 'mesa' 'sparsehash')
+optdepends=('gst-plugins-base: "Base" plugin libraries'
+'gst-plugins-good: "Good" plugin libraries'
+'gst-plugins-bad: "Bad" plugin libraries'
+'gst-plugins-ugly: "Ugly" plugin libraries'
+'gst-libav: Libav plugin'
+'gvfs: Various devices support')
+source=("clementine-${pkgver}.tar.gz::https://github.com/clementine-player/Clementine/archive/${pkgver}.tar.gz;
+
clementine-gcc6.patch::"https://github.com/clementine-player/Clementine/commit/e31278.patch;
+
clementine-1.3.1-chromaprint-1.4.0.patch::"https://github.com/clementine-player/Clementine/commit/ded3126.patch;)
+sha256sums=('f885931a9ab7c88607d07b50c64fcce46fc05f13dd2c0a04188c94eff938f37c'
+'785c485d0a2398a31728a012f6869573f6714359c0d65fbc06f7532c86b82643'
+'cf5c1c625885cc4436722ac38dc201cdc491478dc73e171ea2af95bfb59fd0c6')
+
+prepare() {
+  cd Clementine-${pkgver}
+
+# Fix build with GCC 6
+  patch -p1 -i ../clementine-gcc6.patch
+  # Fix build with chromaprint 1.4.0
+  patch -p1 -i ../clementine-1.3.1-chromaprint-1.4.0.patch
+
+  if [[ -d build ]]; then
+rm -rf build
+  fi
+  mkdir build
+}
+
+build() {
+  cd Clementine-${pkgver}/build
+
+  cmake .. \
+-DCMAKE_BUILD_TYPE='Release' \
+-DCMAKE_INSTALL_PREFIX='/usr'
+  make
+}
+
+package() {
+  cd Clementine-${pkgver}/build
+
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et:

Copied: clementine/repos/community-staging-x86_64/PKGBUILD (from rev 207279, 
clementine/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-01-13 20:59:07 UTC (rev 207280)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: Stéphane Gaudreault 
+# Contributor: BlackEagle 
+# Contributor: Dany Martineau 
+
+pkgname=clementine
+pkgver=1.3.1
+pkgrel=6
+pkgdesc='A modern music player and library organizer'
+url='http://www.clementine-player.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+depends=('chromaprint' 'crypto++' 'fftw' 'gcc-libs' 'glew' 'glib2' 'glibc'
+ 'gst-plugins-base-libs' 'gstreamer' 'libcdio' 'libechonest' 'libgl'
+ 'libgpod' 'liblastfm' 'libmtp' 'libpulse' 'libx11' 'protobuf' 'qjson'
+ 'qt4' 'sqlite' 'taglib' 'zlib')
+makedepends=('boost' 'cmake' 'mesa' 'sparsehash')
+optdepends=('gst-plugins-base: "Base" plugin libraries'
+'gst-plugins-good: "Good" plugin libraries'
+'gst-plugins-bad: "Bad" plugin libraries'
+'gst-plugins-ugly: "Ugly" plugin libraries'
+'gst-libav: Libav plugin'
+'gvfs: Various devices support')
+source=("clementine-${pkgver}.tar.gz::https://github.com/clementine-player/Clementine/archive/${pkgver}.tar.gz;
+
clementine-gcc6.patch::"https://github.com/clementine-player/Clementine/commit/e31278.patch;
+
clementine-1.3.1-chromaprint-1.4.0.patch::"https://github.com/clementine-player/Clementine/commit/ded3126.patch;)

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

2017-01-13 Thread Lukas Fleischer
Date: Friday, January 13, 2017 @ 20:59:02
  Author: lfleischer
Revision: 207279

upgpkg: clementine 1.3.1-6

* Fix build with chromaprint 1.4.0.
* protobuf 3.1.0 rebuild.

Modified:
  clementine/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-13 20:51:15 UTC (rev 207278)
+++ PKGBUILD2017-01-13 20:59:02 UTC (rev 207279)
@@ -6,7 +6,7 @@
 
 pkgname=clementine
 pkgver=1.3.1
-pkgrel=5
+pkgrel=6
 pkgdesc='A modern music player and library organizer'
 url='http://www.clementine-player.org/'
 license=('GPL')
@@ -23,9 +23,11 @@
 'gst-libav: Libav plugin'
 'gvfs: Various devices support')
 
source=("clementine-${pkgver}.tar.gz::https://github.com/clementine-player/Clementine/archive/${pkgver}.tar.gz;
-
clementine-gcc6.patch::"https://github.com/clementine-player/Clementine/commit/e31278.patch;)
+
clementine-gcc6.patch::"https://github.com/clementine-player/Clementine/commit/e31278.patch;
+
clementine-1.3.1-chromaprint-1.4.0.patch::"https://github.com/clementine-player/Clementine/commit/ded3126.patch;)
 sha256sums=('f885931a9ab7c88607d07b50c64fcce46fc05f13dd2c0a04188c94eff938f37c'
-'785c485d0a2398a31728a012f6869573f6714359c0d65fbc06f7532c86b82643')
+'785c485d0a2398a31728a012f6869573f6714359c0d65fbc06f7532c86b82643'
+'cf5c1c625885cc4436722ac38dc201cdc491478dc73e171ea2af95bfb59fd0c6')
 
 prepare() {
   cd Clementine-${pkgver}
@@ -32,6 +34,8 @@
 
 # Fix build with GCC 6
   patch -p1 -i ../clementine-gcc6.patch
+  # Fix build with chromaprint 1.4.0
+  patch -p1 -i ../clementine-1.3.1-chromaprint-1.4.0.patch
 
   if [[ -d build ]]; then
 rm -rf build


[arch-commits] Commit in xorg-mkfontdir/repos (5 files)

2017-01-13 Thread Jan Steffens
Date: Friday, January 13, 2017 @ 20:57:45
  Author: heftig
Revision: 286217

archrelease: copy trunk to testing-any

Added:
  xorg-mkfontdir/repos/testing-any/
  xorg-mkfontdir/repos/testing-any/PKGBUILD
(from rev 286216, xorg-mkfontdir/trunk/PKGBUILD)
  xorg-mkfontdir/repos/testing-any/xorg-mkfontdir.hook
(from rev 286216, xorg-mkfontdir/trunk/xorg-mkfontdir.hook)
  xorg-mkfontdir/repos/testing-any/xorg-mkfontdir.install
(from rev 286216, xorg-mkfontdir/trunk/xorg-mkfontdir.install)
  xorg-mkfontdir/repos/testing-any/xorg-mkfontdir.script
(from rev 286216, xorg-mkfontdir/trunk/xorg-mkfontdir.script)

+
 PKGBUILD   |   34 ++
 xorg-mkfontdir.hook|   12 
 xorg-mkfontdir.install |7 +++
 xorg-mkfontdir.script  |9 +
 4 files changed, 62 insertions(+)

Copied: xorg-mkfontdir/repos/testing-any/PKGBUILD (from rev 286216, 
xorg-mkfontdir/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2017-01-13 20:57:45 UTC (rev 286217)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=xorg-mkfontdir
+pkgver=1.0.7
+pkgrel=6
+pkgdesc="Create an index of X font files in a directory"
+arch=(any)
+url="http://xorg.freedesktop.org/;
+license=('custom')
+depends=('bash' 'xorg-mkfontscale')
+makedepends=('xorg-util-macros')
+groups=('xorg' 'xorg-apps')
+install=xorg-mkfontdir.install
+source=(http://xorg.freedesktop.org/archive/individual/app/mkfontdir-${pkgver}.tar.bz2
+xorg-mkfontdir.hook
+xorg-mkfontdir.script)
+sha256sums=('56d52a482df130484e51fd066d1b6eda7c2c02ddbc91fe6e2be1b9c4e7306530'
+'df6f71601b2be5161bb8e980acee753d6ef86d71221f61627422bcbe87ed09cd'
+'06c60e3e46a76b5300c3224cea6b5094556ea712a08ff9a0103be2eb58d222b5')
+
+build() {
+  cd mkfontdir-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd mkfontdir-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+  install -Dm644 ../xorg-mkfontdir.hook 
"${pkgdir}/usr/share/libalpm/hooks/xorg-mkfontdir.hook"
+  install -D ../xorg-mkfontdir.script 
"${pkgdir}/usr/share/libalpm/scripts/xorg-mkfontdir"
+}

Copied: xorg-mkfontdir/repos/testing-any/xorg-mkfontdir.hook (from rev 286216, 
xorg-mkfontdir/trunk/xorg-mkfontdir.hook)
===
--- testing-any/xorg-mkfontdir.hook (rev 0)
+++ testing-any/xorg-mkfontdir.hook 2017-01-13 20:57:45 UTC (rev 286217)
@@ -0,0 +1,12 @@
+[Trigger]
+Type = File
+Operation = Install
+Operation = Upgrade
+Operation = Remove
+Target = usr/share/fonts/*/
+
+[Action]
+Description = Updating X fontdir indices...
+When = PostTransaction
+Exec = /usr/share/libalpm/scripts/xorg-mkfontdir
+NeedsTargets

Copied: xorg-mkfontdir/repos/testing-any/xorg-mkfontdir.install (from rev 
286216, xorg-mkfontdir/trunk/xorg-mkfontdir.install)
===
--- testing-any/xorg-mkfontdir.install  (rev 0)
+++ testing-any/xorg-mkfontdir.install  2017-01-13 20:57:45 UTC (rev 286217)
@@ -0,0 +1,7 @@
+post_install() {
+  if [[ -d /usr/share/fonts ]]; then
+echo -n "Creating X fontdir indices..."
+find /usr/share/fonts -mindepth 1 -type d | 
/usr/share/libalpm/scripts/xorg-mkfontdir
+echo " done."
+  fi
+}

Copied: xorg-mkfontdir/repos/testing-any/xorg-mkfontdir.script (from rev 
286216, xorg-mkfontdir/trunk/xorg-mkfontdir.script)
===
--- testing-any/xorg-mkfontdir.script   (rev 0)
+++ testing-any/xorg-mkfontdir.script   2017-01-13 20:57:45 UTC (rev 286217)
@@ -0,0 +1,9 @@
+#!/bin/bash
+
+sort -r | while read -r d; do
+  [[ -d $d ]] || continue
+  mkfontscale "$d"
+  mkfontdir "$d"
+  find "$d"fonts.{scale,dir} -maxdepth 0 -size -3c -delete
+  rmdir --ignore-fail-on-non-empty "$d"
+done


[arch-commits] Commit in xorg-mkfontdir/trunk (4 files)

2017-01-13 Thread Jan Steffens
Date: Friday, January 13, 2017 @ 20:57:02
  Author: heftig
Revision: 286216

1.0.7-6

Added:
  xorg-mkfontdir/trunk/xorg-mkfontdir.install
  xorg-mkfontdir/trunk/xorg-mkfontdir.script
Modified:
  xorg-mkfontdir/trunk/PKGBUILD (contents, properties)
  xorg-mkfontdir/trunk/xorg-mkfontdir.hook

+
 PKGBUILD   |   20 
 xorg-mkfontdir.hook|   13 +++--
 xorg-mkfontdir.install |7 +++
 xorg-mkfontdir.script  |9 +
 4 files changed, 31 insertions(+), 18 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-01-13 20:21:41 UTC (rev 286215)
+++ PKGBUILD2017-01-13 20:57:02 UTC (rev 286216)
@@ -3,28 +3,32 @@
 
 pkgname=xorg-mkfontdir
 pkgver=1.0.7
-pkgrel=5
+pkgrel=6
 pkgdesc="Create an index of X font files in a directory"
 arch=(any)
 url="http://xorg.freedesktop.org/;
 license=('custom')
-depends=('sh' 'xorg-mkfontscale')
+depends=('bash' 'xorg-mkfontscale')
 makedepends=('xorg-util-macros')
 groups=('xorg' 'xorg-apps')
+install=xorg-mkfontdir.install
 
source=(http://xorg.freedesktop.org/archive/individual/app/mkfontdir-${pkgver}.tar.bz2
-xorg-mkfontdir.hook)
-sha1sums=('3c06dad8a5fbf7362b51fb7d6b1ab805eba40336'
-  '67eaa9c5948ad6ac09464d24246f60b0c6b82f2c')
+xorg-mkfontdir.hook
+xorg-mkfontdir.script)
+sha256sums=('56d52a482df130484e51fd066d1b6eda7c2c02ddbc91fe6e2be1b9c4e7306530'
+'df6f71601b2be5161bb8e980acee753d6ef86d71221f61627422bcbe87ed09cd'
+'06c60e3e46a76b5300c3224cea6b5094556ea712a08ff9a0103be2eb58d222b5')
 
 build() {
-  cd "${srcdir}/mkfontdir-${pkgver}"
+  cd mkfontdir-${pkgver}
   ./configure --prefix=/usr
   make
 }
 
 package() {
-  cd "${srcdir}/mkfontdir-${pkgver}"
+  cd mkfontdir-${pkgver}
   make DESTDIR="${pkgdir}" install
   install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
-  install -Dm644 $srcdir/xorg-mkfontdir.hook 
"${pkgdir}/usr/share/libalpm/hooks/xorg-mkfontdir.hook"
+  install -Dm644 ../xorg-mkfontdir.hook 
"${pkgdir}/usr/share/libalpm/hooks/xorg-mkfontdir.hook"
+  install -D ../xorg-mkfontdir.script 
"${pkgdir}/usr/share/libalpm/scripts/xorg-mkfontdir"
 }


Property changes on: xorg-mkfontdir/trunk/PKGBUILD
___
Modified: svn:keywords
## -1 +1 ##
-Id Revision
\ No newline at end of property
+Id
\ No newline at end of property
Modified: xorg-mkfontdir.hook
===
--- xorg-mkfontdir.hook 2017-01-13 20:21:41 UTC (rev 286215)
+++ xorg-mkfontdir.hook 2017-01-13 20:57:02 UTC (rev 286216)
@@ -3,17 +3,10 @@
 Operation = Install
 Operation = Upgrade
 Operation = Remove
-Target = usr/share/fonts/*/*.bdf
-Target = usr/share/fonts/*/*.otf
-Target = usr/share/fonts/*/*.pcf.gz
-Target = usr/share/fonts/*/*.pfa
-Target = usr/share/fonts/*/*.pfb
-Target = usr/share/fonts/*/*.ttc
-Target = usr/share/fonts/*/*.ttf
-Target = usr/share/fonts/*/*.woff
+Target = usr/share/fonts/*/
 
 [Action]
-Description = Creating index of X font files...
+Description = Updating X fontdir indices...
 When = PostTransaction
-Exec = /bin/sh -c 'while read -r f; do dirname $f; done | uniq | while read -r 
d; do mkfontscale /$d && mkfontdir /$d; done'
+Exec = /usr/share/libalpm/scripts/xorg-mkfontdir
 NeedsTargets

Added: xorg-mkfontdir.install
===
--- xorg-mkfontdir.install  (rev 0)
+++ xorg-mkfontdir.install  2017-01-13 20:57:02 UTC (rev 286216)
@@ -0,0 +1,7 @@
+post_install() {
+  if [[ -d /usr/share/fonts ]]; then
+echo -n "Creating X fontdir indices..."
+find /usr/share/fonts -mindepth 1 -type d | 
/usr/share/libalpm/scripts/xorg-mkfontdir
+echo " done."
+  fi
+}

Added: xorg-mkfontdir.script
===
--- xorg-mkfontdir.script   (rev 0)
+++ xorg-mkfontdir.script   2017-01-13 20:57:02 UTC (rev 286216)
@@ -0,0 +1,9 @@
+#!/bin/bash
+
+sort -r | while read -r d; do
+  [[ -d $d ]] || continue
+  mkfontscale "$d"
+  mkfontdir "$d"
+  find "$d"fonts.{scale,dir} -maxdepth 0 -size -3c -delete
+  rmdir --ignore-fail-on-non-empty "$d"
+done


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

2017-01-13 Thread Lukas Fleischer
Date: Friday, January 13, 2017 @ 20:51:15
  Author: lfleischer
Revision: 207278

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

Added:
  rethinkdb/repos/community-staging-i686/
  rethinkdb/repos/community-staging-i686/PKGBUILD
(from rev 207277, rethinkdb/trunk/PKGBUILD)
  rethinkdb/repos/community-staging-i686/rethinkdb-tmpfile.conf
(from rev 207277, rethinkdb/trunk/rethinkdb-tmpfile.conf)
  rethinkdb/repos/community-staging-i686/rethinkdb.install
(from rev 207277, rethinkdb/trunk/rethinkdb.install)
  rethinkdb/repos/community-staging-i686/rethinkdb.service
(from rev 207277, rethinkdb/trunk/rethinkdb.service)
  rethinkdb/repos/community-staging-x86_64/
  rethinkdb/repos/community-staging-x86_64/PKGBUILD
(from rev 207277, rethinkdb/trunk/PKGBUILD)
  rethinkdb/repos/community-staging-x86_64/rethinkdb-tmpfile.conf
(from rev 207277, rethinkdb/trunk/rethinkdb-tmpfile.conf)
  rethinkdb/repos/community-staging-x86_64/rethinkdb.install
(from rev 207277, rethinkdb/trunk/rethinkdb.install)
  rethinkdb/repos/community-staging-x86_64/rethinkdb.service
(from rev 207277, rethinkdb/trunk/rethinkdb.service)

-+
 community-staging-i686/PKGBUILD |   69 ++
 community-staging-i686/rethinkdb-tmpfile.conf   |1 
 community-staging-i686/rethinkdb.install|   19 ++
 community-staging-i686/rethinkdb.service|   12 +++
 community-staging-x86_64/PKGBUILD   |   69 ++
 community-staging-x86_64/rethinkdb-tmpfile.conf |1 
 community-staging-x86_64/rethinkdb.install  |   19 ++
 community-staging-x86_64/rethinkdb.service  |   12 +++
 8 files changed, 202 insertions(+)

Copied: rethinkdb/repos/community-staging-i686/PKGBUILD (from rev 207277, 
rethinkdb/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-01-13 20:51:15 UTC (rev 207278)
@@ -0,0 +1,69 @@
+# $Id$
+# Maintainer: Anatol Pomozov 
+# Contributor: Massimiliano Torromeo 
+# Contributor: Sigmund Lahn 
+
+pkgname=rethinkdb
+pkgver=2.3.5
+_tag=rethinkdb-$pkgver
+pkgrel=3
+pkgdesc='Distributed powerful and scalable NoSQL database'
+arch=(i686 x86_64)
+url='http://www.rethinkdb.com/'
+license=(AGPL)
+depends=(protobuf ncurses curl)
+makedepends=(boost python2 wget gcc5) # gcc5 is workaround for 
https://github.com/rethinkdb/rethinkdb/issues/5757
+backup=(etc/rethinkdb/instances.d/default.conf)
+install=rethinkdb.install
+options=(!emptydirs)
+source=(
+  http://download.rethinkdb.com/dist/$_tag.tgz
+  rethinkdb-tmpfile.conf
+  rethinkdb.service
+)
+sha256sums=('dd8aeee169b177179bfe080725f0560443e0f26dae875b32ae25d90cf2f8ee10'
+'656d3a42e75d087e723f71aa320fdd91cbbb82071ef72eb11fd3e4a619b429a4'
+'e56bffa2b9ebc3a00ef566ab2be0719a633c89d961a2461dfa2d9ffdb258c1a2')
+
+prepare() {
+  cd $_tag
+
+  sed \
+-e 's|#!/usr/bin/python|#!/usr/bin/python2|' \
+-e 's|#!/usr/bin/env python|#!/usr/bin/env python2|' \
+-i scripts/*.py external/v8_*/tools/*.py
+  sed -e 's|exec python|exec python2|g' -i external/v8_*/build/gyp/gyp
+  sed -e 's|\bpython\b|python2|g' -i 
external/v8_*/{Makefile,*/*.gyp,*/*.gypi,*/*/*.gyp}
+}
+
+build() {
+  cd $_tag
+  export PYTHON=/usr/bin/python2
+  CXX=g++-5 ./configure --fetch v8 --fetch jemalloc --dynamic all 
--enable-precompiled-web --prefix=/usr --sysconfdir=/etc
+  make ALLOW_WARNINGS=1
+}
+
+check() {
+  cd $_tag
+
+  # these tests are flaky and extremely slow in Arch chroot
+  # make build/release/rethinkdb-unittest
+  # ./build/release/rethinkdb-unittest 
--gtest_filter=-RDBBtree.*:RDBInterrupt.*
+  # some tests might be flaky on btrfs filesystem
+}
+
+package() {
+  cd $_tag
+  make DESTDIR="$pkgdir" install
+
+  install -Dm644 "$srcdir"/rethinkdb-tmpfile.conf 
"$pkgdir"/usr/lib/tmpfiles.d/rethinkdb.conf
+  install -Dm644 "$srcdir"/rethinkdb.service 
"$pkgdir"/usr/lib/systemd/system/rethinkdb@.service
+
+  # create 'default' database instance
+  mv "$pkgdir"/etc/rethinkdb/default.conf.sample 
"$pkgdir"/etc/rethinkdb/instances.d/default.conf
+  sed -e 's|# directory=/var/lib/rethinkdb|directory=/var/lib/rethinkdb|' \
+  -i "$pkgdir"/etc/rethinkdb/instances.d/default.conf
+
+  # Arch uses systemd, no need for init.d scripts
+  rm -r "$pkgdir"/etc/init.d
+}

Copied: rethinkdb/repos/community-staging-i686/rethinkdb-tmpfile.conf (from rev 
207277, rethinkdb/trunk/rethinkdb-tmpfile.conf)
===
--- community-staging-i686/rethinkdb-tmpfile.conf   
(rev 0)
+++ community-staging-i686/rethinkdb-tmpfile.conf   2017-01-13 20:51:15 UTC 
(rev 207278)
@@ -0,0 +1 @@
+d /run/rethinkdb 0755 rethinkdb rethinkdb -

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

2017-01-13 Thread Lukas Fleischer
Date: Friday, January 13, 2017 @ 20:51:01
  Author: lfleischer
Revision: 207277

upgpkg: rethinkdb 2.3.5-3

protobuf 3.1.0 rebuild.

Modified:
  rethinkdb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-13 20:24:49 UTC (rev 207276)
+++ PKGBUILD2017-01-13 20:51:01 UTC (rev 207277)
@@ -6,7 +6,7 @@
 pkgname=rethinkdb
 pkgver=2.3.5
 _tag=rethinkdb-$pkgver
-pkgrel=2
+pkgrel=3
 pkgdesc='Distributed powerful and scalable NoSQL database'
 arch=(i686 x86_64)
 url='http://www.rethinkdb.com/'


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

2017-01-13 Thread Lukas Fleischer
Date: Friday, January 13, 2017 @ 20:24:44
  Author: lfleischer
Revision: 207275

upgpkg: mosh 1.2.6-3

protobuf 3.1.0 rebuild.

Modified:
  mosh/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-13 20:23:33 UTC (rev 207274)
+++ PKGBUILD2017-01-13 20:24:44 UTC (rev 207275)
@@ -5,7 +5,7 @@
 
 pkgname=mosh
 pkgver=1.2.6
-pkgrel=2
+pkgrel=3
 pkgdesc='Mobile shell, surviving disconnects with local echo and line editing'
 arch=('x86_64' 'i686')
 url='http://mosh.mit.edu/'


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

2017-01-13 Thread Lukas Fleischer
Date: Friday, January 13, 2017 @ 20:24:49
  Author: lfleischer
Revision: 207276

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

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

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

Copied: mosh/repos/community-staging-i686/PKGBUILD (from rev 207275, 
mosh/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-01-13 20:24:49 UTC (rev 207276)
@@ -0,0 +1,33 @@
+# $Id: PKGBUILD 68685 2012-03-31 16:54:07Z arodseth $
+# Maintainer: Alexander F Rødseth 
+# Contributor: Christian Neukirchen 
+# Contributor: Thomas Weißschuh 
+
+pkgname=mosh
+pkgver=1.2.6
+pkgrel=3
+pkgdesc='Mobile shell, surviving disconnects with local echo and line editing'
+arch=('x86_64' 'i686')
+url='http://mosh.mit.edu/'
+license=('GPL3')
+depends=('protobuf' 'ncurses' 'zlib' 'openssh' 'perl' 'perl-io-tty' 
'libutempter')
+source=("http://$pkgname.mit.edu/$pkgname-$pkgver.tar.gz;)
+sha256sums=('7e82b7fbfcc698c70f5843bb960dadb8e7bd7ac1d4d2151c9d979372ea850e85')
+options=('!emptydirs')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./autogen.sh
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
+  install -Dm644 "$pkgname-$pkgver/conf/bash-completion/completions/$pkgname" \
+"$pkgdir/usr/share/bash-completion/completions/$pkgname"
+}
+
+# getver: raw.githubusercontent.com/mobile-shell/mosh/master/ChangeLog
+# vim:set ts=2 sw=2 et:

Copied: mosh/repos/community-staging-x86_64/PKGBUILD (from rev 207275, 
mosh/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-01-13 20:24:49 UTC (rev 207276)
@@ -0,0 +1,33 @@
+# $Id: PKGBUILD 68685 2012-03-31 16:54:07Z arodseth $
+# Maintainer: Alexander F Rødseth 
+# Contributor: Christian Neukirchen 
+# Contributor: Thomas Weißschuh 
+
+pkgname=mosh
+pkgver=1.2.6
+pkgrel=3
+pkgdesc='Mobile shell, surviving disconnects with local echo and line editing'
+arch=('x86_64' 'i686')
+url='http://mosh.mit.edu/'
+license=('GPL3')
+depends=('protobuf' 'ncurses' 'zlib' 'openssh' 'perl' 'perl-io-tty' 
'libutempter')
+source=("http://$pkgname.mit.edu/$pkgname-$pkgver.tar.gz;)
+sha256sums=('7e82b7fbfcc698c70f5843bb960dadb8e7bd7ac1d4d2151c9d979372ea850e85')
+options=('!emptydirs')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./autogen.sh
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
+  install -Dm644 "$pkgname-$pkgver/conf/bash-completion/completions/$pkgname" \
+"$pkgdir/usr/share/bash-completion/completions/$pkgname"
+}
+
+# getver: raw.githubusercontent.com/mobile-shell/mosh/master/ChangeLog
+# vim:set ts=2 sw=2 et:


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

2017-01-13 Thread Lukas Fleischer
Date: Friday, January 13, 2017 @ 20:23:28
  Author: lfleischer
Revision: 207273

upgpkg: hyperion 1.03.2-8

protobuf 3.1.0 rebuild.

Modified:
  hyperion/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-13 20:09:54 UTC (rev 207272)
+++ PKGBUILD2017-01-13 20:23:28 UTC (rev 207273)
@@ -4,7 +4,7 @@
 
 pkgname=hyperion
 pkgver=1.03.2
-pkgrel=7
+pkgrel=8
 pkgdesc="An opensource 'AmbiLight' implementation"
 arch=('i686' 'x86_64')
 url="https://github.com/hyperion-project/hyperion.ng;


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

2017-01-13 Thread Lukas Fleischer
Date: Friday, January 13, 2017 @ 20:23:33
  Author: lfleischer
Revision: 207274

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

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

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

Copied: hyperion/repos/community-staging-i686/PKGBUILD (from rev 207273, 
hyperion/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-01-13 20:23:33 UTC (rev 207274)
@@ -0,0 +1,49 @@
+# Maintainer: NicoHood 
+# PGP ID: 97312D5EB9D7AE7D0BD4307351DAE9B7C1AE9161
+# Contributor: Christopher Reimer 
+
+pkgname=hyperion
+pkgver=1.03.2
+pkgrel=8
+pkgdesc="An opensource 'AmbiLight' implementation"
+arch=('i686' 'x86_64')
+url="https://github.com/hyperion-project/hyperion.ng;
+license=('MIT')
+depends=('libusb' 'protobuf' 'python' 'qt5-base')
+optdepends=('xorg-server: X11 grabbing')
+makedepends=('cmake')
+backup=('etc/hyperion/hyperion.config.json')
+source=("https://github.com/tvdzwan/${pkgname}/archive/${pkgver}.tar.gz;)
+sha512sums=('7406f5bdf323d2799fb375557603fefd1f077cda287b5aa9ff10251b22d8dd07590458515b0e01ef97fba80885aab1aa72bd8b5d26873ad8ebcc1ba53d6776ec')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+mkdir -p build
+cd build
+cmake -DCMAKE_INSTALL_PREFIX="${pkgdir}/usr" \
+-DCMAKE_BUILD_TYPE=Release \
+-DENABLE_QT5=ON \
+-DPLATFORM=x86 \
+-DPROTOBUF_PROTOC_EXECUTABLE=/usr/bin/protoc \
+-DUSE_SYSTEM_PROTO_LIBS=ON \
+..
+make
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+cd build
+make install
+cd ..
+
+install -Dm 644 config/hyperion.config.json.example \
+"${pkgdir}/etc/hyperion/hyperion.config.json"
+
+install -Dm 644 bin/service/hyperion.systemd.sh \
+"${pkgdir}/usr/lib/systemd/system/hyperiond.service"
+
+rm -rf "${pkgdir}/usr/share/hyperion/service"
+
+install -Dm 644 LICENSE \
+"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}

Copied: hyperion/repos/community-staging-x86_64/PKGBUILD (from rev 207273, 
hyperion/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-01-13 20:23:33 UTC (rev 207274)
@@ -0,0 +1,49 @@
+# Maintainer: NicoHood 
+# PGP ID: 97312D5EB9D7AE7D0BD4307351DAE9B7C1AE9161
+# Contributor: Christopher Reimer 
+
+pkgname=hyperion
+pkgver=1.03.2
+pkgrel=8
+pkgdesc="An opensource 'AmbiLight' implementation"
+arch=('i686' 'x86_64')
+url="https://github.com/hyperion-project/hyperion.ng;
+license=('MIT')
+depends=('libusb' 'protobuf' 'python' 'qt5-base')
+optdepends=('xorg-server: X11 grabbing')
+makedepends=('cmake')
+backup=('etc/hyperion/hyperion.config.json')
+source=("https://github.com/tvdzwan/${pkgname}/archive/${pkgver}.tar.gz;)
+sha512sums=('7406f5bdf323d2799fb375557603fefd1f077cda287b5aa9ff10251b22d8dd07590458515b0e01ef97fba80885aab1aa72bd8b5d26873ad8ebcc1ba53d6776ec')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+mkdir -p build
+cd build
+cmake -DCMAKE_INSTALL_PREFIX="${pkgdir}/usr" \
+-DCMAKE_BUILD_TYPE=Release \
+-DENABLE_QT5=ON \
+-DPLATFORM=x86 \
+-DPROTOBUF_PROTOC_EXECUTABLE=/usr/bin/protoc \
+-DUSE_SYSTEM_PROTO_LIBS=ON \
+..
+make
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+cd build
+make install
+cd ..
+
+install -Dm 644 config/hyperion.config.json.example \
+"${pkgdir}/etc/hyperion/hyperion.config.json"
+
+install -Dm 644 bin/service/hyperion.systemd.sh \
+"${pkgdir}/usr/lib/systemd/system/hyperiond.service"
+
+rm -rf "${pkgdir}/usr/share/hyperion/service"
+
+install -Dm 644 LICENSE \
+"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}


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

2017-01-13 Thread Lukas Fleischer
Date: Friday, January 13, 2017 @ 20:21:41
  Author: lfleischer
Revision: 286215

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

Added:
  hefur/repos/staging-i686/
  hefur/repos/staging-i686/PKGBUILD
(from rev 286214, hefur/trunk/PKGBUILD)
  hefur/repos/staging-i686/hefur.install
(from rev 286214, hefur/trunk/hefur.install)
  hefur/repos/staging-i686/hefurd.service
(from rev 286214, hefur/trunk/hefurd.service)
  hefur/repos/staging-i686/tmpfiles.conf
(from rev 286214, hefur/trunk/tmpfiles.conf)
  hefur/repos/staging-x86_64/
  hefur/repos/staging-x86_64/PKGBUILD
(from rev 286214, hefur/trunk/PKGBUILD)
  hefur/repos/staging-x86_64/hefur.install
(from rev 286214, hefur/trunk/hefur.install)
  hefur/repos/staging-x86_64/hefurd.service
(from rev 286214, hefur/trunk/hefurd.service)
  hefur/repos/staging-x86_64/tmpfiles.conf
(from rev 286214, hefur/trunk/tmpfiles.conf)

---+
 staging-i686/PKGBUILD |   36 
 staging-i686/hefur.install|   12 
 staging-i686/hefurd.service   |   12 
 staging-i686/tmpfiles.conf|1 +
 staging-x86_64/PKGBUILD   |   36 
 staging-x86_64/hefur.install  |   12 
 staging-x86_64/hefurd.service |   12 
 staging-x86_64/tmpfiles.conf  |1 +
 8 files changed, 122 insertions(+)

Copied: hefur/repos/staging-i686/PKGBUILD (from rev 286214, 
hefur/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2017-01-13 20:21:41 UTC (rev 286215)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Pierre Schmitz 
+# Contributor: Alexandre Bique 
+
+pkgname=hefur
+pkgver=0.4
+pkgrel=10
+pkgdesc='A standalone and lightweight BitTorrent tracker'
+arch=('i686' 'x86_64')
+url='http://github.com/abique/hefur'
+license=('MIT')
+makedepends=('cmake')
+depends=('gnutls' 'xz' 'protobuf')
+install='hefur.install'
+source=("https://github.com/downloads/abique/${pkgname}/${pkgname}-${pkgver}.tar.xz;
+'hefurd.service' 'tmpfiles.conf')
+md5sums=('f0461363f38105140a1f119a3b97d818'
+ '3107be29769b8afde3574dc6e31d5b6a'
+ '09c64ca9b66f7c7877a5a2ce81c0dcff')
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   mkdir build
+   cd build
+   cmake -DCMAKE_INSTALL_PREFIX=/usr ..
+   make
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}/build
+   DESTDIR=${pkgdir} make install
+   install -D -m644 ${srcdir}/hefurd.service 
${pkgdir}/usr/lib/systemd/system/hefurd.service
+   install -D -m644 ${srcdir}/tmpfiles.conf 
${pkgdir}/usr/lib/tmpfiles.d/hefurd.conf
+   install -D -m644 ${srcdir}/${pkgname}-${pkgver}/LICENSE 
${pkgdir}/usr/share/licenses/hefur/LICENSE
+   install -d -m755 ${pkgdir}/var/lib/hefurd
+}

Copied: hefur/repos/staging-i686/hefur.install (from rev 286214, 
hefur/trunk/hefur.install)
===
--- staging-i686/hefur.install  (rev 0)
+++ staging-i686/hefur.install  2017-01-13 20:21:41 UTC (rev 286215)
@@ -0,0 +1,12 @@
+post_install() {
+   if [ ! `grep hefur /etc/group` ]; then
+   groupadd -r hefur &>/dev/null;
+   fi
+
+   id hefur &>/dev/null || \
+   useradd -r -g hefur -d /var/lib/hefurd -s /usr/bin/nologin hefur
+}
+
+post_upgrade() {
+   post_install
+}

Copied: hefur/repos/staging-i686/hefurd.service (from rev 286214, 
hefur/trunk/hefurd.service)
===
--- staging-i686/hefurd.service (rev 0)
+++ staging-i686/hefurd.service 2017-01-13 20:21:41 UTC (rev 286215)
@@ -0,0 +1,12 @@
+[Unit]
+Description=Hefur BitTorrent tracker
+After=network.target
+
+[Service]
+ExecStart=/usr/bin/hefurd -torrent-dir /var/lib/hefurd
+User=hefur
+Group=hefur
+CPUSchedulingPolicy=batch
+
+[Install]
+WantedBy=multi-user.target

Copied: hefur/repos/staging-i686/tmpfiles.conf (from rev 286214, 
hefur/trunk/tmpfiles.conf)
===
--- staging-i686/tmpfiles.conf  (rev 0)
+++ staging-i686/tmpfiles.conf  2017-01-13 20:21:41 UTC (rev 286215)
@@ -0,0 +1 @@
+d /run/hefur - hefur hefur -

Copied: hefur/repos/staging-x86_64/PKGBUILD (from rev 286214, 
hefur/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2017-01-13 20:21:41 UTC (rev 286215)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Pierre Schmitz 
+# Contributor: Alexandre Bique 
+
+pkgname=hefur
+pkgver=0.4
+pkgrel=10
+pkgdesc='A standalone and lightweight BitTorrent tracker'
+arch=('i686' 

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

2017-01-13 Thread Lukas Fleischer
Date: Friday, January 13, 2017 @ 20:21:20
  Author: lfleischer
Revision: 286214

upgpkg: hefur 0.4-10

protobuf 3.1.0 rebuild.

Modified:
  hefur/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-13 19:08:40 UTC (rev 286213)
+++ PKGBUILD2017-01-13 20:21:20 UTC (rev 286214)
@@ -4,7 +4,7 @@
 
 pkgname=hefur
 pkgver=0.4
-pkgrel=9
+pkgrel=10
 pkgdesc='A standalone and lightweight BitTorrent tracker'
 arch=('i686' 'x86_64')
 url='http://github.com/abique/hefur'


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

2017-01-13 Thread Christian Hesse
Date: Friday, January 13, 2017 @ 20:09:54
  Author: eworm
Revision: 207272

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

Added:
  python-pyodbc/repos/community-i686/PKGBUILD
(from rev 207271, python-pyodbc/trunk/PKGBUILD)
  python-pyodbc/repos/community-x86_64/PKGBUILD
(from rev 207271, python-pyodbc/trunk/PKGBUILD)
Deleted:
  python-pyodbc/repos/community-i686/PKGBUILD
  python-pyodbc/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-01-13 20:09:35 UTC (rev 207271)
+++ community-i686/PKGBUILD 2017-01-13 20:09:54 UTC (rev 207272)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Christian Hesse 
-# Contributor: Robert Knauer 
-
-pkgbase=python-pyodbc
-pkgname=(python-pyodbc python2-pyodbc)
-_srcname=pyodbc
-pkgver=4.0.0
-pkgrel=2
-pkgdesc='ODBC module for Python'
-arch=('i686' 'x86_64')
-url='https://github.com/mkleehammer/pyodbc'
-license=('MIT')
-makedepends=('python' 'python2' 'unixodbc')
-source=("${pkgbase}-${pkgver}.tar.gz::https://github.com/mkleehammer/pyodbc/archive/${pkgver}.tar.gz;)
-sha256sums=('d3c9435325857112aed2b4ab1c1bfa10b578d27dd1a2e241c95cf98bd907f322')
-
-prepare() {
-   echo "Version: ${pkgver}.0" > "${srcdir}/${_srcname}-${pkgver}/PKG-INFO"
-}
-
-package_python-pyodbc() {
-   pkgdesc='ODBC module for Python 3.x'
-   depends=('python' 'unixodbc')
-
-   cd "${srcdir}/${_srcname}-${pkgver}"
-
-   python setup.py install --root="${pkgdir}/" --optimize=1
-}
-
-package_python2-pyodbc() {
-   pkgdesc='ODBC module for Python 2.x'
-   depends=('python2' 'unixodbc')
-
-   cd "${srcdir}/${_srcname}-${pkgver}"
-
-   python2 setup.py install --root="${pkgdir}/" --optimize=1
-}
-

Copied: python-pyodbc/repos/community-i686/PKGBUILD (from rev 207271, 
python-pyodbc/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-01-13 20:09:54 UTC (rev 207272)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Christian Hesse 
+# Contributor: Robert Knauer 
+
+pkgbase=python-pyodbc
+pkgname=(python-pyodbc python2-pyodbc)
+_srcname=pyodbc
+pkgver=4.0.1
+pkgrel=1
+pkgdesc='ODBC module for Python'
+arch=('i686' 'x86_64')
+url='https://github.com/mkleehammer/pyodbc'
+license=('MIT')
+makedepends=('python' 'python2' 'unixodbc')
+source=("${pkgbase}-${pkgver}.tar.gz::https://github.com/mkleehammer/pyodbc/archive/${pkgver}.tar.gz;)
+sha256sums=('33dbb352ed62dbed7830862f85bb1eef3fd6d82afec4539e564d3daad0dd467a')
+
+prepare() {
+   echo "Version: ${pkgver}.0" > "${srcdir}/${_srcname}-${pkgver}/PKG-INFO"
+}
+
+package_python-pyodbc() {
+   pkgdesc='ODBC module for Python 3.x'
+   depends=('python' 'unixodbc')
+
+   cd "${srcdir}/${_srcname}-${pkgver}"
+
+   python setup.py install --root="${pkgdir}/" --optimize=1
+}
+
+package_python2-pyodbc() {
+   pkgdesc='ODBC module for Python 2.x'
+   depends=('python2' 'unixodbc')
+
+   cd "${srcdir}/${_srcname}-${pkgver}"
+
+   python2 setup.py install --root="${pkgdir}/" --optimize=1
+}
+

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-01-13 20:09:35 UTC (rev 207271)
+++ community-x86_64/PKGBUILD   2017-01-13 20:09:54 UTC (rev 207272)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Christian Hesse 
-# Contributor: Robert Knauer 
-
-pkgbase=python-pyodbc
-pkgname=(python-pyodbc python2-pyodbc)
-_srcname=pyodbc
-pkgver=4.0.0
-pkgrel=2
-pkgdesc='ODBC module for Python'
-arch=('i686' 'x86_64')
-url='https://github.com/mkleehammer/pyodbc'
-license=('MIT')
-makedepends=('python' 'python2' 'unixodbc')
-source=("${pkgbase}-${pkgver}.tar.gz::https://github.com/mkleehammer/pyodbc/archive/${pkgver}.tar.gz;)
-sha256sums=('d3c9435325857112aed2b4ab1c1bfa10b578d27dd1a2e241c95cf98bd907f322')
-
-prepare() {
-   echo "Version: ${pkgver}.0" > "${srcdir}/${_srcname}-${pkgver}/PKG-INFO"
-}
-
-package_python-pyodbc() {
-   pkgdesc='ODBC module for Python 3.x'
-   depends=('python' 'unixodbc')
-
-   cd "${srcdir}/${_srcname}-${pkgver}"
-
-   python setup.py install --root="${pkgdir}/" --optimize=1
-}
-
-package_python2-pyodbc() {
-   pkgdesc='ODBC module for Python 2.x'
-   depends=('python2' 'unixodbc')
-
-   cd "${srcdir}/${_srcname}-${pkgver}"
-
-   python2 setup.py install --root="${pkgdir}/" --optimize=1
-}
-

Copied: 

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

2017-01-13 Thread Christian Hesse
Date: Friday, January 13, 2017 @ 20:09:35
  Author: eworm
Revision: 207271

upgpkg: python-pyodbc 4.0.1-1

new upstream release

Modified:
  python-pyodbc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-13 20:04:00 UTC (rev 207270)
+++ PKGBUILD2017-01-13 20:09:35 UTC (rev 207271)
@@ -5,8 +5,8 @@
 pkgbase=python-pyodbc
 pkgname=(python-pyodbc python2-pyodbc)
 _srcname=pyodbc
-pkgver=4.0.0
-pkgrel=2
+pkgver=4.0.1
+pkgrel=1
 pkgdesc='ODBC module for Python'
 arch=('i686' 'x86_64')
 url='https://github.com/mkleehammer/pyodbc'
@@ -13,7 +13,7 @@
 license=('MIT')
 makedepends=('python' 'python2' 'unixodbc')
 
source=("${pkgbase}-${pkgver}.tar.gz::https://github.com/mkleehammer/pyodbc/archive/${pkgver}.tar.gz;)
-sha256sums=('d3c9435325857112aed2b4ab1c1bfa10b578d27dd1a2e241c95cf98bd907f322')
+sha256sums=('33dbb352ed62dbed7830862f85bb1eef3fd6d82afec4539e564d3daad0dd467a')
 
 prepare() {
echo "Version: ${pkgver}.0" > "${srcdir}/${_srcname}-${pkgver}/PKG-INFO"


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

2017-01-13 Thread Alexander Rødseth
Date: Friday, January 13, 2017 @ 20:04:00
  Author: arodseth
Revision: 207270

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

Added:
  duktape/repos/community-i686/PKGBUILD
(from rev 207269, duktape/trunk/PKGBUILD)
  duktape/repos/community-i686/duktape.pc
(from rev 207269, duktape/trunk/duktape.pc)
  duktape/repos/community-x86_64/PKGBUILD
(from rev 207269, duktape/trunk/PKGBUILD)
  duktape/repos/community-x86_64/duktape.pc
(from rev 207269, duktape/trunk/duktape.pc)
Deleted:
  duktape/repos/community-i686/PKGBUILD
  duktape/repos/community-i686/duktape.pc
  duktape/repos/community-x86_64/PKGBUILD
  duktape/repos/community-x86_64/duktape.pc

-+
 /PKGBUILD   |   78 ++
 /duktape.pc |   20 ++
 community-i686/PKGBUILD |   39 -
 community-i686/duktape.pc   |   10 -
 community-x86_64/PKGBUILD   |   39 -
 community-x86_64/duktape.pc |   10 -
 6 files changed, 98 insertions(+), 98 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-01-13 20:02:36 UTC (rev 207269)
+++ community-i686/PKGBUILD 2017-01-13 20:04:00 UTC (rev 207270)
@@ -1,39 +0,0 @@
-# $Id: PKGBUILD 162811 2016-02-20 15:24:54Z arodseth $
-# Maintainer: Alexander F Rødseth 
-
-pkgname=duktape
-pkgver=1.5.1
-pkgrel=1
-pkgdesc='Embeddable Javascript engine'
-arch=('x86_64' 'i686')
-url='http://duktape.org/'
-makedepends=('setconf')
-depends=('glibc')
-license=('MIT')
-source=("http://duktape.org/duktape-$pkgver.tar.xz;
-'duktape.pc')
-sha256sums=('9f16d05e1185094946baa333e52fe30dee45f59446c57d84874a68a6fd6bdf86'
-'c6df8fd26884eb74127e18ca6796ebb7cebedc197bcf1f51315f56bfef231cd1')
-
-prepare() {
-  cd "$pkgname-$pkgver"
-
-  mv Makefile.sharedlibrary Makefile
-  setconf Makefile INSTALL_PREFIX="$pkgdir/usr"
-}
-
-build() {
-  make -C "$pkgname-$pkgver"
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-
-  install -d "$pkgdir/usr/lib" "$pkgdir/usr/include"
-  make install
-  install -Dm644 ../duktape.pc "$pkgdir/usr/lib/pkgconfig/duktape.pc"
-  install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# getver: github.com/svaarala/duktape
-# vim:set ts=2 sw=2 et:

Copied: duktape/repos/community-i686/PKGBUILD (from rev 207269, 
duktape/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-01-13 20:04:00 UTC (rev 207270)
@@ -0,0 +1,39 @@
+# $Id: PKGBUILD 162811 2016-02-20 15:24:54Z arodseth $
+# Maintainer: Alexander F Rødseth 
+
+pkgname=duktape
+pkgver=2.0.0
+pkgrel=1
+pkgdesc='Embeddable Javascript engine'
+arch=('x86_64' 'i686')
+url='http://duktape.org/'
+makedepends=('setconf')
+depends=('glibc')
+license=('MIT')
+source=("http://duktape.org/duktape-$pkgver.tar.xz;
+'duktape.pc')
+sha256sums=('e07bc1178225218a281de9f73f555390743dd805bafd5396229c69a16f740c4d'
+'897ab77d0d2cce1abed573fdbfc80db40e78959f7816b82cb30ae41a06212a7e')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+
+  mv Makefile.sharedlibrary Makefile
+  setconf Makefile INSTALL_PREFIX="$pkgdir/usr"
+}
+
+build() {
+  make -C "$pkgname-$pkgver"
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  install -d "$pkgdir/usr/lib" "$pkgdir/usr/include"
+  make install
+  install -Dm644 ../duktape.pc "$pkgdir/usr/lib/pkgconfig/duktape.pc"
+  install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# getver: github.com/svaarala/duktape
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/duktape.pc
===
--- community-i686/duktape.pc   2017-01-13 20:02:36 UTC (rev 207269)
+++ community-i686/duktape.pc   2017-01-13 20:04:00 UTC (rev 207270)
@@ -1,10 +0,0 @@
-prefix=/usr
-exec_prefix=${prefix}
-libdir=${exec_prefix}/lib
-includedir=${prefix}/include
-
-Name: duktape
-Description: Embeddable Javascript engine
-Version: 1.3.1
-Libs: -L${libdir} -lduktape
-Cflags: -I${includedir}

Copied: duktape/repos/community-i686/duktape.pc (from rev 207269, 
duktape/trunk/duktape.pc)
===
--- community-i686/duktape.pc   (rev 0)
+++ community-i686/duktape.pc   2017-01-13 20:04:00 UTC (rev 207270)
@@ -0,0 +1,10 @@
+prefix=/usr
+exec_prefix=${prefix}
+libdir=${exec_prefix}/lib
+includedir=${prefix}/include
+
+Name: duktape
+Description: Embeddable Javascript engine
+Version: 2.0.0
+Libs: -L${libdir} -lduktape
+Cflags: -I${includedir}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-01-13 20:02:36 UTC (rev 207269)
+++ community-x86_64/PKGBUILD   2017-01-13 

[arch-commits] Commit in duktape/trunk (PKGBUILD duktape.pc)

2017-01-13 Thread Alexander Rødseth
Date: Friday, January 13, 2017 @ 20:02:36
  Author: arodseth
Revision: 207269

upgpkg: duktape 2.0.0-1

Modified:
  duktape/trunk/PKGBUILD
  duktape/trunk/duktape.pc

+
 PKGBUILD   |6 +++---
 duktape.pc |2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-01-13 19:04:09 UTC (rev 207268)
+++ PKGBUILD2017-01-13 20:02:36 UTC (rev 207269)
@@ -2,7 +2,7 @@
 # Maintainer: Alexander F Rødseth 
 
 pkgname=duktape
-pkgver=1.5.1
+pkgver=2.0.0
 pkgrel=1
 pkgdesc='Embeddable Javascript engine'
 arch=('x86_64' 'i686')
@@ -12,8 +12,8 @@
 license=('MIT')
 source=("http://duktape.org/duktape-$pkgver.tar.xz;
 'duktape.pc')
-sha256sums=('9f16d05e1185094946baa333e52fe30dee45f59446c57d84874a68a6fd6bdf86'
-'c6df8fd26884eb74127e18ca6796ebb7cebedc197bcf1f51315f56bfef231cd1')
+sha256sums=('e07bc1178225218a281de9f73f555390743dd805bafd5396229c69a16f740c4d'
+'897ab77d0d2cce1abed573fdbfc80db40e78959f7816b82cb30ae41a06212a7e')
 
 prepare() {
   cd "$pkgname-$pkgver"

Modified: duktape.pc
===
--- duktape.pc  2017-01-13 19:04:09 UTC (rev 207268)
+++ duktape.pc  2017-01-13 20:02:36 UTC (rev 207269)
@@ -5,6 +5,6 @@
 
 Name: duktape
 Description: Embeddable Javascript engine
-Version: 1.3.1
+Version: 2.0.0
 Libs: -L${libdir} -lduktape
 Cflags: -I${includedir}


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

2017-01-13 Thread Andreas Radke
Date: Friday, January 13, 2017 @ 19:08:40
  Author: andyrtr
Revision: 286213

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

Added:
  libwps/repos/testing-i686/
  libwps/repos/testing-i686/PKGBUILD
(from rev 286212, libwps/trunk/PKGBUILD)
  libwps/repos/testing-x86_64/
  libwps/repos/testing-x86_64/PKGBUILD
(from rev 286212, libwps/trunk/PKGBUILD)

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

Copied: libwps/repos/testing-i686/PKGBUILD (from rev 286212, 
libwps/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2017-01-13 19:08:40 UTC (rev 286213)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: AndyRTR 
+# Contributor: Robert McCathie 
+
+pkgname=libwps
+pkgver=0.4.5
+pkgrel=1
+pkgdesc="a Microsoft Works file word processor format import filter library"
+arch=('i686' 'x86_64')
+url="https://sourceforge.net/projects/libwps/;
+license=('LGPL')
+depends=('libwpd' 'librevenge')
+makedepends=('boost' 'doxygen')
+source=("http://downloads.sourceforge.net/project/libwps/$pkgname/$pkgname-$pkgver/$pkgname-$pkgver.tar.xz;)
+sha1sums=('a728c25404a03b35cd91626d11c928075d0f0104')
+
+build() {
+   cd $pkgname-$pkgver
+   ./configure  --prefix=/usr \
+ --disable-static
+   make
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+   cd $pkgname-$pkgver
+   make DESTDIR="$pkgdir" install
+}

Copied: libwps/repos/testing-x86_64/PKGBUILD (from rev 286212, 
libwps/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2017-01-13 19:08:40 UTC (rev 286213)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: AndyRTR 
+# Contributor: Robert McCathie 
+
+pkgname=libwps
+pkgver=0.4.5
+pkgrel=1
+pkgdesc="a Microsoft Works file word processor format import filter library"
+arch=('i686' 'x86_64')
+url="https://sourceforge.net/projects/libwps/;
+license=('LGPL')
+depends=('libwpd' 'librevenge')
+makedepends=('boost' 'doxygen')
+source=("http://downloads.sourceforge.net/project/libwps/$pkgname/$pkgname-$pkgver/$pkgname-$pkgver.tar.xz;)
+sha1sums=('a728c25404a03b35cd91626d11c928075d0f0104')
+
+build() {
+   cd $pkgname-$pkgver
+   ./configure  --prefix=/usr \
+ --disable-static
+   make
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+   cd $pkgname-$pkgver
+   make DESTDIR="$pkgdir" install
+}


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

2017-01-13 Thread Andreas Radke
Date: Friday, January 13, 2017 @ 19:08:29
  Author: andyrtr
Revision: 286212

upgpkg: libwps 0.4.5-1

upstream update 0.4.5

Modified:
  libwps/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-13 19:03:52 UTC (rev 286211)
+++ PKGBUILD2017-01-13 19:08:29 UTC (rev 286212)
@@ -3,7 +3,7 @@
 # Contributor: Robert McCathie 
 
 pkgname=libwps
-pkgver=0.4.4
+pkgver=0.4.5
 pkgrel=1
 pkgdesc="a Microsoft Works file word processor format import filter library"
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 depends=('libwpd' 'librevenge')
 makedepends=('boost' 'doxygen')
 
source=("http://downloads.sourceforge.net/project/libwps/$pkgname/$pkgname-$pkgver/$pkgname-$pkgver.tar.xz;)
-sha1sums=('0dbcd5e55ab8e14318f4c4754211908ad879044f')
+sha1sums=('a728c25404a03b35cd91626d11c928075d0f0104')
 
 build() {
cd $pkgname-$pkgver


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

2017-01-13 Thread Andreas Radke
Date: Friday, January 13, 2017 @ 18:56:06
  Author: andyrtr
Revision: 286205

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

Added:
  libinput/repos/testing-i686/
  libinput/repos/testing-i686/PKGBUILD
(from rev 286204, libinput/trunk/PKGBUILD)
  libinput/repos/testing-x86_64/
  libinput/repos/testing-x86_64/PKGBUILD
(from rev 286204, libinput/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   41 +
 testing-x86_64/PKGBUILD |   41 +
 2 files changed, 82 insertions(+)

Copied: libinput/repos/testing-i686/PKGBUILD (from rev 286204, 
libinput/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2017-01-13 18:56:06 UTC (rev 286205)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Andreas Radke 
+# Maintainer: Jan de Groot
+
+pkgname=libinput
+pkgver=1.5.4
+pkgrel=1
+pkgdesc="Input device management and event handling library"
+arch=(i686 x86_64)
+url="http://www.freedesktop.org/wiki/Software/libinput/;
+license=(custom:X11)
+depends=('mtdev' 'systemd' 'libevdev' 'libwacom')
+# currently no doc files to install
+makedepends=('doxygen' 'graphviz' 'gtk3')
+#checkdepends=('check' 'libunwind')
+source=(http://freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.xz{,.sig})
+sha256sums=('6f9ad1ede468bd54ec4469b8a4eb93a6f62f7fe6480c7a43e36c5d58cc2822b7'
+'SKIP')
+validpgpkeys=('3C2C43D9447D5938EF4551EBE23B7E70B467F0BF') # Peter Hutterer 
(Who-T) 
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+# disabled for now:
+# https://github.com/libcheck/check/issues/18
+#  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+  # install doc - no Makefile target
+  install -v -dm755 ${pkgdir}/usr/share/doc/libinput
+  cp -rv doc/html/* ${pkgdir}/usr/share/doc/libinput
+}

Copied: libinput/repos/testing-x86_64/PKGBUILD (from rev 286204, 
libinput/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2017-01-13 18:56:06 UTC (rev 286205)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Andreas Radke 
+# Maintainer: Jan de Groot
+
+pkgname=libinput
+pkgver=1.5.4
+pkgrel=1
+pkgdesc="Input device management and event handling library"
+arch=(i686 x86_64)
+url="http://www.freedesktop.org/wiki/Software/libinput/;
+license=(custom:X11)
+depends=('mtdev' 'systemd' 'libevdev' 'libwacom')
+# currently no doc files to install
+makedepends=('doxygen' 'graphviz' 'gtk3')
+#checkdepends=('check' 'libunwind')
+source=(http://freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.xz{,.sig})
+sha256sums=('6f9ad1ede468bd54ec4469b8a4eb93a6f62f7fe6480c7a43e36c5d58cc2822b7'
+'SKIP')
+validpgpkeys=('3C2C43D9447D5938EF4551EBE23B7E70B467F0BF') # Peter Hutterer 
(Who-T) 
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+# disabled for now:
+# https://github.com/libcheck/check/issues/18
+#  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+  # install doc - no Makefile target
+  install -v -dm755 ${pkgdir}/usr/share/doc/libinput
+  cp -rv doc/html/* ${pkgdir}/usr/share/doc/libinput
+}


[arch-commits] Commit in system-config-printer/repos (4 files)

2017-01-13 Thread Andreas Radke
Date: Friday, January 13, 2017 @ 19:03:32
  Author: andyrtr
Revision: 286207

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

Added:
  system-config-printer/repos/testing-i686/
  system-config-printer/repos/testing-i686/PKGBUILD
(from rev 286206, system-config-printer/trunk/PKGBUILD)
  system-config-printer/repos/testing-x86_64/
  system-config-printer/repos/testing-x86_64/PKGBUILD
(from rev 286206, system-config-printer/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   51 ++
 testing-x86_64/PKGBUILD |   51 ++
 2 files changed, 102 insertions(+)

Copied: system-config-printer/repos/testing-i686/PKGBUILD (from rev 286206, 
system-config-printer/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2017-01-13 19:03:32 UTC (rev 286207)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: AndyRTR 
+# Contributor: Andrea Scarpino 
+
+pkgname=system-config-printer
+pkgver=1.5.9
+pkgrel=1
+pkgdesc="A CUPS printer configuration tool and status applet"
+url="https://github.com/zdohnal/system-config-printer;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('python-pycups' 'python-dbus' 'python-pycurl' 'libnotify'
+ 'python-requests' 'python-gobject' 'gtk3' 'python-cairo')
+makedepends=('intltool' 'xmlto' 'docbook-xsl' 'desktop-file-utils')
+optdepends=('libgnome-keyring: password management'
+'python-pysmbc: SMB browser support'
+'python-packagekit: to install drivers with PackageKit'
+'cups-pk-helper: PolicyKit helper to configure cups with 
fine-grained privileges')
+#source=(http://cyberelk.net/tim/data/${pkgname}/${pkgver%*.*}/${pkgname}-${pkgver}.tar.xz{,.sig})
+source=(https://github.com/zdohnal/system-config-printer/archive/v${pkgver}.tar.gz)
+sha256sums=('c8adf4468a465a2640ac365498f551e8a8645a09027e24004fd390e40b6262e3')
+#validpgpkeys=('02EA6349CE58E1BCAA8514F57955128DA3A1ABD3' #Tim Waugh 
 
+#  '4629AFE960EC20BEC12E3104B7C20D079491EA63') #Tim Waugh 

+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  touch README ChangeLog
+  autoreconf -fi
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr \
+--sbindir=/usr/bin \
+--sysconfdir=/etc \
+--with-udevdir=/usr/lib/udev --with-udev-rules 
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  # Compile *.pyc
+  find "${pkgdir}" -name '*.py' -exec python -mpy_compile {} +
+  # Compile *.pyo
+  find "${pkgdir}" -name '*.py' -exec python -O -mpy_compile {} +
+  
+  # new cups 2.0.0 service naming
+  sed -i "s|cups.socket|org.cups.cupsd.socket|g" 
${pkgdir}/usr/lib/systemd/system/configure-printer@.service
+}

Copied: system-config-printer/repos/testing-x86_64/PKGBUILD (from rev 286206, 
system-config-printer/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2017-01-13 19:03:32 UTC (rev 286207)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: AndyRTR 
+# Contributor: Andrea Scarpino 
+
+pkgname=system-config-printer
+pkgver=1.5.9
+pkgrel=1
+pkgdesc="A CUPS printer configuration tool and status applet"
+url="https://github.com/zdohnal/system-config-printer;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('python-pycups' 'python-dbus' 'python-pycurl' 'libnotify'
+ 'python-requests' 'python-gobject' 'gtk3' 'python-cairo')
+makedepends=('intltool' 'xmlto' 'docbook-xsl' 'desktop-file-utils')
+optdepends=('libgnome-keyring: password management'
+'python-pysmbc: SMB browser support'
+'python-packagekit: to install drivers with PackageKit'
+'cups-pk-helper: PolicyKit helper to configure cups with 
fine-grained privileges')
+#source=(http://cyberelk.net/tim/data/${pkgname}/${pkgver%*.*}/${pkgname}-${pkgver}.tar.xz{,.sig})
+source=(https://github.com/zdohnal/system-config-printer/archive/v${pkgver}.tar.gz)
+sha256sums=('c8adf4468a465a2640ac365498f551e8a8645a09027e24004fd390e40b6262e3')
+#validpgpkeys=('02EA6349CE58E1BCAA8514F57955128DA3A1ABD3' #Tim Waugh 
 
+#  '4629AFE960EC20BEC12E3104B7C20D079491EA63') #Tim Waugh 

+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  touch README ChangeLog
+  autoreconf -fi
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr \
+--sbindir=/usr/bin \
+--sysconfdir=/etc \
+--with-udevdir=/usr/lib/udev --with-udev-rules 
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  # Compile *.pyc
+  find "${pkgdir}" -name '*.py' -exec python 

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

2017-01-13 Thread Andreas Radke
Date: Friday, January 13, 2017 @ 19:03:21
  Author: andyrtr
Revision: 286206

upgpkg: system-config-printer 1.5.9-1

upstream update 1.5.9

Modified:
  system-config-printer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-13 18:56:06 UTC (rev 286205)
+++ PKGBUILD2017-01-13 19:03:21 UTC (rev 286206)
@@ -3,8 +3,8 @@
 # Contributor: Andrea Scarpino 
 
 pkgname=system-config-printer
-pkgver=1.5.8
-pkgrel=2
+pkgver=1.5.9
+pkgrel=1
 pkgdesc="A CUPS printer configuration tool and status applet"
 url="https://github.com/zdohnal/system-config-printer;
 arch=('i686' 'x86_64')
@@ -17,8 +17,8 @@
 'python-packagekit: to install drivers with PackageKit'
 'cups-pk-helper: PolicyKit helper to configure cups with 
fine-grained privileges')
 
#source=(http://cyberelk.net/tim/data/${pkgname}/${pkgver%*.*}/${pkgname}-${pkgver}.tar.xz{,.sig})
-source=(https://github.com/zdohnal/system-config-printer/archive/${pkgver}.tar.gz)
-sha256sums=('0516a2cf91d1fbdd04b378f32c73d44e6b1b22ac70e66bc2267066d612a96562')
+source=(https://github.com/zdohnal/system-config-printer/archive/v${pkgver}.tar.gz)
+sha256sums=('c8adf4468a465a2640ac365498f551e8a8645a09027e24004fd390e40b6262e3')
 #validpgpkeys=('02EA6349CE58E1BCAA8514F57955128DA3A1ABD3' #Tim Waugh 
 
 #  '4629AFE960EC20BEC12E3104B7C20D079491EA63') #Tim Waugh 

 


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

2017-01-13 Thread Andreas Radke
Date: Friday, January 13, 2017 @ 18:55:51
  Author: andyrtr
Revision: 286204

upgpkg: libinput 1.5.4-1

upstream update 1.5.4

Modified:
  libinput/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-13 18:42:01 UTC (rev 286203)
+++ PKGBUILD2017-01-13 18:55:51 UTC (rev 286204)
@@ -3,7 +3,7 @@
 # Maintainer: Jan de Groot
 
 pkgname=libinput
-pkgver=1.5.3
+pkgver=1.5.4
 pkgrel=1
 pkgdesc="Input device management and event handling library"
 arch=(i686 x86_64)
@@ -14,7 +14,7 @@
 makedepends=('doxygen' 'graphviz' 'gtk3')
 #checkdepends=('check' 'libunwind')
 
source=(http://freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.xz{,.sig})
-sha256sums=('91206c523b4e7aeecf296d0b94276c61bea90b9260d198c8ee3a91eced10a6e3'
+sha256sums=('6f9ad1ede468bd54ec4469b8a4eb93a6f62f7fe6480c7a43e36c5d58cc2822b7'
 'SKIP')
 validpgpkeys=('3C2C43D9447D5938EF4551EBE23B7E70B467F0BF') # Peter Hutterer 
(Who-T) 
 


[arch-commits] Commit in ibus-typing-booster/repos/extra-any (3 files)

2017-01-13 Thread Jan Steffens
Date: Friday, January 13, 2017 @ 18:42:01
  Author: heftig
Revision: 286203

archrelease: copy trunk to extra-any

Added:
  ibus-typing-booster/repos/extra-any/PKGBUILD
(from rev 286202, ibus-typing-booster/trunk/PKGBUILD)
Deleted:
  ibus-typing-booster/repos/extra-any/0001-Unbreak-sqlite-on-Python-3.6.patch
  ibus-typing-booster/repos/extra-any/PKGBUILD

-+
 0001-Unbreak-sqlite-on-Python-3.6.patch |  108 --
 PKGBUILD|   79 ++---
 2 files changed, 38 insertions(+), 149 deletions(-)

Deleted: 0001-Unbreak-sqlite-on-Python-3.6.patch
===
--- 0001-Unbreak-sqlite-on-Python-3.6.patch 2017-01-13 18:41:16 UTC (rev 
286202)
+++ 0001-Unbreak-sqlite-on-Python-3.6.patch 2017-01-13 18:42:01 UTC (rev 
286203)
@@ -1,108 +0,0 @@
-From 2e665e9f51e44808a472a8e7fd13edb205ba5ba7 Mon Sep 17 00:00:00 2001
-From: "Jan Alexander Steffens (heftig)" 
-Date: Fri, 13 Jan 2017 00:21:52 +0100
-Subject: [PATCH] Unbreak sqlite on Python 3.6
-
-Py3.6 changed the transaction behavior; DDL commands like PRAGMA do not
-commit open transactions anymore, and since the default for execute() is
-to auto-open a transaction, setting the journal_mode fails.
-
-Changing the isolation_level to None so that transactions aren't opened
-anymore is a possible workaround. However, using executescript() seems
-like a better idea; it always commits any open transaction first.

- engine/tabsqlitedb.py | 60 +++
- 1 file changed, 32 insertions(+), 28 deletions(-)
-
-diff --git a/engine/tabsqlitedb.py b/engine/tabsqlitedb.py
-index 4ff7f020ecf9dd40..9d3b576ba84723d1 100755
 a/engine/tabsqlitedb.py
-+++ b/engine/tabsqlitedb.py
-@@ -205,16 +205,17 @@ class tabsqlitedb:
- "Connect to the database %(name)s.\n"
- %{'name': self.user_db_file})
- self.db = sqlite3.connect(self.user_db_file)
--self.db.execute('PRAGMA encoding = "UTF-8";')
--self.db.execute('PRAGMA case_sensitive_like = true;')
--self.db.execute('PRAGMA page_size = 4096; ')
--self.db.execute('PRAGMA cache_size = 2;')
--self.db.execute('PRAGMA temp_store = MEMORY;')
--self.db.execute('PRAGMA journal_mode = WAL;')
--self.db.execute('PRAGMA journal_size_limit = 100;')
--self.db.execute('PRAGMA synchronous = NORMAL;')
--self.db.execute('ATTACH DATABASE "%s" AS user_db;'
--% self.user_db_file)
-+self.db.executescript('''
-+PRAGMA encoding = "UTF-8";
-+PRAGMA case_sensitive_like = true;
-+PRAGMA page_size = 4096;
-+PRAGMA cache_size = 2;
-+PRAGMA temp_store = MEMORY;
-+PRAGMA journal_mode = WAL;
-+PRAGMA journal_size_limit = 100;
-+PRAGMA synchronous = NORMAL;
-+ATTACH DATABASE "%s" AS user_db;
-+''' % self.user_db_file)
- except:
- sys.stderr.write(
- "Could not open the database %(name)s.\n"
-@@ -236,16 +237,17 @@ class tabsqlitedb:
- %{'name': self.user_db_file})
- self.init_user_db()
- self.db = sqlite3.connect(self.user_db_file)
--self.db.execute('PRAGMA encoding = "UTF-8";')
--self.db.execute('PRAGMA case_sensitive_like = true;')
--self.db.execute('PRAGMA page_size = 4096; ')
--self.db.execute('PRAGMA cache_size = 2;')
--self.db.execute('PRAGMA temp_store = MEMORY;')
--self.db.execute('PRAGMA journal_mode = WAL;')
--self.db.execute('PRAGMA journal_size_limit = 100;')
--self.db.execute('PRAGMA synchronous = NORMAL;')
--self.db.execute('ATTACH DATABASE "%s" AS user_db;'
--% self.user_db_file)
-+self.db.executescript('''
-+PRAGMA encoding = "UTF-8";
-+PRAGMA case_sensitive_like = true;
-+PRAGMA page_size = 4096;
-+PRAGMA cache_size = 2;
-+PRAGMA temp_store = MEMORY;
-+PRAGMA journal_mode = WAL;
-+PRAGMA journal_size_limit = 100;
-+PRAGMA synchronous = NORMAL;
-+ATTACH DATABASE "%s" AS user_db;
-+''' % self.user_db_file)
- self.create_tables()
- if self.old_phrases:
- sqlargs = []
-@@ -657,18 +659,20 @@ class tabsqlitedb:
- return
- if not path.exists(self.user_db_file):
- db = sqlite3.connect(self.user_db_file)
--db.execute('PRAGMA encoding = "UTF-8";')
--db.execute('PRAGMA case_sensitive_like = true;')
--  

[arch-commits] Commit in ibus-typing-booster/trunk (2 files)

2017-01-13 Thread Jan Steffens
Date: Friday, January 13, 2017 @ 18:41:16
  Author: heftig
Revision: 286202

1.5.17-1

Modified:
  ibus-typing-booster/trunk/PKGBUILD
Deleted:
  ibus-typing-booster/trunk/0001-Unbreak-sqlite-on-Python-3.6.patch

-+
 0001-Unbreak-sqlite-on-Python-3.6.patch |  108 --
 PKGBUILD|   13 +--
 2 files changed, 5 insertions(+), 116 deletions(-)

Deleted: 0001-Unbreak-sqlite-on-Python-3.6.patch
===
--- 0001-Unbreak-sqlite-on-Python-3.6.patch 2017-01-13 18:06:46 UTC (rev 
286201)
+++ 0001-Unbreak-sqlite-on-Python-3.6.patch 2017-01-13 18:41:16 UTC (rev 
286202)
@@ -1,108 +0,0 @@
-From 2e665e9f51e44808a472a8e7fd13edb205ba5ba7 Mon Sep 17 00:00:00 2001
-From: "Jan Alexander Steffens (heftig)" 
-Date: Fri, 13 Jan 2017 00:21:52 +0100
-Subject: [PATCH] Unbreak sqlite on Python 3.6
-
-Py3.6 changed the transaction behavior; DDL commands like PRAGMA do not
-commit open transactions anymore, and since the default for execute() is
-to auto-open a transaction, setting the journal_mode fails.
-
-Changing the isolation_level to None so that transactions aren't opened
-anymore is a possible workaround. However, using executescript() seems
-like a better idea; it always commits any open transaction first.

- engine/tabsqlitedb.py | 60 +++
- 1 file changed, 32 insertions(+), 28 deletions(-)
-
-diff --git a/engine/tabsqlitedb.py b/engine/tabsqlitedb.py
-index 4ff7f020ecf9dd40..9d3b576ba84723d1 100755
 a/engine/tabsqlitedb.py
-+++ b/engine/tabsqlitedb.py
-@@ -205,16 +205,17 @@ class tabsqlitedb:
- "Connect to the database %(name)s.\n"
- %{'name': self.user_db_file})
- self.db = sqlite3.connect(self.user_db_file)
--self.db.execute('PRAGMA encoding = "UTF-8";')
--self.db.execute('PRAGMA case_sensitive_like = true;')
--self.db.execute('PRAGMA page_size = 4096; ')
--self.db.execute('PRAGMA cache_size = 2;')
--self.db.execute('PRAGMA temp_store = MEMORY;')
--self.db.execute('PRAGMA journal_mode = WAL;')
--self.db.execute('PRAGMA journal_size_limit = 100;')
--self.db.execute('PRAGMA synchronous = NORMAL;')
--self.db.execute('ATTACH DATABASE "%s" AS user_db;'
--% self.user_db_file)
-+self.db.executescript('''
-+PRAGMA encoding = "UTF-8";
-+PRAGMA case_sensitive_like = true;
-+PRAGMA page_size = 4096;
-+PRAGMA cache_size = 2;
-+PRAGMA temp_store = MEMORY;
-+PRAGMA journal_mode = WAL;
-+PRAGMA journal_size_limit = 100;
-+PRAGMA synchronous = NORMAL;
-+ATTACH DATABASE "%s" AS user_db;
-+''' % self.user_db_file)
- except:
- sys.stderr.write(
- "Could not open the database %(name)s.\n"
-@@ -236,16 +237,17 @@ class tabsqlitedb:
- %{'name': self.user_db_file})
- self.init_user_db()
- self.db = sqlite3.connect(self.user_db_file)
--self.db.execute('PRAGMA encoding = "UTF-8";')
--self.db.execute('PRAGMA case_sensitive_like = true;')
--self.db.execute('PRAGMA page_size = 4096; ')
--self.db.execute('PRAGMA cache_size = 2;')
--self.db.execute('PRAGMA temp_store = MEMORY;')
--self.db.execute('PRAGMA journal_mode = WAL;')
--self.db.execute('PRAGMA journal_size_limit = 100;')
--self.db.execute('PRAGMA synchronous = NORMAL;')
--self.db.execute('ATTACH DATABASE "%s" AS user_db;'
--% self.user_db_file)
-+self.db.executescript('''
-+PRAGMA encoding = "UTF-8";
-+PRAGMA case_sensitive_like = true;
-+PRAGMA page_size = 4096;
-+PRAGMA cache_size = 2;
-+PRAGMA temp_store = MEMORY;
-+PRAGMA journal_mode = WAL;
-+PRAGMA journal_size_limit = 100;
-+PRAGMA synchronous = NORMAL;
-+ATTACH DATABASE "%s" AS user_db;
-+''' % self.user_db_file)
- self.create_tables()
- if self.old_phrases:
- sqlargs = []
-@@ -657,18 +659,20 @@ class tabsqlitedb:
- return
- if not path.exists(self.user_db_file):
- db = sqlite3.connect(self.user_db_file)
--db.execute('PRAGMA encoding = "UTF-8";')
--db.execute('PRAGMA case_sensitive_like = true;')
--db.execute('PRAGMA page_size = 4096;')
- # a database containing the complete German Hunspell
- # dictionary has less then 6000 pages. 

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

2017-01-13 Thread Felix Yan
Date: Friday, January 13, 2017 @ 18:02:41
  Author: felixonmars
Revision: 207251

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

Added:
  stack/repos/community-staging-i686/
  stack/repos/community-staging-i686/PKGBUILD
(from rev 207250, stack/trunk/PKGBUILD)
  stack/repos/community-staging-i686/stack.install
(from rev 207250, stack/trunk/stack.install)
  stack/repos/community-staging-x86_64/
  stack/repos/community-staging-x86_64/PKGBUILD
(from rev 207250, stack/trunk/PKGBUILD)
  stack/repos/community-staging-x86_64/stack.install
(from rev 207250, stack/trunk/stack.install)

+
 community-staging-i686/PKGBUILD|   83 +++
 community-staging-i686/stack.install   |4 +
 community-staging-x86_64/PKGBUILD  |   83 +++
 community-staging-x86_64/stack.install |4 +
 4 files changed, 174 insertions(+)

Copied: stack/repos/community-staging-i686/PKGBUILD (from rev 207250, 
stack/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-01-13 18:02:41 UTC (rev 207251)
@@ -0,0 +1,83 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgbase=stack
+pkgname=(stack haskell-stack)
+pkgver=1.3.2
+pkgrel=12
+pkgdesc="The Haskell Tool Stack"
+url="https://github.com/commercialhaskell/stack;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+makedepends=("ghc=8.0.1" "haskell-aeson" "haskell-annotated-wl-pprint" 
"haskell-ansi-terminal"
+ "haskell-async" "haskell-attoparsec" "haskell-base-compat" 
"haskell-base16-bytestring"
+ "haskell-base64-bytestring" "haskell-binary-tagged" 
"haskell-blaze-builder"
+ "haskell-byteable" "haskell-clock" "haskell-conduit" 
"haskell-conduit-extra"
+ "haskell-cryptohash" "haskell-cryptohash-conduit" 
"haskell-either" "haskell-errors"
+ "haskell-exceptions" "haskell-extra" "haskell-fast-logger" 
"haskell-file-embed"
+ "haskell-filelock" "haskell-fsnotify" "haskell-generic-deriving" 
"haskell-gitrev"
+ "haskell-hashable" "haskell-hastache" "haskell-hit" 
"haskell-http-client"
+ "haskell-http-client-tls" "haskell-http-conduit" 
"haskell-http-types" "haskell-hpack"
+ "haskell-lifted-async" "haskell-lifted-base" "haskell-microlens"
+ "haskell-monad-control" "haskell-monad-logger" 
"haskell-monad-unlift" "haskell-mtl"
+ "haskell-open-browser" "haskell-optparse-applicative" 
"haskell-optparse-simple"
+ "haskell-path" "haskell-path-io" "haskell-persistent" 
"haskell-persistent-sqlite"
+ "haskell-persistent-template" "haskell-pid1" 
"haskell-project-template"
+ "haskell-regex-applicative-text" "haskell-resourcet" 
"haskell-retry" "haskell-safe"
+ "haskell-safe-exceptions" "haskell-semigroups" "haskell-split" 
"haskell-stm"
+ "haskell-store" "haskell-streaming-commons" "haskell-tar" 
"haskell-temporary"
+ "haskell-text" "haskell-text-binary" "haskell-text-metrics" 
"haskell-tls"
+ "haskell-transformers-base" "haskell-unicode-transforms" 
"haskell-unix-compat"
+ "haskell-unordered-containers" "haskell-vector" 
"haskell-vector-binary-instances"
+ "haskell-yaml" "haskell-zip-archive" "haskell-zlib")
+source=("https://hackage.haskell.org/packages/archive/${pkgbase}/${pkgver}/${pkgbase}-${pkgver}.tar.gz;)
+sha256sums=('488b9292ea605c92f6ebf79b233e8e374d857b21053051cb44b305dad8f0d3f7')
+
+prepare() {
+sed -i 's/hpack >=0.14.0 && <0.16,/hpack >=0.14.0 \&\& <0.17,/' 
${pkgbase}-${pkgver}/${pkgbase}.cabal
+}
+
+build() {
+cd "${srcdir}/${pkgbase}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgbase}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-disable-git-info -f-integration-tests -f-static 
-f-hide-dependency-versions
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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_stack() {
+depends=('gmp' 'libffi' 'zlib')
+optdepends=('ghc')
+install="stack.install"
+
+cd "${srcdir}/${pkgbase}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -r "$pkgdir"/usr/{lib,share/doc}
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+
+"${pkgdir}"/usr/bin/stack --bash-completion-script /usr/bin/stack > 
stack_completion_script
+install -Dm644 

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

2017-01-13 Thread Antonio Rojas
Date: Friday, January 13, 2017 @ 18:01:56
  Author: arojas
Revision: 286194

Remove unused dependencies

Modified:
  ktouch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-13 17:39:59 UTC (rev 286193)
+++ PKGBUILD2017-01-13 18:01:56 UTC (rev 286194)
@@ -10,7 +10,7 @@
 arch=(i686 x86_64)
 license=(GPL LGPL FDL)
 groups=(kde-applications kdeedu)
-depends=(kqtquickcharts libxkbfile ktexteditor kcmutils knewstuff 
hicolor-icon-theme qt5-quickcontrols qt5-graphicaleffects)
+depends=(kqtquickcharts libxkbfile kcmutils hicolor-icon-theme 
qt5-quickcontrols qt5-graphicaleffects)
 makedepends=(extra-cmake-modules mesa kdoctools python)
 conflicts=(kdeedu-ktouch)
 replaces=(kdeedu-ktouch)


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

2017-01-13 Thread Felix Yan
Date: Friday, January 13, 2017 @ 18:02:04
  Author: felixonmars
Revision: 207250

upgpkg: stack 1.3.2-12

rebuild with th-expand-syns-0.4.2.0

Modified:
  stack/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-13 17:15:11 UTC (rev 207249)
+++ PKGBUILD2017-01-13 18:02:04 UTC (rev 207250)
@@ -5,7 +5,7 @@
 pkgbase=stack
 pkgname=(stack haskell-stack)
 pkgver=1.3.2
-pkgrel=11
+pkgrel=12
 pkgdesc="The Haskell Tool Stack"
 url="https://github.com/commercialhaskell/stack;
 license=("custom:BSD3")


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

2017-01-13 Thread Antonio Rojas
Date: Friday, January 13, 2017 @ 17:39:59
  Author: arojas
Revision: 286193

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

Added:
  krfb/repos/extra-i686/PKGBUILD
(from rev 286192, krfb/trunk/PKGBUILD)
  krfb/repos/extra-i686/krfb-gcc6.patch
(from rev 286192, krfb/trunk/krfb-gcc6.patch)
  krfb/repos/extra-x86_64/PKGBUILD
(from rev 286192, krfb/trunk/PKGBUILD)
  krfb/repos/extra-x86_64/krfb-gcc6.patch
(from rev 286192, krfb/trunk/krfb-gcc6.patch)
Deleted:
  krfb/repos/extra-i686/PKGBUILD
  krfb/repos/extra-i686/krfb-gcc6.patch
  krfb/repos/extra-x86_64/PKGBUILD
  krfb/repos/extra-x86_64/krfb-gcc6.patch

--+
 /PKGBUILD|   88 +
 /krfb-gcc6.patch |   26 
 extra-i686/PKGBUILD  |   44 
 extra-i686/krfb-gcc6.patch   |   13 --
 extra-x86_64/PKGBUILD|   44 
 extra-x86_64/krfb-gcc6.patch |   13 --
 6 files changed, 114 insertions(+), 114 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-01-13 17:38:54 UTC (rev 286192)
+++ extra-i686/PKGBUILD 2017-01-13 17:39:59 UTC (rev 286193)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-# Maintainer: Felix Yan 
-
-pkgname=krfb
-pkgver=16.12.1
-pkgrel=1
-pkgdesc='Desktop Sharing'
-url='http://www.kde.org/applications/system/krfb'
-arch=(i686 x86_64)
-license=(LGPL)
-depends=(kdnssd kxmlgui kwallet libvncserver libxdamage)
-makedepends=(extra-cmake-modules kdoctools python)
-conflicts=(kdenetwork-krfb)
-replaces=(kdenetwork-krfb)
-groups=(kde-applications kdenetwork)
-source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig}
 krfb-gcc6.patch)
-md5sums=('a0a415ad3bb0f61baeb58f7ded1aec4e'
- 'SKIP'
- 'fc342abdbbac31a98c9839b2f61b88e7')
-validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7) # Albert Astals Cid 

-
-prepare() {
-  mkdir -p build
-
-# Fix build with GCC6 (Fedora)
-  cd $pkgname-$pkgver
-  patch -p1 -i ../krfb-gcc6.patch
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_LIBDIR=lib \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: krfb/repos/extra-i686/PKGBUILD (from rev 286192, krfb/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-01-13 17:39:59 UTC (rev 286193)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+
+pkgname=krfb
+pkgver=16.12.1
+pkgrel=2
+pkgdesc='Desktop Sharing'
+url='http://www.kde.org/applications/system/krfb'
+arch=(i686 x86_64)
+license=(LGPL)
+depends=(kdnssd kxmlgui kwallet libvncserver libxdamage)
+makedepends=(extra-cmake-modules kdoctools python)
+conflicts=(kdenetwork-krfb)
+replaces=(kdenetwork-krfb)
+groups=(kde-applications kdenetwork)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig}
 krfb-gcc6.patch)
+md5sums=('a0a415ad3bb0f61baeb58f7ded1aec4e'
+ 'SKIP'
+ 'fc342abdbbac31a98c9839b2f61b88e7')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7) # Albert Astals Cid 

+
+prepare() {
+  mkdir -p build
+
+# Fix build with GCC6 (Fedora)
+  cd $pkgname-$pkgver
+  patch -p1 -i ../krfb-gcc6.patch
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-i686/krfb-gcc6.patch
===
--- extra-i686/krfb-gcc6.patch  2017-01-13 17:38:54 UTC (rev 286192)
+++ extra-i686/krfb-gcc6.patch  2017-01-13 17:39:59 UTC (rev 286193)
@@ -1,13 +0,0 @@
-diff -up krfb-15.12.2/krfb/rfb.h.than krfb-15.12.2/krfb/rfb.h
 krfb-15.12.2/krfb/rfb.h.than   2016-02-18 14:31:57.918262431 +0100
-+++ krfb-15.12.2/krfb/rfb.h2016-02-18 14:35:20.029628544 +0100
-@@ -8,6 +8,9 @@
- 
- #include "rfb/rfb.h"
- 
-+#ifdef max // fix conflict with max() macro using gcc6 
-+#undef max
-+#endif
- #undef TRUE
- #undef FALSE
- 

Copied: krfb/repos/extra-i686/krfb-gcc6.patch (from rev 286192, 
krfb/trunk/krfb-gcc6.patch)
===
--- extra-i686/krfb-gcc6.patch  (rev 0)
+++ extra-i686/krfb-gcc6.patch  2017-01-13 17:39:59 UTC (rev 286193)
@@ -0,0 +1,13 @@
+diff -up krfb-15.12.2/krfb/rfb.h.than krfb-15.12.2/krfb/rfb.h
+--- krfb-15.12.2/krfb/rfb.h.than   2016-02-18 14:31:57.918262431 

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

2017-01-13 Thread Antonio Rojas
Date: Friday, January 13, 2017 @ 17:38:54
  Author: arojas
Revision: 286192

libvncserver 0.9.11 rebuild (FS#52534)

Modified:
  krfb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-13 11:10:05 UTC (rev 286191)
+++ PKGBUILD2017-01-13 17:38:54 UTC (rev 286192)
@@ -4,7 +4,7 @@
 
 pkgname=krfb
 pkgver=16.12.1
-pkgrel=1
+pkgrel=2
 pkgdesc='Desktop Sharing'
 url='http://www.kde.org/applications/system/krfb'
 arch=(i686 x86_64)


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

2017-01-13 Thread Felix Yan
Date: Friday, January 13, 2017 @ 17:15:11
  Author: felixonmars
Revision: 207249

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

Added:
  startdde/repos/community-testing-i686/
  startdde/repos/community-testing-i686/PKGBUILD
(from rev 207248, startdde/trunk/PKGBUILD)
  startdde/repos/community-testing-x86_64/
  startdde/repos/community-testing-x86_64/PKGBUILD
(from rev 207248, startdde/trunk/PKGBUILD)

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

Copied: startdde/repos/community-testing-i686/PKGBUILD (from rev 207248, 
startdde/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2017-01-13 17:15:11 UTC (rev 207249)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=startdde
+pkgver=3.0.14
+pkgrel=1
+pkgdesc="starter of deepin desktop environment"
+arch=('i686' 'x86_64')
+url="https://github.com/linuxdeepin/startdde;
+license=('GPL3')
+depends=('deepin-daemon' 'deepin-wm-switcher') # 'gcc-libs>=5.3.0-3')
+makedepends=('cmake' 'coffee-script' 'deepin-dbus-factory' 
'deepin-gir-generator' 'deepin-go-lib'
+ 'deepin-api' 'go' 'python2' 'webkitgtk' 'git') # 'gcc-go')
+groups=('deepin')
+source=("git+https://cr.deepin.io/dde/startdde.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+prepare() {
+  export GOPATH="$srcdir/build:/usr/share/gocode"
+  go get github.com/BurntSushi/xgb github.com/BurntSushi/xgbutil 
github.com/howeyc/fsnotify
+}
+
+build() {
+  cd "$srcdir/startdde"
+  make # USE_GCCGO=1
+}
+
+package() {
+  cd startdde
+  make DESTDIR="${pkgdir}" install
+
+  mv "$pkgdir"/lib/systemd "$pkgdir"/usr/lib/systemd
+  rmdir "$pkgdir"/lib
+  ln -sf ../dde-readahead.service 
"$pkgdir"/usr/lib/systemd/system/multi-user.target.wants/dde-readahead.service
+}

Copied: startdde/repos/community-testing-x86_64/PKGBUILD (from rev 207248, 
startdde/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2017-01-13 17:15:11 UTC (rev 207249)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=startdde
+pkgver=3.0.14
+pkgrel=1
+pkgdesc="starter of deepin desktop environment"
+arch=('i686' 'x86_64')
+url="https://github.com/linuxdeepin/startdde;
+license=('GPL3')
+depends=('deepin-daemon' 'deepin-wm-switcher') # 'gcc-libs>=5.3.0-3')
+makedepends=('cmake' 'coffee-script' 'deepin-dbus-factory' 
'deepin-gir-generator' 'deepin-go-lib'
+ 'deepin-api' 'go' 'python2' 'webkitgtk' 'git') # 'gcc-go')
+groups=('deepin')
+source=("git+https://cr.deepin.io/dde/startdde.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+prepare() {
+  export GOPATH="$srcdir/build:/usr/share/gocode"
+  go get github.com/BurntSushi/xgb github.com/BurntSushi/xgbutil 
github.com/howeyc/fsnotify
+}
+
+build() {
+  cd "$srcdir/startdde"
+  make # USE_GCCGO=1
+}
+
+package() {
+  cd startdde
+  make DESTDIR="${pkgdir}" install
+
+  mv "$pkgdir"/lib/systemd "$pkgdir"/usr/lib/systemd
+  rmdir "$pkgdir"/lib
+  ln -sf ../dde-readahead.service 
"$pkgdir"/usr/lib/systemd/system/multi-user.target.wants/dde-readahead.service
+}


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

2017-01-13 Thread Felix Yan
Date: Friday, January 13, 2017 @ 17:14:43
  Author: felixonmars
Revision: 207248

upgpkg: startdde 3.0.14-1

Modified:
  startdde/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-13 17:12:28 UTC (rev 207247)
+++ PKGBUILD2017-01-13 17:14:43 UTC (rev 207248)
@@ -4,7 +4,7 @@
 # Contributor: Xu Fasheng 
 
 pkgname=startdde
-pkgver=3.0.13
+pkgver=3.0.14
 pkgrel=1
 pkgdesc="starter of deepin desktop environment"
 arch=('i686' 'x86_64')


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

2017-01-13 Thread Felix Yan
Date: Friday, January 13, 2017 @ 17:12:01
  Author: felixonmars
Revision: 207246

upgpkg: haskell-store 0.3-7

rebuild with th-expand-syns-0.4.2.0

Modified:
  haskell-store/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-13 17:09:18 UTC (rev 207245)
+++ PKGBUILD2017-01-13 17:12:01 UTC (rev 207246)
@@ -4,7 +4,7 @@
 _hkgname=store
 pkgname=haskell-store
 pkgver=0.3
-pkgrel=6
+pkgrel=7
 pkgdesc="Fast binary serialization"
 url="https://github.com/fpco/store;
 license=('custom:BSD3')


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

2017-01-13 Thread Felix Yan
Date: Friday, January 13, 2017 @ 17:12:28
  Author: felixonmars
Revision: 207247

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

Added:
  haskell-store/repos/community-staging-i686/
  haskell-store/repos/community-staging-i686/PKGBUILD
(from rev 207246, haskell-store/trunk/PKGBUILD)
  haskell-store/repos/community-staging-x86_64/
  haskell-store/repos/community-staging-x86_64/PKGBUILD
(from rev 207246, haskell-store/trunk/PKGBUILD)

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

Copied: haskell-store/repos/community-staging-i686/PKGBUILD (from rev 207246, 
haskell-store/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-01-13 17:12:28 UTC (rev 207247)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=store
+pkgname=haskell-store
+pkgver=0.3
+pkgrel=7
+pkgdesc="Fast binary serialization"
+url="https://github.com/fpco/store;
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+depends=('ghc=8.0.1' 'haskell-async' 'haskell-base-orphans' 
'haskell-base64-bytestring'
+ 'haskell-conduit' 'haskell-cryptohash' 'haskell-free' 
'haskell-hashable' 'haskell-hspec'
+ 'haskell-hspec-smallcheck' 'haskell-lifted-base' 
'haskell-monad-control'
+ 'haskell-mono-traversable' 'haskell-network' 'haskell-primitive' 
'haskell-resourcet'
+ 'haskell-safe' 'haskell-semigroups' 'haskell-smallcheck' 
'haskell-streaming-commons'
+ 'haskell-store-core' 'haskell-syb' 'haskell-text' 'haskell-th-lift'
+ 'haskell-th-lift-instances' 'haskell-th-orphans' 
'haskell-th-reify-many'
+ 'haskell-th-utilities' 'haskell-unordered-containers' 
'haskell-vector' 'haskell-void')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+md5sums=('e8f68402d601c7d02453cb0f3aa04e74')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-comparison-bench -f-small-bench
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+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-store/repos/community-staging-x86_64/PKGBUILD (from rev 207246, 
haskell-store/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-01-13 17:12:28 UTC (rev 207247)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=store
+pkgname=haskell-store
+pkgver=0.3
+pkgrel=7
+pkgdesc="Fast binary serialization"
+url="https://github.com/fpco/store;
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+depends=('ghc=8.0.1' 'haskell-async' 'haskell-base-orphans' 
'haskell-base64-bytestring'
+ 'haskell-conduit' 'haskell-cryptohash' 'haskell-free' 
'haskell-hashable' 'haskell-hspec'
+ 'haskell-hspec-smallcheck' 'haskell-lifted-base' 
'haskell-monad-control'
+ 'haskell-mono-traversable' 'haskell-network' 'haskell-primitive' 
'haskell-resourcet'
+ 'haskell-safe' 'haskell-semigroups' 'haskell-smallcheck' 
'haskell-streaming-commons'
+ 'haskell-store-core' 'haskell-syb' 'haskell-text' 'haskell-th-lift'
+ 'haskell-th-lift-instances' 'haskell-th-orphans' 
'haskell-th-reify-many'
+ 'haskell-th-utilities' 'haskell-unordered-containers' 
'haskell-vector' 'haskell-void')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+md5sums=('e8f68402d601c7d02453cb0f3aa04e74')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling 

[arch-commits] Commit in deepin-daemon/repos (12 files)

2017-01-13 Thread Felix Yan
Date: Friday, January 13, 2017 @ 17:09:18
  Author: felixonmars
Revision: 207245

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

Added:
  deepin-daemon/repos/community-testing-i686/
  deepin-daemon/repos/community-testing-i686/PKGBUILD
(from rev 207244, deepin-daemon/trunk/PKGBUILD)
  deepin-daemon/repos/community-testing-i686/deepin-daemon.install
(from rev 207244, deepin-daemon/trunk/deepin-daemon.install)
  deepin-daemon/repos/community-testing-i686/deepin-daemon.sysusers
(from rev 207244, deepin-daemon/trunk/deepin-daemon.sysusers)
  deepin-daemon/repos/community-testing-i686/launcher.patch
(from rev 207244, deepin-daemon/trunk/launcher.patch)
  
deepin-daemon/repos/community-testing-i686/polkit-gnome-authentication-agent-1-deepin.desktop
(from rev 207244, 
deepin-daemon/trunk/polkit-gnome-authentication-agent-1-deepin.desktop)
  deepin-daemon/repos/community-testing-x86_64/
  deepin-daemon/repos/community-testing-x86_64/PKGBUILD
(from rev 207244, deepin-daemon/trunk/PKGBUILD)
  deepin-daemon/repos/community-testing-x86_64/deepin-daemon.install
(from rev 207244, deepin-daemon/trunk/deepin-daemon.install)
  deepin-daemon/repos/community-testing-x86_64/deepin-daemon.sysusers
(from rev 207244, deepin-daemon/trunk/deepin-daemon.sysusers)
  deepin-daemon/repos/community-testing-x86_64/launcher.patch
(from rev 207244, deepin-daemon/trunk/launcher.patch)
  
deepin-daemon/repos/community-testing-x86_64/polkit-gnome-authentication-agent-1-deepin.desktop
(from rev 207244, 
deepin-daemon/trunk/polkit-gnome-authentication-agent-1-deepin.desktop)

-+
 community-testing-i686/PKGBUILD |  
 52 
 community-testing-i686/deepin-daemon.install|  
 11 
 community-testing-i686/deepin-daemon.sysusers   |  
  2 
 community-testing-i686/launcher.patch   | 
5676 ++
 community-testing-i686/polkit-gnome-authentication-agent-1-deepin.desktop   |  
 87 
 community-testing-x86_64/PKGBUILD   |  
 52 
 community-testing-x86_64/deepin-daemon.install  |  
 11 
 community-testing-x86_64/deepin-daemon.sysusers |  
  2 
 community-testing-x86_64/launcher.patch | 
5676 ++
 community-testing-x86_64/polkit-gnome-authentication-agent-1-deepin.desktop |  
 87 
 10 files changed, 11656 insertions(+)

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


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

2017-01-13 Thread Felix Yan
Date: Friday, January 13, 2017 @ 17:08:25
  Author: felixonmars
Revision: 207244

upgpkg: deepin-daemon 3.0.25-1

rebuild with deepin-tool-kit 0.2.1

Modified:
  deepin-daemon/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-13 16:56:13 UTC (rev 207243)
+++ PKGBUILD2017-01-13 17:08:25 UTC (rev 207244)
@@ -4,7 +4,7 @@
 # Contributor: Xu Fasheng 
 
 pkgname=deepin-daemon
-pkgver=3.0.24
+pkgver=3.0.25
 pkgrel=1
 pkgdesc='Daemon handling the DDE session settings'
 arch=('i686' 'x86_64')


[arch-commits] Commit in haskell-th-utilities/repos (4 files)

2017-01-13 Thread Felix Yan
Date: Friday, January 13, 2017 @ 16:56:13
  Author: felixonmars
Revision: 207243

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

Added:
  haskell-th-utilities/repos/community-staging-i686/
  haskell-th-utilities/repos/community-staging-i686/PKGBUILD
(from rev 207242, haskell-th-utilities/trunk/PKGBUILD)
  haskell-th-utilities/repos/community-staging-x86_64/
  haskell-th-utilities/repos/community-staging-x86_64/PKGBUILD
(from rev 207242, haskell-th-utilities/trunk/PKGBUILD)

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

Copied: haskell-th-utilities/repos/community-staging-i686/PKGBUILD (from rev 
207242, haskell-th-utilities/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-01-13 16:56:13 UTC (rev 207243)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=th-utilities
+pkgname=haskell-th-utilities
+pkgver=0.2.0.1
+pkgrel=4
+pkgdesc="Collection of useful functions for use with Template Haskell"
+url="https://github.com/fpco/th-utilities;
+license=('MIT')
+arch=('i686' 'x86_64')
+depends=('ghc=8.0.1' 'haskell-primitive' 'haskell-syb' 'haskell-text' 
'haskell-th-orphans')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+md5sums=('2caf2260cdff51506c564946d610e527')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+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-th-utilities/repos/community-staging-x86_64/PKGBUILD (from rev 
207242, haskell-th-utilities/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-01-13 16:56:13 UTC (rev 207243)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=th-utilities
+pkgname=haskell-th-utilities
+pkgver=0.2.0.1
+pkgrel=4
+pkgdesc="Collection of useful functions for use with Template Haskell"
+url="https://github.com/fpco/th-utilities;
+license=('MIT')
+arch=('i686' 'x86_64')
+depends=('ghc=8.0.1' 'haskell-primitive' 'haskell-syb' 'haskell-text' 
'haskell-th-orphans')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+md5sums=('2caf2260cdff51506c564946d610e527')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+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-th-utilities/trunk (PKGBUILD)

2017-01-13 Thread Felix Yan
Date: Friday, January 13, 2017 @ 16:55:42
  Author: felixonmars
Revision: 207242

upgpkg: haskell-th-utilities 0.2.0.1-4

rebuild with th-expand-syns-0.4.2.0

Modified:
  haskell-th-utilities/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-13 16:53:24 UTC (rev 207241)
+++ PKGBUILD2017-01-13 16:55:42 UTC (rev 207242)
@@ -4,13 +4,13 @@
 _hkgname=th-utilities
 pkgname=haskell-th-utilities
 pkgver=0.2.0.1
-pkgrel=3
+pkgrel=4
 pkgdesc="Collection of useful functions for use with Template Haskell"
 url="https://github.com/fpco/th-utilities;
 license=('MIT')
 arch=('i686' 'x86_64')
 depends=('ghc=8.0.1' 'haskell-primitive' 'haskell-syb' 'haskell-text' 
'haskell-th-orphans')
-source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
 md5sums=('2caf2260cdff51506c564946d610e527')
 
 build() {


[arch-commits] Commit in haskell-interpolatedstring-perl6/repos (4 files)

2017-01-13 Thread Felix Yan
Date: Friday, January 13, 2017 @ 16:53:24
  Author: felixonmars
Revision: 207241

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

Added:
  haskell-interpolatedstring-perl6/repos/community-staging-i686/
  haskell-interpolatedstring-perl6/repos/community-staging-i686/PKGBUILD
(from rev 207240, haskell-interpolatedstring-perl6/trunk/PKGBUILD)
  haskell-interpolatedstring-perl6/repos/community-staging-x86_64/
  haskell-interpolatedstring-perl6/repos/community-staging-x86_64/PKGBUILD
(from rev 207240, haskell-interpolatedstring-perl6/trunk/PKGBUILD)

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

Copied: haskell-interpolatedstring-perl6/repos/community-staging-i686/PKGBUILD 
(from rev 207240, haskell-interpolatedstring-perl6/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-01-13 16:53:24 UTC (rev 207241)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=interpolatedstring-perl6
+pkgname=haskell-interpolatedstring-perl6
+pkgver=1.0.0
+pkgrel=5
+pkgdesc="QuasiQuoter for Perl6-style multi-line interpolated strings"
+url="https://github.com/audreyt/interpolatedstring-perl6;
+license=('custom:PublicDomain')
+arch=('i686' 'x86_64')
+depends=('ghc=8.0.1' 'haskell-src-meta' 'haskell-text')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+md5sums=('fa05580d47b3d00a74fbe2b0013de14d')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+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-interpolatedstring-perl6/repos/community-staging-x86_64/PKGBUILD (from 
rev 207240, haskell-interpolatedstring-perl6/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-01-13 16:53:24 UTC (rev 207241)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=interpolatedstring-perl6
+pkgname=haskell-interpolatedstring-perl6
+pkgver=1.0.0
+pkgrel=5
+pkgdesc="QuasiQuoter for Perl6-style multi-line interpolated strings"
+url="https://github.com/audreyt/interpolatedstring-perl6;
+license=('custom:PublicDomain')
+arch=('i686' 'x86_64')
+depends=('ghc=8.0.1' 'haskell-src-meta' 'haskell-text')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+md5sums=('fa05580d47b3d00a74fbe2b0013de14d')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm 

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

2017-01-13 Thread Felix Yan
Date: Friday, January 13, 2017 @ 16:52:58
  Author: felixonmars
Revision: 207240

upgpkg: haskell-interpolatedstring-perl6 1.0.0-5

rebuild with th-expand-syns-0.4.2.0

Modified:
  haskell-interpolatedstring-perl6/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-13 16:51:15 UTC (rev 207239)
+++ PKGBUILD2017-01-13 16:52:58 UTC (rev 207240)
@@ -4,7 +4,7 @@
 _hkgname=interpolatedstring-perl6
 pkgname=haskell-interpolatedstring-perl6
 pkgver=1.0.0
-pkgrel=4
+pkgrel=5
 pkgdesc="QuasiQuoter for Perl6-style multi-line interpolated strings"
 url="https://github.com/audreyt/interpolatedstring-perl6;
 license=('custom:PublicDomain')


[arch-commits] Commit in haskell-src-meta/repos (4 files)

2017-01-13 Thread Felix Yan
Date: Friday, January 13, 2017 @ 16:51:15
  Author: felixonmars
Revision: 207239

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

Added:
  haskell-src-meta/repos/community-staging-i686/
  haskell-src-meta/repos/community-staging-i686/PKGBUILD
(from rev 207238, haskell-src-meta/trunk/PKGBUILD)
  haskell-src-meta/repos/community-staging-x86_64/
  haskell-src-meta/repos/community-staging-x86_64/PKGBUILD
(from rev 207238, haskell-src-meta/trunk/PKGBUILD)

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

Copied: haskell-src-meta/repos/community-staging-i686/PKGBUILD (from rev 
207238, haskell-src-meta/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-01-13 16:51:15 UTC (rev 207239)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=haskell-src-meta
+pkgname=haskell-src-meta
+pkgver=0.7.0.1
+pkgrel=2
+pkgdesc="Parse source to template-haskell abstract syntax"
+url="https://github.com/bmillwood/haskell-src-meta;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-src-exts" "haskell-syb" "haskell-th-orphans")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('428e5a1c90c645d4c9cb54f984721b1b21e494677d1d7d8e7206f6c0e9286a3a')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+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-src-meta/repos/community-staging-x86_64/PKGBUILD (from rev 
207238, haskell-src-meta/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-01-13 16:51:15 UTC (rev 207239)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=haskell-src-meta
+pkgname=haskell-src-meta
+pkgver=0.7.0.1
+pkgrel=2
+pkgdesc="Parse source to template-haskell abstract syntax"
+url="https://github.com/bmillwood/haskell-src-meta;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-src-exts" "haskell-syb" "haskell-th-orphans")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('428e5a1c90c645d4c9cb54f984721b1b21e494677d1d7d8e7206f6c0e9286a3a')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f 

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

2017-01-13 Thread Felix Yan
Date: Friday, January 13, 2017 @ 16:50:40
  Author: felixonmars
Revision: 207238

upgpkg: haskell-src-meta 0.7.0.1-2

rebuild with th-expand-syns-0.4.2.0

Modified:
  haskell-src-meta/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-13 16:48:27 UTC (rev 207237)
+++ PKGBUILD2017-01-13 16:50:40 UTC (rev 207238)
@@ -5,7 +5,7 @@
 _hkgname=haskell-src-meta
 pkgname=haskell-src-meta
 pkgver=0.7.0.1
-pkgrel=1
+pkgrel=2
 pkgdesc="Parse source to template-haskell abstract syntax"
 url="https://github.com/bmillwood/haskell-src-meta;
 license=("custom:BSD3")


[arch-commits] Commit in haskell-th-orphans/repos (4 files)

2017-01-13 Thread Felix Yan
Date: Friday, January 13, 2017 @ 16:48:27
  Author: felixonmars
Revision: 207237

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

Added:
  haskell-th-orphans/repos/community-staging-i686/
  haskell-th-orphans/repos/community-staging-i686/PKGBUILD
(from rev 207236, haskell-th-orphans/trunk/PKGBUILD)
  haskell-th-orphans/repos/community-staging-x86_64/
  haskell-th-orphans/repos/community-staging-x86_64/PKGBUILD
(from rev 207236, haskell-th-orphans/trunk/PKGBUILD)

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

Copied: haskell-th-orphans/repos/community-staging-i686/PKGBUILD (from rev 
207236, haskell-th-orphans/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-01-13 16:48:27 UTC (rev 207237)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=th-orphans
+pkgname=haskell-th-orphans
+pkgver=0.13.3
+pkgrel=2
+pkgdesc="Orphan instances for TH datatypes"
+url="http://github.com/ekmett/th-orphans/;
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+depends=('ghc=8.0.1' 'haskell-mtl' 'haskell-th-lift' 
'haskell-th-lift-instances'
+ 'haskell-th-reify-many')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+md5sums=('d56c8222885e82e47076a27224fd4ced')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+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-th-orphans/repos/community-staging-x86_64/PKGBUILD (from rev 
207236, haskell-th-orphans/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-01-13 16:48:27 UTC (rev 207237)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=th-orphans
+pkgname=haskell-th-orphans
+pkgver=0.13.3
+pkgrel=2
+pkgdesc="Orphan instances for TH datatypes"
+url="http://github.com/ekmett/th-orphans/;
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+depends=('ghc=8.0.1' 'haskell-mtl' 'haskell-th-lift' 
'haskell-th-lift-instances'
+ 'haskell-th-reify-many')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+md5sums=('d56c8222885e82e47076a27224fd4ced')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+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-th-orphans/trunk (PKGBUILD)

2017-01-13 Thread Felix Yan
Date: Friday, January 13, 2017 @ 16:48:00
  Author: felixonmars
Revision: 207236

upgpkg: haskell-th-orphans 0.13.3-2

rebuild with th-expand-syns-0.4.2.0

Modified:
  haskell-th-orphans/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-13 16:46:08 UTC (rev 207235)
+++ PKGBUILD2017-01-13 16:48:00 UTC (rev 207236)
@@ -4,7 +4,7 @@
 _hkgname=th-orphans
 pkgname=haskell-th-orphans
 pkgver=0.13.3
-pkgrel=1
+pkgrel=2
 pkgdesc="Orphan instances for TH datatypes"
 url="http://github.com/ekmett/th-orphans/;
 license=('custom:BSD3')
@@ -11,7 +11,7 @@
 arch=('i686' 'x86_64')
 depends=('ghc=8.0.1' 'haskell-mtl' 'haskell-th-lift' 
'haskell-th-lift-instances'
  'haskell-th-reify-many')
-source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
 md5sums=('d56c8222885e82e47076a27224fd4ced')
 
 build() {


[arch-commits] Commit in haskell-th-reify-many/repos (4 files)

2017-01-13 Thread Felix Yan
Date: Friday, January 13, 2017 @ 16:46:08
  Author: felixonmars
Revision: 207235

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

Added:
  haskell-th-reify-many/repos/community-staging-i686/
  haskell-th-reify-many/repos/community-staging-i686/PKGBUILD
(from rev 207234, haskell-th-reify-many/trunk/PKGBUILD)
  haskell-th-reify-many/repos/community-staging-x86_64/
  haskell-th-reify-many/repos/community-staging-x86_64/PKGBUILD
(from rev 207234, haskell-th-reify-many/trunk/PKGBUILD)

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

Copied: haskell-th-reify-many/repos/community-staging-i686/PKGBUILD (from rev 
207234, haskell-th-reify-many/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-01-13 16:46:08 UTC (rev 207235)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=th-reify-many
+pkgname=haskell-th-reify-many
+pkgver=0.1.6
+pkgrel=4
+pkgdesc="Recurseively reify template haskell datatype info"
+url="http://github.com/mgsloan/th-reify-many;
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+depends=('ghc=8.0.1' 'haskell-mtl' 'haskell-safe' 'haskell-th-expand-syns')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+md5sums=('edbb5233c4b189ba49e3fd5c66a6acfc')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+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-th-reify-many/repos/community-staging-x86_64/PKGBUILD (from rev 
207234, haskell-th-reify-many/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-01-13 16:46:08 UTC (rev 207235)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=th-reify-many
+pkgname=haskell-th-reify-many
+pkgver=0.1.6
+pkgrel=4
+pkgdesc="Recurseively reify template haskell datatype info"
+url="http://github.com/mgsloan/th-reify-many;
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+depends=('ghc=8.0.1' 'haskell-mtl' 'haskell-safe' 'haskell-th-expand-syns')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+md5sums=('edbb5233c4b189ba49e3fd5c66a6acfc')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+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-th-reify-many/trunk (PKGBUILD)

2017-01-13 Thread Felix Yan
Date: Friday, January 13, 2017 @ 16:45:39
  Author: felixonmars
Revision: 207234

upgpkg: haskell-th-reify-many 0.1.6-4

rebuild with th-expand-syns-0.4.2.0

Modified:
  haskell-th-reify-many/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-13 16:44:06 UTC (rev 207233)
+++ PKGBUILD2017-01-13 16:45:39 UTC (rev 207234)
@@ -4,13 +4,13 @@
 _hkgname=th-reify-many
 pkgname=haskell-th-reify-many
 pkgver=0.1.6
-pkgrel=3
+pkgrel=4
 pkgdesc="Recurseively reify template haskell datatype info"
 url="http://github.com/mgsloan/th-reify-many;
 license=('custom:BSD3')
 arch=('i686' 'x86_64')
 depends=('ghc=8.0.1' 'haskell-mtl' 'haskell-safe' 'haskell-th-expand-syns')
-source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
 md5sums=('edbb5233c4b189ba49e3fd5c66a6acfc')
 
 build() {


[arch-commits] Commit in haskell-th-expand-syns/trunk (PKGBUILD)

2017-01-13 Thread Felix Yan
Date: Friday, January 13, 2017 @ 16:43:39
  Author: felixonmars
Revision: 207232

upgpkg: haskell-th-expand-syns 0.4.2.0-1

rebuild with th-expand-syns-0.4.2.0

Modified:
  haskell-th-expand-syns/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-13 16:43:32 UTC (rev 207231)
+++ PKGBUILD2017-01-13 16:43:39 UTC (rev 207232)
@@ -3,7 +3,7 @@
 
 _hkgname=th-expand-syns
 pkgname=haskell-th-expand-syns
-pkgver=0.4.1.0
+pkgver=0.4.2.0
 pkgrel=1
 pkgdesc="Expands type synonyms in Template Haskell ASTs"
 url="https://hackage.haskell.org/package/th-expand-syns;
@@ -10,8 +10,8 @@
 license=('custom:BSD3')
 arch=('i686' 'x86_64')
 depends=('ghc=8.0.1' 'haskell-syb')
-source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
-md5sums=('56f9db4cdfe9b3d135675f485918e1c2')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+md5sums=('33b8654b97f422c6278c9175f9fb1a61')
 
 build() {
 cd "${srcdir}/${_hkgname}-${pkgver}"


[arch-commits] Commit in haskell-th-expand-syns/repos (4 files)

2017-01-13 Thread Felix Yan
Date: Friday, January 13, 2017 @ 16:44:06
  Author: felixonmars
Revision: 207233

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

Added:
  haskell-th-expand-syns/repos/community-staging-i686/
  haskell-th-expand-syns/repos/community-staging-i686/PKGBUILD
(from rev 207232, haskell-th-expand-syns/trunk/PKGBUILD)
  haskell-th-expand-syns/repos/community-staging-x86_64/
  haskell-th-expand-syns/repos/community-staging-x86_64/PKGBUILD
(from rev 207232, haskell-th-expand-syns/trunk/PKGBUILD)

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

Copied: haskell-th-expand-syns/repos/community-staging-i686/PKGBUILD (from rev 
207232, haskell-th-expand-syns/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-01-13 16:44:06 UTC (rev 207233)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=th-expand-syns
+pkgname=haskell-th-expand-syns
+pkgver=0.4.2.0
+pkgrel=1
+pkgdesc="Expands type synonyms in Template Haskell ASTs"
+url="https://hackage.haskell.org/package/th-expand-syns;
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+depends=('ghc=8.0.1' 'haskell-syb')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+md5sums=('33b8654b97f422c6278c9175f9fb1a61')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+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-th-expand-syns/repos/community-staging-x86_64/PKGBUILD (from 
rev 207232, haskell-th-expand-syns/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-01-13 16:44:06 UTC (rev 207233)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=th-expand-syns
+pkgname=haskell-th-expand-syns
+pkgver=0.4.2.0
+pkgrel=1
+pkgdesc="Expands type synonyms in Template Haskell ASTs"
+url="https://hackage.haskell.org/package/th-expand-syns;
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+depends=('ghc=8.0.1' 'haskell-syb')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+md5sums=('33b8654b97f422c6278c9175f9fb1a61')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+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 deepin-api/repos (4 files)

2017-01-13 Thread Felix Yan
Date: Friday, January 13, 2017 @ 16:42:51
  Author: felixonmars
Revision: 207229

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

Added:
  deepin-api/repos/community-testing-i686/PKGBUILD
(from rev 207228, deepin-api/trunk/PKGBUILD)
  deepin-api/repos/community-testing-x86_64/PKGBUILD
(from rev 207228, deepin-api/trunk/PKGBUILD)
Deleted:
  deepin-api/repos/community-testing-i686/PKGBUILD
  deepin-api/repos/community-testing-x86_64/PKGBUILD

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

Deleted: community-testing-i686/PKGBUILD
===
--- community-testing-i686/PKGBUILD 2017-01-13 16:42:18 UTC (rev 207228)
+++ community-testing-i686/PKGBUILD 2017-01-13 16:42:51 UTC (rev 207229)
@@ -1,60 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-api
-pkgver=3.0.10
-_golibver=0.4.11
-_dbusfactoryver=3.0.5
-_girgeneratorver=0.9.5
-pkgrel=1
-pkgdesc='Go-lang bingdings for dde-daemon'
-arch=('i686' 'x86_64')
-url="https://gitcafe.com/Deepin/dde-api;
-license=('GPL3')
-depends=('glib2' 'gdk-pixbuf2' 'gtk3' 'libcanberra-pulse' 'libxi' 'libxfixes' 
'rfkill' 'poppler-glib' 'deepin-metacity' 'xcur2png') # 'gcc-libs>=5.3.0-3')
-makedepends=('git' 'deepin-dbus-generator' 'deepin-gir-generator' 'bzr' 'go') 
# 'gcc-go')
-conflicts=('dde-api')
-replaces=('dde-api')
-groups=('deepin')
-source=("git+https://cr.deepin.io/dde/dde-api.git#tag=$pkgver;
-"git+https://cr.deepin.io/go-lib.git#tag=$_golibver;
-"git+https://cr.deepin.io/dbus-factory.git#tag=$_dbusfactoryver;
-"git+https://cr.deepin.io/go-gir-generator.git#tag=$_girgeneratorver;)
-sha256sums=('SKIP'
-'SKIP'
-'SKIP'
-'SKIP')
-
-prepare() {
-  sed -i "s|\"\${LDFLAGS}\"|\"\${LDFLAGS} $CFLAGS $LDFLAGS\"|" dde-api/Makefile
-  sed -i 's| generator$||' go-gir-generator/makefile
-
-  export GOPATH="$srcdir/build"
-  mkdir -p build/src/pkg.deepin.io/{lib,dde/api}
-  cp -a go-lib/* build/src/pkg.deepin.io/lib
-  cp -a dde-api/* build/src/pkg.deepin.io/dde/api/
-
-  cd "$srcdir/dde-api"
-  make build-dep
-  go get gopkg.in/alecthomas/kingpin.v2
-}
-
-build(){
-  cd "$srcdir/dbus-factory"
-  make install-golang
-
-  cd "$srcdir/go-gir-generator"
-  make GENERATOR=gir-generator build
-  make copyfile
-  cp -r out/src/gir "$GOPATH/src"/
-
-  cd "$srcdir/dde-api"
-  make # USE_GCCGO=1
-}
-
-package() {
-  cd dde-api
-  make DESTDIR="${pkgdir}" SYSTEMD_LIB_DIR=/usr/lib install-binary
-}

Copied: deepin-api/repos/community-testing-i686/PKGBUILD (from rev 207228, 
deepin-api/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2017-01-13 16:42:51 UTC (rev 207229)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-api
+pkgver=3.0.16
+pkgrel=1
+pkgdesc='Go-lang bingdings for dde-daemon'
+arch=('i686' 'x86_64')
+url="https://gitcafe.com/Deepin/dde-api;
+license=('GPL3')
+depends=('glib2' 'gdk-pixbuf2' 'gtk3' 'libcanberra-pulse' 'libxi' 'libxfixes' 
'rfkill' 'poppler-glib' 'deepin-metacity' 'xcur2png' 'blur-effect') # 
'gcc-libs>=5.3.0-3')
+makedepends=('git' 'deepin-dbus-factory' 'deepin-gir-generator' 
'deepin-go-lib' 'bzr' 'go') # 'gcc-go')
+conflicts=('dde-api')
+replaces=('dde-api')
+groups=('deepin')
+source=("git+https://cr.deepin.io/dde/dde-api.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+prepare() {
+  export GOPATH="$srcdir/build:/usr/share/gocode"
+  mkdir -p build/src/pkg.deepin.io/dde/api
+  cp -a dde-api/* build/src/pkg.deepin.io/dde/api/
+
+  cd "$srcdir/dde-api"
+  make build-dep
+  go get gopkg.in/alecthomas/kingpin.v2
+}
+
+build(){
+  cd "$srcdir/dde-api"
+  make # USE_GCCGO=1
+}
+
+package() {
+  cd dde-api
+  make DESTDIR="$pkgdir" SYSTEMD_LIB_DIR=/usr/lib install
+}

Deleted: community-testing-x86_64/PKGBUILD
===
--- community-testing-x86_64/PKGBUILD   2017-01-13 16:42:18 UTC (rev 207228)
+++ community-testing-x86_64/PKGBUILD   2017-01-13 16:42:51 UTC (rev 207229)
@@ -1,60 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-api
-pkgver=3.0.10
-_golibver=0.4.11
-_dbusfactoryver=3.0.5
-_girgeneratorver=0.9.5
-pkgrel=1
-pkgdesc='Go-lang bingdings for dde-daemon'
-arch=('i686' 'x86_64')

  1   2   >