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

2019-02-19 Thread Christian Hesse via arch-commits
Date: Wednesday, February 20, 2019 @ 07:26:44
  Author: eworm
Revision: 346571

fetch git source via https

Modified:
  openvpn/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-19 23:44:26 UTC (rev 346570)
+++ PKGBUILD2019-02-20 07:26:44 UTC (rev 346571)
@@ -13,7 +13,7 @@
 license=('custom')
 validpgpkeys=('F554A3687412CFFEBDEFE0A312F5F7B42F2B01E7'  # OpenVPN - Security 
Mailing List 
   'B62E6A2B4E56570B7BDC6BE01D829EFECA562812') # Gert Doering 

-source=("git+git://github.com/OpenVPN/openvpn.git#tag=v${pkgver}?signed")
+source=("git+https://github.com/OpenVPN/openvpn.git#tag=v${pkgver}?signed;)
 sha256sums=('SKIP')
 
 prepare() {


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

2019-02-19 Thread Felix Yan via arch-commits
Date: Wednesday, February 20, 2019 @ 07:07:23
  Author: felixonmars
Revision: 434666

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-20 07:07:03 UTC (rev 434665)
+++ PKGBUILD2019-02-20 07:07:23 UTC (rev 434666)
@@ -1,51 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgbase=python-praw
-pkgname=('python-praw' 'python2-praw')
-pkgver=6.1.1
-pkgrel=1
-pkgdesc="Python Reddit API Wrapper that allows for simple access to reddit's 
API"
-arch=('any')
-license=('GPL')
-url="https://praw.readthedocs.org;
-makedepends=('python-setuptools' 'python2-setuptools' 'python-prawcore' 
'python2-prawcore'
- 'python-update-checker' 'python2-update-checker' 
'python-pytest-runner'
- 'python2-pytest-runner' 'python-websocket-client' 
'python2-websocket-client')
-checkdepends=('python-mock' 'python2-mock' 'python-betamax-serializers'
-  'python2-betamax-serializers' 'python-betamax-matchers' 
'python2-betamax-matchers')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/praw-dev/praw/archive/v$pkgver.tar.gz;)
-sha512sums=('280eca18a22a90f2b6e852c19c2d6d7667a902c1ab1aab473e6e1db04dad5e71bc959c86bd93c3f361e2af0b48e6b140b184d57cae4134cf9625eae2e054a09e')
-
-prepare() {
-  cp -a praw-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir"/praw-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/praw-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/praw-$pkgver
-  python setup.py pytest
-
-  cd "$srcdir"/praw-$pkgver-py2
-  python2 setup.py pytest
-}
-
-package_python-praw() {
-  depends=('python-prawcore' 'python-update-checker' 'python-websocket-client')
-
-  cd praw-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-}
-
-package_python2-praw() {
-  depends=('python2-prawcore' 'python2-update-checker' 
'python2-websocket-client')
-
-  cd praw-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-}

Copied: python-praw/repos/community-any/PKGBUILD (from rev 434665, 
python-praw/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-20 07:07:23 UTC (rev 434666)
@@ -0,0 +1,29 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-praw
+pkgver=6.1.1
+pkgrel=2
+pkgdesc="Python Reddit API Wrapper that allows for simple access to reddit's 
API"
+arch=('any')
+license=('GPL')
+url="https://praw.readthedocs.org;
+depends=('python-prawcore' 'python-update-checker' 'python-websocket-client')
+makedepends=('python-setuptools' 'python-pytest-runner')
+checkdepends=('python-mock' 'python-betamax-serializers' 
'python-betamax-matchers')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/praw-dev/praw/archive/v$pkgver.tar.gz;)
+sha512sums=('280eca18a22a90f2b6e852c19c2d6d7667a902c1ab1aab473e6e1db04dad5e71bc959c86bd93c3f361e2af0b48e6b140b184d57cae4134cf9625eae2e054a09e')
+
+build() {
+  cd praw-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd praw-$pkgver
+  python setup.py pytest
+}
+
+package() {
+  cd praw-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+}


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

2019-02-19 Thread Felix Yan via arch-commits
Date: Wednesday, February 20, 2019 @ 07:07:03
  Author: felixonmars
Revision: 434665

upgpkg: python-praw 6.1.1-2

remove python2 sibling

Modified:
  python-praw/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-20 06:45:48 UTC (rev 434664)
+++ PKGBUILD2019-02-20 07:07:03 UTC (rev 434665)
@@ -1,51 +1,29 @@
 # Maintainer: Felix Yan 
 
-pkgbase=python-praw
-pkgname=('python-praw' 'python2-praw')
+pkgname=python-praw
 pkgver=6.1.1
-pkgrel=1
+pkgrel=2
 pkgdesc="Python Reddit API Wrapper that allows for simple access to reddit's 
API"
 arch=('any')
 license=('GPL')
 url="https://praw.readthedocs.org;
-makedepends=('python-setuptools' 'python2-setuptools' 'python-prawcore' 
'python2-prawcore'
- 'python-update-checker' 'python2-update-checker' 
'python-pytest-runner'
- 'python2-pytest-runner' 'python-websocket-client' 
'python2-websocket-client')
-checkdepends=('python-mock' 'python2-mock' 'python-betamax-serializers'
-  'python2-betamax-serializers' 'python-betamax-matchers' 
'python2-betamax-matchers')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/praw-dev/praw/archive/v$pkgver.tar.gz;)
+depends=('python-prawcore' 'python-update-checker' 'python-websocket-client')
+makedepends=('python-setuptools' 'python-pytest-runner')
+checkdepends=('python-mock' 'python-betamax-serializers' 
'python-betamax-matchers')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/praw-dev/praw/archive/v$pkgver.tar.gz;)
 
sha512sums=('280eca18a22a90f2b6e852c19c2d6d7667a902c1ab1aab473e6e1db04dad5e71bc959c86bd93c3f361e2af0b48e6b140b184d57cae4134cf9625eae2e054a09e')
 
-prepare() {
-  cp -a praw-$pkgver{,-py2}
-}
-
 build() {
-  cd "$srcdir"/praw-$pkgver
+  cd praw-$pkgver
   python setup.py build
-
-  cd "$srcdir"/praw-$pkgver-py2
-  python2 setup.py build
 }
 
 check() {
-  cd "$srcdir"/praw-$pkgver
+  cd praw-$pkgver
   python setup.py pytest
-
-  cd "$srcdir"/praw-$pkgver-py2
-  python2 setup.py pytest
 }
 
-package_python-praw() {
-  depends=('python-prawcore' 'python-update-checker' 'python-websocket-client')
-
+package() {
   cd praw-$pkgver
   python setup.py install --root="$pkgdir" --optimize=1
 }
-
-package_python2-praw() {
-  depends=('python2-prawcore' 'python2-update-checker' 
'python2-websocket-client')
-
-  cd praw-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-}


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

2019-02-19 Thread Felix Yan via arch-commits
Date: Wednesday, February 20, 2019 @ 06:45:48
  Author: felixonmars
Revision: 434664

archrelease: copy trunk to community-any

Added:
  python-google-auth/repos/community-any/PKGBUILD
(from rev 434663, python-google-auth/trunk/PKGBUILD)
Deleted:
  python-google-auth/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-20 06:45:28 UTC (rev 434663)
+++ PKGBUILD2019-02-20 06:45:48 UTC (rev 434664)
@@ -1,59 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgbase=python-google-auth
-pkgname=(python-google-auth python2-google-auth)
-pkgver=1.6.2
-pkgrel=1
-pkgdesc="Google Authentication Library"
-url="https://github.com/GoogleCloudPlatform/google-auth-library-python;
-license=('Apache')
-arch=('any')
-makedepends=('ca-certificates' 'python-setuptools' 'python2-setuptools' 
'python-pyasn1-modules'
- 'python2-pyasn1-modules' 'python-rsa' 'python2-rsa' 'python-six' 
'python2-six'
- 'python-cachetools' 'python2-cachetools')
-checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'python-mock' 
'python2-mock'
-  'python-requests' 'python2-requests' 'python-flask' 
'python2-flask'
-  'python-oauth2client' 'python2-oauth2client' 
'python-pytest-localserver'
-  'python2-pytest-localserver')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/GoogleCloudPlatform/google-auth-library-python/archive/v$pkgver.tar.gz;)
-sha512sums=('765615e1926c3ce9ca465848d0045afd591be1a8a6586f0f217a31b0c77b46f471a3cebd5f6fd99d71d4795ce139a40afef8bb0af65d93e6d7033dd1360c064f')
-
-prepare() {
-  # Use system cert
-  sed -i -e 's|certifi.where()|"/etc/ssl/certs/ca-certificates.crt"|' \
- -e 's|if certifi is not None:|if True:|' \
- google-auth-library-python-$pkgver/google/auth/transport/urllib3.py
-  cp -a google-auth-library-python-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir"/google-auth-library-python-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/google-auth-library-python-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  # Skip the without_certifi tests because we always have the system ca bundle
-
-  cd "$srcdir"/google-auth-library-python-$pkgver
-  python setup.py pytest --addopts "tests -k 'not 
test__make_default_http_without_certifi'"
-
-  cd "$srcdir"/google-auth-library-python-$pkgver-py2
-  python2 setup.py pytest --addopts "tests -k 'not 
test__make_default_http_without_certifi'"
-}
-
-package_python-google-auth() {
-  depends=('ca-certificates' 'python-pyasn1-modules' 'python-rsa' 'python-six' 
'python-cachetools')
-
-  cd google-auth-library-python-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-}
-
-package_python2-google-auth() {
-  depends=('ca-certificates' 'python2-pyasn1-modules' 'python2-rsa' 
'python2-six' 'python2-cachetools')
-
-  cd google-auth-library-python-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-}

Copied: python-google-auth/repos/community-any/PKGBUILD (from rev 434663, 
python-google-auth/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-20 06:45:48 UTC (rev 434664)
@@ -0,0 +1,59 @@
+# Maintainer: Felix Yan 
+
+pkgbase=python-google-auth
+pkgname=(python-google-auth python2-google-auth)
+pkgver=1.6.3
+pkgrel=1
+pkgdesc="Google Authentication Library"
+url="https://github.com/GoogleCloudPlatform/google-auth-library-python;
+license=('Apache')
+arch=('any')
+makedepends=('ca-certificates' 'python-setuptools' 'python2-setuptools' 
'python-pyasn1-modules'
+ 'python2-pyasn1-modules' 'python-rsa' 'python2-rsa' 'python-six' 
'python2-six'
+ 'python-cachetools' 'python2-cachetools')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'python-mock' 
'python2-mock'
+  'python-requests' 'python2-requests' 'python-flask' 
'python2-flask'
+  'python-oauth2client' 'python2-oauth2client' 
'python-pytest-localserver'
+  'python2-pytest-localserver')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/GoogleCloudPlatform/google-auth-library-python/archive/v$pkgver.tar.gz;)
+sha512sums=('3becc5301d982532d59bf6c3d0c2ebe6ea8f53b6ebdbf71d2dfc622f7933c3472102af62e43c9292c7361d458e812e8af71c7d426efbfff282f3db96de1d3374')
+
+prepare() {
+  # Use system cert
+  sed -i -e 's|certifi.where()|"/etc/ssl/certs/ca-certificates.crt"|' \
+ -e 's|if certifi is not None:|if True:|' \
+ google-auth-library-python-$pkgver/google/auth/transport/urllib3.py
+  cp -a google-auth-library-python-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/google-auth-library-python-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/google-auth-library-python-$pkgver-py2
+  python2 setup.py build
+}
+

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

2019-02-19 Thread Felix Yan via arch-commits
Date: Wednesday, February 20, 2019 @ 06:45:28
  Author: felixonmars
Revision: 434663

upgpkg: python-google-auth 1.6.3-1

Modified:
  python-google-auth/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-20 06:42:30 UTC (rev 434662)
+++ PKGBUILD2019-02-20 06:45:28 UTC (rev 434663)
@@ -2,7 +2,7 @@
 
 pkgbase=python-google-auth
 pkgname=(python-google-auth python2-google-auth)
-pkgver=1.6.2
+pkgver=1.6.3
 pkgrel=1
 pkgdesc="Google Authentication Library"
 url="https://github.com/GoogleCloudPlatform/google-auth-library-python;
@@ -16,7 +16,7 @@
   'python-oauth2client' 'python2-oauth2client' 
'python-pytest-localserver'
   'python2-pytest-localserver')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/GoogleCloudPlatform/google-auth-library-python/archive/v$pkgver.tar.gz;)
-sha512sums=('765615e1926c3ce9ca465848d0045afd591be1a8a6586f0f217a31b0c77b46f471a3cebd5f6fd99d71d4795ce139a40afef8bb0af65d93e6d7033dd1360c064f')
+sha512sums=('3becc5301d982532d59bf6c3d0c2ebe6ea8f53b6ebdbf71d2dfc622f7933c3472102af62e43c9292c7361d458e812e8af71c7d426efbfff282f3db96de1d3374')
 
 prepare() {
   # Use system cert


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

2019-02-19 Thread Felix Yan via arch-commits
Date: Wednesday, February 20, 2019 @ 06:42:25
  Author: felixonmars
Revision: 434661

archrelease: copy trunk to community-any

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

--+
 PKGBUILD |  160 ++---
 1 file changed, 80 insertions(+), 80 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-20 06:42:06 UTC (rev 434660)
+++ PKGBUILD2019-02-20 06:42:25 UTC (rev 434661)
@@ -1,80 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgbase=python-hypothesis
-pkgname=('python-hypothesis' 'python2-hypothesis')
-pkgver=4.6.0
-pkgrel=1
-pkgdesc="Advanced Quickcheck style testing library for Python"
-arch=('any')
-license=('MPL')
-url="https://hypothesis.readthedocs.org;
-makedepends=('python-setuptools' 'python2-setuptools' 'python-attrs' 
'python2-attrs'
- 'python-coverage' 'python2-coverage' 'python2-enum34')
-checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'flake8' 
'python2-flake8' 'python-pytz'
-  'python2-pytz' 'python-numpy' 'python2-numpy' 'python-faker' 
'python2-faker'
-  'python-flaky' 'python2-flaky' 'python-django' 'python2-django' 
'python-mock'
-  'python2-mock' 'python-pandas' 'python2-pandas' 
'python-dpcontracts'
-  'python2-dpcontracts' 'python-pytest-xdist' 
'python2-pytest-xdist'
-  'python-lark-parser' 'python2-lark-parser')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis/archive/hypothesis-python-$pkgver.tar.gz;)
-sha512sums=('bf66fdbccfbc0e84c37456ec1ac9acdff27f0ce04bc1a3189ea2ace2e37a8634c68910f03a4f7f5aa40f69e587609efc107bf3ffd3ef4da48afc3797bd1b66e0')
-
-prepare() {
-  mv hypothesis-hypothesis-python-$pkgver hypothesis-$pkgver
-
-  cp -a hypothesis-$pkgver{,-py2}
-
-  rm -r hypothesis-$pkgver/hypothesis-python/tests/py2
-  rm -r hypothesis-$pkgver-py2/hypothesis-python/tests/py3
-
-  export LC_CTYPE=en_US.UTF-8
-}
-
-build() {
-  cd "$srcdir"/hypothesis-$pkgver/hypothesis-python
-  python setup.py build
-
-  cd "$srcdir"/hypothesis-$pkgver-py2/hypothesis-python
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/hypothesis-$pkgver/hypothesis-python
-  mv tests/django ../
-  python setup.py pytest
-  mv ../django tests/
-  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python -m tests.django.manage test 
tests.django
-
-  cd "$srcdir"/hypothesis-$pkgver-py2/hypothesis-python
-  mv tests/django ../
-  # https://github.com/python/typing/issues/612
-  python2 setup.py pytest || warning "Tests failed"
-  mv ../django tests/
-  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python2 -m tests.django.manage test 
tests.django
-}
-
-package_python-hypothesis() {
-  depends=('python-attrs' 'python-coverage')
-  optdepends=('python-pytz: for datetime and django module'
-  'python-faker: for fakefactory and django module'
-  'python-django: for django module'
-  'python-numpy: for numpy module'
-  'python-pytest: for pytest module'
-  'python-lark-parser: for lark module')
-
-  cd hypothesis-$pkgver/hypothesis-python
-  python setup.py install --root="$pkgdir" --optimize=1
-}
-
-package_python2-hypothesis() {
-  depends=('python2-attrs' 'python2-coverage' 'python2-enum34')
-  optdepends=('python2-pytz: for datetime and django module'
-  'python2-faker: for fakefactory and django module'
-  'python2-django: for django module'
-  'python2-numpy: for numpy module'
-  'python2-pytest: for pytest module'
-  'python2-lark-parser: for lark module')
-
-  cd hypothesis-$pkgver-py2/hypothesis-python
-  python2 setup.py install --root="$pkgdir" --optimize=1
-}

Copied: python-hypothesis/repos/community-any/PKGBUILD (from rev 434660, 
python-hypothesis/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-20 06:42:25 UTC (rev 434661)
@@ -0,0 +1,80 @@
+# Maintainer: Felix Yan 
+
+pkgbase=python-hypothesis
+pkgname=('python-hypothesis' 'python2-hypothesis')
+pkgver=4.6.1
+pkgrel=1
+pkgdesc="Advanced Quickcheck style testing library for Python"
+arch=('any')
+license=('MPL')
+url="https://hypothesis.readthedocs.org;
+makedepends=('python-setuptools' 'python2-setuptools' 'python-attrs' 
'python2-attrs'
+ 'python-coverage' 'python2-coverage' 'python2-enum34')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'flake8' 
'python2-flake8' 'python-pytz'
+  'python2-pytz' 'python-numpy' 'python2-numpy' 'python-faker' 
'python2-faker'
+  'python-flaky' 'python2-flaky' 'python-django' 'python2-django' 
'python-mock'
+  'python2-mock' 'python-pandas' 'python2-pandas' 
'python-dpcontracts'
+

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

2019-02-19 Thread Daniel M. Capella via arch-commits
Date: Wednesday, February 20, 2019 @ 06:42:30
  Author: polyzen
Revision: 434662

archrelease: copy trunk to community-x86_64

Added:
  skim/repos/community-x86_64/PKGBUILD
(from rev 434660, skim/trunk/PKGBUILD)
Deleted:
  skim/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-20 06:42:25 UTC (rev 434661)
+++ PKGBUILD2019-02-20 06:42:30 UTC (rev 434662)
@@ -1,33 +0,0 @@
-# Maintainer: Daniel M. Capella 
-# Contributor: fenuks
-
-pkgname=skim
-pkgver=0.5.2
-pkgrel=4
-pkgdesc='Fuzzy Finder in rust!'
-arch=('x86_64')
-depends=('ncurses')
-makedepends=('rust')
-url=https://github.com/lotabout/skim
-license=('MIT')
-source=("$url/archive/v$pkgver/skim-v$pkgver.tar.gz")
-sha512sums=('018962a728b9729b51afdc8975cddeceec84731f43b776a740ad2b4d2a479ceadd7a4d45c6eb5389ef73cdf18955a74ac85e9bbb4ad823e4d4a5d9972a4aa19d')
-
-build() {
-  cd skim-$pkgver
-  cargo build --release
-}
-
-check() {
-  cd skim-$pkgver
-  cargo test --release
-}
-
-package() {
-  cd skim-$pkgver
-  install -Dt "$pkgdir"/usr/bin target/release/sk bin/sk-tmux
-  install -Dm644 -t "$pkgdir"/usr/share/vim/vimfiles/plugin plugin/skim.vim
-  install -Dm644 -t "$pkgdir"/usr/share/skim shell/*.bash shell/*.zsh
-  install -Dm644 shell/key-bindings.fish 
"$pkgdir"/usr/share/fish/functions/skim_key_bindings.fish
-  install -Dm644 -t "$pkgdir"/usr/share/licenses/skim LICENSE
-}

Copied: skim/repos/community-x86_64/PKGBUILD (from rev 434660, 
skim/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-20 06:42:30 UTC (rev 434662)
@@ -0,0 +1,34 @@
+# Maintainer: Daniel M. Capella 
+# Contributor: fenuks
+
+pkgname=skim
+pkgver=0.5.4
+pkgrel=1
+pkgdesc='Fuzzy Finder in rust!'
+arch=('x86_64')
+depends=('ncurses')
+makedepends=('rust')
+url=https://github.com/lotabout/skim
+license=('MIT')
+source=("$url/archive/v$pkgver/skim-v$pkgver.tar.gz")
+sha512sums=('f21af6c86ca6b1c4aab1b715c1c47ced1d06c45216a03493cfc3f01d7ed6ecb6e287a335d0756f4b82b97d4d22493b01598569a0529bc57983a5a4716427af83')
+
+build() {
+  cd skim-$pkgver
+  cargo build --release --locked
+}
+
+check() {
+  cd skim-$pkgver
+  cargo test --release --locked
+}
+
+package() {
+  cd skim-$pkgver
+  install -Dt "$pkgdir"/usr/bin target/release/sk bin/sk-tmux
+  install -Dm644 -t "$pkgdir"/usr/share/man/man1 shell/skim.1
+  install -Dm644 -t "$pkgdir"/usr/share/skim shell/*.bash shell/*.zsh
+  install -Dm644 shell/key-bindings.fish 
"$pkgdir"/usr/share/fish/functions/skim_key_bindings.fish
+  install -Dm644 -t "$pkgdir"/usr/share/vim/vimfiles/plugin plugin/skim.vim
+  install -Dm644 -t "$pkgdir"/usr/share/licenses/skim LICENSE
+}


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

2019-02-19 Thread Felix Yan via arch-commits
Date: Wednesday, February 20, 2019 @ 06:42:06
  Author: felixonmars
Revision: 434660

upgpkg: python-hypothesis 4.6.1-1

Modified:
  python-hypothesis/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-20 06:42:04 UTC (rev 434659)
+++ PKGBUILD2019-02-20 06:42:06 UTC (rev 434660)
@@ -2,7 +2,7 @@
 
 pkgbase=python-hypothesis
 pkgname=('python-hypothesis' 'python2-hypothesis')
-pkgver=4.6.0
+pkgver=4.6.1
 pkgrel=1
 pkgdesc="Advanced Quickcheck style testing library for Python"
 arch=('any')
@@ -17,7 +17,7 @@
   'python2-dpcontracts' 'python-pytest-xdist' 
'python2-pytest-xdist'
   'python-lark-parser' 'python2-lark-parser')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis/archive/hypothesis-python-$pkgver.tar.gz;)
-sha512sums=('bf66fdbccfbc0e84c37456ec1ac9acdff27f0ce04bc1a3189ea2ace2e37a8634c68910f03a4f7f5aa40f69e587609efc107bf3ffd3ef4da48afc3797bd1b66e0')
+sha512sums=('e3ff592a5b6a52e9598e35d8edf4a88fa6e486e2a65f06dd985efeba660698fbe53ae0da5dad49416cdd57911ae2d65c542141dca84694f48226ea97d681c235')
 
 prepare() {
   mv hypothesis-hypothesis-python-$pkgver hypothesis-$pkgver


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

2019-02-19 Thread Daniel M. Capella via arch-commits
Date: Wednesday, February 20, 2019 @ 06:42:04
  Author: polyzen
Revision: 434659

upgpkg: skim 0.5.4-1

Modified:
  skim/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-20 05:56:44 UTC (rev 434658)
+++ PKGBUILD2019-02-20 06:42:04 UTC (rev 434659)
@@ -2,8 +2,8 @@
 # Contributor: fenuks
 
 pkgname=skim
-pkgver=0.5.2
-pkgrel=4
+pkgver=0.5.4
+pkgrel=1
 pkgdesc='Fuzzy Finder in rust!'
 arch=('x86_64')
 depends=('ncurses')
@@ -11,7 +11,7 @@
 url=https://github.com/lotabout/skim
 license=('MIT')
 source=("$url/archive/v$pkgver/skim-v$pkgver.tar.gz")
-sha512sums=('018962a728b9729b51afdc8975cddeceec84731f43b776a740ad2b4d2a479ceadd7a4d45c6eb5389ef73cdf18955a74ac85e9bbb4ad823e4d4a5d9972a4aa19d')
+sha512sums=('f21af6c86ca6b1c4aab1b715c1c47ced1d06c45216a03493cfc3f01d7ed6ecb6e287a335d0756f4b82b97d4d22493b01598569a0529bc57983a5a4716427af83')
 
 build() {
   cd skim-$pkgver
@@ -26,8 +26,9 @@
 package() {
   cd skim-$pkgver
   install -Dt "$pkgdir"/usr/bin target/release/sk bin/sk-tmux
-  install -Dm644 -t "$pkgdir"/usr/share/vim/vimfiles/plugin plugin/skim.vim
+  install -Dm644 -t "$pkgdir"/usr/share/man/man1 shell/skim.1
   install -Dm644 -t "$pkgdir"/usr/share/skim shell/*.bash shell/*.zsh
   install -Dm644 shell/key-bindings.fish 
"$pkgdir"/usr/share/fish/functions/skim_key_bindings.fish
+  install -Dm644 -t "$pkgdir"/usr/share/vim/vimfiles/plugin plugin/skim.vim
   install -Dm644 -t "$pkgdir"/usr/share/licenses/skim LICENSE
 }


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

2019-02-19 Thread Jiachen Yang via arch-commits
Date: Wednesday, February 20, 2019 @ 05:56:44
  Author: farseerfc
Revision: 434658

archrelease: copy trunk to community-x86_64

Added:
  fcitx-mozc/repos/community-x86_64/PKGBUILD
(from rev 434657, fcitx-mozc/trunk/PKGBUILD)
Deleted:
  fcitx-mozc/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  255 ++---
 1 file changed, 127 insertions(+), 128 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-20 05:55:57 UTC (rev 434657)
+++ PKGBUILD2019-02-20 05:56:44 UTC (rev 434658)
@@ -1,128 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: ponsfoot 
-# Contributor: UTUMI Hirosi 
-
-## Mozc compile option
-_bldtype=Release
-
-_mozc_rev=afb03ddfe72dde4cf2409863a3bfea160f7a66d8
-_japanese_usage_dictionary_rev=a4a66772e33746b91e99caceecced9a28507e925
-_gyp_rev=4ec6c4e3a94bd04a6da2858163d40b2429b8aad1 
-_protobuf_rev=92a7e778e7394386f413cec28d67a07630f784b1
-_zipcode_rel=201807
-
-_pkgbase=mozc
-pkgname=fcitx-mozc
-pkgdesc="Fcitx Module of A Japanese Input Method for Chromium OS, Windows, Mac 
and Linux (the Open Source Edition of Google Japanese Input)"
-pkgver=2.23.2815.102
-_fcitx_patchver=${pkgver}.1
-pkgrel=2
-arch=('x86_64')
-url="https://github.com/google/mozc;
-license=('custom')
-depends=('qt5-base' 'fcitx' 'zinnia')
-makedepends=('pkg-config' 'python2' 'curl' 'gtk2' 'mesa' 'subversion' 'ninja' 
'git' 'clang')
-replaces=('mozc-fcitx')
-conflicts=('mozc' 'mozc-server' 'mozc-utils-gui' 'mozc-fcitx')
-source=(
-   git+https://github.com/google/mozc.git#commit=${_mozc_rev}
-   
pr444.patch::https://github.com/google/mozc/pull/444/commits/82d38f929882a9c62289b179c6fe41efed249987.patch
-   
japanese_usage_dictionary::git+https://github.com/hiroyuki-komatsu/japanese-usage-dictionary.git#commit=${_japanese_usage_dictionary_rev}
-   
mozc-gyp::git+https://chromium.googlesource.com/external/gyp#commit=${_gyp_rev}
-   git+https://github.com/google/protobuf.git#commit=${_protobuf_rev}
-   
https://downloads.sourceforge.net/pnsft-aur/x-ken-all-${_zipcode_rel}.zip
-   https://downloads.sourceforge.net/pnsft-aur/jigyosyo-${_zipcode_rel}.zip
-   
https://download.fcitx-im.org/fcitx-mozc/fcitx-mozc-${_fcitx_patchver}.patch{,.sig}
-https://download.fcitx-im.org/fcitx-mozc/fcitx-mozc-icon.tar.gz)
-sha512sums=('SKIP'
-
'0c6ebf6a8579b6fc3f7d6b292d1aca6b1a3825030e78b4f46bb1c49bcf1c559ae82081bd459de5ee3aa7bf803af83e8ddc77157553da342f030442934e4877fb'
-'SKIP'
-'SKIP'
-'SKIP'
-
'36603203eee8ef044903af05d38b87496cd5cf3c2eb99d9c390aca5b2a6975bc96a85342bf0996a98d374566f507ae84a6693be26d9e7b10b5bb74b04e6d2e7f'
-
'0c868dc42f8f162f489aa72039852e67fe03d4f10770a90c3b1b863beff86382d31585fbd63c3ece3911a599a047c0add1249319e2d4e3e3ba441e0614e6fa84'
-
'e0d4645df919838f0fe31a97bf6dd759c222a696f68133f7584d2c771f70734ea634a25bebb03a756221000d3552423207ee5163d75778dbf480b6e267ba4cd0'
-'SKIP'
-
'5507c637e5a65c44ccf6e32118b6d16647ece865171b9a77dd3c78e6790fbd97e6b219e68d2e27750e22074eb536bccf8d553c295d939066b72994b86b2f251a')
-validpgpkeys=('2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9')  # Weng Xuetian
-
-prepare() {
-  mv mozc-gyp gyp
-
-  cd mozc
-  # Apply gcc8.1 patch in PR#444
-  patch -Np1 -i "$srcdir/pr444.patch"
-
-  cd src
-
-  # Apply fcitx patch
-  rm unix/fcitx -rf
-  patch -Np2 -i "$srcdir/fcitx-mozc-${_fcitx_patchver}.patch"
-  # Disable fcitx5 specific building 
-  rm unix/fcitx5 -rf
-
-  # Adjust to use python2
-  find . -name  \*.py-type f -exec sed -i -e "1s|python.*$|python2|"  
{} +
-  find . -regex '.*\.gypi?$' -type f -exec sed -i -e "s|'python'|'python2'|g" 
{} +
-
-  # Generate zip code seed
-  msg "Generating zip code seed..."
-  PYTHONPATH="$PWD:$PYTHONPATH" python2 dictionary/gen_zip_code_seed.py 
--zip_code="${srcdir}/x-ken-all.csv" --jigyosyo="${srcdir}/JIGYOSYO.CSV" >> 
data/dictionary_oss/dictionary09.txt
-  msg "Done."
-
-  # Copy third party deps
-  cd "$srcdir"
-  for dep in gyp protobuf japanese_usage_dictionary
-  do
-cp -a $dep mozc/src/third_party/
-  done
-}
-
-build() {
-  # Fix compatibility with google-glog 0.3.3 (symbol conflict)
-  CFLAGS="${CFLAGS} -fvisibility=hidden"
-  CXXFLAGS="${CXXFLAGS} -fvisibility=hidden"
-
-  cd mozc/src
-
-  _targets="server/server.gyp:mozc_server gui/gui.gyp:mozc_tool 
unix/fcitx/fcitx.gyp:fcitx-mozc"
-
-  QTDIR=/usr GYP_DEFINES="document_dir=/usr/share/licenses/$pkgname 
use_libzinnia=1" python2 build_mozc.py gyp
-  python2 build_mozc.py build -c $_bldtype $_targets
-
-  # Extract license part of mozc
-  head -n 29 server/mozc_server.cc > LICENSE
-}
-
-package() {
-  cd mozc/src
-  install -D -m 755 out_linux/${_bldtype}/mozc_server 
"${pkgdir}/usr/lib/mozc/mozc_server"
-  install-m 755 out_linux/${_bldtype}/mozc_tool   
"${pkgdir}/usr/lib/mozc/mozc_tool"
-
-  install 

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

2019-02-19 Thread Jiachen Yang via arch-commits
Date: Wednesday, February 20, 2019 @ 05:55:57
  Author: farseerfc
Revision: 434657

upgpkg: fcitx-mozc 2.23.2815.102-3

fcitx-mozc update zipcode dict ver

Modified:
  fcitx-mozc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-20 05:31:07 UTC (rev 434656)
+++ PKGBUILD2019-02-20 05:55:57 UTC (rev 434657)
@@ -9,7 +9,7 @@
 _japanese_usage_dictionary_rev=a4a66772e33746b91e99caceecced9a28507e925
 _gyp_rev=4ec6c4e3a94bd04a6da2858163d40b2429b8aad1 
 _protobuf_rev=92a7e778e7394386f413cec28d67a07630f784b1
-_zipcode_rel=201807
+_zipcode_rel=201810
 
 _pkgbase=mozc
 pkgname=fcitx-mozc
@@ -16,7 +16,7 @@
 pkgdesc="Fcitx Module of A Japanese Input Method for Chromium OS, Windows, Mac 
and Linux (the Open Source Edition of Google Japanese Input)"
 pkgver=2.23.2815.102
 _fcitx_patchver=${pkgver}.1
-pkgrel=2
+pkgrel=3
 arch=('x86_64')
 url="https://github.com/google/mozc;
 license=('custom')
@@ -39,8 +39,8 @@
 'SKIP'
 'SKIP'
 'SKIP'
-
'36603203eee8ef044903af05d38b87496cd5cf3c2eb99d9c390aca5b2a6975bc96a85342bf0996a98d374566f507ae84a6693be26d9e7b10b5bb74b04e6d2e7f'
-
'0c868dc42f8f162f489aa72039852e67fe03d4f10770a90c3b1b863beff86382d31585fbd63c3ece3911a599a047c0add1249319e2d4e3e3ba441e0614e6fa84'
+
'59d0a5e62c698ebc64008f1fb2ed68ebbbd7798d9d95f2e4852261fb09d53e9f8c102f385ed8f2001e3da6c2a0a50d64f1f20e70671948b492f972c487655efe'
+
'daf41f63bd1afc0937beb12aa007ead8a239fabc3af2237e4adf75238b0e0e520f6051f5a98d413a541f901e17a1488eb3fad6d0bba1f1561987365236d64146'
 
'e0d4645df919838f0fe31a97bf6dd759c222a696f68133f7584d2c771f70734ea634a25bebb03a756221000d3552423207ee5163d75778dbf480b6e267ba4cd0'
 'SKIP'
 
'5507c637e5a65c44ccf6e32118b6d16647ece865171b9a77dd3c78e6790fbd97e6b219e68d2e27750e22074eb536bccf8d553c295d939066b72994b86b2f251a')


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

2019-02-19 Thread Jan Steffens via arch-commits
Date: Wednesday, February 20, 2019 @ 05:30:03
  Author: heftig
Revision: 434655

0.13.1-1

Modified:
  quassel/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-20 05:14:13 UTC (rev 434654)
+++ PKGBUILD2019-02-20 05:30:03 UTC (rev 434655)
@@ -6,7 +6,7 @@
  'quassel-client'
  'quassel-client-small'
  'quassel-monolithic')
-pkgver=0.13.0
+pkgver=0.13.1
 pkgrel=1
 pkgdesc="Next-generation distributed IRC client"
 arch=('x86_64')
@@ -20,7 +20,7 @@
 $pkgbase.sysusers
 $pkgbase.tmpfiles
 $pkgbase.conf)
-sha256sums=('d9822002de5bb1fd1002cccd537e5a0bc8ec365d355fdff4fb7818daefade976'
+sha256sums=('48efee9778743b1db9f44efb91d1c913104db01190c57f2ff57483c39a97e855'
 '5dbe20290f3361b9b7a74a52905137e76b656976febf2d31082a2276f9dcde7f'
 '3c72441a99e2668c6a8a751fa07beeb44f937576c8a1b5f615e4a55f841d93d9'
 '2afd4340c7713f6533e5d175a86b28fd118ecd907776c2b10925d1a4fb31cdca'


[arch-commits] Commit in quassel/repos/community-x86_64 (10 files)

2019-02-19 Thread Jan Steffens via arch-commits
Date: Wednesday, February 20, 2019 @ 05:31:07
  Author: heftig
Revision: 434656

archrelease: copy trunk to community-x86_64

Added:
  quassel/repos/community-x86_64/PKGBUILD
(from rev 434655, quassel/trunk/PKGBUILD)
  quassel/repos/community-x86_64/quassel.conf
(from rev 434655, quassel/trunk/quassel.conf)
  quassel/repos/community-x86_64/quassel.service
(from rev 434655, quassel/trunk/quassel.service)
  quassel/repos/community-x86_64/quassel.sysusers
(from rev 434655, quassel/trunk/quassel.sysusers)
  quassel/repos/community-x86_64/quassel.tmpfiles
(from rev 434655, quassel/trunk/quassel.tmpfiles)
Deleted:
  quassel/repos/community-x86_64/PKGBUILD
  quassel/repos/community-x86_64/quassel.conf
  quassel/repos/community-x86_64/quassel.service
  quassel/repos/community-x86_64/quassel.sysusers
  quassel/repos/community-x86_64/quassel.tmpfiles

--+
 PKGBUILD |  244 ++---
 quassel.conf |4 
 quassel.service  |   28 +++---
 quassel.sysusers |2 
 quassel.tmpfiles |2 
 5 files changed, 140 insertions(+), 140 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-20 05:30:03 UTC (rev 434655)
+++ PKGBUILD2019-02-20 05:31:07 UTC (rev 434656)
@@ -1,122 +0,0 @@
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: Vesa Kaihlavirta 
-
-pkgbase=quassel
-pkgname=('quassel-core'
- 'quassel-client'
- 'quassel-client-small'
- 'quassel-monolithic')
-pkgver=0.13.0
-pkgrel=1
-pkgdesc="Next-generation distributed IRC client"
-arch=('x86_64')
-url="https://quassel-irc.org/;
-license=('GPL')
-makedepends=('qt5-base' 'qt5-tools' 'qt5-webengine' 'qca-qt5' 'qt5-script'
- 'qt5-multimedia' 'knotifyconfig' 'sonnet' 'libldap' 'cmake'
- 'extra-cmake-modules' 'python' 'hicolor-icon-theme' 'ninja')
-source=(https://quassel-irc.org/pub/$pkgbase-$pkgver.tar.bz2
-$pkgbase.service
-$pkgbase.sysusers
-$pkgbase.tmpfiles
-$pkgbase.conf)
-sha256sums=('d9822002de5bb1fd1002cccd537e5a0bc8ec365d355fdff4fb7818daefade976'
-'5dbe20290f3361b9b7a74a52905137e76b656976febf2d31082a2276f9dcde7f'
-'3c72441a99e2668c6a8a751fa07beeb44f937576c8a1b5f615e4a55f841d93d9'
-'2afd4340c7713f6533e5d175a86b28fd118ecd907776c2b10925d1a4fb31cdca'
-'f3031ea8217e01ba42cea14606169e3e27affa5918968ffd5a03c21ae92fe2b8')
-
-prepare() {
-  cd $pkgbase-$pkgver
-}
-
-_build() (
-  mkdir -p build-$1
-  cd build-$1
-  cmake -G Ninja ../$pkgbase-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr/ \
--DCMAKE_BUILD_TYPE=Release \
--DHAVE_SSL=ON \
-"${@:2}" \
--Wno-dev
-  cmake --build .
-)
-
-_install() {
-  DESTDIR="${pkgdir}" cmake --build build-$1 --target install
-}
-
-build() {
-  _build core \
--DWANT_QTCLIENT=OFF \
--DWANT_MONO=OFF \
--DWITH_BUNDLED_ICONS=OFF \
--DWITH_WEBENGINE=OFF
-
-  _build monolithic \
--DWANT_CORE=OFF \
--DWANT_QTCLIENT=OFF \
--DWITH_KDE=ON
-
-  _build client \
--DWANT_CORE=OFF \
--DWANT_MONO=OFF \
--DWITH_KDE=ON
-
-  _build client-small \
--DWANT_CORE=OFF \
--DWANT_MONO=OFF \
--DWITH_WEBENGINE=OFF \
--DCMAKE_DISABLE_FIND_PACKAGE_dbusmenu-qt5=ON \
--DCMAKE_DISABLE_FIND_PACKAGE_Qt5Multimedia=ON \
--DCMAKE_DISABLE_FIND_PACKAGE_Phonon4Qt5=ON
-}
-
-package_quassel-core() {
-pkgdesc="Next-generation distributed IRC client - core only"
-depends=('icu' 'qca-qt5' 'qt5-script' 'libldap')
-optdepends=('postgresql: PostgreSQL database support')
-backup=(etc/conf.d/quassel)
-
-  _install core
-
-  # Remove unneeded pixmap icons
-  rm -r "${pkgdir}"/usr/share
-
-  install -Dm644 $pkgbase.sysusers \
-"${pkgdir}"/usr/lib/sysusers.d/$pkgbase.conf
-  install -Dm644 $pkgbase.tmpfiles \
-"${pkgdir}"/usr/lib/tmpfiles.d/$pkgbase.conf
-  install -Dm644 $pkgbase.service \
-"${pkgdir}"/usr/lib/systemd/system/$pkgbase.service
-  install -Dm644 $pkgbase.conf \
-"${pkgdir}"/etc/conf.d/$pkgbase
-}
-
-package_quassel-client() {
-pkgdesc="Next-generation distributed IRC client - client only"
-depends=('qt5-base' 'qt5-webengine' 'qt5-multimedia' 'knotifyconfig'
- 'hicolor-icon-theme')
-conflicts=('quassel-monolithic' 'quassel-client-small')
-
-  _install client
-}
-
-package_quassel-client-small() {
-pkgdesc="Next-generation distributed IRC client - client only, reduced deps"
-depends=('qt5-base' 'sonnet' 'hicolor-icon-theme')
-conflicts=('quassel-monolithic' 'quassel-client')
-replaces=('quassel-remote')
-
-  _install client-small
-}
-
-package_quassel-monolithic() {
-pkgdesc="Next-generation distributed IRC client - monolithic"
-depends=('qt5-base' 'qt5-webengine' 'qt5-multimedia' 'qt5-script' 'qca-qt5'
- 'knotifyconfig' 'libldap' 'hicolor-icon-theme')
-optdepends=('postgresql: PostgreSQL database support')
-conflicts=('quassel-client' 'quassel-client-small')
-
-  _install monolithic

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

2019-02-19 Thread Jiachen Yang via arch-commits
Date: Wednesday, February 20, 2019 @ 05:14:13
  Author: farseerfc
Revision: 434654

archrelease: copy trunk to community-x86_64

Added:
  flameshot/repos/community-x86_64/PKGBUILD
(from rev 434653, flameshot/trunk/PKGBUILD)
  flameshot/repos/community-x86_64/flameshot.install
(from rev 434653, flameshot/trunk/flameshot.install)
Deleted:
  flameshot/repos/community-x86_64/PKGBUILD
  flameshot/repos/community-x86_64/flameshot.install

---+
 PKGBUILD  |   83 +++-
 flameshot.install |   44 +--
 2 files changed, 66 insertions(+), 61 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-20 05:13:30 UTC (rev 434653)
+++ PKGBUILD2019-02-20 05:14:13 UTC (rev 434654)
@@ -1,39 +0,0 @@
-# Maintainer: Jiachen YANG 
-# Contributor: xyzzy <628...@gmail.com>
-
-pkgname=flameshot
-pkgver=0.6.0
-pkgrel=2
-pkgdesc="Powerful yet simple to use screenshot software"
-arch=('x86_64')
-url="https://github.com/lupoDharkael/flameshot;
-license=('GPL')
-depends=('qt5-svg' 'hicolor-icon-theme')
-makedepends=('make' 'qt5-tools')
-source=("https://github.com/lupoDharkael/flameshot/archive/v${pkgver}.tar.gz;
-   
"fix311.patch::https://github.com/lupoDharkael/flameshot/commit/415b059fb248eec4b4ee3be85a1594ce99bfce67.patch;
-   )
-sha256sums=('61b3a1969d6e17d80d5d90a3fce53ca5ae78fa21f9a45e5a19b0b32ea815a589'
-'94da922546ce1b41d702e13d4ec2141f6383b2410bd9b2ddd34ce75e1d8c9209')
-install="${pkgname}.install"
-
-prepare() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  ## fix https://github.com/lupoDharkael/flameshot/issues/311
-  patch -Np1 -i ../fix311.patch
-
-  ## add a version number from pkgver
-  sed -i "s|TAG_VERSION = .*|TAG_VERSION = v${pkgver}|" flameshot.pro 
-}
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  qmake CONFIG+=packaging BASEDIR="${pkgdir}"
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make INSTALL_ROOT="${pkgdir}" install
-}

Copied: flameshot/repos/community-x86_64/PKGBUILD (from rev 434653, 
flameshot/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-20 05:14:13 UTC (rev 434654)
@@ -0,0 +1,44 @@
+# Maintainer: Jiachen YANG 
+# Contributor: xyzzy <628...@gmail.com>
+
+pkgname=flameshot
+pkgver=0.6.0
+pkgrel=3
+pkgdesc="Powerful yet simple to use screenshot software"
+arch=('x86_64')
+url="https://github.com/lupoDharkael/flameshot;
+license=('GPL')
+depends=('qt5-svg' 'hicolor-icon-theme')
+makedepends=('make' 'qt5-tools')
+source=("https://github.com/lupoDharkael/flameshot/archive/v${pkgver}.tar.gz;
+   
"fix311.patch::https://github.com/lupoDharkael/flameshot/commit/415b059fb248eec4b4ee3be85a1594ce99bfce67.patch;
+   
"pr470.patch::https://patch-diff.githubusercontent.com/raw/lupoDharkael/flameshot/pull/470.patch;
+   )
+sha256sums=('61b3a1969d6e17d80d5d90a3fce53ca5ae78fa21f9a45e5a19b0b32ea815a589'
+'94da922546ce1b41d702e13d4ec2141f6383b2410bd9b2ddd34ce75e1d8c9209'
+'d9cdf793db3b4637a8bd00475d9e936d4e7e94af3295feaf4c6c8e952de58a18')
+install="${pkgname}.install"
+
+prepare() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  ## fix https://github.com/lupoDharkael/flameshot/issues/311
+  patch -Np1 -i ../fix311.patch
+  ## fix https://github.com/lupoDharkael/flameshot/issues/459
+  ## see https://github.com/lupoDharkael/flameshot/pull/470
+  patch -Np1 -i ../pr470.patch
+
+  ## add a version number from pkgver
+  sed -i "s|TAG_VERSION = .*|TAG_VERSION = v${pkgver}|" flameshot.pro 
+}
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  qmake CONFIG+=packaging BASEDIR="${pkgdir}"
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make INSTALL_ROOT="${pkgdir}" install
+}

Deleted: flameshot.install
===
--- flameshot.install   2019-02-20 05:13:30 UTC (rev 434653)
+++ flameshot.install   2019-02-20 05:14:13 UTC (rev 434654)
@@ -1,22 +0,0 @@
-echo_shortcut() {
-   echo "See the link about keyboard shortcuts: 
https://github.com/lupoDharkael/flameshot#keyboard-shortcuts;
-}
-
-echo_gnome3() {
-   echo "For Gnome3 users: please install one of the tray icons extension 
to use the systray icon"
-}
-
-post_upgrade(){
-   if [ $(vercmp $2 0.5.1) -lt 0 ]; then
-echo_shortcut
-   fi
-
-   if [ $(vercmp $2 0.5.1-3) -lt 0 ]; then
-echo_gnome3
-   fi
-}
-
-post_install(){
-echo_shortcut
-echo_gnome3
-}

Copied: flameshot/repos/community-x86_64/flameshot.install (from rev 434653, 
flameshot/trunk/flameshot.install)
===
--- flameshot.install   (rev 0)
+++ flameshot.install   2019-02-20 05:14:13 UTC (rev 434654)
@@ -0,0 +1,22 @@
+echo_shortcut() {
+   echo 

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

2019-02-19 Thread Jiachen Yang via arch-commits
Date: Wednesday, February 20, 2019 @ 05:13:30
  Author: farseerfc
Revision: 434653

upgpkg: flameshot 0.6.0-3

flameshot 0.6.0-3 fixing screenshot area using keys to move and resize, 
upstream #459 pr #470

Modified:
  flameshot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-20 04:13:07 UTC (rev 434652)
+++ PKGBUILD2019-02-20 05:13:30 UTC (rev 434653)
@@ -3,7 +3,7 @@
 
 pkgname=flameshot
 pkgver=0.6.0
-pkgrel=2
+pkgrel=3
 pkgdesc="Powerful yet simple to use screenshot software"
 arch=('x86_64')
 url="https://github.com/lupoDharkael/flameshot;
@@ -12,9 +12,11 @@
 makedepends=('make' 'qt5-tools')
 source=("https://github.com/lupoDharkael/flameshot/archive/v${pkgver}.tar.gz;

"fix311.patch::https://github.com/lupoDharkael/flameshot/commit/415b059fb248eec4b4ee3be85a1594ce99bfce67.patch;
+   
"pr470.patch::https://patch-diff.githubusercontent.com/raw/lupoDharkael/flameshot/pull/470.patch;
)
 sha256sums=('61b3a1969d6e17d80d5d90a3fce53ca5ae78fa21f9a45e5a19b0b32ea815a589'
-'94da922546ce1b41d702e13d4ec2141f6383b2410bd9b2ddd34ce75e1d8c9209')
+'94da922546ce1b41d702e13d4ec2141f6383b2410bd9b2ddd34ce75e1d8c9209'
+'d9cdf793db3b4637a8bd00475d9e936d4e7e94af3295feaf4c6c8e952de58a18')
 install="${pkgname}.install"
 
 prepare() {
@@ -22,6 +24,9 @@
 
   ## fix https://github.com/lupoDharkael/flameshot/issues/311
   patch -Np1 -i ../fix311.patch
+  ## fix https://github.com/lupoDharkael/flameshot/issues/459
+  ## see https://github.com/lupoDharkael/flameshot/pull/470
+  patch -Np1 -i ../pr470.patch
 
   ## add a version number from pkgver
   sed -i "s|TAG_VERSION = .*|TAG_VERSION = v${pkgver}|" flameshot.pro 


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

2019-02-19 Thread Felix Yan via arch-commits
Date: Wednesday, February 20, 2019 @ 04:13:07
  Author: felixonmars
Revision: 434652

archrelease: copy trunk to community-any

Added:
  marked/repos/community-any/PKGBUILD
(from rev 434651, marked/trunk/PKGBUILD)
Deleted:
  marked/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-20 04:12:49 UTC (rev 434651)
+++ PKGBUILD2019-02-20 04:13:07 UTC (rev 434652)
@@ -1,20 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=marked
-pkgver=0.6.0
-pkgrel=1
-pkgdesc="A markdown parser built for speed"
-arch=('any')
-url='https://github.com/chjj/marked'
-license=('MIT')
-depends=('nodejs')
-makedepends=('npm')
-source=(https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
-noextract=($pkgname-$pkgver.tgz)
-sha512sums=('1ddbb3216db1029497297252a428a94b12b2bcc6f04516bf4f031b7a99a567388a747f39e3c592a033f84b1cee9442a3968f01137f65fb67f0259b9128e967ea')
-
-package() {
-  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
-  install -d "$pkgdir"/usr/share/licenses/$pkgname
-  ln -s ../../../lib/node_modules/marked/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: marked/repos/community-any/PKGBUILD (from rev 434651, 
marked/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-20 04:13:07 UTC (rev 434652)
@@ -0,0 +1,20 @@
+# Maintainer: Felix Yan 
+
+pkgname=marked
+pkgver=0.6.1
+pkgrel=1
+pkgdesc="A markdown parser built for speed"
+arch=('any')
+url='https://github.com/chjj/marked'
+license=('MIT')
+depends=('nodejs')
+makedepends=('npm')
+source=(https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
+noextract=($pkgname-$pkgver.tgz)
+sha512sums=('f87d0bde26dc5a1019134d9228caa6bd8b04acba38100549c6ee61ddb1c1043bef8de597b65f76ac65120581cbdbefb963e45236097c7583805dc61eee5a757c')
+
+package() {
+  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
+  install -d "$pkgdir"/usr/share/licenses/$pkgname
+  ln -s ../../../lib/node_modules/marked/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2019-02-19 Thread Felix Yan via arch-commits
Date: Wednesday, February 20, 2019 @ 04:12:49
  Author: felixonmars
Revision: 434651

upgpkg: marked 0.6.1-1

Modified:
  marked/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-20 03:49:49 UTC (rev 434650)
+++ PKGBUILD2019-02-20 04:12:49 UTC (rev 434651)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=marked
-pkgver=0.6.0
+pkgver=0.6.1
 pkgrel=1
 pkgdesc="A markdown parser built for speed"
 arch=('any')
@@ -11,7 +11,7 @@
 makedepends=('npm')
 source=(https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
 noextract=($pkgname-$pkgver.tgz)
-sha512sums=('1ddbb3216db1029497297252a428a94b12b2bcc6f04516bf4f031b7a99a567388a747f39e3c592a033f84b1cee9442a3968f01137f65fb67f0259b9128e967ea')
+sha512sums=('f87d0bde26dc5a1019134d9228caa6bd8b04acba38100549c6ee61ddb1c1043bef8de597b65f76ac65120581cbdbefb963e45236097c7583805dc61eee5a757c')
 
 package() {
   npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz


[arch-commits] Commit in udp2raw-tunnel/repos/community-x86_64 (8 files)

2019-02-19 Thread Felix Yan via arch-commits
Date: Wednesday, February 20, 2019 @ 03:49:49
  Author: felixonmars
Revision: 434650

archrelease: copy trunk to community-x86_64

Added:
  udp2raw-tunnel/repos/community-x86_64/PKGBUILD
(from rev 434649, udp2raw-tunnel/trunk/PKGBUILD)
  udp2raw-tunnel/repos/community-x86_64/udp2raw-tunnel.install
(from rev 434649, udp2raw-tunnel/trunk/udp2raw-tunnel.install)
  udp2raw-tunnel/repos/community-x86_64/udp2raw@.service
(from rev 434649, udp2raw-tunnel/trunk/udp2raw@.service)
  udp2raw-tunnel/repos/community-x86_64/udp2raw_script.sh
(from rev 434649, udp2raw-tunnel/trunk/udp2raw_script.sh)
Deleted:
  udp2raw-tunnel/repos/community-x86_64/PKGBUILD
  udp2raw-tunnel/repos/community-x86_64/udp2raw-tunnel.install
  udp2raw-tunnel/repos/community-x86_64/udp2raw@.service
  udp2raw-tunnel/repos/community-x86_64/udp2raw_script.sh

+
 PKGBUILD   |   64 +++
 udp2raw-tunnel.install |   14 +-
 udp2raw@.service   |   36 +-
 udp2raw_script.sh  |   34 
 4 files changed, 74 insertions(+), 74 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-20 03:49:09 UTC (rev 434649)
+++ PKGBUILD2019-02-20 03:49:49 UTC (rev 434650)
@@ -1,32 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Peter Cai 
-
-pkgname=udp2raw-tunnel
-pkgver=20181113.0
-pkgrel=1
-pkgdesc='An Encrypted, Anti-Replay, Multiplexed UdP Tunnel, tunnels udp 
traffic through fake-tcp or icmp by using raw socket'
-url='https://github.com/wangyu-/udp2raw-tunnel'
-arch=('x86_64' 'i686')
-depends=('iptables')
-license=('MIT')
-install=udp2raw-tunnel.install
-source=("$pkgname-$pkgver.tar.gz::https://github.com/wangyu-/udp2raw-tunnel/archive/$pkgver.tar.gz;
-"udp2raw_script.sh"
-"udp2raw@.service")
-sha512sums=('92b1f3bcfdf3eb9c20db94d1f0e47cde1784691e5058920095830c98ca9d6ac22e178b820b0c6ebc4d6562362864e94e3d08e3f77d910634c4813f240b554a1a'
-
'bd58325188f7a4d143d97ea6dfb0b8f2f86f6b82b8cb7496478fb3a9c425d42044db91bd7f554ed95443ce11bad288d48aad1f76404e3efec68ecbff8c56820f'
-
'8ae8ae36d20e40447e85b38fd437e7aee381ec35c78638f97e7418eb616e1aacbbd3eace1a5615314ffec05f290c1ebd4c2e30073ca6373d84f5ff2514f214da')
-
-build() {
-  cd $pkgname-$pkgver
-  make fast
-}
-
-package() {
-  cd $pkgname-$pkgver
-  install -Dm755 udp2raw "$pkgdir"/usr/bin/udp2raw
-  install -Dm644 example.conf "$pkgdir"/etc/udp2raw/example.conf
-  install -Dm755 "$srcdir"/udp2raw_script.sh 
"$pkgdir"/usr/lib/udp2raw/udp2raw_script.sh
-  install -Dm644 "$srcdir"/udp2raw@.service 
"$pkgdir"/usr/lib/systemd/system/udp2raw@.service
-  install -Dm644 LICENSE.md "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.md
-}

Copied: udp2raw-tunnel/repos/community-x86_64/PKGBUILD (from rev 434649, 
udp2raw-tunnel/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-20 03:49:49 UTC (rev 434650)
@@ -0,0 +1,32 @@
+# Maintainer: Felix Yan 
+# Contributor: Peter Cai 
+
+pkgname=udp2raw-tunnel
+pkgver=20181113.0
+pkgrel=2
+pkgdesc='An Encrypted, Anti-Replay, Multiplexed UdP Tunnel, tunnels udp 
traffic through fake-tcp or icmp by using raw socket'
+url='https://github.com/wangyu-/udp2raw-tunnel'
+arch=('x86_64' 'i686')
+depends=('iptables')
+license=('MIT')
+install=udp2raw-tunnel.install
+source=("$pkgname-$pkgver.tar.gz::https://github.com/wangyu-/udp2raw-tunnel/archive/$pkgver.tar.gz;
+"udp2raw_script.sh"
+"udp2raw@.service")
+sha512sums=('92b1f3bcfdf3eb9c20db94d1f0e47cde1784691e5058920095830c98ca9d6ac22e178b820b0c6ebc4d6562362864e94e3d08e3f77d910634c4813f240b554a1a'
+
'bd58325188f7a4d143d97ea6dfb0b8f2f86f6b82b8cb7496478fb3a9c425d42044db91bd7f554ed95443ce11bad288d48aad1f76404e3efec68ecbff8c56820f'
+
'f1e2831c02163646c26601896a617e07704dc1b6324fc73f4ea576959bd33d70425472d42333ad8b7f210bd8761a83bf08db40987b016067f01590703982ae42')
+
+build() {
+  cd $pkgname-$pkgver
+  make fast
+}
+
+package() {
+  cd $pkgname-$pkgver
+  install -Dm755 udp2raw "$pkgdir"/usr/bin/udp2raw
+  install -Dm644 example.conf "$pkgdir"/etc/udp2raw/example.conf
+  install -Dm755 "$srcdir"/udp2raw_script.sh 
"$pkgdir"/usr/lib/udp2raw/udp2raw_script.sh
+  install -Dm644 "$srcdir"/udp2raw@.service 
"$pkgdir"/usr/lib/systemd/system/udp2raw@.service
+  install -Dm644 LICENSE.md "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.md
+}

Deleted: udp2raw-tunnel.install
===
--- udp2raw-tunnel.install  2019-02-20 03:49:09 UTC (rev 434649)
+++ udp2raw-tunnel.install  2019-02-20 03:49:49 UTC (rev 434650)
@@ -1,7 +0,0 @@
-post_install() {
-setcap cap_net_raw,cap_net_admin+ep usr/bin/udp2raw  2>/dev/null
-}
-
-post_upgrade() {
-post_install "$1"
-}

Copied: 

[arch-commits] Commit in udp2raw-tunnel/trunk (PKGBUILD udp2raw@.service)

2019-02-19 Thread Felix Yan via arch-commits
Date: Wednesday, February 20, 2019 @ 03:49:09
  Author: felixonmars
Revision: 434649

upgpkg: udp2raw-tunnel 20181113.0-2

fix service dependency

Modified:
  udp2raw-tunnel/trunk/PKGBUILD
  udp2raw-tunnel/trunk/udp2raw@.service

--+
 PKGBUILD |4 ++--
 udp2raw@.service |2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-02-20 03:15:24 UTC (rev 434648)
+++ PKGBUILD2019-02-20 03:49:09 UTC (rev 434649)
@@ -3,7 +3,7 @@
 
 pkgname=udp2raw-tunnel
 pkgver=20181113.0
-pkgrel=1
+pkgrel=2
 pkgdesc='An Encrypted, Anti-Replay, Multiplexed UdP Tunnel, tunnels udp 
traffic through fake-tcp or icmp by using raw socket'
 url='https://github.com/wangyu-/udp2raw-tunnel'
 arch=('x86_64' 'i686')
@@ -15,7 +15,7 @@
 "udp2raw@.service")
 
sha512sums=('92b1f3bcfdf3eb9c20db94d1f0e47cde1784691e5058920095830c98ca9d6ac22e178b820b0c6ebc4d6562362864e94e3d08e3f77d910634c4813f240b554a1a'
 
'bd58325188f7a4d143d97ea6dfb0b8f2f86f6b82b8cb7496478fb3a9c425d42044db91bd7f554ed95443ce11bad288d48aad1f76404e3efec68ecbff8c56820f'
-
'8ae8ae36d20e40447e85b38fd437e7aee381ec35c78638f97e7418eb616e1aacbbd3eace1a5615314ffec05f290c1ebd4c2e30073ca6373d84f5ff2514f214da')
+
'f1e2831c02163646c26601896a617e07704dc1b6324fc73f4ea576959bd33d70425472d42333ad8b7f210bd8761a83bf08db40987b016067f01590703982ae42')
 
 build() {
   cd $pkgname-$pkgver

Modified: udp2raw@.service
===
--- udp2raw@.service2019-02-20 03:15:24 UTC (rev 434648)
+++ udp2raw@.service2019-02-20 03:49:09 UTC (rev 434649)
@@ -1,6 +1,6 @@
 [Unit]
 Description=UDP over TCP/ICMP/UDP tunnel
-After=network-online.service
+After=network-online.target
 
 [Service]
 User=nobody


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

2019-02-19 Thread Felix Yan via arch-commits
Date: Wednesday, February 20, 2019 @ 03:15:24
  Author: felixonmars
Revision: 434648

archrelease: copy trunk to community-x86_64

Added:
  deepin-screensaver/repos/community-x86_64/PKGBUILD
(from rev 434647, deepin-screensaver/trunk/PKGBUILD)
Deleted:
  deepin-screensaver/repos/community-x86_64/PKGBUILD
  deepin-screensaver/repos/community-x86_64/symlink.patch

---+
 PKGBUILD  |   56 +---
 symlink.patch |   32 
 2 files changed, 25 insertions(+), 63 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-20 03:15:07 UTC (rev 434647)
+++ PKGBUILD2019-02-20 03:15:24 UTC (rev 434648)
@@ -1,31 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=deepin-screensaver
-pkgver=0.0.6
-pkgrel=2
-pkgdesc='Deepin screensaver viewer and tools'
-arch=('x86_64')
-url="https://github.com/linuxdeepin/deepin-screensaver;
-license=('GPL3')
-depends=('qt5-declarative' 'qt5-x11extras' 'libxss' 'xscreensaver')
-makedepends=('qt5-tools' 'python')
-groups=('deepin')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-screensaver/archive/$pkgver.tar.gz;
-symlink.patch)
-sha512sums=('ccfabd941c32bbbda300a3f66809941143459d246bcf25c0a83ff354046d9f34fd381b2e8d669bb5b2cdc5b2feda377c19c639c3a468727f88696e704093ddaa'
-
'5950d9dc061be8135a7b707c6b50ab2abb223e537fccca203a42cd79d1a8f1bfe78f86c4d1eedabc6d7563f68530a932434c5e7042e4571514f6af146c41656a')
-
-prepare() {
-  patch -d deepin-screensaver-$pkgver -p1 -i ../symlink.patch
-}
-
-build() {
-  cd deepin-screensaver-$pkgver
-  qmake-qt5 PREFIX=/usr
-  make
-}
-
-package() {
-  cd deepin-screensaver-$pkgver
-  make INSTALL_ROOT="$pkgdir" install
-}

Copied: deepin-screensaver/repos/community-x86_64/PKGBUILD (from rev 434647, 
deepin-screensaver/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-20 03:15:24 UTC (rev 434648)
@@ -0,0 +1,25 @@
+# Maintainer: Felix Yan 
+
+pkgname=deepin-screensaver
+pkgver=0.0.7
+pkgrel=1
+pkgdesc='Deepin screensaver viewer and tools'
+arch=('x86_64')
+url="https://github.com/linuxdeepin/deepin-screensaver;
+license=('GPL3')
+depends=('qt5-declarative' 'qt5-x11extras' 'libxss' 'xscreensaver')
+makedepends=('qt5-tools' 'python')
+groups=('deepin')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-screensaver/archive/$pkgver.tar.gz;)
+sha512sums=('0921c14fb8fdc25e976e3127c2a07eb66ca984994049f9935e650f5255f7a43dacc38d03e1d13f75549f4bfb976dee8005cb8178d171d8f95bd6172b88fcc097')
+
+build() {
+  cd deepin-screensaver-$pkgver
+  qmake-qt5 PREFIX=/usr
+  make
+}
+
+package() {
+  cd deepin-screensaver-$pkgver
+  make INSTALL_ROOT="$pkgdir" install
+}

Deleted: symlink.patch
===
--- symlink.patch   2019-02-20 03:15:07 UTC (rev 434647)
+++ symlink.patch   2019-02-20 03:15:24 UTC (rev 434648)
@@ -1,32 +0,0 @@
-commit cfefea3e716da1cb837b070e04c85587eb9a1d53
-Author: zccrs 
-Date:   Mon Feb 18 15:00:03 2019 +0800
-
-install symlinks instead of copied binaries from xscreensaver
-
-Change-Id: Id8f0ea8842968ffdfe548f4357cbf7dca2ca34ee
-
-diff --git a/debian/deepin-screensaver-xscreensaver-data.install 
b/debian/deepin-screensaver-xscreensaver-data.install
-index 418b701..0b5ea03 100644
 a/debian/deepin-screensaver-xscreensaver-data.install
-+++ b/debian/deepin-screensaver-xscreensaver-data.install
-@@ -1,2 +1 @@
- usr/lib/deepin-screensaver/modules/*
--xscreensaver/extras/* usr/lib/deepin-screensaver/modules/
-diff --git a/xscreensaver/xscreensaver.pro b/xscreensaver/xscreensaver.pro
-index 55d36d6..163ab00 100644
 a/xscreensaver/xscreensaver.pro
-+++ b/xscreensaver/xscreensaver.pro
-@@ -16,11 +16,9 @@ isEmpty(XSCREENSAVER_DATA_PATH) {
- }
- 
- screensaver.path = $$MODULE_PATH
--mkpath($$PWD/extras)
- 
- for(ss, screensaver_list) {
--system(ln -s $$XSCREENSAVER_DATA_PATH/$$ss $$PWD/extras/$$ss)
--screensaver.files += $$PWD/extras/$$ss
-+screensaver.extra += ln -s $$XSCREENSAVER_DATA_PATH/$$ss 
$(INSTALL_ROOT)$$screensaver.path/$$ss;
- }
- 
- INSTALLS += cover screensaver


[arch-commits] Commit in deepin-screensaver/trunk (PKGBUILD symlink.patch)

2019-02-19 Thread Felix Yan via arch-commits
Date: Wednesday, February 20, 2019 @ 03:15:07
  Author: felixonmars
Revision: 434647

upgpkg: deepin-screensaver 0.0.7-1

Modified:
  deepin-screensaver/trunk/PKGBUILD
Deleted:
  deepin-screensaver/trunk/symlink.patch

---+
 PKGBUILD  |   14 --
 symlink.patch |   32 
 2 files changed, 4 insertions(+), 42 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-02-19 23:21:19 UTC (rev 434646)
+++ PKGBUILD2019-02-20 03:15:07 UTC (rev 434647)
@@ -1,8 +1,8 @@
 # Maintainer: Felix Yan 
 
 pkgname=deepin-screensaver
-pkgver=0.0.6
-pkgrel=2
+pkgver=0.0.7
+pkgrel=1
 pkgdesc='Deepin screensaver viewer and tools'
 arch=('x86_64')
 url="https://github.com/linuxdeepin/deepin-screensaver;
@@ -10,15 +10,9 @@
 depends=('qt5-declarative' 'qt5-x11extras' 'libxss' 'xscreensaver')
 makedepends=('qt5-tools' 'python')
 groups=('deepin')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-screensaver/archive/$pkgver.tar.gz;
-symlink.patch)
-sha512sums=('ccfabd941c32bbbda300a3f66809941143459d246bcf25c0a83ff354046d9f34fd381b2e8d669bb5b2cdc5b2feda377c19c639c3a468727f88696e704093ddaa'
-
'5950d9dc061be8135a7b707c6b50ab2abb223e537fccca203a42cd79d1a8f1bfe78f86c4d1eedabc6d7563f68530a932434c5e7042e4571514f6af146c41656a')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-screensaver/archive/$pkgver.tar.gz;)
+sha512sums=('0921c14fb8fdc25e976e3127c2a07eb66ca984994049f9935e650f5255f7a43dacc38d03e1d13f75549f4bfb976dee8005cb8178d171d8f95bd6172b88fcc097')
 
-prepare() {
-  patch -d deepin-screensaver-$pkgver -p1 -i ../symlink.patch
-}
-
 build() {
   cd deepin-screensaver-$pkgver
   qmake-qt5 PREFIX=/usr

Deleted: symlink.patch
===
--- symlink.patch   2019-02-19 23:21:19 UTC (rev 434646)
+++ symlink.patch   2019-02-20 03:15:07 UTC (rev 434647)
@@ -1,32 +0,0 @@
-commit cfefea3e716da1cb837b070e04c85587eb9a1d53
-Author: zccrs 
-Date:   Mon Feb 18 15:00:03 2019 +0800
-
-install symlinks instead of copied binaries from xscreensaver
-
-Change-Id: Id8f0ea8842968ffdfe548f4357cbf7dca2ca34ee
-
-diff --git a/debian/deepin-screensaver-xscreensaver-data.install 
b/debian/deepin-screensaver-xscreensaver-data.install
-index 418b701..0b5ea03 100644
 a/debian/deepin-screensaver-xscreensaver-data.install
-+++ b/debian/deepin-screensaver-xscreensaver-data.install
-@@ -1,2 +1 @@
- usr/lib/deepin-screensaver/modules/*
--xscreensaver/extras/* usr/lib/deepin-screensaver/modules/
-diff --git a/xscreensaver/xscreensaver.pro b/xscreensaver/xscreensaver.pro
-index 55d36d6..163ab00 100644
 a/xscreensaver/xscreensaver.pro
-+++ b/xscreensaver/xscreensaver.pro
-@@ -16,11 +16,9 @@ isEmpty(XSCREENSAVER_DATA_PATH) {
- }
- 
- screensaver.path = $$MODULE_PATH
--mkpath($$PWD/extras)
- 
- for(ss, screensaver_list) {
--system(ln -s $$XSCREENSAVER_DATA_PATH/$$ss $$PWD/extras/$$ss)
--screensaver.files += $$PWD/extras/$$ss
-+screensaver.extra += ln -s $$XSCREENSAVER_DATA_PATH/$$ss 
$(INSTALL_ROOT)$$screensaver.path/$$ss;
- }
- 
- INSTALLS += cover screensaver


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

2019-02-19 Thread Levente Polyak via arch-commits
Date: Tuesday, February 19, 2019 @ 23:44:20
  Author: anthraxx
Revision: 346569

upgpkg: thunderbird-i18n 60.5.1-1

Modified:
  thunderbird-i18n/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-19 23:35:28 UTC (rev 346568)
+++ PKGBUILD2019-02-19 23:44:20 UTC (rev 346569)
@@ -4,10 +4,10 @@
 # Contributor: Thomas Baechler 
 
 pkgbase=thunderbird-i18n
-pkgver=60.5.0
+pkgver=60.5.1
 pkgrel=1
 pkgdesc='Language pack for Thunderbird'
-url='http://www.mozilla.com/'
+url='https://www.mozilla.org/thunderbird'
 arch=('any')
 license=('MPL' 'GPL')
 
@@ -94,60 +94,60 @@
 
"$pkgdir/usr/lib/thunderbird/extensions/langpack-$1...@thunderbird.mozilla.org.xpi"
 }
 
-sha256sums=('396a13fc6535a68fb1c0f754243b220f6bcfec2a186a5567b9369147ff3975d0'
-'7563dbb731f7ea8f9a13dbec1f3a295fc89839fe484b6a2fda57be6eec5e2ce2'
-'a098bc35e3703e422ed548883216d534b8aef0ef47a446aa2acd6955b0fdac29'
-'647d26bf395c3f885617f1a970ea67e1436ae266d0d9c8b089490e1e12afb1ac'
-'75c2b8578e5cc30035b9f6faad4feab1c43d83a1ed95ec45c9f4d8ab0bfd0c4b'
-'d9e87182418d6c89ba332a4e78078f81e9aac14fe0abce255b673122c0735f71'
-'1dc5fd93a43b997adb28fc7ac24ba1a25e040d02ebd7a7978f8d6bce318f22e0'
-'6039174a0c761416ef49f0face6f88b4d79a49fa56c4bb473bb5cee750a3e208'
-'4d515134ef90ff95523ff687088bebcacec23ed8fbe4f6d616b68ae0710f249a'
-'1664dd8842851d29647dbb1fcfa4ecafb9501b5ab358302bcbacb77cab634559'
-'e0f34880b25f7d1e361dc8b502405918a51d402d0c14370f863259d5609bd6d5'
-'510d046f3bb350a7d5847834d37fa3895209df1d2bf609dd826af594404e2e53'
-'e8fa1a81c509b42e630a0d51eef58b0f027b6a9a6b648cfabb407cd4e1ef5d15'
-'6bd4ee055fa3c7dc6b2756220b4cc192ff4c2b1509662fc02d77d83276d1'
-'f31f9ddd6f2bd7f14b7ba660dca44a44d1ce63f6b696fcf3402de508a44fdf84'
-'f328d5a6e0e3c155da02acb7f22264941f85991b587c8c73554eba4bc0ec6658'
-'68329563dc48cc899007d846d1d1c78bc4690d54955e2e377ac204284aa3a4fc'
-'96c124681a083f7d44a1a27fe8cabd287b73152a0aba324ecc89c099f07ebe2b'
-'2fbc3ebbeda7770dad1031056dd8568decc68e92041043c2fa537580d68be3b6'
-'8b7e334e832ca60dc5f5972df0e070a0bc64aa3d21f9f4fd4a0a4fb09eab68a7'
-'d4e058e7449baaa68a87f6147081ab849134e3c487c5a46ebe874ee769f380f5'
-'565c05ad8e1841c06571e9877d7e1dbdd0d3b2dcb7caecdd525cb24684e1ee7c'
-'6526a9b5e70600234a5bce76548fc8aa30bfabb4bab081991a0ec28f375e11ef'
-'bc3ae2e961b058a37e5977ec23d1a3636c1547f424b913680b01b312e31c2eb8'
-'fb735a51a263d7c12624b106b4b11afe55b4192b6c3752cd5a3de10f0ea4589b'
-'46ab5cd64c814a6f8f930539e7757ec6d859c652c121be09f7d0984e15feb945'
-'58dfbff6977c8c0144c4bf9a40d60915b248620c391c9a814ad53825ced57daf'
-'bb5ded142be6f62c0aeac040d7720fd12558ae5b2cf1c62cfb4de10a507cd97a'
-'0cae5f9e6e9ba0317a508335bfe430ae1efc4ec259c8c535373a6b1004801ab6'
-'f0b0710ba277f373bdfff2c161ca97300fc773c400f0505430ba9a2163a511e5'
-'40781ed3bbf9af0bbff1c2a144c101505192480e49f599d69af19aadc9cbee38'
-'22803ad551daed6a6101b2c856a79386240a4fceeb4160e83dcde0c0e2944d06'
-'3bb74a119f76062428ba889723e6e878dabed760757a90bb247ec19d1ce58e0e'
-'bd8c8e5000ffd97577a74f3866489bc941e02d4a98b8543233821b334b215191'
-'5d51778174d5043fb79d2339afa3952934bddd1c29020a1256e6e14e0b8ad9af'
-'1c8bb1cedbfd2a297f11947b1b99bef28690e26d33be826a55e04efa3c3f4611'
-'830b93c1afad284e406f12df76f5fe5fb011fdafbd4ce9f10e44284a5a4a1fc5'
-'a33c9e8b7dcffeb1702b12c25c6a719096d65d69dc85877c066a35babb4b2824'
-'1a5b60e65adfb3f4024d25165e3e864ffb210166e61dff47bb9abdbea2b99dcb'
-'8fbbb1022f49ca9fce1aa1481afff4ed377d1281e9da3d3a3f51faf42b4ab0b0'
-'b7f8f9e440778e3a19929ce6f04c98af905767b888a87380a108b28f8455426f'
-'b8de1432cb2440d07ed0624367dca3629f0494dd6a5f3052c7f7e5b6df715c54'
-'03e25d7e493d13f156e75885dd5adc4686202d01976750c433169f3ba2bbdf62'
-'2b4398c00a09d7a1a306933d25fced39bbc73b1455ff816f7a288aae70b8bcc5'
-'bd82a180d5f2081505a3ff8c09de9936511d1d616e9947c913c5d45ae0105ca4'
-'26901d561b82c040e733fe061829c9d688b4869cf4ff5dcda3d84b3e1178a0a5'
-'202dfacbe227291e69e81ff96540aac1e3444209d62b083c172fc23c72d54ee2'
-'82fc6083998e6362b0bfc8e263edad82346463a226eddc6b04bcf7fb380b6788'
-'dc931da27dda3502cd22abf0837afaecda15160476758e5e2aa194d517bb463f'
-'f1be900c89ec7b88b7b3511360729b0b237d01f10d26aaad2857a8f9d295bc9b'
-'c1a1b0135c22ab60c2a6542fb1571413e9d78d5a70a4efa57e798b6998381971'
-

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

2019-02-19 Thread Levente Polyak via arch-commits
Date: Tuesday, February 19, 2019 @ 23:44:26
  Author: anthraxx
Revision: 346570

archrelease: copy trunk to extra-any

Added:
  thunderbird-i18n/repos/extra-any/PKGBUILD
(from rev 346569, thunderbird-i18n/trunk/PKGBUILD)
Deleted:
  thunderbird-i18n/repos/extra-any/PKGBUILD

--+
 PKGBUILD |  306 ++---
 1 file changed, 153 insertions(+), 153 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-19 23:44:20 UTC (rev 346569)
+++ PKGBUILD2019-02-19 23:44:26 UTC (rev 346570)
@@ -1,153 +0,0 @@
-# Maintainer: Levente Polyak 
-# Maintainer: Jan de Groot 
-# Contributor: Andrea Scarpino 
-# Contributor: Thomas Baechler 
-
-pkgbase=thunderbird-i18n
-pkgver=60.5.0
-pkgrel=1
-pkgdesc='Language pack for Thunderbird'
-url='http://www.mozilla.com/'
-arch=('any')
-license=('MPL' 'GPL')
-
-_languages=(
-  'ar "Arabic"'
-  'ast"Asturian"'
-  'be "Belarusian"'
-  'bg "Bulgarian"'
-  'br "Breton"'
-  'ca "Catalan"'
-  'cs "Czech"'
-  'cy "Welsh"'
-  'da "Danish"'
-  'de "German"'
-  'dsb"Lower Sorbian"'
-  'el "Greek"'
-  'en-GB  "English (British)"'
-  'en-US  "English (US)"'
-  'es-AR  "Spanish (Argentina)"'
-  'es-ES  "Spanish (Spain)"'
-  'et "Estonian"'
-  'eu "Basque"'
-  'fi "Finnish"'
-  'fr "French"'
-  'fy-NL  "Frisian"'
-  'ga-IE  "Irish"'
-  'gd "Gaelic (Scotland)"'
-  'gl "Galician"'
-  'he "Hebrew"'
-  'hr "Croatian"'
-  'hsb"Upper Sorbian"'
-  'hu "Hungarian"'
-  'hy-AM  "Armenian"'
-  'id "Indonesian"'
-  'is "Icelandic"'
-  'it "Italian"'
-  'ja "Japanese"'
-  'ko "Korean"'
-  'lt "Lithuanian"'
-  'nb-NO  "Norwegian (Bokmål)"'
-  'nl "Dutch"'
-  'nn-NO  "Norwegian (Nynorsk)"'
-  'pl "Polish"'
-  'pt-BR  "Portuguese (Brazilian)"'
-  'pt-PT  "Portuguese (Portugal)"'
-  'rm "Romansh"'
-  'ro "Romanian"'
-  'ru "Russian"'
-  'si "Sinhala"'
-  'sk "Slovak"'
-  'sl "Slovenian"'
-  'sq "Albanian"'
-  'sr "Serbian"'
-  'sv-SE  "Swedish"'
-  'tr "Turkish"'
-  'uk "Ukrainian"'
-  'vi "Vietnamese"'
-  'zh-CN  "Chinese (Simplified)"'
-  'zh-TW  "Chinese (Traditional)"'
-)
-
-pkgname=()
-source=()
-_url=https://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/$pkgver/linux-x86_64/xpi
-
-for _lang in "${_languages[@]}"; do
-  _locale=${_lang%% *}
-  _pkgname=thunderbird-i18n-${_locale,,}
-
-  pkgname+=($_pkgname)
-  source+=("thunderbird-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 Thunderbird"
-  depends=("thunderbird>=$pkgver")
-  install -Dm644 thunderbird-i18n-$pkgver-$1.xpi \
-
"$pkgdir/usr/lib/thunderbird/extensions/langpack-$1...@thunderbird.mozilla.org.xpi"
-}
-
-sha256sums=('396a13fc6535a68fb1c0f754243b220f6bcfec2a186a5567b9369147ff3975d0'
-'7563dbb731f7ea8f9a13dbec1f3a295fc89839fe484b6a2fda57be6eec5e2ce2'
-'a098bc35e3703e422ed548883216d534b8aef0ef47a446aa2acd6955b0fdac29'
-'647d26bf395c3f885617f1a970ea67e1436ae266d0d9c8b089490e1e12afb1ac'
-'75c2b8578e5cc30035b9f6faad4feab1c43d83a1ed95ec45c9f4d8ab0bfd0c4b'
-'d9e87182418d6c89ba332a4e78078f81e9aac14fe0abce255b673122c0735f71'
-'1dc5fd93a43b997adb28fc7ac24ba1a25e040d02ebd7a7978f8d6bce318f22e0'
-'6039174a0c761416ef49f0face6f88b4d79a49fa56c4bb473bb5cee750a3e208'
-'4d515134ef90ff95523ff687088bebcacec23ed8fbe4f6d616b68ae0710f249a'
-'1664dd8842851d29647dbb1fcfa4ecafb9501b5ab358302bcbacb77cab634559'
-'e0f34880b25f7d1e361dc8b502405918a51d402d0c14370f863259d5609bd6d5'
-'510d046f3bb350a7d5847834d37fa3895209df1d2bf609dd826af594404e2e53'
-'e8fa1a81c509b42e630a0d51eef58b0f027b6a9a6b648cfabb407cd4e1ef5d15'
-'6bd4ee055fa3c7dc6b2756220b4cc192ff4c2b1509662fc02d77d83276d1'
-'f31f9ddd6f2bd7f14b7ba660dca44a44d1ce63f6b696fcf3402de508a44fdf84'
-'f328d5a6e0e3c155da02acb7f22264941f85991b587c8c73554eba4bc0ec6658'
-'68329563dc48cc899007d846d1d1c78bc4690d54955e2e377ac204284aa3a4fc'
-'96c124681a083f7d44a1a27fe8cabd287b73152a0aba324ecc89c099f07ebe2b'
-'2fbc3ebbeda7770dad1031056dd8568decc68e92041043c2fa537580d68be3b6'
-'8b7e334e832ca60dc5f5972df0e070a0bc64aa3d21f9f4fd4a0a4fb09eab68a7'
-'d4e058e7449baaa68a87f6147081ab849134e3c487c5a46ebe874ee769f380f5'
-'565c05ad8e1841c06571e9877d7e1dbdd0d3b2dcb7caecdd525cb24684e1ee7c'
-'6526a9b5e70600234a5bce76548fc8aa30bfabb4bab081991a0ec28f375e11ef'
-'bc3ae2e961b058a37e5977ec23d1a3636c1547f424b913680b01b312e31c2eb8'
-'fb735a51a263d7c12624b106b4b11afe55b4192b6c3752cd5a3de10f0ea4589b'
-

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

2019-02-19 Thread Levente Polyak via arch-commits
Date: Tuesday, February 19, 2019 @ 23:35:23
  Author: anthraxx
Revision: 346567

upgpkg: thunderbird 60.5.1-1

Modified:
  thunderbird/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-19 21:20:13 UTC (rev 346566)
+++ PKGBUILD2019-02-19 23:35:23 UTC (rev 346567)
@@ -6,7 +6,7 @@
 # Contributor: Anders Bostrom 
 
 pkgname=thunderbird
-pkgver=60.5.0
+pkgver=60.5.1
 pkgrel=1
 pkgdesc='Standalone mail and news reader from mozilla.org'
 url='https://www.mozilla.org/thunderbird/'
@@ -20,7 +20,7 @@
 options=(!emptydirs !makeflags)
 
source=(https://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/$pkgver/source/thunderbird-$pkgver.source.tar.xz
 $pkgname.desktop)
-sha256sums=('6f96e87e832e4089c69418db64e19afd54a0acefe3e0364087a8bc6f442b9566'
+sha256sums=('69a3f741b7378b50a3b6a3b59f6c4fedd2d82d469ab234390627e15da1b58e03'
 'e44c55501f650a4e80b9c353b81f33e07ca65808db831eff6ca616aded233827')
 
 # Google API keys (see http://www.chromium.org/developers/how-tos/api-keys)


[arch-commits] Commit in thunderbird/repos/extra-x86_64 (4 files)

2019-02-19 Thread Levente Polyak via arch-commits
Date: Tuesday, February 19, 2019 @ 23:35:28
  Author: anthraxx
Revision: 346568

archrelease: copy trunk to extra-x86_64

Added:
  thunderbird/repos/extra-x86_64/PKGBUILD
(from rev 346567, thunderbird/trunk/PKGBUILD)
  thunderbird/repos/extra-x86_64/thunderbird.desktop
(from rev 346567, thunderbird/trunk/thunderbird.desktop)
Deleted:
  thunderbird/repos/extra-x86_64/PKGBUILD
  thunderbird/repos/extra-x86_64/thunderbird.desktop

-+
 PKGBUILD|  304 +--
 thunderbird.desktop |  346 +-
 2 files changed, 325 insertions(+), 325 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-19 23:35:23 UTC (rev 346567)
+++ PKGBUILD2019-02-19 23:35:28 UTC (rev 346568)
@@ -1,152 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Jan Alexander Steffens (heftig) 
-# Contributor: Ionut Biru 
-# Contributor: Alexander Baldeck 
-# Contributor: Dale Blount 
-# Contributor: Anders Bostrom 
-
-pkgname=thunderbird
-pkgver=60.5.0
-pkgrel=1
-pkgdesc='Standalone mail and news reader from mozilla.org'
-url='https://www.mozilla.org/thunderbird/'
-arch=(x86_64)
-license=(MPL GPL LGPL)
-depends=(gtk3 gtk2 mozilla-common libxt startup-notification mime-types 
dbus-glib alsa-lib
- nss hunspell sqlite ttf-font libvpx icu)
-makedepends=(unzip zip diffutils python2 yasm mesa imake gconf libpulse 
inetutils xorg-server-xvfb
- autoconf2.13 rust clang llvm)
-optdepends=('libcanberra: sound support')
-options=(!emptydirs !makeflags)
-source=(https://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/$pkgver/source/thunderbird-$pkgver.source.tar.xz
-$pkgname.desktop)
-sha256sums=('6f96e87e832e4089c69418db64e19afd54a0acefe3e0364087a8bc6f442b9566'
-'e44c55501f650a4e80b9c353b81f33e07ca65808db831eff6ca616aded233827')
-
-# 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() {
-  cd $pkgname-$pkgver
-
-  echo -n "$_google_api_key" >google-api-key
-  echo -n "$_mozilla_api_key" >mozilla-api-key
-
-  cat >.mozconfig google-api-key
+  echo -n "$_mozilla_api_key" >mozilla-api-key
+
+  cat 

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

2019-02-19 Thread Santiago Torres-Arias via arch-commits
Date: Tuesday, February 19, 2019 @ 23:21:19
  Author: sangy
Revision: 434646

archrelease: copy trunk to community-x86_64

Added:
  python-pyopencl/repos/community-x86_64/LICENSE.txt
(from rev 434645, python-pyopencl/trunk/LICENSE.txt)
  python-pyopencl/repos/community-x86_64/PKGBUILD
(from rev 434645, python-pyopencl/trunk/PKGBUILD)
Deleted:
  python-pyopencl/repos/community-x86_64/LICENSE.txt
  python-pyopencl/repos/community-x86_64/PKGBUILD

-+
 LICENSE.txt |   40 +++
 PKGBUILD|  146 +-
 2 files changed, 93 insertions(+), 93 deletions(-)

Deleted: LICENSE.txt
===
--- LICENSE.txt 2019-02-19 23:20:54 UTC (rev 434645)
+++ LICENSE.txt 2019-02-19 23:21:19 UTC (rev 434646)
@@ -1,20 +0,0 @@
-Permission is hereby granted, free of charge, to any person
-obtaining a copy of this software and associated documentation
-files (the "Software"), to deal in the Software without
-restriction, including without limitation the rights to use,
-copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the
-Software is furnished to do so, subject to the following
-conditions:
-
-The above copyright notice and this permission notice shall be
-included in all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
-EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
-OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
-NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
-HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
-WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
-FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
-OTHER DEALINGS IN THE SOFTWARE.

Copied: python-pyopencl/repos/community-x86_64/LICENSE.txt (from rev 434645, 
python-pyopencl/trunk/LICENSE.txt)
===
--- LICENSE.txt (rev 0)
+++ LICENSE.txt 2019-02-19 23:21:19 UTC (rev 434646)
@@ -0,0 +1,20 @@
+Permission is hereby granted, free of charge, to any person
+obtaining a copy of this software and associated documentation
+files (the "Software"), to deal in the Software without
+restriction, including without limitation the rights to use,
+copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the
+Software is furnished to do so, subject to the following
+conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
+OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
+HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+OTHER DEALINGS IN THE SOFTWARE.

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-19 23:20:54 UTC (rev 434645)
+++ PKGBUILD2019-02-19 23:21:19 UTC (rev 434646)
@@ -1,73 +0,0 @@
-# Maintianer: Santiago Torres-Arias 
-# Contributor: Stéphane Gaudreault 
-
-_pypiname=pyopencl
-pkgbase=python-pyopencl
-pkgname=('python2-pyopencl' 'python-pyopencl' 'pyopencl-headers')
-pkgver=2018.2.2
-pkgrel=1
-epoch=1
-pkgdesc="A complete, object-oriented language binding of OpenCL to Python"
-arch=('x86_64')
-url="https://mathema.tician.de/software/pyopencl;
-license=('MIT' 'Apache' 'BSD')
-depends=('opencl-icd-loader' 'opencl-headers' 'mesa' 'boost-libs')
-makedepends=('ctags' 'boost' 'python-setuptools' 'python2-setuptools' 
'python-mako' 'python2-mako'
- 'python-numpy' 'python2-numpy' 'python-cffi' 'python2-cffi' 'git' 
'pybind11')
- checkdepends=('python-six' 'python2-six' 'python-appdirs' 'python2-appdirs')
-source=("git+https://github.com/inducer/pyopencl.git?signed#tag=v${pkgver}.signed;)
-validpgpkeys=("900A958D9A0ACA58B1468F2471AA298BCA171145") # Andreas Ratchke
-sha256sums=('SKIP')
-
-build() {
-# we use git clone here to ensure the submodules intialize properly
-# FIXME: I could do something more thorough later down the line
-git clone pyopencl{,-python2}
- 
-cd "pyopencl"
-python3 ./configure.py --python-exe=python3 --cl-pretend-version=1.2 # 
--boost-python-libname=boost_python3
-make
- 
-cd "${srcdir}/pyopencl-python2"
-python2 ./configure.py  --python-exe=python2 --cl-pretend-version=1.2 # 
--boost-python-libname=boost_python
-make
-}
-
-check(){
-cd pyopencl
-make tests
-
-cd "$srcdir/pyopencl-python2"
-make tests
-}
-

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

2019-02-19 Thread Santiago Torres-Arias via arch-commits
Date: Tuesday, February 19, 2019 @ 23:20:54
  Author: sangy
Revision: 434645

upgpkg: python-pyopencl 1:2018.2.4-1

Modified:
  python-pyopencl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-19 22:35:23 UTC (rev 434644)
+++ PKGBUILD2019-02-19 23:20:54 UTC (rev 434645)
@@ -4,7 +4,7 @@
 _pypiname=pyopencl
 pkgbase=python-pyopencl
 pkgname=('python2-pyopencl' 'python-pyopencl' 'pyopencl-headers')
-pkgver=2018.2.2
+pkgver=2018.2.4
 pkgrel=1
 epoch=1
 pkgdesc="A complete, object-oriented language binding of OpenCL to Python"


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

2019-02-19 Thread Levente Polyak via arch-commits
Date: Tuesday, February 19, 2019 @ 22:35:23
  Author: anthraxx
Revision: 434644

archrelease: copy trunk to community-any

Added:
  gradle/repos/community-any/PKGBUILD
(from rev 434643, gradle/trunk/PKGBUILD)
  gradle/repos/community-any/gradle.sh
(from rev 434643, gradle/trunk/gradle.sh)
Deleted:
  gradle/repos/community-any/PKGBUILD
  gradle/repos/community-any/gradle.sh

---+
 PKGBUILD  |  154 ++--
 gradle.sh |4 -
 2 files changed, 79 insertions(+), 79 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-19 22:34:47 UTC (rev 434643)
+++ PKGBUILD2019-02-19 22:35:23 UTC (rev 434644)
@@ -1,77 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Simon Legner 
-# Contributor: Chris Molozian (novabyte) 
-# Contributor: Sanjuro Makabe (itti) 
-
-# TODO: build from source
-pkgbase=gradle
-pkgname=('gradle' 'gradle-doc' 'gradle-src')
-pkgver=5.2
-pkgrel=1
-pkgdesc='Powerful build system for the JVM'
-url='https://gradle.org/'
-arch=('any')
-license=('Apache')
-depends=('java-environment' 'bash')
-makedepends=('git')
-source=(https://services.gradle.org/distributions/${pkgbase}-${pkgver}-all.zip
-${pkgbase}.sh)
-sha256sums=('55db797adf2705bb782655f012af7cc7724b14382881f60fb3f3eb4b645c02d6'
-'7cdd70370b92b297f350d5ff69b915359bdc37b4feac839696b0ab5eaa7d7c2a')
-sha512sums=('83815723903a5cc25d8fd91d7091b9696e33b0d7ab08bf938385521ae4f5f298dd5fa435281d808dfb3c8d6e97a4097de63956cc2f72a83d6d2a82a10c4cf104'
-
'f38e9b26e22948366acf6580d6f38e2c88c3791c425b24922368fe1bc78c744fa516a03ffdbef02e3755859da620a6259997d4b4e5f97e3dc8cb49b74a694616')
-
-package_gradle() {
-  cd ${pkgbase}-${pkgver}
-
-  # install profile.d script
-  install -Dm 755 "${srcdir}/${pkgbase}.sh" 
"${pkgdir}/etc/profile.d/${pkgbase}.sh"
-
-  # create the necessary directory structure
-  install -d "${pkgdir}/usr/share/java/${pkgname}/bin"
-  install -d "${pkgdir}/usr/share/java/${pkgname}/lib/plugins"
-  install -d "${pkgdir}/usr/share/java/${pkgname}/init.d"
-  install -d "${pkgdir}/usr/bin"
-
-  # copy across jar files
-  install -Dm 644 lib/*.jar "${pkgdir}/usr/share/java/${pkgname}/lib"
-  install -Dm 644 lib/plugins/*.jar 
"${pkgdir}/usr/share/java/${pkgname}/lib/plugins"
-
-  # copy across supporting text documentation and scripts
-  install -m 644 NOTICE "${pkgdir}/usr/share/java/${pkgname}"
-  install -m 644 LICENSE "${pkgdir}/usr/share/java/${pkgname}"
-  install -m 644 *.html "${pkgdir}/usr/share/java/${pkgname}"
-  install -m 755 bin/gradle "${pkgdir}/usr/share/java/${pkgname}/bin"
-  install -m 644 init.d/*.* "${pkgdir}/usr/share/java/${pkgname}/init.d"
-
-  # link gradle script to /usr/bin
-  ln -s /usr/share/java/${pkgname}/bin/${pkgname} "${pkgdir}/usr/bin"
-}
-
-package_gradle-doc() {
-  pkgdesc='Powerful build system for the JVM (documentation and samples)'
-  options=('!strip')
-  optdepends=('gradle')
-
-  cd ${pkgbase}-${pkgver}
-
-  # create the necessary directory structure
-  install -d "${pkgdir}/usr/share/java/gradle/docs"
-  install -d "${pkgdir}/usr/share/java/gradle/samples"
-
-  # copy across documentation and samples
-  cp -r docs/* "${pkgdir}/usr/share/java/gradle/docs"
-  cp -r samples/* "${pkgdir}/usr/share/java/gradle/samples"
-}
-
-package_gradle-src() {
-  pkgdesc='Powerful build system for the JVM (sources)'
-  options=('!strip')
-  optdepends=('gradle')
-
-  cd ${pkgbase}-${pkgver}
-  install -d "${pkgdir}/usr/share/java/gradle/src"
-  cp -r src/* "${pkgdir}/usr/share/java/gradle/src"
-}
-
-# vim: ts=2 sw=2 et:

Copied: gradle/repos/community-any/PKGBUILD (from rev 434643, 
gradle/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-19 22:35:23 UTC (rev 434644)
@@ -0,0 +1,77 @@
+# Maintainer: Levente Polyak 
+# Contributor: Simon Legner 
+# Contributor: Chris Molozian (novabyte) 
+# Contributor: Sanjuro Makabe (itti) 
+
+# TODO: build from source
+pkgbase=gradle
+pkgname=('gradle' 'gradle-doc' 'gradle-src')
+pkgver=5.2.1
+pkgrel=1
+pkgdesc='Powerful build system for the JVM'
+url='https://gradle.org/'
+arch=('any')
+license=('Apache')
+depends=('java-environment' 'bash')
+makedepends=('git')
+source=(https://services.gradle.org/distributions/${pkgbase}-${pkgver}-all.zip
+${pkgbase}.sh)
+sha256sums=('9dc729f6dbfbbc4df1692665d301e028976dacac296a126f16148941a9cf012e'
+'7cdd70370b92b297f350d5ff69b915359bdc37b4feac839696b0ab5eaa7d7c2a')
+sha512sums=('e2a17072c10d27acbe4a0282dfdfed907ab5c57109668595feaec681ab1d4be017ac0f6090c2c2b64a057d71c1e244bb50f4047509d36c5930e894837a96171b'
+
'f38e9b26e22948366acf6580d6f38e2c88c3791c425b24922368fe1bc78c744fa516a03ffdbef02e3755859da620a6259997d4b4e5f97e3dc8cb49b74a694616')
+
+package_gradle() {
+  cd ${pkgbase}-${pkgver}
+
+  # install profile.d script
+  install -Dm 

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

2019-02-19 Thread Levente Polyak via arch-commits
Date: Tuesday, February 19, 2019 @ 22:34:47
  Author: anthraxx
Revision: 434643

upgpkg: gradle 5.2.1-1

Modified:
  gradle/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-19 21:10:04 UTC (rev 434642)
+++ PKGBUILD2019-02-19 22:34:47 UTC (rev 434643)
@@ -6,7 +6,7 @@
 # TODO: build from source
 pkgbase=gradle
 pkgname=('gradle' 'gradle-doc' 'gradle-src')
-pkgver=5.2
+pkgver=5.2.1
 pkgrel=1
 pkgdesc='Powerful build system for the JVM'
 url='https://gradle.org/'
@@ -16,9 +16,9 @@
 makedepends=('git')
 source=(https://services.gradle.org/distributions/${pkgbase}-${pkgver}-all.zip
 ${pkgbase}.sh)
-sha256sums=('55db797adf2705bb782655f012af7cc7724b14382881f60fb3f3eb4b645c02d6'
+sha256sums=('9dc729f6dbfbbc4df1692665d301e028976dacac296a126f16148941a9cf012e'
 '7cdd70370b92b297f350d5ff69b915359bdc37b4feac839696b0ab5eaa7d7c2a')
-sha512sums=('83815723903a5cc25d8fd91d7091b9696e33b0d7ab08bf938385521ae4f5f298dd5fa435281d808dfb3c8d6e97a4097de63956cc2f72a83d6d2a82a10c4cf104'
+sha512sums=('e2a17072c10d27acbe4a0282dfdfed907ab5c57109668595feaec681ab1d4be017ac0f6090c2c2b64a057d71c1e244bb50f4047509d36c5930e894837a96171b'
 
'f38e9b26e22948366acf6580d6f38e2c88c3791c425b24922368fe1bc78c744fa516a03ffdbef02e3755859da620a6259997d4b4e5f97e3dc8cb49b74a694616')
 
 package_gradle() {


[arch-commits] Commit in libkdepim/trunk (PKGBUILD libkdepim-akonadi-search.patch)

2019-02-19 Thread Antonio Rojas via arch-commits
Date: Tuesday, February 19, 2019 @ 21:19:48
  Author: arojas
Revision: 346565

Fix address autocompletion

Added:
  libkdepim/trunk/libkdepim-akonadi-search.patch
Modified:
  libkdepim/trunk/PKGBUILD

+
 PKGBUILD   |   11 ---
 libkdepim-akonadi-search.patch |   13 +
 2 files changed, 21 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-02-19 20:59:19 UTC (rev 346564)
+++ PKGBUILD2019-02-19 21:19:48 UTC (rev 346565)
@@ -2,7 +2,7 @@
 
 pkgname=libkdepim
 pkgver=18.12.2
-pkgrel=1
+pkgrel=2
 pkgdesc="Libraries for KDE PIM applications"
 arch=(x86_64)
 url="https://kontact.kde.org;
@@ -9,14 +9,19 @@
 license=(LGPL)
 depends=(akonadi-contacts akonadi-search kldap)
 makedepends=(extra-cmake-modules boost qt5-tools kdesignerplugin)
-source=("https://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
+source=("https://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig}
+libkdepim-akonadi-search.patch)
 sha256sums=('7945f57d1ca8e8e1235f7c5107162952e8fa704833a59a3046fd744acade9592'
-'SKIP')
+'SKIP'
+'afeddd2c0583b38f885f38205cbe161aac2dcc28063f1e6a8fd7f472d91de114')
 validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

   F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck 

 
 prepare() {
   mkdir -p build
+
+  cd $pkgname-$pkgver
+  patch -p1 -i ../libkdepim-akonadi-search.patch # Fix building with 
akonadi-search support
 }
 
 build() {

Added: libkdepim-akonadi-search.patch
===
--- libkdepim-akonadi-search.patch  (rev 0)
+++ libkdepim-akonadi-search.patch  2019-02-19 21:19:48 UTC (rev 346565)
@@ -0,0 +1,13 @@
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index 5473802..1b07eb9 100644
+--- a/CMakeLists.txt
 b/CMakeLists.txt
+@@ -57,7 +57,7 @@ find_package(KF5AkonadiSearch ${AKONADISEARCH_LIB_VERSION} 
CONFIG REQUIRED)
+ set_package_properties(KF5AkonadiSearch PROPERTIES DESCRIPTION "The Akonadi 
Search libraries" URL "http://www.kde.org; TYPE REQUIRED PURPOSE "Provides 
search capabilities in KMail and Akonadi")
+ endif()
+ 
+-set(DISABLE_AKONADI_SEARCH FORCE_DISABLE_AKONADI_SEARCH)
++set(DISABLE_AKONADI_SEARCH ${FORCE_DISABLE_AKONADI_SEARCH})
+ configure_file(config-akonadi-search.h.in 
${CMAKE_CURRENT_BINARY_DIR}/src/config-akonadi-search.h)
+ 
+ find_package(KF5DesignerPlugin ${KF5_MIN_VERSION} CONFIG)


[arch-commits] Commit in libkdepim/repos/extra-x86_64 (3 files)

2019-02-19 Thread Antonio Rojas via arch-commits
Date: Tuesday, February 19, 2019 @ 21:20:13
  Author: arojas
Revision: 346566

archrelease: copy trunk to extra-x86_64

Added:
  libkdepim/repos/extra-x86_64/PKGBUILD
(from rev 346565, libkdepim/trunk/PKGBUILD)
  libkdepim/repos/extra-x86_64/libkdepim-akonadi-search.patch
(from rev 346565, libkdepim/trunk/libkdepim-akonadi-search.patch)
Deleted:
  libkdepim/repos/extra-x86_64/PKGBUILD

+
 PKGBUILD   |   73 ---
 libkdepim-akonadi-search.patch |   13 ++
 2 files changed, 52 insertions(+), 34 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-19 21:19:48 UTC (rev 346565)
+++ PKGBUILD2019-02-19 21:20:13 UTC (rev 346566)
@@ -1,34 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=libkdepim
-pkgver=18.12.2
-pkgrel=1
-pkgdesc="Libraries for KDE PIM applications"
-arch=(x86_64)
-url="https://kontact.kde.org;
-license=(LGPL)
-depends=(akonadi-contacts akonadi-search kldap)
-makedepends=(extra-cmake-modules boost qt5-tools kdesignerplugin)
-source=("https://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('7945f57d1ca8e8e1235f7c5107162952e8fa704833a59a3046fd744acade9592'
-'SKIP')
-validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

-  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck 

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

Copied: libkdepim/repos/extra-x86_64/PKGBUILD (from rev 346565, 
libkdepim/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-19 21:20:13 UTC (rev 346566)
@@ -0,0 +1,39 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=libkdepim
+pkgver=18.12.2
+pkgrel=2
+pkgdesc="Libraries for KDE PIM applications"
+arch=(x86_64)
+url="https://kontact.kde.org;
+license=(LGPL)
+depends=(akonadi-contacts akonadi-search kldap)
+makedepends=(extra-cmake-modules boost qt5-tools kdesignerplugin)
+source=("https://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig}
+libkdepim-akonadi-search.patch)
+sha256sums=('7945f57d1ca8e8e1235f7c5107162952e8fa704833a59a3046fd744acade9592'
+'SKIP'
+'afeddd2c0583b38f885f38205cbe161aac2dcc28063f1e6a8fd7f472d91de114')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

+  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck 

+
+prepare() {
+  mkdir -p build
+
+  cd $pkgname-$pkgver
+  patch -p1 -i ../libkdepim-akonadi-search.patch # Fix building with 
akonadi-search support
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Copied: libkdepim/repos/extra-x86_64/libkdepim-akonadi-search.patch (from rev 
346565, libkdepim/trunk/libkdepim-akonadi-search.patch)
===
--- libkdepim-akonadi-search.patch  (rev 0)
+++ libkdepim-akonadi-search.patch  2019-02-19 21:20:13 UTC (rev 346566)
@@ -0,0 +1,13 @@
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index 5473802..1b07eb9 100644
+--- a/CMakeLists.txt
 b/CMakeLists.txt
+@@ -57,7 +57,7 @@ find_package(KF5AkonadiSearch ${AKONADISEARCH_LIB_VERSION} 
CONFIG REQUIRED)
+ set_package_properties(KF5AkonadiSearch PROPERTIES DESCRIPTION "The Akonadi 
Search libraries" URL "http://www.kde.org; TYPE REQUIRED PURPOSE "Provides 
search capabilities in KMail and Akonadi")
+ endif()
+ 
+-set(DISABLE_AKONADI_SEARCH FORCE_DISABLE_AKONADI_SEARCH)
++set(DISABLE_AKONADI_SEARCH ${FORCE_DISABLE_AKONADI_SEARCH})
+ configure_file(config-akonadi-search.h.in 
${CMAKE_CURRENT_BINARY_DIR}/src/config-akonadi-search.h)
+ 
+ find_package(KF5DesignerPlugin ${KF5_MIN_VERSION} CONFIG)


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

2019-02-19 Thread Felix Yan via arch-commits
Date: Tuesday, February 19, 2019 @ 21:10:04
  Author: felixonmars
Revision: 434642

archrelease: copy trunk to community-x86_64

Added:
  deepin-screensaver/repos/community-x86_64/PKGBUILD
(from rev 434641, deepin-screensaver/trunk/PKGBUILD)
  deepin-screensaver/repos/community-x86_64/symlink.patch
(from rev 434641, deepin-screensaver/trunk/symlink.patch)
Deleted:
  deepin-screensaver/repos/community-x86_64/PKGBUILD

---+
 PKGBUILD  |   56 +++-
 symlink.patch |   32 
 2 files changed, 63 insertions(+), 25 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-19 21:09:30 UTC (rev 434641)
+++ PKGBUILD2019-02-19 21:10:04 UTC (rev 434642)
@@ -1,25 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=deepin-screensaver
-pkgver=0.0.6
-pkgrel=1
-pkgdesc='Deepin screensaver viewer and tools'
-arch=('x86_64')
-url="https://github.com/linuxdeepin/deepin-screensaver;
-license=('GPL3')
-depends=('qt5-declarative' 'qt5-x11extras' 'libxss' 'xscreensaver')
-makedepends=('qt5-tools' 'python')
-groups=('deepin')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-screensaver/archive/$pkgver.tar.gz;)
-sha512sums=('ccfabd941c32bbbda300a3f66809941143459d246bcf25c0a83ff354046d9f34fd381b2e8d669bb5b2cdc5b2feda377c19c639c3a468727f88696e704093ddaa')
-
-build() {
-  cd deepin-screensaver-$pkgver
-  qmake-qt5 PREFIX=/usr
-  make
-}
-
-package() {
-  cd deepin-screensaver-$pkgver
-  make INSTALL_ROOT="$pkgdir" install
-}

Copied: deepin-screensaver/repos/community-x86_64/PKGBUILD (from rev 434641, 
deepin-screensaver/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-19 21:10:04 UTC (rev 434642)
@@ -0,0 +1,31 @@
+# Maintainer: Felix Yan 
+
+pkgname=deepin-screensaver
+pkgver=0.0.6
+pkgrel=2
+pkgdesc='Deepin screensaver viewer and tools'
+arch=('x86_64')
+url="https://github.com/linuxdeepin/deepin-screensaver;
+license=('GPL3')
+depends=('qt5-declarative' 'qt5-x11extras' 'libxss' 'xscreensaver')
+makedepends=('qt5-tools' 'python')
+groups=('deepin')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-screensaver/archive/$pkgver.tar.gz;
+symlink.patch)
+sha512sums=('ccfabd941c32bbbda300a3f66809941143459d246bcf25c0a83ff354046d9f34fd381b2e8d669bb5b2cdc5b2feda377c19c639c3a468727f88696e704093ddaa'
+
'5950d9dc061be8135a7b707c6b50ab2abb223e537fccca203a42cd79d1a8f1bfe78f86c4d1eedabc6d7563f68530a932434c5e7042e4571514f6af146c41656a')
+
+prepare() {
+  patch -d deepin-screensaver-$pkgver -p1 -i ../symlink.patch
+}
+
+build() {
+  cd deepin-screensaver-$pkgver
+  qmake-qt5 PREFIX=/usr
+  make
+}
+
+package() {
+  cd deepin-screensaver-$pkgver
+  make INSTALL_ROOT="$pkgdir" install
+}

Copied: deepin-screensaver/repos/community-x86_64/symlink.patch (from rev 
434641, deepin-screensaver/trunk/symlink.patch)
===
--- symlink.patch   (rev 0)
+++ symlink.patch   2019-02-19 21:10:04 UTC (rev 434642)
@@ -0,0 +1,32 @@
+commit cfefea3e716da1cb837b070e04c85587eb9a1d53
+Author: zccrs 
+Date:   Mon Feb 18 15:00:03 2019 +0800
+
+install symlinks instead of copied binaries from xscreensaver
+
+Change-Id: Id8f0ea8842968ffdfe548f4357cbf7dca2ca34ee
+
+diff --git a/debian/deepin-screensaver-xscreensaver-data.install 
b/debian/deepin-screensaver-xscreensaver-data.install
+index 418b701..0b5ea03 100644
+--- a/debian/deepin-screensaver-xscreensaver-data.install
 b/debian/deepin-screensaver-xscreensaver-data.install
+@@ -1,2 +1 @@
+ usr/lib/deepin-screensaver/modules/*
+-xscreensaver/extras/* usr/lib/deepin-screensaver/modules/
+diff --git a/xscreensaver/xscreensaver.pro b/xscreensaver/xscreensaver.pro
+index 55d36d6..163ab00 100644
+--- a/xscreensaver/xscreensaver.pro
 b/xscreensaver/xscreensaver.pro
+@@ -16,11 +16,9 @@ isEmpty(XSCREENSAVER_DATA_PATH) {
+ }
+ 
+ screensaver.path = $$MODULE_PATH
+-mkpath($$PWD/extras)
+ 
+ for(ss, screensaver_list) {
+-system(ln -s $$XSCREENSAVER_DATA_PATH/$$ss $$PWD/extras/$$ss)
+-screensaver.files += $$PWD/extras/$$ss
++screensaver.extra += ln -s $$XSCREENSAVER_DATA_PATH/$$ss 
$(INSTALL_ROOT)$$screensaver.path/$$ss;
+ }
+ 
+ INSTALLS += cover screensaver


[arch-commits] Commit in deepin-screensaver/trunk (PKGBUILD symlink.patch)

2019-02-19 Thread Felix Yan via arch-commits
Date: Tuesday, February 19, 2019 @ 21:09:30
  Author: felixonmars
Revision: 434641

upgpkg: deepin-screensaver 0.0.6-2

fix symlink

Added:
  deepin-screensaver/trunk/symlink.patch
Modified:
  deepin-screensaver/trunk/PKGBUILD

---+
 PKGBUILD  |   12 +---
 symlink.patch |   32 
 2 files changed, 41 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-02-19 20:59:33 UTC (rev 434640)
+++ PKGBUILD2019-02-19 21:09:30 UTC (rev 434641)
@@ -2,7 +2,7 @@
 
 pkgname=deepin-screensaver
 pkgver=0.0.6
-pkgrel=1
+pkgrel=2
 pkgdesc='Deepin screensaver viewer and tools'
 arch=('x86_64')
 url="https://github.com/linuxdeepin/deepin-screensaver;
@@ -10,9 +10,15 @@
 depends=('qt5-declarative' 'qt5-x11extras' 'libxss' 'xscreensaver')
 makedepends=('qt5-tools' 'python')
 groups=('deepin')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-screensaver/archive/$pkgver.tar.gz;)
-sha512sums=('ccfabd941c32bbbda300a3f66809941143459d246bcf25c0a83ff354046d9f34fd381b2e8d669bb5b2cdc5b2feda377c19c639c3a468727f88696e704093ddaa')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-screensaver/archive/$pkgver.tar.gz;
+symlink.patch)
+sha512sums=('ccfabd941c32bbbda300a3f66809941143459d246bcf25c0a83ff354046d9f34fd381b2e8d669bb5b2cdc5b2feda377c19c639c3a468727f88696e704093ddaa'
+
'5950d9dc061be8135a7b707c6b50ab2abb223e537fccca203a42cd79d1a8f1bfe78f86c4d1eedabc6d7563f68530a932434c5e7042e4571514f6af146c41656a')
 
+prepare() {
+  patch -d deepin-screensaver-$pkgver -p1 -i ../symlink.patch
+}
+
 build() {
   cd deepin-screensaver-$pkgver
   qmake-qt5 PREFIX=/usr

Added: symlink.patch
===
--- symlink.patch   (rev 0)
+++ symlink.patch   2019-02-19 21:09:30 UTC (rev 434641)
@@ -0,0 +1,32 @@
+commit cfefea3e716da1cb837b070e04c85587eb9a1d53
+Author: zccrs 
+Date:   Mon Feb 18 15:00:03 2019 +0800
+
+install symlinks instead of copied binaries from xscreensaver
+
+Change-Id: Id8f0ea8842968ffdfe548f4357cbf7dca2ca34ee
+
+diff --git a/debian/deepin-screensaver-xscreensaver-data.install 
b/debian/deepin-screensaver-xscreensaver-data.install
+index 418b701..0b5ea03 100644
+--- a/debian/deepin-screensaver-xscreensaver-data.install
 b/debian/deepin-screensaver-xscreensaver-data.install
+@@ -1,2 +1 @@
+ usr/lib/deepin-screensaver/modules/*
+-xscreensaver/extras/* usr/lib/deepin-screensaver/modules/
+diff --git a/xscreensaver/xscreensaver.pro b/xscreensaver/xscreensaver.pro
+index 55d36d6..163ab00 100644
+--- a/xscreensaver/xscreensaver.pro
 b/xscreensaver/xscreensaver.pro
+@@ -16,11 +16,9 @@ isEmpty(XSCREENSAVER_DATA_PATH) {
+ }
+ 
+ screensaver.path = $$MODULE_PATH
+-mkpath($$PWD/extras)
+ 
+ for(ss, screensaver_list) {
+-system(ln -s $$XSCREENSAVER_DATA_PATH/$$ss $$PWD/extras/$$ss)
+-screensaver.files += $$PWD/extras/$$ss
++screensaver.extra += ln -s $$XSCREENSAVER_DATA_PATH/$$ss 
$(INSTALL_ROOT)$$screensaver.path/$$ss;
+ }
+ 
+ INSTALLS += cover screensaver


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

2019-02-19 Thread Christian Hesse via arch-commits
Date: Tuesday, February 19, 2019 @ 20:59:00
  Author: eworm
Revision: 346563

upgpkg: openvpn 2.4.7-1

* new upstream release
* build from git
* build in build directory

Modified:
  openvpn/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-19 20:53:44 UTC (rev 346562)
+++ PKGBUILD2019-02-19 20:59:00 UTC (rev 346563)
@@ -1,7 +1,7 @@
 # Maintainer: Christian Hesse 
 
 pkgname=openvpn
-pkgver=2.4.6
+pkgver=2.4.7
 pkgrel=1
 pkgdesc='An easy-to-use, robust and highly configurable VPN (Virtual Private 
Network)'
 arch=('x86_64')
@@ -9,17 +9,24 @@
 depends=('openssl' 'lzo' 'iproute2' 'systemd-libs' 'pkcs11-helper')
 optdepends=('easy-rsa: easy CA and certificate handling'
 'pam: authenticate via PAM')
-makedepends=('systemd')
+makedepends=('git' 'systemd')
 license=('custom')
-validpgpkeys=('F554A3687412CFFEBDEFE0A312F5F7B42F2B01E7') # OpenVPN - Security 
Mailing List 
-source=("https://swupdate.openvpn.net/community/releases/openvpn-${pkgver}.tar.gz"{,.asc})
-sha256sums=('738dbd37fcf8eb9382c53628db22258c41ba9550165519d9200e8bebaef4cbe2'
-'SKIP')
+validpgpkeys=('F554A3687412CFFEBDEFE0A312F5F7B42F2B01E7'  # OpenVPN - Security 
Mailing List 
+  'B62E6A2B4E56570B7BDC6BE01D829EFECA562812') # Gert Doering 

+source=("git+git://github.com/OpenVPN/openvpn.git#tag=v${pkgver}?signed")
+sha256sums=('SKIP')
 
+prepare() {
+  cd "${srcdir}"/${pkgname}
+
+  autoreconf -i
+}
+
 build() {
-  cd "${srcdir}"/${pkgname}-${pkgver}
+  mkdir "${srcdir}"/build
+  cd "${srcdir}"/build
 
-  ./configure \
+  "${srcdir}"/${pkgname}/configure \
 --prefix=/usr \
 --sbindir=/usr/bin \
 --enable-iproute2 \
@@ -31,13 +38,13 @@
 }
 
 check() {
-  cd "${srcdir}"/${pkgname}-${pkgver}
+  cd "${srcdir}"/build
 
   make check
 }
 
 package() {
-  cd "${srcdir}"/${pkgname}-${pkgver}
+  cd "${srcdir}"/build
 
   # Install openvpn
   make DESTDIR="${pkgdir}" install
@@ -45,14 +52,16 @@
   # Create empty configuration directories
   install -d -m0750 -g 90 "${pkgdir}"/etc/openvpn/{client,server}
 
+  # Install license
+  install -d -m0755 "${pkgdir}"/usr/share/licenses/openvpn/
+  ln -sf /usr/share/doc/openvpn/{COPYING,COPYRIGHT.GPL} 
"${pkgdir}"/usr/share/licenses/openvpn/
+
+  cd "${srcdir}"/${pkgname}
+
   # Install examples
   install -d -m0755 "${pkgdir}"/usr/share/openvpn
   cp -r sample/sample-config-files "${pkgdir}"/usr/share/openvpn/examples
 
-  # Install license
-  install -d -m0755 "${pkgdir}"/usr/share/licenses/openvpn/
-  ln -sf /usr/share/doc/openvpn/{COPYING,COPYRIGHT.GPL} 
"${pkgdir}"/usr/share/licenses/openvpn/
-
   # Install contrib
   for FILE in $(find contrib -type f); do
 case "$(file --brief --mime-type "${FILE}")" in


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

2019-02-19 Thread Christian Hesse via arch-commits
Date: Tuesday, February 19, 2019 @ 20:59:19
  Author: eworm
Revision: 346564

archrelease: copy trunk to testing-x86_64

Added:
  openvpn/repos/testing-x86_64/
  openvpn/repos/testing-x86_64/PKGBUILD
(from rev 346563, openvpn/trunk/PKGBUILD)

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

Copied: openvpn/repos/testing-x86_64/PKGBUILD (from rev 346563, 
openvpn/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-02-19 20:59:19 UTC (rev 346564)
@@ -0,0 +1,73 @@
+# Maintainer: Christian Hesse 
+
+pkgname=openvpn
+pkgver=2.4.7
+pkgrel=1
+pkgdesc='An easy-to-use, robust and highly configurable VPN (Virtual Private 
Network)'
+arch=('x86_64')
+url='https://openvpn.net/index.php/open-source.html'
+depends=('openssl' 'lzo' 'iproute2' 'systemd-libs' 'pkcs11-helper')
+optdepends=('easy-rsa: easy CA and certificate handling'
+'pam: authenticate via PAM')
+makedepends=('git' 'systemd')
+license=('custom')
+validpgpkeys=('F554A3687412CFFEBDEFE0A312F5F7B42F2B01E7'  # OpenVPN - Security 
Mailing List 
+  'B62E6A2B4E56570B7BDC6BE01D829EFECA562812') # Gert Doering 

+source=("git+git://github.com/OpenVPN/openvpn.git#tag=v${pkgver}?signed")
+sha256sums=('SKIP')
+
+prepare() {
+  cd "${srcdir}"/${pkgname}
+
+  autoreconf -i
+}
+
+build() {
+  mkdir "${srcdir}"/build
+  cd "${srcdir}"/build
+
+  "${srcdir}"/${pkgname}/configure \
+--prefix=/usr \
+--sbindir=/usr/bin \
+--enable-iproute2 \
+--enable-pkcs11 \
+--enable-plugins \
+--enable-systemd \
+--enable-x509-alt-username
+  make
+}
+
+check() {
+  cd "${srcdir}"/build
+
+  make check
+}
+
+package() {
+  cd "${srcdir}"/build
+
+  # Install openvpn
+  make DESTDIR="${pkgdir}" install
+
+  # Create empty configuration directories
+  install -d -m0750 -g 90 "${pkgdir}"/etc/openvpn/{client,server}
+
+  # Install license
+  install -d -m0755 "${pkgdir}"/usr/share/licenses/openvpn/
+  ln -sf /usr/share/doc/openvpn/{COPYING,COPYRIGHT.GPL} 
"${pkgdir}"/usr/share/licenses/openvpn/
+
+  cd "${srcdir}"/${pkgname}
+
+  # Install examples
+  install -d -m0755 "${pkgdir}"/usr/share/openvpn
+  cp -r sample/sample-config-files "${pkgdir}"/usr/share/openvpn/examples
+
+  # Install contrib
+  for FILE in $(find contrib -type f); do
+case "$(file --brief --mime-type "${FILE}")" in
+  "text/x-shellscript") install -D -m0755 "${FILE}" 
"${pkgdir}/usr/share/openvpn/${FILE}" ;;
+  *) install -D -m0644 "${FILE}" "${pkgdir}/usr/share/openvpn/${FILE}" ;;
+esac
+  done
+}
+


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

2019-02-19 Thread Maxime Gauduin via arch-commits
Date: Tuesday, February 19, 2019 @ 20:59:24
  Author: alucryd
Revision: 434639

upgpkg: granite 5.2.3-1

Modified:
  granite/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-19 20:46:19 UTC (rev 434638)
+++ PKGBUILD2019-02-19 20:59:24 UTC (rev 434639)
@@ -2,38 +2,39 @@
 # Contributor: Ner0 
 
 pkgname=granite
-pkgver=5.2.2
+pkgver=5.2.3
 pkgrel=1
 pkgdesc='Library that extends Gtk+'
-arch=('x86_64')
-url='https://github.com/elementary/granite'
-license=('LGPL3')
-groups=('pantheon')
-depends=('cairo' 'gdk-pixbuf2' 'glib2' 'gtk3' 'libgee' 'pango')
-makedepends=('cmake' 'git' 'gobject-introspection' 'vala')
-provides=('libgranite.so')
-source=("git+https://github.com/elementary/granite.git#tag=${pkgver};)
-sha256sums=('SKIP')
+arch=(x86_64)
+url=https://github.com/elementary/granite
+license=(LGPL3)
+groups=(pantheon)
+depends=(
+  cairo
+  gdk-pixbuf2
+  glib2
+  gtk3
+  libgee
+  pango
+)
+makedepends=(
+  git
+  gobject-introspection
+  meson
+  vala
+)
+provides=(libgranite.so)
+source=(git+https://github.com/elementary/granite.git#tag=${pkgver})
+sha256sums=(SKIP)
 
-prepare() {
-  if [[ -d build ]]; then
-rm -rf build
-  fi
-  mkdir build
-}
-
 build() {
-  cd build
-
-  cmake ../granite \
--DCMAKE_BUILD_TYPE='Release' \
--DCMAKE_INSTALL_PREFIX='/usr' \
--DCMAKE_INSTALL_LIBDIR='/usr/lib'
-  make
+  arch-meson granite build \
+-D b_pie=false
+  ninja -C build
 }
 
 package() {
-  make DESTDIR="${pkgdir}" -C build install
+  DESTDIR="${pkgdir}" ninja -C build install
 }
 
 # vim: ts=2 sw=2 et:


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

2019-02-19 Thread Maxime Gauduin via arch-commits
Date: Tuesday, February 19, 2019 @ 20:59:33
  Author: alucryd
Revision: 434640

archrelease: copy trunk to community-x86_64

Added:
  granite/repos/community-x86_64/PKGBUILD
(from rev 434639, granite/trunk/PKGBUILD)
Deleted:
  granite/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-19 20:59:24 UTC (rev 434639)
+++ PKGBUILD2019-02-19 20:59:33 UTC (rev 434640)
@@ -1,39 +0,0 @@
-# Maintainer: Maxime Gauduin 
-# Contributor: Ner0 
-
-pkgname=granite
-pkgver=5.2.2
-pkgrel=1
-pkgdesc='Library that extends Gtk+'
-arch=('x86_64')
-url='https://github.com/elementary/granite'
-license=('LGPL3')
-groups=('pantheon')
-depends=('cairo' 'gdk-pixbuf2' 'glib2' 'gtk3' 'libgee' 'pango')
-makedepends=('cmake' 'git' 'gobject-introspection' 'vala')
-provides=('libgranite.so')
-source=("git+https://github.com/elementary/granite.git#tag=${pkgver};)
-sha256sums=('SKIP')
-
-prepare() {
-  if [[ -d build ]]; then
-rm -rf build
-  fi
-  mkdir build
-}
-
-build() {
-  cd build
-
-  cmake ../granite \
--DCMAKE_BUILD_TYPE='Release' \
--DCMAKE_INSTALL_PREFIX='/usr' \
--DCMAKE_INSTALL_LIBDIR='/usr/lib'
-  make
-}
-
-package() {
-  make DESTDIR="${pkgdir}" -C build install
-}
-
-# vim: ts=2 sw=2 et:

Copied: granite/repos/community-x86_64/PKGBUILD (from rev 434639, 
granite/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-19 20:59:33 UTC (rev 434640)
@@ -0,0 +1,40 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: Ner0 
+
+pkgname=granite
+pkgver=5.2.3
+pkgrel=1
+pkgdesc='Library that extends Gtk+'
+arch=(x86_64)
+url=https://github.com/elementary/granite
+license=(LGPL3)
+groups=(pantheon)
+depends=(
+  cairo
+  gdk-pixbuf2
+  glib2
+  gtk3
+  libgee
+  pango
+)
+makedepends=(
+  git
+  gobject-introspection
+  meson
+  vala
+)
+provides=(libgranite.so)
+source=(git+https://github.com/elementary/granite.git#tag=${pkgver})
+sha256sums=(SKIP)
+
+build() {
+  arch-meson granite build \
+-D b_pie=false
+  ninja -C build
+}
+
+package() {
+  DESTDIR="${pkgdir}" ninja -C build install
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in irqbalance/repos/extra-x86_64 (4 files)

2019-02-19 Thread Jelle van der Waa via arch-commits
Date: Tuesday, February 19, 2019 @ 20:53:44
  Author: jelle
Revision: 346562

archrelease: copy trunk to extra-x86_64

Added:
  irqbalance/repos/extra-x86_64/PKGBUILD
(from rev 346561, irqbalance/trunk/PKGBUILD)
  irqbalance/repos/extra-x86_64/config.patch
(from rev 346561, irqbalance/trunk/config.patch)
Deleted:
  irqbalance/repos/extra-x86_64/PKGBUILD
  irqbalance/repos/extra-x86_64/config.patch

--+
 PKGBUILD |   80 -
 config.patch |   43 +-
 2 files changed, 54 insertions(+), 69 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-19 20:53:29 UTC (rev 346561)
+++ PKGBUILD2019-02-19 20:53:44 UTC (rev 346562)
@@ -1,40 +0,0 @@
-# Maintainer: Dan McGee 
-# Contributor: Martin Striz 
-
-pkgname=irqbalance
-pkgver=1.3.0
-pkgrel=2
-pkgdesc="IRQ balancing daemon for SMP systems"
-arch=('x86_64')
-url="https://github.com/Irqbalance/irqbalance;
-license=('GPL')
-backup=('etc/irqbalance.env')
-depends=('glib2' 'numactl' 'libcap-ng' 'libsystemd')
-makedepends=('systemd')
-source=($pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz
-config.patch)
-sha1sums=('2797747812d65fcfa83d7e3610857e6326df933a'
-  'f5750dd9b53ef77c3dcb46ea70622c6c4d462888')
-
-prepare() {
-  cd "$srcdir/$pkgname-$pkgver"
-  patch -p1 < ../config.patch
-}
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  ./autogen.sh
-  ./configure --prefix=/usr --sbindir=/usr/bin --with-systemd
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make install DESTDIR="$pkgdir"
-
-  install -D -m644 misc/irqbalance.service 
"$pkgdir"/usr/lib/systemd/system/irqbalance.service
-  install -D -m644 misc/irqbalance.env "$pkgdir"/etc/irqbalance.env
-
-  # Disable udev rule until we clarify it FS#56785
-  # install -D -m644 misc/90-irqbalance.rules 
"$pkgdir"/usr/lib/udev/rules.d/90-irqbalance.rules
-}

Copied: irqbalance/repos/extra-x86_64/PKGBUILD (from rev 346561, 
irqbalance/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-19 20:53:44 UTC (rev 346562)
@@ -0,0 +1,40 @@
+# Maintainer: Dan McGee 
+# Contributor: Martin Striz 
+
+pkgname=irqbalance
+pkgver=1.5.0
+pkgrel=1
+pkgdesc="IRQ balancing daemon for SMP systems"
+arch=('x86_64')
+url="https://github.com/Irqbalance/irqbalance;
+license=('GPL')
+backup=('etc/irqbalance.env')
+depends=('glib2' 'numactl' 'libcap-ng' 'systemd-libs')
+makedepends=('systemd')
+source=($pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz
+config.patch)
+sha1sums=('bb8c786b1aae73679016ae07c7dbc488be64'
+  '32e5650f37c64531e69f477959b0c3598acc2825')
+
+prepare() {
+  cd "$srcdir/$pkgname-$pkgver"
+  patch -p1 < ../config.patch
+}
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  ./autogen.sh
+  ./configure --prefix=/usr --sbindir=/usr/bin --with-systemd
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make install DESTDIR="$pkgdir"
+
+  install -D -m644 misc/irqbalance.service 
"$pkgdir"/usr/lib/systemd/system/irqbalance.service
+  install -D -m644 misc/irqbalance.env "$pkgdir"/etc/irqbalance.env
+
+  # Disable udev rule until we clarify it FS#56785
+  # install -D -m644 misc/90-irqbalance.rules 
"$pkgdir"/usr/lib/udev/rules.d/90-irqbalance.rules
+}

Deleted: config.patch
===
--- config.patch2019-02-19 20:53:29 UTC (rev 346561)
+++ config.patch2019-02-19 20:53:44 UTC (rev 346562)
@@ -1,29 +0,0 @@
-diff --git a/configure.ac b/configure.ac
-index 38a1bee..5e9cc03 100644
 a/configure.ac
-+++ b/configure.ac
-@@ -53,9 +53,6 @@ AC_ARG_WITH([systemd],
- AS_IF(
-   [test "x$with_systemd" = xyes], [
- PKG_CHECK_MODULES([SYSTEMD], [libsystemd], [journal_lib=yes], 
[journal_lib=no])
--AS_IF([test "x$journal_lib" != "xyes"], [
--  PKG_CHECK_MODULES([SYSTEMD], [libsystemd-journal], [journal_lib=yes])
--])
- AC_DEFINE(HAVE_LIBSYSTEMD, 1, [systemd support])
- AC_CHECK_LIB([systemd], [sd_journal_print_with_location])
- AC_CHECK_LIB([systemd], [sd_journal_print])
-diff --git a/misc/irqbalance.service b/misc/irqbalance.service
-index e9a5527..a8451d9 100644
 a/misc/irqbalance.service
-+++ b/misc/irqbalance.service
-@@ -3,8 +3,8 @@ Description=irqbalance daemon
- ConditionVirtualization=!container
- 
- [Service]
--EnvironmentFile=/path/to/irqbalance.env
--ExecStart=/usr/sbin/irqbalance --foreground $IRQBALANCE_ARGS
-+EnvironmentFile=/etc/irqbalance.env
-+ExecStart=/usr/bin/irqbalance --foreground $IRQBALANCE_ARGS
- 
- [Install]
- WantedBy=multi-user.target

Copied: irqbalance/repos/extra-x86_64/config.patch (from rev 346561, 
irqbalance/trunk/config.patch)
===
--- config.patch(rev 0)
+++ config.patch  

[arch-commits] Commit in irqbalance/trunk (PKGBUILD config.patch)

2019-02-19 Thread Jelle van der Waa via arch-commits
Date: Tuesday, February 19, 2019 @ 20:53:29
  Author: jelle
Revision: 346561

upgpkg: irqbalance 1.5.0-1

Upstream update.

Modified:
  irqbalance/trunk/PKGBUILD
  irqbalance/trunk/config.patch

--+
 PKGBUILD |8 
 config.patch |   29 +++--
 2 files changed, 11 insertions(+), 26 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-02-19 20:29:06 UTC (rev 346560)
+++ PKGBUILD2019-02-19 20:53:29 UTC (rev 346561)
@@ -2,8 +2,8 @@
 # Contributor: Martin Striz 
 
 pkgname=irqbalance
-pkgver=1.3.0
-pkgrel=2
+pkgver=1.5.0
+pkgrel=1
 pkgdesc="IRQ balancing daemon for SMP systems"
 arch=('x86_64')
 url="https://github.com/Irqbalance/irqbalance;
@@ -13,8 +13,8 @@
 makedepends=('systemd')
 source=($pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz
 config.patch)
-sha1sums=('2797747812d65fcfa83d7e3610857e6326df933a'
-  'f5750dd9b53ef77c3dcb46ea70622c6c4d462888')
+sha1sums=('bb8c786b1aae73679016ae07c7dbc488be64'
+  '32e5650f37c64531e69f477959b0c3598acc2825')
 
 prepare() {
   cd "$srcdir/$pkgname-$pkgver"

Modified: config.patch
===
--- config.patch2019-02-19 20:29:06 UTC (rev 346560)
+++ config.patch2019-02-19 20:53:29 UTC (rev 346561)
@@ -1,22 +1,7 @@
-diff --git a/configure.ac b/configure.ac
-index 38a1bee..5e9cc03 100644
 a/configure.ac
-+++ b/configure.ac
-@@ -53,9 +53,6 @@ AC_ARG_WITH([systemd],
- AS_IF(
-   [test "x$with_systemd" = xyes], [
- PKG_CHECK_MODULES([SYSTEMD], [libsystemd], [journal_lib=yes], 
[journal_lib=no])
--AS_IF([test "x$journal_lib" != "xyes"], [
--  PKG_CHECK_MODULES([SYSTEMD], [libsystemd-journal], [journal_lib=yes])
--])
- AC_DEFINE(HAVE_LIBSYSTEMD, 1, [systemd support])
- AC_CHECK_LIB([systemd], [sd_journal_print_with_location])
- AC_CHECK_LIB([systemd], [sd_journal_print])
-diff --git a/misc/irqbalance.service b/misc/irqbalance.service
-index e9a5527..a8451d9 100644
 a/misc/irqbalance.service
-+++ b/misc/irqbalance.service
-@@ -3,8 +3,8 @@ Description=irqbalance daemon
+diff -aur irqbalance-1.5.0/misc/irqbalance.service 
irqbalance-1.5.0.new/misc/irqbalance.service
+--- irqbalance-1.5.0/misc/irqbalance.service   2018-10-27 11:36:59.0 
+0200
 irqbalance-1.5.0.new/misc/irqbalance.service   2019-02-19 
21:49:12.093453013 +0100
+@@ -5,8 +5,8 @@
  ConditionVirtualization=!container
  
  [Service]
@@ -24,6 +9,6 @@
 -ExecStart=/usr/sbin/irqbalance --foreground $IRQBALANCE_ARGS
 +EnvironmentFile=/etc/irqbalance.env
 +ExecStart=/usr/bin/irqbalance --foreground $IRQBALANCE_ARGS
- 
- [Install]
- WantedBy=multi-user.target
+ CapabilityBoundingSet=
+ NoNewPrivileges=yes
+ ReadOnlyPaths=/


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

2019-02-19 Thread Maxime Gauduin via arch-commits
Date: Tuesday, February 19, 2019 @ 20:46:09
  Author: alucryd
Revision: 434637

upgpkg: python-arrow 0.13.1-1

Modified:
  python-arrow/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-19 20:45:27 UTC (rev 434636)
+++ PKGBUILD2019-02-19 20:46:09 UTC (rev 434637)
@@ -2,28 +2,45 @@
 # Contributor: Tatsuyuki Ishi 
 
 pkgbase=python-arrow
-pkgname=('python-arrow' 'python2-arrow')
-pkgver=0.12.1
-pkgrel=4
+pkgname=(
+  python-arrow
+  python2-arrow
+)
+pkgver=0.13.1
+pkgrel=1
 pkgdesc='Better dates and times for Python'
-arch=('any')
-url="https://arrow.readthedocs.io;
-license=('Apache')
-makedepends=('python-dateutil' 'python-setuptools'
- 'python2-dateutil' 'python2-setuptools' 
'python2-backports.functools_lru_cache')
-checkdepends=('python-chai' 'python-nose' 'python-simplejson'
-  'python2-chai' 'python2-nose' 'python2-simplejson')
-source=("https://files.pythonhosted.org/packages/source/a/arrow/arrow-${pkgver}.tar.gz;)
-sha256sums=('a558d3b7b6ce7ffc74206a86c147052de23d3d4ef0e17c210dd478c53575c4cd')
+arch=(any)
+url=https://arrow.readthedocs.io
+license=(Apache)
+makedepends=(
+  git
+  python-dateutil
+  python-setuptools
+  python2-dateutil
+  python2-setuptools
+  python2-backports.functools_lru_cache
+)
+checkdepends=(
+  python-chai
+  python-nose
+  python-pytz
+  python-simplejson
+  python2-chai
+  python2-nose
+  python2-pytz
+  python2-simplejson
+)
+source=(git+https://github.com/crsmithdev/arrow.git#tag=${pkgver})
+sha256sums=(SKIP)
 
 prepare() {
-  cp -r {,python-}arrow-${pkgver}
-  mv {,python2-}arrow-${pkgver}
+  cp -r {,python-}arrow
+  mv {,python2-}arrow
 }
 
 build() {
   for py in python{,2}; do
-pushd ${py}-arrow-${pkgver}
+pushd ${py}-arrow
 ${py} setup.py build
 popd
   done
@@ -30,23 +47,30 @@
 }
 
 check() {
-  cd python-arrow-${pkgver}
+  cd python-arrow
   nosetests
   nosetests2
 }
 
 package_python-arrow() {
-  depends=('python' 'python-dateutil')
+  depends=(
+python
+python-dateutil
+  )
 
-  cd python-arrow-${pkgver}
+  cd python-arrow
 
   python setup.py install --skip-build --root="${pkgdir}" --optimize='1' 
--skip-build
 }
 
 package_python2-arrow() {
-  depends=('python2' 'python2-backports.functools_lru_cache' 
'python2-dateutil')
+  depends=(
+python2
+python2-backports.functools_lru_cache
+python2-dateutil
+  )
 
-  cd python2-arrow-${pkgver}
+  cd python2-arrow
 
   python2 setup.py install --skip-build --root="${pkgdir}" --optimize='1' 
--skip-build
 }


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

2019-02-19 Thread Maxime Gauduin via arch-commits
Date: Tuesday, February 19, 2019 @ 20:46:19
  Author: alucryd
Revision: 434638

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-19 20:46:09 UTC (rev 434637)
+++ PKGBUILD2019-02-19 20:46:19 UTC (rev 434638)
@@ -1,54 +0,0 @@
-# Maintainer: Maxime Gauduin 
-# Contributor: Tatsuyuki Ishi 
-
-pkgbase=python-arrow
-pkgname=('python-arrow' 'python2-arrow')
-pkgver=0.12.1
-pkgrel=4
-pkgdesc='Better dates and times for Python'
-arch=('any')
-url="https://arrow.readthedocs.io;
-license=('Apache')
-makedepends=('python-dateutil' 'python-setuptools'
- 'python2-dateutil' 'python2-setuptools' 
'python2-backports.functools_lru_cache')
-checkdepends=('python-chai' 'python-nose' 'python-simplejson'
-  'python2-chai' 'python2-nose' 'python2-simplejson')
-source=("https://files.pythonhosted.org/packages/source/a/arrow/arrow-${pkgver}.tar.gz;)
-sha256sums=('a558d3b7b6ce7ffc74206a86c147052de23d3d4ef0e17c210dd478c53575c4cd')
-
-prepare() {
-  cp -r {,python-}arrow-${pkgver}
-  mv {,python2-}arrow-${pkgver}
-}
-
-build() {
-  for py in python{,2}; do
-pushd ${py}-arrow-${pkgver}
-${py} setup.py build
-popd
-  done
-}
-
-check() {
-  cd python-arrow-${pkgver}
-  nosetests
-  nosetests2
-}
-
-package_python-arrow() {
-  depends=('python' 'python-dateutil')
-
-  cd python-arrow-${pkgver}
-
-  python setup.py install --skip-build --root="${pkgdir}" --optimize='1' 
--skip-build
-}
-
-package_python2-arrow() {
-  depends=('python2' 'python2-backports.functools_lru_cache' 
'python2-dateutil')
-
-  cd python2-arrow-${pkgver}
-
-  python2 setup.py install --skip-build --root="${pkgdir}" --optimize='1' 
--skip-build
-}
-
-# vim: ts=2 sw=2 et:

Copied: python-arrow/repos/community-any/PKGBUILD (from rev 434637, 
python-arrow/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-19 20:46:19 UTC (rev 434638)
@@ -0,0 +1,78 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: Tatsuyuki Ishi 
+
+pkgbase=python-arrow
+pkgname=(
+  python-arrow
+  python2-arrow
+)
+pkgver=0.13.1
+pkgrel=1
+pkgdesc='Better dates and times for Python'
+arch=(any)
+url=https://arrow.readthedocs.io
+license=(Apache)
+makedepends=(
+  git
+  python-dateutil
+  python-setuptools
+  python2-dateutil
+  python2-setuptools
+  python2-backports.functools_lru_cache
+)
+checkdepends=(
+  python-chai
+  python-nose
+  python-pytz
+  python-simplejson
+  python2-chai
+  python2-nose
+  python2-pytz
+  python2-simplejson
+)
+source=(git+https://github.com/crsmithdev/arrow.git#tag=${pkgver})
+sha256sums=(SKIP)
+
+prepare() {
+  cp -r {,python-}arrow
+  mv {,python2-}arrow
+}
+
+build() {
+  for py in python{,2}; do
+pushd ${py}-arrow
+${py} setup.py build
+popd
+  done
+}
+
+check() {
+  cd python-arrow
+  nosetests
+  nosetests2
+}
+
+package_python-arrow() {
+  depends=(
+python
+python-dateutil
+  )
+
+  cd python-arrow
+
+  python setup.py install --skip-build --root="${pkgdir}" --optimize='1' 
--skip-build
+}
+
+package_python2-arrow() {
+  depends=(
+python2
+python2-backports.functools_lru_cache
+python2-dateutil
+  )
+
+  cd python2-arrow
+
+  python2 setup.py install --skip-build --root="${pkgdir}" --optimize='1' 
--skip-build
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in firefox-developer-edition-i18n/repos/community-any (2 files)

2019-02-19 Thread Andrew Crerar via arch-commits
Date: Tuesday, February 19, 2019 @ 20:45:27
  Author: andrewsc
Revision: 434636

archrelease: copy trunk to community-any

Added:
  firefox-developer-edition-i18n/repos/community-any/PKGBUILD
(from rev 434633, firefox-developer-edition-i18n/trunk/PKGBUILD)
Deleted:
  firefox-developer-edition-i18n/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-19 20:43:29 UTC (rev 434635)
+++ PKGBUILD2019-02-19 20:45:27 UTC (rev 434636)
@@ -1,232 +0,0 @@
-# Maintainer: Andrew Crerar 
-
-pkgbase=firefox-developer-edition-i18n
-pkgver=66.0b8
-pkgrel=1
-pkgdesc="Language pack for Firefox Developer Edition"
-arch=('any')
-url="https://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"'
-  'ia "Interlingua"'
-  '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)"'
-  'ne-NP  "Nepali"'
-  '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://archive.mozilla.org/pub/devedition/releases/$pkgver/linux-x86_64/xpi
-
-for _lang in "${_languages[@]}"; do
-  _locale=${_lang%% *}
-  _pkgname=firefox-developer-edition-i18n-${_locale,,}
-
-  pkgname+=($_pkgname)
-  
source+=("firefox-developer-edition-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 Developer Edition"
-  depends=("firefox-developer-edition>=$pkgver")
-  install -Dm644 firefox-developer-edition-i18n-$pkgver-$1.xpi \
-
"$pkgdir/usr/lib/firefox-developer-edition/browser/extensions/langpack-$1...@devedition.mozilla.org.xpi"
-}
-
-sha512sums=('96744b9d4f273032a7b59ea291ac2145e55168b33491cd8c7233fdbd1e40e1174530aa572b064004ce9e14d73a9d5b70f4f63612a49b7e0e8b102ab8a76658d5'
-
'9632d52cfd705b300ea53c22ace198642a0526577a148fa6d06f1c50e5988b889a08cae68a89361edb90e55699ddfe87c22aaec8e1d6083f2eeaf4cf08252c46'
-
'91a7fd8eaf1da5ce76d691e6611a7cace4658123ac55c7f957468ab4207e182d1406d6583ecf00d6c7b144d762bbc93d770e86b38526e4b245dc773042609e55'
-
'c8b92bb28ffe2ff87088ecb03ce0081e7826279838dc7802547e9838fb900d23d19595289e02dc7828ec5ad158274318f7d060428560f4f1f2972a5677ff5ae1'
-
'f5e8ad47a437dae241e5277d834f5be6eea87847258210360e0d51de5ece12be200d351fb487ce60314560efa61d1c358cba7886f2cb88f97589e04c2d5ea07c'
-
'317e668c853aa5207b13b77cc71e71c62039315a584f6923810ca2f79678c0d28a75d67b397114cb4433e03ad1c9f0e9bbf4787971014f08cdf46452e82c3ace'
-

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

2019-02-19 Thread Felix Yan via arch-commits
Date: Tuesday, February 19, 2019 @ 20:43:29
  Author: felixonmars
Revision: 434635

archrelease: copy trunk to community-x86_64

Added:
  zbar/repos/community-x86_64/PKGBUILD
(from rev 434634, zbar/trunk/PKGBUILD)
  zbar/repos/community-x86_64/imagemagick7.patch
(from rev 434634, zbar/trunk/imagemagick7.patch)
Deleted:
  zbar/repos/community-x86_64/PKGBUILD
  zbar/repos/community-x86_64/imagemagick7.patch

+
 PKGBUILD   |  205 +--
 imagemagick7.patch |   44 +-
 2 files changed, 124 insertions(+), 125 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-19 20:43:11 UTC (rev 434634)
+++ PKGBUILD2019-02-19 20:43:29 UTC (rev 434635)
@@ -1,103 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Marti Raudsepp 
-# Contributor: Radu Andries 
-# Contributor: Andy Weidenbaum 
-
-pkgbase=zbar
-pkgname=(zbar zbar-gtk zbar-qt python2-zbar)
-pkgver=0.20
-pkgrel=3
-pkgdesc="Application and library for reading bar codes from various sources"
-arch=('x86_64')
-url="https://github.com/procxx/zbar;
-license=('LGPL')
-makedepends=('libmagick' 'libxv' 'v4l-utils' 'qt5-x11extras' 'pygtk' 'python' 
'xmlto' 'docbook-xsl')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/procxx/zbar/archive/$pkgver.tar.gz;
-imagemagick7.patch)
-sha512sums=('b013dc5f72f910e8e0dc73de1705684f76e5cb5b2026d48d3e149d3e8b46afdf273d06f32738c588c272218e95b5cd39d3c0b8be4eb9be17553504a13b11c144'
-
'43987414a6432b9e7da329f5a416f389d29bfc3417a6edc65a46b2677ade7dbb8c150df90c8b42464a6cb17c4732509fb8d3672387dafe9fd17a5def78a5ef63')
-
-prepare() {
-  cd zbar-$pkgver
-  patch -p1 -i ../imagemagick7.patch
-  autoreconf -vfi
-}
-
-build() {
-  cd zbar-$pkgver
-  PKG_CONFIG_PATH="/usr/lib/imagemagick6/pkgconfig" \
-  PYTHON="/usr/bin/python2" \
-  ./configure --prefix=/usr --with-qt --with-gtk CFLAGS="$CFLAGS -DNDEBUG"
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-package_zbar() {
-  depends=('libmagick' 'libsm' 'libxv' 'v4l-utils')
-
-  cd zbar-$pkgver
-  make DESTDIR="$pkgdir" install
-
-  rm -r "$pkgdir"/usr/lib/libzbar{gtk,qt}.so* \
-"$pkgdir"/usr/lib/*.a \
-"$pkgdir"/usr/include/zbar/zbargtk.h \
-"$pkgdir"/usr/include/zbar/QZBar*.h \
-"$pkgdir"/usr/lib/pkgconfig/zbar-{gtk,qt}.pc \
-"$pkgdir"/usr/lib/python2.7 \
-"$pkgdir"/usr/bin/zbarcam-*
-}
-
-package_zbar-gtk() {
-  depends=('zbar' 'gtk2')
-
-  cd zbar-$pkgver
-  make DESTDIR="$pkgdir" install
-
-  mv "$pkgdir"/usr/include/zbar/zbargtk.h ./
-
-  rm -r "$pkgdir"/usr/lib/libzbar{,qt}.so* \
-"$pkgdir"/usr/lib/*.a \
-"$pkgdir"/usr/include/zbar/*.h \
-"$pkgdir"/usr/include/zbar.h \
-"$pkgdir"/usr/lib/pkgconfig/zbar{,-qt}.pc \
-"$pkgdir"/usr/lib/python2.7 \
-"$pkgdir"/usr/share \
-"$pkgdir"/usr/bin/{zbarimg,zbarcam,zbarcam-qt}
-
-  mv ./zbargtk.h "$pkgdir"/usr/include/zbar/
-}
-
-package_zbar-qt() {
-  depends=('zbar' 'qt5-x11extras')
-
-  cd zbar-$pkgver
-  make DESTDIR="$pkgdir" install
-
-  mv "$pkgdir"/usr/include/zbar/QZBar*.h ./
-
-  rm -r "$pkgdir"/usr/lib/libzbar{,gtk}.so* \
-"$pkgdir"/usr/lib/*.a \
-"$pkgdir"/usr/include/zbar/*.h \
-"$pkgdir"/usr/include/zbar.h \
-"$pkgdir"/usr/lib/pkgconfig/zbar{,-gtk}.pc \
-"$pkgdir"/usr/lib/python2.7 \
-"$pkgdir"/usr/share \
-"$pkgdir"/usr/bin/{zbarimg,zbarcam,zbarcam-gtk}
-
-  mv ./QZBar*.h "$pkgdir"/usr/include/zbar/
-}
-
-package_python2-zbar() {
-  depends=('zbar-gtk' 'pygtk')
-
-  cd zbar-$pkgver
-  make DESTDIR="$pkgdir" install
-
-  rm -r "$pkgdir"/usr/lib/*.so* \
-"$pkgdir"/usr/include \
-"$pkgdir"/usr/lib/pkgconfig \
-"$pkgdir"/usr/{bin,share}
-}
-
-# vim:set ts=2 sw=2 et:

Copied: zbar/repos/community-x86_64/PKGBUILD (from rev 434634, 
zbar/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-19 20:43:29 UTC (rev 434635)
@@ -0,0 +1,102 @@
+# Maintainer: Felix Yan 
+# Contributor: Marti Raudsepp 
+# Contributor: Radu Andries 
+# Contributor: Andy Weidenbaum 
+
+pkgbase=zbar
+pkgname=(zbar zbar-gtk zbar-qt python2-zbar)
+pkgver=0.21
+pkgrel=1
+pkgdesc="Application and library for reading bar codes from various sources"
+arch=('x86_64')
+url="https://github.com/mchehab/zbar;
+license=('LGPL')
+makedepends=('libmagick' 'libxv' 'v4l-utils' 'qt5-x11extras' 'pygtk' 'python' 
'xmlto' 'docbook-xsl')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/mchehab/zbar/archive/$pkgver.tar.gz;
+imagemagick7.patch)
+sha512sums=('148fbcdc3fc01c54087f92f746c92bd21ec37a7e0c27b0f48862f0ff0490d9a4b0954cf9cbc10a536d3bf559e13c8cb2670c1c9e6832ca70841107f3c5bb0210'
+

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

2019-02-19 Thread Felix Yan via arch-commits
Date: Tuesday, February 19, 2019 @ 20:43:11
  Author: felixonmars
Revision: 434634

upgpkg: zbar 0.21-1

Modified:
  zbar/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-19 20:36:47 UTC (rev 434633)
+++ PKGBUILD2019-02-19 20:43:11 UTC (rev 434634)
@@ -5,16 +5,16 @@
 
 pkgbase=zbar
 pkgname=(zbar zbar-gtk zbar-qt python2-zbar)
-pkgver=0.20
-pkgrel=3
+pkgver=0.21
+pkgrel=1
 pkgdesc="Application and library for reading bar codes from various sources"
 arch=('x86_64')
-url="https://github.com/procxx/zbar;
+url="https://github.com/mchehab/zbar;
 license=('LGPL')
 makedepends=('libmagick' 'libxv' 'v4l-utils' 'qt5-x11extras' 'pygtk' 'python' 
'xmlto' 'docbook-xsl')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/procxx/zbar/archive/$pkgver.tar.gz;
+source=("$pkgname-$pkgver.tar.gz::https://github.com/mchehab/zbar/archive/$pkgver.tar.gz;
 imagemagick7.patch)
-sha512sums=('b013dc5f72f910e8e0dc73de1705684f76e5cb5b2026d48d3e149d3e8b46afdf273d06f32738c588c272218e95b5cd39d3c0b8be4eb9be17553504a13b11c144'
+sha512sums=('148fbcdc3fc01c54087f92f746c92bd21ec37a7e0c27b0f48862f0ff0490d9a4b0954cf9cbc10a536d3bf559e13c8cb2670c1c9e6832ca70841107f3c5bb0210'
 
'43987414a6432b9e7da329f5a416f389d29bfc3417a6edc65a46b2677ade7dbb8c150df90c8b42464a6cb17c4732509fb8d3672387dafe9fd17a5def78a5ef63')
 
 prepare() {


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

2019-02-19 Thread Felix Yan via arch-commits
Date: Tuesday, February 19, 2019 @ 20:36:29
  Author: felixonmars
Revision: 434632

upgpkg: python-nose-exclude 0.5.0-4

remove python2 sibling

Modified:
  python-nose-exclude/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-19 20:33:45 UTC (rev 434631)
+++ PKGBUILD2019-02-19 20:36:29 UTC (rev 434632)
@@ -1,47 +1,28 @@
 # Maintainer: Felix Yan 
 
-pkgbase=python-nose-exclude
-pkgname=("python-nose-exclude" "python2-nose-exclude")
+pkgname=python-nose-exclude
 pkgver=0.5.0
-pkgrel=3
+pkgrel=4
 pkgdesc="Exclude specific directories from nosetests runs"
 arch=('any')
 url="https://github.com/kgrandis/nose-exclude;
 license=('LGPL')
-makedepends=('python-setuptools' 'python2-setuptools' 'python-nose' 
'python2-nose' 'git')
-source=("git+https://github.com/kgrandis/nose-exclude.git#tag=$pkgver;)
-sha512sums=('SKIP')
+depends=('python-nose')
+makedepends=('python-setuptools')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/kgrandis/nose-exclude/archive/$pkgver.tar.gz;)
+sha512sums=('0d8a21687831c825524c0cbb2da5b2195482558e2d2b0088944ccdf2d74787353f350ebbece8c4ce80f576426767ecb670afccbaf9f850e8476e1d2260bcc381')
 
-prepare() {
-  cp -a nose-exclude{,-py2}
-}
-
 build() {
-  cd "$srcdir"/nose-exclude
+  cd nose-exclude-$pkgver
   python setup.py build
-
-  cd "$srcdir"/nose-exclude-py2
-  python2 setup.py build
 }
 
 check() {
-  cd "$srcdir"/nose-exclude
+  cd nose-exclude-$pkgver
   python setup.py test
-
-  cd "$srcdir"/nose-exclude-py2
-  python2 setup.py test
 }
 
-package_python-nose-exclude() {
-  depends=('python-nose')
-
-  cd nose-exclude
+package() {
+  cd nose-exclude-$pkgver
   python setup.py install --root="$pkgdir" --optimize=1
 }
-
-package_python2-nose-exclude() {
-  depends=('python2-nose')
-
-  cd nose-exclude-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-}


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

2019-02-19 Thread Felix Yan via arch-commits
Date: Tuesday, February 19, 2019 @ 20:36:47
  Author: felixonmars
Revision: 434633

archrelease: copy trunk to community-any

Added:
  python-nose-exclude/repos/community-any/PKGBUILD
(from rev 434632, python-nose-exclude/trunk/PKGBUILD)
Deleted:
  python-nose-exclude/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-19 20:36:29 UTC (rev 434632)
+++ PKGBUILD2019-02-19 20:36:47 UTC (rev 434633)
@@ -1,48 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgbase=python-nose-exclude
-pkgname=("python-nose-exclude" "python2-nose-exclude")
-pkgver=0.5.0
-pkgrel=3
-pkgdesc="Exclude specific directories from nosetests runs"
-arch=('any')
-url="https://github.com/kgrandis/nose-exclude;
-license=('LGPL')
-makedepends=('python-setuptools' 'python2-setuptools' 'python-nose' 
'python2-nose' 'git')
-source=("git+https://github.com/kgrandis/nose-exclude.git#tag=$pkgver;)
-sha512sums=('SKIP')
-
-prepare() {
-  cp -a nose-exclude{,-py2}
-}
-
-build() {
-  cd "$srcdir"/nose-exclude
-  python setup.py build
-
-  cd "$srcdir"/nose-exclude-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/nose-exclude
-  python setup.py test
-
-  cd "$srcdir"/nose-exclude-py2
-  python2 setup.py test
-}
-
-package_python-nose-exclude() {
-  depends=('python-nose')
-
-  cd nose-exclude
-  python setup.py install --root="$pkgdir" --optimize=1
-}
-
-package_python2-nose-exclude() {
-  depends=('python2-nose')
-
-  cd nose-exclude-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-}

Copied: python-nose-exclude/repos/community-any/PKGBUILD (from rev 434632, 
python-nose-exclude/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-19 20:36:47 UTC (rev 434633)
@@ -0,0 +1,28 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-nose-exclude
+pkgver=0.5.0
+pkgrel=4
+pkgdesc="Exclude specific directories from nosetests runs"
+arch=('any')
+url="https://github.com/kgrandis/nose-exclude;
+license=('LGPL')
+depends=('python-nose')
+makedepends=('python-setuptools')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/kgrandis/nose-exclude/archive/$pkgver.tar.gz;)
+sha512sums=('0d8a21687831c825524c0cbb2da5b2195482558e2d2b0088944ccdf2d74787353f350ebbece8c4ce80f576426767ecb670afccbaf9f850e8476e1d2260bcc381')
+
+build() {
+  cd nose-exclude-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd nose-exclude-$pkgver
+  python setup.py test
+}
+
+package() {
+  cd nose-exclude-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+}


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

2019-02-19 Thread Maxime Gauduin via arch-commits
Date: Tuesday, February 19, 2019 @ 20:33:45
  Author: alucryd
Revision: 434631

archrelease: copy trunk to community-x86_64

Added:
  geary/repos/community-x86_64/PKGBUILD
(from rev 434630, geary/trunk/PKGBUILD)
Deleted:
  geary/repos/community-x86_64/PKGBUILD
  geary/repos/community-x86_64/geary-enchant2.patch

--+
 PKGBUILD |  107 -
 geary-enchant2.patch |   24 --
 2 files changed, 54 insertions(+), 77 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-19 20:33:37 UTC (rev 434630)
+++ PKGBUILD2019-02-19 20:33:45 UTC (rev 434631)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin 
-# Contributor: sebikul 
-# Contributor: Massimiliano Torromeo 
-
-pkgname=geary
-pkgver=0.12.4
-pkgrel=1
-pkgdesc='A lightweight email client for the GNOME desktop'
-arch=('x86_64')
-url='http://www.yorba.org/projects/geary/'
-license=('GPL3')
-depends=(
-  'cairo' 'enchant' 'gcr' 'gdk-pixbuf2' 'glib2' 'gmime' 'gnome-keyring' 'gtk3'
-  'iso-codes' 'libcanberra' 'libgee' 'libnotify' 'libsecret' 'libsoup'
-  'libxml2' 'pango' 'sqlite' 'webkit2gtk'
-)
-makedepends=(
-  'cmake' 'git' 'gnome-doc-utils' 'gobject-introspection' 'intltool' 'vala'
-)
-source=("git+https://gitlab.gnome.org/GNOME/geary.git#tag=geary-${pkgver};
-'geary-enchant2.patch')
-sha256sums=('SKIP'
-'d90243e5ede36399562b5c2e53350e8f0f1a6a56f8a062910a4d4e83b006acb7')
-
-prepare() {
-  if [[ -d build ]]; then
-rm -rf build
-  fi
-  mkdir build
-
-  cd geary
-
-  patch -Np1 -i ../geary-enchant2.patch
-}
-
-build() {
-  cd build
-
-  cmake ../geary \
--DCMAKE_INSTALL_PREFIX='/usr' \
--DDESKTOP_UPDATE='FALSE' \
--DICON_UPDATE='FALSE' \
--DGSETTINGS_COMPILE='FALSE' \
--DGSETTINGS_COMPILE_IN_PLACE='FALSE'
-  make
-}
-
-package() {
-  make DESTDIR="${pkgdir}" -C build install
-}
-
-# vim: ts=2 sw=2 et:

Copied: geary/repos/community-x86_64/PKGBUILD (from rev 434630, 
geary/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-19 20:33:45 UTC (rev 434631)
@@ -0,0 +1,54 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: sebikul 
+# Contributor: Massimiliano Torromeo 
+
+pkgname=geary
+pkgver=0.13.0
+pkgrel=1
+pkgdesc='A lightweight email client for the GNOME desktop'
+arch=(x86_64)
+url=https://wiki.gnome.org/Apps/Geary
+license=(GPL3)
+depends=(
+  cairo
+  enchant
+  gcr
+  gdk-pixbuf2
+  glib2
+  gmime
+  gnome-keyring
+  gnome-online-accounts
+  gtk3
+  iso-codes
+  libcanberra
+  libgee
+  libnotify
+  libsecret
+  libsoup
+  libxml2
+  pango
+  sqlite
+  webkit2gtk
+)
+makedepends=(
+  git
+  gnome-doc-utils
+  gobject-introspection
+  intltool
+  itstool
+  meson
+  vala
+)
+source=(git+https://gitlab.gnome.org/GNOME/geary.git#tag=geary-${pkgver})
+sha256sums=(SKIP)
+
+build() {
+  arch-meson geary build
+  ninja -C build
+}
+
+package() {
+  DESTDIR="${pkgdir}" ninja -C build install
+}
+
+# vim: ts=2 sw=2 et:

Deleted: geary-enchant2.patch
===
--- geary-enchant2.patch2019-02-19 20:33:37 UTC (rev 434630)
+++ geary-enchant2.patch2019-02-19 20:33:45 UTC (rev 434631)
@@ -1,24 +0,0 @@
-diff -rupN geary-0.12.0.orig/CMakeLists.txt geary-0.12.0/CMakeLists.txt
 geary-0.12.0.orig/CMakeLists.txt   2018-01-16 21:45:14.731988942 +0100
-+++ geary-0.12.0/CMakeLists.txt2018-01-16 21:47:51.510178769 +0100
-@@ -96,7 +96,7 @@ find_package(PkgConfig)
- pkg_check_modules(LIBUNITY QUIET unity>=5.12.0)
- pkg_check_modules(LIBMESSAGINGMENU QUIET messaging-menu>=12.10.2)
- 
--pkg_check_modules(ENCHANT QUIET enchant)
-+pkg_check_modules(ENCHANT QUIET enchant-2)
- 
- pkg_check_modules(SQLITE3 sqlite3 REQUIRED)
- if (NOT ${SQLITE3_VERSION} VERSION_LESS 3.12)
-diff -rupN geary-0.12.0.orig/src/CMakeLists.txt geary-0.12.0/src/CMakeLists.txt
 geary-0.12.0.orig/src/CMakeLists.txt   2018-01-16 21:45:14.738655384 
+0100
-+++ geary-0.12.0/src/CMakeLists.txt2018-01-16 21:48:40.088633141 +0100
-@@ -508,7 +508,7 @@ pkg_check_modules(DEPS REQUIRED
- webkit2gtk-4.0>=${TARGET_WEBKIT}
- webkit2gtk-web-extension-4.0>=${TARGET_WEBKIT}
- javascriptcoregtk-4.0>=${TARGET_WEBKIT}
--enchant>=1.6
-+enchant-2>=1.6
- ${EXTRA_CLIENT_PKG_CONFIG}
- )
- 


[arch-commits] Commit in geary/trunk (PKGBUILD geary-enchant2.patch)

2019-02-19 Thread Maxime Gauduin via arch-commits
Date: Tuesday, February 19, 2019 @ 20:33:37
  Author: alucryd
Revision: 434630

upgpkg: geary 0.13.0-1

Modified:
  geary/trunk/PKGBUILD
Deleted:
  geary/trunk/geary-enchant2.patch

--+
 PKGBUILD |   68 +
 geary-enchant2.patch |   24 -
 2 files changed, 35 insertions(+), 57 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-02-19 20:28:08 UTC (rev 434629)
+++ PKGBUILD2019-02-19 20:33:37 UTC (rev 434630)
@@ -3,50 +3,52 @@
 # Contributor: Massimiliano Torromeo 
 
 pkgname=geary
-pkgver=0.12.4
+pkgver=0.13.0
 pkgrel=1
 pkgdesc='A lightweight email client for the GNOME desktop'
-arch=('x86_64')
-url='https://wiki.gnome.org/Apps/Geary'
-license=('GPL3')
+arch=(x86_64)
+url=https://wiki.gnome.org/Apps/Geary
+license=(GPL3)
 depends=(
-  'cairo' 'enchant' 'gcr' 'gdk-pixbuf2' 'glib2' 'gmime' 'gnome-keyring' 'gtk3'
-  'iso-codes' 'libcanberra' 'libgee' 'libnotify' 'libsecret' 'libsoup'
-  'libxml2' 'pango' 'sqlite' 'webkit2gtk'
+  cairo
+  enchant
+  gcr
+  gdk-pixbuf2
+  glib2
+  gmime
+  gnome-keyring
+  gnome-online-accounts
+  gtk3
+  iso-codes
+  libcanberra
+  libgee
+  libnotify
+  libsecret
+  libsoup
+  libxml2
+  pango
+  sqlite
+  webkit2gtk
 )
 makedepends=(
-  'cmake' 'git' 'gnome-doc-utils' 'gobject-introspection' 'intltool' 'vala'
+  git
+  gnome-doc-utils
+  gobject-introspection
+  intltool
+  itstool
+  meson
+  vala
 )
-source=("git+https://gitlab.gnome.org/GNOME/geary.git#tag=geary-${pkgver};
-'geary-enchant2.patch')
-sha256sums=('SKIP'
-'d90243e5ede36399562b5c2e53350e8f0f1a6a56f8a062910a4d4e83b006acb7')
+source=(git+https://gitlab.gnome.org/GNOME/geary.git#tag=geary-${pkgver})
+sha256sums=(SKIP)
 
-prepare() {
-  if [[ -d build ]]; then
-rm -rf build
-  fi
-  mkdir build
-
-  cd geary
-
-  patch -Np1 -i ../geary-enchant2.patch
-}
-
 build() {
-  cd build
-
-  cmake ../geary \
--DCMAKE_INSTALL_PREFIX='/usr' \
--DDESKTOP_UPDATE='FALSE' \
--DICON_UPDATE='FALSE' \
--DGSETTINGS_COMPILE='FALSE' \
--DGSETTINGS_COMPILE_IN_PLACE='FALSE'
-  make
+  arch-meson geary build
+  ninja -C build
 }
 
 package() {
-  make DESTDIR="${pkgdir}" -C build install
+  DESTDIR="${pkgdir}" ninja -C build install
 }
 
 # vim: ts=2 sw=2 et:

Deleted: geary-enchant2.patch
===
--- geary-enchant2.patch2019-02-19 20:28:08 UTC (rev 434629)
+++ geary-enchant2.patch2019-02-19 20:33:37 UTC (rev 434630)
@@ -1,24 +0,0 @@
-diff -rupN geary-0.12.0.orig/CMakeLists.txt geary-0.12.0/CMakeLists.txt
 geary-0.12.0.orig/CMakeLists.txt   2018-01-16 21:45:14.731988942 +0100
-+++ geary-0.12.0/CMakeLists.txt2018-01-16 21:47:51.510178769 +0100
-@@ -96,7 +96,7 @@ find_package(PkgConfig)
- pkg_check_modules(LIBUNITY QUIET unity>=5.12.0)
- pkg_check_modules(LIBMESSAGINGMENU QUIET messaging-menu>=12.10.2)
- 
--pkg_check_modules(ENCHANT QUIET enchant)
-+pkg_check_modules(ENCHANT QUIET enchant-2)
- 
- pkg_check_modules(SQLITE3 sqlite3 REQUIRED)
- if (NOT ${SQLITE3_VERSION} VERSION_LESS 3.12)
-diff -rupN geary-0.12.0.orig/src/CMakeLists.txt geary-0.12.0/src/CMakeLists.txt
 geary-0.12.0.orig/src/CMakeLists.txt   2018-01-16 21:45:14.738655384 
+0100
-+++ geary-0.12.0/src/CMakeLists.txt2018-01-16 21:48:40.088633141 +0100
-@@ -508,7 +508,7 @@ pkg_check_modules(DEPS REQUIRED
- webkit2gtk-4.0>=${TARGET_WEBKIT}
- webkit2gtk-web-extension-4.0>=${TARGET_WEBKIT}
- javascriptcoregtk-4.0>=${TARGET_WEBKIT}
--enchant>=1.6
-+enchant-2>=1.6
- ${EXTRA_CLIENT_PKG_CONFIG}
- )
- 


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

2019-02-19 Thread Antonio Rojas via arch-commits
Date: Tuesday, February 19, 2019 @ 20:29:06
  Author: arojas
Revision: 346560

Add missing groups

Modified:
  kdegraphics-thumbnailers/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-19 20:17:30 UTC (rev 346559)
+++ PKGBUILD2019-02-19 20:29:06 UTC (rev 346560)
@@ -11,6 +11,7 @@
 license=(GPL LGPL FDL)
 depends=(libkexiv2 libkdcraw kio ghostscript)
 makedepends=(extra-cmake-modules)
+groups=(kdegraphics kde-applications)
 
source=("https://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
 sha256sums=('c0f3585a1485cfbe17f2ab5e6be54bb04055c667867f1183f47a19f68fca69ff'
 'SKIP')


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

2019-02-19 Thread Felix Yan via arch-commits
Date: Tuesday, February 19, 2019 @ 20:27:50
  Author: felixonmars
Revision: 434618

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-19 20:27:32 UTC (rev 434617)
+++ PKGBUILD2019-02-19 20:27:50 UTC (rev 434618)
@@ -1,54 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Karol 'Kenji Takahashi' Woźniak 
-# Contributor: Pierre Gueth 
-
-pkgbase=python-redis
-pkgname=('python-redis' 'python2-redis')
-pkgver=3.1.0
-pkgrel=1
-pkgdesc='The Python interface to the Redis key-value store'
-arch=('any')
-url="http://github.com/andymccurdy/redis-py;
-license=('MIT')
-makedepends=('python-setuptools' 'python2-setuptools')
-checkdepends=('python-pytest' 'python2-pytest' 'python-mock' 'python2-mock' 
'pifpaf' 'redis')
-source=("https://pypi.io/packages/source/r/redis/redis-$pkgver.tar.gz;)
-sha512sums=('d915dafb853a41e4cb26811d8c08a828ec55f69b75206c62e96a6c7156ca171391e2a7915d523f337de8fee532bf66890d14a645ebaf490f21f13b7798bea1b5')
-
-prepare() {
-  cp -a redis-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir"/redis-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/redis-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/redis-$pkgver
-  pifpaf run redis py.test || warning 
"https://github.com/andymccurdy/redis-py/issues/1073;
-
-  cd "$srcdir"/redis-$pkgver-py2
-  pifpaf run redis py.test2 || warning 
"https://github.com/andymccurdy/redis-py/issues/1073;
-}
-
-package_python-redis() {
-  depends=('python')
-
-  cd redis-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-redis() {
-  depends=('python2')
-
-  cd redis-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-redis/repos/community-any/PKGBUILD (from rev 434617, 
python-redis/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-19 20:27:50 UTC (rev 434618)
@@ -0,0 +1,54 @@
+# Maintainer: Felix Yan 
+# Contributor: Karol 'Kenji Takahashi' Woźniak 
+# Contributor: Pierre Gueth 
+
+pkgbase=python-redis
+pkgname=('python-redis' 'python2-redis')
+pkgver=3.2.0
+pkgrel=1
+pkgdesc='The Python interface to the Redis key-value store'
+arch=('any')
+url="http://github.com/andymccurdy/redis-py;
+license=('MIT')
+makedepends=('python-setuptools' 'python2-setuptools')
+checkdepends=('python-pytest' 'python2-pytest' 'python-mock' 'python2-mock' 
'pifpaf' 'redis')
+source=("https://pypi.io/packages/source/r/redis/redis-$pkgver.tar.gz;)
+sha512sums=('9620a85ab642e1b0096429873ee38a7b3adc84d3ba1dc5abd549b05ee70b081590e3c4a82e090cc2c366c8eafd122c2b075cb69eccfcc1d5f5a0bea070893b32')
+
+prepare() {
+  cp -a redis-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/redis-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/redis-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/redis-$pkgver
+  pifpaf run redis py.test || warning 
"https://github.com/andymccurdy/redis-py/issues/1073;
+
+  cd "$srcdir"/redis-$pkgver-py2
+  pifpaf run redis py.test2 || warning 
"https://github.com/andymccurdy/redis-py/issues/1073;
+}
+
+package_python-redis() {
+  depends=('python')
+
+  cd redis-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-redis() {
+  depends=('python2')
+
+  cd redis-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


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

2019-02-19 Thread Felix Yan via arch-commits
Date: Tuesday, February 19, 2019 @ 20:27:31
  Author: felixonmars
Revision: 434616

upgpkg: python-redis 3.2.0-1

Modified:
  python-redis/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-19 20:25:25 UTC (rev 434615)
+++ PKGBUILD2019-02-19 20:27:31 UTC (rev 434616)
@@ -4,7 +4,7 @@
 
 pkgbase=python-redis
 pkgname=('python-redis' 'python2-redis')
-pkgver=3.1.0
+pkgver=3.2.0
 pkgrel=1
 pkgdesc='The Python interface to the Redis key-value store'
 arch=('any')
@@ -13,7 +13,7 @@
 makedepends=('python-setuptools' 'python2-setuptools')
 checkdepends=('python-pytest' 'python2-pytest' 'python-mock' 'python2-mock' 
'pifpaf' 'redis')
 source=("https://pypi.io/packages/source/r/redis/redis-$pkgver.tar.gz;)
-sha512sums=('d915dafb853a41e4cb26811d8c08a828ec55f69b75206c62e96a6c7156ca171391e2a7915d523f337de8fee532bf66890d14a645ebaf490f21f13b7798bea1b5')
+sha512sums=('9620a85ab642e1b0096429873ee38a7b3adc84d3ba1dc5abd549b05ee70b081590e3c4a82e090cc2c366c8eafd122c2b075cb69eccfcc1d5f5a0bea070893b32')
 
 prepare() {
   cp -a redis-$pkgver{,-py2}


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

2019-02-19 Thread Andrew Crerar via arch-commits
Date: Tuesday, February 19, 2019 @ 20:27:32
  Author: andrewsc
Revision: 434617

upgpkg: firefox-developer-edition-i18n 66.0b9-1

firefox-developer-edition-i18n: Updating to 66.0b9

Modified:
  firefox-developer-edition-i18n/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-19 20:27:31 UTC (rev 434616)
+++ PKGBUILD2019-02-19 20:27:32 UTC (rev 434617)
@@ -1,7 +1,7 @@
 # Maintainer: Andrew Crerar 
 
 pkgbase=firefox-developer-edition-i18n
-pkgver=66.0b8
+pkgver=66.0b9
 pkgrel=1
 pkgdesc="Language pack for Firefox Developer Edition"
 arch=('any')
@@ -133,100 +133,100 @@
 
"$pkgdir/usr/lib/firefox-developer-edition/browser/extensions/langpack-$1...@devedition.mozilla.org.xpi"
 }
 
-sha512sums=('96744b9d4f273032a7b59ea291ac2145e55168b33491cd8c7233fdbd1e40e1174530aa572b064004ce9e14d73a9d5b70f4f63612a49b7e0e8b102ab8a76658d5'
-
'9632d52cfd705b300ea53c22ace198642a0526577a148fa6d06f1c50e5988b889a08cae68a89361edb90e55699ddfe87c22aaec8e1d6083f2eeaf4cf08252c46'
-
'91a7fd8eaf1da5ce76d691e6611a7cace4658123ac55c7f957468ab4207e182d1406d6583ecf00d6c7b144d762bbc93d770e86b38526e4b245dc773042609e55'
-
'c8b92bb28ffe2ff87088ecb03ce0081e7826279838dc7802547e9838fb900d23d19595289e02dc7828ec5ad158274318f7d060428560f4f1f2972a5677ff5ae1'
-
'f5e8ad47a437dae241e5277d834f5be6eea87847258210360e0d51de5ece12be200d351fb487ce60314560efa61d1c358cba7886f2cb88f97589e04c2d5ea07c'
-
'317e668c853aa5207b13b77cc71e71c62039315a584f6923810ca2f79678c0d28a75d67b397114cb4433e03ad1c9f0e9bbf4787971014f08cdf46452e82c3ace'
-
'e3a86f0c4d24fa1ebe434cbfe34e40b973e49c0ed3ff41e323c1ed7dad0d8830f49521798bc8ff78c408ad65021a99cca061a7778c252affe9ded6805cdc85fa'
-
'98b799e638db674d0d27e3d4246f1beb79ecdc9e25533ef38207376b60259f363ec6265770af7d7404723e176777e69ebaf4848e33efd27e39f4eae1b971'
-
'e4e4b234dfb7ca1ab6dcf1e3cdbfc2112ef89f3331a66492f06f207bbf50076e5d79402fa674e130ca8d4afb4494cf97222c57005a46a77c4a7d37785cbbf1df'
-
'a1ec8113bda658eb4b5a4202305b4a3d26dad9f43ceb74f62ddd7acc96652540f32088c577604ac402d71ffda5181cede8c5cbe65edec5d91303a45beba534b1'
-
'75c953f2107b59df48e414e932c65c15a525ab6c77ea4d96bc2f294000a18134555411720227f70bc9ad1a23934407ce66f2935a4fe102d3a961ae0a9a271af4'
-
'375f561a38dbc41685a6c9e4046ce84abe0abb7635a4f8a5d4b3b0ea4cd8dc071280f4e8b069d262104d5b80790832639944ab9f08ae22d479a9ea6554167b91'
-
'29a561543810a3d0baf9d0f288c7574b8646fd8629c5f62028739763d353ae830299220bbc4a57ef871ea97c21d67120db832ec3e177ef659baa396ebed3'
-
'333d68255405b4299f2d78c3914b1f51c09bb2355146cdd51a7fe29ea688fd82f987288782492e633bcd992d61dd2c6f543d58cf68cba88e9cc21acdee4aac7e'
-
'accceb4bc431674a026585d290a60ec44e70b5ebfb59e16e8bbe53b0a8d72dc5d2d1cd4dd8b579cd326f53f957aaec8dca5fa66d15509293a270bc3d15a402e5'
-
'6774dce7d36d915d2918eba6bf8e4f4acb77396b16d157637b3d56f43c5f355dc738469885fee03a2bf8a9137dd75372b7b32490e309b7811f854d07adf74bbf'
-
'3a65c8b48571e87797b57bb4295104225ab11905819e09cd0c749067c68dda2da9b604dc8e902047f129ac04617accd2f57f667f225422114ca5dc733bc81541'
-
'79aa1aba72c0309a47cf72f1c55e7da5b825cdc70bfd4cdae7fde371f589fb490d4cebe3768e6f4b299a6c06c10da379f6426496f1543d14b827e7bdeb4f'
-
'be3b071265e9d93efbc390af1ad3006311ffc5cd7b68071c86ee18f563c6ae112867dfadd91f4abfc594e696858862a79bc7e8b8949559607a64b6bb837e89a9'
-
'656154a4eb140f128bf2d3589eb1f4d77adedbf9956266e1b4512531099fe58223b7c353acec79628420527e96b5f749d5a0c23be2d4a65f22b1ba49b35f6a69'
-
'bcd95dee84ad5be9ff2a189c12e72edc535b8ec3439f5645b3a57505d007c5f37205c2a3884c6c937d90f500353c4f08f9760461573acd9aca004db96ed7b148'
-
'053cd6d117d24a08ef51af2c799c45b5877ee6ce8ef335ef9e4394f3c1d94e6acfb56f61fb820e1906143a43858c11f44ec0fee1718139819c0314c188111d0d'
-
'867dcbcdead25c0767223eaaea7bae256d94de0c8a8bc4b3a84efbd8ecbf005e126cd0c010f6319598a6eef316da9193e93a87980acc01628911cc988a4b3240'
-
'bb97cf81af5104b6dc678eee5e5faca5b029d4cce53ce3e112762008f27b0cc007988c7273c65aa50c90f8b4a44d6fe4fd5e85bf5badbc2d4480d64a612d'
-
'a466027a660eae747a3393c8496968d74172e5abe847d4587a302d438f1a2ea45717eb357833e6f641b2460dce95218543f84b970c73f579e924d82e158c'
-
'7f4d48e8d98c9650d35b674187b6cd8e507208b45197682f813dd4411d4792362ca2ff4772bd8506c0f4b2a688922788594fb6ed05ddc6568cf017bb10cd'
-
'ee33396cac4dbc8c49ce046b30f43f32a1c4bf1ad7f5709e4a240aeea7a3247f1007df5950d5119601d0eb5f20fbf5fb78f35d79905fbed1f41b9f7de82dee16'
-
'0062feba120c629554ccc408ea7423cf46d241de367469fdca65f3c192ea20835af50495d0b5bdf9d04687056b62f37d3e8adcef7088cf30eb433f7366ce4fa6'
-

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

2019-02-19 Thread Felix Yan via arch-commits
Date: Tuesday, February 19, 2019 @ 20:25:25
  Author: felixonmars
Revision: 434615

archrelease: copy trunk to community-any

Added:
  marked-man/repos/community-any/PKGBUILD
(from rev 434614, marked-man/trunk/PKGBUILD)
Deleted:
  marked-man/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-19 20:24:50 UTC (rev 434614)
+++ PKGBUILD2019-02-19 20:25:25 UTC (rev 434615)
@@ -1,32 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=marked-man
-pkgver=0.3.0+2+gceb2249
-pkgrel=1
-pkgdesc="Wrapper adding manpage output to 'marked', inspired by 'ronn'"
-arch=('any')
-url='https://github.com/kapouer/marked-man'
-license=('MIT')
-depends=('nodejs' 'marked')
-makedepends=('npm' 'git')
-_commit=ceb224979cfff8d87d1dabd7dcecffd8cdd26303  # master
-source=("git+https://github.com/kapouer/marked-man#commit=$_commit;)
-sha512sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-package() {
-  npm install -g --user root --prefix "$pkgdir"/usr 
"git+file://$srcdir/$pkgname"
-  install -d "$pkgdir"/usr/share/licenses/$pkgname
-  ln -s ../../../lib/node_modules/marked-man/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-
-  # Experimental dedup
-  cd "$pkgdir"/usr/lib/node_modules/$pkgname/node_modules
-  for dep in marked; do
-rm -r $dep;
-npm link $dep;
-  done
-}

Copied: marked-man/repos/community-any/PKGBUILD (from rev 434614, 
marked-man/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-19 20:25:25 UTC (rev 434615)
@@ -0,0 +1,20 @@
+# Maintainer: Felix Yan 
+
+pkgname=marked-man
+pkgver=0.4.2
+pkgrel=1
+pkgdesc="Wrapper adding manpage output to 'marked', inspired by 'ronn'"
+arch=('any')
+url='https://github.com/kapouer/marked-man'
+license=('MIT')
+depends=('nodejs')
+makedepends=('npm')
+source=(https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
+noextract=($pkgname-$pkgver.tgz)
+sha512sums=('e0032079edb3ca3ce0c9b6e83018c07c34356549c11439b14ca95def1b8473d379b58dd3ec2a9062a61f28091473bded34b78e77029c477379a75b685cb88700')
+
+package() {
+  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
+  install -d "$pkgdir"/usr/share/licenses/$pkgname
+  ln -s ../../../lib/node_modules/marked-man/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2019-02-19 Thread Felix Yan via arch-commits
Date: Tuesday, February 19, 2019 @ 20:24:50
  Author: felixonmars
Revision: 434614

upgpkg: marked-man 0.4.2-1

Modified:
  marked-man/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-19 20:20:14 UTC (rev 434613)
+++ PKGBUILD2019-02-19 20:24:50 UTC (rev 434614)
@@ -1,32 +1,20 @@
 # Maintainer: Felix Yan 
 
 pkgname=marked-man
-pkgver=0.3.0+2+gceb2249
+pkgver=0.4.2
 pkgrel=1
 pkgdesc="Wrapper adding manpage output to 'marked', inspired by 'ronn'"
 arch=('any')
 url='https://github.com/kapouer/marked-man'
 license=('MIT')
-depends=('nodejs' 'marked')
-makedepends=('npm' 'git')
-_commit=ceb224979cfff8d87d1dabd7dcecffd8cdd26303  # master
-source=("git+https://github.com/kapouer/marked-man#commit=$_commit;)
-sha512sums=('SKIP')
+depends=('nodejs')
+makedepends=('npm')
+source=(https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
+noextract=($pkgname-$pkgver.tgz)
+sha512sums=('e0032079edb3ca3ce0c9b6e83018c07c34356549c11439b14ca95def1b8473d379b58dd3ec2a9062a61f28091473bded34b78e77029c477379a75b685cb88700')
 
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
 package() {
-  npm install -g --user root --prefix "$pkgdir"/usr 
"git+file://$srcdir/$pkgname"
+  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
   install -d "$pkgdir"/usr/share/licenses/$pkgname
   ln -s ../../../lib/node_modules/marked-man/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-
-  # Experimental dedup
-  cd "$pkgdir"/usr/lib/node_modules/$pkgname/node_modules
-  for dep in marked; do
-rm -r $dep;
-npm link $dep;
-  done
 }


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

2019-02-19 Thread Felix Yan via arch-commits
Date: Tuesday, February 19, 2019 @ 20:20:14
  Author: felixonmars
Revision: 434613

archrelease: copy trunk to community-staging-x86_64

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

---+
 PKGBUILD  |   75 
 stack.install |4 ++
 2 files changed, 79 insertions(+)

Copied: stack/repos/community-staging-x86_64/PKGBUILD (from rev 434612, 
stack/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-02-19 20:20:14 UTC (rev 434613)
@@ -0,0 +1,75 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=stack
+pkgver=1.9.3
+pkgrel=67
+pkgdesc="The Haskell Tool Stack"
+url="https://github.com/commercialhaskell/stack;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-annotated-wl-pprint' 
'haskell-ansi-terminal'
+ 'haskell-async' 'haskell-attoparsec' 'haskell-base64-bytestring' 
'haskell-conduit'
+ 'haskell-conduit-extra' 'haskell-cryptonite' 
'haskell-cryptonite-conduit' 'haskell-echo'
+ 'haskell-exceptions' 'haskell-extra' 'haskell-file-embed' 
'haskell-filelock'
+ 'haskell-fsnotify' 'haskell-generic-deriving' 'haskell-githash' 
'haskell-hackage-security'
+ 'haskell-hashable' 'haskell-hpack' 'haskell-hpc' 'haskell-http-client'
+ 'haskell-http-client-tls' 'haskell-http-conduit' 'haskell-http-types' 
'haskell-memory'
+ 'haskell-microlens' 'haskell-mintty' 'haskell-monad-logger' 
'haskell-mono-traversable'
+ 'haskell-mustache' 'haskell-neat-interpolation' 'haskell-network-uri' 
'haskell-open-browser'
+ 'haskell-optparse-applicative' 'haskell-optparse-simple' 
'haskell-path' 'haskell-path-io'
+ 'haskell-persistent' 'haskell-persistent-sqlite' 
'haskell-persistent-template'
+ 'haskell-primitive' 'haskell-project-template' 
'haskell-regex-applicative-text'
+ 'haskell-resourcet' 'haskell-retry' 'haskell-rio' 'haskell-split' 
'haskell-store'
+ 'haskell-store-core' 'haskell-streaming-commons' 'haskell-tar' 
'haskell-temporary'
+ 'haskell-text-metrics' 'haskell-th-reify-many' 'haskell-tls' 
'haskell-typed-process'
+ 'haskell-unicode-transforms' 'haskell-unix-compat' 'haskell-unliftio'
+ 'haskell-unordered-containers' 'haskell-vector' 'haskell-yaml' 
'haskell-zip-archive'
+ 'haskell-zlib' 'haskell-bindings-uname')
+makedepends=('ghc' 'git' 'haskell-quickcheck' 'haskell-hspec' 
'haskell-smallcheck')
+checkdepends=('cabal-install')
+conflicts=('haskell-stack')
+replaces=('haskell-stack')
+install="stack.install"
+source=("git+https://github.com/commercialhaskell/stack.git#tag=v$pkgver;)
+sha512sums=('SKIP')
+
+prepare() {
+  cd $pkgname
+  hpack
+  sed -i '/semigroups/d' $pkgname.cabal
+}
+
+build() {
+  cd $pkgname
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+  -f-disable-git-info -f-integration-tests -f-static 
-f-hide-dependency-versions -f-supported-build
+  runhaskell Setup build
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+  cd $pkgname
+  # cabal update
+  LD_LIBRARY_PATH="$PWD"/dist/build PATH="$PWD"/dist/build/stack:"$PATH" 
runhaskell Setup test
+  # Integration tests will result in 4 failures on Arch currently
+}
+
+package() {
+  cd $pkgname
+
+  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"
+
+  LD_PRELOAD=$(ls "$pkgdir"/usr/lib/libHSstack-*-ghc*.so) 
"${pkgdir}"/usr/bin/stack --bash-completion-script /usr/bin/stack > 
stack_completion_script
+  install -Dm644 stack_completion_script 
"${pkgdir}/usr/share/bash-completion/completions/stack"
+}

Copied: stack/repos/community-staging-x86_64/stack.install (from rev 434612, 
stack/trunk/stack.install)
===
--- community-staging-x86_64/stack.install  (rev 0)
+++ community-staging-x86_64/stack.install  2019-02-19 20:20:14 UTC (rev 
434613)
@@ -0,0 +1,4 @@
+post_install() {
+  

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

2019-02-19 Thread Felix Yan via arch-commits
Date: Tuesday, February 19, 2019 @ 20:19:58
  Author: felixonmars
Revision: 434612

upgpkg: stack 1.9.3-67

rebuild with haskell-src-meta 0.8.1

Modified:
  stack/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-19 20:12:47 UTC (rev 434611)
+++ PKGBUILD2019-02-19 20:19:58 UTC (rev 434612)
@@ -3,7 +3,7 @@
 
 pkgname=stack
 pkgver=1.9.3
-pkgrel=66
+pkgrel=67
 pkgdesc="The Haskell Tool Stack"
 url="https://github.com/commercialhaskell/stack;
 license=("BSD")


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

2019-02-19 Thread Antonio Rojas via arch-commits
Date: Tuesday, February 19, 2019 @ 20:17:30
  Author: arojas
Revision: 346559

Add missing groups

Modified:
  kmix/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-19 15:22:46 UTC (rev 346558)
+++ PKGBUILD2019-02-19 20:17:30 UTC (rev 346559)
@@ -13,6 +13,7 @@
 makedepends=(extra-cmake-modules kdoctools plasma-framework)
 conflicts=(kdemultimedia-kmix)
 replaces=(kdemultimedia-kmix)
+groups=(kdemultimedia kde-applications)
 
source=("https://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
 sha256sums=('c26049485fa42608cd39d1e5c7ba0851067ac026241c98f12f81cd2621830e6f'
 'SKIP')


[arch-commits] Commit in firefox-developer-edition/repos/community-x86_64 (8 files)

2019-02-19 Thread Andrew Crerar via arch-commits
Date: Tuesday, February 19, 2019 @ 20:12:47
  Author: andrewsc
Revision: 434611

archrelease: copy trunk to community-x86_64

Added:
  firefox-developer-edition/repos/community-x86_64/PKGBUILD
(from rev 434596, firefox-developer-edition/trunk/PKGBUILD)
  
firefox-developer-edition/repos/community-x86_64/firefox-developer-edition.desktop
(from rev 434601, 
firefox-developer-edition/trunk/firefox-developer-edition.desktop)
  firefox-developer-edition/repos/community-x86_64/firefox-install-dir.patch
(from rev 434607, firefox-developer-edition/trunk/firefox-install-dir.patch)
  firefox-developer-edition/repos/community-x86_64/firefox-symbolic.svg
(from rev 434608, firefox-developer-edition/trunk/firefox-symbolic.svg)
Deleted:
  firefox-developer-edition/repos/community-x86_64/PKGBUILD
  
firefox-developer-edition/repos/community-x86_64/firefox-developer-edition.desktop
  firefox-developer-edition/repos/community-x86_64/firefox-install-dir.patch
  firefox-developer-edition/repos/community-x86_64/firefox-symbolic.svg

---+
 PKGBUILD  |  348 ++--
 firefox-developer-edition.desktop |  622 ++--
 firefox-install-dir.patch |   84 ++--
 firefox-symbolic.svg  |  128 +++
 4 files changed, 591 insertions(+), 591 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-19 20:10:47 UTC (rev 434610)
+++ PKGBUILD2019-02-19 20:12:47 UTC (rev 434611)
@@ -1,174 +0,0 @@
-# Maintainer: Andrew Crerar 
-# Contributor: Jan Alexander Steffens (heftig) 
-
-pkgname=firefox-developer-edition
-pkgver=66.0b8
-pkgrel=1
-pkgdesc="Developer Edition of the popular Firefox web browser"
-arch=('x86_64')
-license=('MPL' 'GPL' 'LGPL')
-url="https://www.mozilla.org/firefox/channel/#developer;
-depends=('gtk3' 'mozilla-common' 'libxt' 'startup-notification' 'mime-types'
- 'dbus-glib' 'ffmpeg' 'nss' 'sqlite' 'ttf-font' 'libpulse')
-makedepends=('unzip' 'zip' 'diffutils' 'python2' 'python' 'yasm' 'mesa' 
'imake' 'inetutils'
- 'xorg-server-xvfb' 'autoconf2.13' 'rust' 'mercurial' 'clang' 
'llvm' 'jack'
- 'gtk2' 'nodejs' 'python2-psutil' 'cbindgen' 'nasm')
-optdepends=('networkmanager: Location detection via available WiFi networks'
-'libnotify: Notification integration'
-'pulseaudio: Audio support'
-'speech-dispatcher: Text-to-Speech'
-'hunspell-en_US: Spell Checking, American English')
-replaces=('firefox-developer')
-options=(!emptydirs !makeflags !strip)
-_repo=https://hg.mozilla.org/mozilla-unified
-source=("hg+$_repo#tag=DEVEDITION_${pkgver//./_}_RELEASE"
-"$pkgname".desktop
-firefox-symbolic.svg
-firefox-install-dir.patch)
-sha512sums=('SKIP'
-
'12617f60e01420350b8d9c7c1c3a2a5ba0f2c46df31b0e23e51093ebd68019ced7d193a01d964421b91e1b444ce4ab499523f21cd3a39a2ffac8883d096ac195'
-
'ba7db9a7c95a051bcd84e4c09c802fc55ee3c0d1d06ec1b169b04e414259b75bbe92fe584aee41a1e3f71e71c160df8bedf5393449e5024110ed27dbc0579ea8'
-
'8fdf6a65e78406251075168c8310bb12c9b8419b3e51f59b1aa6244ef48ef1d201aae8bfdd5faa1da79242d9967fce959cbeffa54991ff39691f16168111b248')
-
-# 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() {
-  cd mozilla-unified
-  patch -Np1 -i ../firefox-install-dir.patch
-
-  echo -n "$_google_api_key" > google-api-key
-  echo -n "$_mozilla_api_key" > mozilla-api-key
-
-  cat > .mozconfig << END
-ac_add_options --enable-application=browser
-
-ac_add_options --prefix=/usr
-ac_add_options --enable-release
-ac_add_options --enable-hardening
-ac_add_options --enable-optimize
-ac_add_options --enable-rust-simd
-ac_add_options --enable-lto
-export CC=clang
-export CXX=clang++
-export AR=llvm-ar
-export NM=llvm-nm
-export RANLIB=llvm-ranlib
-
-# Branding
-ac_add_options --with-branding=browser/branding/aurora
-ac_add_options --enable-update-channel=aurora
-ac_add_options --with-distribution-id=org.archlinux
-ac_add_options "MOZ_ALLOW_LEGACY_EXTENSIONS=1"
-export MOZILLA_OFFICIAL=1
-export MOZ_TELEMETRY_REPORTING=1
-export MOZ_REQUIRE_SIGNING=0
-
-# Keys
-ac_add_options --with-google-api-keyfile=${PWD@Q}/google-api-key
-ac_add_options --with-mozilla-api-keyfile=${PWD@Q}/mozilla-api-key
-
-# System libraries
-ac_add_options --with-system-zlib

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

2019-02-19 Thread Felix Yan via arch-commits
Date: Tuesday, February 19, 2019 @ 20:10:30
  Author: felixonmars
Revision: 434609

upgpkg: postgrest 5.2.0-11

rebuild with haskell-src-meta 0.8.1

Modified:
  postgrest/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-19 20:06:33 UTC (rev 434608)
+++ PKGBUILD2019-02-19 20:10:30 UTC (rev 434609)
@@ -3,7 +3,7 @@
 
 pkgname=postgrest
 pkgver=5.2.0
-pkgrel=10
+pkgrel=11
 pkgdesc="REST API for any Postgres database"
 url="https://github.com/begriffs/postgrest;
 license=("MIT")


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

2019-02-19 Thread Felix Yan via arch-commits
Date: Tuesday, February 19, 2019 @ 20:10:47
  Author: felixonmars
Revision: 434610

archrelease: copy trunk to community-staging-x86_64

Added:
  postgrest/repos/community-staging-x86_64/
  postgrest/repos/community-staging-x86_64/PKGBUILD
(from rev 434609, postgrest/trunk/PKGBUILD)

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

Copied: postgrest/repos/community-staging-x86_64/PKGBUILD (from rev 434609, 
postgrest/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-02-19 20:10:47 UTC (rev 434610)
@@ -0,0 +1,70 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=postgrest
+pkgver=5.2.0
+pkgrel=11
+pkgdesc="REST API for any Postgres database"
+url="https://github.com/begriffs/postgrest;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-auto-update' 'haskell-hasql' 'haskell-hasql-pool' 
'haskell-protolude'
+ 'haskell-warp' 'haskell-base64-bytestring' 'haskell-retry' 
'haskell-aeson'
+ 'haskell-ansi-wl-pprint' 'haskell-case-insensitive' 'haskell-cassava'
+ 'haskell-configurator-ng' 'haskell-contravariant' 
'haskell-contravariant-extras'
+ 'haskell-either' 'haskell-gitrev' 'haskell-hasql-transaction' 
'haskell-heredoc'
+ 'haskell-http' 'haskell-http-types' 
'haskell-insert-ordered-containers'
+ 'haskell-interpolatedstring-perl6' 'haskell-jose' 'haskell-lens' 
'haskell-lens-aeson'
+ 'haskell-network-uri' 'haskell-optparse-applicative' 
'haskell-ranged-sets'
+ 'haskell-regex-tdfa' 'haskell-scientific' 'haskell-swagger2' 
'haskell-unordered-containers'
+ 'haskell-vector' 'haskell-wai' 'haskell-wai-cors' 'haskell-wai-extra'
+ 'haskell-wai-middleware-static' 'haskell-cookie')
+makedepends=('ghc' 'haskell-aeson-qq' 'haskell-async' 'haskell-hspec' 
'haskell-hspec-wai'
+ 'haskell-hspec-wai-json' 'haskell-hjsonschema')
+checkdepends=('pifpaf' 'postgresql' 'procps-ng')
+source=("$pkgname-$pkgver.tar.bz2::https://github.com/begriffs/postgrest/archive/v$pkgver.tar.gz;)
+sha512sums=('7c2bba89457dd8b3d681ccc032482055144b5ee17336b2e90dda6bbed6c229f36cf521cf66aafd7923ca6c147a1f2bb26567a3109079dae65d726e85f85b32ed')
+
+prepare() {
+cd $pkgname-$pkgver
+sed -i -e 's/==/>=/' -e 's/< *4.10/<5/' $pkgname.cabal
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-CI
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $pkgname-$pkgver
+
+eval $(pifpaf run postgresql --host 127.0.0.1 --port 5432)
+createdb postgrest_test
+
+# TODO: it shouldn't take this long to finish
+# POSTGREST_TEST_CONNECTION=$(test/create_test_db 
"postgres://$USER@localhost" postgrest_test) runhaskell Setup test
+
+# Disabled: uses stack
+# test/io-tests.sh
+
+pifpaf_stop
+}
+
+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}/LICENSE"
+}


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

2019-02-19 Thread Maxime Gauduin via arch-commits
Date: Tuesday, February 19, 2019 @ 20:06:33
  Author: alucryd
Revision: 434608

archrelease: copy trunk to community-any

Added:
  lollypop/repos/community-any/PKGBUILD
(from rev 434607, lollypop/trunk/PKGBUILD)
Deleted:
  lollypop/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-19 20:05:57 UTC (rev 434607)
+++ PKGBUILD2019-02-19 20:06:33 UTC (rev 434608)
@@ -1,44 +0,0 @@
-# Maintainer: Maxime Gauduin 
-# Contributor: kirek 
-# Contributor: Cédric Bellegarde 
-
-pkgname=lollypop
-pkgver=0.9.916
-pkgrel=1
-pkgdesc='Music player for GNOME'
-arch=('any')
-url='https://gitlab.gnome.org/gnumdk/lollypop'
-license=('GPL')
-depends=(
-  'gst-plugins-base-libs' 'gtk3' 'python-beautifulsoup4' 'python-cairo'
-  'python-dbus' 'python-gobject' 'totem-plparser'
-)
-makedepends=(
-  'git' 'gobject-introspection' 'intltool' 'itstool' 'meson' 'python'
-)
-optdepends=('easytag: Modify tags'
-'flatpak: Flatpak Portal'
-'gst-libav: FFmpeg plugin for GStreamer'
-'gst-plugins-bad: "Bad" plugin libraries'
-'gst-plugins-base: "Base" plugin libraries'
-'gst-plugins-good: "Good" plugin libraries'
-'gst-plugins-ugly: "Ugly" plugin libraries'
-'kid3-qt: Store covers in tags'
-'libsecret: Last.FM support'
-'python-pillow: Blur background in lyrics view'
-'python-pylast: Last.FM support'
-'python-wikipedia: Wikipedia support')
-source=("git+https://gitlab.gnome.org/World/lollypop.git#tag=${pkgver};)
-sha256sums=('SKIP')
-
-build() {
-  arch-meson lollypop build \
---libexecdir='lib/lollypop'
-  ninja -C build
-}
-
-package() {
-  DESTDIR="${pkgdir}" ninja -C build install
-}
-
-# vim: ts=2 sw=2 et:

Copied: lollypop/repos/community-any/PKGBUILD (from rev 434607, 
lollypop/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-19 20:06:33 UTC (rev 434608)
@@ -0,0 +1,55 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: kirek 
+# Contributor: Cédric Bellegarde 
+
+pkgname=lollypop
+pkgver=0.9.921
+pkgrel=1
+pkgdesc='Music player for GNOME'
+arch=(any)
+url=https://gitlab.gnome.org/gnumdk/lollypop
+license=(GPL)
+depends=(
+  gst-plugins-base-libs
+  gtk3
+  python-beautifulsoup4
+  python-cairo
+  python-dbus
+  python-gobject
+  python-pillow
+  totem-plparser
+)
+makedepends=(
+  git
+  gobject-introspection
+  intltool
+  itstool
+  meson
+)
+optdepends=(
+  'easytag: Modify tags'
+  'flatpak: Flatpak Portal'
+  'gst-libav: FFmpeg plugin for GStreamer'
+  'gst-plugins-bad: "Bad" plugin libraries'
+  'gst-plugins-base: "Base" plugin libraries'
+  'gst-plugins-good: "Good" plugin libraries'
+  'gst-plugins-ugly: "Ugly" plugin libraries'
+  'kid3-qt: Store covers in tags'
+  'libsecret: Last.FM support'
+  'python-pylast: Last.FM support'
+  'python-wikipedia: Wikipedia support'
+)
+source=(git+https://gitlab.gnome.org/World/lollypop.git#tag=${pkgver})
+sha256sums=(SKIP)
+
+build() {
+  arch-meson lollypop build \
+--libexecdir='lib/lollypop'
+  ninja -C build
+}
+
+package() {
+  DESTDIR="${pkgdir}" ninja -C build install
+}
+
+# vim: ts=2 sw=2 et:


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

2019-02-19 Thread Felix Yan via arch-commits
Date: Tuesday, February 19, 2019 @ 20:05:57
  Author: felixonmars
Revision: 434607

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-optparse-simple/repos/community-staging-x86_64/
  haskell-optparse-simple/repos/community-staging-x86_64/PKGBUILD
(from rev 434606, haskell-optparse-simple/trunk/PKGBUILD)

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

Copied: haskell-optparse-simple/repos/community-staging-x86_64/PKGBUILD (from 
rev 434606, haskell-optparse-simple/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-02-19 20:05:57 UTC (rev 434607)
@@ -0,0 +1,44 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=optparse-simple
+pkgname=haskell-optparse-simple
+pkgver=0.1.1.1
+pkgrel=10
+pkgdesc="Simple interface to optparse-applicative"
+url="https://hackage.haskell.org/package/${_hkgname};
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-githash' 'haskell-optparse-applicative')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('7870d6844e4838f4787107796aa230523b61f835ea395985458b8e9b14334713118a0b176b5a34a36adda6e56a2b86ef3a4f9ba6f5eb4e8398f6f7ea9162c840')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+ -f-build-example
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-02-19 Thread Felix Yan via arch-commits
Date: Tuesday, February 19, 2019 @ 20:05:41
  Author: felixonmars
Revision: 434606

upgpkg: haskell-optparse-simple 0.1.1.1-10

rebuild with haskell-src-meta 0.8.1

Modified:
  haskell-optparse-simple/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-19 20:05:03 UTC (rev 434605)
+++ PKGBUILD2019-02-19 20:05:41 UTC (rev 434606)
@@ -4,7 +4,7 @@
 _hkgname=optparse-simple
 pkgname=haskell-optparse-simple
 pkgver=0.1.1.1
-pkgrel=9
+pkgrel=10
 pkgdesc="Simple interface to optparse-applicative"
 url="https://hackage.haskell.org/package/${_hkgname};
 license=("BSD")


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

2019-02-19 Thread Maxime Gauduin via arch-commits
Date: Tuesday, February 19, 2019 @ 20:05:03
  Author: alucryd
Revision: 434605

upgpkg: lollypop 0.9.921-1

Modified:
  lollypop/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-19 20:04:55 UTC (rev 434604)
+++ PKGBUILD2019-02-19 20:05:03 UTC (rev 434605)
@@ -3,33 +3,44 @@
 # Contributor: Cédric Bellegarde 
 
 pkgname=lollypop
-pkgver=0.9.916
+pkgver=0.9.921
 pkgrel=1
 pkgdesc='Music player for GNOME'
-arch=('any')
-url='https://gitlab.gnome.org/gnumdk/lollypop'
-license=('GPL')
+arch=(any)
+url=https://gitlab.gnome.org/gnumdk/lollypop
+license=(GPL)
 depends=(
-  'gst-plugins-base-libs' 'gtk3' 'python-beautifulsoup4' 'python-cairo'
-  'python-dbus' 'python-gobject' 'totem-plparser'
+  gst-plugins-base-libs
+  gtk3
+  python-beautifulsoup4
+  python-cairo
+  python-dbus
+  python-gobject
+  python-pillow
+  totem-plparser
 )
 makedepends=(
-  'git' 'gobject-introspection' 'intltool' 'itstool' 'meson' 'python'
+  git
+  gobject-introspection
+  intltool
+  itstool
+  meson
 )
-optdepends=('easytag: Modify tags'
-'flatpak: Flatpak Portal'
-'gst-libav: FFmpeg plugin for GStreamer'
-'gst-plugins-bad: "Bad" plugin libraries'
-'gst-plugins-base: "Base" plugin libraries'
-'gst-plugins-good: "Good" plugin libraries'
-'gst-plugins-ugly: "Ugly" plugin libraries'
-'kid3-qt: Store covers in tags'
-'libsecret: Last.FM support'
-'python-pillow: Blur background in lyrics view'
-'python-pylast: Last.FM support'
-'python-wikipedia: Wikipedia support')
-source=("git+https://gitlab.gnome.org/World/lollypop.git#tag=${pkgver};)
-sha256sums=('SKIP')
+optdepends=(
+  'easytag: Modify tags'
+  'flatpak: Flatpak Portal'
+  'gst-libav: FFmpeg plugin for GStreamer'
+  'gst-plugins-bad: "Bad" plugin libraries'
+  'gst-plugins-base: "Base" plugin libraries'
+  'gst-plugins-good: "Good" plugin libraries'
+  'gst-plugins-ugly: "Ugly" plugin libraries'
+  'kid3-qt: Store covers in tags'
+  'libsecret: Last.FM support'
+  'python-pylast: Last.FM support'
+  'python-wikipedia: Wikipedia support'
+)
+source=(git+https://gitlab.gnome.org/World/lollypop.git#tag=${pkgver})
+sha256sums=(SKIP)
 
 build() {
   arch-meson lollypop build \


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

2019-02-19 Thread Felix Yan via arch-commits
Date: Tuesday, February 19, 2019 @ 20:04:55
  Author: felixonmars
Revision: 434604

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: 
haskell-interpolatedstring-perl6/repos/community-staging-x86_64/PKGBUILD (from 
rev 434603, haskell-interpolatedstring-perl6/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-02-19 20:04:55 UTC (rev 434604)
@@ -0,0 +1,37 @@
+# Maintainer: Felix Yan 
+
+_hkgname=interpolatedstring-perl6
+pkgname=haskell-interpolatedstring-perl6
+pkgver=1.0.1
+pkgrel=12
+pkgdesc="QuasiQuoter for Perl6-style multi-line interpolated strings"
+url="https://github.com/audreyt/interpolatedstring-perl6;
+license=('custom:PublicDomain')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-src-meta')
+makedepends=('ghc')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('e3b793515bda8c04f9b6ff0bc61614fb1e9e2cbad79592333c09d7d134e3d83ec341049b68debf391fac0760b6f01aa8c6817d69207e0db42e239e9eb3f2385d')
+
+build() {
+cd $_hkgname-$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
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-02-19 Thread Felix Yan via arch-commits
Date: Tuesday, February 19, 2019 @ 20:04:39
  Author: felixonmars
Revision: 434603

upgpkg: haskell-interpolatedstring-perl6 1.0.1-12

rebuild with haskell-src-meta 0.8.1

Modified:
  haskell-interpolatedstring-perl6/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-19 20:04:03 UTC (rev 434602)
+++ PKGBUILD2019-02-19 20:04:39 UTC (rev 434603)
@@ -3,7 +3,7 @@
 _hkgname=interpolatedstring-perl6
 pkgname=haskell-interpolatedstring-perl6
 pkgver=1.0.1
-pkgrel=11
+pkgrel=12
 pkgdesc="QuasiQuoter for Perl6-style multi-line interpolated strings"
 url="https://github.com/audreyt/interpolatedstring-perl6;
 license=('custom:PublicDomain')


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

2019-02-19 Thread Felix Yan via arch-commits
Date: Tuesday, February 19, 2019 @ 20:04:03
  Author: felixonmars
Revision: 434602

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-githash/repos/community-staging-x86_64/PKGBUILD (from rev 
434601, haskell-githash/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-02-19 20:04:03 UTC (rev 434602)
@@ -0,0 +1,47 @@
+# Maintainer: Felix Yan 
+
+_hkgname=githash
+pkgname=haskell-githash
+pkgver=0.1.3.1
+pkgrel=15
+pkgdesc="Some handy Template Haskell splices for including the current git 
hash and branch in the code of your project"
+url="https://github.com/snoyberg/githash;
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'git')
+makedepends=('ghc' 'haskell-hpack' 'haskell-hspec' 'haskell-temporary' 
'haskell-unliftio')
+source=("git+https://github.com/snoyberg/githash.git#tag=githash-$pkgver;)
+sha512sums=('SKIP')
+
+prepare() {
+cd $_hkgname
+hpack
+}
+
+build() {
+cd $_hkgname
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-02-19 Thread Felix Yan via arch-commits
Date: Tuesday, February 19, 2019 @ 20:03:46
  Author: felixonmars
Revision: 434601

upgpkg: haskell-githash 0.1.3.1-15

rebuild with haskell-src-meta 0.8.1

Modified:
  haskell-githash/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-19 20:03:20 UTC (rev 434600)
+++ PKGBUILD2019-02-19 20:03:46 UTC (rev 434601)
@@ -3,7 +3,7 @@
 _hkgname=githash
 pkgname=haskell-githash
 pkgver=0.1.3.1
-pkgrel=14
+pkgrel=15
 pkgdesc="Some handy Template Haskell splices for including the current git 
hash and branch in the code of your project"
 url="https://github.com/snoyberg/githash;
 license=('BSD')


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

2019-02-19 Thread Alexander Rødseth via arch-commits
Date: Tuesday, February 19, 2019 @ 20:03:20
  Author: arodseth
Revision: 434600

archrelease: copy trunk to community-x86_64

Added:
  libdom/repos/community-x86_64/PKGBUILD
(from rev 434599, libdom/trunk/PKGBUILD)
Deleted:
  libdom/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-19 20:02:59 UTC (rev 434599)
+++ PKGBUILD2019-02-19 20:03:20 UTC (rev 434600)
@@ -1,42 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-
-pkgname=libdom
-pkgver=0.3.3
-pkgrel=2
-pkgdesc='Implementation of the W3C DOM'
-arch=('x86_64')
-url='http://www.netsurf-browser.org/projects/libdom/' # no https available
-license=('MIT')
-depends=('expat' 'libhubbub>=0.3.5' 'libwapcaplet>=0.4.1')
-makedepends=('netsurf-buildsystem')
-source=("http://download.netsurf-browser.org/libs/releases/$pkgname-$pkgver-src.tar.gz;)
-sha256sums=('e06a987d61d0783b81170ddb920d80802a1616aa7f1a7a458c6fd0564f3929a4')
-
-prepare() {
-  sed -i 's:_BSD_SOURCE:_DEFAULT_SOURCE:' "$pkgname-$pkgver/Makefile"
-}
-
-build() {
-  export CFLAGS="$CFLAGS -shared -fPIC -w"
-  export LDFLAGS="$LDFLAGS -shared -z,now"
-  make -C "$pkgname-$pkgver" \
-INCLUDEDIR=include \
-LIBDIR=lib \
-PREFIX=/usr \
-COMPONENT_TYPE="lib-shared"
-}
-
-package() {
-  make -C "$pkgname-$pkgver" \
-DESTDIR="$pkgdir" \
-INCLUDEDIR=include \
-LIBDIR=lib \
-PREFIX=/usr \
-COMPONENT_TYPE="lib-shared" \
-install
-  install -Dm644 "$pkgname-$pkgver/COPYING" \
-"$pkgdir/usr/share/licenses/$pkgname/COPYING"
-}
-
-# getver: source.netsurf-browser.org/libdom.git
-# vim: ts=2 sw=2 et:

Copied: libdom/repos/community-x86_64/PKGBUILD (from rev 434599, 
libdom/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-19 20:03:20 UTC (rev 434600)
@@ -0,0 +1,42 @@
+# Maintainer: Alexander F. Rødseth 
+
+pkgname=libdom
+pkgver=0.3.3
+pkgrel=3
+pkgdesc='Implementation of the W3C DOM'
+arch=(x86_64)
+url='https://www.netsurf-browser.org/projects/libdom/'
+license=(MIT)
+depends=(expat 'libhubbub>=0.3.5' 'libwapcaplet>=0.4.1')
+makedepends=(netsurf-buildsystem)
+source=("https://download.netsurf-browser.org/libs/releases/$pkgname-$pkgver-src.tar.gz;)
+sha256sums=('e06a987d61d0783b81170ddb920d80802a1616aa7f1a7a458c6fd0564f3929a4')
+
+prepare() {
+  sed -i 's:_BSD_SOURCE:_DEFAULT_SOURCE:' "$pkgname-$pkgver/Makefile"
+}
+
+build() {
+  export CFLAGS="$CFLAGS -shared -fPIC -w"
+  export LDFLAGS="$LDFLAGS -shared -z,now"
+  make -C "$pkgname-$pkgver" \
+INCLUDEDIR=include \
+LIBDIR=lib \
+PREFIX=/usr \
+COMPONENT_TYPE="lib-shared"
+}
+
+package() {
+  make -C "$pkgname-$pkgver" \
+DESTDIR="$pkgdir" \
+INCLUDEDIR=include \
+LIBDIR=lib \
+PREFIX=/usr \
+COMPONENT_TYPE="lib-shared" \
+install
+  install -Dm644 "$pkgname-$pkgver/COPYING" \
+"$pkgdir/usr/share/licenses/$pkgname/COPYING"
+}
+
+# getver: source.netsurf-browser.org/libdom.git
+# vim: ts=2 sw=2 et:


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

2019-02-19 Thread Alexander Rødseth via arch-commits
Date: Tuesday, February 19, 2019 @ 20:02:59
  Author: arodseth
Revision: 434599

upgpkg: libdom 0.3.3-3

Modified:
  libdom/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-19 20:02:52 UTC (rev 434598)
+++ PKGBUILD2019-02-19 20:02:59 UTC (rev 434599)
@@ -2,14 +2,14 @@
 
 pkgname=libdom
 pkgver=0.3.3
-pkgrel=2
+pkgrel=3
 pkgdesc='Implementation of the W3C DOM'
-arch=('x86_64')
-url='http://www.netsurf-browser.org/projects/libdom/' # no https available
-license=('MIT')
-depends=('expat' 'libhubbub>=0.3.5' 'libwapcaplet>=0.4.1')
-makedepends=('netsurf-buildsystem')
-source=("http://download.netsurf-browser.org/libs/releases/$pkgname-$pkgver-src.tar.gz;)
+arch=(x86_64)
+url='https://www.netsurf-browser.org/projects/libdom/'
+license=(MIT)
+depends=(expat 'libhubbub>=0.3.5' 'libwapcaplet>=0.4.1')
+makedepends=(netsurf-buildsystem)
+source=("https://download.netsurf-browser.org/libs/releases/$pkgname-$pkgver-src.tar.gz;)
 sha256sums=('e06a987d61d0783b81170ddb920d80802a1616aa7f1a7a458c6fd0564f3929a4')
 
 prepare() {


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

2019-02-19 Thread Felix Yan via arch-commits
Date: Tuesday, February 19, 2019 @ 20:02:52
  Author: felixonmars
Revision: 434598

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-hpack/repos/community-staging-x86_64/PKGBUILD (from rev 434597, 
haskell-hpack/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-02-19 20:02:52 UTC (rev 434598)
@@ -0,0 +1,47 @@
+# Maintainer: Felix Yan 
+# Contributor: Daniel Nagy 
+# Contributor: Daniel Micay 
+
+pkgname=haskell-hpack
+_hkgname=hpack
+pkgver=0.31.1
+pkgrel=31
+pkgdesc="A modern format for Haskell packages"
+url="https://github.com/sol/hpack#readme;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-bifunctors' 'haskell-cryptonite' 
'haskell-glob'
+ 'haskell-http-client' 'haskell-http-client-tls' 'haskell-http-types'
+ 'haskell-infer-license' 'haskell-scientific' 
'haskell-unordered-containers'
+ 'haskell-vector' 'haskell-yaml')
+makedepends=('ghc' 'haskell-hunit' 'haskell-quickcheck' 'haskell-hspec' 
'haskell-interpolate'
+ 'haskell-mockery' 'haskell-temporary')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-${pkgver}.tar.gz;)
+sha512sums=('b67a5b57cb404c9ae0aae571e3f321ca6a6ae508d642fd5e496c698b21a1c6d73d6d139d4a83b8fbb55df4106d1a749bc8dfb67a5bf4190d42adb91fa893d234')
+
+build() {
+  cd $_hkgname-$pkgver
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+  runhaskell Setup build
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+  cd $_hkgname-$pkgver
+  runhaskell Setup test
+}
+
+package() {
+  cd $_hkgname-$pkgver
+
+  install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh
+  install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+  runhaskell Setup copy --destdir="$pkgdir"
+  install -D -m644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  rm -f "$pkgdir/usr/share/doc/$pkgname/LICENSE"
+}


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

2019-02-19 Thread Felix Yan via arch-commits
Date: Tuesday, February 19, 2019 @ 20:02:26
  Author: felixonmars
Revision: 434597

upgpkg: haskell-hpack 0.31.1-31

rebuild with haskell-src-meta 0.8.1

Modified:
  haskell-hpack/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-19 20:00:17 UTC (rev 434596)
+++ PKGBUILD2019-02-19 20:02:26 UTC (rev 434597)
@@ -5,7 +5,7 @@
 pkgname=haskell-hpack
 _hkgname=hpack
 pkgver=0.31.1
-pkgrel=30
+pkgrel=31
 pkgdesc="A modern format for Haskell packages"
 url="https://github.com/sol/hpack#readme;
 license=("MIT")


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

2019-02-19 Thread Felix Yan via arch-commits
Date: Tuesday, February 19, 2019 @ 20:00:17
  Author: felixonmars
Revision: 434596

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-interpolate/repos/community-staging-x86_64/PKGBUILD (from rev 
434595, haskell-interpolate/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-02-19 20:00:17 UTC (rev 434596)
@@ -0,0 +1,44 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=interpolate
+pkgname=haskell-interpolate
+pkgver=0.2.0
+pkgrel=62
+pkgdesc="String interpolation done right"
+url="https://github.com/sol/interpolate;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-src-meta')
+makedepends=('ghc' 'haskell-base-compat' 'haskell-hspec' 'haskell-quickcheck'
+ 'haskell-quickcheck-instances')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('adc90d7da696c4aea0935c5f85dbf37a1738c89ff3b940804cd7bb4f888e28a445c51db9e0f2e1e66f98646f60964c10d135cef30c13efaaaffee3c65b93c89a')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-02-19 Thread Felix Yan via arch-commits
Date: Tuesday, February 19, 2019 @ 19:59:57
  Author: felixonmars
Revision: 434595

upgpkg: haskell-interpolate 0.2.0-62

rebuild with haskell-src-meta 0.8.1

Modified:
  haskell-interpolate/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-19 19:59:15 UTC (rev 434594)
+++ PKGBUILD2019-02-19 19:59:57 UTC (rev 434595)
@@ -4,7 +4,7 @@
 _hkgname=interpolate
 pkgname=haskell-interpolate
 pkgver=0.2.0
-pkgrel=61
+pkgrel=62
 pkgdesc="String interpolation done right"
 url="https://github.com/sol/interpolate;
 license=("MIT")


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

2019-02-19 Thread Felix Yan via arch-commits
Date: Tuesday, February 19, 2019 @ 19:57:17
  Author: felixonmars
Revision: 434590

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-aeson-qq/repos/community-staging-x86_64/
  haskell-aeson-qq/repos/community-staging-x86_64/PKGBUILD
(from rev 434589, haskell-aeson-qq/trunk/PKGBUILD)

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

Copied: haskell-aeson-qq/repos/community-staging-x86_64/PKGBUILD (from rev 
434589, haskell-aeson-qq/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-02-19 19:57:17 UTC (rev 434590)
@@ -0,0 +1,44 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=aeson-qq
+pkgname=haskell-aeson-qq
+pkgver=0.8.2
+pkgrel=95
+pkgdesc="JSON quasiquoter for Haskell"
+url="https://github.com/sol/aeson-qq;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-base-compat' 'haskell-attoparsec' 
'haskell-scientific'
+ 'haskell-vector' 'haskell-aeson' 'haskell-src-meta')
+makedepends=('ghc' 'haskell-hspec')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('bae36bcda3adc946253f373158a7e2b1604bb0d1dfb733295be08c2497c22d2b114849dc02a7846dac30394f112181fc8531837f005d004d8bdf6f3bd79724a3')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


[arch-commits] Commit in haskell-hspec-wai-json/repos (2 files)

2019-02-19 Thread Felix Yan via arch-commits
Date: Tuesday, February 19, 2019 @ 19:59:15
  Author: felixonmars
Revision: 434594

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-hspec-wai-json/repos/community-staging-x86_64/
  haskell-hspec-wai-json/repos/community-staging-x86_64/PKGBUILD
(from rev 434593, haskell-hspec-wai-json/trunk/PKGBUILD)

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

Copied: haskell-hspec-wai-json/repos/community-staging-x86_64/PKGBUILD (from 
rev 434593, haskell-hspec-wai-json/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-02-19 19:59:15 UTC (rev 434594)
@@ -0,0 +1,44 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hspec-wai-json
+pkgname=haskell-hspec-wai-json
+pkgver=0.9.2
+pkgrel=8
+pkgdesc="Testing JSON APIs with hspec-wai"
+url="https://github.com/hspec/hspec-wai;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-aeson-qq' 
'haskell-case-insensitive'
+ 'haskell-hspec-wai')
+makedepends=('ghc' 'haskell-hspec')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('244d94f9099199a32f0de0412b053ad0d968c88b725f476414707caf95caaaedc07d7d5a301fb4aeaf6586cef54effd93f8ca1cf053031219ca1e0a08bcfb0b7')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


[arch-commits] Commit in haskell-hspec-wai-json/trunk (PKGBUILD)

2019-02-19 Thread Felix Yan via arch-commits
Date: Tuesday, February 19, 2019 @ 19:58:56
  Author: felixonmars
Revision: 434593

upgpkg: haskell-hspec-wai-json 0.9.2-8

rebuild with haskell-src-meta 0.8.1

Modified:
  haskell-hspec-wai-json/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-19 19:58:10 UTC (rev 434592)
+++ PKGBUILD2019-02-19 19:58:56 UTC (rev 434593)
@@ -4,7 +4,7 @@
 _hkgname=hspec-wai-json
 pkgname=haskell-hspec-wai-json
 pkgver=0.9.2
-pkgrel=7
+pkgrel=8
 pkgdesc="Testing JSON APIs with hspec-wai"
 url="https://github.com/hspec/hspec-wai;
 license=("MIT")


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

2019-02-19 Thread Felix Yan via arch-commits
Date: Tuesday, February 19, 2019 @ 19:58:10
  Author: felixonmars
Revision: 434592

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-here/repos/community-staging-x86_64/PKGBUILD (from rev 434591, 
haskell-here/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-02-19 19:58:10 UTC (rev 434592)
@@ -0,0 +1,38 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=here
+pkgname=haskell-here
+pkgver=1.2.13
+pkgrel=54
+pkgdesc="Here docs & interpolated strings via quasiquotation"
+url="https://github.com/tmhedberg/here;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-src-meta")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('aa6ddfad039a90950389c50699dd5f7230bd1ac9b2b9345d5d0c8e8470707216093553dfe89480c31f19374b905e319b8216b8939051278ae41d79ccc5b160fb')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-02-19 Thread Felix Yan via arch-commits
Date: Tuesday, February 19, 2019 @ 19:57:53
  Author: felixonmars
Revision: 434591

upgpkg: haskell-here 1.2.13-54

rebuild with haskell-src-meta 0.8.1

Modified:
  haskell-here/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-19 19:57:17 UTC (rev 434590)
+++ PKGBUILD2019-02-19 19:57:53 UTC (rev 434591)
@@ -4,7 +4,7 @@
 _hkgname=here
 pkgname=haskell-here
 pkgver=1.2.13
-pkgrel=53
+pkgrel=54
 pkgdesc="Here docs & interpolated strings via quasiquotation"
 url="https://github.com/tmhedberg/here;
 license=("BSD")


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

2019-02-19 Thread Felix Yan via arch-commits
Date: Tuesday, February 19, 2019 @ 19:56:55
  Author: felixonmars
Revision: 434589

upgpkg: haskell-aeson-qq 0.8.2-95

rebuild with haskell-src-meta 0.8.1

Modified:
  haskell-aeson-qq/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-19 19:56:07 UTC (rev 434588)
+++ PKGBUILD2019-02-19 19:56:55 UTC (rev 434589)
@@ -4,7 +4,7 @@
 _hkgname=aeson-qq
 pkgname=haskell-aeson-qq
 pkgver=0.8.2
-pkgrel=94
+pkgrel=95
 pkgdesc="JSON quasiquoter for Haskell"
 url="https://github.com/sol/aeson-qq;
 license=("MIT")


[arch-commits] Commit in haskell-src-meta/trunk (PKGBUILD haskell-src-exts-1.21.patch)

2019-02-19 Thread Felix Yan via arch-commits
Date: Tuesday, February 19, 2019 @ 19:55:50
  Author: felixonmars
Revision: 434587

upgpkg: haskell-src-meta 0.8.1-1

rebuild with haskell-src-meta 0.8.1

Modified:
  haskell-src-meta/trunk/PKGBUILD
Deleted:
  haskell-src-meta/trunk/haskell-src-exts-1.21.patch

-+
 PKGBUILD|   16 
 haskell-src-exts-1.21.patch |   41 -
 2 files changed, 4 insertions(+), 53 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-02-19 19:52:28 UTC (rev 434586)
+++ PKGBUILD2019-02-19 19:55:50 UTC (rev 434587)
@@ -3,8 +3,8 @@
 
 _hkgname=haskell-src-meta
 pkgname=haskell-src-meta
-pkgver=0.8.0.3
-pkgrel=33
+pkgver=0.8.1
+pkgrel=1
 pkgdesc="Parse source to template-haskell abstract syntax"
 url="https://github.com/bmillwood/haskell-src-meta;
 license=("BSD")
@@ -11,17 +11,9 @@
 arch=('x86_64')
 depends=('ghc-libs' 'haskell-src-exts' 'haskell-syb' 'haskell-th-orphans')
 makedepends=('ghc' 'haskell-test-framework' 'haskell-test-framework-hunit')
-source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;
-haskell-src-exts-1.21.patch)
-sha512sums=('aaa17f71f8105abca0047cfa34a941bfe8b5cffb31cf788356f1f8e7c51b446d58b9fcb343c9206746b126b8360a2d0198a06400f0868382e59d9ddec312ad13'
-
'f1dde1ef4921d31d2be50e5e0080cb39ef40a8ab16c31640b2166f62921a5f83cf52d6e3cada579fb0a9798e24f507bf6a8d394271baeedad2afb383efb49024')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('3bc635f710a7fe8c848687d46459854e3cc6df5b1782e5076a6a92d567d19c438d94f6ed6eacc5042fb785be58ad0194cdf69819dc24429f40a2014f73259047')
 
-prepare() {
-cd $_hkgname-$pkgver
-patch -p1 -i ../haskell-src-exts-1.21.patch
-sed -i -e 's/< *2.14/<3/' -e 's/< *4.12/<5/' -e 's/< *1.21/<2/' 
$_hkgname.cabal
-}
-
 build() {
 cd $_hkgname-$pkgver
 

Deleted: haskell-src-exts-1.21.patch
===
--- haskell-src-exts-1.21.patch 2019-02-19 19:52:28 UTC (rev 434586)
+++ haskell-src-exts-1.21.patch 2019-02-19 19:55:50 UTC (rev 434587)
@@ -1,41 +0,0 @@
-From 109ee29d5fd0f4e23fdd2f80eb122d66341b64a9 Mon Sep 17 00:00:00 2001
-From: Galen Huntington 
-Date: Sun, 23 Dec 2018 22:57:21 -0800
-Subject: [PATCH] Support haskell-src-exts 1.21.
-

- haskell-src-meta.cabal| 2 +-
- src/Language/Haskell/Meta/Syntax/Translate.hs | 2 ++
- 2 files changed, 3 insertions(+), 1 deletion(-)
-
-diff --git a/haskell-src-meta.cabal b/haskell-src-meta.cabal
-index 5c45b07..c189c3b 100644
 a/haskell-src-meta.cabal
-+++ b/haskell-src-meta.cabal
-@@ -18,7 +18,7 @@ extra-source-files: ChangeLog README.md examples/*.hs
- 
- library
-   build-depends:   base >= 4.6 && < 4.12,
--   haskell-src-exts >= 1.18 && < 1.21,
-+   haskell-src-exts >= 1.18 && < 1.22,
-pretty >= 1.0 && < 1.2,
-syb >= 0.1 && < 0.8,
-template-haskell >= 2.8 && < 2.14,
-diff --git a/src/Language/Haskell/Meta/Syntax/Translate.hs 
b/src/Language/Haskell/Meta/Syntax/Translate.hs
-index 0dba4f5..aa95cff 100644
 a/src/Language/Haskell/Meta/Syntax/Translate.hs
-+++ b/src/Language/Haskell/Meta/Syntax/Translate.hs
-@@ -314,11 +314,13 @@ instance ToName TyVarBndr where
-   toName (PlainTV n) = n
-   toName (KindedTV n _) = n
- 
-+#if !MIN_VERSION_haskell_src_exts(1,21,0)
- instance ToType (Hs.Kind l) where
-   toType (Hs.KindStar _) = StarT
-   toType (Hs.KindFn _ k1 k2) = toType k1 .->. toType k2
-   toType (Hs.KindParen _ kp) = toType kp
-   toType (Hs.KindVar _ n) = VarT (toName n)
-+#endif
- 
- toKind :: Hs.Kind l -> Kind
- toKind = toType


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

2019-02-19 Thread Felix Yan via arch-commits
Date: Tuesday, February 19, 2019 @ 19:56:07
  Author: felixonmars
Revision: 434588

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-src-meta/repos/community-staging-x86_64/PKGBUILD (from rev 
434587, haskell-src-meta/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-02-19 19:56:07 UTC (rev 434588)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=haskell-src-meta
+pkgname=haskell-src-meta
+pkgver=0.8.1
+pkgrel=1
+pkgdesc="Parse source to template-haskell abstract syntax"
+url="https://github.com/bmillwood/haskell-src-meta;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-src-exts' 'haskell-syb' 'haskell-th-orphans')
+makedepends=('ghc' 'haskell-test-framework' 'haskell-test-framework-hunit')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('3bc635f710a7fe8c848687d46459854e3cc6df5b1782e5076a6a92d567d19c438d94f6ed6eacc5042fb785be58ad0194cdf69819dc24429f40a2014f73259047')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2019-02-19 Thread Andrew Crerar via arch-commits
Date: Tuesday, February 19, 2019 @ 19:52:28
  Author: andrewsc
Revision: 434586

upgpkg: firefox-developer-edition 66.0b9-1

firefox-developer-edition: Updating to 66.0b9

Modified:
  firefox-developer-edition/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-19 19:49:53 UTC (rev 434585)
+++ PKGBUILD2019-02-19 19:52:28 UTC (rev 434586)
@@ -2,7 +2,7 @@
 # Contributor: Jan Alexander Steffens (heftig) 
 
 pkgname=firefox-developer-edition
-pkgver=66.0b8
+pkgver=66.0b9
 pkgrel=1
 pkgdesc="Developer Edition of the popular Firefox web browser"
 arch=('x86_64')


[arch-commits] Commit in git-annex/trunk (PKGBUILD ghc-8.4.patch)

2019-02-19 Thread Felix Yan via arch-commits
Date: Tuesday, February 19, 2019 @ 19:49:35
  Author: felixonmars
Revision: 434584

upgpkg: git-annex 7.20190219-1

Modified:
  git-annex/trunk/PKGBUILD
Deleted:
  git-annex/trunk/ghc-8.4.patch

---+
 PKGBUILD  |8 +--
 ghc-8.4.patch |  121 
 2 files changed, 4 insertions(+), 125 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-02-19 19:38:23 UTC (rev 434583)
+++ PKGBUILD2019-02-19 19:49:35 UTC (rev 434584)
@@ -2,8 +2,8 @@
 # Contributor: Arch Haskell Team 
 
 pkgname=git-annex
-pkgver=7.20190129
-pkgrel=16
+pkgver=7.20190219
+pkgrel=1
 pkgdesc="Manage files with git, without checking their contents into git"
 url="http://git-annex.branchable.com/;
 license=("AGPL3")
@@ -33,7 +33,7 @@
 
 prepare() {
   cd git-annex
-  sed -i '1i{-# language NoMonadFailDesugaring #-}' Remote/Glacier.hs 
Remote/Ddar.hs Remote/Helper/Ssh.hs Remote/Bup.hs Annex/YoutubeDl.hs 
Remote/Git.hs Assistant/TransferQueue.hs Assistant/Threads/RemoteControl.hs 
Test.hs
+  #sed -i '1i{-# language NoMonadFailDesugaring #-}' Remote/Glacier.hs 
Remote/Ddar.hs Remote/Helper/Ssh.hs Remote/Bup.hs Annex/YoutubeDl.hs 
Remote/Git.hs Assistant/TransferQueue.hs Assistant/Threads/RemoteControl.hs 
Test.hs
 }
 
 build() {
@@ -42,7 +42,7 @@
   runhaskell Setup configure -O --prefix=/usr --enable-executable-dynamic 
--disable-library-vanilla \
 --docdir="/usr/share/doc/$pkgname" \
 -ftorrentparser -fproduction -fpairing -fwebapp \
--fassistant -fwebdav -fs3 -f-benchmark -fdbus -fmagicmime
+-fassistant -fwebdav -fs3 -f-benchmark -fdbus -fmagicmime -f-networkbsd
   runhaskell Setup build
 }
 

Deleted: ghc-8.4.patch
===
--- ghc-8.4.patch   2019-02-19 19:38:23 UTC (rev 434583)
+++ ghc-8.4.patch   2019-02-19 19:49:35 UTC (rev 434584)
@@ -1,121 +0,0 @@
-diff --git a/Command/Info.hs b/Command/Info.hs
-index c9a314056a..3ae82f5532 100644
 a/Command/Info.hs
-+++ b/Command/Info.hs
-@@ -56,15 +56,17 @@ data KeyData = KeyData
-   , backendsKeys :: M.Map KeyVariety Integer
-   }
- 
--instance Monoid KeyData where
--  mempty = KeyData 0 0 0 M.empty
--  mappend a b = KeyData
-+instance Semigroup KeyData where
-+  a <> b = KeyData
-   { countKeys = countKeys a + countKeys b
-   , sizeKeys = sizeKeys a + sizeKeys b
-   , unknownSizeKeys = unknownSizeKeys a + unknownSizeKeys b
-   , backendsKeys = backendsKeys a <> backendsKeys b
-   }
- 
-+instance Monoid KeyData where
-+  mempty = KeyData 0 0 0 M.empty
-+
- data NumCopiesStats = NumCopiesStats
-   { numCopiesVarianceMap :: M.Map Variance Integer
-   }
-diff --git a/Git/Fsck.hs b/Git/Fsck.hs
-index a716b56e3a..e7061cb812 100644
 a/Git/Fsck.hs
-+++ b/Git/Fsck.hs
-@@ -44,15 +44,17 @@ type MissingObjects = S.Set Sha
- 
- type Truncated = Bool
- 
-+instance Semigroup FsckOutput where
-+  (<>) (FsckOutput s1 t1) (FsckOutput s2 t2) = FsckOutput (S.union s1 s2) 
(t1 || t2)
-+  (<>) (FsckOutput s t) _ = FsckOutput s t
-+  (<>) _ (FsckOutput s t) = FsckOutput s t
-+  (<>) NoFsckOutput NoFsckOutput = NoFsckOutput
-+  (<>) AllDuplicateEntriesWarning AllDuplicateEntriesWarning = 
AllDuplicateEntriesWarning
-+  (<>) AllDuplicateEntriesWarning NoFsckOutput = 
AllDuplicateEntriesWarning
-+  (<>) NoFsckOutput AllDuplicateEntriesWarning = 
AllDuplicateEntriesWarning
-+
- instance Monoid FsckOutput where
-   mempty = NoFsckOutput
--  mappend (FsckOutput s1 t1) (FsckOutput s2 t2) = FsckOutput (S.union s1 
s2) (t1 || t2)
--  mappend (FsckOutput s t) _ = FsckOutput s t
--  mappend _ (FsckOutput s t) = FsckOutput s t
--  mappend NoFsckOutput NoFsckOutput = NoFsckOutput
--  mappend AllDuplicateEntriesWarning AllDuplicateEntriesWarning = 
AllDuplicateEntriesWarning
--  mappend AllDuplicateEntriesWarning NoFsckOutput = 
AllDuplicateEntriesWarning
--  mappend NoFsckOutput AllDuplicateEntriesWarning = 
AllDuplicateEntriesWarning
- 
- {- Runs fsck to find some of the broken objects in the repository.
-  - May not find all broken objects, if fsck fails on bad data in some of
-diff --git a/Types/DesktopNotify.hs b/Types/DesktopNotify.hs
-index e6df05ab1c..83aeef7c54 100644
 a/Types/DesktopNotify.hs
-+++ b/Types/DesktopNotify.hs
-@@ -16,10 +16,12 @@ data DesktopNotify = DesktopNotify
-   }
-   deriving (Show)
- 
-+instance Semigroup DesktopNotify where
-+(<>) (DesktopNotify s1 f1) (DesktopNotify s2 f2) =
-+DesktopNotify (s1 || s2) (f1 || f2)
-+
- instance Monoid DesktopNotify where
-   mempty = DesktopNotify False False
--  mappend (DesktopNotify s1 f1) (DesktopNotify s2 f2) =
--  DesktopNotify (s1 || s2) (f1 || f2)
- 
- mkNotifyStart :: DesktopNotify
- mkNotifyStart = DesktopNotify True False
-diff --git 

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

2019-02-19 Thread Felix Yan via arch-commits
Date: Tuesday, February 19, 2019 @ 19:49:53
  Author: felixonmars
Revision: 434585

archrelease: copy trunk to community-x86_64

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

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

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

Copied: git-annex/repos/community-x86_64/PKGBUILD (from rev 434584, 
git-annex/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-19 19:49:53 UTC (rev 434585)
@@ -0,0 +1,56 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=git-annex
+pkgver=7.20190219
+pkgrel=1
+pkgdesc="Manage files with git, without checking their contents into git"
+url="http://git-annex.branchable.com/;
+license=("AGPL3")
+arch=('x86_64')
+depends=('git' 'lsof' 'rsync' 'ghc-libs' 'haskell-aeson' 'haskell-async' 
'haskell-aws'
+ 'haskell-blaze-builder' 'haskell-bloomfilter' 'haskell-byteable' 
'haskell-case-insensitive'
+ 'haskell-clientsession' 'haskell-concurrent-output' 
'haskell-connection' 'haskell-conduit'
+ 'haskell-crypto-api' 'haskell-cryptonite' 'haskell-data-default' 
'haskell-dav'
+ 'haskell-dbus' 'haskell-disk-free-space' 'haskell-dlist' 
'haskell-edit-distance'
+ 'haskell-exceptions' 'haskell-fdo-notify' 'haskell-feed' 
'haskell-hinotify'
+ 'haskell-hslogger' 'haskell-http-client' 'haskell-http-client-tls' 

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

2019-02-19 Thread Felix Yan via arch-commits
Date: Tuesday, February 19, 2019 @ 19:38:23
  Author: felixonmars
Revision: 434583

archrelease: copy trunk to community-any

Added:
  python-astor/repos/community-any/PKGBUILD
(from rev 434582, python-astor/trunk/PKGBUILD)
  python-astor/repos/community-any/string-newline.patch
(from rev 434582, python-astor/trunk/string-newline.patch)
Deleted:
  python-astor/repos/community-any/PKGBUILD

--+
 PKGBUILD |   88 -
 string-newline.patch |   56 +++
 2 files changed, 92 insertions(+), 52 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-19 19:38:05 UTC (rev 434582)
+++ PKGBUILD2019-02-19 19:38:23 UTC (rev 434583)
@@ -1,52 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgbase=python-astor
-pkgname=('python-astor' 'python2-astor')
-pkgver=0.7.1
-pkgrel=1
-pkgdesc="Read/rewrite/write Python ASTs"
-arch=('any')
-license=('BSD')
-url="http://astor.rtfd.org/;
-makedepends=('python-setuptools' 'python2-setuptools')
-checkdepends=('python-nose' 'python2-nose' 'python2-unittest2')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/berkerpeksag/astor/archive/$pkgver.tar.gz;)
-sha512sums=('02764e5751e4c4b0ffa83da262b87e0a6bf027461529a99d3ca01a415db0896754f2b3f278e8a28f9bce4972ee7a75eec4eec5ac47d1064e6d6656a007b38a64')
-
-prepare() {
-  cp -a astor-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir"/astor-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/astor-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  # https://github.com/berkerpeksag/astor/issues/89
-  cd "$srcdir"/astor-$pkgver
-  nosetests3 || warning "Tests failed"
-
-  cd "$srcdir"/astor-$pkgver-py2
-  nosetests2
-}
-
-package_python-astor() {
-  depends=('python')
-
-  cd astor-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-astor() {
-  depends=('python2')
-
-  cd astor-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-astor/repos/community-any/PKGBUILD (from rev 434582, 
python-astor/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-19 19:38:23 UTC (rev 434583)
@@ -0,0 +1,36 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-astor
+pkgver=0.7.1
+pkgrel=2
+pkgdesc="Read/rewrite/write Python ASTs"
+arch=('any')
+license=('BSD')
+url="http://astor.rtfd.org/;
+depends=('python')
+makedepends=('python-setuptools')
+checkdepends=('python-nose')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/berkerpeksag/astor/archive/$pkgver.tar.gz;
+string-newline.patch)
+sha512sums=('02764e5751e4c4b0ffa83da262b87e0a6bf027461529a99d3ca01a415db0896754f2b3f278e8a28f9bce4972ee7a75eec4eec5ac47d1064e6d6656a007b38a64'
+
'ad977606c1b0374dccece65a9743e875e250e86d923c987eee7babb09f1209a874a7b447f253e1666364da32e309579d261ac70cf32b3d909c9fe78501b19cb8')
+
+prepare() {
+  patch -d astor-$pkgver -p1 -i ../string-newline.patch
+}
+
+build() {
+  cd astor-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd astor-$pkgver
+  nosetests3 || warning "https://github.com/berkerpeksag/astor/issues/124;
+}
+
+package() {
+  cd astor-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}

Copied: python-astor/repos/community-any/string-newline.patch (from rev 434582, 
python-astor/trunk/string-newline.patch)
===
--- string-newline.patch(rev 0)
+++ string-newline.patch2019-02-19 19:38:23 UTC (rev 434583)
@@ -0,0 +1,56 @@
+commit 33f0e57bc84f0cd5cdf994127d81c99f2a23f659
+Author: Felix Yan 
+Date:   Wed Feb 20 01:56:35 2019 +0800
+
+Fix string parsing with newline
+
+When looping over a joined str, if a node is ast.Str and the value is
+just a newline "\n", the write() function adds an additional indentation
+after it, which fails to represent the original string. By calling
+self.result.append() here directly the issue is resolved.
+
+The added test could show the issue. With code_gen unmodifed, it fails
+with the following error:
+
+```
+AssertionError: "if 1:\nx = f'{host}\\n\\t{port}\\n'" != "if
+1:\nx = f'{host}\\n\\t{port}\\n'"
+  if 1:
+  - x = f'{host}\n\t{port}\n'?
+  
+  + x = f'{host}\n\t{port}\n'
+```
+
+Which is exactly the problem.
+
+This fixes parsing issues with many of Python 3.7's stdlib.
+
+diff --git a/astor/code_gen.py b/astor/code_gen.py
+index 157d2cc..453d108 100644
+--- a/astor/code_gen.py
 b/astor/code_gen.py

[arch-commits] Commit in python-astor/trunk (PKGBUILD string-newline.patch)

2019-02-19 Thread Felix Yan via arch-commits
Date: Tuesday, February 19, 2019 @ 19:38:05
  Author: felixonmars
Revision: 434582

upgpkg: python-astor 0.7.1-2

remove python2 sibling

Added:
  python-astor/trunk/string-newline.patch
Modified:
  python-astor/trunk/PKGBUILD

--+
 PKGBUILD |   43 -
 string-newline.patch |   56 +
 2 files changed, 70 insertions(+), 29 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-02-19 19:33:48 UTC (rev 434581)
+++ PKGBUILD2019-02-19 19:38:05 UTC (rev 434582)
@@ -1,51 +1,36 @@
 # Maintainer: Felix Yan 
 
-pkgbase=python-astor
-pkgname=('python-astor' 'python2-astor')
+pkgname=python-astor
 pkgver=0.7.1
-pkgrel=1
+pkgrel=2
 pkgdesc="Read/rewrite/write Python ASTs"
 arch=('any')
 license=('BSD')
 url="http://astor.rtfd.org/;
-makedepends=('python-setuptools' 'python2-setuptools')
-checkdepends=('python-nose' 'python2-nose' 'python2-unittest2')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/berkerpeksag/astor/archive/$pkgver.tar.gz;)
-sha512sums=('02764e5751e4c4b0ffa83da262b87e0a6bf027461529a99d3ca01a415db0896754f2b3f278e8a28f9bce4972ee7a75eec4eec5ac47d1064e6d6656a007b38a64')
+depends=('python')
+makedepends=('python-setuptools')
+checkdepends=('python-nose')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/berkerpeksag/astor/archive/$pkgver.tar.gz;
+string-newline.patch)
+sha512sums=('02764e5751e4c4b0ffa83da262b87e0a6bf027461529a99d3ca01a415db0896754f2b3f278e8a28f9bce4972ee7a75eec4eec5ac47d1064e6d6656a007b38a64'
+
'ad977606c1b0374dccece65a9743e875e250e86d923c987eee7babb09f1209a874a7b447f253e1666364da32e309579d261ac70cf32b3d909c9fe78501b19cb8')
 
 prepare() {
-  cp -a astor-$pkgver{,-py2}
+  patch -d astor-$pkgver -p1 -i ../string-newline.patch
 }
 
 build() {
-  cd "$srcdir"/astor-$pkgver
+  cd astor-$pkgver
   python setup.py build
-
-  cd "$srcdir"/astor-$pkgver-py2
-  python2 setup.py build
 }
 
 check() {
-  # https://github.com/berkerpeksag/astor/issues/89
-  cd "$srcdir"/astor-$pkgver
-  nosetests3 || warning "Tests failed"
-
-  cd "$srcdir"/astor-$pkgver-py2
-  nosetests2
+  cd astor-$pkgver
+  nosetests3 || warning "https://github.com/berkerpeksag/astor/issues/124;
 }
 
-package_python-astor() {
-  depends=('python')
-
+package() {
   cd astor-$pkgver
   python setup.py install --root="$pkgdir" --optimize=1
   install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
 }
-
-package_python2-astor() {
-  depends=('python2')
-
-  cd astor-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Added: string-newline.patch
===
--- string-newline.patch(rev 0)
+++ string-newline.patch2019-02-19 19:38:05 UTC (rev 434582)
@@ -0,0 +1,56 @@
+commit 33f0e57bc84f0cd5cdf994127d81c99f2a23f659
+Author: Felix Yan 
+Date:   Wed Feb 20 01:56:35 2019 +0800
+
+Fix string parsing with newline
+
+When looping over a joined str, if a node is ast.Str and the value is
+just a newline "\n", the write() function adds an additional indentation
+after it, which fails to represent the original string. By calling
+self.result.append() here directly the issue is resolved.
+
+The added test could show the issue. With code_gen unmodifed, it fails
+with the following error:
+
+```
+AssertionError: "if 1:\nx = f'{host}\\n\\t{port}\\n'" != "if
+1:\nx = f'{host}\\n\\t{port}\\n'"
+  if 1:
+  - x = f'{host}\n\t{port}\n'?
+  
+  + x = f'{host}\n\t{port}\n'
+```
+
+Which is exactly the problem.
+
+This fixes parsing issues with many of Python 3.7's stdlib.
+
+diff --git a/astor/code_gen.py b/astor/code_gen.py
+index 157d2cc..453d108 100644
+--- a/astor/code_gen.py
 b/astor/code_gen.py
+@@ -566,7 +566,7 @@ class SourceGenerator(ExplicitNodeVisitor):
+ def recurse(node):
+ for value in node.values:
+ if isinstance(value, ast.Str):
+-self.write(value.s)
++self.result.append(value.s)
+ elif isinstance(value, ast.FormattedValue):
+ with self.delimit('{}'):
+ self.visit(value.value)
+diff --git a/tests/test_code_gen.py b/tests/test_code_gen.py
+index 3a8be7b..0db4279 100644
+--- a/tests/test_code_gen.py
 b/tests/test_code_gen.py
+@@ -516,6 +516,11 @@ class CodegenTestCase(unittest.TestCase, Comparisons):
+ x = f"""{host}\n\t{port}\n"""
+ '''
+ self.assertSrcRoundtripsGtVer(source, (3, 6))
++source = '''
++if 1:
++x = f'{host}\\n\\t{port}\\n'
++'''
++

[arch-commits] Commit in firefox-tree-style-tab/repos/community-any (2 files)

2019-02-19 Thread Daniel M. Capella via arch-commits
Date: Tuesday, February 19, 2019 @ 19:33:48
  Author: polyzen
Revision: 434581

archrelease: copy trunk to community-any

Added:
  firefox-tree-style-tab/repos/community-any/PKGBUILD
(from rev 434580, firefox-tree-style-tab/trunk/PKGBUILD)
Deleted:
  firefox-tree-style-tab/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-19 19:33:21 UTC (rev 434580)
+++ PKGBUILD2019-02-19 19:33:48 UTC (rev 434581)
@@ -1,20 +0,0 @@
-# Maintainer: Daniel M. Capella 
-# Contributor: Jérémie Detrey 
-
-pkgname=firefox-tree-style-tab
-pkgver=2.7.20
-pkgrel=1
-pkgdesc='Firefox extension to show tabs like a tree'
-arch=('any')
-license=('MPL' 'GPL' 'LGPL')
-groups=('firefox-addons')
-url=https://piro.sakura.ne.jp/xul/_treestyletab.html.en
-source=("https://addons.cdn.mozilla.net/user-media/addons/5890/tree_style_tab-$pkgver-fx.xpi;)
-noextract=("${source##*/}")
-sha256sums=('f1a45a994e9cadb5d7215685ad3acf9c54f6c15906af55bd0dad339d06826460')
-
-package() {
-  install -Dm644 "${source##*/}" 
"$pkgdir"/usr/lib/firefox/browser/extensions/treestyle...@piro.sakura.ne.jp.xpi
-}
-
-# vim:set ts=2 sw=2 et:

Copied: firefox-tree-style-tab/repos/community-any/PKGBUILD (from rev 434580, 
firefox-tree-style-tab/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-19 19:33:48 UTC (rev 434581)
@@ -0,0 +1,20 @@
+# Maintainer: Daniel M. Capella 
+# Contributor: Jérémie Detrey 
+
+pkgname=firefox-tree-style-tab
+pkgver=2.7.21
+pkgrel=1
+pkgdesc='Firefox extension to show tabs like a tree'
+arch=('any')
+license=('MPL' 'GPL' 'LGPL')
+groups=('firefox-addons')
+url=https://piro.sakura.ne.jp/xul/_treestyletab.html.en
+source=("https://addons.cdn.mozilla.net/user-media/addons/5890/tree_style_tab-$pkgver-fx.xpi;)
+noextract=("${source##*/}")
+sha256sums=('50f0d9ea2d0a24f4d5c6ce90fd6aab92a95a215fdd719290bd3496e465557917')
+
+package() {
+  install -Dm644 "${source##*/}" 
"$pkgdir"/usr/lib/firefox/browser/extensions/treestyle...@piro.sakura.ne.jp.xpi
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in firefox-tree-style-tab/trunk (PKGBUILD)

2019-02-19 Thread Daniel M. Capella via arch-commits
Date: Tuesday, February 19, 2019 @ 19:33:21
  Author: polyzen
Revision: 434580

upgpkg: firefox-tree-style-tab 2.7.21-1

Modified:
  firefox-tree-style-tab/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-19 18:20:23 UTC (rev 434579)
+++ PKGBUILD2019-02-19 19:33:21 UTC (rev 434580)
@@ -2,7 +2,7 @@
 # Contributor: Jérémie Detrey 
 
 pkgname=firefox-tree-style-tab
-pkgver=2.7.20
+pkgver=2.7.21
 pkgrel=1
 pkgdesc='Firefox extension to show tabs like a tree'
 arch=('any')
@@ -11,7 +11,7 @@
 url=https://piro.sakura.ne.jp/xul/_treestyletab.html.en
 
source=("https://addons.cdn.mozilla.net/user-media/addons/5890/tree_style_tab-$pkgver-fx.xpi;)
 noextract=("${source##*/}")
-sha256sums=('f1a45a994e9cadb5d7215685ad3acf9c54f6c15906af55bd0dad339d06826460')
+sha256sums=('50f0d9ea2d0a24f4d5c6ce90fd6aab92a95a215fdd719290bd3496e465557917')
 
 package() {
   install -Dm644 "${source##*/}" 
"$pkgdir"/usr/lib/firefox/browser/extensions/treestyle...@piro.sakura.ne.jp.xpi


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

2019-02-19 Thread David Runge via arch-commits
Date: Tuesday, February 19, 2019 @ 18:20:23
  Author: dvzrv
Revision: 434579

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-19 18:20:15 UTC (rev 434578)
+++ PKGBUILD2019-02-19 18:20:23 UTC (rev 434579)
@@ -1,46 +0,0 @@
-# Maintainer: David Runge 
-
-_name=etesync
-pkgname=python-etesync
-pkgver=0.7.0
-pkgrel=1
-pkgdesc="Python API to interact with an EteSync server."
-arch=('any')
-url="https://pypi.python.org/pypi/etesync/;
-license=('LGPL')
-depends=('python-appdirs' 'python-asn1crypto' 'python-cffi' 'python-coverage'
-'python-cryptography' 'python-furl' 'python-idna' 'python-orderedmultidict'
-'python-packaging' 'python-peewee' 'python-py' 'python-pyasn1'
-'python-pycparser' 'python-pyparsing' 'python-dateutil' 'python-requests'
-'python-scrypt' 'python-six' 'python-vobject')
-makedepends=('python-setuptools')
-checkdepends=('python-pytest')
-source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz;)
-sha512sums=('ea2771c050c2b7a2cbbded1e9549a62b75e4c990061ed522c97b80260b81265b6374d6e188fa481b94a65977afd9b2f7afd9047f57e3b60bfb0eb85501496030')
-
-prepare() {
-  mv -v "${_name}-${pkgver}" "${pkgname}-${pkgver}"
-}
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  python setup.py build
-}
-
-check() {
-  cd "${pkgname}-${pkgver}"
-  # only run relevant tests:
-  # https://github.com/etesync/pyetesync/issues/5
-  pytest tests/{test_collections.py,test_crypto.py}
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  python setup.py install --skip-build \
---optimize=1 \
---prefix=/usr \
---root="${pkgdir}"
-  install -t "${pkgdir}/usr/share/doc/${pkgname}" \
--vDm 644 {DESCRIPTION.rst,README.md}
-}
-

Copied: python-etesync/repos/community-any/PKGBUILD (from rev 434578, 
python-etesync/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-19 18:20:23 UTC (rev 434579)
@@ -0,0 +1,46 @@
+# Maintainer: David Runge 
+
+_name=etesync
+pkgname=python-etesync
+pkgver=0.8.1
+pkgrel=1
+pkgdesc="Python API to interact with an EteSync server."
+arch=('any')
+url="https://pypi.python.org/pypi/etesync/;
+license=('LGPL')
+depends=('python-appdirs' 'python-asn1crypto' 'python-cffi' 'python-coverage'
+'python-cryptography' 'python-furl' 'python-idna' 'python-orderedmultidict'
+'python-packaging' 'python-peewee' 'python-py' 'python-pyasn1'
+'python-pycparser' 'python-pyparsing' 'python-dateutil' 'python-requests'
+'python-scrypt' 'python-six' 'python-vobject')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest')
+source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz;)
+sha512sums=('7e467aa9981a50fb246c81d703cc48e9fdf2bbecdc7b9d9432cc7bde9fbf88ac21b7967b6cd6f981dee4f6147cbed028bd62fd54fe77aadf9ff30c84bbe6c82f')
+
+prepare() {
+  mv -v "${_name}-${pkgver}" "${pkgname}-${pkgver}"
+}
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  python setup.py build
+}
+
+check() {
+  cd "${pkgname}-${pkgver}"
+  # only run relevant tests:
+  # https://github.com/etesync/pyetesync/issues/5
+  pytest tests/{test_collections.py,test_crypto.py}
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  python setup.py install --skip-build \
+--optimize=1 \
+--prefix=/usr \
+--root="${pkgdir}"
+  install -t "${pkgdir}/usr/share/doc/${pkgname}" \
+-vDm 644 {DESCRIPTION.rst,README.md}
+}
+


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

2019-02-19 Thread David Runge via arch-commits
Date: Tuesday, February 19, 2019 @ 18:20:15
  Author: dvzrv
Revision: 434578

upgpkg: python-etesync 0.8.1-1

Upgrading to 0.8.1.

Modified:
  python-etesync/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-19 18:15:01 UTC (rev 434577)
+++ PKGBUILD2019-02-19 18:20:15 UTC (rev 434578)
@@ -2,7 +2,7 @@
 
 _name=etesync
 pkgname=python-etesync
-pkgver=0.7.0
+pkgver=0.8.1
 pkgrel=1
 pkgdesc="Python API to interact with an EteSync server."
 arch=('any')
@@ -16,7 +16,7 @@
 makedepends=('python-setuptools')
 checkdepends=('python-pytest')
 
source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz;)
-sha512sums=('ea2771c050c2b7a2cbbded1e9549a62b75e4c990061ed522c97b80260b81265b6374d6e188fa481b94a65977afd9b2f7afd9047f57e3b60bfb0eb85501496030')
+sha512sums=('7e467aa9981a50fb246c81d703cc48e9fdf2bbecdc7b9d9432cc7bde9fbf88ac21b7967b6cd6f981dee4f6147cbed028bd62fd54fe77aadf9ff30c84bbe6c82f')
 
 prepare() {
   mv -v "${_name}-${pkgver}" "${pkgname}-${pkgver}"


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

2019-02-19 Thread David Runge via arch-commits
Date: Tuesday, February 19, 2019 @ 18:15:01
  Author: dvzrv
Revision: 434577

archrelease: copy trunk to community-any

Added:
  quodlibet/repos/community-any/PKGBUILD
(from rev 434576, quodlibet/trunk/PKGBUILD)
Deleted:
  quodlibet/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-19 18:14:51 UTC (rev 434576)
+++ PKGBUILD2019-02-19 18:15:01 UTC (rev 434577)
@@ -1,36 +0,0 @@
-# Maintainer: Eric Bélanger 
-
-pkgname=quodlibet
-pkgver=4.2.1
-pkgrel=1
-pkgdesc="An audio library tagger, manager and player"
-arch=('any')
-license=('GPL2')
-url="https://github.com/quodlibet/quodlibet;
-depends=('gtk3' 'python-gobject' 'python-dbus' 'python-cairo' 'python-mutagen' 
'dbus-glib'
- 'gst-plugins-base' 'gst-plugins-good' 'gst-plugins-ugly' 
'python-feedparser')
-optdepends=('gst-libav: for ffmpeg (ASF/WMA) support'
-'gst-plugins-bad: for Musepack support'
-'libkeybinder3: for the multimedia keys support'
-'python-musicbrainzngs: for "MusicBrainz Lookup" plugin'
-'python-pyinotify: for "Automatic library update" plugin'
-   'kakasi: for "Kana/Kanji Simple Inverter" plugin'
-'gst-plugins-bad: for "Audio Pitch/Speed" plugin')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/quodlibet/quodlibet/archive/release-${pkgver}.tar.gz)
-sha1sums=('ff69e8a670cfd6db8121a4395928bc2812a03698')
-
-prepare() {
-  cd ${pkgname}-release-${pkgver}/quodlibet
-# Fix zsh completions dir
-  sed -e 's|vendor-completions|site-functions|' -i gdist/zsh_completions.py
-}
-
-build() {
-  cd ${pkgname}-release-${pkgver}/quodlibet
-  python setup.py build
-}
-
-package() {
-  cd ${pkgname}-release-${pkgver}/quodlibet
-  python setup.py install --root="${pkgdir}"
-}

Copied: quodlibet/repos/community-any/PKGBUILD (from rev 434576, 
quodlibet/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-19 18:15:01 UTC (rev 434577)
@@ -0,0 +1,53 @@
+# Maintainer: David Runge 
+# Contributor: Eric Bélanger 
+
+pkgname=quodlibet
+pkgver=4.2.1
+pkgrel=2
+pkgdesc="An audio library tagger, manager and player"
+arch=('any')
+license=('GPL2')
+url="https://github.com/quodlibet/quodlibet;
+depends=('gst-plugins-base' 'gst-plugins-good' 'gst-plugins-ugly' 'gtk3'
+'python-cairo' 'python-dbus' 'python-feedparser' 'python-gobject'
+'python-mutagen')
+makedepends=('python-pycodestyle' 'python-sphinx_rtd_theme')
+checkdepends=('python-pytest' 'python-xvfbwrapper')
+optdepends=('gst-libav: ffmpeg (ASF/WMA) support'
+'gst-plugins-bad: Musepack support'
+'gst-plugins-bad: Audio Pitch/Speed plugin'
+'kakasi: Kana Kanji Simple Inverter plugin'
+'libkeybinder3: Multimedia keys support'
+'python-musicbrainzngs: MusicBrainz Lookup plugin'
+'python-pyinotify: Automatic library update plugin')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/${pkgname}/${pkgname}/archive/release-${pkgver}.tar.gz;)
+sha512sums=('3817611c887b7c1878ccf852311020ded0a813feec1067f861d1157de6331760166c34992a6e4fe225552ae6ed4472000585fe58a3397faf277ae250f6f3c138')
+
+prepare() {
+  mv -v "${pkgname}-release-${pkgver}" "${pkgname}-${pkgver}"
+  cd "${pkgname}-${pkgver}/${pkgname}"
+  # Fix zsh completions dir
+  sed -e 's|vendor-completions|site-functions|' \
+  -i gdist/zsh_completions.py
+}
+
+build() {
+  cd "${pkgname}-${pkgver}"/${pkgname}
+  python setup.py build
+}
+
+check() {
+  cd "${pkgname}-${pkgver}/${pkgname}"
+  export PYTHONPATH="build:${PYTHONPATH}"
+  # not running useless linter checks
+  py.test -k 'not TPEP8 and not TPyFlakes'
+}
+
+package() {
+  cd "${pkgname}-${pkgver}/${pkgname}"
+  python setup.py install --skip-build \
+--optimize=1 \
+--prefix=/usr \
+--root="${pkgdir}"
+  install -vDm 644 {README,NEWS} -t "${pkgdir}/usr/share/doc/${pkgname}"
+}


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

2019-02-19 Thread David Runge via arch-commits
Date: Tuesday, February 19, 2019 @ 18:14:51
  Author: dvzrv
Revision: 434576

upgpkg: quodlibet 4.2.1-2

Adding current maintainer. Adding (relevant) tests. Skipping build during 
install and optimizing. Adding docs.

Modified:
  quodlibet/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-19 17:54:23 UTC (rev 434575)
+++ PKGBUILD2019-02-19 18:14:51 UTC (rev 434576)
@@ -1,36 +1,53 @@
-# Maintainer: Eric Bélanger 
+# Maintainer: David Runge 
+# Contributor: Eric Bélanger 
 
 pkgname=quodlibet
 pkgver=4.2.1
-pkgrel=1
+pkgrel=2
 pkgdesc="An audio library tagger, manager and player"
 arch=('any')
 license=('GPL2')
 url="https://github.com/quodlibet/quodlibet;
-depends=('gtk3' 'python-gobject' 'python-dbus' 'python-cairo' 'python-mutagen' 
'dbus-glib'
- 'gst-plugins-base' 'gst-plugins-good' 'gst-plugins-ugly' 
'python-feedparser')
-optdepends=('gst-libav: for ffmpeg (ASF/WMA) support'
-'gst-plugins-bad: for Musepack support'
-'libkeybinder3: for the multimedia keys support'
-'python-musicbrainzngs: for "MusicBrainz Lookup" plugin'
-'python-pyinotify: for "Automatic library update" plugin'
-   'kakasi: for "Kana/Kanji Simple Inverter" plugin'
-'gst-plugins-bad: for "Audio Pitch/Speed" plugin')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/quodlibet/quodlibet/archive/release-${pkgver}.tar.gz)
-sha1sums=('ff69e8a670cfd6db8121a4395928bc2812a03698')
+depends=('gst-plugins-base' 'gst-plugins-good' 'gst-plugins-ugly' 'gtk3'
+'python-cairo' 'python-dbus' 'python-feedparser' 'python-gobject'
+'python-mutagen')
+makedepends=('python-pycodestyle' 'python-sphinx_rtd_theme')
+checkdepends=('python-pytest' 'python-xvfbwrapper')
+optdepends=('gst-libav: ffmpeg (ASF/WMA) support'
+'gst-plugins-bad: Musepack support'
+'gst-plugins-bad: Audio Pitch/Speed plugin'
+'kakasi: Kana Kanji Simple Inverter plugin'
+'libkeybinder3: Multimedia keys support'
+'python-musicbrainzngs: MusicBrainz Lookup plugin'
+'python-pyinotify: Automatic library update plugin')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/${pkgname}/${pkgname}/archive/release-${pkgver}.tar.gz;)
+sha512sums=('3817611c887b7c1878ccf852311020ded0a813feec1067f861d1157de6331760166c34992a6e4fe225552ae6ed4472000585fe58a3397faf277ae250f6f3c138')
 
 prepare() {
-  cd ${pkgname}-release-${pkgver}/quodlibet
-# Fix zsh completions dir
-  sed -e 's|vendor-completions|site-functions|' -i gdist/zsh_completions.py
+  mv -v "${pkgname}-release-${pkgver}" "${pkgname}-${pkgver}"
+  cd "${pkgname}-${pkgver}/${pkgname}"
+  # Fix zsh completions dir
+  sed -e 's|vendor-completions|site-functions|' \
+  -i gdist/zsh_completions.py
 }
 
 build() {
-  cd ${pkgname}-release-${pkgver}/quodlibet
+  cd "${pkgname}-${pkgver}"/${pkgname}
   python setup.py build
 }
 
+check() {
+  cd "${pkgname}-${pkgver}/${pkgname}"
+  export PYTHONPATH="build:${PYTHONPATH}"
+  # not running useless linter checks
+  py.test -k 'not TPEP8 and not TPyFlakes'
+}
+
 package() {
-  cd ${pkgname}-release-${pkgver}/quodlibet
-  python setup.py install --root="${pkgdir}"
+  cd "${pkgname}-${pkgver}/${pkgname}"
+  python setup.py install --skip-build \
+--optimize=1 \
+--prefix=/usr \
+--root="${pkgdir}"
+  install -vDm 644 {README,NEWS} -t "${pkgdir}/usr/share/doc/${pkgname}"
 }


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

2019-02-19 Thread Santiago Torres-Arias via arch-commits
Date: Tuesday, February 19, 2019 @ 17:54:23
  Author: sangy
Revision: 434575

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-19 17:54:00 UTC (rev 434574)
+++ PKGBUILD2019-02-19 17:54:23 UTC (rev 434575)
@@ -1,26 +0,0 @@
-# Maintainer : Santiago Torres-Arias 
-# Contributor: smmalis37
-
-pkgname='python-aiorpcx'
-pkgver=0.10.4
-pkgrel=2
-pkgdesc="A generic asyncio library implementation of RPC suitable for an 
application that is a client, server or both."
-url="https://github.com/kyuupichan/aiorpcX/;
-arch=('any')
-license=('MIT')
-depends=('python>=3.6' 'python-attrs')
-makedepends=('python-setuptools')
-source=("https://github.com/kyuupichan/aiorpcX/archive/${pkgver}.tar.gz;)
-
-build() {
-  cd "${srcdir}/aiorpcX-${pkgver}"
-  python setup.py build
-}
-
-package() {
-  cd "${srcdir}/aiorpcX-${pkgver}"
-  python setup.py install --root="$pkgdir/" --optimize=1 --skip-build
-  install -D -m644 LICENCE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}
-
-sha256sums=('df79b7a321043ce5e12f91ad197d6187cf5b0c6f85506d323ad8b44e330104a1')

Copied: python-aiorpcx/repos/community-any/PKGBUILD (from rev 434574, 
python-aiorpcx/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-19 17:54:23 UTC (rev 434575)
@@ -0,0 +1,26 @@
+# Maintainer : Santiago Torres-Arias 
+# Contributor: smmalis37
+
+pkgname='python-aiorpcx'
+pkgver=0.10.5
+pkgrel=2
+pkgdesc="A generic asyncio library implementation of RPC suitable for an 
application that is a client, server or both."
+url="https://github.com/kyuupichan/aiorpcX/;
+arch=('any')
+license=('MIT')
+depends=('python>=3.6' 'python-attrs')
+makedepends=('python-setuptools')
+source=("https://github.com/kyuupichan/aiorpcX/archive/${pkgver}.tar.gz;)
+sha256sums=('53c2ee8453c754587ef19e7e6b431a783428d10aa9c18ca0a753ebb82f2361ff')
+
+build() {
+  cd "${srcdir}/aiorpcX-${pkgver}"
+  python setup.py build
+}
+
+package() {
+  cd "${srcdir}/aiorpcX-${pkgver}"
+  python setup.py install --root="$pkgdir/" --optimize=1 --skip-build
+  install -D -m644 LICENCE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+


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

2019-02-19 Thread Santiago Torres-Arias via arch-commits
Date: Tuesday, February 19, 2019 @ 17:54:00
  Author: sangy
Revision: 434574

upgpkg: python-aiorpcx 0.10.5-2

Modified:
  python-aiorpcx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-19 17:49:40 UTC (rev 434573)
+++ PKGBUILD2019-02-19 17:54:00 UTC (rev 434574)
@@ -2,7 +2,7 @@
 # Contributor: smmalis37
 
 pkgname='python-aiorpcx'
-pkgver=0.10.4
+pkgver=0.10.5
 pkgrel=2
 pkgdesc="A generic asyncio library implementation of RPC suitable for an 
application that is a client, server or both."
 url="https://github.com/kyuupichan/aiorpcX/;
@@ -11,6 +11,7 @@
 depends=('python>=3.6' 'python-attrs')
 makedepends=('python-setuptools')
 source=("https://github.com/kyuupichan/aiorpcX/archive/${pkgver}.tar.gz;)
+sha256sums=('53c2ee8453c754587ef19e7e6b431a783428d10aa9c18ca0a753ebb82f2361ff')
 
 build() {
   cd "${srcdir}/aiorpcX-${pkgver}"
@@ -23,4 +24,3 @@
   install -D -m644 LICENCE -t "${pkgdir}/usr/share/licenses/${pkgname}"
 }
 
-sha256sums=('df79b7a321043ce5e12f91ad197d6187cf5b0c6f85506d323ad8b44e330104a1')


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

2019-02-19 Thread Alexander Rødseth via arch-commits
Date: Tuesday, February 19, 2019 @ 17:49:29
  Author: arodseth
Revision: 434572

upgpkg: setconf 0.7.6-1

Modified:
  setconf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-19 17:15:03 UTC (rev 434571)
+++ PKGBUILD2019-02-19 17:49:29 UTC (rev 434572)
@@ -1,16 +1,16 @@
-# Maintainer: Alexander F Rødseth 
+# Maintainer: Alexander F. Rødseth 
 
 pkgname=setconf
-pkgver=0.7.5
-pkgrel=2
+pkgver=0.7.6
+pkgrel=1
 pkgdesc='Utility for easily changing settings in configuration files'
-arch=('any')
-url='http://setconf.roboticoverlords.org/'
-license=('GPL2')
-depends=('python')
-source=("http://setconf.roboticoverlords.org/$pkgname-$pkgver.tar.xz"{,.asc})
+arch=(any)
+url='https://setconf.roboticoverlords.org/'
+license=(GPL2)
+depends=(python)
+source=("https://setconf.roboticoverlords.org/$pkgname-$pkgver.tar.xz"{,.asc})
 validpgpkeys=('962855F072C7A01846405864FCF3C8CB5CF9C8D4')
-sha256sums=('3aa5ded4c3e1996a78cbbcbd7b9af051e3a197f6e79fced9ebb118da902a52fe'
+sha256sums=('98bd51861f0141508a20a81fc325204e9500f3b7305bc518f62bf5af91db8486'
 'SKIP')
 
 package() {
@@ -20,4 +20,5 @@
   install -Dm644 "$pkgname.1.gz" "$pkgdir/usr/share/man/man1/$pkgname.1.gz"
 }
 
+# getver: setconf.roboticoverlords.org
 # vim: ts=2 sw=2 et:


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

2019-02-19 Thread Alexander Rødseth via arch-commits
Date: Tuesday, February 19, 2019 @ 17:49:40
  Author: arodseth
Revision: 434573

archrelease: copy trunk to community-any

Added:
  setconf/repos/community-any/PKGBUILD
(from rev 434572, setconf/trunk/PKGBUILD)
Deleted:
  setconf/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-19 17:49:29 UTC (rev 434572)
+++ PKGBUILD2019-02-19 17:49:40 UTC (rev 434573)
@@ -1,24 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth 
-
-pkgname=setconf
-pkgver=0.7.5
-pkgrel=2
-pkgdesc='Utility for easily changing settings in configuration files'
-arch=('any')
-url='http://setconf.roboticoverlords.org/'
-license=('GPL2')
-depends=('python')
-source=("http://setconf.roboticoverlords.org/$pkgname-$pkgver.tar.xz"{,.asc})
-validpgpkeys=('962855F072C7A01846405864FCF3C8CB5CF9C8D4')
-sha256sums=('3aa5ded4c3e1996a78cbbcbd7b9af051e3a197f6e79fced9ebb118da902a52fe'
-'SKIP')
-
-package() {
-  cd "$pkgname-$pkgver"
-
-  install -Dm755 "$pkgname.py" "$pkgdir/usr/bin/$pkgname"
-  install -Dm644 "$pkgname.1.gz" "$pkgdir/usr/share/man/man1/$pkgname.1.gz"
-}
-
-# vim: ts=2 sw=2 et:

Copied: setconf/repos/community-any/PKGBUILD (from rev 434572, 
setconf/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-19 17:49:40 UTC (rev 434573)
@@ -0,0 +1,24 @@
+# Maintainer: Alexander F. Rødseth 
+
+pkgname=setconf
+pkgver=0.7.6
+pkgrel=1
+pkgdesc='Utility for easily changing settings in configuration files'
+arch=(any)
+url='https://setconf.roboticoverlords.org/'
+license=(GPL2)
+depends=(python)
+source=("https://setconf.roboticoverlords.org/$pkgname-$pkgver.tar.xz"{,.asc})
+validpgpkeys=('962855F072C7A01846405864FCF3C8CB5CF9C8D4')
+sha256sums=('98bd51861f0141508a20a81fc325204e9500f3b7305bc518f62bf5af91db8486'
+'SKIP')
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  install -Dm755 "$pkgname.py" "$pkgdir/usr/bin/$pkgname"
+  install -Dm644 "$pkgname.1.gz" "$pkgdir/usr/share/man/man1/$pkgname.1.gz"
+}
+
+# getver: setconf.roboticoverlords.org
+# vim: ts=2 sw=2 et:


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

2019-02-19 Thread Nicola Squartini via arch-commits
Date: Tuesday, February 19, 2019 @ 17:14:34
  Author: tensor5
Revision: 434570

upgpkg: electron 3.1.4-1

Modified:
  electron/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-19 16:40:30 UTC (rev 434569)
+++ PKGBUILD2019-02-19 17:14:34 UTC (rev 434570)
@@ -2,7 +2,7 @@
 
 _chromiumver=66.0.3359.181
 pkgname=electron
-pkgver=3.1.3
+pkgver=3.1.4
 pkgrel=1
 pkgdesc='Build cross platform desktop apps with web technologies'
 arch=('x86_64')


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

2019-02-19 Thread Felix Yan via arch-commits
Date: Tuesday, February 19, 2019 @ 16:40:30
  Author: felixonmars
Revision: 434569

archrelease: copy trunk to community-any

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

--+
 PKGBUILD |  134 ++---
 1 file changed, 67 insertions(+), 67 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-19 16:40:04 UTC (rev 434568)
+++ PKGBUILD2019-02-19 16:40:30 UTC (rev 434569)
@@ -1,67 +0,0 @@
-# Maintainer: Felix Yan 
-# Maintainer: Morten Linderud 
-# Contributor: Lance Chen 
-
-_pypiname=wheel
-pkgbase=python-wheel
-pkgname=('python-wheel' 'python2-wheel')
-pkgver=0.33.0
-pkgrel=1
-pkgdesc="A built-package format for Python"
-arch=(any)
-url="https://pypi.python.org/pypi/wheel;
-license=('MIT')
-makedepends=('python' 'python-setuptools'
- 'python2' 'python2-setuptools')
-checkdepends=('python-jsonschema' 'python2-jsonschema' 'python-pytest-cov' 
'python2-pytest-cov'
-  'python-keyring' 'python-keyrings-alt' 'python-xdg' 
'python2-xdg')
-source=("https://pypi.io/packages/source/w/wheel/$_pypiname-$pkgver.tar.gz;)
-source=("$pkgname-$pkgver.tar.gz::https://github.com/pypa/wheel/archive/$pkgver.tar.gz;)
-sha512sums=('d2eb240a91801ed2f562bf0073908889f45d8b5f21ba39428b6279920c0e60db3571a7f3a69e5485a0ac3aa6bd61c6c64b6f64389189f6eb4b8a969a95f12ed1')
-
-prepare() {
-  cp -a wheel-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir/wheel-$pkgver"
-  python setup.py build
-
-  cd "$srcdir/wheel-$pkgver-py2"
-  python2 setup.py build
-}
-
-check() {
-  # Hack entry points by installing it
-
-  cd "$srcdir/wheel-$pkgver"
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.7/site-packages:$PYTHONPATH" 
py.test
-
-  cd "$srcdir/wheel-$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 -k 'not test_keygen'
-}
-
-package_python-wheel() {
-  depends=('python')
-  optdepends=('python-keyring: for wheel.signatures')
-  optdepends=('python-xdg: for wheel.signatures')
-
-  cd "$srcdir/$_pypiname-$pkgver"
-  python setup.py install --root="$pkgdir/" --optimize=1 --skip-build
-  install -D -m644 LICENSE.txt 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
-}
-
-package_python2-wheel() {
-  depends=('python2')
-  optdepends=('python2-keyring: for wheel.signatures')
-  optdepends=('python2-xdg: for wheel.signatures')
-
-  cd "$srcdir/$_pypiname-$pkgver"
-  python2 setup.py install --root="$pkgdir/" --optimize=1 --skip-build
-  install -D -m644 LICENSE.txt 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
-  mv "$pkgdir/usr/bin/wheel" "$pkgdir/usr/bin/wheel2"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-wheel/repos/community-any/PKGBUILD (from rev 434568, 
python-wheel/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-19 16:40:30 UTC (rev 434569)
@@ -0,0 +1,67 @@
+# Maintainer: Felix Yan 
+# Maintainer: Morten Linderud 
+# Contributor: Lance Chen 
+
+_pypiname=wheel
+pkgbase=python-wheel
+pkgname=('python-wheel' 'python2-wheel')
+pkgver=0.33.1
+pkgrel=1
+pkgdesc="A built-package format for Python"
+arch=(any)
+url="https://pypi.python.org/pypi/wheel;
+license=('MIT')
+makedepends=('python' 'python-setuptools'
+ 'python2' 'python2-setuptools')
+checkdepends=('python-jsonschema' 'python2-jsonschema' 'python-pytest-cov' 
'python2-pytest-cov'
+  'python-keyring' 'python-keyrings-alt' 'python-xdg' 
'python2-xdg')
+source=("https://pypi.io/packages/source/w/wheel/$_pypiname-$pkgver.tar.gz;)
+source=("$pkgname-$pkgver.tar.gz::https://github.com/pypa/wheel/archive/$pkgver.tar.gz;)
+sha512sums=('d275715ebd4fa81ac02a3b0d33144348c47a4cb84b58ad0c0e0f120900c6696c81f750a5c8835519189dec08aa58f78394f26c5c379ab03ffdb7eaa73097f928')
+
+prepare() {
+  cp -a wheel-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir/wheel-$pkgver"
+  python setup.py build
+
+  cd "$srcdir/wheel-$pkgver-py2"
+  python2 setup.py build
+}
+
+check() {
+  # Hack entry points by installing it
+
+  cd "$srcdir/wheel-$pkgver"
+  python setup.py install --root="$PWD/tmp_install" --optimize=1
+  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.7/site-packages:$PYTHONPATH" 
py.test
+
+  cd "$srcdir/wheel-$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 -k 'not test_keygen'
+}
+
+package_python-wheel() {
+  depends=('python')
+  optdepends=('python-keyring: for wheel.signatures')
+  optdepends=('python-xdg: for wheel.signatures')
+
+  cd "$srcdir/$_pypiname-$pkgver"
+  python setup.py install --root="$pkgdir/" 

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

2019-02-19 Thread Felix Yan via arch-commits
Date: Tuesday, February 19, 2019 @ 16:40:04
  Author: felixonmars
Revision: 434568

upgpkg: python-wheel 0.33.1-1

Modified:
  python-wheel/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-19 16:32:50 UTC (rev 434567)
+++ PKGBUILD2019-02-19 16:40:04 UTC (rev 434568)
@@ -5,7 +5,7 @@
 _pypiname=wheel
 pkgbase=python-wheel
 pkgname=('python-wheel' 'python2-wheel')
-pkgver=0.33.0
+pkgver=0.33.1
 pkgrel=1
 pkgdesc="A built-package format for Python"
 arch=(any)
@@ -17,7 +17,7 @@
   'python-keyring' 'python-keyrings-alt' 'python-xdg' 
'python2-xdg')
 source=("https://pypi.io/packages/source/w/wheel/$_pypiname-$pkgver.tar.gz;)
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/pypa/wheel/archive/$pkgver.tar.gz;)
-sha512sums=('d2eb240a91801ed2f562bf0073908889f45d8b5f21ba39428b6279920c0e60db3571a7f3a69e5485a0ac3aa6bd61c6c64b6f64389189f6eb4b8a969a95f12ed1')
+sha512sums=('d275715ebd4fa81ac02a3b0d33144348c47a4cb84b58ad0c0e0f120900c6696c81f750a5c8835519189dec08aa58f78394f26c5c379ab03ffdb7eaa73097f928')
 
 prepare() {
   cp -a wheel-$pkgver{,-py2}


  1   2   3   4   >