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

2017-11-14 Thread Felix Yan
Date: Wednesday, November 15, 2017 @ 07:59:06
  Author: felixonmars
Revision: 266828

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-11-15 07:58:34 UTC (rev 266827)
+++ PKGBUILD2017-11-15 07:59:06 UTC (rev 266828)
@@ -1,57 +0,0 @@
-# $Id$
-# Maintainer: Angel Velasquez 
-# Maintainer: Felix Yan 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: Mario Danic 
-
-pkgbase=python-paramiko
-pkgname=(python-paramiko python2-paramiko)
-pkgver=2.3.1
-pkgrel=1
-pkgdesc="Python module that implements the SSH2 protocol"
-url="https://github.com/paramiko/paramiko/;
-license=('LGPL')
-arch=('any')
-makedepends=('python-setuptools' 'python2-setuptools' 'python-bcrypt' 
'python2-bcrypt'
- 'python-cryptography' 'python2-cryptography' 'python-pyasn1' 
'python2-pyasn1'
- 'python-pynacl' 'python2-pynacl')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/paramiko/paramiko/archive/$pkgver.tar.gz;)
-sha512sums=('b63a177f1f03937d5650d6f2a3ca4c00e0c3ffb0080e5e5a8141aab435c3ad415f5af8c61cb2894d176544b854ff26ee510eaa41081b452dfa6213cdc055')
-
-prepare() {
-  cp -a paramiko-$pkgver{,-py2}
-
-  find paramiko-$pkgver-py2 -name '*.py' -print0 | xargs -0 \
-sed -i -e 's,^#!/usr/bin/env python$,#!/usr/bin/env python2,' \
--e 's,^#!/usr/bin/python$,#!/usr/bin/python2,'
-}
-
-check() {
-  cd "$srcdir"/paramiko-$pkgver
-  LANG=en_US.UTF-8 python test.py
-
-  cd "$srcdir"/paramiko-$pkgver-py2
-  LANG=en_US.UTF-8 python2 test.py
-}
-
-package_python-paramiko() {
-  depends=('python-bcrypt' 'python-cryptography' 'python-pyasn1' 
'python-pynacl')
-
-  cd paramiko-$pkgver
-
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -dm755 "$pkgdir"/usr/share/doc/$pkgname/demos
-  install -m644 demos/* "$pkgdir"/usr/share/doc/$pkgname/demos
-  chmod 755 "$pkgdir"/usr/share/doc/$pkgname/demos/*.py
-}
-
-package_python2-paramiko() {
-  depends=('python2-bcrypt' 'python2-cryptography' 'python2-pyasn1' 
'python2-pynacl')
-
-  cd paramiko-$pkgver-py2
-
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  install -dm755 "$pkgdir"/usr/share/doc/$pkgname/demos
-  install -m644 demos/* "$pkgdir"/usr/share/doc/$pkgname/demos
-  chmod 755 "$pkgdir"/usr/share/doc/$pkgname/demos/*.py
-}

Copied: python-paramiko/repos/community-any/PKGBUILD (from rev 266827, 
python-paramiko/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-11-15 07:59:06 UTC (rev 266828)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Angel Velasquez 
+# Maintainer: Felix Yan 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: Mario Danic 
+
+pkgbase=python-paramiko
+pkgname=(python-paramiko python2-paramiko)
+pkgver=2.4.0
+pkgrel=1
+pkgdesc="Python module that implements the SSH2 protocol"
+url="https://github.com/paramiko/paramiko/;
+license=('LGPL')
+arch=('any')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-bcrypt' 
'python2-bcrypt'
+ 'python-cryptography' 'python2-cryptography' 'python-pyasn1' 
'python2-pyasn1'
+ 'python-pynacl' 'python2-pynacl')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 
'python-pytest-relaxed'
+  'python2-pytest-relaxed')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/paramiko/paramiko/archive/$pkgver.tar.gz;)
+sha512sums=('9c8deec2041c3756206b03c932be102383ad35077513f51f3d85573d4081a81c110e483375eb28b174b89c8703b38123d7e74f5b784b697ab0046dae083b9f41')
+
+prepare() {
+  cp -a paramiko-$pkgver{,-py2}
+
+  find paramiko-$pkgver-py2 -name '*.py' -print0 | xargs -0 \
+sed -i -e 's,^#!/usr/bin/env python$,#!/usr/bin/env python2,' \
+-e 's,^#!/usr/bin/python$,#!/usr/bin/python2,'
+}
+
+check() {
+  cd "$srcdir"/paramiko-$pkgver
+  LANG=en_US.UTF-8 python setup.py pytest
+
+  cd "$srcdir"/paramiko-$pkgver-py2
+  LANG=en_US.UTF-8 python2 setup.py pytest
+}
+
+package_python-paramiko() {
+  depends=('python-bcrypt' 'python-cryptography' 'python-pyasn1' 
'python-pynacl')
+
+  cd paramiko-$pkgver
+
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -dm755 "$pkgdir"/usr/share/doc/$pkgname/demos
+  install -m644 demos/* "$pkgdir"/usr/share/doc/$pkgname/demos
+  chmod 755 "$pkgdir"/usr/share/doc/$pkgname/demos/*.py
+}
+
+package_python2-paramiko() {
+  depends=('python2-bcrypt' 'python2-cryptography' 

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

2017-11-14 Thread Felix Yan
Date: Wednesday, November 15, 2017 @ 07:58:34
  Author: felixonmars
Revision: 266827

upgpkg: python-paramiko 2.4.0-1

Modified:
  python-paramiko/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-15 07:52:39 UTC (rev 266826)
+++ PKGBUILD2017-11-15 07:58:34 UTC (rev 266827)
@@ -6,7 +6,7 @@
 
 pkgbase=python-paramiko
 pkgname=(python-paramiko python2-paramiko)
-pkgver=2.3.1
+pkgver=2.4.0
 pkgrel=1
 pkgdesc="Python module that implements the SSH2 protocol"
 url="https://github.com/paramiko/paramiko/;
@@ -15,8 +15,10 @@
 makedepends=('python-setuptools' 'python2-setuptools' 'python-bcrypt' 
'python2-bcrypt'
  'python-cryptography' 'python2-cryptography' 'python-pyasn1' 
'python2-pyasn1'
  'python-pynacl' 'python2-pynacl')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 
'python-pytest-relaxed'
+  'python2-pytest-relaxed')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/paramiko/paramiko/archive/$pkgver.tar.gz;)
-sha512sums=('b63a177f1f03937d5650d6f2a3ca4c00e0c3ffb0080e5e5a8141aab435c3ad415f5af8c61cb2894d176544b854ff26ee510eaa41081b452dfa6213cdc055')
+sha512sums=('9c8deec2041c3756206b03c932be102383ad35077513f51f3d85573d4081a81c110e483375eb28b174b89c8703b38123d7e74f5b784b697ab0046dae083b9f41')
 
 prepare() {
   cp -a paramiko-$pkgver{,-py2}
@@ -28,10 +30,10 @@
 
 check() {
   cd "$srcdir"/paramiko-$pkgver
-  LANG=en_US.UTF-8 python test.py
+  LANG=en_US.UTF-8 python setup.py pytest
 
   cd "$srcdir"/paramiko-$pkgver-py2
-  LANG=en_US.UTF-8 python2 test.py
+  LANG=en_US.UTF-8 python2 setup.py pytest
 }
 
 package_python-paramiko() {


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

2017-11-14 Thread Felix Yan
Date: Wednesday, November 15, 2017 @ 07:52:39
  Author: felixonmars
Revision: 266826

archrelease: copy trunk to community-any

Added:
  python-pytest-relaxed/repos/community-any/
  python-pytest-relaxed/repos/community-any/PKGBUILD
(from rev 266825, python-pytest-relaxed/trunk/PKGBUILD)

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

Copied: python-pytest-relaxed/repos/community-any/PKGBUILD (from rev 266825, 
python-pytest-relaxed/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2017-11-15 07:52:39 UTC (rev 266826)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-pytest-relaxed
+pkgname=('python-pytest-relaxed' 'python2-pytest-relaxed')
+pkgver=1.0.0
+pkgrel=1
+pkgdesc='Relaxed test discovery for pytest'
+arch=('any')
+license=('BSD')
+url='http://github.com/bitprophet/pytest-relaxed'
+makedepends=('python-pytest' 'python2-pytest' 'python-decorator' 
'python2-decorator'
+ 'python-six' 'python2-six')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/bitprophet/pytest-relaxed/archive/$pkgver.tar.gz;)
+md5sums=('f4d62f224e6b2af375fe829f15123d85')
+
+prepare() {
+  cp -a pytest-relaxed-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/pytest-relaxed-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/pytest-relaxed-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  # Hack entry points by installing it
+
+  cd "$srcdir"/pytest-relaxed-$pkgver
+  python setup.py install --root="$PWD/tmp_install" --optimize=1
+  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.6/site-packages:$PYTHONPATH" 
py.test
+
+  cd "$srcdir"/pytest-relaxed-$pkgver-py2
+  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
+  PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH" 
py.test2
+}
+
+package_python-pytest-relaxed() {
+  depends=('python-pytest' 'python-decorator' 'python-six')
+
+  cd pytest-relaxed-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-pytest-relaxed() {
+  depends=('python2-pytest' 'python2-decorator' 'python2-six')
+
+  cd pytest-relaxed-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in (4 files)

2017-11-14 Thread Felix Yan
Date: Wednesday, November 15, 2017 @ 07:52:16
  Author: felixonmars
Revision: 266825

addpkg: python-pytest-relaxed 1.0.0-1

Added:
  python-pytest-relaxed/
  python-pytest-relaxed/repos/
  python-pytest-relaxed/trunk/
  python-pytest-relaxed/trunk/PKGBUILD

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

Added: python-pytest-relaxed/trunk/PKGBUILD
===
--- python-pytest-relaxed/trunk/PKGBUILD(rev 0)
+++ python-pytest-relaxed/trunk/PKGBUILD2017-11-15 07:52:16 UTC (rev 
266825)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-pytest-relaxed
+pkgname=('python-pytest-relaxed' 'python2-pytest-relaxed')
+pkgver=1.0.0
+pkgrel=1
+pkgdesc='Relaxed test discovery for pytest'
+arch=('any')
+license=('BSD')
+url='http://github.com/bitprophet/pytest-relaxed'
+makedepends=('python-pytest' 'python2-pytest' 'python-decorator' 
'python2-decorator'
+ 'python-six' 'python2-six')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/bitprophet/pytest-relaxed/archive/$pkgver.tar.gz;)
+md5sums=('f4d62f224e6b2af375fe829f15123d85')
+
+prepare() {
+  cp -a pytest-relaxed-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/pytest-relaxed-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/pytest-relaxed-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  # Hack entry points by installing it
+
+  cd "$srcdir"/pytest-relaxed-$pkgver
+  python setup.py install --root="$PWD/tmp_install" --optimize=1
+  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.6/site-packages:$PYTHONPATH" 
py.test
+
+  cd "$srcdir"/pytest-relaxed-$pkgver-py2
+  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
+  PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH" 
py.test2
+}
+
+package_python-pytest-relaxed() {
+  depends=('python-pytest' 'python-decorator' 'python-six')
+
+  cd pytest-relaxed-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-pytest-relaxed() {
+  depends=('python2-pytest' 'python2-decorator' 'python2-six')
+
+  cd pytest-relaxed-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


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


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

2017-11-14 Thread Felix Yan
Date: Wednesday, November 15, 2017 @ 07:37:17
  Author: felixonmars
Revision: 266823

upgpkg: python-oslotest 3.0.0-1

Modified:
  python-oslotest/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-15 07:36:02 UTC (rev 266822)
+++ PKGBUILD2017-11-15 07:37:17 UTC (rev 266823)
@@ -3,7 +3,7 @@
 
 pkgbase=python-oslotest
 pkgname=(python-oslotest python2-oslotest)
-pkgver=2.18.1
+pkgver=3.0.0
 pkgrel=1
 pkgdesc="Oslo test framework"
 arch=('any')
@@ -16,7 +16,7 @@
  'python2-mox3' 'python-os-client-config' 
'python2-os-client-config'
  'python-debtcollector' 'python2-debtcollector')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/openstack/oslotest/archive/$pkgver.tar.gz;)
-sha512sums=('374891e8ff664b9daad859f1dc5b0ff54038a4b32f2e31b210d8196f0a5b50ff489ab645e5a63ea0c9148595f0143ec738b44cbd0b88324c8cf7b236fba00c46')
+sha512sums=('f3b92be0bed21715a6afeefd767088ecffba535a381d261eee51059011ea0d65ebe48088f47cebd29f004487cf7124b2b3bcc13a8b8bd20b2bd83c0473df943e')
 
 prepare() {
   cp -a oslotest-$pkgver{,-py2}


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

2017-11-14 Thread Felix Yan
Date: Wednesday, November 15, 2017 @ 07:37:42
  Author: felixonmars
Revision: 266824

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-11-15 07:37:17 UTC (rev 266823)
+++ PKGBUILD2017-11-15 07:37:42 UTC (rev 266824)
@@ -1,65 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgbase=python-oslotest
-pkgname=(python-oslotest python2-oslotest)
-pkgver=2.18.1
-pkgrel=1
-pkgdesc="Oslo test framework"
-arch=('any')
-url="https://github.com/openstack/oslotest;
-license=('Apache')
-makedepends=('python-setuptools' 'python2-setuptools' 'python-pbr' 
'python2-pbr' 'python-fixtures'
- 'python2-fixtures' 'python-subunit' 'python2-subunit' 
'python-testrepository'
- 'python2-testrepository' 'python-testscenarios' 
'python2-testscenarios'
- 'python-testtools' 'python2-testtools' 'python-mock' 
'python2-mock' 'python-mox3'
- 'python2-mox3' 'python-os-client-config' 
'python2-os-client-config'
- 'python-debtcollector' 'python2-debtcollector')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/openstack/oslotest/archive/$pkgver.tar.gz;)
-sha512sums=('374891e8ff664b9daad859f1dc5b0ff54038a4b32f2e31b210d8196f0a5b50ff489ab645e5a63ea0c9148595f0143ec738b44cbd0b88324c8cf7b236fba00c46')
-
-prepare() {
-  cp -a oslotest-$pkgver{,-py2}
-
-  export PBR_VERSION=$pkgver
-}
-
-build() {
-  cd "$srcdir"/oslotest-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/oslotest-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/oslotest-$pkgver
-  python setup.py testr
-
-  cd "$srcdir"/oslotest-$pkgver-py2
-  PYTHON=python2 python2 setup.py testr
-}
-
-package_python-oslotest() {
-  depends=('python-fixtures' 'python-subunit' 'python-testrepository' 
'python-testscenarios'
-   'python-testtools' 'python-mock' 'python-mox3' 
'python-os-client-config'
-   'python-debtcollector')
-
-  cd "$srcdir"/oslotest-$pkgver
-  python setup.py install --root="$pkgdir/" --optimize=1
-}
-
-package_python2-oslotest() {
-  depends=('python2-fixtures' 'python2-subunit' 'python2-testrepository' 
'python2-testscenarios'
-   'python2-testtools' 'python2-mock' 'python2-mox3' 
'python2-os-client-config'
-   'python2-debtcollector')
-
-  cd "$srcdir"/oslotest-$pkgver-py2
-  python2 setup.py install --root="$pkgdir/" --optimize=1
-
-  for _exe in "$pkgdir"/usr/bin/*; do
-mv "$_exe"{,2}
-  done
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-oslotest/repos/community-any/PKGBUILD (from rev 266823, 
python-oslotest/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-11-15 07:37:42 UTC (rev 266824)
@@ -0,0 +1,65 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-oslotest
+pkgname=(python-oslotest python2-oslotest)
+pkgver=3.0.0
+pkgrel=1
+pkgdesc="Oslo test framework"
+arch=('any')
+url="https://github.com/openstack/oslotest;
+license=('Apache')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-pbr' 
'python2-pbr' 'python-fixtures'
+ 'python2-fixtures' 'python-subunit' 'python2-subunit' 
'python-testrepository'
+ 'python2-testrepository' 'python-testscenarios' 
'python2-testscenarios'
+ 'python-testtools' 'python2-testtools' 'python-mock' 
'python2-mock' 'python-mox3'
+ 'python2-mox3' 'python-os-client-config' 
'python2-os-client-config'
+ 'python-debtcollector' 'python2-debtcollector')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/openstack/oslotest/archive/$pkgver.tar.gz;)
+sha512sums=('f3b92be0bed21715a6afeefd767088ecffba535a381d261eee51059011ea0d65ebe48088f47cebd29f004487cf7124b2b3bcc13a8b8bd20b2bd83c0473df943e')
+
+prepare() {
+  cp -a oslotest-$pkgver{,-py2}
+
+  export PBR_VERSION=$pkgver
+}
+
+build() {
+  cd "$srcdir"/oslotest-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/oslotest-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/oslotest-$pkgver
+  python setup.py testr
+
+  cd "$srcdir"/oslotest-$pkgver-py2
+  PYTHON=python2 python2 setup.py testr
+}
+
+package_python-oslotest() {
+  depends=('python-fixtures' 'python-subunit' 'python-testrepository' 
'python-testscenarios'
+   'python-testtools' 'python-mock' 'python-mox3' 
'python-os-client-config'
+   'python-debtcollector')
+
+  cd "$srcdir"/oslotest-$pkgver
+  python setup.py install --root="$pkgdir/" --optimize=1
+}
+
+package_python2-oslotest() {
+  depends=('python2-fixtures' 'python2-subunit' 

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

2017-11-14 Thread Felix Yan
Date: Wednesday, November 15, 2017 @ 07:35:27
  Author: felixonmars
Revision: 266821

archrelease: copy trunk to community-staging-x86_64

Added:
  hlint/repos/community-staging-x86_64/
  hlint/repos/community-staging-x86_64/PKGBUILD
(from rev 266820, hlint/trunk/PKGBUILD)

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

Copied: hlint/repos/community-staging-x86_64/PKGBUILD (from rev 266820, 
hlint/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-11-15 07:35:27 UTC (rev 266821)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hlint
+pkgver=2.0.10
+pkgrel=1
+pkgdesc="Source code suggestions"
+url="http://community.haskell.org/~ndm/hlint/;
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-ansi-terminal' 'haskell-cmdargs' 
'haskell-cpphs'
+ 'haskell-data-default' 'haskell-extra' 'haskell-hscolour' 
'haskell-refact'
+ 'haskell-src-exts' 'haskell-src-exts-util' 'haskell-text' 
'haskell-uniplate'
+ 'haskell-unordered-containers' 'haskell-vector' 'haskell-yaml')
+conflicts=('haskell-hlint')
+replaces=('haskell-hlint')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('f5fd59041bef8f5dd087e4f4b9a393c015266cae4543c3eaedafbf67f883bf6fcda32c75afdf07339ddb2dffac3cb36b74bc3fb7fa09f22aa2be7caea7a8c5c2')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fgpl -fthreaded
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/COPYING.BSD3"
+}


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

2017-11-14 Thread Felix Yan
Date: Wednesday, November 15, 2017 @ 07:35:06
  Author: felixonmars
Revision: 266820

upgpkg: hlint 2.0.10-1

rebuild with hlint,2.0.10

Modified:
  hlint/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-15 07:29:22 UTC (rev 266819)
+++ PKGBUILD2017-11-15 07:35:06 UTC (rev 266820)
@@ -3,23 +3,24 @@
 # Contributor: Arch Haskell Team 
 
 pkgname=hlint
-pkgver=2.0.9
-pkgrel=24
+pkgver=2.0.10
+pkgrel=1
 pkgdesc="Source code suggestions"
 url="http://community.haskell.org/~ndm/hlint/;
 license=("custom:BSD3")
-arch=('i686' 'x86_64')
-depends=('ghc-libs' "haskell-ansi-terminal" "haskell-cmdargs" "haskell-cpphs" 
"haskell-extra"
- "haskell-src-exts" "haskell-hscolour" "haskell-uniplate" 
"haskell-refact" "haskell-text"
- "haskell-unordered-containers" "haskell-vector" "haskell-yaml")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-ansi-terminal' 'haskell-cmdargs' 
'haskell-cpphs'
+ 'haskell-data-default' 'haskell-extra' 'haskell-hscolour' 
'haskell-refact'
+ 'haskell-src-exts' 'haskell-src-exts-util' 'haskell-text' 
'haskell-uniplate'
+ 'haskell-unordered-containers' 'haskell-vector' 'haskell-yaml')
 conflicts=('haskell-hlint')
 replaces=('haskell-hlint')
 makedepends=('ghc')
 
source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('f2082eec31b73c2c1b1f7ce246b15178d00c8e6f9840619fc11c545cde4120713c274236c85993e217c17886cd824276cf2738c32aeaf67af9c8b4c147c09cf7')
+sha512sums=('f5fd59041bef8f5dd087e4f4b9a393c015266cae4543c3eaedafbf67f883bf6fcda32c75afdf07339ddb2dffac3cb36b74bc3fb7fa09f22aa2be7caea7a8c5c2')
 
 build() {
-cd "${srcdir}/${pkgname}-${pkgver}"
+cd "${srcdir}/${pkgname}-${pkgver}"
 runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
 --prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" \
 --dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \


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

2017-11-14 Thread Felix Yan
Date: Wednesday, November 15, 2017 @ 07:31:38
  Author: felixonmars
Revision: 309998

archrelease: copy trunk to extra-any

Added:
  python-setuptools/repos/extra-any/PKGBUILD
(from rev 309997, python-setuptools/trunk/PKGBUILD)
Deleted:
  python-setuptools/repos/extra-any/PKGBUILD

--+
 PKGBUILD |  194 ++---
 1 file changed, 97 insertions(+), 97 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-11-15 07:31:14 UTC (rev 309997)
+++ PKGBUILD2017-11-15 07:31:38 UTC (rev 309998)
@@ -1,97 +0,0 @@
-# $Id$
-# Maintainer: Angel Velasquez 
-# Maintainer: Felix Yan 
-
-pkgbase=python-setuptools
-pkgname=('python-setuptools' 'python2-setuptools')
-pkgver=36.7.1
-pkgrel=1
-epoch=1
-pkgdesc="Easily download, build, install, upgrade, and uninstall Python 
packages"
-arch=('any')
-license=('PSF')
-url="http://pypi.python.org/pypi/setuptools;
-makedepends=('python-packaging' 'python2-packaging' 'python-appdirs' 
'python2-appdirs' 'python-pip'
- 'python2-pip')
-checkdepends=('python-pytest-runner' 'python2-pytest-runner' 
'python-pytest-flake8'
-  'python2-pytest-flake8' 'python-mock' 'python2-mock' 
'python-pytest-fixture-config'
-  'python2-pytest-fixture-config' 'python-pytest-virtualenv' 
'python2-pytest-virtualenv'
-  'python-wheel' 'python2-wheel' 'git')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/pypa/setuptools/archive/v$pkgver.tar.gz;)
-sha512sums=('a3ed46e29793304b2fafc43d2a50161cb5544a53aec6c111abf3a92c802954a6e1d92b9537ba76226457ac0a8acf2d500c03dcfc9e93a7cb6ce204183922ab26')
-
-prepare() {
-  # Don't download and install deps
-  sed -i '/pip.main(args)/d' setuptools-$pkgver/bootstrap.py
-
-  rm -r setuptools-$pkgver/pkg_resources/_vendor
-
-  # Remove post-release tag since we are using stable tags
-  sed -e '/tag_build = .post/d' \
-  -e '/tag_date = 1/d' \
-  -i setuptools-$pkgver/setup.cfg
-
-  # 'Clean' installation is expected to fail since we removed bundled packages
-  sed -i '/^def test_clean_env_install/i import 
pytest\n\n...@pytest.mark.xfail' 
setuptools-$pkgver/setuptools/tests/test_virtualenv.py
-
-  # Tests failed. Importing an unbundled new setuptools in a virtualenv does 
not work, but this won't
-  # affect normal virtualenv usage (which don't have to import the unbundled 
setuptools in *current*
-  # dir.
-  sed -e '/^def test_pip_upgrade_from_source/i @pytest.mark.xfail' \
-  -e '/^def test_test_command_install_requirements/i @pytest.mark.xfail' \
-  -i setuptools-$pkgver/setuptools/tests/test_virtualenv.py
-
-  cp -a setuptools-$pkgver{,-py2}
-
-  cd "$srcdir"/setuptools-$pkgver
-  sed -i -e "s|^#\!.*/usr/bin/env python|#!/usr/bin/env python3|" 
setuptools/command/easy_install.py
-
-  cd "$srcdir"/setuptools-$pkgver-py2
-  sed -i -e "s|^#\!.*/usr/bin/env python|#!/usr/bin/env python2|" 
setuptools/command/easy_install.py
-  sed -i -e "s|'pip'|'pip2'|" 
setuptools/tests/{test_develop.py,test_namespaces.py}
-
-  export SETUPTOOLS_INSTALL_WINDOWS_SPECIFIC_FILES=0
-}
-
-build() {
-  cd "$srcdir"/setuptools-$pkgver
-  python bootstrap.py
-  python setup.py build
-
-  cd "$srcdir"/setuptools-$pkgver-py2
-  python2 bootstrap.py
-  python2 setup.py build
-}
-
-check() { (
-  # Workaround UTF-8 tests by setting LC_CTYPE
-  export LC_CTYPE=en_US.UTF-8
-
-  # https://github.com/pypa/setuptools/pull/810
-  export PYTHONDONTWRITEBYTECODE=1
-
-  cd "$srcdir"/setuptools-$pkgver
-  python setup.py pytest
-
-  cd "$srcdir"/setuptools-$pkgver-py2
-  python2 setup.py pytest
-)}
-
-package_python-setuptools() {
-  depends=('python-packaging' 'python-appdirs')
-  provides=('python-distribute')
-  replaces=('python-distribute')
-
-  cd "$srcdir"/setuptools-$pkgver
-  python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1 
--skip-build
-}
-
-package_python2-setuptools() {
-  depends=('python2-packaging' 'python2-appdirs')
-  provides=('python2-distribute')
-  replaces=('python2-distribute')
-
-  cd "$srcdir"/setuptools-$pkgver-py2
-  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=1 
--skip-build
-  rm "$pkgdir"/usr/bin/easy_install
-}

Copied: python-setuptools/repos/extra-any/PKGBUILD (from rev 309997, 
python-setuptools/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-11-15 07:31:38 UTC (rev 309998)
@@ -0,0 +1,97 @@
+# $Id$
+# Maintainer: Angel Velasquez 
+# Maintainer: Felix Yan 
+
+pkgbase=python-setuptools
+pkgname=('python-setuptools' 'python2-setuptools')
+pkgver=36.7.2
+pkgrel=1
+epoch=1
+pkgdesc="Easily download, build, install, upgrade, and uninstall Python 
packages"
+arch=('any')
+license=('PSF')
+url="http://pypi.python.org/pypi/setuptools;

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

2017-11-14 Thread Felix Yan
Date: Wednesday, November 15, 2017 @ 07:31:14
  Author: felixonmars
Revision: 309997

upgpkg: python-setuptools 1:36.7.2-1

Modified:
  python-setuptools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-15 07:31:09 UTC (rev 309996)
+++ PKGBUILD2017-11-15 07:31:14 UTC (rev 309997)
@@ -4,7 +4,7 @@
 
 pkgbase=python-setuptools
 pkgname=('python-setuptools' 'python2-setuptools')
-pkgver=36.7.1
+pkgver=36.7.2
 pkgrel=1
 epoch=1
 pkgdesc="Easily download, build, install, upgrade, and uninstall Python 
packages"
@@ -18,7 +18,7 @@
   'python2-pytest-fixture-config' 'python-pytest-virtualenv' 
'python2-pytest-virtualenv'
   'python-wheel' 'python2-wheel' 'git')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/pypa/setuptools/archive/v$pkgver.tar.gz;)
-sha512sums=('a3ed46e29793304b2fafc43d2a50161cb5544a53aec6c111abf3a92c802954a6e1d92b9537ba76226457ac0a8acf2d500c03dcfc9e93a7cb6ce204183922ab26')
+sha512sums=('bff699cf437a645e9d9973741d57484b1da28a13ced7c827157cf2f811242017023ad57813e70db8045470695d1025e19b16104123bdf827c20f1a90d69260b9')
 
 prepare() {
   # Don't download and install deps


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

2017-11-14 Thread Felix Yan
Date: Wednesday, November 15, 2017 @ 07:29:22
  Author: felixonmars
Revision: 266819

archrelease: copy trunk to community-x86_64

Added:
  haskell-gauge/repos/community-x86_64/
  haskell-gauge/repos/community-x86_64/PKGBUILD
(from rev 266818, haskell-gauge/trunk/PKGBUILD)

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

Copied: haskell-gauge/repos/community-x86_64/PKGBUILD (from rev 266818, 
haskell-gauge/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-11-15 07:29:22 UTC (rev 266819)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=gauge
+pkgname=haskell-gauge
+pkgver=0.1.3
+pkgrel=1
+pkgdesc="Small framework for performance measurement and analysis"
+url="https://github.com/vincenthz/hs-gauge;
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-basement' 'haskell-code-page' 
'haskell-mwc-random' 'haskell-vector'
+ 'haskell-math-functions')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('ae72fefea78bd380f89d6da34cb91c0cf8446c0057ae8c4aecd2b64e07fff9d46b8c07ada313d5e4ff02937139abcc63c1ed3a14576ea45ec0773413cd1edea9')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


[arch-commits] Commit in (4 files)

2017-11-14 Thread Felix Yan
Date: Wednesday, November 15, 2017 @ 07:29:00
  Author: felixonmars
Revision: 266818

addpkg: haskell-gauge 0.1.3-1

Added:
  haskell-gauge/
  haskell-gauge/repos/
  haskell-gauge/trunk/
  haskell-gauge/trunk/PKGBUILD

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

Added: haskell-gauge/trunk/PKGBUILD
===
--- haskell-gauge/trunk/PKGBUILD(rev 0)
+++ haskell-gauge/trunk/PKGBUILD2017-11-15 07:29:00 UTC (rev 266818)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=gauge
+pkgname=haskell-gauge
+pkgver=0.1.3
+pkgrel=1
+pkgdesc="Small framework for performance measurement and analysis"
+url="https://github.com/vincenthz/hs-gauge;
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-basement' 'haskell-code-page' 
'haskell-mwc-random' 'haskell-vector'
+ 'haskell-math-functions')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('ae72fefea78bd380f89d6da34cb91c0cf8446c0057ae8c4aecd2b64e07fff9d46b8c07ada313d5e4ff02937139abcc63c1ed3a14576ea45ec0773413cd1edea9')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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


[arch-commits] Commit in haskell-src-exts-util/repos (2 files)

2017-11-14 Thread Felix Yan
Date: Wednesday, November 15, 2017 @ 07:24:17
  Author: felixonmars
Revision: 266817

archrelease: copy trunk to community-x86_64

Added:
  haskell-src-exts-util/repos/community-x86_64/
  haskell-src-exts-util/repos/community-x86_64/PKGBUILD
(from rev 266816, haskell-src-exts-util/trunk/PKGBUILD)

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

Copied: haskell-src-exts-util/repos/community-x86_64/PKGBUILD (from rev 266816, 
haskell-src-exts-util/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-11-15 07:24:17 UTC (rev 266817)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=haskell-src-exts-util
+pkgname=haskell-src-exts-util
+pkgver=0.2.1.2
+pkgrel=1
+pkgdesc="Helper functions for working with haskell-src-exts trees"
+url="https://github.com/pepeiborra/haskell-src-exts-util;
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-data-default' 'haskell-src-exts' 
'haskell-uniplate')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('0a78154c24a078d50cf2f25a0a46fb0ad80537eadf2077d022c4b5282941e330b62675a37c04d1a250d82d369eecd5df868c51fa582042eeb225ea8ca50fea53')
+
+prepare() {
+# Remove in next version
+echo -e "import Distribution.Simple\nmain = defaultMain" > 
${_hkgname}-${pkgver}/Setup.hs
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


[arch-commits] Commit in (4 files)

2017-11-14 Thread Felix Yan
Date: Wednesday, November 15, 2017 @ 07:23:55
  Author: felixonmars
Revision: 266816

addpkg: haskell-src-exts-util 0.2.1.2-1

Added:
  haskell-src-exts-util/
  haskell-src-exts-util/repos/
  haskell-src-exts-util/trunk/
  haskell-src-exts-util/trunk/PKGBUILD

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

Added: haskell-src-exts-util/trunk/PKGBUILD
===
--- haskell-src-exts-util/trunk/PKGBUILD(rev 0)
+++ haskell-src-exts-util/trunk/PKGBUILD2017-11-15 07:23:55 UTC (rev 
266816)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=haskell-src-exts-util
+pkgname=haskell-src-exts-util
+pkgver=0.2.1.2
+pkgrel=1
+pkgdesc="Helper functions for working with haskell-src-exts trees"
+url="https://github.com/pepeiborra/haskell-src-exts-util;
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-data-default' 'haskell-src-exts' 
'haskell-uniplate')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('0a78154c24a078d50cf2f25a0a46fb0ad80537eadf2077d022c4b5282941e330b62675a37c04d1a250d82d369eecd5df868c51fa582042eeb225ea8ca50fea53')
+
+prepare() {
+# Remove in next version
+echo -e "import Distribution.Simple\nmain = defaultMain" > 
${_hkgname}-${pkgver}/Setup.hs
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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


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

2017-11-14 Thread Antonio Rojas
Date: Wednesday, November 15, 2017 @ 07:20:16
  Author: arojas
Revision: 309993

archrelease: copy trunk to testing-x86_64

Added:
  lapack/repos/testing-x86_64/
  lapack/repos/testing-x86_64/LICENSE.blas
(from rev 309992, lapack/trunk/LICENSE.blas)
  lapack/repos/testing-x86_64/PKGBUILD
(from rev 309992, lapack/trunk/PKGBUILD)

--+
 LICENSE.blas |   19 
 PKGBUILD |   86 +
 2 files changed, 105 insertions(+)

Copied: lapack/repos/testing-x86_64/LICENSE.blas (from rev 309992, 
lapack/trunk/LICENSE.blas)
===
--- testing-x86_64/LICENSE.blas (rev 0)
+++ testing-x86_64/LICENSE.blas 2017-11-15 07:20:16 UTC (rev 309993)
@@ -0,0 +1,19 @@
+From: http://www.netlib.org/blas/faq.html
+
+ 2) Are there legal restrictions on the use of BLAS reference
+implementation software? 
+
+The reference BLAS is a freely-available software package. It is
+available from netlib via anonymous ftp and the World Wide Web. Thus,
+it can be included in commercial software packages (and has been). We
+only ask that proper credit be given to the authors. 
+
+Like all software, it is copyrighted. It is not trademarked, but we do
+ask the following: 
+
+If you modify the source for these routines we ask that you change the
+name of the routine and comment the changes made to the original. 
+
+We will gladly answer any questions regarding the software. If a
+modification is done, however, it is the responsibility of the person
+who modified the routine to provide support. 

Copied: lapack/repos/testing-x86_64/PKGBUILD (from rev 309992, 
lapack/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2017-11-15 07:20:16 UTC (rev 309993)
@@ -0,0 +1,86 @@
+# $Id$
+# Maintainer: Ronald van Haren 
+# Contributor: Jan de Groot 
+# Contributor: damir 
+# Contributor: Jason Taylor 
+
+pkgbase=lapack
+pkgname=('lapack' 'blas' 'cblas' 'lapacke' 'lapack-doc')
+pkgver=3.8.0
+pkgrel=1
+url="http://www.netlib.org/lapack;
+pkgdesc="Linear Algebra PACKage"
+makedepends=('gcc-fortran' 'cmake' 'python' 'doxygen')
+arch=('i686' 'x86_64')
+license=("custom")
+source=(http://www.netlib.org/${pkgbase}/${pkgbase}-${pkgver}.tar.gz 
LICENSE.blas)
+sha1sums=('55ac9d6be510883c5442c8aca967722cdf58fb29'
+  '2491a151a37f0162b25fc4e4e9a8ac444b574a76')
+
+build() {
+  install -d build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_SKIP_RPATH=ON \
+-DBUILD_SHARED_LIBS=ON \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DCMAKE_Fortran_COMPILER=gfortran \
+-DLAPACKE_WITH_TMG=ON \
+-DCBLAS=ON \
+-DBUILD_DEPRECATED=ON
+  make
+
+# Build man pages
+  cd ../$pkgname-$pkgver
+  doxygen DOCS/Doxyfile_man
+}
+
+package_lapack() {
+  depends=("blas")
+  
+  cd build
+  make DESTDIR="$pkgdir" install
+
+  rm -r "$pkgdir"/usr/lib/{libblas.*,libcblas.*,liblapacke.*}
+  rm -r "$pkgdir"/usr/lib/pkgconfig/{blas.*,cblas.*,lapacke.*}
+  rm -r "$pkgdir"/usr/lib/cmake/{cblas*,lapacke*}
+  rm -r "$pkgdir"/usr/include
+}
+
+package_blas() {
+  pkgdesc="Basic Linear Algebra Subprograms"
+  depends=('gcc-libs')
+
+  cd build/BLAS
+  make DESTDIR="$pkgdir" install
+  
+  install -m755 -d "${pkgdir}/usr/share/licenses/blas"
+  install -m644 "${srcdir}/LICENSE.blas" \
+"${pkgdir}/usr/share/licenses/blas/"
+}
+
+package_cblas() {
+  pkgdesc="C interface to BLAS"
+  depends=("blas")
+
+  cd build/CBLAS
+  make DESTDIR="$pkgdir" install
+}
+
+package_lapacke() {
+  pkgdesc="C interface to LAPACK"
+  depends=("lapack")
+
+  cd build/LAPACKE
+  make DESTDIR="$pkgdir" install
+}
+
+package_lapack-doc() {
+  pkgdesc="Man pages for BLAS/LAPACK"
+
+  mkdir -p "$pkgdir"/usr/share
+  cp -r lapack-$pkgver/DOCS/man "$pkgdir"/usr/share
+}


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

2017-11-14 Thread Antonio Rojas
Date: Wednesday, November 15, 2017 @ 07:19:43
  Author: arojas
Revision: 309992

Update to 3.8.0

Modified:
  lapack/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-15 07:08:34 UTC (rev 309991)
+++ PKGBUILD2017-11-15 07:19:43 UTC (rev 309992)
@@ -6,15 +6,15 @@
 
 pkgbase=lapack
 pkgname=('lapack' 'blas' 'cblas' 'lapacke' 'lapack-doc')
-pkgver=3.7.1
-pkgrel=2
+pkgver=3.8.0
+pkgrel=1
 url="http://www.netlib.org/lapack;
 pkgdesc="Linear Algebra PACKage"
 makedepends=('gcc-fortran' 'cmake' 'python' 'doxygen')
 arch=('i686' 'x86_64')
 license=("custom")
-source=(http://www.netlib.org/${pkgbase}/${pkgbase}-${pkgver}.tgz LICENSE.blas)
-sha1sums=('84c4f7163b52b1bf1f6ca2193f6f48ed3dec0fab'
+source=(http://www.netlib.org/${pkgbase}/${pkgbase}-${pkgver}.tar.gz 
LICENSE.blas)
+sha1sums=('55ac9d6be510883c5442c8aca967722cdf58fb29'
   '2491a151a37f0162b25fc4e4e9a8ac444b574a76')
 
 build() {


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

2017-11-14 Thread Antonio Rojas
Date: Wednesday, November 15, 2017 @ 07:08:34
  Author: arojas
Revision: 309991

archrelease: copy trunk to extra-x86_64

Added:
  konversation/repos/extra-x86_64/PKGBUILD
(from rev 309990, konversation/trunk/PKGBUILD)
Deleted:
  konversation/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-11-15 07:07:47 UTC (rev 309990)
+++ PKGBUILD2017-11-15 07:08:34 UTC (rev 309991)
@@ -1,41 +0,0 @@
-# $Id: PKGBUILD 225717 2014-11-07 02:03:06Z foutrelis $
-# Maintainer: Antonio Rojas 
-# Contributor: Tom Gundersen 
-# Contributor: Stéphane Gaudreault 
-# Contributor: Andrea Scarpino 
-# Contributor: James Rayner 
-# Contributor: Sergio Jovani Guzman 
-
-pkgname=konversation
-pkgver=1.7.3
-pkgrel=1
-pkgdesc="A user-friendly and fully-featured IRC client"
-arch=(i686 x86_64)
-url="http://konversation.kde.org;
-depends=(knotifyconfig kemoticons kparts kidletime qca-qt5 hicolor-icon-theme)
-optdepends=('python: python scripting support' 'keditbookmarks: for managing 
bookmarks')
-makedepends=(extra-cmake-modules kdoctools python)
-license=(GPL2 FDL)
-source=("http://download.kde.org/stable/$pkgname/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('5e6bf0afc682aad870b6258b20001c1f119c0784946dd4265b8554678563dcd8'
-'SKIP')
-validpgpkeys=(DA6B31C4B98A877DBB2EF9A292220328C632316E) # Eike Hein 

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

Copied: konversation/repos/extra-x86_64/PKGBUILD (from rev 309990, 
konversation/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-11-15 07:08:34 UTC (rev 309991)
@@ -0,0 +1,41 @@
+# $Id: PKGBUILD 225717 2014-11-07 02:03:06Z foutrelis $
+# Maintainer: Antonio Rojas 
+# Contributor: Tom Gundersen 
+# Contributor: Stéphane Gaudreault 
+# Contributor: Andrea Scarpino 
+# Contributor: James Rayner 
+# Contributor: Sergio Jovani Guzman 
+
+pkgname=konversation
+pkgver=1.7.4
+pkgrel=1
+pkgdesc="A user-friendly and fully-featured IRC client"
+arch=(i686 x86_64)
+url="http://konversation.kde.org;
+depends=(knotifyconfig kemoticons kparts kidletime qca-qt5 hicolor-icon-theme)
+optdepends=('python: python scripting support' 'keditbookmarks: for managing 
bookmarks')
+makedepends=(extra-cmake-modules kdoctools python)
+license=(GPL2 FDL)
+source=("http://download.kde.org/stable/$pkgname/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('17ef5b7fe816cf52aaaba9ba1b6de69412675353df4217fc889a07ca1c919978'
+'SKIP')
+validpgpkeys=(DA6B31C4B98A877DBB2EF9A292220328C632316E) # Eike Hein 

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


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

2017-11-14 Thread Antonio Rojas
Date: Wednesday, November 15, 2017 @ 07:07:47
  Author: arojas
Revision: 309990

Update to 1.7.4

Modified:
  konversation/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-15 06:47:32 UTC (rev 309989)
+++ PKGBUILD2017-11-15 07:07:47 UTC (rev 309990)
@@ -7,7 +7,7 @@
 # Contributor: Sergio Jovani Guzman 
 
 pkgname=konversation
-pkgver=1.7.3
+pkgver=1.7.4
 pkgrel=1
 pkgdesc="A user-friendly and fully-featured IRC client"
 arch=(i686 x86_64)
@@ -17,7 +17,7 @@
 makedepends=(extra-cmake-modules kdoctools python)
 license=(GPL2 FDL)
 
source=("http://download.kde.org/stable/$pkgname/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('5e6bf0afc682aad870b6258b20001c1f119c0784946dd4265b8554678563dcd8'
+sha256sums=('17ef5b7fe816cf52aaaba9ba1b6de69412675353df4217fc889a07ca1c919978'
 'SKIP')
 validpgpkeys=(DA6B31C4B98A877DBB2EF9A292220328C632316E) # Eike Hein 

 


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

2017-11-14 Thread Felix Yan
Date: Wednesday, November 15, 2017 @ 06:47:32
  Author: felixonmars
Revision: 309989

archrelease: copy trunk to extra-any

Added:
  python-pip/repos/extra-any/PKGBUILD
(from rev 309988, python-pip/trunk/PKGBUILD)
Deleted:
  python-pip/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-11-15 06:47:06 UTC (rev 309988)
+++ PKGBUILD2017-11-15 06:47:32 UTC (rev 309989)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Dan McGee 
-# Contributor: Sebastien Binet 
-
-pkgname=('python-pip' 'python2-pip')
-pkgver=9.0.1
-pkgrel=2
-pkgdesc="The PyPA recommended tool for installing Python packages"
-url="https://pip.pypa.io/;
-arch=('any')
-license=('MIT')
-makedepends=('python' 'python-setuptools' 'python2' 'python2-setuptools')
-source=(https://pypi.io/packages/source/p/pip/pip-${pkgver}.tar.gz)
-md5sums=('35f01da33009719497f01a4ba69d63c9')
-sha256sums=('09f243e1a7b461f654c26a725fa373211bb7ff17a9300058b205c61658ca940d')
-
-package_python-pip() {
-  depends=('python' 'python-setuptools')
-
-  cd "$srcdir/pip-$pkgver"
-  python setup.py build
-  python setup.py install --prefix=/usr --root="$pkgdir"
-
-  install -D -m644 LICENSE.txt \
- "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-package_python2-pip() {
-  depends=('python2' 'python2-setuptools')
-  conflicts=('python-pyinstall')
-  replaces=('python-pyinstall')
-
-  cd "$srcdir/pip-$pkgver"
-  python2 setup.py build
-  python2 setup.py install --prefix=/usr --root="$pkgdir"
-  
-  mv "$pkgdir/usr/bin/pip" "$pkgdir/usr/bin/pip2"
-  sed -i "s|#!/usr/bin/env python$|#!/usr/bin/env python2|" \
-${pkgdir}/usr/lib/python2.7/site-packages/pip/__init__.py
-  python2 -m compileall 
${pkgdir}/usr/lib/python2.7/site-packages/pip/__init__.py
-  
-  install -D -m644 LICENSE.txt \
- "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: python-pip/repos/extra-any/PKGBUILD (from rev 309988, 
python-pip/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-11-15 06:47:32 UTC (rev 309989)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Dan McGee 
+# Contributor: Sebastien Binet 
+
+pkgname=('python-pip' 'python2-pip')
+pkgver=9.0.1
+pkgrel=3
+pkgdesc="The PyPA recommended tool for installing Python packages"
+url="https://pip.pypa.io/;
+arch=('any')
+license=('MIT')
+makedepends=('python' 'python-setuptools' 'python2' 'python2-setuptools')
+source=(https://pypi.io/packages/source/p/pip/pip-${pkgver}.tar.gz)
+md5sums=('35f01da33009719497f01a4ba69d63c9')
+sha256sums=('09f243e1a7b461f654c26a725fa373211bb7ff17a9300058b205c61658ca940d')
+
+package_python-pip() {
+  depends=('python' 'python-setuptools')
+
+  cd "$srcdir/pip-$pkgver"
+  python setup.py build
+  python setup.py install --prefix=/usr --root="$pkgdir"
+
+  install -D -m644 LICENSE.txt \
+ "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+  install -dm755 "$pkgdir"/usr/share/bash-completion/completions
+  PYTHONPATH="$pkgdir"/usr/lib/python3.6/site-packages "$pkgdir"/usr/bin/pip 
completion --bash > "$pkgdir"/usr/share/bash-completion/completions/pip
+}
+
+package_python2-pip() {
+  depends=('python2' 'python2-setuptools')
+  conflicts=('python-pyinstall')
+  replaces=('python-pyinstall')
+
+  cd "$srcdir/pip-$pkgver"
+  python2 setup.py build
+  python2 setup.py install --prefix=/usr --root="$pkgdir"
+
+  mv "$pkgdir/usr/bin/pip" "$pkgdir/usr/bin/pip2"
+  sed -i "s|#!/usr/bin/env python$|#!/usr/bin/env python2|" \
+${pkgdir}/usr/lib/python2.7/site-packages/pip/__init__.py
+  python2 -m compileall 
${pkgdir}/usr/lib/python2.7/site-packages/pip/__init__.py
+
+  install -D -m644 LICENSE.txt \
+ "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+  install -dm755 "$pkgdir"/usr/share/bash-completion/completions
+  PYTHONPATH="$pkgdir"/usr/lib/python2.7/site-packages "$pkgdir"/usr/bin/pip2 
completion --bash > "$pkgdir"/usr/share/bash-completion/completions/pip2
+  sed -i 's/pip/pip2/g' "$pkgdir"/usr/share/bash-completion/completions/pip2
+}


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

2017-11-14 Thread Felix Yan
Date: Wednesday, November 15, 2017 @ 06:47:06
  Author: felixonmars
Revision: 309988

upgpkg: python-pip 9.0.1-3

add bash completion files (FS#48449)

Modified:
  python-pip/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-14 23:55:00 UTC (rev 309987)
+++ PKGBUILD2017-11-15 06:47:06 UTC (rev 309988)
@@ -4,7 +4,7 @@
 
 pkgname=('python-pip' 'python2-pip')
 pkgver=9.0.1
-pkgrel=2
+pkgrel=3
 pkgdesc="The PyPA recommended tool for installing Python packages"
 url="https://pip.pypa.io/;
 arch=('any')
@@ -23,6 +23,9 @@
 
   install -D -m644 LICENSE.txt \
  "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+  install -dm755 "$pkgdir"/usr/share/bash-completion/completions
+  PYTHONPATH="$pkgdir"/usr/lib/python3.6/site-packages "$pkgdir"/usr/bin/pip 
completion --bash > "$pkgdir"/usr/share/bash-completion/completions/pip
 }
 
 package_python2-pip() {
@@ -33,12 +36,16 @@
   cd "$srcdir/pip-$pkgver"
   python2 setup.py build
   python2 setup.py install --prefix=/usr --root="$pkgdir"
-  
+
   mv "$pkgdir/usr/bin/pip" "$pkgdir/usr/bin/pip2"
   sed -i "s|#!/usr/bin/env python$|#!/usr/bin/env python2|" \
 ${pkgdir}/usr/lib/python2.7/site-packages/pip/__init__.py
   python2 -m compileall 
${pkgdir}/usr/lib/python2.7/site-packages/pip/__init__.py
-  
+
   install -D -m644 LICENSE.txt \
  "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+  install -dm755 "$pkgdir"/usr/share/bash-completion/completions
+  PYTHONPATH="$pkgdir"/usr/lib/python2.7/site-packages "$pkgdir"/usr/bin/pip2 
completion --bash > "$pkgdir"/usr/share/bash-completion/completions/pip2
+  sed -i 's/pip/pip2/g' "$pkgdir"/usr/share/bash-completion/completions/pip2
 }


[arch-commits] Commit in botan1.10/trunk (PKGBUILD)

2017-11-14 Thread Felix Yan
Date: Wednesday, November 15, 2017 @ 06:39:29
  Author: felixonmars
Revision: 266814

upgpkg: botan1.10 1.10.17-1

Modified:
  botan1.10/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-15 06:07:16 UTC (rev 266813)
+++ PKGBUILD2017-11-15 06:39:29 UTC (rev 266814)
@@ -3,7 +3,7 @@
 # Contributor: drakkan 
 
 pkgname=botan1.10
-pkgver=1.10.13
+pkgver=1.10.17
 pkgrel=1
 pkgdesc='Crypto library written in C++ - old stable branch'
 license=('BSD')
@@ -12,7 +12,7 @@
 depends=('gcc-libs' 'sh')
 makedepends=('python2')
 source=("http://botan.randombit.net/releases/Botan-${pkgver}.tgz;)
-sha256sums=('23ec973d4b4a4fe04f490d409e08ac5638afe3aa09acd7f520daaff38ba19b90')
+sha512sums=('a47cab3af113652247c8efc8b0f043eb62175eaa8554833d5fc3016ea94dbdd8aa722ab9b5226cc5f133afbcc088d54362111630eaa4594812c39925cc3c8649')
 
 build() {
   cd "Botan-$pkgver"


[arch-commits] Commit in botan1.10/repos (2 files)

2017-11-14 Thread Felix Yan
Date: Wednesday, November 15, 2017 @ 06:39:56
  Author: felixonmars
Revision: 266815

archrelease: copy trunk to community-testing-x86_64

Added:
  botan1.10/repos/community-testing-x86_64/
  botan1.10/repos/community-testing-x86_64/PKGBUILD
(from rev 266814, botan1.10/trunk/PKGBUILD)

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

Copied: botan1.10/repos/community-testing-x86_64/PKGBUILD (from rev 266814, 
botan1.10/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2017-11-15 06:39:56 UTC (rev 266815)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: drakkan 
+
+pkgname=botan1.10
+pkgver=1.10.17
+pkgrel=1
+pkgdesc='Crypto library written in C++ - old stable branch'
+license=('BSD')
+arch=('x86_64' 'i686')
+url='http://botan.randombit.net/'
+depends=('gcc-libs' 'sh')
+makedepends=('python2')
+source=("http://botan.randombit.net/releases/Botan-${pkgver}.tgz;)
+sha512sums=('a47cab3af113652247c8efc8b0f043eb62175eaa8554833d5fc3016ea94dbdd8aa722ab9b5226cc5f133afbcc088d54362111630eaa4594812c39925cc3c8649')
+
+build() {
+  cd "Botan-$pkgver"
+
+  python2 configure.py --prefix=/usr --enable-modules=cvc
+  make 
+}
+
+package() {
+  cd "Botan-$pkgver"
+
+  make DESTDIR="$pkgdir/usr" install
+  find "$pkgdir/usr/share/doc" -type f -exec chmod 0644 {} \;
+  install -Dm644 doc/license.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:


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

2017-11-14 Thread Felix Yan
Date: Wednesday, November 15, 2017 @ 06:07:16
  Author: felixonmars
Revision: 266813

archrelease: copy trunk to community-testing-x86_64

Added:
  nodejs/repos/community-testing-x86_64/PKGBUILD
(from rev 266812, nodejs/trunk/PKGBUILD)
  nodejs/repos/community-testing-x86_64/rebuild.list
(from rev 266812, nodejs/trunk/rebuild.list)
Deleted:
  nodejs/repos/community-testing-x86_64/PKGBUILD
  nodejs/repos/community-testing-x86_64/rebuild.list

--+
 PKGBUILD |  144 -
 rebuild.list |2 
 2 files changed, 73 insertions(+), 73 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-11-15 06:06:53 UTC (rev 266812)
+++ PKGBUILD2017-11-15 06:07:16 UTC (rev 266813)
@@ -1,72 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor  Bartłomiej Piotrowski 
-# Contributor: Thomas Dziedzic < gostrc at gmail >
-# Contributor: James Campos 
-# Contributor: BlackEagle < ike DOT devolder AT gmail DOT com >
-# Contributor: Dongsheng Cai 
-# Contributor: Masutu Subric 
-# Contributor: TIanyi Cui 
-
-pkgname=nodejs
-pkgver=9.1.0
-pkgrel=2
-pkgdesc='Evented I/O for V8 javascript'
-arch=('i686' 'x86_64')
-url='http://nodejs.org/'
-license=('MIT')
-depends=('openssl-1.0' 'zlib' 'icu' 'libuv' 'http-parser' 'c-ares') # 'v8')
-makedepends=('python2' 'procps-ng')
-optdepends=('npm: nodejs package manager')
-source=("nodejs-$pkgver.tar.gz::https://github.com/nodejs/node/archive/v$pkgver.tar.gz;)
-sha512sums=('ee8f4cc2ce93d48095a28420227b34649c19fb71c8eec240ec45bf4ae6defd75045c57d6b183761b19ab758f4c65b0947e212d7ae466a6fccb062ba0a23d3fec')
-
-prepare() {
-  cd node-$pkgver
-
-  msg 'Fixing for python2 name'
-  find -type f -exec sed \
--e 's_^#!/usr/bin/env python$_&2_' \
--e 's_^\(#!/usr/bin/python2\).[45]$_\1_' \
--e 's_^#!/usr/bin/python$_&2_' \
--e 's_^\( *exec \+\)python\( \+.*\)$_\1python2\2_'\
--e 's_^\(.*\)python\( \+-c \+.*\)$_\1python2\2_'\
--e "s_'python'_'python2'_" -i {} \;
-  find test/ -type f -exec sed 's_python _python2 _' -i {} \;
-}
-
-build() {
-  cd node-$pkgver
-
-  export PKG_CONFIG_PATH=/usr/lib/openssl-1.0/pkgconfig
-  export PYTHON=python2
-  ./configure \
---prefix=/usr \
---with-intl=system-icu \
---without-npm \
---shared-openssl \
---shared-zlib \
---shared-libuv \
---shared-http-parser \
---shared-cares
-# --shared-v8
-
-  make
-}
-
-check() {
-  cd node-$pkgver
-  # Expected failure: https://github.com/nodejs/node/issues/11627
-  make test || warning "Tests failed"
-}
-
-package() {
-  cd node-$pkgver
-
-  make DESTDIR="$pkgdir" install
-
-  install -D -m644 LICENSE \
-"$pkgdir"/usr/share/licenses/nodejs/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: nodejs/repos/community-testing-x86_64/PKGBUILD (from rev 266812, 
nodejs/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-11-15 06:07:16 UTC (rev 266813)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor  Bartłomiej Piotrowski 
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+# Contributor: James Campos 
+# Contributor: BlackEagle < ike DOT devolder AT gmail DOT com >
+# Contributor: Dongsheng Cai 
+# Contributor: Masutu Subric 
+# Contributor: TIanyi Cui 
+
+pkgname=nodejs
+pkgver=9.2.0
+pkgrel=1
+pkgdesc='Evented I/O for V8 javascript'
+arch=('x86_64')
+url='http://nodejs.org/'
+license=('MIT')
+depends=('openssl-1.0' 'zlib' 'icu' 'libuv' 'http-parser' 'c-ares') # 'v8')
+makedepends=('python2' 'procps-ng')
+optdepends=('npm: nodejs package manager')
+source=("nodejs-$pkgver.tar.gz::https://github.com/nodejs/node/archive/v$pkgver.tar.gz;)
+sha512sums=('4f9fc98bcc9e4c0e74876ff2a2983412665d4896623fba685df590fcd4d7158068823b29fc1945852554a05ce449de4d39f1877e6b609d4c91e0a567792fc83b')
+
+prepare() {
+  cd node-$pkgver
+
+  msg 'Fixing for python2 name'
+  find -type f -exec sed \
+-e 's_^#!/usr/bin/env python$_&2_' \
+-e 's_^\(#!/usr/bin/python2\).[45]$_\1_' \
+-e 's_^#!/usr/bin/python$_&2_' \
+-e 's_^\( *exec \+\)python\( \+.*\)$_\1python2\2_'\
+-e 's_^\(.*\)python\( \+-c \+.*\)$_\1python2\2_'\
+-e "s_'python'_'python2'_" -i {} \;
+  find test/ -type f -exec sed 's_python _python2 _' -i {} \;
+}
+
+build() {
+  cd node-$pkgver
+
+  export PKG_CONFIG_PATH=/usr/lib/openssl-1.0/pkgconfig
+  export PYTHON=python2
+  ./configure \
+--prefix=/usr \
+--with-intl=system-icu \
+--without-npm \
+--shared-openssl \
+--shared-zlib \
+--shared-libuv \
+--shared-http-parser \
+--shared-cares
+# --shared-v8
+
+  make
+}
+
+check() {
+  cd node-$pkgver
+  # Expected failure: 

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

2017-11-14 Thread Felix Yan
Date: Wednesday, November 15, 2017 @ 06:06:53
  Author: felixonmars
Revision: 266812

upgpkg: nodejs 9.2.0-1

Modified:
  nodejs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-15 05:56:19 UTC (rev 266811)
+++ PKGBUILD2017-11-15 06:06:53 UTC (rev 266812)
@@ -9,10 +9,10 @@
 # Contributor: TIanyi Cui 
 
 pkgname=nodejs
-pkgver=9.1.0
-pkgrel=2
+pkgver=9.2.0
+pkgrel=1
 pkgdesc='Evented I/O for V8 javascript'
-arch=('i686' 'x86_64')
+arch=('x86_64')
 url='http://nodejs.org/'
 license=('MIT')
 depends=('openssl-1.0' 'zlib' 'icu' 'libuv' 'http-parser' 'c-ares') # 'v8')
@@ -19,7 +19,7 @@
 makedepends=('python2' 'procps-ng')
 optdepends=('npm: nodejs package manager')
 
source=("nodejs-$pkgver.tar.gz::https://github.com/nodejs/node/archive/v$pkgver.tar.gz;)
-sha512sums=('ee8f4cc2ce93d48095a28420227b34649c19fb71c8eec240ec45bf4ae6defd75045c57d6b183761b19ab758f4c65b0947e212d7ae466a6fccb062ba0a23d3fec')
+sha512sums=('4f9fc98bcc9e4c0e74876ff2a2983412665d4896623fba685df590fcd4d7158068823b29fc1945852554a05ce449de4d39f1877e6b609d4c91e0a567792fc83b')
 
 prepare() {
   cd node-$pkgver


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

2017-11-14 Thread Felix Yan
Date: Wednesday, November 15, 2017 @ 05:56:19
  Author: felixonmars
Revision: 266811

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-11-15 05:55:55 UTC (rev 266810)
+++ PKGBUILD2017-11-15 05:56:19 UTC (rev 266811)
@@ -1,65 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Jeremy "Ichimonji10" Audet 
-# Contributor: dnuux 
-
-pkgbase=python-faker
-pkgname=(python-faker python2-faker)
-pkgver=0.8.6
-pkgrel=2
-pkgdesc='Faker generates fake data for you.'
-arch=('any')
-url='http://www.joke2k.net/faker/'
-license=('MIT')
-makedepends=('python-setuptools' 'python2-setuptools' 'python-dateutil' 
'python2-dateutil'
- 'python-text-unidecode' 'python2-text-unidecode')
-checkdepends=('python-ukpostcodeparser' 'python2-ukpostcodeparser'
-  'python-mock' 'python2-mock' 'python-email-validator' 
'python2-email-validator'
-  'python2-ipaddress')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/joke2k/faker/archive/v$pkgver.tar.gz;)
-sha512sums=('00dc032f922c9e715a5cd3621d5bb45fb975a07a38e7b60394484c432d304da6b044c08f25b5fbcef0377ae7f85a922886577c0e864020eca5ce6f1b634d20ce')
-
-prepare() {
-  cp -a faker-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir"/faker-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/faker-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/faker-$pkgver
-  python setup.py test
-
-  cd "$srcdir"/faker-$pkgver-py2
-  python2 setup.py test
-}
-
-package_python-faker() {
-  depends=('python-setuptools' 'python-dateutil' 'python-text-unidecode')
-  provides=("python-fake-factory=$pkgver")
-  conflicts=('python-fake-factory')
-  replaces=('python-fake-factory')
-
-  cd "$srcdir"/faker-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm 644 LICENSE.txt 
"$pkgdir"/usr/share/licenses/${pkgname}/LICENSE.txt
-}
-
-package_python2-faker() {
-  depends=('python2-setuptools' 'python2-dateutil' 'python2-text-unidecode' 
'python2-ipaddress')
-  provides=("python2-fake-factory=$pkgver")
-  conflicts=('python2-fake-factory')
-  replaces=('python2-fake-factory')
-
-  cd "$srcdir"/faker-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  mv "$pkgdir"/usr/bin/faker{,2}
-  install -Dm 644 LICENSE.txt 
"$pkgdir"/usr/share/licenses/${pkgname}/LICENSE.txt
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-faker/repos/community-any/PKGBUILD (from rev 266810, 
python-faker/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-11-15 05:56:19 UTC (rev 266811)
@@ -0,0 +1,65 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Jeremy "Ichimonji10" Audet 
+# Contributor: dnuux 
+
+pkgbase=python-faker
+pkgname=(python-faker python2-faker)
+pkgver=0.8.7
+pkgrel=1
+pkgdesc='Faker generates fake data for you.'
+arch=('any')
+url='http://www.joke2k.net/faker/'
+license=('MIT')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-dateutil' 
'python2-dateutil'
+ 'python-text-unidecode' 'python2-text-unidecode')
+checkdepends=('python-ukpostcodeparser' 'python2-ukpostcodeparser'
+  'python-mock' 'python2-mock' 'python-email-validator' 
'python2-email-validator'
+  'python2-ipaddress')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/joke2k/faker/archive/v$pkgver.tar.gz;)
+sha512sums=('0660f471846e7965a3d507ef09d6b1177f46014ca836f2bd69d944318e22131aab8c96ecca5c17d9dc260e80c35051c2801e45fd4dfd6da6b0adeb0f858f63c5')
+
+prepare() {
+  cp -a faker-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/faker-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/faker-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/faker-$pkgver
+  python setup.py test
+
+  cd "$srcdir"/faker-$pkgver-py2
+  python2 setup.py test
+}
+
+package_python-faker() {
+  depends=('python-setuptools' 'python-dateutil' 'python-text-unidecode')
+  provides=("python-fake-factory=$pkgver")
+  conflicts=('python-fake-factory')
+  replaces=('python-fake-factory')
+
+  cd "$srcdir"/faker-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm 644 LICENSE.txt 
"$pkgdir"/usr/share/licenses/${pkgname}/LICENSE.txt
+}
+
+package_python2-faker() {
+  depends=('python2-setuptools' 'python2-dateutil' 'python2-text-unidecode' 
'python2-ipaddress')
+  provides=("python2-fake-factory=$pkgver")
+  conflicts=('python2-fake-factory')
+  replaces=('python2-fake-factory')
+
+  cd "$srcdir"/faker-$pkgver-py2
+  

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

2017-11-14 Thread Felix Yan
Date: Wednesday, November 15, 2017 @ 05:55:55
  Author: felixonmars
Revision: 266810

upgpkg: python-faker 0.8.7-1

Modified:
  python-faker/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-15 05:06:01 UTC (rev 266809)
+++ PKGBUILD2017-11-15 05:55:55 UTC (rev 266810)
@@ -5,8 +5,8 @@
 
 pkgbase=python-faker
 pkgname=(python-faker python2-faker)
-pkgver=0.8.6
-pkgrel=2
+pkgver=0.8.7
+pkgrel=1
 pkgdesc='Faker generates fake data for you.'
 arch=('any')
 url='http://www.joke2k.net/faker/'
@@ -17,7 +17,7 @@
   'python-mock' 'python2-mock' 'python-email-validator' 
'python2-email-validator'
   'python2-ipaddress')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/joke2k/faker/archive/v$pkgver.tar.gz;)
-sha512sums=('00dc032f922c9e715a5cd3621d5bb45fb975a07a38e7b60394484c432d304da6b044c08f25b5fbcef0377ae7f85a922886577c0e864020eca5ce6f1b634d20ce')
+sha512sums=('0660f471846e7965a3d507ef09d6b1177f46014ca836f2bd69d944318e22131aab8c96ecca5c17d9dc260e80c35051c2801e45fd4dfd6da6b0adeb0f858f63c5')
 
 prepare() {
   cp -a faker-$pkgver{,-py2}


[arch-commits] Commit in lib32-nss/repos (5 files)

2017-11-14 Thread Jan Steffens
Date: Wednesday, November 15, 2017 @ 05:06:01
  Author: heftig
Revision: 266809

archrelease: copy trunk to multilib-testing-x86_64

Added:
  lib32-nss/repos/multilib-testing-x86_64/
  lib32-nss/repos/multilib-testing-x86_64/PKGBUILD
(from rev 266808, lib32-nss/trunk/PKGBUILD)
  lib32-nss/repos/multilib-testing-x86_64/enable-libpkix.patch
(from rev 266808, lib32-nss/trunk/enable-libpkix.patch)
  lib32-nss/repos/multilib-testing-x86_64/no-plt.diff
(from rev 266808, lib32-nss/trunk/no-plt.diff)
  lib32-nss/repos/multilib-testing-x86_64/nss.pc.in
(from rev 266808, lib32-nss/trunk/nss.pc.in)

--+
 PKGBUILD |   61 +
 enable-libpkix.patch |   12 +
 no-plt.diff  |   48 ++
 nss.pc.in|   11 
 4 files changed, 132 insertions(+)

Copied: lib32-nss/repos/multilib-testing-x86_64/PKGBUILD (from rev 266808, 
lib32-nss/trunk/PKGBUILD)
===
--- multilib-testing-x86_64/PKGBUILD(rev 0)
+++ multilib-testing-x86_64/PKGBUILD2017-11-15 05:06:01 UTC (rev 266809)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: Daniel Wallace 
+# Contributor: kfgz 
+# Contributor: Ionut Biru 
+
+pkgname=lib32-nss
+pkgver=3.34
+pkgrel=1
+pkgdesc="Network Security Services (32-bit)"
+url="https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS;
+arch=(x86_64)
+license=(MPL GPL)
+_nsprver=4.15
+depends=("lib32-nspr>=${_nsprver}" lib32-sqlite lib32-zlib lib32-p11-kit nss)
+makedepends=(gcc-multilib perl gyp)
+options=(!strip !makeflags staticlibs)
+source=("https://ftp.mozilla.org/pub/security/nss/releases/NSS_${pkgver//./_}_RTM/src/nss-${pkgver}.tar.gz;
+nss.pc.in enable-libpkix.patch no-plt.diff)
+sha256sums=('0d45954181373023c7cfc33e77c8c636d394ec7e55b93e059149ed7888652af5'
+'f2208c4f70373ff9b60f53d733f8071d4e390c384b776dfc04bf26c306882faf'
+'0b68c5ffbfeec090e950e5703e6b0519eafcb7eaf4fe2f64c355d0ddf17eed30'
+'ea8e1b871c0f1dd29cdea1b1a2e7f47bf4713e2ae7b947ec832dba7dfcc67daa')
+
+prepare() {
+  mkdir path
+
+  ln -s /usr/bin/python2 path/python
+
+  cd nss-$pkgver
+
+  patch -Np1 -i ../enable-libpkix.patch
+  patch -Np2 -i ../no-plt.diff
+}
+
+build() {
+  export PKG_CONFIG_PATH=/usr/lib32/pkgconfig
+
+  cd nss-$pkgver/nss
+  PATH="$srcdir/path:$PATH" bash -x ./build.sh -v \
+--m32 --opt --system-sqlite --system-nspr --disable-tests
+}
+
+package() {
+  cd nss-$pkgver
+
+  sed ../nss.pc.in \
+-e "s,%libdir%,/usr/lib32,g" \
+-e "s,%prefix%,/usr,g" \
+-e "s,%exec_prefix%,/usr/bin,g" \
+-e "s,%includedir%,/usr/include/nss,g" \
+-e "s,%NSPR_VERSION%,${_nsprver},g" \
+-e "s,%NSS_VERSION%,${pkgver},g" |
+install -Dm644 /dev/stdin "$pkgdir/usr/lib32/pkgconfig/nss.pc"
+  ln -s nss.pc "$pkgdir/usr/lib32/pkgconfig/mozilla-nss.pc"
+
+  cd dist/Release/lib
+  install -Dt "$pkgdir/usr/lib32" *.so
+  install -Dt "$pkgdir/usr/lib32" -m644 *.chk
+
+  ln -sf libnssckbi-p11-kit.so "$pkgdir/usr/lib32/libnssckbi.so"
+}

Copied: lib32-nss/repos/multilib-testing-x86_64/enable-libpkix.patch (from rev 
266808, lib32-nss/trunk/enable-libpkix.patch)
===
--- multilib-testing-x86_64/enable-libpkix.patch
(rev 0)
+++ multilib-testing-x86_64/enable-libpkix.patch2017-11-15 05:06:01 UTC 
(rev 266809)
@@ -0,0 +1,12 @@
+diff -u -r nss-3.31/nss/build.sh nss-3.31-libpkix/nss/build.sh
+--- nss-3.31/nss/build.sh  2017-06-08 12:53:01.0 +0200
 nss-3.31-libpkix/nss/build.sh  2017-06-09 19:11:21.746133040 +0200
+@@ -52,7 +52,7 @@
+ no_local_nspr=0
+ armhf=0
+ 
+-gyp_params=(--depth="$cwd" --generator-output=".")
++gyp_params=(--depth="$cwd" --generator-output="." -Ddisable_libpkix=0)
+ nspr_params=()
+ ninja_params=()
+ 

Copied: lib32-nss/repos/multilib-testing-x86_64/no-plt.diff (from rev 266808, 
lib32-nss/trunk/no-plt.diff)
===
--- multilib-testing-x86_64/no-plt.diff (rev 0)
+++ multilib-testing-x86_64/no-plt.diff 2017-11-15 05:06:01 UTC (rev 266809)
@@ -0,0 +1,48 @@
+diff --git i/security/nss/lib/freebl/mpi/mpi_x86.s 
w/security/nss/lib/freebl/mpi/mpi_x86.s
+index 8f7e2130c3264754..b3ca1ce5b41b3771 100644
+--- i/security/nss/lib/freebl/mpi/mpi_x86.s
 w/security/nss/lib/freebl/mpi/mpi_x86.s
+@@ -22,22 +22,41 @@ is_sse: .long  -1
+ #
+ .ifndef NO_PIC
+ .macro GET   var,reg
+-movl   \var@GOTOFF(%ebx),\reg
++call   thunk.ax
++addl   $_GLOBAL_OFFSET_TABLE_, %eax
++movl   \var@GOTOFF(%eax),\reg
+ .endm
+ .macro PUT   reg,var
+-movl   \reg,\var@GOTOFF(%ebx)
++call   thunk.dx
++addl   $_GLOBAL_OFFSET_TABLE_, %edx
++movl   \reg,\var@GOTOFF(%edx)
+ .endm
+ .else
+ .macro GET   var,reg
+ movl   \var,\reg
+ .endm

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

2017-11-14 Thread Jan Steffens
Date: Wednesday, November 15, 2017 @ 05:04:42
  Author: heftig
Revision: 266808

3.34-1

Modified:
  lib32-nss/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-14 21:05:39 UTC (rev 266807)
+++ PKGBUILD2017-11-15 05:04:42 UTC (rev 266808)
@@ -4,7 +4,7 @@
 # Contributor: Ionut Biru 
 
 pkgname=lib32-nss
-pkgver=3.33
+pkgver=3.34
 pkgrel=1
 pkgdesc="Network Security Services (32-bit)"
 url="https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS;
@@ -16,7 +16,7 @@
 options=(!strip !makeflags staticlibs)
 
source=("https://ftp.mozilla.org/pub/security/nss/releases/NSS_${pkgver//./_}_RTM/src/nss-${pkgver}.tar.gz;
 nss.pc.in enable-libpkix.patch no-plt.diff)
-sha256sums=('98f0dabd36408e83dd3a11727336cc3cdfee4cbdd9aede2b2831eb2389c284e4'
+sha256sums=('0d45954181373023c7cfc33e77c8c636d394ec7e55b93e059149ed7888652af5'
 'f2208c4f70373ff9b60f53d733f8071d4e390c384b776dfc04bf26c306882faf'
 '0b68c5ffbfeec090e950e5703e6b0519eafcb7eaf4fe2f64c355d0ddf17eed30'
 'ea8e1b871c0f1dd29cdea1b1a2e7f47bf4713e2ae7b947ec832dba7dfcc67daa')


[arch-commits] Commit in gnu-efi-libs/repos (extra-i686)

2017-11-14 Thread Anatol Pomozov
Date: Tuesday, November 14, 2017 @ 23:55:00
  Author: anatolik
Revision: 309987

Remove i686 arch

Deleted:
  gnu-efi-libs/repos/extra-i686/


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

2017-11-14 Thread Christian Hesse
Date: Tuesday, November 14, 2017 @ 23:40:05
  Author: eworm
Revision: 309986

archrelease: copy trunk to testing-x86_64

Added:
  mariadb/repos/testing-x86_64/
  mariadb/repos/testing-x86_64/0001-openssl-1-1-0.patch
(from rev 309985, mariadb/trunk/0001-openssl-1-1-0.patch)
  
mariadb/repos/testing-x86_64/0002-mroonga-after-merge-CMakeLists.txt-fixes.patch
(from rev 309985, 
mariadb/trunk/0002-mroonga-after-merge-CMakeLists.txt-fixes.patch)
  mariadb/repos/testing-x86_64/PKGBUILD
(from rev 309985, mariadb/trunk/PKGBUILD)
  mariadb/repos/testing-x86_64/mariadb-sysusers.conf
(from rev 309985, mariadb/trunk/mariadb-sysusers.conf)
  mariadb/repos/testing-x86_64/mariadb-tmpfile.conf
(from rev 309985, mariadb/trunk/mariadb-tmpfile.conf)
  mariadb/repos/testing-x86_64/mariadb.install
(from rev 309985, mariadb/trunk/mariadb.install)

-+
 0001-openssl-1-1-0.patch| 1037 ++
 0002-mroonga-after-merge-CMakeLists.txt-fixes.patch |   53 
 PKGBUILD|  200 +++
 mariadb-sysusers.conf   |1 
 mariadb-tmpfile.conf|1 
 mariadb.install |9 
 6 files changed, 1301 insertions(+)

Copied: mariadb/repos/testing-x86_64/0001-openssl-1-1-0.patch (from rev 309985, 
mariadb/trunk/0001-openssl-1-1-0.patch)
===
--- testing-x86_64/0001-openssl-1-1-0.patch (rev 0)
+++ testing-x86_64/0001-openssl-1-1-0.patch 2017-11-14 23:40:05 UTC (rev 
309986)
@@ -0,0 +1,1037 @@
+diff --git a/extra/yassl/src/handshake.cpp b/extra/yassl/src/handshake.cpp
+index 407e409..6e181a9 100644
+--- a/extra/yassl/src/handshake.cpp
 b/extra/yassl/src/handshake.cpp
+@@ -788,6 +788,16 @@ int DoProcessReply(SSL& ssl)
+ needHdr = true;
+ else {
+ buffer >> hdr;
++/*
++  According to RFC 4346 (see "7.4.1.3. Server Hello"), the Server 
Hello
++  packet needs to specify the highest supported TLS version, but 
not
++  higher than what client requests. YaSSL highest supported 
version is
++  TLSv1.1 (=3.2) - if the client requests a higher version, 
downgrade it
++  here to 3.2.
++  See also Appendix E of RFC 5246 (TLS 1.2)
++*/
++if (hdr.version_.major_ == 3 && hdr.version_.minor_ > 2)
++  hdr.version_.minor_ = 2;
+ ssl.verifyState(hdr);
+ }
+ 
+diff --git a/include/ssl_compat.h b/include/ssl_compat.h
+new file mode 100644
+index 000..b0e3ed4
+--- /dev/null
 b/include/ssl_compat.h
+@@ -0,0 +1,75 @@
++/*
++ Copyright (c) 2016, 2017 MariaDB Corporation
++
++ This program is free software; you can redistribute it and/or modify
++ it under the terms of the GNU General Public License as published by
++ the Free Software Foundation; version 2 of the License.
++
++ This program is distributed in the hope that it will be useful,
++ but WITHOUT ANY WARRANTY; without even the implied warranty of
++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
++ GNU General Public License for more details.
++
++ You should have received a copy of the GNU General Public License
++ along with this program; if not, write to the Free Software
++ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301  USA */
++
++#include 
++
++/* OpenSSL version specific definitions */
++#if !defined(HAVE_YASSL) && defined(OPENSSL_VERSION_NUMBER)
++
++#if OPENSSL_VERSION_NUMBER >= 0x10002000L && !defined(LIBRESSL_VERSION_NUMBER)
++#define HAVE_X509_check_host 1
++#endif
++
++#if OPENSSL_VERSION_NUMBER >= 0x1010L && !defined(LIBRESSL_VERSION_NUMBER)
++#define HAVE_OPENSSL11 1
++#define ERR_remove_state(X) ERR_clear_error()
++#define EVP_MD_CTX_cleanup(X) EVP_MD_CTX_reset(X)
++#define EVP_CIPHER_CTX_SIZE 168
++#define EVP_MD_CTX_SIZE 48
++#undef EVP_MD_CTX_init
++#define EVP_MD_CTX_init(X) do { bzero((X), EVP_MD_CTX_SIZE); 
EVP_MD_CTX_reset(X); } while(0)
++#undef EVP_CIPHER_CTX_init
++#define EVP_CIPHER_CTX_init(X) do { bzero((X), EVP_CIPHER_CTX_SIZE); 
EVP_CIPHER_CTX_reset(X); } while(0)
++
++#else
++#define HAVE_OPENSSL10 1
++/*
++  Unfortunately RAND_bytes manual page does not provide any guarantees
++  in relation to blocking behavior. Here we explicitly use SSLeay random
++  instead of whatever random engine is currently set in OpenSSL. That way
++  we are guaranteed to have a non-blocking random.
++*/
++#define RAND_OpenSSL() RAND_SSLeay()
++
++#ifdef HAVE_ERR_remove_thread_state
++#define ERR_remove_state(X) ERR_remove_thread_state(NULL)
++#endif /* HAVE_ERR_remove_thread_state */
++
++#endif /* HAVE_OPENSSL11 */
++
++#elif defined(HAVE_YASSL)
++#define BN_free(X) do { } while(0)
++#endif /* !defined(HAVE_YASSL) */
++
++#ifndef 

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

2017-11-14 Thread Christian Hesse
Date: Tuesday, November 14, 2017 @ 23:39:49
  Author: eworm
Revision: 309985

upgpkg: mariadb 10.1.29-1

* new upstream release
* build with bundled pcre, system library is refused since commit 440157cb [0]
* revert (parts of) the lz4 breakage [1]

[0] 
https://github.com/MariaDB/server/commit/440157cbbe796b6b9a44a3de46bbb93d0cb5a77c
[1] 
https://github.com/MariaDB/server/commit/8b18a44fa7e5ddf6c8caee37de4f6112c64dfc87

Added:
  mariadb/trunk/0002-mroonga-after-merge-CMakeLists.txt-fixes.patch
Modified:
  mariadb/trunk/PKGBUILD

-+
 0002-mroonga-after-merge-CMakeLists.txt-fixes.patch |   53 ++
 PKGBUILD|   18 --
 2 files changed, 65 insertions(+), 6 deletions(-)

Added: 0002-mroonga-after-merge-CMakeLists.txt-fixes.patch
===
--- 0002-mroonga-after-merge-CMakeLists.txt-fixes.patch 
(rev 0)
+++ 0002-mroonga-after-merge-CMakeLists.txt-fixes.patch 2017-11-14 23:39:49 UTC 
(rev 309985)
@@ -0,0 +1,53 @@
+From 8b18a44fa7e5ddf6c8caee37de4f6112c64dfc87 Mon Sep 17 00:00:00 2001
+From: Sergei Golubchik 
+Date: Mon, 13 Nov 2017 13:11:53 +0800
+Subject: [PATCH] mroonga after-merge CMakeLists.txt fixes
+
+1. remove erroneously committed *.orig
+2. fix LZ4 detection on Mac OS X and FreeBSD. Cannot do
+
+   pkg_check_modules(LIBLZ4 liblz4)
+   find_library(LIBLZ4_LIBS ... )
+
+because find_library(X) does not do anything if X is defined (documented),
+and pkg_check_modules(Y) sets Y_LIBS to "" (undocumented!)
+---
+ storage/mroonga/vendor/groonga/CMakeLists.txt  |   4 +-
+ storage/mroonga/vendor/groonga/lib/CMakeLists.txt  |   2 +-
+ 2 files changed, 3 insertions(+), 3 deletions(-)
+ delete mode 100644 storage/mroonga/CMakeLists.txt.orig
+ delete mode 100644 storage/mroonga/vendor/groonga/CMakeLists.txt.orig
+
+diff --git a/storage/mroonga/vendor/groonga/CMakeLists.txt 
b/storage/mroonga/vendor/groonga/CMakeLists.txt
+index 3d957c9d5152..e27070f9e0c3 100644
+--- a/storage/mroonga/vendor/groonga/CMakeLists.txt
 b/storage/mroonga/vendor/groonga/CMakeLists.txt
+@@ -355,13 +355,13 @@ if(NOT ${GRN_WITH_LZ4} STREQUAL "no")
+   if(GRN_WITH_BUNDLED_LZ4)
+ set(LIBLZ4_INCLUDE_DIRS
+   "${CMAKE_CURRENT_SOURCE_DIR}/vendor/lz4-${GRN_BUNDLED_LZ4_VERSION}/lib")
+-set(LIBLZ4_LIBS liblz4)
++set(LZ4_LIBS liblz4)
+   else()
+ if(NOT DEFINED LIBLZ4_FOUND)
+   pkg_check_modules(LIBLZ4 liblz4)
+ endif()
+ if(LIBLZ4_FOUND)
+-  find_library(LIBLZ4_LIBS
++  find_library(LZ4_LIBS
+   NAMES ${LIBLZ4_LIBRARIES}
+   PATHS ${LIBLZ4_LIBRARY_DIRS}
+   NO_DEFAULT_PATH)
+diff --git a/storage/mroonga/vendor/groonga/lib/CMakeLists.txt 
b/storage/mroonga/vendor/groonga/lib/CMakeLists.txt
+index a90cea0043eb..6765261feb7d 100644
+--- a/storage/mroonga/vendor/groonga/lib/CMakeLists.txt
 b/storage/mroonga/vendor/groonga/lib/CMakeLists.txt
+@@ -94,7 +94,7 @@ set(GRN_ALL_LIBRARIES
+ ${RT_LIBS}
+ ${PTHREAD_LIBS}
+ ${Z_LIBS}
+-${LIBLZ4_LIBS}
++${LZ4_LIBS}
+ ${LIBZSTD_LIBS}
+ ${MESSAGE_PACK_LIBS}
+ ${DL_LIBS}

Modified: PKGBUILD
===
--- PKGBUILD2017-11-14 22:26:17 UTC (rev 309984)
+++ PKGBUILD2017-11-14 23:39:49 UTC (rev 309985)
@@ -4,21 +4,23 @@
 
 pkgbase=mariadb
 pkgname=('libmariadbclient' 'mariadb-clients' 'mytop' 'mariadb')
-pkgver=10.1.28
+pkgver=10.1.29
 pkgrel=1
 arch=('i686' 'x86_64')
 license=('GPL')
 url='http://mariadb.org/'
-makedepends=('cmake' 'zlib' 'libaio' 'libxml2' 'openssl' 'pcre' 'jemalloc'
+makedepends=('cmake' 'zlib' 'libaio' 'libxml2' 'openssl' 'jemalloc'
  'lz4' 'boost' 'libevent' 'systemd')
 validpgpkeys=('199369E5404BD5FC7D2FE43BCBCB082A1BB943DB') # MariaDB Package 
Signing Key 
 
source=("https://ftp.heanet.ie/mirrors/mariadb/mariadb-$pkgver/source/mariadb-$pkgver.tar.gz"{,.asc}
 '0001-openssl-1-1-0.patch'
+'0002-mroonga-after-merge-CMakeLists.txt-fixes.patch'
 'mariadb-sysusers.conf'
 'mariadb-tmpfile.conf')
-sha256sums=('292dc8fff420c4bdaf3a2c3381ec3c99292965db2b09de0d7fec414c00032bbd'
+sha256sums=('73bbd5602f52ab5aa4d83f465134871b6c87bda25371d098f6da5a3d98517ed4'
 'SKIP'
 '40d298ca77c0459ade4ef9fc68a3a7450273b098b9f7edfb0a5251c5db434cfc'
+'98736aefef21e575e450f8066685ba82771264409412e33491ab0a54e4407ba7'
 'e1a22777c65854041f16fc0a2db3218d17b4d7e7ec7ab7a77cf49c71277c1515'
 '2af318c52ae0fe5428e8a9245d1b0fc3bc5ce153842d1563329ceb1edfa83ddd')
 
@@ -34,6 +36,10 @@
 
   # openssl 1.1.0
   patch -Np1 < "${srcdir}"/0001-openssl-1-1-0.patch
+
+  # revert to fix the build
+  # mroonga after-merge CMakeLists.txt fixes
+  patch -Np1 -R < 
"${srcdir}"/0002-mroonga-after-merge-CMakeLists.txt-fixes.patch
 }
 
 build() {
@@ 

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

2017-11-14 Thread Anatol Pomozov
Date: Tuesday, November 14, 2017 @ 22:26:17
  Author: anatolik
Revision: 309984

Remove i686 arch

Deleted:
  re2c/repos/extra-i686/


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

2017-11-14 Thread Anatol Pomozov
Date: Tuesday, November 14, 2017 @ 22:22:20
  Author: anatolik
Revision: 309983

archrelease: copy trunk to testing-x86_64

Added:
  alsa-lib/repos/testing-x86_64/
  alsa-lib/repos/testing-x86_64/PKGBUILD
(from rev 309982, alsa-lib/trunk/PKGBUILD)

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

Copied: alsa-lib/repos/testing-x86_64/PKGBUILD (from rev 309982, 
alsa-lib/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2017-11-14 22:22:20 UTC (rev 309983)
@@ -0,0 +1,26 @@
+# $Id$
+# Contributor: judd 
+
+pkgname=alsa-lib
+pkgver=1.1.5
+pkgrel=1
+pkgdesc="An alternative implementation of Linux sound support"
+arch=('i686' 'x86_64')
+url="http://www.alsa-project.org;
+depends=('glibc')
+optdepends=('python2: for python smixer plugin')
+makedepends=('python2')
+license=('LGPL')
+source=(ftp://ftp.alsa-project.org/pub/lib/$pkgname-$pkgver.tar.bz2)
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  ./configure --without-debug --prefix=/usr --with-pythonlibs="-lpthread -lm 
-ldl -lpython2.7" --with-pythonincludes=-I/usr/include/python2.7
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}
+md5sums=('a2b465c3a5265d8a57f3ff39c6c4fc29')


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

2017-11-14 Thread Anatol Pomozov
Date: Tuesday, November 14, 2017 @ 22:21:51
  Author: anatolik
Revision: 309982

upgpkg: alsa-lib 1.1.5-1

Modified:
  alsa-lib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-14 20:12:04 UTC (rev 309981)
+++ PKGBUILD2017-11-14 22:21:51 UTC (rev 309982)
@@ -2,8 +2,8 @@
 # Contributor: judd 
 
 pkgname=alsa-lib
-pkgver=1.1.4.1
-pkgrel=2
+pkgver=1.1.5
+pkgrel=1
 pkgdesc="An alternative implementation of Linux sound support"
 arch=('i686' 'x86_64')
 url="http://www.alsa-project.org;
@@ -23,4 +23,4 @@
   cd "$srcdir/$pkgname-$pkgver"
   make DESTDIR="$pkgdir" install
 }
-md5sums=('29fa3e69122d3cf3e8f0e01a0cb1d183')
+md5sums=('a2b465c3a5265d8a57f3ff39c6c4fc29')


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

2017-11-14 Thread Jelle van der Waa
Date: Tuesday, November 14, 2017 @ 21:05:23
  Author: jelle
Revision: 266806

upgpkg: python-psutil 5.4.1-1

Modified:
  python-psutil/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-14 20:31:04 UTC (rev 266805)
+++ PKGBUILD2017-11-14 21:05:23 UTC (rev 266806)
@@ -3,7 +3,7 @@
 
 pkgbase=python-psutil
 pkgname=('python-psutil' 'python2-psutil')
-pkgver=5.4.0
+pkgver=5.4.1
 pkgrel=1
 arch=('i686' 'x86_64')
 url='https://github.com/giampaolo/psutil'
@@ -11,7 +11,7 @@
 makedepends=('python' 'python-setuptools' 'python2' 'python2-setuptools')
 checkdepends=('net-tools' 'procps-ng' 'python2-nose' 'python-nose')
 source=("https://github.com/giampaolo/psutil/archive/release-$pkgver.tar.gz;)
-md5sums=('38c7e18b63ef0af76720a72119f4b2e1')
+md5sums=('9cbd2cd4067259bc710ad4e1e61fd644')
 
 build() {
   cd psutil-release-$pkgver


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

2017-11-14 Thread Jelle van der Waa
Date: Tuesday, November 14, 2017 @ 21:05:39
  Author: jelle
Revision: 266807

archrelease: copy trunk to community-x86_64

Added:
  python-psutil/repos/community-x86_64/PKGBUILD
(from rev 266806, python-psutil/trunk/PKGBUILD)
Deleted:
  python-psutil/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-11-14 21:05:23 UTC (rev 266806)
+++ PKGBUILD2017-11-14 21:05:39 UTC (rev 266807)
@@ -1,62 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Luttringer
-
-pkgbase=python-psutil
-pkgname=('python-psutil' 'python2-psutil')
-pkgver=5.4.0
-pkgrel=1
-arch=('i686' 'x86_64')
-url='https://github.com/giampaolo/psutil'
-license=('custom: BSD')
-makedepends=('python' 'python-setuptools' 'python2' 'python2-setuptools')
-checkdepends=('net-tools' 'procps-ng' 'python2-nose' 'python-nose')
-source=("https://github.com/giampaolo/psutil/archive/release-$pkgver.tar.gz;)
-md5sums=('38c7e18b63ef0af76720a72119f4b2e1')
-
-build() {
-  cd psutil-release-$pkgver
-
-  msg2 python
-  python setup.py build --build-lib=build/python
-
-  msg2 python2
-  python2 setup.py build --build-lib=build/python2
-  find build/python2 -type f -exec \
-sed -i '1s,^#! \?/usr/bin/\(env \|\)python$,#!/usr/bin/python2,' {} \;
-}
-
-check() {
-  cd psutil-release-$pkgver
-
-  msg2 python
-  export PYTHONPATH="$PWD/build/python"
-  cd psutil/tests/
-  # FIXME: dynamic loading so
-
-
-  msg2 python2
-  export PYTHONPATH="$PWD/build/python2"
-  #python2 psutil/tests/runner.py
-}
-
-package_python-psutil() {
-  pkgdesc='A cross-platform process and system utilities module for Python'
-  depends=('glibc' 'python')
-
-  cd psutil-release-$pkgver
-  python setup.py build --build-lib=build/python \
-  install --root="$pkgdir" --optimize=1
-  install -D -m 644 LICENSE "$pkgdir/"usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-psutil() {
-  pkgdesc='A cross-platform process and system utilities module for Python2'
-  depends=('glibc' 'python2')
-
-  cd psutil-release-$pkgver
-  python2 setup.py build --build-lib=build/python2 \
-   install --root="$pkgdir" --optimize=1
-  install -D -m 644 LICENSE "$pkgdir/"usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-psutil/repos/community-x86_64/PKGBUILD (from rev 266806, 
python-psutil/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-11-14 21:05:39 UTC (rev 266807)
@@ -0,0 +1,62 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+
+pkgbase=python-psutil
+pkgname=('python-psutil' 'python2-psutil')
+pkgver=5.4.1
+pkgrel=1
+arch=('i686' 'x86_64')
+url='https://github.com/giampaolo/psutil'
+license=('custom: BSD')
+makedepends=('python' 'python-setuptools' 'python2' 'python2-setuptools')
+checkdepends=('net-tools' 'procps-ng' 'python2-nose' 'python-nose')
+source=("https://github.com/giampaolo/psutil/archive/release-$pkgver.tar.gz;)
+md5sums=('9cbd2cd4067259bc710ad4e1e61fd644')
+
+build() {
+  cd psutil-release-$pkgver
+
+  msg2 python
+  python setup.py build --build-lib=build/python
+
+  msg2 python2
+  python2 setup.py build --build-lib=build/python2
+  find build/python2 -type f -exec \
+sed -i '1s,^#! \?/usr/bin/\(env \|\)python$,#!/usr/bin/python2,' {} \;
+}
+
+check() {
+  cd psutil-release-$pkgver
+
+  msg2 python
+  export PYTHONPATH="$PWD/build/python"
+  cd psutil/tests/
+  # FIXME: dynamic loading so
+
+
+  msg2 python2
+  export PYTHONPATH="$PWD/build/python2"
+  #python2 psutil/tests/runner.py
+}
+
+package_python-psutil() {
+  pkgdesc='A cross-platform process and system utilities module for Python'
+  depends=('glibc' 'python')
+
+  cd psutil-release-$pkgver
+  python setup.py build --build-lib=build/python \
+  install --root="$pkgdir" --optimize=1
+  install -D -m 644 LICENSE "$pkgdir/"usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-psutil() {
+  pkgdesc='A cross-platform process and system utilities module for Python2'
+  depends=('glibc' 'python2')
+
+  cd psutil-release-$pkgver
+  python2 setup.py build --build-lib=build/python2 \
+   install --root="$pkgdir" --optimize=1
+  install -D -m 644 LICENSE "$pkgdir/"usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


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

2017-11-14 Thread Jan Steffens
Date: Tuesday, November 14, 2017 @ 20:31:04
  Author: heftig
Revision: 266805

archrelease: copy trunk to multilib-testing-x86_64

Added:
  lib32-dbus/repos/multilib-testing-x86_64/
  lib32-dbus/repos/multilib-testing-x86_64/PKGBUILD
(from rev 266804, lib32-dbus/trunk/PKGBUILD)

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

Copied: lib32-dbus/repos/multilib-testing-x86_64/PKGBUILD (from rev 266804, 
lib32-dbus/trunk/PKGBUILD)
===
--- multilib-testing-x86_64/PKGBUILD(rev 0)
+++ multilib-testing-x86_64/PKGBUILD2017-11-14 20:31:04 UTC (rev 266805)
@@ -0,0 +1,66 @@
+# $Id$
+# Contributor : Ionut Biru 
+
+pkgname=lib32-dbus
+_pkgbasename=dbus
+pkgver=1.12.2
+pkgrel=1
+pkgdesc="Freedesktop.org message bus system (32-bit)"
+url="https://wiki.freedesktop.org/www/Software/dbus/;
+arch=(x86_64)
+license=(GPL custom)
+provides=(lib32-libdbus)
+conflicts=(lib32-libdbus)
+replaces=(lib32-libdbus)
+depends=(lib32-systemd dbus)
+makedepends=(gcc-multilib lib32-glib2 lib32-expat git autoconf-archive)
+_commit=0f0968336b9711349023e1d41f075b2bccf7c20b  # tags/dbus-1.12.2^0
+source=("git+https://anongit.freedesktop.org/git/dbus/dbus#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd dbus
+  git describe --tags | sed 's/^dbus-//;s/-/+/g'
+}
+
+prepare() {
+  cd dbus
+  git cherry-pick -n 09cb6d7b467f6d1c6685ee9ccc171f4dddbe1f42
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  export CC="gcc -m32"
+  export CXX="g++ -m32"
+  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
+
+  cd dbus
+
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
--libdir=/usr/lib32 \
+  --libexecdir=/usr/lib/dbus-1.0 --with-dbus-user=dbus \
+  --with-system-pid-file=/run/dbus/pid \
+  --with-system-socket=/run/dbus/system_bus_socket \
+  --with-console-auth-dir=/run/console/ \
+  --enable-inotify --disable-static \
+  --disable-verbose-mode --disable-asserts --disable-checks \
+  --with-systemdsystemunitdir=/usr/lib/systemd/system \
+  --enable-systemd --enable-user-session
+  make
+}
+
+check() {
+  cd dbus
+  make check
+}
+
+package() {
+  cd dbus
+
+  make DESTDIR="$pkgdir" install
+
+  rm -r "$pkgdir"/usr/{bin,include,lib,share}
+  rm -r "$pkgdir"/{etc,var}
+
+  install -d "$pkgdir/usr/share/licenses"
+  ln -s dbus "$pkgdir/usr/share/licenses/$pkgname"
+}


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

2017-11-14 Thread Jan Steffens
Date: Tuesday, November 14, 2017 @ 20:30:13
  Author: heftig
Revision: 266804

1.12.2-1

Modified:
  lib32-dbus/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-14 20:26:26 UTC (rev 266803)
+++ PKGBUILD2017-11-14 20:30:13 UTC (rev 266804)
@@ -3,7 +3,7 @@
 
 pkgname=lib32-dbus
 _pkgbasename=dbus
-pkgver=1.12.0
+pkgver=1.12.2
 pkgrel=1
 pkgdesc="Freedesktop.org message bus system (32-bit)"
 url="https://wiki.freedesktop.org/www/Software/dbus/;
@@ -14,7 +14,7 @@
 replaces=(lib32-libdbus)
 depends=(lib32-systemd dbus)
 makedepends=(gcc-multilib lib32-glib2 lib32-expat git autoconf-archive)
-_commit=98294ab81a4d7ef00b6de5149344d92278c38593  # tags/dbus-1.12.0^0
+_commit=0f0968336b9711349023e1d41f075b2bccf7c20b  # tags/dbus-1.12.2^0
 source=("git+https://anongit.freedesktop.org/git/dbus/dbus#commit=$_commit;)
 sha256sums=('SKIP')
 


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

2017-11-14 Thread Jan Steffens
Date: Tuesday, November 14, 2017 @ 20:26:26
  Author: heftig
Revision: 266803

archrelease: copy trunk to multilib-testing-x86_64

Added:
  lib32-fontconfig/repos/multilib-testing-x86_64/
  lib32-fontconfig/repos/multilib-testing-x86_64/PKGBUILD
(from rev 266802, lib32-fontconfig/trunk/PKGBUILD)
  lib32-fontconfig/repos/multilib-testing-x86_64/lib32-fontconfig.hook
(from rev 266802, lib32-fontconfig/trunk/lib32-fontconfig.hook)
  lib32-fontconfig/repos/multilib-testing-x86_64/lib32-fontconfig.install
(from rev 266802, lib32-fontconfig/trunk/lib32-fontconfig.install)

--+
 PKGBUILD |   72 +
 lib32-fontconfig.hook|   11 ++
 lib32-fontconfig.install |   10 ++
 3 files changed, 93 insertions(+)

Copied: lib32-fontconfig/repos/multilib-testing-x86_64/PKGBUILD (from rev 
266802, lib32-fontconfig/trunk/PKGBUILD)
===
--- multilib-testing-x86_64/PKGBUILD(rev 0)
+++ multilib-testing-x86_64/PKGBUILD2017-11-14 20:26:26 UTC (rev 266803)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+_pkgbasename=fontconfig
+pkgname=lib32-$_pkgbasename
+pkgver=2.12.6+5+g665584a
+pkgrel=1
+pkgdesc="A library for configuring and customizing font access (32-bit)"
+arch=(x86_64)
+url="https://www.freedesktop.org/wiki/Software/fontconfig/;
+license=(custom)
+depends=(lib32-expat lib32-freetype2 $_pkgbasename)
+makedepends=(git autoconf-archive gperf python-lxml python-six)
+install=lib32-fontconfig.install
+_commit=665584a19b0ec227c93643ffb0540d11ac8ecf7f  # fc-2-12
+source=("git+https://anongit.freedesktop.org/git/fontconfig#commit=$_commit;
+lib32-fontconfig.hook)
+sha256sums=('SKIP'
+'d97c0c5b88023da5a2acf64cf560265390a9365305c43b8e86b4f89348e727b3')
+
+# a nice page to test font matching:
+# http://zipcon.net/~swhite/docs/computers/browsers/fonttest.html
+# http://getemoji.com/
+
+pkgver() {
+  cd $_pkgbasename
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $_pkgbasename
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $_pkgbasename
+
+  export CC="gcc -m32"
+  export CXX="g++ -m32"
+  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
+
+  ./configure --prefix=/usr \
+--libdir=/usr/lib32 \
+--sysconfdir=/etc \
+--with-templatedir=/etc/fonts/conf.avail \
+--with-xmldir=/etc/fonts \
+--localstatedir=/var \
+--disable-static \
+--with-default-fonts=/usr/share/fonts \
+--with-add-fonts=/usr/local/share/fonts
+  make
+}
+
+check() {
+  cd $_pkgbasename
+  make -k check
+}
+
+package() {
+  cd $_pkgbasename
+  make DESTDIR="$pkgdir" install
+
+  rm -rf "$pkgdir"/{etc,usr/{include,share}}
+  find "$pkgdir/usr/bin" -not -type d -not -name fc-cache -delete
+  mv "$pkgdir"/usr/bin/fc-cache{,-32}
+
+  install -Dm644 ../lib32-fontconfig.hook 
"$pkgdir/usr/share/libalpm/hooks/lib32-fontconfig.hook"
+
+  # Install license
+  mkdir -p "$pkgdir/usr/share/licenses"
+  ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname"
+}

Copied: lib32-fontconfig/repos/multilib-testing-x86_64/lib32-fontconfig.hook 
(from rev 266802, lib32-fontconfig/trunk/lib32-fontconfig.hook)
===
--- multilib-testing-x86_64/lib32-fontconfig.hook   
(rev 0)
+++ multilib-testing-x86_64/lib32-fontconfig.hook   2017-11-14 20:26:26 UTC 
(rev 266803)
@@ -0,0 +1,11 @@
+[Trigger]
+Type = File
+Operation = Install
+Operation = Upgrade
+Operation = Remove
+Target = usr/share/fonts/*
+
+[Action]
+Description = Updating 32-bit fontconfig cache...
+When = PostTransaction
+Exec = /usr/bin/fc-cache-32 -s

Copied: lib32-fontconfig/repos/multilib-testing-x86_64/lib32-fontconfig.install 
(from rev 266802, lib32-fontconfig/trunk/lib32-fontconfig.install)
===
--- multilib-testing-x86_64/lib32-fontconfig.install
(rev 0)
+++ multilib-testing-x86_64/lib32-fontconfig.install2017-11-14 20:26:26 UTC 
(rev 266803)
@@ -0,0 +1,10 @@
+post_install() {
+  post_upgrade $1
+}
+
+post_upgrade() {
+  echo -n "Rebuilding 32-bit fontconfig cache..."
+  # a full forced directory scan is required here
+  /usr/bin/fc-cache-32 -rs
+  echo " done."
+}


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

2017-11-14 Thread Jan Steffens
Date: Tuesday, November 14, 2017 @ 20:25:52
  Author: heftig
Revision: 266802

2.12.6+5+g665584a-1

Modified:
  lib32-fontconfig/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-14 19:36:45 UTC (rev 266801)
+++ PKGBUILD2017-11-14 20:25:52 UTC (rev 266802)
@@ -3,7 +3,7 @@
 
 _pkgbasename=fontconfig
 pkgname=lib32-$_pkgbasename
-pkgver=2.12.6
+pkgver=2.12.6+5+g665584a
 pkgrel=1
 pkgdesc="A library for configuring and customizing font access (32-bit)"
 arch=(x86_64)
@@ -12,7 +12,7 @@
 depends=(lib32-expat lib32-freetype2 $_pkgbasename)
 makedepends=(git autoconf-archive gperf python-lxml python-six)
 install=lib32-fontconfig.install
-_commit=b546940435ebfb0df575bc7a2350d1e913919c34  # tags/2.12.6^0
+_commit=665584a19b0ec227c93643ffb0540d11ac8ecf7f  # fc-2-12
 source=("git+https://anongit.freedesktop.org/git/fontconfig#commit=$_commit;
 lib32-fontconfig.hook)
 sha256sums=('SKIP'


[arch-commits] Commit in firefox/repos (9 files)

2017-11-14 Thread Jan Steffens
Date: Tuesday, November 14, 2017 @ 20:12:04
  Author: heftig
Revision: 309981

archrelease: copy trunk to testing-x86_64

Added:
  firefox/repos/testing-x86_64/
  firefox/repos/testing-x86_64/PKGBUILD
(from rev 309980, firefox/trunk/PKGBUILD)
  firefox/repos/testing-x86_64/firefox-install-dir.patch
(from rev 309980, firefox/trunk/firefox-install-dir.patch)
  firefox/repos/testing-x86_64/firefox-symbolic.svg
(from rev 309980, firefox/trunk/firefox-symbolic.svg)
  firefox/repos/testing-x86_64/firefox.desktop
(from rev 309980, firefox/trunk/firefox.desktop)
  firefox/repos/testing-x86_64/no-plt.diff
(from rev 309980, firefox/trunk/no-plt.diff)
  firefox/repos/testing-x86_64/upload-symbol-archive
(from rev 309980, firefox/trunk/upload-symbol-archive)
  firefox/repos/testing-x86_64/wifi-disentangle.patch
(from rev 309980, firefox/trunk/wifi-disentangle.patch)
  firefox/repos/testing-x86_64/wifi-fix-interface.patch
(from rev 309980, firefox/trunk/wifi-fix-interface.patch)

---+
 PKGBUILD  |  190 ++
 firefox-install-dir.patch |   12 +
 firefox-symbolic.svg  |   30 
 firefox.desktop   |  311 
 no-plt.diff   |   48 ++
 upload-symbol-archive |   23 +++
 wifi-disentangle.patch|  245 ++
 wifi-fix-interface.patch  |   26 +++
 8 files changed, 885 insertions(+)

Copied: firefox/repos/testing-x86_64/PKGBUILD (from rev 309980, 
firefox/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2017-11-14 20:12:04 UTC (rev 309981)
@@ -0,0 +1,190 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Ionut Biru 
+# Contributor: Jakub Schmidtke 
+
+pkgname=firefox
+pkgver=57.0
+pkgrel=1
+pkgdesc="Standalone web browser from mozilla.org"
+arch=(i686 x86_64)
+license=(MPL GPL LGPL)
+url="https://www.mozilla.org/firefox/;
+depends=(gtk3 gtk2 mozilla-common libxt startup-notification mime-types 
dbus-glib ffmpeg
+ nss hunspell sqlite ttf-font libpulse)
+makedepends=(unzip zip diffutils python2 yasm mesa imake gconf inetutils 
xorg-server-xvfb
+ autoconf2.13 rust mercurial clang llvm jack)
+optdepends=('networkmanager: Location detection via available WiFi networks'
+'libnotify: Notification integration'
+'pulseaudio: Audio support'
+'speech-dispatcher: Text-to-Speech')
+options=(!emptydirs !makeflags !strip)
+_repo=https://hg.mozilla.org/mozilla-unified
+source=("hg+$_repo#tag=FIREFOX_${pkgver//./_}_RELEASE"
+$pkgname.desktop firefox-symbolic.svg
+wifi-disentangle.patch wifi-fix-interface.patch
+firefox-install-dir.patch no-plt.diff)
+sha256sums=('SKIP'
+'677e1bde4c6b3cff114345c211805c7c43085038ca0505718a11e96432e9811a'
+'a2474b32b9b2d7e0fb53a4c89715507ad1c194bef77713d798fa39d507def9e9'
+'f068b84ad31556095145d8fefc012dd3d1458948533ed3fff6cbc7250b6e73ed'
+'e98a3453d803cc7ddcb81a7dc83f883230dd8591bdf936fc5a868428979ed1f1'
+'d86e41d87363656ee62e12543e2f5181aadcff448e406ef3218e91865ae775cd'
+'ea8e1b871c0f1dd29cdea1b1a2e7f47bf4713e2ae7b947ec832dba7dfcc67daa')
+
+# Google API keys (see http://www.chromium.org/developers/how-tos/api-keys)
+# Note: These are for Arch Linux use ONLY. For your own distribution, please
+# get your own set of keys. Feel free to contact foutre...@archlinux.org for
+# more information.
+_google_api_key=AIzaSyDwr302FpOSkGRpLlUpPThNTDPbXcIn_FM
+
+# Mozilla API keys (see https://location.services.mozilla.com/api)
+# Note: These are for Arch Linux use ONLY. For your own distribution, please
+# get your own set of keys. Feel free to contact hef...@archlinux.org for
+# more information.
+_mozilla_api_key=16674381-f021-49de-8622-3021c5942aff
+
+prepare() {
+  mkdir path
+  ln -s /usr/bin/python2 path/python
+
+  cd mozilla-unified
+  patch -Np1 -i ../firefox-install-dir.patch
+
+  # https://bugzilla.mozilla.org/show_bug.cgi?id=1314968
+  patch -Np1 -i ../wifi-disentangle.patch
+  patch -Np1 -i ../wifi-fix-interface.patch
+
+  # https://bugzilla.mozilla.org/show_bug.cgi?id=1382942
+  patch -Np1 -i ../no-plt.diff
+
+  echo -n "$_google_api_key" >google-api-key
+  echo -n "$_mozilla_api_key" >mozilla-api-key
+
+  cat >.mozconfig 

[arch-commits] Commit in firefox-i18n/repos (testing-any testing-any/PKGBUILD)

2017-11-14 Thread Jan Steffens
Date: Tuesday, November 14, 2017 @ 20:11:08
  Author: heftig
Revision: 309980

archrelease: copy trunk to testing-any

Added:
  firefox-i18n/repos/testing-any/
  firefox-i18n/repos/testing-any/PKGBUILD
(from rev 309979, firefox-i18n/trunk/PKGBUILD)

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

Copied: firefox-i18n/repos/testing-any/PKGBUILD (from rev 309979, 
firefox-i18n/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2017-11-14 20:11:08 UTC (rev 309980)
@@ -0,0 +1,232 @@
+# $Id$
+# Maintainer: Thomas Baechler 
+# Contributor: Jaroslaw Swierczynski 
+# Contributor: Michal Hybner 
+# Contributor: Andrea Scarpino 
+
+pkgbase=firefox-i18n
+pkgver=57.0
+pkgrel=1
+pkgdesc="Language pack for Firefox"
+arch=('any')
+url="http://www.mozilla.com/;
+license=('MPL' 'GPL')
+
+_languages=(
+  'ach"Acholi"'
+  'af "Afrikaans"'
+  'an "Aragonese"'
+  'ar "Arabic"'
+  'as "Assamese"'
+  'ast"Asturian"'
+  'az "Azerbaijani"'
+  'be "Belarusian"'
+  'bg "Bulgarian"'
+  'bn-BD  "Bengali (Bangladesh)"'
+  'bn-IN  "Bengali (India)"'
+  'br "Breton"'
+  'bs "Bosnian"'
+  'ca "Catalan"'
+  'cak"Maya Kaqchikel"'
+  'cs "Czech"'
+  'cy "Welsh"'
+  'da "Danish"'
+  'de "German"'
+  'dsb"Lower Sorbian"'
+  'el "Greek"'
+  'en-GB  "English (British)"'
+  'en-US  "English (US)"'
+  'en-ZA  "English (South African)"'
+  'eo "Esperanto"'
+  'es-AR  "Spanish (Argentina)"'
+  'es-CL  "Spanish (Chile)"'
+  'es-ES  "Spanish (Spain)"'
+  'es-MX  "Spanish (Mexico)"'
+  'et "Estonian"'
+  'eu "Basque"'
+  'fa "Persian"'
+  'ff "Fulah"'
+  'fi "Finnish"'
+  'fr "French"'
+  'fy-NL  "Frisian"'
+  'ga-IE  "Irish"'
+  'gd "Gaelic (Scotland)"'
+  'gl "Galician"'
+  'gn "Guarani"'
+  'gu-IN  "Gujarati (India)"'
+  'he "Hebrew"'
+  'hi-IN  "Hindi (India)"'
+  'hr "Croatian"'
+  'hsb"Upper Sorbian"'
+  'hu "Hungarian"'
+  'hy-AM  "Armenian"'
+  'id "Indonesian"'
+  'is "Icelandic"'
+  'it "Italian"'
+  'ja "Japanese"'
+  'ka "Georgian"'
+  'kab"Kabyle"'
+  'kk "Kazakh"'
+  'km "Khmer"'
+  'kn "Kannada"'
+  'ko "Korean"'
+  'lij"Ligurian"'
+  'lt "Lithuanian"'
+  'lv "Latvian"'
+  'mai"Maithili"'
+  'mk "Macedonian"'
+  'ml "Malayalam"'
+  'mr "Marathi"'
+  'ms "Malay"'
+  'my "Burmese"'
+  'nb-NO  "Norwegian (Bokmål)"'
+  'nl "Dutch"'
+  'nn-NO  "Norwegian (Nynorsk)"'
+  'or "Oriya"'
+  'pa-IN  "Punjabi (India)"'
+  'pl "Polish"'
+  'pt-BR  "Portuguese (Brazilian)"'
+  'pt-PT  "Portuguese (Portugal)"'
+  'rm "Romansh"'
+  'ro "Romanian"'
+  'ru "Russian"'
+  'si "Sinhala"'
+  'sk "Slovak"'
+  'sl "Slovenian"'
+  'son"Songhai"'
+  'sq "Albanian"'
+  'sr "Serbian"'
+  'sv-SE  "Swedish"'
+  'ta "Tamil"'
+  'te "Telugu"'
+  'th "Thai"'
+  'tr "Turkish"'
+  'uk "Ukrainian"'
+  'ur "Urdu"'
+  'uz "Uzbek"'
+  'vi "Vietnamese"'
+  'xh "Xhosa"'
+  'zh-CN  "Chinese (Simplified)"'
+  'zh-TW  "Chinese (Traditional)"'
+)
+
+pkgname=()
+source=()
+_url=https://ftp.mozilla.org/pub/firefox/releases/$pkgver/linux-x86_64/xpi
+
+for _lang in "${_languages[@]}"; do
+  _locale=${_lang%% *}
+  _pkgname=firefox-i18n-${_locale,,}
+
+  pkgname+=($_pkgname)
+  source+=("firefox-i18n-$pkgver-$_locale.xpi::$_url/$_locale.xpi")
+  eval "package_$_pkgname() {
+_package $_lang
+  }"
+done
+
+# Don't extract anything
+noextract=(${source[@]%%::*})
+
+_package() {
+  pkgdesc="$2 language pack for Firefox"
+  depends=("firefox>=$pkgver")
+  install -Dm644 firefox-i18n-$pkgver-$1.xpi \
+
"$pkgdir/usr/lib/firefox/browser/extensions/langpack-$1...@firefox.mozilla.org.xpi"
+}
+
+sha256sums=('000d31d272ec1dcf94fb47cd006c96ac74c0109ad78ff3c2b66eb7b1db1d3c74'
+'a3e1aff345f6ffb1e82ba55c04e91ac6da0ae02f8d9146c963c7cec812a788d5'
+'a8708b1a8b07161e1bbdda9594ae3c17be59916c17fabbb857a51c093f4ae814'
+'8d2ef26e5fb1f2f15585ac1a6af22300f4e9a99caf64f10bb4f9f8d5f4fa6bad'
+'1ba6874911e21bc052fafdeae0637a59d05cbcf9602cf7007a685d4b35363525'
+'2bc6b317ae7d4c433e21ba2ebd1d72bf9587edfc9347ca9924cd12fcdd157426'
+'3a60286c17bc34e05550e69b744a27fb0f6e9960cc3aba4c4796150f2bab2bad'
+'eaea8efbfb73ce7d9f64cf534ac0b64b48fc231f82f40001a53062c35ba30e85'
+'13db806a1213fb759f4489f6931a9c9309ad7fe3e6f9baeb55796efc9f60f358'
+'3ccca355b507383473799481468f366c5d9634034863bdd519ab733867d17851'
+'0c27d535c64640fd1a1571295257867bda0d637f0559c62ce6637478bcdc38ab'
+

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

2017-11-14 Thread Andreas Radke
Date: Tuesday, November 14, 2017 @ 20:04:27
  Author: andyrtr
Revision: 309979

archrelease: copy trunk to testing-x86_64

Added:
  fontconfig/repos/testing-x86_64/
  fontconfig/repos/testing-x86_64/PKGBUILD
(from rev 309978, fontconfig/trunk/PKGBUILD)
  fontconfig/repos/testing-x86_64/fontconfig.hook
(from rev 309978, fontconfig/trunk/fontconfig.hook)
  fontconfig/repos/testing-x86_64/fontconfig.install
(from rev 309978, fontconfig/trunk/fontconfig.install)

+
 PKGBUILD   |   63 +++
 fontconfig.hook|   11 
 fontconfig.install |   38 ++
 3 files changed, 112 insertions(+)

Copied: fontconfig/repos/testing-x86_64/PKGBUILD (from rev 309978, 
fontconfig/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2017-11-14 20:04:27 UTC (rev 309979)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=fontconfig
+pkgver=2.12.6+5+g665584a
+pkgrel=1
+pkgdesc="A library for configuring and customizing font access"
+arch=(x86_64)
+url="https://www.freedesktop.org/wiki/Software/fontconfig/;
+license=(custom)
+depends=(expat freetype2)
+makedepends=(git autoconf-archive gperf python-lxml python-six docbook-utils 
docbook-sgml
+ perl-sgmls 'texlive-formatsextra>=2017' lynx)
+install=fontconfig.install
+_commit=665584a19b0ec227c93643ffb0540d11ac8ecf7f # fc-2-12
+source=("git+https://anongit.freedesktop.org/git/fontconfig#commit=$_commit;
+fontconfig.hook)
+sha256sums=('SKIP'
+'672f6a1c5e164671955ce807e670306194142a1794ce88df653aa717a972e274')
+
+# a nice page to test font matching:
+# http://zipcon.net/~swhite/docs/computers/browsers/fonttest.html
+# http://getemoji.com/
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr \
+--sysconfdir=/etc \
+--with-templatedir=/etc/fonts/conf.avail \
+--with-xmldir=/etc/fonts \
+--localstatedir=/var \
+--disable-static \
+--with-default-fonts=/usr/share/fonts \
+--with-add-fonts=/usr/local/share/fonts
+  make
+}
+
+check() {
+  cd $pkgname
+  make -k check
+}
+
+_install_conf() {
+  install -m644 "$1" "$pkgdir/etc/fonts/conf.avail"
+  ln -s "../conf.avail/${1##*/}" "$pkgdir/etc/fonts/conf.d"
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
+  install -Dm644 ../fontconfig.hook 
"$pkgdir/usr/share/libalpm/hooks/fontconfig.hook"
+}

Copied: fontconfig/repos/testing-x86_64/fontconfig.hook (from rev 309978, 
fontconfig/trunk/fontconfig.hook)
===
--- testing-x86_64/fontconfig.hook  (rev 0)
+++ testing-x86_64/fontconfig.hook  2017-11-14 20:04:27 UTC (rev 309979)
@@ -0,0 +1,11 @@
+[Trigger]
+Type = File
+Operation = Install
+Operation = Upgrade
+Operation = Remove
+Target = usr/share/fonts/*
+
+[Action]
+Description = Updating fontconfig cache...
+When = PostTransaction
+Exec = /usr/bin/fc-cache -s

Copied: fontconfig/repos/testing-x86_64/fontconfig.install (from rev 309978, 
fontconfig/trunk/fontconfig.install)
===
--- testing-x86_64/fontconfig.install   (rev 0)
+++ testing-x86_64/fontconfig.install   2017-11-14 20:04:27 UTC (rev 309979)
@@ -0,0 +1,38 @@
+post_install() {
+  cat << _EOF
+  
+  Fontconfig configuration is done via /etc/fonts/conf.avail and conf.d.
+  Read /etc/fonts/conf.d/README for more information.
+
+  Configuration via /etc/fonts/local.conf is still possible,
+  but is no longer recommended for options available in conf.avail.
+
+  Main systemwide configuration should be done by symlinks
+  (especially for autohinting, sub-pixel and lcdfilter):
+  
+  cd /etc/fonts/conf.d
+  ln -s ../conf.avail/XX-foo.conf
+  
+  Check also https://wiki.archlinux.org/index.php/Font_Configuration
+  and https://wiki.archlinux.org/index.php/Fonts.
+
+_EOF
+
+  post_upgrade $1
+}
+
+post_upgrade() {
+  echo -n "Rebuilding fontconfig cache..."
+  # a full forced directory scan is required here
+  /usr/bin/fc-cache -rs
+  echo " done."
+}
+
+post_remove() {
+  cat << _EOF
+
+  Check for dead symlinks and leftover files 
+  in /etc/fonts/conf.d/
+  
+_EOF
+}


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

2017-11-14 Thread Andreas Radke
Date: Tuesday, November 14, 2017 @ 20:04:07
  Author: andyrtr
Revision: 309978

upgpkg: fontconfig 2.12.6+5+g665584a-1

update to latest git commit of stable branch

Modified:
  fontconfig/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-14 19:56:15 UTC (rev 309977)
+++ PKGBUILD2017-11-14 20:04:07 UTC (rev 309978)
@@ -2,10 +2,10 @@
 # Maintainer: Jan de Groot 
 
 pkgname=fontconfig
-pkgver=2.12.6
+pkgver=2.12.6+5+g665584a
 pkgrel=1
 pkgdesc="A library for configuring and customizing font access"
-arch=(i686 x86_64)
+arch=(x86_64)
 url="https://www.freedesktop.org/wiki/Software/fontconfig/;
 license=(custom)
 depends=(expat freetype2)
@@ -12,7 +12,7 @@
 makedepends=(git autoconf-archive gperf python-lxml python-six docbook-utils 
docbook-sgml
  perl-sgmls 'texlive-formatsextra>=2017' lynx)
 install=fontconfig.install
-_commit=b546940435ebfb0df575bc7a2350d1e913919c34  # tags/2.12.6^0
+_commit=665584a19b0ec227c93643ffb0540d11ac8ecf7f # fc-2-12
 source=("git+https://anongit.freedesktop.org/git/fontconfig#commit=$_commit;
 fontconfig.hook)
 sha256sums=('SKIP'


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

2017-11-14 Thread Jan Steffens
Date: Tuesday, November 14, 2017 @ 19:56:15
  Author: heftig
Revision: 309977

57.0-1

Modified:
  firefox-i18n/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-14 19:55:58 UTC (rev 309976)
+++ PKGBUILD2017-11-14 19:56:15 UTC (rev 309977)
@@ -5,7 +5,7 @@
 # Contributor: Andrea Scarpino 
 
 pkgbase=firefox-i18n
-pkgver=56.0.2
+pkgver=57.0
 pkgrel=1
 pkgdesc="Language pack for Firefox"
 arch=('any')
@@ -102,6 +102,7 @@
   'th "Thai"'
   'tr "Turkish"'
   'uk "Ukrainian"'
+  'ur "Urdu"'
   'uz "Uzbek"'
   'vi "Vietnamese"'
   'xh "Xhosa"'
@@ -111,7 +112,7 @@
 
 pkgname=()
 source=()
-_url=https://ftp.mozilla.org/pub/mozilla.org/firefox/releases/$pkgver/linux-i686/xpi
+_url=https://ftp.mozilla.org/pub/firefox/releases/$pkgver/linux-x86_64/xpi
 
 for _lang in "${_languages[@]}"; do
   _locale=${_lang%% *}
@@ -134,97 +135,98 @@
 
"$pkgdir/usr/lib/firefox/browser/extensions/langpack-$1...@firefox.mozilla.org.xpi"
 }
 
-sha256sums=('a78c4900c9dac71ea312d5ceda13987f4f8418ab078374c0e292cd30ce79aa23'
-'e0ea5e99eb7cedd0c3893ae4baa3ca2af7f814bc069dcbf921069dcaba762fc6'
-'18e3c4e6f85fb296bd955b110ba2c6a381ba4ba8de3a0e2990bc4618f9438593'
-'c8dcb494321e5ef34092b7555ec67147461b387803df895c30858314f0509acb'
-'e77f99a72083b49e30f453d1f40ac670e42e6a637b8bb4e7c914f74b24e6b582'
-'e4fe6028af88b67dce678e6a1215cda2c2aa0cbe76eb95947c46e08d93bb23bc'
-'5d9cd26da6e1afe41c9d032054b066a9e0a13f7cfd9701e8126147f405ae6f1a'
-'647318eb3b3060ba2384ecf4b4b96fb70fb54f1428c20f776d8d99f75eed5f49'
-'a844374d3453747f30382acf6019d379596f812f68d49ba7245a18993cea5ffb'
-'caafe8df8418ed513e4f88e91f8b8c35e8a1d13fa54bd54f3a0654ec1f02'
-'4278938cf3be47f2e7a865a2221c10f383b8c7930f71b2bd0c4ce09c1ff8a3c8'
-'65e8b0a3e55e99701e0ecfb9cdb0775afc0946f23eab34d4ada4f0d973d2076d'
-'fef54b5ba9231eaedbe216c1f9e7c86d831ed032d1fcd6e5dd15a06619ad69ac'
-'11dc866f5f2a16622fa45c36c174150293e123bfd970890e4403ed224d6e4eb6'
-'1ed05bcdb3977850ae21847f70122111ff459cc6669130ec9db5ccf11dde117f'
-'1191121195a77ec1315ec379b307819f1ce6b15bfa1bb9fc31ec0148cb08bcf5'
-'a04d0d37f46b89d2aba85eebc1524daba41b3a6db468e61a924e83b2814d8845'
-'3822d31c6b83317216f5124d603d9a8b8180a06d2407426dd90b71891c155f0c'
-'ee02b96baf96be7e69ff12f06576a270e48ca454cc8f93c51070ebdd9c2a03f7'
-'227588519f2ae092f6cbf0531287c5c36b7037c3355cc0d9e0e024d4e84472e3'
-'ace7c78e28297ea4dcc90a2b8c2881afc812a2416ae4cdba499749349bc2d3f3'
-'55fb37a478f2521b1b1543498d373ade08126c3ac71127bfbde504d8a3f95e16'
-'618f390c9a36aed65860d6ad20444c9c6224471d0a394de92a21262291327ff2'
-'2fa254426d945152e9eb01cc02a8f86415fa5425aefed9825bd1dea9b6d0b76a'
-'f1d9e7acc5bb36a2acfb1659ad0857e5d2c9800836d096f41ceb87977a6e7377'
-'12f34c15fb4cf11e5c007ea19a97f91370a66e192cc3c0aed5405659be36eaa3'
-'5239da279a01681c00ece001d1477abba04b41d50fd442e761140ba93b68870f'
-'98b7422e833226916953ac89201652f406f84c805d293ab949adae475fc03a7c'
-'9516c169b883f8208c996f461221e9bb917e2e56c1f67d01f67026a8f5de3a1b'
-'dff5cbe5b933511fc10c1209dde31c45a521c9e687d909f4915eaf3eac8a3ad3'
-'d47fe44fcab9328102334596678fe89289d8de44cd9018e13e1bcc70823ec6ec'
-'8f25e71eb0ee9ad9e90d9948012713013ee03b6fe1b3837b1d903c5102be0a93'
-'b8416ca244cb8c99744dc3c6daa55d893754ed051ea9731f57b49edc2f0e18f1'
-'1c6ecc0d72a500f5a77a8fdde5e288ce2c578bc1b1de3d1a062e6d7a71765130'
-'3aa8e3e74e35a4e1ca948cb83b42bb9b2c95ec6abdbc8b0872129f6f75d4e2e1'
-'21b16ee4d0a232d6860c9fa6db296544e13e9500796451a98adebcdf35f88c66'
-'4d780a2c0f362742f069842ae2d7ddf3dd8177e66405c9c570ef52b2e7de1f32'
-'9e4e1ffc31853fe3e0d4e9e23cd1ccdf0be1b50182cefc9581b902370a3ae2fc'
-'7dc3615f3eca3bc09472207b8d78644923526dd51651a6a04cf8449bf78cca4b'
-'32d64cb5ceb3a8b53abafd0699d9697f190e137155484fc06968efe3ab2da294'
-'574654d88abc8d620d5d29c09a281738ff463f8a0e09386373005a4c33cd7adf'
-'aa4437d071736c8009ff81f79cf51348fa7ce02d82dd603cc08c00997de79ddc'
-'9faa3d8242f2e13e82334c91018137a23a88374d6d8bcbdbca0bac69b709487d'
-'78ea8859fc47c3fd35055ad7dacd3c89192619f637d1b10a5515db49c1aabd63'
-'7e868a01a8c881319703dd2d40aa7a90a2a6afda350a93cdee785c1cee3e334c'
-'ba7c06ffe790cb31450c47ffc73c0ef402e759e8d6798c284ab3004aa9b1a154'
-'5a78e97fe3b0a106a9839714e2a811d52501e5c427ba9c943bdcbdd2beb303cb'
-

[arch-commits] Commit in firefox/trunk (5 files)

2017-11-14 Thread Jan Steffens
Date: Tuesday, November 14, 2017 @ 19:55:58
  Author: heftig
Revision: 309976

57.0-1

Modified:
  firefox/trunk/PKGBUILD
  firefox/trunk/firefox.desktop
Deleted:
  firefox/trunk/0001-Bug-1384062-Make-SystemResourceMonitor.stop-more-res.patch
  firefox/trunk/glibc-2.26-fix.diff
  firefox/trunk/plugin-crash.diff

-+
 0001-Bug-1384062-Make-SystemResourceMonitor.stop-more-res.patch |  117 
 PKGBUILD|   30 -
 firefox.desktop |1 
 glibc-2.26-fix.diff |  258 
--
 plugin-crash.diff   |   50 -
 5 files changed, 9 insertions(+), 447 deletions(-)

Deleted: 0001-Bug-1384062-Make-SystemResourceMonitor.stop-more-res.patch
===
--- 0001-Bug-1384062-Make-SystemResourceMonitor.stop-more-res.patch 
2017-11-14 19:12:55 UTC (rev 309975)
+++ 0001-Bug-1384062-Make-SystemResourceMonitor.stop-more-res.patch 
2017-11-14 19:55:58 UTC (rev 309976)
@@ -1,117 +0,0 @@
-From 2874ecd82e9671f774bdfda41fe0857fcb916c13 Mon Sep 17 00:00:00 2001
-Message-Id: 
<2874ecd82e9671f774bdfda41fe0857fcb916c13.1506634385.git.jan.steff...@gmail.com>
-From: Mike Hommey 
-Date: Wed, 16 Aug 2017 13:16:16 +0900
-Subject: [PATCH] Bug 1384062 - Make SystemResourceMonitor.stop more resilient
- to errors. r=ahal,gps
-
-The poll() call in SystemResourceMonitor.stop might fail even though
-there is something to read from the pipe, in some corner cases, and
-python won't let us know about it. In that case, an exception is thrown,
-leaving the SystemResourceMonitor (and its callers) in a weird state. In
-practice, this leads BuildMonitor.__exit__ to recall stop, which then
-fails.
-
-So when poll() throws an exception, we pretend there's still something
-to read, and we try to read anyways. If there is something to read,
-recv() will return it, otherwise, it will throw an exception of its own,
-which we catch, pretending we're done.
-
-Furthermore, when there is nothing to read from the pipe, poll() simply
-returns False, and our loop never sets `done` to True, and we then hit
-an assert, which doesn't have its place here, so we remove it.
-
-Finally, the other end of the pipe might have died at any time, making
-sending over the pipe fail, so we also protect against that.
-
-With all these changes, it feels like the reason to backout bug 1239939
-in bug 1272782 should have been dealt with, and we can drop the timeout
-again.
-
---HG--
-extra : rebase_source : ac72dd5b2602cf3ffddfb429f95e02380f939893

- .../mozsystemmonitor/resourcemonitor.py| 38 +++---
- 1 file changed, 26 insertions(+), 12 deletions(-)
-
-diff --git 
a/testing/mozbase/mozsystemmonitor/mozsystemmonitor/resourcemonitor.py 
b/testing/mozbase/mozsystemmonitor/mozsystemmonitor/resourcemonitor.py
-index 8f2ac95cbe505540..38f9bc986ac2a120 100644
 a/testing/mozbase/mozsystemmonitor/mozsystemmonitor/resourcemonitor.py
-+++ b/testing/mozbase/mozsystemmonitor/mozsystemmonitor/resourcemonitor.py
-@@ -289,47 +289,61 @@ class SystemResourceMonitor(object):
- assert self._running
- assert not self._stopped
- 
--self._pipe.send(('terminate',))
-+try:
-+self._pipe.send(('terminate',))
-+except Exception:
-+pass
- self._running = False
- self._stopped = True
- 
- self.measurements = []
- 
--done = False
--
- # The child process will send each data sample over the pipe
- # as a separate data structure. When it has finished sending
- # samples, it sends a special "done" message to indicate it
- # is finished.
--while self._pipe.poll(1.0):
--start_time, end_time, io_diff, cpu_diff, cpu_percent, virt_mem, \
--swap_mem = self._pipe.recv()
-+
-+# multiprocessing.Pipe is not actually a pipe on at least Linux.  that
-+# has an effect on the expected outcome of reading from it when the
-+# other end of the pipe dies, leading to possibly hanging on revc()
-+# below. So we must poll().
-+def poll():
-+try:
-+return self._pipe.poll(0.1)
-+except Exception:
-+# Poll might throw an exception even though there's still
-+# data to read. That happens when the underlying system call
-+# returns both POLLERR and POLLIN, but python doesn't tell us
-+# about it. So assume there is something to read, and we'll
-+# get an exception when trying to read the data.
-+return True
-+while poll():
-+try:
-+start_time, end_time, io_diff, cpu_diff, cpu_percent, 
virt_mem, \

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

2017-11-14 Thread Levente Polyak
Date: Tuesday, November 14, 2017 @ 19:36:32
  Author: anthraxx
Revision: 266800

upgpkg: python-bluepy 1.1.4-1

Modified:
  python-bluepy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-14 19:28:14 UTC (rev 266799)
+++ PKGBUILD2017-11-14 19:36:32 UTC (rev 266800)
@@ -3,11 +3,11 @@
 _pyname=bluepy-v
 pkgbase=python-bluepy
 pkgname=('python-bluepy' 'python2-bluepy')
-pkgver=1.1.2
+pkgver=1.1.4
 pkgrel=1
 pkgdesc='Python module for interfacing with Bluetooth LE devices through Bluez'
 url='https://github.com/IanHarvey/bluepy'
-arch=('i686' 'x86_64')
+arch=('x86_64')
 license=('GPL2')
 makedepends=('bluez' 'glib2'
  'python' 'python-setuptools' 'python-sphinx'
@@ -14,7 +14,8 @@
  'python2' 'python2-setuptools' 'python2-sphinx')
 options=('!makeflags')
 
source=(${pkgbase}-${pkgver}.tar.gz::https://github.com/IanHarvey/bluepy/archive/v/${pkgver}.tar.gz)
-sha512sums=('71fb5683e6d49582497ea87cf5dca586115662398465ab496ed7952968317435dbf2fc1d17b43577c6fba0de6e2ef47b618cab98b7076a97a45cba81a8894226')
+sha256sums=('55495d1c4b308199d4f648bb9c6a1b9ac636a279d55e142c62fa490727054620')
+sha512sums=('39ae486dab32c88a3c0a0ca8ba9b96be0682ea6c1ba56a5e58de873e2c1364066ddbe0f32bdd1a42a0e9bbadd6d9fe2e951868d15ebff5c1fff0c5b8132f6b25')
 
 prepare() {
   (cd ${_pyname}-${pkgver}


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

2017-11-14 Thread Levente Polyak
Date: Tuesday, November 14, 2017 @ 19:36:45
  Author: anthraxx
Revision: 266801

archrelease: copy trunk to community-x86_64

Added:
  python-bluepy/repos/community-x86_64/PKGBUILD
(from rev 266800, python-bluepy/trunk/PKGBUILD)
Deleted:
  python-bluepy/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-11-14 19:36:32 UTC (rev 266800)
+++ PKGBUILD2017-11-14 19:36:45 UTC (rev 266801)
@@ -1,74 +0,0 @@
-# Maintainer: Levente Polyak 
-
-_pyname=bluepy-v
-pkgbase=python-bluepy
-pkgname=('python-bluepy' 'python2-bluepy')
-pkgver=1.1.2
-pkgrel=1
-pkgdesc='Python module for interfacing with Bluetooth LE devices through Bluez'
-url='https://github.com/IanHarvey/bluepy'
-arch=('i686' 'x86_64')
-license=('GPL2')
-makedepends=('bluez' 'glib2'
- 'python' 'python-setuptools' 'python-sphinx'
- 'python2' 'python2-setuptools' 'python2-sphinx')
-options=('!makeflags')
-source=(${pkgbase}-${pkgver}.tar.gz::https://github.com/IanHarvey/bluepy/archive/v/${pkgver}.tar.gz)
-sha512sums=('71fb5683e6d49582497ea87cf5dca586115662398465ab496ed7952968317435dbf2fc1d17b43577c6fba0de6e2ef47b618cab98b7076a97a45cba81a8894226')
-
-prepare() {
-  (cd ${_pyname}-${pkgver}
-sed 's|CFLAGS =|CFLAGS +=|g' -i bluepy/Makefile
-sed 's|CPPFLAGS =|CPPFLAGS +=|g' -i bluepy/Makefile
-sed 's| $(LDLIBS)| $(LDFLAGS) $(LDLIBS)|g' -i bluepy/Makefile
-  )
-  cp -a ${_pyname}-${pkgver}{,-py2}
-  (cd ${_pyname}-${pkgver}-py2
-sed 's|env python$|env python2|g' -i bluepy/*.py
-sed 's|/usr/bin/python$|/usr/bin/python2|g' -i bluepy/*.py
-  )
-}
-
-build() {
-  msg2 "Building python..."
-  (cd ${_pyname}-${pkgver}
-python setup.py build
-make -C bluepy
-make -C docs man text SPHINXBUILD=sphinx-build
-  )
-  msg2 "Building python2..."
-  (cd ${_pyname}-${pkgver}-py2
-python2 setup.py build
-make -C bluepy
-make -C docs man text SPHINXBUILD=sphinx-build2
-  )
-}
-
-package_python-bluepy() {
-  depends=('python' 'python-setuptools' 'bluez' 'glib2')
-  cd ${_pyname}-${pkgver}
-  # install
-  python setup.py install --root="${pkgdir}" --prefix=/usr -O1 --skip-build
-  install -Dm 644 README.md docs/_build/text/*.txt -t 
"${pkgdir}/usr/share/doc/${pkgname}"
-  install -Dm 644 docs/_build/man/bluepy.1 
"${pkgdir}/usr/share/man/man1/${pkgname}.1"
-  install -Dm 755 bluepy/bluepy-helper -t 
"${pkgdir}"/usr/lib/python*/site-packages/bluepy
-  # cleanup
-  rm 
"${pkgdir}"/usr/lib/python*/site-packages/bluepy/{bluez-src.tgz,Makefile,bluepy-helper.c}
-}
-
-package_python2-bluepy() {
-  depends=('python2' 'python2-setuptools' 'bluez' 'glib2')
-  cd ${_pyname}-${pkgver}-py2
-  # install
-  python2 setup.py install --root="${pkgdir}" --prefix=/usr -O1 --skip-build
-  install -Dm 644 README.md docs/_build/text/*.txt -t 
"${pkgdir}/usr/share/doc/${pkgname}"
-  install -Dm 644 docs/_build/man/bluepy.1 
"${pkgdir}/usr/share/man/man1/${pkgname}.1"
-  install -Dm 755 bluepy/bluepy-helper -t 
"${pkgdir}"/usr/lib/python*/site-packages/bluepy
-  # cleanup
-  rm 
"${pkgdir}"/usr/lib/python*/site-packages/bluepy/{bluez-src.tgz,Makefile,bluepy-helper.c}
-  for prog in blescan sensortag thingy52; do
-mv "${pkgdir}/usr/bin/${prog}"{,-py2}
-  done
-}
-
-# vim: ts=2 sw=2 et:

Copied: python-bluepy/repos/community-x86_64/PKGBUILD (from rev 266800, 
python-bluepy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-11-14 19:36:45 UTC (rev 266801)
@@ -0,0 +1,75 @@
+# Maintainer: Levente Polyak 
+
+_pyname=bluepy-v
+pkgbase=python-bluepy
+pkgname=('python-bluepy' 'python2-bluepy')
+pkgver=1.1.4
+pkgrel=1
+pkgdesc='Python module for interfacing with Bluetooth LE devices through Bluez'
+url='https://github.com/IanHarvey/bluepy'
+arch=('x86_64')
+license=('GPL2')
+makedepends=('bluez' 'glib2'
+ 'python' 'python-setuptools' 'python-sphinx'
+ 'python2' 'python2-setuptools' 'python2-sphinx')
+options=('!makeflags')
+source=(${pkgbase}-${pkgver}.tar.gz::https://github.com/IanHarvey/bluepy/archive/v/${pkgver}.tar.gz)
+sha256sums=('55495d1c4b308199d4f648bb9c6a1b9ac636a279d55e142c62fa490727054620')
+sha512sums=('39ae486dab32c88a3c0a0ca8ba9b96be0682ea6c1ba56a5e58de873e2c1364066ddbe0f32bdd1a42a0e9bbadd6d9fe2e951868d15ebff5c1fff0c5b8132f6b25')
+
+prepare() {
+  (cd ${_pyname}-${pkgver}
+sed 's|CFLAGS =|CFLAGS +=|g' -i bluepy/Makefile
+sed 's|CPPFLAGS =|CPPFLAGS +=|g' -i bluepy/Makefile
+sed 's| $(LDLIBS)| $(LDFLAGS) $(LDLIBS)|g' -i bluepy/Makefile
+  )
+  cp -a ${_pyname}-${pkgver}{,-py2}
+  (cd ${_pyname}-${pkgver}-py2
+sed 's|env python$|env python2|g' -i bluepy/*.py
+sed 

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

2017-11-14 Thread Levente Polyak
Date: Tuesday, November 14, 2017 @ 19:28:14
  Author: anthraxx
Revision: 266799

archrelease: copy trunk to community-x86_64

Added:
  vimiv/repos/community-x86_64/PKGBUILD
(from rev 266798, vimiv/trunk/PKGBUILD)
Deleted:
  vimiv/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-11-14 19:28:05 UTC (rev 266798)
+++ PKGBUILD2017-11-14 19:28:14 UTC (rev 266799)
@@ -1,27 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Christian Karl 
-
-pkgname=vimiv
-pkgver=0.8
-pkgrel=2
-pkgdesc='Image viewer with vim-like keybindings'
-url='https://github.com/karlch/vimiv'
-arch=('i686' 'x86_64')
-license=('MIT')
-depends=('python3' 'python-gobject' 'gtk3' 'python-pillow')
-makedepends=('python-setuptools')
-# optdepends=('libgexiv2: autorotation and EXIF support')
-optdepends=('jhead: autorotation and EXIF support')
-backup=('etc/vimiv/vimivrc'
-'etc/vimiv/keys.conf')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/karlch/vimiv/archive/v${pkgver}.tar.gz)
-sha256sums=('7e4b66eefc202db55b45449d1eb48fc18e1e220de9f2dea45a25df1b07b41603')
-sha512sums=('462b3f8805ad7235853d992baceaedbc0d09805767b4fd38e6383a02199afdd72fcd4d652063a9f8ec0f05804ec24a0644ddc99b480022e17f78cd2a481d59ef')
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-  install -Dm 644 readme.md -t "${pkgdir}/usr/share/doc/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: vimiv/repos/community-x86_64/PKGBUILD (from rev 266798, 
vimiv/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-11-14 19:28:14 UTC (rev 266799)
@@ -0,0 +1,31 @@
+# Maintainer: Levente Polyak 
+# Contributor: Christian Karl 
+
+pkgname=vimiv
+pkgver=0.9
+pkgrel=1
+pkgdesc='Image viewer with vim-like keybindings'
+url='https://github.com/karlch/vimiv'
+arch=('x86_64')
+license=('MIT')
+depends=('python' 'python-gobject' 'gtk3' 'python-pillow' 'glibc')
+makedepends=('python-setuptools' 'libgexiv2')
+optdepends=('libgexiv2: autorotation and EXIF support')
+backup=('etc/vimiv/vimivrc'
+'etc/vimiv/keys.conf')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/karlch/vimiv/archive/v${pkgver}.tar.gz)
+sha256sums=('8437bec3f9ea5ffc0afeb14a2274a57b9ad6ff729d0788f944ca44a7d9081e57')
+sha512sums=('c6e94e739659ee09efed8bfdd0f9d321f16304df23b86399da21a000554d4225ed0c163324bebb3129dc5d9c734b66cb275f7b2c380fec545bc62cc457b82aad')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  python setup.py build
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -Dm 644 readme.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:


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

2017-11-14 Thread Levente Polyak
Date: Tuesday, November 14, 2017 @ 19:28:05
  Author: anthraxx
Revision: 266798

upgpkg: vimiv 0.9-1

Modified:
  vimiv/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-14 18:43:23 UTC (rev 266797)
+++ PKGBUILD2017-11-14 19:28:05 UTC (rev 266798)
@@ -2,22 +2,26 @@
 # Contributor: Christian Karl 
 
 pkgname=vimiv
-pkgver=0.8
-pkgrel=2
+pkgver=0.9
+pkgrel=1
 pkgdesc='Image viewer with vim-like keybindings'
 url='https://github.com/karlch/vimiv'
-arch=('i686' 'x86_64')
+arch=('x86_64')
 license=('MIT')
-depends=('python3' 'python-gobject' 'gtk3' 'python-pillow')
-makedepends=('python-setuptools')
-# optdepends=('libgexiv2: autorotation and EXIF support')
-optdepends=('jhead: autorotation and EXIF support')
+depends=('python' 'python-gobject' 'gtk3' 'python-pillow' 'glibc')
+makedepends=('python-setuptools' 'libgexiv2')
+optdepends=('libgexiv2: autorotation and EXIF support')
 backup=('etc/vimiv/vimivrc'
 'etc/vimiv/keys.conf')
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/karlch/vimiv/archive/v${pkgver}.tar.gz)
-sha256sums=('7e4b66eefc202db55b45449d1eb48fc18e1e220de9f2dea45a25df1b07b41603')
-sha512sums=('462b3f8805ad7235853d992baceaedbc0d09805767b4fd38e6383a02199afdd72fcd4d652063a9f8ec0f05804ec24a0644ddc99b480022e17f78cd2a481d59ef')
+sha256sums=('8437bec3f9ea5ffc0afeb14a2274a57b9ad6ff729d0788f944ca44a7d9081e57')
+sha512sums=('c6e94e739659ee09efed8bfdd0f9d321f16304df23b86399da21a000554d4225ed0c163324bebb3129dc5d9c734b66cb275f7b2c380fec545bc62cc457b82aad')
 
+build() {
+  cd ${pkgname}-${pkgver}
+  python setup.py build
+}
+
 package() {
   cd ${pkgname}-${pkgver}
   make DESTDIR="${pkgdir}" install


[arch-commits] Commit in kwin/repos (kde-unstable-x86_64 kde-unstable-x86_64/PKGBUILD)

2017-11-14 Thread Antonio Rojas
Date: Tuesday, November 14, 2017 @ 19:12:55
  Author: arojas
Revision: 309975

archrelease: copy trunk to kde-unstable-x86_64

Added:
  kwin/repos/kde-unstable-x86_64/
  kwin/repos/kde-unstable-x86_64/PKGBUILD
(from rev 309974, kwin/trunk/PKGBUILD)

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

Copied: kwin/repos/kde-unstable-x86_64/PKGBUILD (from rev 309974, 
kwin/trunk/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2017-11-14 19:12:55 UTC (rev 309975)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=kwin
+pkgver=5.11.3
+pkgrel=2
+pkgdesc='An easy to use, but flexible, composited Window Manager'
+arch=(i686 x86_64)
+url='https://www.kde.org/workspaces/plasmadesktop/'
+license=(LGPL)
+depends=(kscreenlocker xcb-util-cursor hicolor-icon-theme plasma-framework 
kcmutils breeze kinit)
+makedepends=(extra-cmake-modules qt5-tools kdoctools python)
+optdepends=('qt5-virtualkeyboard: virtual keyboard support for kwin-wayland')
+groups=(plasma)
+source=("https://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('94c66b90f93534068c7cf054e1853c49edee2d734c17a2286ff8d3236c3ffdf5'
+'SKIP')
+validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
+  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
+  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DCMAKE_INSTALL_LIBEXECDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


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

2017-11-14 Thread Antonio Rojas
Date: Tuesday, November 14, 2017 @ 19:12:16
  Author: arojas
Revision: 309974

Qt 5.10 rebuild

Modified:
  kwin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-14 19:10:32 UTC (rev 309973)
+++ PKGBUILD2017-11-14 19:12:16 UTC (rev 309974)
@@ -5,7 +5,7 @@
 
 pkgname=kwin
 pkgver=5.11.3
-pkgrel=1
+pkgrel=2
 pkgdesc='An easy to use, but flexible, composited Window Manager'
 arch=(i686 x86_64)
 url='https://www.kde.org/workspaces/plasmadesktop/'


[arch-commits] Commit in vim/repos/extra-x86_64 (8 files)

2017-11-14 Thread Levente Polyak
Date: Tuesday, November 14, 2017 @ 19:10:32
  Author: anthraxx
Revision: 309973

archrelease: copy trunk to extra-x86_64

Added:
  vim/repos/extra-x86_64/PKGBUILD
(from rev 309972, vim/trunk/PKGBUILD)
  vim/repos/extra-x86_64/archlinux.vim
(from rev 309972, vim/trunk/archlinux.vim)
  vim/repos/extra-x86_64/vimdoc.hook
(from rev 309972, vim/trunk/vimdoc.hook)
  vim/repos/extra-x86_64/vimrc
(from rev 309972, vim/trunk/vimrc)
Deleted:
  vim/repos/extra-x86_64/PKGBUILD
  vim/repos/extra-x86_64/archlinux.vim
  vim/repos/extra-x86_64/vimdoc.hook
  vim/repos/extra-x86_64/vimrc

---+
 PKGBUILD  |  433 
 archlinux.vim |   50 +++---
 vimdoc.hook   |   22 +-
 vimrc |   36 ++--
 4 files changed, 272 insertions(+), 269 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-11-14 19:10:22 UTC (rev 309972)
+++ PKGBUILD2017-11-14 19:10:32 UTC (rev 309973)
@@ -1,215 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Anatol Pomozov 
-# Contributor: Thomas Dziedzic 
-# Contributor: Jan "heftig" Steffens 
-# Contributor: tobias [ tobias at archlinux org ]
-# Contributor: Daniel J Griffiths 
-# Contributor: Christian Hesse 
-# Contributor: Eli Schwartz
-
-pkgbase=vim
-pkgname=('vim' 'gvim' 'vim-runtime')
-pkgver=8.0.1272
-_versiondir=80
-pkgrel=1
-url='http://www.vim.org'
-arch=('i686' 'x86_64')
-license=('custom:vim')
-makedepends=('gpm' 'python2' 'python' 'ruby' 'libxt' 'gtk3' 'lua' 'gawk' 'tcl')
-source=(vim-${pkgver}.tar.gz::https://github.com/vim/vim/archive/v${pkgver}.tar.gz
-vimrc
-archlinux.vim
-vimdoc.hook)
-sha256sums=('0ea4fac1108bfd6b06594aafaf079d7908478d4b9ae392e256b098546b4ba7e8'
-'b16e85e457397ab2043a7ee0a3c84307c6b4eac157fd0b721694761f25b3ed5b'
-'0cf8b42732111d0c66c3908a76d832736e8f8dc3abef81cb092ddf84cb862ea2'
-'7095cafac21df7aa42749d6864d1c0549fe65771d8edda3102c931c60782b6b9')
-sha512sums=('ceac8a63c403713adb965d4641fa8a22be1b1e476552d92118d3c3a9b075384c4ac5b1c7c42254930c0f69d5b0dcafe897a51b8a357c63db3d03a9b1eefb51b3'
-
'4b5bed0813f22af9e158ea9aa56a4a9862dd786ba2d201f20159ccf652da6190164aaed0b6b7217d578f7b25c33a8adcc307bfcf3caa8d173a7ff29e2a00fee7'
-
'935c15a4cc55b9209e6b6c974df765cc6683ae32ccea38acadc825bbc9c60b97ebe14aec8814b7e52080c0d0ded520a68ff1880ab64f320b08c181b6bf862edb'
-
'1e06e981691b17662fd0fddac5c00c87c920d1b4a1cbb6191c42d57cc40b00af12710e26b22fcfc0901bb8142b15f6a04aa65cec2d9b3bb9d5a06cb650d3ab9c')
-
-prepare() {
-  (cd vim-${pkgver}/src
-# define the place for the global (g)vimrc file (set to /etc/vimrc)
-sed -i 's|^.*\(#define SYS_.*VIMRC_FILE.*"\) .*$|\1|' feature.h
-sed -i 's|^.*\(#define VIMRC_FILE.*"\) .*$|\1|' feature.h
-autoconf
-  )
-  cp -a vim-${pkgver} gvim-${pkgver}
-}
-
-build() {
-  msg2 "Building vim..."
-  (cd vim-${pkgver}
-./configure \
-  --prefix=/usr \
-  --localstatedir=/var/lib/vim \
-  --with-features=huge \
-  --with-compiledby='Arch Linux' \
-  --enable-gpm \
-  --enable-acl \
-  --with-x=no \
-  --disable-gui \
-  --enable-multibyte \
-  --enable-cscope \
-  --enable-netbeans \
-  --enable-perlinterp=dynamic \
-  --enable-pythoninterp=dynamic \
-  --enable-python3interp=dynamic \
-  --enable-rubyinterp=dynamic \
-  --enable-luainterp=dynamic \
-  --enable-tclinterp=dynamic
-make
-  )
-
-  msg2 "Building gvim..."
-  (cd gvim-${pkgver}
-./configure \
-  --prefix=/usr \
-  --localstatedir=/var/lib/vim \
-  --with-features=huge \
-  --with-compiledby='Arch Linux' \
-  --enable-gpm \
-  --enable-acl \
-  --with-x=yes \
-  --enable-gui=gtk3 \
-  --enable-multibyte \
-  --enable-cscope \
-  --enable-netbeans \
-  --enable-perlinterp=dynamic \
-  --enable-pythoninterp=dynamic \
-  --enable-python3interp=dynamic \
-  --enable-rubyinterp=dynamic \
-  --enable-luainterp=dynamic \
-  --enable-tclinterp=dynamic
-make
-  )
-}
-
-check() {
-  cd vim-${pkgver}
-  TERM=xterm make -j1 test
-}
-
-package_vim-runtime() {
-  pkgdesc='Runtime for vim and gvim'
-  backup=('etc/vimrc')
-
-  cd vim-${pkgver}
-
-  make -j1 VIMRCLOC=/etc DESTDIR="${pkgdir}" install
-  # man and bin files belong to 'vim'
-  rm -r "${pkgdir}"/usr/share/man/ "${pkgdir}"/usr/bin/
-
-  # Don't forget logtalk.dict
-  install -Dm 644 runtime/ftplugin/logtalk.dict \
-"${pkgdir}"/usr/share/vim/vim${_versiondir}/ftplugin/logtalk.dict
-
-  # fix FS#17216
-  sed -i 's|messages,/var|messages,/var/log/messages.log,/var|' \
-"${pkgdir}"/usr/share/vim/vim${_versiondir}/filetype.vim
-
-  # patch filetype.vim for better handling of pacman related files
-  

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

2017-11-14 Thread Levente Polyak
Date: Tuesday, November 14, 2017 @ 19:10:22
  Author: anthraxx
Revision: 309972

upgpkg: vim 8.0.1297-1

Modified:
  vim/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-14 19:05:01 UTC (rev 309971)
+++ PKGBUILD2017-11-14 19:10:22 UTC (rev 309972)
@@ -9,22 +9,23 @@
 
 pkgbase=vim
 pkgname=('vim' 'gvim' 'vim-runtime')
-pkgver=8.0.1272
+pkgver=8.0.1297
 _versiondir=80
 pkgrel=1
 url='http://www.vim.org'
-arch=('i686' 'x86_64')
+arch=('x86_64')
 license=('custom:vim')
-makedepends=('gpm' 'python2' 'python' 'ruby' 'libxt' 'gtk3' 'lua' 'gawk' 'tcl')
+makedepends=('glibc' 'libgcrypt' 'gpm' 'python2' 'python' 'ruby' 'libxt' 
'gtk3' 'lua'
+ 'gawk' 'tcl' 'pcre' 'zlib' 'libffi')
 
source=(vim-${pkgver}.tar.gz::https://github.com/vim/vim/archive/v${pkgver}.tar.gz
 vimrc
 archlinux.vim
 vimdoc.hook)
-sha256sums=('0ea4fac1108bfd6b06594aafaf079d7908478d4b9ae392e256b098546b4ba7e8'
+sha256sums=('71c0bc909d5b58b94092049b74a097eaac48ef1bb92e01bc86abd5d2b5418b5f'
 'b16e85e457397ab2043a7ee0a3c84307c6b4eac157fd0b721694761f25b3ed5b'
 '0cf8b42732111d0c66c3908a76d832736e8f8dc3abef81cb092ddf84cb862ea2'
 '7095cafac21df7aa42749d6864d1c0549fe65771d8edda3102c931c60782b6b9')
-sha512sums=('ceac8a63c403713adb965d4641fa8a22be1b1e476552d92118d3c3a9b075384c4ac5b1c7c42254930c0f69d5b0dcafe897a51b8a357c63db3d03a9b1eefb51b3'
+sha512sums=('f31af3ef8d94db4892eec568a6d5a593405726f0e103650aa451d9abc81e6a89cefff24eb9b2150af7a29b16ccf0eb62c2a47f92ec483288f19967dcfd673ec2'
 
'4b5bed0813f22af9e158ea9aa56a4a9862dd786ba2d201f20159ccf652da6190164aaed0b6b7217d578f7b25c33a8adcc307bfcf3caa8d173a7ff29e2a00fee7'
 
'935c15a4cc55b9209e6b6c974df765cc6683ae32ccea38acadc825bbc9c60b97ebe14aec8814b7e52080c0d0ded520a68ff1880ab64f320b08c181b6bf862edb'
 
'1e06e981691b17662fd0fddac5c00c87c920d1b4a1cbb6191c42d57cc40b00af12710e26b22fcfc0901bb8142b15f6a04aa65cec2d9b3bb9d5a06cb650d3ab9c')
@@ -139,7 +140,8 @@
 
 package_vim() {
   pkgdesc='Vi Improved, a highly configurable, improved version of the vi text 
editor'
-  depends=("vim-runtime=${pkgver}-${pkgrel}" 'gpm' 'acl')
+  depends=("vim-runtime=${pkgver}-${pkgrel}" 'gpm' 'acl' 'glibc' 'libgcrypt' 
'pcre'
+   'zlib' 'libffi')
   optdepends=('python2: Python 2 language support'
   'python: Python 3 language support'
   'ruby: Ruby language support'
@@ -177,7 +179,8 @@
 
 package_gvim() {
   pkgdesc='Vi Improved, a highly configurable, improved version of the vi text 
editor (with advanced features, such as a GUI)'
-  depends=("vim-runtime=${pkgver}-${pkgrel}" 'gpm' 'libxt' 'gtk3')
+  depends=("vim-runtime=${pkgver}-${pkgrel}" 'gpm' 'libxt' 'gtk3' 'glibc' 
'libgcrypt' 'pcre'
+   'zlib' 'libffi')
   optdepends=('python2: Python 2 language support'
   'python: Python 3 language support'
   'ruby: Ruby language support'


[arch-commits] Commit in plasma-integration/repos (2 files)

2017-11-14 Thread Antonio Rojas
Date: Tuesday, November 14, 2017 @ 19:05:01
  Author: arojas
Revision: 309971

archrelease: copy trunk to kde-unstable-x86_64

Added:
  plasma-integration/repos/kde-unstable-x86_64/
  plasma-integration/repos/kde-unstable-x86_64/PKGBUILD
(from rev 309970, plasma-integration/trunk/PKGBUILD)

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

Copied: plasma-integration/repos/kde-unstable-x86_64/PKGBUILD (from rev 309970, 
plasma-integration/trunk/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2017-11-14 19:05:01 UTC (rev 309971)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+
+pkgname=plasma-integration
+pkgver=5.11.3
+pkgrel=2
+pkgdesc="Qt Platform Theme integration plugins for the Plasma workspaces"
+arch=(i686 x86_64)
+url='https://www.kde.org/workspaces/plasmadesktop/'
+license=(LGPL)
+depends=(kio kwayland libxcursor noto-fonts ttf-hack qqc2-desktop-style)
+makedepends=(extra-cmake-modules python breeze)
+groups=(plasma)
+source=("https://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('a1bf8e27a4b9d7a2e6323a35edd92654ce4a9a7eb4aed13e8eacfb706e2f1c2f'
+'SKIP')
+validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
+  '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
+  'D07BD8662C56CB291B316EB2F5675605C74E02CF') # David Edmundson
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


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

2017-11-14 Thread Antonio Rojas
Date: Tuesday, November 14, 2017 @ 19:04:40
  Author: arojas
Revision: 309970

Qt 5.10 rebuild

Modified:
  plasma-integration/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-14 19:03:05 UTC (rev 309969)
+++ PKGBUILD2017-11-14 19:04:40 UTC (rev 309970)
@@ -4,7 +4,7 @@
 
 pkgname=plasma-integration
 pkgver=5.11.3
-pkgrel=1
+pkgrel=2
 pkgdesc="Qt Platform Theme integration plugins for the Plasma workspaces"
 arch=(i686 x86_64)
 url='https://www.kde.org/workspaces/plasmadesktop/'


[arch-commits] Commit in plasma-framework/repos (2 files)

2017-11-14 Thread Antonio Rojas
Date: Tuesday, November 14, 2017 @ 19:03:05
  Author: arojas
Revision: 309969

archrelease: copy trunk to kde-unstable-x86_64

Added:
  plasma-framework/repos/kde-unstable-x86_64/
  plasma-framework/repos/kde-unstable-x86_64/PKGBUILD
(from rev 309968, plasma-framework/trunk/PKGBUILD)

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

Copied: plasma-framework/repos/kde-unstable-x86_64/PKGBUILD (from rev 309968, 
plasma-framework/trunk/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2017-11-14 19:03:05 UTC (rev 309969)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=plasma-framework
+pkgver=5.40.0
+pkgrel=2
+pkgdesc='Plasma library and runtime components based upon KF5 and Qt5'
+arch=('i686' 'x86_64')
+url='https://community.kde.org/Frameworks'
+license=('LGPL')
+depends=('qt5-quickcontrols' 'kactivities' 'kdeclarative' 'kwayland')
+makedepends=('extra-cmake-modules' 'qt5-tools' 'kdoctools' 'python' 'doxygen')
+groups=('kf5')
+source=("https://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('6f53b5ab7f79265366b7de5ae80110dc5b723ece10fb4178ddbf5d13c2f04fd6'
+'SKIP')
+validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB) # David Faure 

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


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

2017-11-14 Thread Antonio Rojas
Date: Tuesday, November 14, 2017 @ 19:02:40
  Author: arojas
Revision: 309968

Qt 5.10 rebuild

Modified:
  plasma-framework/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-14 18:56:11 UTC (rev 309967)
+++ PKGBUILD2017-11-14 19:02:40 UTC (rev 309968)
@@ -4,7 +4,7 @@
 
 pkgname=plasma-framework
 pkgver=5.40.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Plasma library and runtime components based upon KF5 and Qt5'
 arch=('i686' 'x86_64')
 url='https://community.kde.org/Frameworks'


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

2017-11-14 Thread Antonio Rojas
Date: Tuesday, November 14, 2017 @ 18:56:11
  Author: arojas
Revision: 309967

archrelease: copy trunk to kde-unstable-x86_64

Added:
  kdeclarative/repos/kde-unstable-x86_64/
  kdeclarative/repos/kde-unstable-x86_64/PKGBUILD
(from rev 309966, kdeclarative/trunk/PKGBUILD)

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

Copied: kdeclarative/repos/kde-unstable-x86_64/PKGBUILD (from rev 309966, 
kdeclarative/trunk/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2017-11-14 18:56:11 UTC (rev 309967)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=kdeclarative
+pkgver=5.40.0
+pkgrel=2
+pkgdesc='Provides integration of QML and KDE Frameworks'
+arch=('i686' 'x86_64')
+url='https://community.kde.org/Frameworks'
+license=('LGPL')
+depends=('kio' 'kpackage' 'libepoxy')
+makedepends=('extra-cmake-modules' 'python' 'doxygen' 'qt5-tools')
+groups=('kf5')
+source=("https://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz"{,.sig})
+sha256sums=('a60142c4c1b14756196ebb90db63fd1214efe8ed921afa8b6b956caed23bd783'
+'SKIP')
+validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB) # David Faure 

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


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

2017-11-14 Thread Antonio Rojas
Date: Tuesday, November 14, 2017 @ 18:55:45
  Author: arojas
Revision: 309966

Qt 5.10 rebuild

Modified:
  kdeclarative/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-14 18:51:12 UTC (rev 309965)
+++ PKGBUILD2017-11-14 18:55:45 UTC (rev 309966)
@@ -4,7 +4,7 @@
 
 pkgname=kdeclarative
 pkgver=5.40.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Provides integration of QML and KDE Frameworks'
 arch=('i686' 'x86_64')
 url='https://community.kde.org/Frameworks'


[arch-commits] Commit in qt5-x11extras/repos (2 files)

2017-11-14 Thread Antonio Rojas
Date: Tuesday, November 14, 2017 @ 18:51:12
  Author: arojas
Revision: 309965

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt5-x11extras/repos/kde-unstable-x86_64/
  qt5-x11extras/repos/kde-unstable-x86_64/PKGBUILD
(from rev 309964, qt5-x11extras/kde-unstable/PKGBUILD)

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

Copied: qt5-x11extras/repos/kde-unstable-x86_64/PKGBUILD (from rev 309964, 
qt5-x11extras/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2017-11-14 18:51:12 UTC (rev 309965)
@@ -0,0 +1,41 @@
+# $Id: PKGBUILD 240297 2015-06-03 10:22:03Z fyan $
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt5-x11extras
+_qtver=5.10.0-beta4
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('i686' 'x86_64')
+url='http://qt-project.org/'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='Provides platform-specific APIs for X11'
+depends=('qt5-base')
+makedepends=()
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("http://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('fab17fbdf2015508559bd1851a86c7dd9c76351dc788d5ac54359626708e61d2')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_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 -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}


[arch-commits] Commit in qt5-webglplugin/repos (2 files)

2017-11-14 Thread Antonio Rojas
Date: Tuesday, November 14, 2017 @ 18:50:35
  Author: arojas
Revision: 309963

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt5-webglplugin/repos/kde-unstable-x86_64/
  qt5-webglplugin/repos/kde-unstable-x86_64/PKGBUILD
(from rev 309962, qt5-webglplugin/kde-unstable/PKGBUILD)

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

Copied: qt5-webglplugin/repos/kde-unstable-x86_64/PKGBUILD (from rev 309962, 
qt5-webglplugin/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2017-11-14 18:50:35 UTC (rev 309963)
@@ -0,0 +1,40 @@
+# $Id: PKGBUILD 240297 2015-06-03 10:22:03Z fyan $
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+
+pkgname=qt5-webglplugin
+_qtver=5.10.0-beta4
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=(i686 x86_64)
+url='http://qt-project.org/'
+license=(GPL3 LGPL3 FDL custom)
+pkgdesc='QPA plugin for running an application via a browser using streamed 
WebGL commands'
+depends=(qt5-websockets)
+groups=(qt qt5)
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("http://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('474aa7c696b4a9226e0f172fad14664bacbbe7eadecb061a9e8a591d79fb5e97')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_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 -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}


[arch-commits] Commit in qt5-webview/repos (2 files)

2017-11-14 Thread Antonio Rojas
Date: Tuesday, November 14, 2017 @ 18:50:53
  Author: arojas
Revision: 309964

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt5-webview/repos/kde-unstable-x86_64/
  qt5-webview/repos/kde-unstable-x86_64/PKGBUILD
(from rev 309963, qt5-webview/kde-unstable/PKGBUILD)

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

Copied: qt5-webview/repos/kde-unstable-x86_64/PKGBUILD (from rev 309963, 
qt5-webview/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2017-11-14 18:50:53 UTC (rev 309964)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+
+pkgname=qt5-webview
+_qtver=5.10.0-beta4
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('i686' 'x86_64')
+url='http://qt-project.org/'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='Provides a way to display web content in a QML application'
+depends=('qt5-webengine')
+makedepends=()
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("http://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('d2837396ccb77b3737096f6b6ff73837ce924c5906c97a693f391a41faec830e')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_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 -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}


[arch-commits] Commit in qt5-wayland/repos (2 files)

2017-11-14 Thread Antonio Rojas
Date: Tuesday, November 14, 2017 @ 18:50:18
  Author: arojas
Revision: 309962

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt5-wayland/repos/kde-unstable-x86_64/
  qt5-wayland/repos/kde-unstable-x86_64/PKGBUILD
(from rev 309961, qt5-wayland/kde-unstable/PKGBUILD)

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

Copied: qt5-wayland/repos/kde-unstable-x86_64/PKGBUILD (from rev 309961, 
qt5-wayland/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2017-11-14 18:50:18 UTC (rev 309962)
@@ -0,0 +1,41 @@
+# $Id: PKGBUILD 240297 2015-06-03 10:22:03Z fyan $
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt5-wayland
+_qtver=5.10.0-beta4
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('i686' 'x86_64')
+url='http://qt-project.org/'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='Provides APIs for Wayland'
+depends=('qt5-declarative' 'libxcomposite' 'wayland') # namcap note: wayland 
is needed for nvidia-libgl users
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("http://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('eace75ef65daa21e2bdf10c42a4dc3ac3be07180ada6f5af189a70ebf0736374')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_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 -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}


[arch-commits] Commit in qt5-virtualkeyboard/repos (2 files)

2017-11-14 Thread Antonio Rojas
Date: Tuesday, November 14, 2017 @ 18:49:58
  Author: arojas
Revision: 309961

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt5-virtualkeyboard/repos/kde-unstable-x86_64/
  qt5-virtualkeyboard/repos/kde-unstable-x86_64/PKGBUILD
(from rev 309960, qt5-virtualkeyboard/kde-unstable/PKGBUILD)

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

Copied: qt5-virtualkeyboard/repos/kde-unstable-x86_64/PKGBUILD (from rev 
309960, qt5-virtualkeyboard/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2017-11-14 18:49:58 UTC (rev 309961)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+
+pkgname=qt5-virtualkeyboard
+_qtver=5.10.0-beta4
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('i686' 'x86_64')
+url='http://qt-project.org/'
+license=('GPL3')
+pkgdesc='Virtual keyboard framework'
+depends=('qt5-declarative' 'qt5-svg' 'hunspell')
+makedepends=()
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("http://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('d6a506561fedccf6bebf1baf0b054622e09ef3da4d2e9a078431bb9ffd37af59')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_pkgfqn} CONFIG+="lang-all handwriting"
+  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' {} \;
+}


[arch-commits] Commit in qt5-svg/repos (2 files)

2017-11-14 Thread Antonio Rojas
Date: Tuesday, November 14, 2017 @ 18:49:18
  Author: arojas
Revision: 309960

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt5-svg/repos/kde-unstable-x86_64/
  qt5-svg/repos/kde-unstable-x86_64/PKGBUILD
(from rev 309959, qt5-svg/kde-unstable/PKGBUILD)

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

Copied: qt5-svg/repos/kde-unstable-x86_64/PKGBUILD (from rev 309959, 
qt5-svg/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2017-11-14 18:49:18 UTC (rev 309960)
@@ -0,0 +1,41 @@
+# $Id: PKGBUILD 240297 2015-06-03 10:22:03Z fyan $
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt5-svg
+_qtver=5.10.0-beta4
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('i686' 'x86_64')
+url='http://qt-project.org/'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='Classes for displaying the contents of SVG files'
+depends=('qt5-base')
+makedepends=('vulkan-headers')
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("http://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('aa660fa7fb0d16d81088cb6dd040933c0ec575e8e4c70ba0a66353e79d007cab')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_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 -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}


[arch-commits] Commit in qt5-speech/repos (2 files)

2017-11-14 Thread Antonio Rojas
Date: Tuesday, November 14, 2017 @ 18:49:01
  Author: arojas
Revision: 309959

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt5-speech/repos/kde-unstable-x86_64/
  qt5-speech/repos/kde-unstable-x86_64/PKGBUILD
(from rev 309958, qt5-speech/kde-unstable/PKGBUILD)

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

Copied: qt5-speech/repos/kde-unstable-x86_64/PKGBUILD (from rev 309958, 
qt5-speech/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2017-11-14 18:49:01 UTC (rev 309959)
@@ -0,0 +1,41 @@
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+
+pkgname=qt5-speech
+_qtver=5.10.0-beta4
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=(i686 x86_64)
+url='http://qt-project.org/'
+license=(GPL3 LGPL3 FDL custom)
+pkgdesc='Qt module to make text to speech and speech recognition easy'
+depends=(qt5-multimedia)
+makedepends=(flite speech-dispatcher)
+optdepends=('flite: flite TTS backend' 'speech-dispatcher: speech-dispatcher 
TTS backend')
+groups=(qt qt5)
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("http://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('8c98d8a04db68d39b6c19b3c5cfd863ea7570a4ce8809fdfed8fa7182e24f8aa')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_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 -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}


[arch-commits] Commit in qt5-serialbus/repos (2 files)

2017-11-14 Thread Antonio Rojas
Date: Tuesday, November 14, 2017 @ 18:48:45
  Author: arojas
Revision: 309958

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt5-serialbus/repos/kde-unstable-x86_64/
  qt5-serialbus/repos/kde-unstable-x86_64/PKGBUILD
(from rev 309957, qt5-serialbus/kde-unstable/PKGBUILD)

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

Copied: qt5-serialbus/repos/kde-unstable-x86_64/PKGBUILD (from rev 309957, 
qt5-serialbus/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2017-11-14 18:48:45 UTC (rev 309958)
@@ -0,0 +1,41 @@
+# $Id: PKGBUILD 240297 2015-06-03 10:22:03Z fyan $
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt5-serialbus
+_qtver=5.10.0-beta4
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('i686' 'x86_64')
+url='http://qt-project.org/'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='Qt module for general purpose serial bus access'
+depends=('qt5-serialport')
+makedepends=()
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("http://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('6c86d7f755c4d9ee85e2ba42d3357a914994a0da7e361831ed67dc5f8ca2e5b7')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_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 -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}


[arch-commits] Commit in qt5-scxml/repos (2 files)

2017-11-14 Thread Antonio Rojas
Date: Tuesday, November 14, 2017 @ 18:48:29
  Author: arojas
Revision: 309957

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt5-scxml/repos/kde-unstable-x86_64/
  qt5-scxml/repos/kde-unstable-x86_64/PKGBUILD
(from rev 309956, qt5-scxml/kde-unstable/PKGBUILD)

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

Copied: qt5-scxml/repos/kde-unstable-x86_64/PKGBUILD (from rev 309956, 
qt5-scxml/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2017-11-14 18:48:29 UTC (rev 309957)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+
+pkgname=qt5-scxml
+_qtver=5.10.0-beta4
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('i686' 'x86_64')
+url='http://qt-project.org/'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='Static and runtime integration of SCXML models into Qt code'
+depends=('qt5-declarative')
+makedepends=()
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("http://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('10cb4639602fc4b80f19e62b3d577e3ab956d943ff8fa995d60f1eeaab9ad4f7')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_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 -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}


[arch-commits] Commit in qt5-script/repos (2 files)

2017-11-14 Thread Antonio Rojas
Date: Tuesday, November 14, 2017 @ 18:48:14
  Author: arojas
Revision: 309956

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt5-script/repos/kde-unstable-x86_64/
  qt5-script/repos/kde-unstable-x86_64/PKGBUILD
(from rev 309955, qt5-script/kde-unstable/PKGBUILD)

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

Copied: qt5-script/repos/kde-unstable-x86_64/PKGBUILD (from rev 309955, 
qt5-script/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2017-11-14 18:48:14 UTC (rev 309956)
@@ -0,0 +1,41 @@
+# $Id: PKGBUILD 240297 2015-06-03 10:22:03Z fyan $
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt5-script
+_qtver=5.10.0-beta4
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('i686' 'x86_64')
+url='http://qt-project.org/'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='Classes for making Qt applications scriptable. Provided for Qt 4.x 
compatibility'
+depends=('qt5-base')
+makedepends=()
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("http://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('4879ac7fcb55c1008fe45cd181d0335bf260429479cf85fba9fab403c0816cb4')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_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 -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}


[arch-commits] Commit in qt5-remoteobjects/repos (2 files)

2017-11-14 Thread Antonio Rojas
Date: Tuesday, November 14, 2017 @ 18:47:56
  Author: arojas
Revision: 309955

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt5-remoteobjects/repos/kde-unstable-x86_64/
  qt5-remoteobjects/repos/kde-unstable-x86_64/PKGBUILD
(from rev 309954, qt5-remoteobjects/kde-unstable/PKGBUILD)

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

Copied: qt5-remoteobjects/repos/kde-unstable-x86_64/PKGBUILD (from rev 309954, 
qt5-remoteobjects/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2017-11-14 18:47:56 UTC (rev 309955)
@@ -0,0 +1,42 @@
+# $Id: PKGBUILD 293803 2017-04-21 11:54:59Z arojas $
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+
+pkgname=qt5-remoteobjects
+_qtver=5.10.0-beta4
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=(i686 x86_64)
+url='http://qt-project.org/'
+license=(GPL3 LGPL3 FDL custom)
+pkgdesc='Inter-process communication (IPC) module developed for Qt'
+depends=(qt5-base)
+makedepends=(qt5-declarative)
+optdepends=('qt5-declarative: QML bindings')
+groups=(qt qt5)
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("http://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('8c09c9c203d8c4df1a432d5c20caecff5147d0e9fa81d95cd46b9fe9e6df5062')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_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 -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}


[arch-commits] Commit in qt5-quickcontrols2/repos (2 files)

2017-11-14 Thread Antonio Rojas
Date: Tuesday, November 14, 2017 @ 18:47:36
  Author: arojas
Revision: 309954

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt5-quickcontrols2/repos/kde-unstable-x86_64/
  qt5-quickcontrols2/repos/kde-unstable-x86_64/PKGBUILD
(from rev 309953, qt5-quickcontrols2/kde-unstable/PKGBUILD)

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

Copied: qt5-quickcontrols2/repos/kde-unstable-x86_64/PKGBUILD (from rev 309953, 
qt5-quickcontrols2/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2017-11-14 18:47:36 UTC (rev 309954)
@@ -0,0 +1,42 @@
+# $Id: PKGBUILD 240297 2015-06-03 10:22:03Z fyan $
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt5-quickcontrols2
+_qtver=5.10.0-beta4
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('i686' 'x86_64')
+url='http://qt-project.org/'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='Next generation user interface controls based on Qt Quick'
+depends=('qt5-declarative')
+optdepends=('qt5-graphicaleffects: for the Material style')
+makedepends=('vulkan-headers')
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("http://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('2217cb595cc4ff8b77d67399d228ec66bb2bc0e21dd01a5257324a2b78d0ead3')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_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 -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}


[arch-commits] Commit in qt5-quickcontrols/repos (2 files)

2017-11-14 Thread Antonio Rojas
Date: Tuesday, November 14, 2017 @ 18:47:13
  Author: arojas
Revision: 309953

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt5-quickcontrols/repos/kde-unstable-x86_64/
  qt5-quickcontrols/repos/kde-unstable-x86_64/PKGBUILD
(from rev 309952, qt5-quickcontrols/kde-unstable/PKGBUILD)

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

Copied: qt5-quickcontrols/repos/kde-unstable-x86_64/PKGBUILD (from rev 309952, 
qt5-quickcontrols/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2017-11-14 18:47:13 UTC (rev 309953)
@@ -0,0 +1,41 @@
+# $Id: PKGBUILD 240297 2015-06-03 10:22:03Z fyan $
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt5-quickcontrols
+_qtver=5.10.0-beta4
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('i686' 'x86_64')
+url='http://qt-project.org/'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='Reusable Qt Quick based UI controls to create classic desktop-style 
user interfaces'
+depends=('qt5-declarative')
+makedepends=()
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("http://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('a7f5dfca5c0e8df1fc154cbc5514eb2295a701967db72533c7e76c75fde86e7c')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_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 -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}


[arch-commits] Commit in qt5-networkauth/repos (2 files)

2017-11-14 Thread Antonio Rojas
Date: Tuesday, November 14, 2017 @ 18:46:50
  Author: arojas
Revision: 309952

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt5-networkauth/repos/kde-unstable-x86_64/
  qt5-networkauth/repos/kde-unstable-x86_64/PKGBUILD
(from rev 309951, qt5-networkauth/kde-unstable/PKGBUILD)

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

Copied: qt5-networkauth/repos/kde-unstable-x86_64/PKGBUILD (from rev 309951, 
qt5-networkauth/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2017-11-14 18:46:50 UTC (rev 309952)
@@ -0,0 +1,39 @@
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+
+pkgname=qt5-networkauth
+_qtver=5.10.0-beta4
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=(i686 x86_64)
+url='http://qt-project.org/'
+license=(GPL3 LGPL3 FDL custom)
+pkgdesc='Network authentication module'
+depends=(qt5-base)
+groups=(qt qt5)
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("http://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('ecae52977b8b48764ab8e20638f434b44c7de601a1667b47069e3b3da93b3fb9')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_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 -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}


[arch-commits] Commit in qt5-multimedia/repos (2 files)

2017-11-14 Thread Antonio Rojas
Date: Tuesday, November 14, 2017 @ 18:46:16
  Author: arojas
Revision: 309951

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt5-multimedia/repos/kde-unstable-x86_64/
  qt5-multimedia/repos/kde-unstable-x86_64/PKGBUILD
(from rev 309950, qt5-multimedia/kde-unstable/PKGBUILD)

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

Copied: qt5-multimedia/repos/kde-unstable-x86_64/PKGBUILD (from rev 309950, 
qt5-multimedia/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2017-11-14 18:46:16 UTC (rev 309951)
@@ -0,0 +1,42 @@
+# $Id: PKGBUILD 240297 2015-06-03 10:22:03Z fyan $
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt5-multimedia
+_qtver=5.10.0-beta4
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('i686' 'x86_64')
+url='http://qt-project.org/'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='Classes for audio, video, radio and camera functionality'
+depends=('qt5-base' 'gst-plugins-base-libs' 'libpulse' 'openal')
+makedepends=('qt5-declarative' 'gst-plugins-bad' 'vulkan-headers')
+optdepends=('qt5-declarative: QML bindings' 'gst-plugins-bad: camera support')
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("http://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('8385ea3619859e66e58caf610fef4a9f5733d60a55c5cda01140614cddff1b2b')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_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 -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}


[arch-commits] Commit in qt5-imageformats/repos (2 files)

2017-11-14 Thread Antonio Rojas
Date: Tuesday, November 14, 2017 @ 18:45:47
  Author: arojas
Revision: 309950

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt5-imageformats/repos/kde-unstable-x86_64/
  qt5-imageformats/repos/kde-unstable-x86_64/PKGBUILD
(from rev 309949, qt5-imageformats/kde-unstable/PKGBUILD)

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

Copied: qt5-imageformats/repos/kde-unstable-x86_64/PKGBUILD (from rev 309949, 
qt5-imageformats/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2017-11-14 18:45:47 UTC (rev 309950)
@@ -0,0 +1,37 @@
+# $Id: PKGBUILD 240297 2015-06-03 10:22:03Z fyan $
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt5-imageformats
+_qtver=5.10.0-beta4
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('i686' 'x86_64')
+url='http://qt-project.org/'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='Plugins for additional image formats: TIFF, MNG, TGA, WBMP'
+depends=('qt5-base' 'jasper' 'libmng' 'libwebp')
+makedepends=()
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("http://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('ba92669722a04e4cb4fa61838b4816769cc66140342c7b6496203929bd1366bc')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_pkgfqn}
+  make
+}
+
+package() {
+  cd build
+  make INSTALL_ROOT="$pkgdir" install
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}


[arch-commits] Commit in qt5-graphicaleffects/repos (2 files)

2017-11-14 Thread Antonio Rojas
Date: Tuesday, November 14, 2017 @ 18:45:12
  Author: arojas
Revision: 309949

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt5-graphicaleffects/repos/kde-unstable-x86_64/
  qt5-graphicaleffects/repos/kde-unstable-x86_64/PKGBUILD
(from rev 309948, qt5-graphicaleffects/kde-unstable/PKGBUILD)

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

Copied: qt5-graphicaleffects/repos/kde-unstable-x86_64/PKGBUILD (from rev 
309948, qt5-graphicaleffects/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2017-11-14 18:45:12 UTC (rev 309949)
@@ -0,0 +1,37 @@
+# $Id: PKGBUILD 240297 2015-06-03 10:22:03Z fyan $
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt5-graphicaleffects
+_qtver=5.10.0-beta4
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('i686' 'x86_64')
+url='http://qt-project.org/'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='Graphical effects for use with Qt Quick 2'
+depends=('qt5-declarative')
+makedepends=()
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("http://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('734ece7424cc71c7bc98f957bacf706c3a26a0a1bdfb8331cdb5e85c0e961901')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_pkgfqn}
+  make
+}
+
+package() {
+  cd build
+  make INSTALL_ROOT="$pkgdir" install
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}


[arch-commits] Commit in qt5-gamepad/repos (2 files)

2017-11-14 Thread Antonio Rojas
Date: Tuesday, November 14, 2017 @ 18:44:50
  Author: arojas
Revision: 309948

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt5-gamepad/repos/kde-unstable-x86_64/
  qt5-gamepad/repos/kde-unstable-x86_64/PKGBUILD
(from rev 309947, qt5-gamepad/kde-unstable/PKGBUILD)

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

Copied: qt5-gamepad/repos/kde-unstable-x86_64/PKGBUILD (from rev 309947, 
qt5-gamepad/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2017-11-14 18:44:50 UTC (rev 309948)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+
+pkgname=qt5-gamepad
+_qtver=5.10.0-beta4
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('i686' 'x86_64')
+url='http://qt-project.org/'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='Adds support for getting events from gamepad devices'
+depends=('qt5-base' 'sdl2')
+makedepends=('qt5-declarative')
+optdepends=('qt5-declarative: QML bindings')
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("http://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('6c59681ef6dd832a95f2a8da7e2666a5c034eefd5e34f5f9df5ee050bd7607dc')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_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 -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}


[arch-commits] Commit in qt5-examples/repos (2 files)

2017-11-14 Thread Antonio Rojas
Date: Tuesday, November 14, 2017 @ 18:44:25
  Author: arojas
Revision: 309947

archrelease: copy kde-unstable to kde-unstable-any

Added:
  qt5-examples/repos/kde-unstable-any/
  qt5-examples/repos/kde-unstable-any/PKGBUILD
(from rev 309946, qt5-examples/kde-unstable/PKGBUILD)

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

Copied: qt5-examples/repos/kde-unstable-any/PKGBUILD (from rev 309946, 
qt5-examples/kde-unstable/PKGBUILD)
===
--- kde-unstable-any/PKGBUILD   (rev 0)
+++ kde-unstable-any/PKGBUILD   2017-11-14 18:44:25 UTC (rev 309947)
@@ -0,0 +1,40 @@
+# $Id: PKGBUILD 240297 2015-06-03 10:22:03Z fyan $
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Michael Hansen 
+
+pkgname=qt5-examples
+_qtver=5.10.0-beta4
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('any')
+url='http://qt-project.org/'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='Examples and demos from qt5 documentation'
+depends=('qt5-doc')
+groups=('qt' 'qt5')
+_pkgfqn="qt-everywhere-src-${_qtver}"
+source=("http://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/single/${_pkgfqn}.tar.xz;)
+sha256sums=('6fde3b28130f985f5ef2d416d6ee1ec594a6695cc003b9b78e5341d551e5b1b8')
+
+package() {
+  _base="$pkgdir"/usr/share/doc/qt/examples
+
+  # The various example dirs have conflicting .pro files, but
+  # QtCreator requires them to be in the same top-level directory.
+  # Matching the Qt5 installer, only the qtbase project is kept.
+  mkdir -p $_base
+  cp ${_pkgfqn}/qtbase/examples/examples.pro $_base
+
+  _fdirs=$(find "${_pkgfqn}" -maxdepth 2 -type d -name examples)
+  for _dir in $_fdirs; do
+  _mod=$(basename ${_dir%/examples})
+
+  if [ -e "$_dir/README" ]; then
+cp $_dir/README $_dir/README.$_mod
+  fi
+
+# mkdir $_base/$_mod
+  cp -rn $_dir/* $_base
+  done
+}


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

2017-11-14 Thread Antonio Rojas
Date: Tuesday, November 14, 2017 @ 18:43:34
  Author: arojas
Revision: 309946

archrelease: copy kde-unstable to kde-unstable-any

Added:
  qt5-doc/repos/kde-unstable-any/
  qt5-doc/repos/kde-unstable-any/PKGBUILD
(from rev 309945, qt5-doc/kde-unstable/PKGBUILD)
  qt5-doc/repos/kde-unstable-any/qt-no-statx.patch
(from rev 309945, qt5-doc/kde-unstable/qt-no-statx.patch)

---+
 PKGBUILD  |   63 
 qt-no-statx.patch |   11 +
 2 files changed, 74 insertions(+)

Copied: qt5-doc/repos/kde-unstable-any/PKGBUILD (from rev 309945, 
qt5-doc/kde-unstable/PKGBUILD)
===
--- kde-unstable-any/PKGBUILD   (rev 0)
+++ kde-unstable-any/PKGBUILD   2017-11-14 18:43:34 UTC (rev 309946)
@@ -0,0 +1,63 @@
+# $Id: PKGBUILD 240297 2015-06-03 10:22:03Z fyan $
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Michael Hansen 
+
+pkgname=qt5-doc
+_qtver=5.10.0-beta4
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('any')
+url='http://qt-project.org/'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='A cross-platform application and UI framework (Documentation)'
+depends=('qt5-base')
+makedepends=('qt5-tools' 'python2' 'pciutils' 'libxtst' 'libxcursor' 
'libxrandr' 'libxss' 'libxcomposite' 'gperf' 'nss')
+groups=('qt' 'qt5')
+_pkgfqn="qt-everywhere-src-${_qtver}"
+source=("http://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/single/${_pkgfqn}.tar.xz;
+qt-no-statx.patch)
+sha256sums=('6fde3b28130f985f5ef2d416d6ee1ec594a6695cc003b9b78e5341d551e5b1b8'
+'5cd1d90622cc53609806a3ce0b2811b28f0e6e20eb835861de4492dddeef6e52')
+
+prepare() {
+  cd ${_pkgfqn}
+
+  ln -s /usr/bin qttools/
+  ln -s /usr/bin/{rcc,uic,moc} qtbase/bin/
+
+  # Hack to force using python2
+  cd "$srcdir"
+  mkdir -p bin
+  ln -s /usr/bin/python2 bin/python
+
+  # Don't use the statx syscall https://bugs.archlinux.org/task/56289 
https://bugreports.qt.io/browse/QTBUG-64490
+  cd ${_pkgfqn}/qtbase
+  patch -p1 -i "$srcdir"/qt-no-statx.patch
+}
+
+build() {
+  cd ${_pkgfqn}
+
+  export PATH="$srcdir/bin:$PATH"
+  PYTHON=/usr/bin/python2 ./configure -confirm-license -opensource \
+-prefix /usr \
+-docdir /usr/share/doc/qt \
+-headerdir /usr/include/qt \
+-archdatadir /usr/lib/qt \
+-datadir /usr/share/qt \
+-sysconfdir /etc/xdg \
+-examplesdir /usr/share/doc/qt/examples
+  make docs
+}
+
+package() {
+  cd ${_pkgfqn}
+  make INSTALL_ROOT="$pkgdir" install_docs
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+
+# Fix conflicts with qt5-examples
+  rm -r "$pkgdir"/usr/share/doc/qt/examples
+}

Copied: qt5-doc/repos/kde-unstable-any/qt-no-statx.patch (from rev 309945, 
qt5-doc/kde-unstable/qt-no-statx.patch)
===
--- kde-unstable-any/qt-no-statx.patch  (rev 0)
+++ kde-unstable-any/qt-no-statx.patch  2017-11-14 18:43:34 UTC (rev 309946)
@@ -0,0 +1,11 @@
+--- 
qtbase-everywhere-src-5.10.0-beta4/src/corelib/io/qfilesystemengine_unix.cpp.orig
  2017-11-14 12:10:28.156094557 +
 
qtbase-everywhere-src-5.10.0-beta4/src/corelib/io/qfilesystemengine_unix.cpp
   2017-11-14 12:10:46.156136206 +
+@@ -95,7 +95,7 @@
+ { return syscall(SYS_renameat2, oldfd, oldpath, newfd, newpath, flags); }
+ #  endif
+ 
+-#  if !QT_CONFIG(statx) && defined(SYS_statx) && 
QT_HAS_INCLUDE()
++#  if 0
+ #include 
+ static int statx(int dirfd, const char *pathname, int flag, unsigned mask, 
struct statx *statxbuf)
+ { return syscall(SYS_statx, dirfd, pathname, flag, mask, statxbuf); }


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

2017-11-14 Thread Levente Polyak
Date: Tuesday, November 14, 2017 @ 18:43:23
  Author: anthraxx
Revision: 266797

archrelease: copy trunk to community-x86_64

Added:
  python-yarl/repos/community-x86_64/PKGBUILD
(from rev 266796, python-yarl/trunk/PKGBUILD)
Deleted:
  python-yarl/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-11-14 18:43:15 UTC (rev 266796)
+++ PKGBUILD2017-11-14 18:43:23 UTC (rev 266797)
@@ -1,35 +0,0 @@
-# Maintainer: Levente Polyak 
-
-_pkgname=yarl
-pkgname=python-yarl
-pkgver=0.13.0
-pkgrel=1
-pkgdesc='Yet another URL library'
-url='https://github.com/aio-libs/yarl/'
-arch=('i686' 'x86_64')
-license=('Apache')
-depends=('python' 'python-multidict')
-makedepends=('cython' 'python-setuptools')
-checkdepends=('python-pytest')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/aio-libs/yarl/archive/v${pkgver}.tar.gz)
-sha256sums=('b15e1627046d02905187dd51b7869eef00dd3dbad7e31bc49de5813a66c53561')
-sha512sums=('8e45cc8dba7381ac2bf6212e8ddf62b24e94f3200b6388eb7cd67f118d93b3210b09deb39e2044d2467376cfc759105b5c001d574caf8228b2154003c484b049')
-
-build() {
-  cd ${_pkgname}-${pkgver}
-  LANG=en_US.UTF-8 python setup.py build
-}
-
-check() {
-  cd ${_pkgname}-${pkgver}
-  local PYTHONVERSION="$(python -c 'import sys; 
print("{}.{}".format(sys.version_info.major, sys.version_info.minor))')"
-  PYTHONPATH="build/lib.linux-${CARCH}-${PYTHONVERSION}" \
-py.test
-}
-
-package() {
-  cd ${_pkgname}-${pkgver}
-  LANG=en_US.UTF-8 python setup.py install --root="${pkgdir}" -O1 --skip-build
-}
-
-# vim: ts=2 sw=2 et:

Copied: python-yarl/repos/community-x86_64/PKGBUILD (from rev 266796, 
python-yarl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-11-14 18:43:23 UTC (rev 266797)
@@ -0,0 +1,35 @@
+# Maintainer: Levente Polyak 
+
+_pkgname=yarl
+pkgname=python-yarl
+pkgver=0.14.2
+pkgrel=1
+pkgdesc='Yet another URL library'
+url='https://github.com/aio-libs/yarl/'
+arch=('x86_64')
+license=('Apache')
+depends=('python' 'python-multidict' 'glibc')
+makedepends=('cython' 'python-setuptools')
+checkdepends=('python-pytest')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/aio-libs/yarl/archive/v${pkgver}.tar.gz)
+sha256sums=('869b9345468db4e51f719313778153415daab9a0689f78624731435a1507e3c6')
+sha512sums=('088d582b897ed0072a270367ade80835631a263e69b31fd99f80ce03cd7f96e9c94487461a3433f29f369ccfbcaffabbad4c6ed9e3c5d4e74d26c1ffcd0df57b')
+
+build() {
+  cd ${_pkgname}-${pkgver}
+  LANG=en_US.UTF-8 python setup.py build
+}
+
+check() {
+  cd ${_pkgname}-${pkgver}
+  local PYTHONVERSION="$(python -c 'import sys; 
print("{}.{}".format(sys.version_info.major, sys.version_info.minor))')"
+  PYTHONPATH="build/lib.linux-${CARCH}-${PYTHONVERSION}" \
+py.test
+}
+
+package() {
+  cd ${_pkgname}-${pkgver}
+  LANG=en_US.UTF-8 python setup.py install --root="${pkgdir}" -O1 --skip-build
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in qt5-datavis3d/repos (2 files)

2017-11-14 Thread Antonio Rojas
Date: Tuesday, November 14, 2017 @ 18:43:17
  Author: arojas
Revision: 309945

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt5-datavis3d/repos/kde-unstable-x86_64/
  qt5-datavis3d/repos/kde-unstable-x86_64/PKGBUILD
(from rev 309944, qt5-datavis3d/kde-unstable/PKGBUILD)

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

Copied: qt5-datavis3d/repos/kde-unstable-x86_64/PKGBUILD (from rev 309944, 
qt5-datavis3d/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2017-11-14 18:43:17 UTC (rev 309945)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+
+pkgname=qt5-datavis3d
+_qtver=5.10.0-beta4
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('i686' 'x86_64')
+url='http://qt-project.org/'
+license=('GPL3')
+pkgdesc='Qt Data Visualization module'
+depends=('qt5-base')
+makedepends=('qt5-declarative' 'vulkan-headers')
+optdepends=('qt5-declarative: QML bindings')
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("http://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('38e8599e9df980f229bc62ab7bd0d290b532a8b06443742c27c9e656bea94c10')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_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' {} \;
+}


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

2017-11-14 Thread Levente Polyak
Date: Tuesday, November 14, 2017 @ 18:43:15
  Author: anthraxx
Revision: 266796

upgpkg: python-yarl 0.14.2-1

Modified:
  python-yarl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-14 18:40:12 UTC (rev 266795)
+++ PKGBUILD2017-11-14 18:43:15 UTC (rev 266796)
@@ -2,18 +2,18 @@
 
 _pkgname=yarl
 pkgname=python-yarl
-pkgver=0.13.0
+pkgver=0.14.2
 pkgrel=1
 pkgdesc='Yet another URL library'
 url='https://github.com/aio-libs/yarl/'
-arch=('i686' 'x86_64')
+arch=('x86_64')
 license=('Apache')
-depends=('python' 'python-multidict')
+depends=('python' 'python-multidict' 'glibc')
 makedepends=('cython' 'python-setuptools')
 checkdepends=('python-pytest')
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/aio-libs/yarl/archive/v${pkgver}.tar.gz)
-sha256sums=('b15e1627046d02905187dd51b7869eef00dd3dbad7e31bc49de5813a66c53561')
-sha512sums=('8e45cc8dba7381ac2bf6212e8ddf62b24e94f3200b6388eb7cd67f118d93b3210b09deb39e2044d2467376cfc759105b5c001d574caf8228b2154003c484b049')
+sha256sums=('869b9345468db4e51f719313778153415daab9a0689f78624731435a1507e3c6')
+sha512sums=('088d582b897ed0072a270367ade80835631a263e69b31fd99f80ce03cd7f96e9c94487461a3433f29f369ccfbcaffabbad4c6ed9e3c5d4e74d26c1ffcd0df57b')
 
 build() {
   cd ${_pkgname}-${pkgver}


[arch-commits] Commit in qt5-connectivity/repos (2 files)

2017-11-14 Thread Antonio Rojas
Date: Tuesday, November 14, 2017 @ 18:43:03
  Author: arojas
Revision: 309944

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt5-connectivity/repos/kde-unstable-x86_64/
  qt5-connectivity/repos/kde-unstable-x86_64/PKGBUILD
(from rev 309943, qt5-connectivity/kde-unstable/PKGBUILD)

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

Copied: qt5-connectivity/repos/kde-unstable-x86_64/PKGBUILD (from rev 309943, 
qt5-connectivity/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2017-11-14 18:43:03 UTC (rev 309944)
@@ -0,0 +1,42 @@
+# $Id: PKGBUILD 240297 2015-06-03 10:22:03Z fyan $
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt5-connectivity
+_qtver=5.10.0-beta4
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('i686' 'x86_64')
+url='http://qt-project.org/'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='Provides access to Bluetooth hardware'
+depends=('qt5-base' 'bluez-libs')
+makedepends=('qt5-declarative')
+optdepends=('qt5-declarative: QML bindings')
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("http://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('f125b7e9d4c9c84a4d47b6e6285fc07ba675ec2035045d172cb5e0b4fe1e0607')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_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 -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}


[arch-commits] Commit in qt5-charts/repos (2 files)

2017-11-14 Thread Antonio Rojas
Date: Tuesday, November 14, 2017 @ 18:42:47
  Author: arojas
Revision: 309943

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt5-charts/repos/kde-unstable-x86_64/
  qt5-charts/repos/kde-unstable-x86_64/PKGBUILD
(from rev 309942, qt5-charts/kde-unstable/PKGBUILD)

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

Copied: qt5-charts/repos/kde-unstable-x86_64/PKGBUILD (from rev 309942, 
qt5-charts/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2017-11-14 18:42:47 UTC (rev 309943)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+
+pkgname=qt5-charts
+_qtver=5.10.0-beta4
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('i686' 'x86_64')
+url='http://qt-project.org/'
+license=('GPL3')
+pkgdesc='Provides a set of easy to use chart components'
+depends=('qt5-base')
+makedepends=('qt5-declarative' 'vulkan-headers')
+optdepends=('qt5-declarative: QML bindings')
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("http://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('34eaebebfe1c7e5d1ee90b651dcd3a891c83b18906e6ce5c4974be758239be4c')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_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' {} \;
+}


[arch-commits] Commit in qt5-canvas3d/repos (2 files)

2017-11-14 Thread Antonio Rojas
Date: Tuesday, November 14, 2017 @ 18:42:33
  Author: arojas
Revision: 309942

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt5-canvas3d/repos/kde-unstable-x86_64/
  qt5-canvas3d/repos/kde-unstable-x86_64/PKGBUILD
(from rev 309941, qt5-canvas3d/kde-unstable/PKGBUILD)

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

Copied: qt5-canvas3d/repos/kde-unstable-x86_64/PKGBUILD (from rev 309941, 
qt5-canvas3d/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2017-11-14 18:42:33 UTC (rev 309942)
@@ -0,0 +1,41 @@
+# $Id: PKGBUILD 240297 2015-06-03 10:22:03Z fyan $
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt5-canvas3d
+_qtver=5.10.0-beta4
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('i686' 'x86_64')
+url='http://qt-project.org/'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='A JavaScript 3D rendering API for Qt Quick'
+depends=('qt5-declarative')
+makedepends=()
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("http://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('bf42514d49800c02cc8e7baa2d1cad78eb1b25498378579643a71cf9e3c2f5ac')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_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 -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}


[arch-commits] Commit in qt5-3d/repos (2 files)

2017-11-14 Thread Antonio Rojas
Date: Tuesday, November 14, 2017 @ 18:42:18
  Author: arojas
Revision: 309941

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt5-3d/repos/kde-unstable-x86_64/
  qt5-3d/repos/kde-unstable-x86_64/PKGBUILD
(from rev 309940, qt5-3d/kde-unstable/PKGBUILD)

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

Copied: qt5-3d/repos/kde-unstable-x86_64/PKGBUILD (from rev 309940, 
qt5-3d/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2017-11-14 18:42:18 UTC (rev 309941)
@@ -0,0 +1,41 @@
+# $Id: PKGBUILD 240297 2015-06-03 10:22:03Z fyan $
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt5-3d
+_qtver=5.10.0-beta4
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('i686' 'x86_64')
+url='http://qt-project.org/'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='C++ and QML APIs for easy inclusion of 3D graphics'
+depends=('qt5-declarative' 'assimp')
+makedepends=('vulkan-headers')
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("http://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('de08b7e4a302c16f79c50261f7ee30162bdcbb02f86a40c5cde9e819dee72ab1')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_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 -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}


[arch-commits] Commit in qt5-websockets/repos (2 files)

2017-11-14 Thread Antonio Rojas
Date: Tuesday, November 14, 2017 @ 18:42:05
  Author: arojas
Revision: 309940

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt5-websockets/repos/kde-unstable-x86_64/
  qt5-websockets/repos/kde-unstable-x86_64/PKGBUILD
(from rev 309939, qt5-websockets/kde-unstable/PKGBUILD)

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

Copied: qt5-websockets/repos/kde-unstable-x86_64/PKGBUILD (from rev 309939, 
qt5-websockets/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2017-11-14 18:42:05 UTC (rev 309940)
@@ -0,0 +1,42 @@
+# $Id: PKGBUILD 240297 2015-06-03 10:22:03Z fyan $
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt5-websockets
+_qtver=5.10.0-beta4
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('i686' 'x86_64')
+url='http://qt-project.org/'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='Provides WebSocket communication compliant with RFC 6455'
+depends=('qt5-base')
+makedepends=('qt5-declarative')
+optdepends=('qt5-declarative: QML bindings')
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("http://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('48936c617028e8c3f20520d21ed9457e95c8b1df8c6e8d6b5a6652df5d932631')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_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 -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}


[arch-commits] Commit in qt5-webchannel/repos (2 files)

2017-11-14 Thread Antonio Rojas
Date: Tuesday, November 14, 2017 @ 18:41:30
  Author: arojas
Revision: 309938

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt5-webchannel/repos/kde-unstable-x86_64/
  qt5-webchannel/repos/kde-unstable-x86_64/PKGBUILD
(from rev 309937, qt5-webchannel/kde-unstable/PKGBUILD)

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

Copied: qt5-webchannel/repos/kde-unstable-x86_64/PKGBUILD (from rev 309937, 
qt5-webchannel/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2017-11-14 18:41:30 UTC (rev 309938)
@@ -0,0 +1,41 @@
+# $Id: PKGBUILD 240297 2015-06-03 10:22:03Z fyan $
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt5-webchannel
+_qtver=5.10.0-beta4
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('i686' 'x86_64')
+url='http://qt-project.org/'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='Provides access to QObject or QML objects from HTML clients for 
seamless integration of Qt applications with HTML/JavaScript clients'
+depends=('qt5-declarative')
+makedepends=()
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("http://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('c12413980a3f750c0b8e679df135574a7cf1cddb2ccc37ff91493467de81e1b4')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_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 -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}


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

2017-11-14 Thread Antonio Rojas
Date: Tuesday, November 14, 2017 @ 18:41:45
  Author: arojas
Revision: 309939

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt5-webengine/repos/kde-unstable-x86_64/
  qt5-webengine/repos/kde-unstable-x86_64/PKGBUILD
(from rev 309938, qt5-webengine/kde-unstable/PKGBUILD)
  qt5-webengine/repos/kde-unstable-x86_64/qtwebengine-harmony.patch
(from rev 309938, qt5-webengine/kde-unstable/qtwebengine-harmony.patch)

---+
 PKGBUILD  |   58 +
 qtwebengine-harmony.patch |   77 
 2 files changed, 135 insertions(+)

Copied: qt5-webengine/repos/kde-unstable-x86_64/PKGBUILD (from rev 309938, 
qt5-webengine/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2017-11-14 18:41:45 UTC (rev 309939)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt5-webengine
+_qtver=5.10.0-beta4
+pkgver=${_qtver/-/}
+pkgrel=1
+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' 
+ 'libevent' 'snappy' 'nss' 'protobuf' 'libxslt' 'minizip' 'ffmpeg' 
're2') # libvpx - 1.6.1 not supported
+makedepends=('python2' 'git' 'gperf' 'jsoncpp' 'ninja' 'qt5-tools' 
'vulkan-headers')
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("http://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;
+ qtwebengine-harmony.patch)
+sha256sums=('4774361b2ffb9acf9ed7955c544ef06ca969f6ea0c03af2afe19ca01562c43fa'
+'feca54ab09ac0fc9d0626770a6b899a6ac5a12173c7d0c1005bc3964ec83e7b3')
+
+prepare() {
+  mkdir -p build
+
+  # Hack to force using python2
+  mkdir -p bin
+  ln -s /usr/bin/python2 bin/python
+
+  cd ${_pkgfqn}
+
+  # FreeType 2.8.1
+  patch -Np1 -i ../qtwebengine-harmony.patch
+}
+
+build() {
+  cd build
+
+  export PATH="$srcdir/bin:$PATH"
+  qmake ../${_pkgfqn} -- \
+-proprietary-codecs \
+-system-ffmpeg \
+-webp \
+-spellchecker
+#   -webengine-icu
+  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/kde-unstable-x86_64/qtwebengine-harmony.patch (from 
rev 309938, qt5-webengine/kde-unstable/qtwebengine-harmony.patch)
===
--- kde-unstable-x86_64/qtwebengine-harmony.patch   
(rev 0)
+++ kde-unstable-x86_64/qtwebengine-harmony.patch   2017-11-14 18:41:45 UTC 
(rev 309939)
@@ -0,0 +1,77 @@
+--- 
qtwebengine-opensource-src-5.9.1/src/3rdparty/chromium/third_party/skia/src/ports/SkFontHost_FreeType.cpp.orig
 2017-10-10 17:42:06.956950985 +0200
 
qtwebengine-opensource-src-5.9.1/src/3rdparty/chromium/third_party/skia/src/ports/SkFontHost_FreeType.cpp
  2017-10-10 17:46:05.824187787 +0200
+@@ -99,8 +99,6 @@
+ FreeTypeLibrary()
+ : fGetVarDesignCoordinates(nullptr)
+ , fLibrary(nullptr)
+-, fIsLCDSupported(false)
+-, fLCDExtra(0)
+ {
+ if (FT_New_Library(, )) {
+ return;
+@@ -147,12 +145,7 @@
+ }
+ #endif
+ 
+-// Setup LCD filtering. This reduces color fringes for LCD smoothed 
glyphs.
+-// The default has changed over time, so this doesn't mean the same 
thing to all users.
+-if (FT_Library_SetLcdFilter(fLibrary, FT_LCD_FILTER_DEFAULT) == 0) {
+-fIsLCDSupported = true;
+-fLCDExtra = 2; //Using a filter adds one full pixel to each side.
+-}
++FT_Library_SetLcdFilter(fLibrary, FT_LCD_FILTER_DEFAULT);
+ }
+ ~FreeTypeLibrary() {
+ if (fLibrary) {
+@@ -161,8 +153,6 @@
+ }
+ 
+ FT_Library library() { return fLibrary; }
+-bool isLCDSupported() { return fIsLCDSupported; }
+-int lcdExtra() { return fLCDExtra; }
+ 
+ // FT_Get_{MM,Var}_{Blend,Design}_Coordinates were added in FreeType 
2.7.1.
+ // Prior to this there was no way to get the coordinates out of the 
FT_Face.
+@@ -173,8 +163,6 @@
+ 
+ private:
+ FT_Library fLibrary;
+-bool fIsLCDSupported;
+-int fLCDExtra;
+ 
+ // FT_Library_SetLcdFilterWeights was introduced in FreeType 2.4.0.
+ // The following platforms provide FreeType of at least 2.4.0.
+@@ -704,17 +692,6 @@
+ 

[arch-commits] Commit in qt5-translations/repos (2 files)

2017-11-14 Thread Antonio Rojas
Date: Tuesday, November 14, 2017 @ 18:41:16
  Author: arojas
Revision: 309937

archrelease: copy kde-unstable to kde-unstable-any

Added:
  qt5-translations/repos/kde-unstable-any/
  qt5-translations/repos/kde-unstable-any/PKGBUILD
(from rev 309936, qt5-translations/kde-unstable/PKGBUILD)

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

Copied: qt5-translations/repos/kde-unstable-any/PKGBUILD (from rev 309936, 
qt5-translations/kde-unstable/PKGBUILD)
===
--- kde-unstable-any/PKGBUILD   (rev 0)
+++ kde-unstable-any/PKGBUILD   2017-11-14 18:41:16 UTC (rev 309937)
@@ -0,0 +1,37 @@
+# $Id: PKGBUILD 240297 2015-06-03 10:22:03Z fyan $
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt5-translations
+_qtver=5.10.0-beta4
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('any')
+url='http://qt-project.org/'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='A cross-platform application and UI framework (Translations)'
+depends=('qt5-base')
+makedepends=('qt5-tools')
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("http://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('53bbe8b7d9718ec6041ec750b9f3977e05f17545fe022c7b0f67043341332e55')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_pkgfqn}
+  make
+}
+
+package() {
+  cd build
+  make INSTALL_ROOT="$pkgdir" install
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}


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

2017-11-14 Thread Antonio Rojas
Date: Tuesday, November 14, 2017 @ 18:41:01
  Author: arojas
Revision: 309936

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt5-tools/repos/kde-unstable-x86_64/
  qt5-tools/repos/kde-unstable-x86_64/PKGBUILD
(from rev 309935, qt5-tools/kde-unstable/PKGBUILD)
  qt5-tools/repos/kde-unstable-x86_64/assistant.desktop
(from rev 309935, qt5-tools/kde-unstable/assistant.desktop)
  qt5-tools/repos/kde-unstable-x86_64/designer.desktop
(from rev 309935, qt5-tools/kde-unstable/designer.desktop)
  qt5-tools/repos/kde-unstable-x86_64/linguist.desktop
(from rev 309935, qt5-tools/kde-unstable/linguist.desktop)
  qt5-tools/repos/kde-unstable-x86_64/qdbusviewer.desktop
(from rev 309935, qt5-tools/kde-unstable/qdbusviewer.desktop)

-+
 PKGBUILD|   75 ++
 assistant.desktop   |8 +
 designer.desktop|   10 ++
 linguist.desktop|9 ++
 qdbusviewer.desktop |9 ++
 5 files changed, 111 insertions(+)

Copied: qt5-tools/repos/kde-unstable-x86_64/PKGBUILD (from rev 309935, 
qt5-tools/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2017-11-14 18:41:01 UTC (rev 309936)
@@ -0,0 +1,75 @@
+# $Id: PKGBUILD 240297 2015-06-03 10:22:03Z fyan $
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt5-tools
+_qtver=5.10.0-beta4
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('i686' 'x86_64')
+url='http://qt-project.org/'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='A cross-platform application and UI framework (Development Tools, 
QtHelp)'
+depends=('qt5-base' 'hicolor-icon-theme')
+makedepends=('qt5-declarative' 'qt5-webkit' 'vulkan-headers')
+optdepends=('qt5-doc: documentation' 'qt5-webkit: for Qt Assistant')
+groups=('qt' 'qt5')
+conflicts=('qtchooser')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("http://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;
+{assistant,designer,linguist,qdbusviewer}.desktop)
+sha256sums=('7b1411c4d728eb626500798e420747fbe2552cd189a5fb3b804fee961d3dc029'
+'8092d6d846e39632107b14726fa112862d800e929ef10f05f2a284dbda9b53c4'
+'366e18ba400068df40d26a3c944d6bd4925bf22c32f171b837a3f4e387eff019'
+'db1ad1d27ce73820b8d50291618b6f817292f15f55107274064b9ae99201069a'
+'cd94367e35f99ab85277aa95985bbde292a9cc82db2c04c4efdaed5799aa16db')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_pkgfqn}
+  make
+}
+
+package() {
+  cd build
+  make INSTALL_ROOT="${pkgdir}" install
+
+  cd ../${_pkgfqn}
+  # install missing icons and desktop files
+  for icon in src/linguist/linguist/images/icons/linguist-*-32.png ; do
+size=$(echo $(basename ${icon}) | cut -d- -f2)
+install -p -D -m644 ${icon} \
+  "${pkgdir}/usr/share/icons/hicolor/${size}x${size}/apps/linguist.png"
+  done
+
+  install -D -m644 src/assistant/assistant/images/assistant.png \
+"${pkgdir}/usr/share/icons/hicolor/32x32/apps/assistant.png"
+  install -D -m644 src/assistant/assistant/images/assistant-128.png \
+"${pkgdir}/usr/share/icons/hicolor/128x128/apps/assistant.png"
+  install -D -m644 src/designer/src/designer/images/designer.png \
+"${pkgdir}/usr/share/icons/hicolor/128x128/apps/QtProject-designer.png"
+  install -D -m644 src/qdbus/qdbusviewer/images/qdbusviewer.png \
+"${pkgdir}/usr/share/icons/hicolor/32x32/apps/qdbusviewer.png"
+  install -D -m644 src/qdbus/qdbusviewer/images/qdbusviewer-128.png \
+"${pkgdir}/usr/share/icons/hicolor/128x128/apps/qdbusviewer.png"
+  install -d "${pkgdir}/usr/share/applications"
+  install -m644 "${srcdir}"/{linguist,designer,assistant,qdbusviewer}.desktop \
+"${pkgdir}/usr/share/applications/"
+
+  # Symlinks for backwards compatibility
+  for b in "${pkgdir}"/usr/bin/*; do
+ln -s /usr/bin/$(basename $b) "${pkgdir}"/usr/bin/$(basename $b)-qt5
+  done
+
+  # 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 -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}

Copied: qt5-tools/repos/kde-unstable-x86_64/assistant.desktop (from rev 309935, 
qt5-tools/kde-unstable/assistant.desktop)
===
--- kde-unstable-x86_64/assistant.desktop   (rev 0)
+++ kde-unstable-x86_64/assistant.desktop   2017-11-14 18:41:01 UTC (rev 
309936)
@@ -0,0 +1,8 @@
+[Desktop Entry]
+Name=Qt Assistant
+Comment=Shows Qt documentation and examples
+Exec=assistant
+Icon=assistant
+Terminal=false
+Type=Application

[arch-commits] Commit in qt5-serialport/repos (2 files)

2017-11-14 Thread Antonio Rojas
Date: Tuesday, November 14, 2017 @ 18:40:43
  Author: arojas
Revision: 309935

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt5-serialport/repos/kde-unstable-x86_64/
  qt5-serialport/repos/kde-unstable-x86_64/PKGBUILD
(from rev 309934, qt5-serialport/kde-unstable/PKGBUILD)

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

Copied: qt5-serialport/repos/kde-unstable-x86_64/PKGBUILD (from rev 309934, 
qt5-serialport/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2017-11-14 18:40:43 UTC (rev 309935)
@@ -0,0 +1,41 @@
+# $Id: PKGBUILD 240297 2015-06-03 10:22:03Z fyan $
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt5-serialport
+_qtver=5.10.0-beta4
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('i686' 'x86_64')
+url='http://qt-project.org/'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='Provides access to hardware and virtual serial ports'
+depends=('qt5-base')
+makedepends=()
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("http://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('666c8aa4b3a007295cd67bba82c7a4bf5483a21ffc81e3459515c9c6f7390c16')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_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 -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}


[arch-commits] Commit in qt5-sensors/repos (2 files)

2017-11-14 Thread Antonio Rojas
Date: Tuesday, November 14, 2017 @ 18:40:28
  Author: arojas
Revision: 309934

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt5-sensors/repos/kde-unstable-x86_64/
  qt5-sensors/repos/kde-unstable-x86_64/PKGBUILD
(from rev 309933, qt5-sensors/kde-unstable/PKGBUILD)

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

Copied: qt5-sensors/repos/kde-unstable-x86_64/PKGBUILD (from rev 309933, 
qt5-sensors/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2017-11-14 18:40:28 UTC (rev 309934)
@@ -0,0 +1,42 @@
+# $Id: PKGBUILD 240297 2015-06-03 10:22:03Z fyan $
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt5-sensors
+_qtver=5.10.0-beta4
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('i686' 'x86_64')
+url='http://qt-project.org/'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='Provides access to sensor hardware and motion gesture recognition'
+depends=('qt5-base')
+makedepends=('qt5-declarative')
+optdepends=('qt5-declarative: QML bindings')
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("http://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('a53aade786943d27266c8cb60ba443368f0543bd9d9666c1fb8a64932161a968')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_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 -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}


[arch-commits] Commit in qt5-location/repos (2 files)

2017-11-14 Thread Antonio Rojas
Date: Tuesday, November 14, 2017 @ 18:40:13
  Author: arojas
Revision: 309933

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt5-location/repos/kde-unstable-x86_64/
  qt5-location/repos/kde-unstable-x86_64/PKGBUILD
(from rev 309932, qt5-location/kde-unstable/PKGBUILD)

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

Copied: qt5-location/repos/kde-unstable-x86_64/PKGBUILD (from rev 309932, 
qt5-location/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2017-11-14 18:40:13 UTC (rev 309933)
@@ -0,0 +1,42 @@
+# $Id: PKGBUILD 240297 2015-06-03 10:22:03Z fyan $
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt5-location
+_qtver=5.10.0-beta4
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('i686' 'x86_64')
+url='http://qt-project.org/'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='Provides access to position, satellite and area monitoring classes'
+depends=('qt5-declarative')
+makedepends=('gypsy' 'gconf' 'vulkan-headers')
+optdepends=('gypsy: Gypsy geolocation plugin')
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("http://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('18a1672ffe8ab49f8dc31c0bf209e9d5cc0525f2640ae0dd0dfe8ad16161b8b1')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_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 -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}


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

2017-11-14 Thread Levente Polyak
Date: Tuesday, November 14, 2017 @ 18:40:12
  Author: anthraxx
Revision: 266795

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-11-14 18:40:01 UTC (rev 266794)
+++ PKGBUILD2017-11-14 18:40:12 UTC (rev 266795)
@@ -1,65 +0,0 @@
-# Maintainer: Levente Polyak 
-
-pkgbase=python-socketio
-pkgname=('python-socketio' 'python2-socketio')
-pkgver=1.8.1
-pkgrel=1
-pkgdesc='Python implementation of the Socket.IO realtime server'
-url='https://github.com/miguelgrinberg/python-socketio'
-arch=('any')
-license=('MIT')
-makedepends=('python-setuptools' 'python-sphinx' 'python-six' 'python-engineio'
- 'python2-setuptools' 'python2-sphinx' 'python2-six' 
'python2-engineio')
-checkdepends=('python-pytest' 'python-mock' 'python2-pytest' 'python2-mock')
-options=('!makeflags')
-source=(${pkgbase}-${pkgver}.tar.gz::https://github.com/miguelgrinberg/python-socketio/archive/v${pkgver}.tar.gz)
-sha256sums=('de1bdd8f83b610c13156e0d1ca9b86d84bb33cb5ec403a7f3a2de096803d3b70')
-sha512sums=('071c52d7783d8d42ce2c168b925dc14aa4c89be00180fa0d963943c9c6d97f827092033d4cad5ebf9f803911cad7e217260548373e8b654fcb0aa29eebc20d5a')
-
-prepare() {
-  cp -ra ${pkgbase}-${pkgver}{,-py2}
-}
-
-build() {
-  (cd ${pkgbase}-${pkgver}
-python setup.py build
-make -C docs man text SPHINXBUILD=sphinx-build
-  )
-  (cd ${pkgbase}-${pkgver}-py2
-python2 setup.py build
-make -C docs man text SPHINXBUILD=sphinx-build2
-  )
-}
-
-check() {
-  (cd ${pkgbase}-${pkgver}
-py.test
-  )
-  (cd ${pkgbase}-${pkgver}-py2
-py.test2
-  )
-}
-
-package_python-socketio() {
-  depends=('python-six' 'python-engineio')
-
-  cd ${pkgbase}-${pkgver}
-  python setup.py install -O1 --root="${pkgdir}" --skip-build
-  install -Dm 644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  install -Dm 644 README.rst "${pkgdir}/usr/share/doc/${pkgname}/README"
-  install -Dm 644 docs/_build/text/index.txt 
"${pkgdir}/usr/share/doc/${pkgname}/DOCUMENTATION"
-  install -Dm 644 docs/_build/man/socketio.1 
"${pkgdir}/usr/share/man/man1/${pkgname}.1"
-}
-
-package_python2-socketio() {
-  depends=('python2-six' 'python2-engineio')
-
-  cd ${pkgbase}-${pkgver}-py2
-  python2 setup.py install -O1 --root="${pkgdir}" --skip-build
-  install -Dm 644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  install -Dm 644 README.rst "${pkgdir}/usr/share/doc/${pkgname}/README"
-  install -Dm 644 docs/_build/text/index.txt 
"${pkgdir}/usr/share/doc/${pkgname}/DOCUMENTATION"
-  install -Dm 644 docs/_build/man/socketio.1 
"${pkgdir}/usr/share/man/man1/${pkgname}.1"
-}
-
-# vim: ts=2 sw=2 et:

Copied: python-socketio/repos/community-any/PKGBUILD (from rev 266794, 
python-socketio/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-11-14 18:40:12 UTC (rev 266795)
@@ -0,0 +1,68 @@
+# Maintainer: Levente Polyak 
+
+pkgbase=python-socketio
+pkgname=('python-socketio' 'python2-socketio')
+pkgver=1.8.3
+pkgrel=1
+pkgdesc='Python implementation of the Socket.IO realtime server'
+url='https://github.com/miguelgrinberg/python-socketio'
+arch=('any')
+license=('MIT')
+makedepends=('python-setuptools' 'python-sphinx' 'python-six' 'python-engineio'
+ 'python2-setuptools' 'python2-sphinx' 'python2-six' 
'python2-engineio')
+checkdepends=('python-pytest' 'python-mock'
+  'python2-pytest' 'python2-mock')
+options=('!makeflags')
+source=(${pkgbase}-${pkgver}.tar.gz::https://github.com/miguelgrinberg/python-socketio/archive/v${pkgver}.tar.gz)
+sha256sums=('c8a6e0576e50e9cc3db3d8cc0901d3f1f587e67643775c40b9d4a3c30f6a7448')
+sha512sums=('e6b3c64c42c25490f9f5e45c32fad44cb5acb3c1ef09705d7539cf1ad828c3ab4cb75fbc4578ae85a4a98f6134827dbbfac02316c2afbb0508c0774aead35704')
+
+prepare() {
+  cp -ra ${pkgbase}-${pkgver}{,-py2}
+}
+
+build() {
+  msg2 'Building python...'
+  (cd ${pkgbase}-${pkgver}
+python setup.py build
+make -C docs man text SPHINXBUILD=sphinx-build
+  )
+  msg2 'Building python2...'
+  (cd ${pkgbase}-${pkgver}-py2
+python2 setup.py build
+make -C docs man text SPHINXBUILD=sphinx-build2
+  )
+}
+
+check() {
+  msg2 'Checking python...'
+  (cd ${pkgbase}-${pkgver}
+py.test
+  )
+  msg2 'Checking python2...'
+  (cd ${pkgbase}-${pkgver}-py2
+py.test2
+  )
+}
+
+package_python-socketio() {
+  depends=('python' 'python-six' 'python-engineio')
+  cd ${pkgbase}-${pkgver}
+  python setup.py install -O1 --root="${pkgdir}" --skip-build
+  install -Dm 644 

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

2017-11-14 Thread Levente Polyak
Date: Tuesday, November 14, 2017 @ 18:40:01
  Author: anthraxx
Revision: 266794

upgpkg: python-socketio 1.8.3-1

Modified:
  python-socketio/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-14 18:35:10 UTC (rev 266793)
+++ PKGBUILD2017-11-14 18:40:01 UTC (rev 266794)
@@ -2,7 +2,7 @@
 
 pkgbase=python-socketio
 pkgname=('python-socketio' 'python2-socketio')
-pkgver=1.8.1
+pkgver=1.8.3
 pkgrel=1
 pkgdesc='Python implementation of the Socket.IO realtime server'
 url='https://github.com/miguelgrinberg/python-socketio'
@@ -10,11 +10,12 @@
 license=('MIT')
 makedepends=('python-setuptools' 'python-sphinx' 'python-six' 'python-engineio'
  'python2-setuptools' 'python2-sphinx' 'python2-six' 
'python2-engineio')
-checkdepends=('python-pytest' 'python-mock' 'python2-pytest' 'python2-mock')
+checkdepends=('python-pytest' 'python-mock'
+  'python2-pytest' 'python2-mock')
 options=('!makeflags')
 
source=(${pkgbase}-${pkgver}.tar.gz::https://github.com/miguelgrinberg/python-socketio/archive/v${pkgver}.tar.gz)
-sha256sums=('de1bdd8f83b610c13156e0d1ca9b86d84bb33cb5ec403a7f3a2de096803d3b70')
-sha512sums=('071c52d7783d8d42ce2c168b925dc14aa4c89be00180fa0d963943c9c6d97f827092033d4cad5ebf9f803911cad7e217260548373e8b654fcb0aa29eebc20d5a')
+sha256sums=('c8a6e0576e50e9cc3db3d8cc0901d3f1f587e67643775c40b9d4a3c30f6a7448')
+sha512sums=('e6b3c64c42c25490f9f5e45c32fad44cb5acb3c1ef09705d7539cf1ad828c3ab4cb75fbc4578ae85a4a98f6134827dbbfac02316c2afbb0508c0774aead35704')
 
 prepare() {
   cp -ra ${pkgbase}-${pkgver}{,-py2}
@@ -21,10 +22,12 @@
 }
 
 build() {
+  msg2 'Building python...'
   (cd ${pkgbase}-${pkgver}
 python setup.py build
 make -C docs man text SPHINXBUILD=sphinx-build
   )
+  msg2 'Building python2...'
   (cd ${pkgbase}-${pkgver}-py2
 python2 setup.py build
 make -C docs man text SPHINXBUILD=sphinx-build2
@@ -32,9 +35,11 @@
 }
 
 check() {
+  msg2 'Checking python...'
   (cd ${pkgbase}-${pkgver}
 py.test
   )
+  msg2 'Checking python2...'
   (cd ${pkgbase}-${pkgver}-py2
 py.test2
   )
@@ -41,23 +46,21 @@
 }
 
 package_python-socketio() {
-  depends=('python-six' 'python-engineio')
-
+  depends=('python' 'python-six' 'python-engineio')
   cd ${pkgbase}-${pkgver}
   python setup.py install -O1 --root="${pkgdir}" --skip-build
-  install -Dm 644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  install -Dm 644 README.rst "${pkgdir}/usr/share/doc/${pkgname}/README"
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -Dm 644 README.rst -t "${pkgdir}/usr/share/doc/${pkgname}"
   install -Dm 644 docs/_build/text/index.txt 
"${pkgdir}/usr/share/doc/${pkgname}/DOCUMENTATION"
   install -Dm 644 docs/_build/man/socketio.1 
"${pkgdir}/usr/share/man/man1/${pkgname}.1"
 }
 
 package_python2-socketio() {
-  depends=('python2-six' 'python2-engineio')
-
+  depends=('python2' 'python2-six' 'python2-engineio')
   cd ${pkgbase}-${pkgver}-py2
   python2 setup.py install -O1 --root="${pkgdir}" --skip-build
-  install -Dm 644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  install -Dm 644 README.rst "${pkgdir}/usr/share/doc/${pkgname}/README"
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -Dm 644 README.rst -t "${pkgdir}/usr/share/doc/${pkgname}"
   install -Dm 644 docs/_build/text/index.txt 
"${pkgdir}/usr/share/doc/${pkgname}/DOCUMENTATION"
   install -Dm 644 docs/_build/man/socketio.1 
"${pkgdir}/usr/share/man/man1/${pkgname}.1"
 }


[arch-commits] Commit in qt5-xmlpatterns/repos (2 files)

2017-11-14 Thread Antonio Rojas
Date: Tuesday, November 14, 2017 @ 18:39:28
  Author: arojas
Revision: 309931

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt5-xmlpatterns/repos/kde-unstable-x86_64/
  qt5-xmlpatterns/repos/kde-unstable-x86_64/PKGBUILD
(from rev 309930, qt5-xmlpatterns/kde-unstable/PKGBUILD)

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

Copied: qt5-xmlpatterns/repos/kde-unstable-x86_64/PKGBUILD (from rev 309930, 
qt5-xmlpatterns/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2017-11-14 18:39:28 UTC (rev 309931)
@@ -0,0 +1,42 @@
+# $Id: PKGBUILD 240297 2015-06-03 10:22:03Z fyan $
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt5-xmlpatterns
+_qtver=5.10.0-beta4
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('i686' 'x86_64')
+url='http://qt-project.org/'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='Support for XPath, XQuery, XSLT and XML schema validation'
+depends=('qt5-base')
+makedepends=()
+conflicts=('qtchooser')
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("http://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('f4b286c934fb6e74eea2779ee9fa7fcd72733847e2c59122762d5b5100b71c7f')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_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 -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}


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

2017-11-14 Thread Antonio Rojas
Date: Tuesday, November 14, 2017 @ 18:39:56
  Author: arojas
Revision: 309932

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt5-declarative/repos/kde-unstable-x86_64/
  qt5-declarative/repos/kde-unstable-x86_64/PKGBUILD
(from rev 309931, qt5-declarative/kde-unstable/PKGBUILD)
  qt5-declarative/repos/kde-unstable-x86_64/qtbug-61754.patch
(from rev 309931, qt5-declarative/kde-unstable/qtbug-61754.patch)

---+
 PKGBUILD  |   52 
 qtbug-61754.patch |   25 +
 2 files changed, 77 insertions(+)

Copied: qt5-declarative/repos/kde-unstable-x86_64/PKGBUILD (from rev 309931, 
qt5-declarative/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2017-11-14 18:39:56 UTC (rev 309932)
@@ -0,0 +1,52 @@
+# $Id: PKGBUILD 240297 2015-06-03 10:22:03Z fyan $
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt5-declarative
+_qtver=5.10.0-beta4
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('i686' 'x86_64')
+url='http://qt-project.org/'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='Classes for QML and JavaScript languages'
+depends=('qt5-xmlpatterns')
+makedepends=('python2' 'vulkan-headers')
+groups=('qt' 'qt5')
+conflicts=('qtchooser' 'qt5-declarative-render2d')
+replaces=('qt5-declarative-render2d')
+_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
+source=("http://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;)
+sha256sums=('e399fb4c6a76328b70e351681a433f4b3811874a5a1b66619bbf33c0148c41fd')
+
+prepare() {
+  mkdir -p build
+
+  # Use python2 for Python 2.x
+  find -name '*.pro' -o -name '*.pri' | xargs sed -i -e 's|python -c|python2 
-c|g' -e 's|python \$|python2 \$|g'
+}
+
+build() {
+  cd build
+
+  export PYTHON=python2
+  qmake ../${_pkgfqn}
+  make
+}
+
+package() {
+  cd build
+  make INSTALL_ROOT="$pkgdir" install
+
+  # Symlinks for backwards compatibility
+  for b in "$pkgdir"/usr/bin/*; do
+ln -s /usr/bin/$(basename $b) "$pkgdir"/usr/bin/$(basename $b)-qt5
+  done
+
+  # 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 -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}

Copied: qt5-declarative/repos/kde-unstable-x86_64/qtbug-61754.patch (from rev 
309931, qt5-declarative/kde-unstable/qtbug-61754.patch)
===
--- kde-unstable-x86_64/qtbug-61754.patch   (rev 0)
+++ kde-unstable-x86_64/qtbug-61754.patch   2017-11-14 18:39:56 UTC (rev 
309932)
@@ -0,0 +1,25 @@
+From 768f606cd3cd37c235e85225127201a42d272946 Mon Sep 17 00:00:00 2001
+From: Joni Poikelin 
+Date: Thu, 17 Aug 2017 09:49:25 +0300
+Subject: [PATCH] Fix memory leaks with threaded renderer
+
+Reverts 39061af50cc3092289cdd71d17802139590ecb59 and calls endSync()
+instead after syncSceneGraph().
+
+Task-number: QTBUG-61754
+Change-Id: I7b51ffdc93557bacd93927dd642ec3715980b21c
+Reviewed-by: Laszlo Agocs 
+Reviewed-by: Roger Zanoni 
+---
+diff --git a/src/quick/scenegraph/qsgthreadedrenderloop.cpp 
b/src/quick/scenegraph/qsgthreadedrenderloop.cpp
+index 3a8e673c0..d28a73da2 100644
+--- a/src/quick/scenegraph/qsgthreadedrenderloop.cpp
 b/src/quick/scenegraph/qsgthreadedrenderloop.cpp
+@@ -553,6 +553,7 @@ void QSGRenderThread::sync(bool inExpose)
+ if (d->renderer)
+ d->renderer->clearChangedFlag();
+ d->syncSceneGraph();
++sgrc->endSync();
+ if (!hadRenderer && d->renderer) {
+ qCDebug(QSG_LOG_RENDERLOOP) << QSG_RT_PAD << "- renderer was 
created";
+ syncResultedInChanges = true;


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

2017-11-14 Thread Antonio Rojas
Date: Tuesday, November 14, 2017 @ 18:39:06
  Author: arojas
Revision: 309930

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt5-base/repos/kde-unstable-x86_64/
  qt5-base/repos/kde-unstable-x86_64/PKGBUILD
(from rev 309929, qt5-base/kde-unstable/PKGBUILD)
  qt5-base/repos/kde-unstable-x86_64/qt-no-statx.patch
(from rev 309929, qt5-base/kde-unstable/qt-no-statx.patch)
  qt5-base/repos/kde-unstable-x86_64/rebuild.list
(from rev 309929, qt5-base/kde-unstable/rebuild.list)

---+
 PKGBUILD  |  114 
 qt-no-statx.patch |   11 +
 rebuild.list  |   20 +
 3 files changed, 145 insertions(+)

Copied: qt5-base/repos/kde-unstable-x86_64/PKGBUILD (from rev 309929, 
qt5-base/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2017-11-14 18:39:06 UTC (rev 309930)
@@ -0,0 +1,114 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgbase=qt5-base
+pkgname=(qt5-base qt5-xcb-private-headers)
+_qtver=5.10.0-beta4
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('i686' 'x86_64')
+url='http://qt-project.org/'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='A cross-platform application and UI framework'
+depends=('libjpeg-turbo' 'xcb-util-keysyms' 'xcb-util-renderutil' 'libgl' 
'fontconfig'
+ 'xcb-util-wm' 'libxrender' 'libxi' 'sqlite' 'xcb-util-image' 'icu' 
'pcre2'
+ 'tslib' 'libinput' 'libsm' 'libxkbcommon-x11' 'libproxy' 'libcups' 
'double-conversion')
+makedepends=('libfbclient' 'libmariadbclient' 'sqlite' 'unixodbc' 
'postgresql-libs' 'alsa-lib' 'gst-plugins-base-libs'
+ 'gtk3' 'libpulse' 'cups' 'freetds' 'vulkan-headers')
+optdepends=('qt5-svg: to use SVG icon themes'
+'postgresql-libs: PostgreSQL driver'
+'libmariadbclient: MariaDB driver'
+'unixodbc: ODBC driver'
+'libfbclient: Firebird/iBase driver'
+'freetds: MS SQL driver'
+'gtk3: GTK platform plugin')
+conflicts=('qtchooser')
+groups=('qt' 'qt5')
+_pkgfqn="${pkgbase/5-/}-everywhere-src-${_qtver}"
+source=("http://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz;
+qt-no-statx.patch)
+sha256sums=('138ad8931b93765b82df39352ecb915c89d627bcefb34c90f5f16e75ab8aa905'
+'5cd1d90622cc53609806a3ce0b2811b28f0e6e20eb835861de4492dddeef6e52')
+
+prepare() {
+  cd ${_pkgfqn}
+
+  # Build qmake using Arch {C,LD}FLAGS
+  # This also sets default {C,CXX,LD}FLAGS for projects built using qmake
+  sed -i -e "s|^\(QMAKE_CFLAGS_RELEASE.*\)|\1 ${CFLAGS}|" \
+mkspecs/common/gcc-base.conf
+  sed -i -e "s|^\(QMAKE_LFLAGS_RELEASE.*\)|\1 ${LDFLAGS}|" \
+mkspecs/common/g++-unix.conf
+
+  # Use python2 for Python 2.x
+  find . -name '*.py' -exec sed -i \
+'s|#![ ]*/usr/bin/python$|&2|;s|#![ ]*/usr/bin/env python$|&2|' {} +
+
+  # Fix missing private includes https://bugreports.qt.io/browse/QTBUG-37417
+  sed -e '/CMAKE_NO_PRIVATE_INCLUDES\ \=\ true/d' -i 
mkspecs/features/create_cmake.prf
+
+  # Don't use the statx syscall https://bugs.archlinux.org/task/56289 
https://bugreports.qt.io/browse/QTBUG-64490
+  patch -p1 -i ../qt-no-statx.patch
+}
+
+build() {
+  cd ${_pkgfqn}
+
+  PYTHON=/usr/bin/python2 ./configure -confirm-license -opensource -v \
+-prefix /usr \
+-docdir /usr/share/doc/qt \
+-headerdir /usr/include/qt \
+-archdatadir /usr/lib/qt \
+-datadir /usr/share/qt \
+-sysconfdir /etc/xdg \
+-examplesdir /usr/share/doc/qt/examples \
+-plugin-sql-{psql,mysql,sqlite,odbc,ibase} \
+-system-sqlite \
+-openssl-linked \
+-nomake examples \
+-no-rpath \
+-optimized-qmake \
+-dbus-linked \
+-system-harfbuzz \
+-journald \
+-no-use-gold-linker \
+-reduce-relocations
+  make
+}
+
+package_qt5-base() {
+  pkgdesc='A cross-platform application and UI framework'
+
+  cd ${_pkgfqn}
+  make INSTALL_ROOT="${pkgdir}" install
+
+  install -D -m644 LGPL_EXCEPTION.txt \
+"${pkgdir}"/usr/share/licenses/${pkgbase}/LGPL_EXCEPTION.txt
+
+  # 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' {} \;
+
+  # Fix wrong qmake path in pri file
+  sed -i "s|${srcdir}/${_pkgfqn}|/usr|" \
+"${pkgdir}"/usr/lib/qt/mkspecs/modules/qt_lib_bootstrap_private.pri
+
+  # Symlinks for backwards compatibility
+  for b in "${pkgdir}"/usr/bin/*; do
+ln -s /usr/bin/$(basename $b) "${pkgdir}"/usr/bin/$(basename $b)-qt5
+  done
+}
+
+package_qt5-xcb-private-headers() {
+  pkgdesc='Private headers for Qt5 Xcb'
+
+  depends=("qt5-base=$pkgver")
+  optdepends=()
+  groups=()
+  conflicts=()
+
+  cd ${_pkgfqn}
+  install -d -m755 

  1   2   >