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

2020-09-21 Thread Eli Schwartz via arch-commits
Date: Tuesday, September 22, 2020 @ 04:18:49
  Author: eschwartz
Revision: 711336

upgpkg: python-httpx 0.14.0-1: upstream release

- hstspreload got dropped upstream as a bad idea for a server library
- h2 is needed for testing httpcore's http2 support which is now optional
- rebase patch

Modified:
  
python-httpx/trunk/0001-Do-not-override-the-system-SSL-certificates-with-the.patch
  python-httpx/trunk/PKGBUILD

-+
 0001-Do-not-override-the-system-SSL-certificates-with-the.patch |   32 
+-
 PKGBUILD|   16 ++---
 2 files changed, 24 insertions(+), 24 deletions(-)

Modified: 0001-Do-not-override-the-system-SSL-certificates-with-the.patch
===
--- 0001-Do-not-override-the-system-SSL-certificates-with-the.patch 
2020-09-22 04:13:36 UTC (rev 711335)
+++ 0001-Do-not-override-the-system-SSL-certificates-with-the.patch 
2020-09-22 04:18:49 UTC (rev 711336)
@@ -1,4 +1,4 @@
-From b3d83c15c366747bf84772311eecad29e1413cb5 Mon Sep 17 00:00:00 2001
+From d03e57b75c2eb8a3696b6dd9a5f84aba4f01280c Mon Sep 17 00:00:00 2001
 From: Eli Schwartz 
 Date: Mon, 13 Jul 2020 11:29:54 -0400
 Subject: [PATCH] Do not override the system SSL certificates with the certifi
@@ -19,10 +19,10 @@
  3 files changed, 3 insertions(+), 7 deletions(-)
 
 diff --git a/httpx/_config.py b/httpx/_config.py
-index 3785af9..d6aecf3 100644
+index 8d589ea..ea256a8 100644
 --- a/httpx/_config.py
 +++ b/httpx/_config.py
-@@ -4,8 +4,6 @@ import typing
+@@ -5,8 +5,6 @@ import warnings
  from base64 import b64encode
  from pathlib import Path
  
@@ -31,7 +31,7 @@
  from ._models import URL, Headers
  from ._types import CertTypes, HeaderTypes, TimeoutTypes, URLTypes, 
VerifyTypes
  from ._utils import get_ca_bundle_from_env, get_logger, warn_deprecated
-@@ -45,7 +43,7 @@ class SSLConfig:
+@@ -57,7 +55,7 @@ class SSLConfig:
  SSL Configuration.
  """
  
@@ -41,7 +41,7 @@
  def __init__(
  self,
 diff --git a/setup.py b/setup.py
-index cc62169..e6fe71a 100644
+index e811d2a..2eaf419 100644
 --- a/setup.py
 +++ b/setup.py
 @@ -55,7 +55,6 @@ setup(
@@ -49,14 +49,14 @@
  zip_safe=False,
  install_requires=[
 -"certifi",
- "hstspreload",
  "sniffio",
  "chardet==3.*",
+ "rfc3986[idna2008]>=1.3,<2",
 diff --git a/tests/test_config.py b/tests/test_config.py
-index 41d8191..286da00 100644
+index 5c68bad..a03c607 100644
 --- a/tests/test_config.py
 +++ b/tests/test_config.py
-@@ -4,7 +4,6 @@ import ssl
+@@ -3,7 +3,6 @@ import ssl
  import sys
  from pathlib import Path
  
@@ -64,24 +64,24 @@
  import pytest
  
  import httpx
-@@ -24,7 +23,7 @@ def test_load_ssl_config_verify_non_existing_path():
+@@ -21,7 +20,7 @@ def test_load_ssl_config_verify_non_existing_path():
  
  
  def test_load_ssl_config_verify_existing_file():
--ssl_config = SSLConfig(verify=certifi.where())
-+ssl_config = SSLConfig(verify="/etc/ssl/certs/ca-certificates.crt")
- context = ssl_config.ssl_context
+-context = httpx.create_ssl_context(verify=certifi.where())
++context = 
httpx.create_ssl_context(verify="/etc/ssl/certs/ca-certificates.crt")
  assert context.verify_mode == ssl.VerifyMode.CERT_REQUIRED
  assert context.check_hostname is True
-@@ -55,7 +54,7 @@ def test_load_ssl_config_verify_env_file(https_server, 
ca_cert_pem_file, config)
  
+@@ -44,7 +43,7 @@ def test_load_ssl_config_verify_env_file(
  
+ 
  def test_load_ssl_config_verify_directory():
 -path = Path(certifi.where()).parent
 +path = Path("/etc/ssl/certs/ca-certificates.crt").parent
- ssl_config = SSLConfig(verify=path)
- context = ssl_config.ssl_context
+ context = httpx.create_ssl_context(verify=str(path))
  assert context.verify_mode == ssl.VerifyMode.CERT_REQUIRED
+ assert context.check_hostname is True
 -- 
-2.27.0
+2.28.0
 

Modified: PKGBUILD
===
--- PKGBUILD2020-09-22 04:13:36 UTC (rev 711335)
+++ PKGBUILD2020-09-22 04:18:49 UTC (rev 711336)
@@ -2,22 +2,22 @@
 
 _pkgname=httpx
 pkgname=python-httpx
-pkgver=0.13.3
-pkgrel=5
+pkgver=0.14.0
+pkgrel=1
 pkgdesc="A next generation HTTP client for Python"
 arch=('any')
 url="https://github.com/encode/${_pkgname};
 license=('BSD')
-depends=('python-chardet' 'python-hstspreload' 'python-httpcore' 'python-idna' 
'python-rfc3986' 'python-sniffio')
+depends=('python-chardet' 'python-httpcore' 'python-idna' 'python-rfc3986' 
'python-sniffio')
 optdepends=('python-brotli: for brotli response decompression')
 makedepends=('python-setuptools')
-checkdepends=('python-pytest-asyncio' 'python-pytest-trio' 'python-brotli' 
'python-trustme' 'uvicorn')
+checkdepends=('python-pytest-asyncio' 'python-pytest-trio' 'python-brotli' 
'python-h2' 'python-trustme' 'uvicorn')
 

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

2020-09-21 Thread Eli Schwartz via arch-commits
Date: Tuesday, September 22, 2020 @ 04:19:06
  Author: eschwartz
Revision: 711337

archrelease: copy trunk to community-any

Added:
  
python-httpx/repos/community-any/0001-Do-not-override-the-system-SSL-certificates-with-the.patch
(from rev 711336, 
python-httpx/trunk/0001-Do-not-override-the-system-SSL-certificates-with-the.patch)
  python-httpx/repos/community-any/PKGBUILD
(from rev 711336, python-httpx/trunk/PKGBUILD)
Deleted:
  
python-httpx/repos/community-any/0001-Do-not-override-the-system-SSL-certificates-with-the.patch
  python-httpx/repos/community-any/PKGBUILD

-+
 0001-Do-not-override-the-system-SSL-certificates-with-the.patch |  174 
+-
 PKGBUILD|   98 ++---
 2 files changed, 136 insertions(+), 136 deletions(-)

Deleted: 0001-Do-not-override-the-system-SSL-certificates-with-the.patch
===
--- 0001-Do-not-override-the-system-SSL-certificates-with-the.patch 
2020-09-22 04:18:49 UTC (rev 711336)
+++ 0001-Do-not-override-the-system-SSL-certificates-with-the.patch 
2020-09-22 04:19:06 UTC (rev 711337)
@@ -1,87 +0,0 @@
-From b3d83c15c366747bf84772311eecad29e1413cb5 Mon Sep 17 00:00:00 2001
-From: Eli Schwartz 
-Date: Mon, 13 Jul 2020 11:29:54 -0400
-Subject: [PATCH] Do not override the system SSL certificates with the certifi
- bundle.
-
-We need to respect the system certification policy, and by default the
-ssl module will use our packaged ca-certificates.
-
-ssl.create_default_context(cafile=None) is the default to use the
-builtin (system) certs, but due to the sorcery which this module uses to
-check how arguments are being passed, it's less invasive to simply
-hardcode the standard certificate path instead of letting python
-properly handle it.

- httpx/_config.py | 4 +---
- setup.py | 1 -
- tests/test_config.py | 5 ++---
- 3 files changed, 3 insertions(+), 7 deletions(-)
-
-diff --git a/httpx/_config.py b/httpx/_config.py
-index 3785af9..d6aecf3 100644
 a/httpx/_config.py
-+++ b/httpx/_config.py
-@@ -4,8 +4,6 @@ import typing
- from base64 import b64encode
- from pathlib import Path
- 
--import certifi
--
- from ._models import URL, Headers
- from ._types import CertTypes, HeaderTypes, TimeoutTypes, URLTypes, 
VerifyTypes
- from ._utils import get_ca_bundle_from_env, get_logger, warn_deprecated
-@@ -45,7 +43,7 @@ class SSLConfig:
- SSL Configuration.
- """
- 
--DEFAULT_CA_BUNDLE_PATH = Path(certifi.where())
-+DEFAULT_CA_BUNDLE_PATH = Path("/etc/ssl/certs/ca-certificates.crt")
- 
- def __init__(
- self,
-diff --git a/setup.py b/setup.py
-index cc62169..e6fe71a 100644
 a/setup.py
-+++ b/setup.py
-@@ -55,7 +55,6 @@ setup(
- include_package_data=True,
- zip_safe=False,
- install_requires=[
--"certifi",
- "hstspreload",
- "sniffio",
- "chardet==3.*",
-diff --git a/tests/test_config.py b/tests/test_config.py
-index 41d8191..286da00 100644
 a/tests/test_config.py
-+++ b/tests/test_config.py
-@@ -4,7 +4,6 @@ import ssl
- import sys
- from pathlib import Path
- 
--import certifi
- import pytest
- 
- import httpx
-@@ -24,7 +23,7 @@ def test_load_ssl_config_verify_non_existing_path():
- 
- 
- def test_load_ssl_config_verify_existing_file():
--ssl_config = SSLConfig(verify=certifi.where())
-+ssl_config = SSLConfig(verify="/etc/ssl/certs/ca-certificates.crt")
- context = ssl_config.ssl_context
- assert context.verify_mode == ssl.VerifyMode.CERT_REQUIRED
- assert context.check_hostname is True
-@@ -55,7 +54,7 @@ def test_load_ssl_config_verify_env_file(https_server, 
ca_cert_pem_file, config)
- 
- 
- def test_load_ssl_config_verify_directory():
--path = Path(certifi.where()).parent
-+path = Path("/etc/ssl/certs/ca-certificates.crt").parent
- ssl_config = SSLConfig(verify=path)
- context = ssl_config.ssl_context
- assert context.verify_mode == ssl.VerifyMode.CERT_REQUIRED
--- 
-2.27.0
-

Copied: 
python-httpx/repos/community-any/0001-Do-not-override-the-system-SSL-certificates-with-the.patch
 (from rev 711336, 
python-httpx/trunk/0001-Do-not-override-the-system-SSL-certificates-with-the.patch)
===
--- 0001-Do-not-override-the-system-SSL-certificates-with-the.patch 
(rev 0)
+++ 0001-Do-not-override-the-system-SSL-certificates-with-the.patch 
2020-09-22 04:19:06 UTC (rev 711337)
@@ -0,0 +1,87 @@
+From d03e57b75c2eb8a3696b6dd9a5f84aba4f01280c Mon Sep 17 00:00:00 2001
+From: Eli Schwartz 
+Date: Mon, 13 Jul 2020 11:29:54 -0400
+Subject: [PATCH] Do not override the system SSL certificates with the certifi
+ bundle.
+
+We need to respect the system certification policy, and by default the
+ssl module will use our packaged ca-certificates.
+

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

2020-09-21 Thread Eli Schwartz via arch-commits
Date: Tuesday, September 22, 2020 @ 04:13:36
  Author: eschwartz
Revision: 711335

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-22 04:13:22 UTC (rev 711334)
+++ PKGBUILD2020-09-22 04:13:36 UTC (rev 711335)
@@ -1,42 +0,0 @@
-# Maintainer: Eli Schwartz 
-
-_pkgname=httpcore
-pkgname=python-httpcore
-pkgver=0.9.1
-pkgrel=3
-pkgdesc="A minimal HTTP client"
-arch=('any')
-url="https://github.com/encode/${_pkgname};
-license=('BSD')
-depends=('python-h11' 'python-h2' 'python-sniffio')
-makedepends=('python-setuptools')
-checkdepends=('python-pytest-asyncio' 'python-pytest-trio' 'python-trustme' 
'mitmproxy')
-source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha512sums=('5105ff0c19b8a4a34080e79aa1d191199131450e658fbe0949b091e5acfb9cd8b11033757a3bd7dd1490e5fb61352eb44d086babd70d22be33479befd16745fd')
-b2sums=('8f7416c1e726892b152e7e9623790ac1e70b9142f45028b23df25f1d54b6f113f1a79839ec2a7d90b196197d53c880847526c2e47e07d52a0e104a9e2849bccf')
-
-prepare() {
-cd "${srcdir}"/${_pkgname}-${pkgver}
-
-# do not run coverage in unittests!
-sed -i '/^addopts/d' setup.cfg
-}
-
-build() {
-cd "${srcdir}"/${_pkgname}-${pkgver}
-
-python setup.py build
-}
-
-check() {
-cd "${srcdir}"/${_pkgname}-${pkgver}
-
-python -m pytest
-}
-
-package() {
-cd "${srcdir}"/${_pkgname}-${pkgver}
-
-python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
-install -Dm644 LICENSE.md 
"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE.md
-}

Copied: python-httpcore/repos/community-any/PKGBUILD (from rev 711334, 
python-httpcore/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-22 04:13:36 UTC (rev 711335)
@@ -0,0 +1,43 @@
+# Maintainer: Eli Schwartz 
+
+_pkgname=httpcore
+pkgname=python-httpcore
+pkgver=0.10.2
+pkgrel=1
+pkgdesc="A minimal HTTP client"
+arch=('any')
+url="https://github.com/encode/${_pkgname};
+license=('BSD')
+depends=('python-h11' 'python-sniffio')
+optdepends=('python-h2: for HTTP/2 support')
+makedepends=('python-setuptools' 'python-h2')
+checkdepends=('python-pytest-asyncio' 'python-pytest-trio' 'python-trustme' 
'uvicorn' 'mitmproxy')
+source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
+sha512sums=('714ae548d194f5eb71447d13669b32ae9b37deee5791e0e171e04c721eb99f21c55996cc06cf82f115d9e11d806c1d6c0b54fe61922bb419d90c94cd93e374ce')
+b2sums=('ad5615b6a45dc5cd1a0128a6a6a48b0b29a4f56b753869c55018913a9047d712a028ed74a8fa2fcee36cc851f1c0f85a9f4ddf7c7aa1f5e3b28b09761c511aea')
+
+prepare() {
+cd "${srcdir}"/${_pkgname}-${pkgver}
+
+# do not run coverage in unittests!
+sed -i '/^addopts/d' setup.cfg
+}
+
+build() {
+cd "${srcdir}"/${_pkgname}-${pkgver}
+
+python setup.py build
+}
+
+check() {
+cd "${srcdir}"/${_pkgname}-${pkgver}
+
+python -m pytest
+}
+
+package() {
+cd "${srcdir}"/${_pkgname}-${pkgver}
+
+python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+install -Dm644 LICENSE.md 
"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE.md
+}


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

2020-09-21 Thread Eli Schwartz via arch-commits
Date: Tuesday, September 22, 2020 @ 04:13:22
  Author: eschwartz
Revision: 711334

upgpkg: python-httpcore 0.10.2-1: upstream release

http2 is now an optional extra, plus new checkdepends

Modified:
  python-httpcore/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-22 02:59:23 UTC (rev 711333)
+++ PKGBUILD2020-09-22 04:13:22 UTC (rev 711334)
@@ -2,18 +2,19 @@
 
 _pkgname=httpcore
 pkgname=python-httpcore
-pkgver=0.9.1
-pkgrel=3
+pkgver=0.10.2
+pkgrel=1
 pkgdesc="A minimal HTTP client"
 arch=('any')
 url="https://github.com/encode/${_pkgname};
 license=('BSD')
-depends=('python-h11' 'python-h2' 'python-sniffio')
-makedepends=('python-setuptools')
-checkdepends=('python-pytest-asyncio' 'python-pytest-trio' 'python-trustme' 
'mitmproxy')
+depends=('python-h11' 'python-sniffio')
+optdepends=('python-h2: for HTTP/2 support')
+makedepends=('python-setuptools' 'python-h2')
+checkdepends=('python-pytest-asyncio' 'python-pytest-trio' 'python-trustme' 
'uvicorn' 'mitmproxy')
 source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
-sha512sums=('5105ff0c19b8a4a34080e79aa1d191199131450e658fbe0949b091e5acfb9cd8b11033757a3bd7dd1490e5fb61352eb44d086babd70d22be33479befd16745fd')
-b2sums=('8f7416c1e726892b152e7e9623790ac1e70b9142f45028b23df25f1d54b6f113f1a79839ec2a7d90b196197d53c880847526c2e47e07d52a0e104a9e2849bccf')
+sha512sums=('714ae548d194f5eb71447d13669b32ae9b37deee5791e0e171e04c721eb99f21c55996cc06cf82f115d9e11d806c1d6c0b54fe61922bb419d90c94cd93e374ce')
+b2sums=('ad5615b6a45dc5cd1a0128a6a6a48b0b29a4f56b753869c55018913a9047d712a028ed74a8fa2fcee36cc851f1c0f85a9f4ddf7c7aa1f5e3b28b09761c511aea')
 
 prepare() {
 cd "${srcdir}"/${_pkgname}-${pkgver}


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

2020-09-21 Thread Eli Schwartz via arch-commits
Date: Tuesday, September 22, 2020 @ 02:59:23
  Author: eschwartz
Revision: 711333

archrelease: copy trunk to community-any

Added:
  firefox-noscript/repos/community-any/PKGBUILD
(from rev 711332, firefox-noscript/trunk/PKGBUILD)
Deleted:
  firefox-noscript/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-22 02:58:46 UTC (rev 711332)
+++ PKGBUILD2020-09-22 02:59:23 UTC (rev 711333)
@@ -1,24 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Maintainer: Eli schwartz 
-
-pkgname=firefox-noscript
-pkgver=11.0.41
-pkgrel=1
-_file=3631295
-pkgdesc="Extension for firefox which disables javascript"
-arch=('any')
-url="https://noscript.net/;
-license=('GPL2')
-groups=('firefox-addons')
-makedepends=('unzip')
-source=("noscript-${pkgver}.xpi::https://addons.mozilla.org/firefox/downloads/file/${_file}/;)
-noextract=("noscript-${pkgver}.xpi")
-sha256sums=('f488c552d4e3003c98d1a2fda8ec442ca8fae37699a7b26fdaa06bf3a38ab551')
-b2sums=('087a61e22b375e8282381fb79648a0b758bb7c95fe3655e0f872d61eac4e4e1583473051f9828913e7c42a69927768f158803dd84eb55b4b8361a01fbdc9cdd5')
-
-package() {
-  depends=('firefox')
-  _extension_id="{73a6fe31-595d-460b-a920-fcc0f8843232}"
-  
_extension_dest="${pkgdir}/usr/lib/firefox/browser/extensions/${_extension_id}"
-  install -Dm644 noscript-${pkgver}.xpi "${_extension_dest}.xpi"
-}

Copied: firefox-noscript/repos/community-any/PKGBUILD (from rev 711332, 
firefox-noscript/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-22 02:59:23 UTC (rev 711333)
@@ -0,0 +1,24 @@
+# Maintainer: Sergej Pupykin 
+# Maintainer: Eli schwartz 
+
+pkgname=firefox-noscript
+pkgver=11.0.46
+pkgrel=1
+_file=3645568
+pkgdesc="Extension for firefox which disables javascript"
+arch=('any')
+url="https://noscript.net/;
+license=('GPL2')
+groups=('firefox-addons')
+makedepends=('unzip')
+source=("noscript-${pkgver}.xpi::https://addons.mozilla.org/firefox/downloads/file/${_file}/;)
+noextract=("noscript-${pkgver}.xpi")
+sha256sums=('1ad4f8e5c2feeb4a1188166e72cec7f5d2d6e3a67bcadb5d084c372a09fb70bd')
+b2sums=('666d62f2bd994a83e8a62c37979e9d48d45377cd824855a3c0a56e2e05c969d5763513d024cef743f31c58a6f91af20827d2d29bedc91bb6841fa92d5c892925')
+
+package() {
+  depends=('firefox')
+  _extension_id="{73a6fe31-595d-460b-a920-fcc0f8843232}"
+  
_extension_dest="${pkgdir}/usr/lib/firefox/browser/extensions/${_extension_id}"
+  install -Dm644 noscript-${pkgver}.xpi "${_extension_dest}.xpi"
+}


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

2020-09-21 Thread Eli Schwartz via arch-commits
Date: Tuesday, September 22, 2020 @ 02:58:46
  Author: eschwartz
Revision: 711332

upgpkg: firefox-noscript 11.0.46-1: upstream release

Modified:
  firefox-noscript/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-22 02:55:49 UTC (rev 711331)
+++ PKGBUILD2020-09-22 02:58:46 UTC (rev 711332)
@@ -2,9 +2,9 @@
 # Maintainer: Eli schwartz 
 
 pkgname=firefox-noscript
-pkgver=11.0.41
+pkgver=11.0.46
 pkgrel=1
-_file=3631295
+_file=3645568
 pkgdesc="Extension for firefox which disables javascript"
 arch=('any')
 url="https://noscript.net/;
@@ -13,8 +13,8 @@
 makedepends=('unzip')
 
source=("noscript-${pkgver}.xpi::https://addons.mozilla.org/firefox/downloads/file/${_file}/;)
 noextract=("noscript-${pkgver}.xpi")
-sha256sums=('f488c552d4e3003c98d1a2fda8ec442ca8fae37699a7b26fdaa06bf3a38ab551')
-b2sums=('087a61e22b375e8282381fb79648a0b758bb7c95fe3655e0f872d61eac4e4e1583473051f9828913e7c42a69927768f158803dd84eb55b4b8361a01fbdc9cdd5')
+sha256sums=('1ad4f8e5c2feeb4a1188166e72cec7f5d2d6e3a67bcadb5d084c372a09fb70bd')
+b2sums=('666d62f2bd994a83e8a62c37979e9d48d45377cd824855a3c0a56e2e05c969d5763513d024cef743f31c58a6f91af20827d2d29bedc91bb6841fa92d5c892925')
 
 package() {
   depends=('firefox')


[arch-commits] Commit in firefox-adblock-plus/repos/community-any (PKGBUILD PKGBUILD)

2020-09-21 Thread Eli Schwartz via arch-commits
Date: Tuesday, September 22, 2020 @ 02:55:49
  Author: eschwartz
Revision: 711331

archrelease: copy trunk to community-any

Added:
  firefox-adblock-plus/repos/community-any/PKGBUILD
(from rev 711330, firefox-adblock-plus/trunk/PKGBUILD)
Deleted:
  firefox-adblock-plus/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-22 02:54:33 UTC (rev 711330)
+++ PKGBUILD2020-09-22 02:55:49 UTC (rev 711331)
@@ -1,24 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Maintainer: Eli Schwartz 
-
-pkgname=firefox-adblock-plus
-pkgver=3.9.4
-pkgrel=1
-_file=3621852
-pkgdesc="Extension for firefox which block ads and banners"
-arch=('any')
-url="https://adblockplus.org/;
-license=('GPL3')
-groups=('firefox-addons')
-# https://addons.mozilla.org/en-US/firefox/addon/adblock-plus/versions/
-source=("https://addons.mozilla.org/firefox/downloads/file/${_file}/adblock-plus-${pkgver}.xpi;)
-noextract=("adblock-plus-$pkgver.xpi")
-sha256sums=('b5cff52071416adfb3ee5fef9a89817e3c12513fb98b276ccff7c9d9129bd5a2')
-
-package() {
-  depends=("firefox")
-
-  _extension_id="{d10d0bf8-f5b5-c8b4-a8b2-2b9879e08c5d}"
-  
_extension_dest="${pkgdir}/usr/lib/firefox/browser/extensions/${_extension_id}"
-  install -Dm644 "${srcdir}"/adblock-plus-${pkgver}.xpi 
"${_extension_dest}.xpi"
-}

Copied: firefox-adblock-plus/repos/community-any/PKGBUILD (from rev 711330, 
firefox-adblock-plus/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-22 02:55:49 UTC (rev 711331)
@@ -0,0 +1,24 @@
+# Maintainer: Sergej Pupykin 
+# Maintainer: Eli Schwartz 
+
+pkgname=firefox-adblock-plus
+pkgver=3.9.5
+pkgrel=1
+_file=3640268
+pkgdesc="Extension for firefox which block ads and banners"
+arch=('any')
+url="https://adblockplus.org/;
+license=('GPL3')
+groups=('firefox-addons')
+# https://addons.mozilla.org/en-US/firefox/addon/adblock-plus/versions/
+source=("https://addons.mozilla.org/firefox/downloads/file/${_file}/adblock-plus-${pkgver}.xpi;)
+noextract=("adblock-plus-$pkgver.xpi")
+sha256sums=('327f8590193d63a484699dc99ed27cc0fa14082355169b3935e6b6db3e828184')
+
+package() {
+  depends=("firefox")
+
+  _extension_id="{d10d0bf8-f5b5-c8b4-a8b2-2b9879e08c5d}"
+  
_extension_dest="${pkgdir}/usr/lib/firefox/browser/extensions/${_extension_id}"
+  install -Dm644 "${srcdir}"/adblock-plus-${pkgver}.xpi 
"${_extension_dest}.xpi"
+}


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

2020-09-21 Thread Eli Schwartz via arch-commits
Date: Tuesday, September 22, 2020 @ 02:54:33
  Author: eschwartz
Revision: 711330

upgpkg: firefox-adblock-plus 3.9.5-1: upstream release

Modified:
  firefox-adblock-plus/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-22 02:02:55 UTC (rev 711329)
+++ PKGBUILD2020-09-22 02:54:33 UTC (rev 711330)
@@ -2,9 +2,9 @@
 # Maintainer: Eli Schwartz 
 
 pkgname=firefox-adblock-plus
-pkgver=3.9.4
+pkgver=3.9.5
 pkgrel=1
-_file=3621852
+_file=3640268
 pkgdesc="Extension for firefox which block ads and banners"
 arch=('any')
 url="https://adblockplus.org/;
@@ -13,7 +13,7 @@
 # https://addons.mozilla.org/en-US/firefox/addon/adblock-plus/versions/
 
source=("https://addons.mozilla.org/firefox/downloads/file/${_file}/adblock-plus-${pkgver}.xpi;)
 noextract=("adblock-plus-$pkgver.xpi")
-sha256sums=('b5cff52071416adfb3ee5fef9a89817e3c12513fb98b276ccff7c9d9129bd5a2')
+sha256sums=('327f8590193d63a484699dc99ed27cc0fa14082355169b3935e6b6db3e828184')
 
 package() {
   depends=("firefox")


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

2020-09-21 Thread Evangelos Foutras via arch-commits
Date: Tuesday, September 22, 2020 @ 02:42:47
  Author: foutrelis
Revision: 396417

upgpkg: chromium 85.0.4183.121-1: new upstream release

Modified:
  chromium/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-21 23:22:27 UTC (rev 396416)
+++ PKGBUILD2020-09-22 02:42:47 UTC (rev 396417)
@@ -4,7 +4,7 @@
 # Contributor: Daniel J Griffiths 
 
 pkgname=chromium
-pkgver=85.0.4183.102
+pkgver=85.0.4183.121
 pkgrel=1
 _launcher_ver=6
 _gcc_patchset=2
@@ -31,7 +31,7 @@
 media-Set-allocation-limit-compatible-with-FFmpeg-4.3.patch
 chromium-fix-vaapi-on-intel.patch
 chromium-skia-harmony.patch)
-sha256sums=('8a68d474724a7a8acfc7742405942836f08e30e713f12f8c3ada46ee6a805e0c'
+sha256sums=('e018547e54566410fb365d9f3dae10037c30fca5debe6ba8baceef3ad3b03d28'
 '04917e3cd4307d8e31bfb0027a5dce6d086edb10ff8a716024fbb8bb0c7dccf1'
 '2194fe22b9e5ccdc4a86da4e3572214f670c561486671f57c90636fd3cbfa43e'
 '0f041d655335cd2a4773ae7ca5e301a0ff12c6c53f57b7cf6651c268e0420a1c'


[arch-commits] Commit in chromium/repos/extra-x86_64 (10 files)

2020-09-21 Thread Evangelos Foutras via arch-commits
Date: Tuesday, September 22, 2020 @ 02:43:14
  Author: foutrelis
Revision: 396418

archrelease: copy trunk to extra-x86_64

Added:
  chromium/repos/extra-x86_64/PKGBUILD
(from rev 396417, chromium/trunk/PKGBUILD)
  chromium/repos/extra-x86_64/chromium-fix-vaapi-on-intel.patch
(from rev 396417, chromium/trunk/chromium-fix-vaapi-on-intel.patch)
  chromium/repos/extra-x86_64/chromium-skia-harmony.patch
(from rev 396417, chromium/trunk/chromium-skia-harmony.patch)
  chromium/repos/extra-x86_64/chromium.install
(from rev 396417, chromium/trunk/chromium.install)
  
chromium/repos/extra-x86_64/media-Set-allocation-limit-compatible-with-FFmpeg-4.3.patch
(from rev 396417, 
chromium/trunk/media-Set-allocation-limit-compatible-with-FFmpeg-4.3.patch)
Deleted:
  chromium/repos/extra-x86_64/PKGBUILD
  chromium/repos/extra-x86_64/chromium-fix-vaapi-on-intel.patch
  chromium/repos/extra-x86_64/chromium-skia-harmony.patch
  chromium/repos/extra-x86_64/chromium.install
  
chromium/repos/extra-x86_64/media-Set-allocation-limit-compatible-with-FFmpeg-4.3.patch

-+
 PKGBUILD|  496 +-
 chromium-fix-vaapi-on-intel.patch   |   80 -
 chromium-skia-harmony.patch |   28 
 chromium.install|   32 
 media-Set-allocation-limit-compatible-with-FFmpeg-4.3.patch |   86 -
 5 files changed, 361 insertions(+), 361 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-22 02:42:47 UTC (rev 396417)
+++ PKGBUILD2020-09-22 02:43:14 UTC (rev 396418)
@@ -1,248 +0,0 @@
-# Maintainer: Evangelos Foutras 
-# Contributor: Pierre Schmitz 
-# Contributor: Jan "heftig" Steffens 
-# Contributor: Daniel J Griffiths 
-
-pkgname=chromium
-pkgver=85.0.4183.102
-pkgrel=1
-_launcher_ver=6
-_gcc_patchset=2
-pkgdesc="A web browser built for speed, simplicity, and security"
-arch=('x86_64')
-url="https://www.chromium.org/Home;
-license=('BSD')
-depends=('gtk3' 'nss' 'alsa-lib' 'xdg-utils' 'libxss' 'libcups' 'libgcrypt'
- 'ttf-liberation' 'systemd' 'dbus' 'libpulse' 'pciutils' 'json-glib'
- 'desktop-file-utils' 'hicolor-icon-theme')
-makedepends=('python' 'python2' 'gperf' 'mesa' 'ninja' 'nodejs' 'git' 'libva'
- 'libpipewire02' 'clang' 'lld' 'gn' 'java-runtime-headless'
- 'python2-setuptools')
-optdepends=('pepper-flash: support for Flash content'
-'libpipewire02: WebRTC desktop sharing under Wayland'
-'libva: hardware-accelerated video decode [experimental]'
-'kdialog: needed for file dialogs in KDE'
-'org.freedesktop.secrets: password storage backend on GNOME / Xfce'
-'kwallet: for storing passwords in KWallet on KDE desktops')
-install=chromium.install
-source=(https://commondatastorage.googleapis.com/chromium-browser-official/$pkgname-$pkgver.tar.xz
-
chromium-launcher-$_launcher_ver.tar.gz::https://github.com/foutrelis/chromium-launcher/archive/v$_launcher_ver.tar.gz
-
https://github.com/stha09/chromium-patches/releases/download/chromium-${pkgver%%.*}-patchset-$_gcc_patchset/chromium-${pkgver%%.*}-patchset-$_gcc_patchset.tar.xz
-media-Set-allocation-limit-compatible-with-FFmpeg-4.3.patch
-chromium-fix-vaapi-on-intel.patch
-chromium-skia-harmony.patch)
-sha256sums=('8a68d474724a7a8acfc7742405942836f08e30e713f12f8c3ada46ee6a805e0c'
-'04917e3cd4307d8e31bfb0027a5dce6d086edb10ff8a716024fbb8bb0c7dccf1'
-'2194fe22b9e5ccdc4a86da4e3572214f670c561486671f57c90636fd3cbfa43e'
-'0f041d655335cd2a4773ae7ca5e301a0ff12c6c53f57b7cf6651c268e0420a1c'
-'e495f2477091557b15bff2c99831e0a3db64ea2ebde7dcb22857a6469c944b9a'
-'771292942c0901092a402cc60ee883877a99fb804cb54d568c8c6c94565a48e1')
-
-# Possible replacements are listed in build/linux/unbundle/replace_gn_files.py
-# Keys are the names in the above script; values are the dependencies in Arch
-declare -gA _system_libs=(
-  [ffmpeg]=ffmpeg
-  [flac]=flac
-  [fontconfig]=fontconfig
-  [freetype]=freetype2
-  [harfbuzz-ng]=harfbuzz
-  [icu]=icu
-  [libdrm]=
-  [libjpeg]=libjpeg
-  [libpng]=libpng
-  #[libvpx]=libvpx
-  [libwebp]=libwebp
-  [libxml]=libxml2
-  [libxslt]=libxslt
-  [opus]=opus
-  [re2]=re2
-  [snappy]=snappy
-  [zlib]=minizip
-)
-_unwanted_bundled_libs=(
-  $(printf "%s\n" ${!_system_libs[@]} | sed 's/^libjpeg$/&_turbo/')
-)
-depends+=(${_system_libs[@]})
-
-# Google API keys (see https://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.
-_google_api_key=AIzaSyDwr302FpOSkGRpLlUpPThNTDPbXcIn_FM
-_google_default_client_id=413772536636.apps.googleusercontent.com

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

2020-09-21 Thread Kpcyrd via arch-commits
Date: Tuesday, September 22, 2020 @ 02:02:55
  Author: kpcyrd
Revision: 711329

archrelease: copy trunk to community-x86_64

Added:
  monero/repos/community-x86_64/PKGBUILD
(from rev 711328, monero/trunk/PKGBUILD)
  monero/repos/community-x86_64/monero.sysusers
(from rev 711328, monero/trunk/monero.sysusers)
  monero/repos/community-x86_64/monero.tmpfiles
(from rev 711328, monero/trunk/monero.tmpfiles)
Deleted:
  monero/repos/community-x86_64/PKGBUILD
  monero/repos/community-x86_64/monero.sysusers
  monero/repos/community-x86_64/monero.tmpfiles

-+
 PKGBUILD|  154 +++---
 monero.sysusers |2 
 monero.tmpfiles |2 
 3 files changed, 79 insertions(+), 79 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-22 02:02:38 UTC (rev 711328)
+++ PKGBUILD2020-09-22 02:02:55 UTC (rev 711329)
@@ -1,77 +0,0 @@
-# Maintainer: kpcyrd 
-
-pkgname=monero
-pkgver=0.16.0.3
-_commit=7bd1ed03dd29d1f194503b6fdce6588306328b72
-pkgrel=2
-pkgdesc="Monero: the secure, private, untraceable peer-to-peer currency"
-license=('BSD')
-arch=('x86_64')
-url="https://getmonero.org/;
-depends=('boost-libs' 'libunwind' 'openssl' 'readline' 'zeromq' 'pcsclite' 
'hidapi' 'protobuf')
-makedepends=('git' 'cmake' 'boost')
-source=(
-
"${pkgname}"::"git+https://github.com/monero-project/monero#commit=${_commit};
-"git+https://github.com/monero-project/unbound.git;
-"git+https://github.com/monero-project/miniupnp.git;
-"git+https://github.com/Tencent/rapidjson.git;
-"git+https://github.com/trezor/trezor-common.git;
-"git+https://github.com/tevador/randomx.git;
-"monero.sysusers"
-"monero.tmpfiles")
-sha512sums=('SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-
'2e4ecf3f305dab46e166f50c0451dd969927b485df544aebcf8115a65444573e6d57a8ac6bea64ce5ab4b5cce2c70f913d9ac3bce561c59acf89851edc76a22c'
-
'ae3c300548e6ba5fdf6a203146e5dcaf1955c3e19820c0bb3a73bb70ec5629a3af00d43dac95b6f3832ded5c480e872d829981a63206016d4a64f3940b713357')
-
-prepare() {
-  cd "${pkgname}"
-  git submodule init
-  git config submodule.external/unbound.url "$srcdir/unbound"
-  git config submodule.external/miniupnp.url "$srcdir/miniupnp"
-  git config submodule.external/rapidjson.url "$srcdir/rapidjson"
-  git config submodule.external/trezor-common.url "$srcdir/trezor-common"
-  git config submodule.external/randomx.url "$srcdir/randomx"
-  git submodule update
-}
-
-build() {
-  cd "${pkgname}"
-  mkdir -p build && cd build
-  cmake -D BUILD_TESTS=ON -D CMAKE_BUILD_TYPE=release -D ARCH=default ../
-  make
-}
-
-package() {
-  backup=('etc/monerod.conf')
-
-  cd "${pkgname}"
-  install -Dm644 "LICENSE" -t "${pkgdir}/usr/share/licenses/${pkgname}"
-
-  install -Dm644 "utils/conf/monerod.conf" "${pkgdir}/etc/monerod.conf"
-  install -Dm644 "utils/systemd/monerod.service" 
"${pkgdir}/usr/lib/systemd/system/monerod.service"
-  install -Dm644 "../monero.sysusers" 
"${pkgdir}/usr/lib/sysusers.d/monero.conf"
-  install -Dm644 "../monero.tmpfiles" 
"${pkgdir}/usr/lib/tmpfiles.d/monero.conf"
-
-  install -Dm755 "build/bin/monero-blockchain-ancestry" \
- "build/bin/monero-blockchain-depth" \
- "build/bin/monero-blockchain-export" \
- "build/bin/monero-blockchain-import" \
- "build/bin/monero-blockchain-mark-spent-outputs" \
- "build/bin/monero-blockchain-prune" \
- "build/bin/monero-blockchain-prune-known-spent-data" \
- "build/bin/monero-blockchain-stats" \
- "build/bin/monero-blockchain-usage" \
- "build/bin/monero-gen-ssl-cert" \
- "build/bin/monero-gen-trusted-multisig" \
- "build/bin/monero-wallet-cli" \
- "build/bin/monero-wallet-rpc" \
- "build/bin/monerod" \
- -t "${pkgdir}/usr/bin"
-}
-
-# vim: ts=2 sw=2 et:

Copied: monero/repos/community-x86_64/PKGBUILD (from rev 711328, 
monero/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-22 02:02:55 UTC (rev 711329)
@@ -0,0 +1,77 @@
+# Maintainer: kpcyrd 
+
+pkgname=monero
+pkgver=0.17.0.0
+_commit=d27d4526fe89b7cdeb4b296280c4a6cf7efe21f8
+pkgrel=1
+pkgdesc="Monero: the secure, private, untraceable peer-to-peer currency"
+license=('BSD')
+arch=('x86_64')
+url="https://getmonero.org/;
+depends=('boost-libs' 'libunwind' 'openssl' 'readline' 'zeromq' 'pcsclite' 
'hidapi' 'protobuf')
+makedepends=('git' 'cmake' 'boost')
+source=(
+
"${pkgname}"::"git+https://github.com/monero-project/monero#commit=${_commit};
+"git+https://github.com/monero-project/unbound.git;
+"git+https://github.com/monero-project/miniupnp.git;
+

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

2020-09-21 Thread Kpcyrd via arch-commits
Date: Tuesday, September 22, 2020 @ 02:02:38
  Author: kpcyrd
Revision: 711328

upgpkg: monero 0.17.0.0-1

Modified:
  monero/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-22 00:50:17 UTC (rev 711327)
+++ PKGBUILD2020-09-22 02:02:38 UTC (rev 711328)
@@ -1,9 +1,9 @@
 # Maintainer: kpcyrd 
 
 pkgname=monero
-pkgver=0.16.0.3
-_commit=7bd1ed03dd29d1f194503b6fdce6588306328b72
-pkgrel=2
+pkgver=0.17.0.0
+_commit=d27d4526fe89b7cdeb4b296280c4a6cf7efe21f8
+pkgrel=1
 pkgdesc="Monero: the secure, private, untraceable peer-to-peer currency"
 license=('BSD')
 arch=('x86_64')


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

2020-09-21 Thread Kpcyrd via arch-commits
Date: Tuesday, September 22, 2020 @ 00:50:01
  Author: kpcyrd
Revision: 711326

upgpkg: cjdns 21-1

Modified:
  cjdns/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-22 00:09:08 UTC (rev 711325)
+++ PKGBUILD2020-09-22 00:50:01 UTC (rev 711326)
@@ -6,7 +6,7 @@
 # Contributor: Xyne
 
 pkgname=cjdns
-pkgver=20.7
+pkgver=21
 pkgrel=1
 pkgdesc='Routing engine designed for security, scalability, speed and ease of 
use'
 url='https://github.com/cjdelisle/cjdns'
@@ -17,8 +17,8 @@
 makedepends=('nodejs' 'python')
 install=cjdns.install
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/cjdelisle/${pkgname}/archive/cjdns-v${pkgver}.tar.gz)
-sha512sums=('db103e70e3d9f5e4958dcbeed51df358450f9489b6573f9b9eddc1839ee2051fe5180eede894b465e92915fabcb4cb64ce08a41c06450f14de75943879633f25')
-b2sums=('e35e114b6e23735d316d2ab7385b81174a748c56b5da2326e4e956ed9b8151a487575e06b6576d556435908d87c6989a45b7a562a45acbbed4d835fdb4636c82')
+sha512sums=('2c0b80c715c8895b573c09787df8be9fcc721d0903c90a32649e22f72e2d7b0b13d4254f31936c61f47cdd1fee8e3cf4a28f827571f94972557258e4a42f9eb2')
+b2sums=('6118c8d0f43ae99c168d40da822f43fa3498bc4f88277f53362edcb7ba11e482b77e0bde1274303c905e02646c4c47af8d0534f256cd4fded35dcece16f30b2c')
 
 build() {
   cd ${pkgname}-${pkgname}-v${pkgver}


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

2020-09-21 Thread Kpcyrd via arch-commits
Date: Tuesday, September 22, 2020 @ 00:50:17
  Author: kpcyrd
Revision: 711327

archrelease: copy trunk to community-x86_64

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

---+
 PKGBUILD  |  102 
 cjdns.install |   52 ++--
 2 files changed, 77 insertions(+), 77 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-22 00:50:01 UTC (rev 711326)
+++ PKGBUILD2020-09-22 00:50:17 UTC (rev 711327)
@@ -1,51 +0,0 @@
-# Maintainer: Levente Polyak 
-# Maintainer: kpcyrd 
-# Contributor: Kevin MacMartin 
-# Contributor: openfbt
-# Contributor: Werecat
-# Contributor: Xyne
-
-pkgname=cjdns
-pkgver=20.7
-pkgrel=1
-pkgdesc='Routing engine designed for security, scalability, speed and ease of 
use'
-url='https://github.com/cjdelisle/cjdns'
-arch=('x86_64')
-license=('GPL3')
-depends=('glibc' 'sh')
-optdepends=('nodejs: optional utilities support')
-makedepends=('nodejs' 'python')
-install=cjdns.install
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/cjdelisle/${pkgname}/archive/cjdns-v${pkgver}.tar.gz)
-sha512sums=('db103e70e3d9f5e4958dcbeed51df358450f9489b6573f9b9eddc1839ee2051fe5180eede894b465e92915fabcb4cb64ce08a41c06450f14de75943879633f25')
-b2sums=('e35e114b6e23735d316d2ab7385b81174a748c56b5da2326e4e956ed9b8151a487575e06b6576d556435908d87c6989a45b7a562a45acbbed4d835fdb4636c82')
-
-build() {
-  cd ${pkgname}-${pkgname}-v${pkgver}
-  # Pretend to be cross compiling so -march=native is not set.
-  CROSS="true" CJDNS_RELEASE_VERSION="${pkgver}" \
-node ./node_build/make.js
-}
-
-package() {
-  cd ${pkgname}-${pkgname}-v${pkgver}
-  install -Dm 755 cjdroute -t "${pkgdir}/usr/bin"
-  install -Dm 644 contrib/systemd/{cjdns,cjdns-resume}.service \
--t "${pkgdir}/usr/lib/systemd/system"
-  install -Dm 644 doc/man/cjdroute.conf.5 -t "${pkgdir}/usr/share/man/man5"
-  install -Dm 644 -t "${pkgdir}/usr/share/doc/${pkgname}" \
-README.md \
-doc/admin-api.md \
-doc/configure.md \
-doc/djc_layer_model.md \
-doc/nat-gateway.md \
-doc/network-services.md \
-doc/non-root-user.md \
-doc/security_specification.md \
-doc/shorewall_and_vpn_gateway_howto.md \
-doc/tunnel.md
-  cp -a tools "${pkgdir}/usr/lib/${pkgname}"
-  cp -a node_modules "${pkgdir}/usr/lib/${pkgname}/node_modules"
-}
-
-# vim: ts=2 sw=2 et:

Copied: cjdns/repos/community-x86_64/PKGBUILD (from rev 711326, 
cjdns/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-22 00:50:17 UTC (rev 711327)
@@ -0,0 +1,51 @@
+# Maintainer: Levente Polyak 
+# Maintainer: kpcyrd 
+# Contributor: Kevin MacMartin 
+# Contributor: openfbt
+# Contributor: Werecat
+# Contributor: Xyne
+
+pkgname=cjdns
+pkgver=21
+pkgrel=1
+pkgdesc='Routing engine designed for security, scalability, speed and ease of 
use'
+url='https://github.com/cjdelisle/cjdns'
+arch=('x86_64')
+license=('GPL3')
+depends=('glibc' 'sh')
+optdepends=('nodejs: optional utilities support')
+makedepends=('nodejs' 'python')
+install=cjdns.install
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/cjdelisle/${pkgname}/archive/cjdns-v${pkgver}.tar.gz)
+sha512sums=('2c0b80c715c8895b573c09787df8be9fcc721d0903c90a32649e22f72e2d7b0b13d4254f31936c61f47cdd1fee8e3cf4a28f827571f94972557258e4a42f9eb2')
+b2sums=('6118c8d0f43ae99c168d40da822f43fa3498bc4f88277f53362edcb7ba11e482b77e0bde1274303c905e02646c4c47af8d0534f256cd4fded35dcece16f30b2c')
+
+build() {
+  cd ${pkgname}-${pkgname}-v${pkgver}
+  # Pretend to be cross compiling so -march=native is not set.
+  CROSS="true" CJDNS_RELEASE_VERSION="${pkgver}" \
+node ./node_build/make.js
+}
+
+package() {
+  cd ${pkgname}-${pkgname}-v${pkgver}
+  install -Dm 755 cjdroute -t "${pkgdir}/usr/bin"
+  install -Dm 644 contrib/systemd/{cjdns,cjdns-resume}.service \
+-t "${pkgdir}/usr/lib/systemd/system"
+  install -Dm 644 doc/man/cjdroute.conf.5 -t "${pkgdir}/usr/share/man/man5"
+  install -Dm 644 -t "${pkgdir}/usr/share/doc/${pkgname}" \
+README.md \
+doc/admin-api.md \
+doc/configure.md \
+doc/djc_layer_model.md \
+doc/nat-gateway.md \
+doc/network-services.md \
+doc/non-root-user.md \
+doc/security_specification.md \
+doc/shorewall_and_vpn_gateway_howto.md \
+doc/tunnel.md
+  cp -a tools "${pkgdir}/usr/lib/${pkgname}"
+  cp -a node_modules "${pkgdir}/usr/lib/${pkgname}/node_modules"
+}
+
+# vim: ts=2 sw=2 et:

Deleted: cjdns.install
===
--- cjdns.install   2020-09-22 00:50:01 UTC (rev 711326)
+++ cjdns.install   

[arch-commits] Commit in unarchiver/trunk (PKGBUILD native_obj_exceptions.patch)

2020-09-21 Thread Anatol Pomozov via arch-commits
Date: Tuesday, September 22, 2020 @ 00:08:46
  Author: anatolik
Revision: 711324

upgpkg: unarchiver 1.10.7-1

Move to the new up-to-date repo https://github.com/MacPaw/XADMaster/

Modified:
  unarchiver/trunk/PKGBUILD
  unarchiver/trunk/native_obj_exceptions.patch

-+
 PKGBUILD|   37 -
 native_obj_exceptions.patch |   20 +---
 2 files changed, 25 insertions(+), 32 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-09-21 21:35:06 UTC (rev 711323)
+++ PKGBUILD2020-09-22 00:08:46 UTC (rev 711324)
@@ -3,28 +3,32 @@
 # Contributor: N30N 
 
 pkgname=unarchiver
-pkgver=1.10.1
-_commit=1534a5cf6900
-pkgrel=10
+pkgver=1.10.7
+_UniversalDetector_pkgver=1.1
+pkgrel=1
 pkgdesc="unar and lsar: Objective-C tools for uncompressing archive files"
 arch=(x86_64)
-url="https://bitbucket.org/kosovan/theunarchiver;
+url="https://github.com/MacPaw/XADMaster;
 license=('LGPL2.1')
-depends=(gnustep-base openssl bzip2 icu gcc-libs zlib)
+depends=(gnustep-base openssl bzip2 icu gcc-libs zlib wavpack)
 makedepends=(gcc-objc gnustep-make)
-source=("https://bitbucket.org/kosovan/theunarchiver/get/unar-${pkgver}.tar.gz;
+source=("XADMaster-${pkgver}.tar.gz::https://github.com/MacPaw/XADMaster/archive/v${pkgver}.tar.gz;
+
"UniversalDetector-${_UniversalDetector_pkgver}.tar.gz::https://github.com/MacPaw/universal-detector/archive/${_UniversalDetector_pkgver}.tar.gz;
 "native_obj_exceptions.patch")
-sha1sums=('d7dac2b1786e63787dbea74030ecdf8c425de730'
-  'b8024026607dc2de758479b73d8b01ca6f692b59')
+sha1sums=('edeb1078e36339869a4c48bfc4988016d0f55029'
+  '609aee66fe866f086d8c9eeb66f552d243927a85'
+  '9672c57d4a1705fb4f324ac909c3faa6ccfe33df')
 
-prepare(){
-  cd "$srcdir/kosovan-theunarchiver-${_commit}"
+prepare() {
+  # The project requires UniversalDetector next to the source dir. See the 
project's README for more info about the build requirements.
+  ln -s universal-detector-${_UniversalDetector_pkgver} UniversalDetector
 
-  patch -p1 < ../native_obj_exceptions.patch
+  cd "$srcdir/XADMaster-${pkgver}"
+  patch < ../native_obj_exceptions.patch
 }
 
 build() {
-  cd "$srcdir/kosovan-theunarchiver-${_commit}/XADMaster"
+  cd "$srcdir/XADMaster-${pkgver}"
 
   . /usr/share/GNUstep/Makefiles/GNUstep.sh
   make -f Makefile.linux
@@ -31,14 +35,13 @@
 }
 
 package() {
-  cd "$srcdir/kosovan-theunarchiver-${_commit}/XADMaster"
+  cd "$srcdir/XADMaster-${pkgver}"
   install -d "$pkgdir/usr/bin/"
   install -m755 unar lsar "$pkgdir/usr/bin/"
 
-  cd "$srcdir/kosovan-theunarchiver-${_commit}/Extra"
   install -d "$pkgdir/usr/share/man/man1"
-  install -m644 lsar.1 unar.1 "$pkgdir/usr/share/man/man1/"
+  install -m644 Extra/{lsar.1,unar.1} "$pkgdir/usr/share/man/man1/"
   install -d "$pkgdir/usr/share/bash-completion/completions/"
-  install -m644 unar.bash_completion 
"$pkgdir/usr/share/bash-completion/completions/unar"
-  install -m644 lsar.bash_completion 
"$pkgdir/usr/share/bash-completion/completions/lsar"
+  install -m644 Extra/unar.bash_completion 
"$pkgdir/usr/share/bash-completion/completions/unar"
+  install -m644 Extra/lsar.bash_completion 
"$pkgdir/usr/share/bash-completion/completions/lsar"
 }

Modified: native_obj_exceptions.patch
===
--- native_obj_exceptions.patch 2020-09-21 21:35:06 UTC (rev 711323)
+++ native_obj_exceptions.patch 2020-09-22 00:08:46 UTC (rev 711324)
@@ -1,7 +1,8 @@
-diff -Naur The Unarchiver/UniversalDetector/Makefile.linux The 
Unarchiver_patched/UniversalDetector/Makefile.linux
 The Unarchiver/UniversalDetector/Makefile.linux2011-04-27 
03:32:21.0 +0200
-+++ The Unarchiver_patched/UniversalDetector/Makefile.linux2011-12-22 
10:48:32.138621163 +0100
-@@ -16,7 +16,6 @@
+diff --git a/Makefile.linux b/Makefile.linux
+index 153ef71..e44ff0e 100644
+--- a/Makefile.linux
 b/Makefile.linux
+@@ -10,7 +10,6 @@ AR = ar
  
  GNUSTEP_OPTS =-DGNUSTEP \
-DGNU_RUNTIME=1 \
@@ -9,14 +10,3 @@
-fgnu-runtime \
-fexceptions \
-fobjc-exceptions \
-diff -Naur The Unarchiver/XADMaster/Makefile.linux The 
Unarchiver_patched/XADMaster/Makefile.linux
 The Unarchiver/XADMaster/Makefile.linux2011-04-27 03:32:21.0 
+0200
-+++ The Unarchiver_patched/XADMaster/Makefile.linux2011-12-22 
10:48:15.488721721 +0100
-@@ -16,7 +16,6 @@
- 
- GNUSTEP_OPTS =-DGNUSTEP \
-   -DGNU_RUNTIME=1 \
--  -D_NATIVE_OBJC_EXCEPTIONS \
-   -fgnu-runtime \
-   -fexceptions \
-   -fobjc-exceptions \


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

2020-09-21 Thread Anatol Pomozov via arch-commits
Date: Tuesday, September 22, 2020 @ 00:09:08
  Author: anatolik
Revision: 711325

archrelease: copy trunk to community-x86_64

Added:
  unarchiver/repos/community-x86_64/PKGBUILD
(from rev 711324, unarchiver/trunk/PKGBUILD)
  unarchiver/repos/community-x86_64/native_obj_exceptions.patch
(from rev 711324, unarchiver/trunk/native_obj_exceptions.patch)
Deleted:
  unarchiver/repos/community-x86_64/PKGBUILD
  unarchiver/repos/community-x86_64/native_obj_exceptions.patch

-+
 PKGBUILD|   91 +-
 native_obj_exceptions.patch |   34 +--
 2 files changed, 59 insertions(+), 66 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-22 00:08:46 UTC (rev 711324)
+++ PKGBUILD2020-09-22 00:09:08 UTC (rev 711325)
@@ -1,44 +0,0 @@
-# Maintainer: Anatol Pomozov 
-# Contributor: Cedric Girard 
-# Contributor: N30N 
-
-pkgname=unarchiver
-pkgver=1.10.1
-_commit=1534a5cf6900
-pkgrel=10
-pkgdesc="unar and lsar: Objective-C tools for uncompressing archive files"
-arch=(x86_64)
-url="https://unarchiver.c3.cx/;
-license=('LGPL2.1')
-depends=(gnustep-base openssl bzip2 icu gcc-libs zlib)
-makedepends=(gcc-objc gnustep-make)
-source=("https://bitbucket.org/kosovan/theunarchiver/get/unar-${pkgver}.tar.gz;
-"native_obj_exceptions.patch")
-sha1sums=('d7dac2b1786e63787dbea74030ecdf8c425de730'
-  'b8024026607dc2de758479b73d8b01ca6f692b59')
-
-prepare(){
-  cd "$srcdir/kosovan-theunarchiver-${_commit}"
-
-  patch -p1 < ../native_obj_exceptions.patch
-}
-
-build() {
-  cd "$srcdir/kosovan-theunarchiver-${_commit}/XADMaster"
-
-  . /usr/share/GNUstep/Makefiles/GNUstep.sh
-  make -f Makefile.linux
-}
-
-package() {
-  cd "$srcdir/kosovan-theunarchiver-${_commit}/XADMaster"
-  install -d "$pkgdir/usr/bin/"
-  install -m755 unar lsar "$pkgdir/usr/bin/"
-
-  cd "$srcdir/kosovan-theunarchiver-${_commit}/Extra"
-  install -d "$pkgdir/usr/share/man/man1"
-  install -m644 lsar.1 unar.1 "$pkgdir/usr/share/man/man1/"
-  install -d "$pkgdir/usr/share/bash-completion/completions/"
-  install -m644 unar.bash_completion 
"$pkgdir/usr/share/bash-completion/completions/unar"
-  install -m644 lsar.bash_completion 
"$pkgdir/usr/share/bash-completion/completions/lsar"
-}

Copied: unarchiver/repos/community-x86_64/PKGBUILD (from rev 711324, 
unarchiver/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-22 00:09:08 UTC (rev 711325)
@@ -0,0 +1,47 @@
+# Maintainer: Anatol Pomozov 
+# Contributor: Cedric Girard 
+# Contributor: N30N 
+
+pkgname=unarchiver
+pkgver=1.10.7
+_UniversalDetector_pkgver=1.1
+pkgrel=1
+pkgdesc="unar and lsar: Objective-C tools for uncompressing archive files"
+arch=(x86_64)
+url="https://github.com/MacPaw/XADMaster;
+license=('LGPL2.1')
+depends=(gnustep-base openssl bzip2 icu gcc-libs zlib wavpack)
+makedepends=(gcc-objc gnustep-make)
+source=("XADMaster-${pkgver}.tar.gz::https://github.com/MacPaw/XADMaster/archive/v${pkgver}.tar.gz;
+
"UniversalDetector-${_UniversalDetector_pkgver}.tar.gz::https://github.com/MacPaw/universal-detector/archive/${_UniversalDetector_pkgver}.tar.gz;
+"native_obj_exceptions.patch")
+sha1sums=('edeb1078e36339869a4c48bfc4988016d0f55029'
+  '609aee66fe866f086d8c9eeb66f552d243927a85'
+  '9672c57d4a1705fb4f324ac909c3faa6ccfe33df')
+
+prepare() {
+  # The project requires UniversalDetector next to the source dir. See the 
project's README for more info about the build requirements.
+  ln -s universal-detector-${_UniversalDetector_pkgver} UniversalDetector
+
+  cd "$srcdir/XADMaster-${pkgver}"
+  patch < ../native_obj_exceptions.patch
+}
+
+build() {
+  cd "$srcdir/XADMaster-${pkgver}"
+
+  . /usr/share/GNUstep/Makefiles/GNUstep.sh
+  make -f Makefile.linux
+}
+
+package() {
+  cd "$srcdir/XADMaster-${pkgver}"
+  install -d "$pkgdir/usr/bin/"
+  install -m755 unar lsar "$pkgdir/usr/bin/"
+
+  install -d "$pkgdir/usr/share/man/man1"
+  install -m644 Extra/{lsar.1,unar.1} "$pkgdir/usr/share/man/man1/"
+  install -d "$pkgdir/usr/share/bash-completion/completions/"
+  install -m644 Extra/unar.bash_completion 
"$pkgdir/usr/share/bash-completion/completions/unar"
+  install -m644 Extra/lsar.bash_completion 
"$pkgdir/usr/share/bash-completion/completions/lsar"
+}

Deleted: native_obj_exceptions.patch
===
--- native_obj_exceptions.patch 2020-09-22 00:08:46 UTC (rev 711324)
+++ native_obj_exceptions.patch 2020-09-22 00:09:08 UTC (rev 711325)
@@ -1,22 +0,0 @@
-diff -Naur The Unarchiver/UniversalDetector/Makefile.linux The 
Unarchiver_patched/UniversalDetector/Makefile.linux
 The Unarchiver/UniversalDetector/Makefile.linux2011-04-27 
03:32:21.0 +0200
-+++ The Unarchiver_patched/UniversalDetector/Makefile.linux

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

2020-09-21 Thread Morten Linderud via arch-commits
Date: Monday, September 21, 2020 @ 21:35:06
  Author: foxboron
Revision: 711323

archrelease: copy trunk to community-any

Added:
  archlinux-repro/repos/community-any/PKGBUILD
(from rev 711322, archlinux-repro/trunk/PKGBUILD)
Deleted:
  archlinux-repro/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-21 21:34:59 UTC (rev 711322)
+++ PKGBUILD2020-09-21 21:35:06 UTC (rev 711323)
@@ -1,26 +0,0 @@
-# Maintainer: Morten Linderud 
-# Maintainer: Jelle van der Waa 
-
-pkgname=archlinux-repro
-pkgver=20200613
-pkgrel=1
-pkgdesc='Tools to reproduce Arch Linux packages'
-arch=('any')
-license=('MIT')
-makedepends=('git' 'asciidoc')
-depends=('diffoscope' 'curl' 'gnupg' 'git' 'diffutils' 'zstd')
-url="http://github.com/archlinux/archlinux-repro;
-source=("https://github.com/archlinux/${pkgname}/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz"{,.sig})
-validpgpkeys=('C100346676634E80C940FB9E9C02FF419FECBE16')
-sha256sums=('22bfc5f1aeebd9789ad6fb6229a5ae4ce3a9dfabe6cc4336b40c0f10eb84bc74'
-'SKIP')
-
-build(){
-  cd "${pkgname}-${pkgver}"
-  make
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  make PREFIX=/usr DESTDIR="$pkgdir" install
-}

Copied: archlinux-repro/repos/community-any/PKGBUILD (from rev 711322, 
archlinux-repro/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-21 21:35:06 UTC (rev 711323)
@@ -0,0 +1,26 @@
+# Maintainer: Morten Linderud 
+# Maintainer: Jelle van der Waa 
+
+pkgname=archlinux-repro
+pkgver=20200921
+pkgrel=1
+pkgdesc='Tools to reproduce Arch Linux packages'
+arch=('any')
+license=('MIT')
+makedepends=('git' 'asciidoc')
+depends=('diffoscope' 'curl' 'gnupg' 'git' 'diffutils' 'zstd')
+url="http://github.com/archlinux/archlinux-repro;
+source=("https://github.com/archlinux/${pkgname}/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz"{,.sig})
+validpgpkeys=('C100346676634E80C940FB9E9C02FF419FECBE16')
+sha256sums=('816d0d00e9bb647101a44681cc05448fa26c106e1e72ce3e4313417e65ca60cb'
+'SKIP')
+
+build(){
+  cd "${pkgname}-${pkgver}"
+  make
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  make PREFIX=/usr DESTDIR="$pkgdir" install
+}


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

2020-09-21 Thread Morten Linderud via arch-commits
Date: Monday, September 21, 2020 @ 21:34:59
  Author: foxboron
Revision: 711322

upgpkg: archlinux-repro 20200921-1

Modified:
  archlinux-repro/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-21 20:40:53 UTC (rev 711321)
+++ PKGBUILD2020-09-21 21:34:59 UTC (rev 711322)
@@ -2,7 +2,7 @@
 # Maintainer: Jelle van der Waa 
 
 pkgname=archlinux-repro
-pkgver=20200613
+pkgver=20200921
 pkgrel=1
 pkgdesc='Tools to reproduce Arch Linux packages'
 arch=('any')
@@ -12,7 +12,7 @@
 url="http://github.com/archlinux/archlinux-repro;
 
source=("https://github.com/archlinux/${pkgname}/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz"{,.sig})
 validpgpkeys=('C100346676634E80C940FB9E9C02FF419FECBE16')
-sha256sums=('22bfc5f1aeebd9789ad6fb6229a5ae4ce3a9dfabe6cc4336b40c0f10eb84bc74'
+sha256sums=('816d0d00e9bb647101a44681cc05448fa26c106e1e72ce3e4313417e65ca60cb'
 'SKIP')
 
 build(){


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

2020-09-21 Thread Levente Polyak via arch-commits
Date: Monday, September 21, 2020 @ 20:40:49
  Author: anthraxx
Revision: 711320

upgpkg: ruby-kramdown 2.3.0-1

Modified:
  ruby-kramdown/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-21 20:29:50 UTC (rev 711319)
+++ PKGBUILD2020-09-21 20:40:49 UTC (rev 711320)
@@ -2,7 +2,7 @@
 
 _gemname=kramdown
 pkgname=ruby-kramdown
-pkgver=2.2.1
+pkgver=2.3.0
 pkgrel=1
 pkgdesc='Fast, pure Ruby Markdown superset converter, using a strict syntax 
definition'
 url='https://kramdown.gettalong.org/'
@@ -12,13 +12,13 @@
 makedepends=('ruby-rdoc' 'ruby-rake')
 options=('!emptydirs')
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/gettalong/kramdown/archive/REL_${pkgver//./_}.tar.gz)
-sha256sums=('871924c9713e9cb281c3dc92a6ace1272f1a168211cf238c4471193712e7ab7a')
-sha512sums=('0ad841ecef079cef4a50fd697743de99487ff7127a72c20b8904c8caec831574d424d75bd5f78d85232be174fdfdfafab85e839f90387e3c5cfd17097a7ba83e')
+sha256sums=('3023ad3be1ad07c3fbf1677732ba66942674cc8f2beee866b54fa932cce0910c')
+sha512sums=('9bce4aae940a31e975e1582c47edce046d1fcd61e8dd4a56e5088761b2a3cf4c72cb322c55af4d9b17db14d1e0db56602f8d56e6724e2f9be36307de4249bb84')
 
 prepare() {
   cd ${_gemname}-REL_${pkgver//./_}
   rake gemspec
-  sed -r 's|~>|>=|g' -i ${_gemname}.gemspec # don't give a fuck about rubys 
bla bla
+  sed -r 's|~>|>=|g' -i ${_gemname}.gemspec
 }
 
 build() {


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

2020-09-21 Thread Levente Polyak via arch-commits
Date: Monday, September 21, 2020 @ 20:40:53
  Author: anthraxx
Revision: 711321

archrelease: copy trunk to community-any

Added:
  ruby-kramdown/repos/community-any/PKGBUILD
(from rev 711320, ruby-kramdown/trunk/PKGBUILD)
Deleted:
  ruby-kramdown/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-21 20:40:49 UTC (rev 711320)
+++ PKGBUILD2020-09-21 20:40:53 UTC (rev 711321)
@@ -1,41 +0,0 @@
-# Maintainer: Levente Polyak 
-
-_gemname=kramdown
-pkgname=ruby-kramdown
-pkgver=2.2.1
-pkgrel=1
-pkgdesc='Fast, pure Ruby Markdown superset converter, using a strict syntax 
definition'
-url='https://kramdown.gettalong.org/'
-arch=('any')
-license=('MIT')
-depends=('ruby')
-makedepends=('ruby-rdoc' 'ruby-rake')
-options=('!emptydirs')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/gettalong/kramdown/archive/REL_${pkgver//./_}.tar.gz)
-sha256sums=('871924c9713e9cb281c3dc92a6ace1272f1a168211cf238c4471193712e7ab7a')
-sha512sums=('0ad841ecef079cef4a50fd697743de99487ff7127a72c20b8904c8caec831574d424d75bd5f78d85232be174fdfdfafab85e839f90387e3c5cfd17097a7ba83e')
-
-prepare() {
-  cd ${_gemname}-REL_${pkgver//./_}
-  rake gemspec
-  sed -r 's|~>|>=|g' -i ${_gemname}.gemspec # don't give a fuck about rubys 
bla bla
-}
-
-build() {
-  cd ${_gemname}-REL_${pkgver//./_}
-  gem build ${_gemname}.gemspec
-}
-
-package() {
-  cd ${_gemname}-REL_${pkgver//./_}
-  local _gemdir="$(gem env gemdir)"
-  gem install --ignore-dependencies --no-user-install -i "${pkgdir}${_gemdir}" 
-n "${pkgdir}/usr/bin" ${_gemname}-${pkgver}.gem
-  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
-  install -Dm 644 COPYING -t "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -d "${pkgdir}/usr/share/man/man1"
-  mv "${pkgdir}/${_gemdir}/gems/kramdown-${pkgver}/man/man1/kramdown.1" 
"${pkgdir}/usr/share/man/man1"
-  rm "${pkgdir}/${_gemdir}/cache/${_gemname}-${pkgver}.gem"
-  rm -r "${pkgdir}/${_gemdir}/gems/kramdown-${pkgver}/test"
-}
-
-# vim: ts=2 sw=2 et:

Copied: ruby-kramdown/repos/community-any/PKGBUILD (from rev 711320, 
ruby-kramdown/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-21 20:40:53 UTC (rev 711321)
@@ -0,0 +1,41 @@
+# Maintainer: Levente Polyak 
+
+_gemname=kramdown
+pkgname=ruby-kramdown
+pkgver=2.3.0
+pkgrel=1
+pkgdesc='Fast, pure Ruby Markdown superset converter, using a strict syntax 
definition'
+url='https://kramdown.gettalong.org/'
+arch=('any')
+license=('MIT')
+depends=('ruby')
+makedepends=('ruby-rdoc' 'ruby-rake')
+options=('!emptydirs')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/gettalong/kramdown/archive/REL_${pkgver//./_}.tar.gz)
+sha256sums=('3023ad3be1ad07c3fbf1677732ba66942674cc8f2beee866b54fa932cce0910c')
+sha512sums=('9bce4aae940a31e975e1582c47edce046d1fcd61e8dd4a56e5088761b2a3cf4c72cb322c55af4d9b17db14d1e0db56602f8d56e6724e2f9be36307de4249bb84')
+
+prepare() {
+  cd ${_gemname}-REL_${pkgver//./_}
+  rake gemspec
+  sed -r 's|~>|>=|g' -i ${_gemname}.gemspec
+}
+
+build() {
+  cd ${_gemname}-REL_${pkgver//./_}
+  gem build ${_gemname}.gemspec
+}
+
+package() {
+  cd ${_gemname}-REL_${pkgver//./_}
+  local _gemdir="$(gem env gemdir)"
+  gem install --ignore-dependencies --no-user-install -i "${pkgdir}${_gemdir}" 
-n "${pkgdir}/usr/bin" ${_gemname}-${pkgver}.gem
+  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 COPYING -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -d "${pkgdir}/usr/share/man/man1"
+  mv "${pkgdir}/${_gemdir}/gems/kramdown-${pkgver}/man/man1/kramdown.1" 
"${pkgdir}/usr/share/man/man1"
+  rm "${pkgdir}/${_gemdir}/cache/${_gemname}-${pkgver}.gem"
+  rm -r "${pkgdir}/${_gemdir}/gems/kramdown-${pkgver}/test"
+}
+
+# vim: ts=2 sw=2 et:


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

2020-09-21 Thread Jan Steffens via arch-commits
Date: Monday, September 21, 2020 @ 20:36:47
  Author: heftig
Revision: 396414

0.14.6-1

Modified:
  cbindgen/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-21 20:34:09 UTC (rev 396413)
+++ PKGBUILD2020-09-21 20:36:47 UTC (rev 396414)
@@ -1,7 +1,7 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgname=cbindgen
-pkgver=0.14.5
+pkgver=0.14.6
 pkgrel=1
 pkgdesc="A tool for generating C bindings to Rust code"
 url="https://github.com/eqrion/cbindgen;
@@ -9,7 +9,7 @@
 license=(MPL2)
 depends=(gcc-libs)
 makedepends=(cargo git)
-_commit=1e46e53ae22b1d85bc794911dd750543e374bad7  # tags/v0.14.5^0
+_commit=e4da7d39a6d1481420440b37dcfe85d7ea4527d5  # tags/v0.14.6^0
 source=("git+https://github.com/eqrion/cbindgen#commit=$_commit;)
 sha512sums=('SKIP')
 


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

2020-09-21 Thread Jan Steffens via arch-commits
Date: Monday, September 21, 2020 @ 20:37:07
  Author: heftig
Revision: 396415

archrelease: copy trunk to extra-x86_64

Added:
  cbindgen/repos/extra-x86_64/PKGBUILD
(from rev 396414, cbindgen/trunk/PKGBUILD)
Deleted:
  cbindgen/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-21 20:36:47 UTC (rev 396414)
+++ PKGBUILD2020-09-21 20:37:07 UTC (rev 396415)
@@ -1,41 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=cbindgen
-pkgver=0.14.5
-pkgrel=1
-pkgdesc="A tool for generating C bindings to Rust code"
-url="https://github.com/eqrion/cbindgen;
-arch=(x86_64)
-license=(MPL2)
-depends=(gcc-libs)
-makedepends=(cargo git)
-_commit=1e46e53ae22b1d85bc794911dd750543e374bad7  # tags/v0.14.5^0
-source=("git+https://github.com/eqrion/cbindgen#commit=$_commit;)
-sha512sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/^v//;s/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  cargo fetch --locked --target x86_64-unknown-linux-gnu
-}
-
-build() {
-  cd $pkgname
-  cargo build --release --frozen --all-targets
-}
-
-check() {
-  cd $pkgname
-  # test_expand* fails; needs nightly rust
-  cargo test --release --frozen || :
-}
-
-package() {
-  cd $pkgname
-  install -Dt "$pkgdir/usr/bin" target/release/cbindgen
-  install -Dt "$pkgdir/usr/share/doc/$pkgname" -m644 README.md
-}

Copied: cbindgen/repos/extra-x86_64/PKGBUILD (from rev 396414, 
cbindgen/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-21 20:37:07 UTC (rev 396415)
@@ -0,0 +1,41 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=cbindgen
+pkgver=0.14.6
+pkgrel=1
+pkgdesc="A tool for generating C bindings to Rust code"
+url="https://github.com/eqrion/cbindgen;
+arch=(x86_64)
+license=(MPL2)
+depends=(gcc-libs)
+makedepends=(cargo git)
+_commit=e4da7d39a6d1481420440b37dcfe85d7ea4527d5  # tags/v0.14.6^0
+source=("git+https://github.com/eqrion/cbindgen#commit=$_commit;)
+sha512sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^v//;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  cargo fetch --locked --target x86_64-unknown-linux-gnu
+}
+
+build() {
+  cd $pkgname
+  cargo build --release --frozen --all-targets
+}
+
+check() {
+  cd $pkgname
+  # test_expand* fails; needs nightly rust
+  cargo test --release --frozen || :
+}
+
+package() {
+  cd $pkgname
+  install -Dt "$pkgdir/usr/bin" target/release/cbindgen
+  install -Dt "$pkgdir/usr/share/doc/$pkgname" -m644 README.md
+}


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

2020-09-21 Thread Jan Steffens via arch-commits
Date: Monday, September 21, 2020 @ 20:34:09
  Author: heftig
Revision: 396413

archrelease: copy trunk to testing-any

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

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

Copied: firefox-i18n/repos/testing-any/PKGBUILD (from rev 396412, 
firefox-i18n/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2020-09-21 20:34:09 UTC (rev 396413)
@@ -0,0 +1,234 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Thomas Baechler 
+# Contributor: Jaroslaw Swierczynski 
+# Contributor: Michal Hybner 
+# Contributor: Andrea Scarpino 
+
+pkgbase=firefox-i18n
+pkgver=81.0
+pkgrel=1
+pkgdesc="Language pack for Firefox"
+arch=(any)
+license=(MPL GPL LGPL)
+url="https://www.mozilla.org/firefox/;
+
+_languages=(
+  'ach"Acholi"'
+  'af "Afrikaans"'
+  'an "Aragonese"'
+  'ar "Arabic"'
+  'ast"Asturian"'
+  'az "Azerbaijani"'
+  'be "Belarusian"'
+  'bg "Bulgarian"'
+  'bn "Bengali"'
+  'br "Breton"'
+  'bs "Bosnian"'
+  'ca-valencia "Catalan (Valencian)"'
+  'ca "Catalan"'
+  'cak"Maya Kaqchikel"'
+  'cs "Czech"'
+  'cy "Welsh"'
+  'da "Danish"'
+  'de "German"'
+  'dsb"Lower Sorbian"'
+  'el "Greek"'
+  'en-CA  "English (Canadian)"'
+  'en-GB  "English (British)"'
+  'en-US  "English (US)"'
+  '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"'
+  'mk "Macedonian"'
+  'mr "Marathi"'
+  'ms "Malay"'
+  'my "Burmese"'
+  'nb-NO  "Norwegian (Bokmål)"'
+  'ne-NP  "Nepali"'
+  'nl "Dutch"'
+  'nn-NO  "Norwegian (Nynorsk)"'
+  'oc "Occitan"'
+  '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"'
+  'tl "Tagalog"'
+  'tr "Turkish"'
+  'trs"Chicahuaxtla Triqui"'
+  'uk "Ukrainian"'
+  'ur "Urdu"'
+  'uz "Uzbek"'
+  'vi "Vietnamese"'
+  'xh "Xhosa"'
+  'zh-CN  "Chinese (Simplified)"'
+  'zh-TW  "Chinese (Traditional)"'
+)
+
+pkgname=()
+source=()
+_url=https://ftp.mozilla.org/pub/firefox/releases/$pkgver/linux-x86_64/xpi
+
+for _lang in "${_languages[@]}"; do
+  _locale=${_lang%% *}
+  _pkgname=firefox-i18n-${_locale,,}
+
+  pkgname+=($_pkgname)
+  source+=("firefox-i18n-$pkgver-$_locale.xpi::$_url/$_locale.xpi")
+  eval "package_$_pkgname() {
+_package $_lang
+  }"
+done
+
+# Don't extract anything
+noextract=(${source[@]%%::*})
+
+_package() {
+  pkgdesc="$2 language pack for Firefox"
+  depends=("firefox>=$pkgver")
+  install -Dm644 firefox-i18n-$pkgver-$1.xpi \
+
"$pkgdir/usr/lib/firefox/browser/extensions/langpack-$1...@firefox.mozilla.org.xpi"
+}
+
+sha256sums=('8cd1ec10c010f401cbcc545a4aecbee3a273e0c3cbd1c4d308cfc75e869d0b3f'
+'33c126896c1bc8e50ed86cd5fa03eef48a5e71853d9ceece13223c993f970bf4'
+'a08e18211de6ea1abba60de04e081fd3eb240c3edd61778b8d7448a04a79acc6'
+'31ebed5160d564ea30a9c114b0f27e58ef083cb7b5cd63f2a4c8f77c77ee7370'
+'96bb69323a63f9723d6be61ce2de868c361295fc8c10c2e9b4fd3d9d6ede147f'
+'3a9ea613060014b2b39d19897f8a8e7b1cb3b675991b9c7fce80f5bceed42563'
+'bbcc984e37689cd11225006b007a6bb89aa071d3c543425c69cc008e8bf07a62'
+'6421a0b4496549de3a2fcba9c2f6e87f3f1707b86d58142dbc49bb0ee165c5c6'
+'ae15860d897127acc275b8478186ba39aae994f8887641a6d36cb8e9c7f976fe'
+'981bab9f186276d3ead4aa97002e3d38436191bff5ab9d16e5d8ed9864b70ebb'
+'9ab56eb86158b65713613559b5b851be84797f3d7d0fe47e026630eb3dcfac8e'
+

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

2020-09-21 Thread Jan Steffens via arch-commits
Date: Monday, September 21, 2020 @ 20:33:52
  Author: heftig
Revision: 396412

archrelease: copy trunk to testing-x86_64

Added:
  firefox/repos/testing-x86_64/
  
firefox/repos/testing-x86_64/0001-Use-remoting-name-for-GDK-application-names.patch
(from rev 396411, 
firefox/trunk/0001-Use-remoting-name-for-GDK-application-names.patch)
  firefox/repos/testing-x86_64/PKGBUILD
(from rev 396411, firefox/trunk/PKGBUILD)
  firefox/repos/testing-x86_64/firefox.desktop
(from rev 396411, firefox/trunk/firefox.desktop)
  firefox/repos/testing-x86_64/upload-symbol-archive
(from rev 396411, firefox/trunk/upload-symbol-archive)

+
 0001-Use-remoting-name-for-GDK-application-names.patch |   59 ++
 PKGBUILD   |  217 +
 firefox.desktop|  340 +++
 upload-symbol-archive  |   25 +
 4 files changed, 641 insertions(+)

Copied: 
firefox/repos/testing-x86_64/0001-Use-remoting-name-for-GDK-application-names.patch
 (from rev 396411, 
firefox/trunk/0001-Use-remoting-name-for-GDK-application-names.patch)
===
--- testing-x86_64/0001-Use-remoting-name-for-GDK-application-names.patch   
(rev 0)
+++ testing-x86_64/0001-Use-remoting-name-for-GDK-application-names.patch   
2020-09-21 20:33:52 UTC (rev 396412)
@@ -0,0 +1,59 @@
+From 5025aab61517c8608b555ba929c61eb0706bd6bd Mon Sep 17 00:00:00 2001
+From: "Jan Alexander Steffens (heftig)" 
+Date: Mon, 25 Mar 2019 20:30:11 +0100
+Subject: [PATCH] Use remoting name for GDK application names
+
+---
+ toolkit/xre/nsAppRunner.cpp |  6 +-
+ widget/gtk/nsAppShell.cpp   | 11 ---
+ 2 files changed, 5 insertions(+), 12 deletions(-)
+
+diff --git a/toolkit/xre/nsAppRunner.cpp b/toolkit/xre/nsAppRunner.cpp
+index da8289200e72..452195b146f3 100644
+--- a/toolkit/xre/nsAppRunner.cpp
 b/toolkit/xre/nsAppRunner.cpp
+@@ -3785,11 +3785,7 @@ int XREMain::XRE_mainStartup(bool* aExitFlag) {
+   // consistently.
+ 
+   // Set program name to the one defined in application.ini.
+-  {
+-nsAutoCString program(gAppData->name);
+-ToLowerCase(program);
+-g_set_prgname(program.get());
+-  }
++  g_set_prgname(gAppData->remotingName);
+ 
+   // Initialize GTK here for splash.
+ 
+diff --git a/widget/gtk/nsAppShell.cpp b/widget/gtk/nsAppShell.cpp
+index 163a93e2d1a4..4b6d45217671 100644
+--- a/widget/gtk/nsAppShell.cpp
 b/widget/gtk/nsAppShell.cpp
+@@ -24,6 +24,7 @@
+ #  include "WakeLockListener.h"
+ #endif
+ #include "gfxPlatform.h"
++#include "nsAppRunner.h"
+ #include "ScreenHelperGTK.h"
+ #include "HeadlessScreenHelper.h"
+ #include "mozilla/widget/ScreenManager.h"
+@@ -175,13 +176,9 @@ nsresult nsAppShell::Init() {
+   // See https://bugzilla.gnome.org/show_bug.cgi?id=747634
+   //
+   // Only bother doing this for the parent process, since it's the one
+-  // creating top-level windows. (At this point, a child process hasn't
+-  // received the list of registered chrome packages, so the
+-  // GetBrandShortName call would fail anyway.)
+-  nsAutoString brandName;
+-  mozilla::widget::WidgetUtils::GetBrandShortName(brandName);
+-  if (!brandName.IsEmpty()) {
+-gdk_set_program_class(NS_ConvertUTF16toUTF8(brandName).get());
++  // creating top-level windows.
++  if (gAppData) {
++gdk_set_program_class(gAppData->remotingName);
+   }
+ }
+   }
+-- 
+2.26.1
+

Copied: firefox/repos/testing-x86_64/PKGBUILD (from rev 396411, 
firefox/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-09-21 20:33:52 UTC (rev 396412)
@@ -0,0 +1,217 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Ionut Biru 
+# Contributor: Jakub Schmidtke 
+
+pkgname=firefox
+pkgver=81.0
+pkgrel=1
+pkgdesc="Standalone web browser from mozilla.org"
+arch=(x86_64)
+license=(MPL GPL LGPL)
+url="https://www.mozilla.org/firefox/;
+depends=(gtk3 libxt mime-types dbus-glib ffmpeg nss ttf-font libpulse)
+makedepends=(unzip zip diffutils yasm mesa imake inetutils xorg-server-xvfb
+ autoconf2.13 rust clang llvm jack gtk2 nodejs cbindgen nasm
+ python-setuptools python-psutil python-zstandard lld)
+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')
+options=(!emptydirs !makeflags !strip)
+source=(https://archive.mozilla.org/pub/firefox/releases/$pkgver/source/firefox-$pkgver.source.tar.xz{,.asc}
+0001-Use-remoting-name-for-GDK-application-names.patch
+

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

2020-09-21 Thread Jan Steffens via arch-commits
Date: Monday, September 21, 2020 @ 20:31:39
  Author: heftig
Revision: 396411

81.0-1

Modified:
  firefox/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-21 20:24:43 UTC (rev 396410)
+++ PKGBUILD2020-09-21 20:31:39 UTC (rev 396411)
@@ -3,7 +3,7 @@
 # Contributor: Jakub Schmidtke 
 
 pkgname=firefox
-pkgver=80.0.1
+pkgver=81.0
 pkgrel=1
 pkgdesc="Standalone web browser from mozilla.org"
 arch=(x86_64)
@@ -12,7 +12,7 @@
 depends=(gtk3 libxt mime-types dbus-glib ffmpeg nss ttf-font libpulse)
 makedepends=(unzip zip diffutils yasm mesa imake inetutils xorg-server-xvfb
  autoconf2.13 rust clang llvm jack gtk2 nodejs cbindgen nasm
- python-setuptools python-psutil lld)
+ python-setuptools python-psutil python-zstandard lld)
 optdepends=('networkmanager: Location detection via available WiFi networks'
 'libnotify: Notification integration'
 'pulseaudio: Audio support'
@@ -22,7 +22,7 @@
 
source=(https://archive.mozilla.org/pub/firefox/releases/$pkgver/source/firefox-$pkgver.source.tar.xz{,.asc}
 0001-Use-remoting-name-for-GDK-application-names.patch
 $pkgname.desktop)
-sha256sums=('596b085e32a2d683ba960e161ea65c6271f90f576d4bf956e0d48e83af992c21'
+sha256sums=('9328745012178aee5a4f47c833539f7872cc6e0f20a853568a313e60cabd1ec8'
 'SKIP'
 '3bb7463471fb43b2163a705a79a13a3003d70fff4bbe44f467807ca056de9a75'
 '298eae9de76ec53182f38d5c549d0379569916eebf62149f9d7f4a7edef36abf')
@@ -101,6 +101,8 @@
 
   export MOZ_NOSPAM=1
   export MOZBUILD_STATE_PATH="$srcdir/mozbuild"
+  export MOZ_ENABLE_FULL_SYMBOLS=1
+  export MACH_USE_SYSTEM_PYTHON=1
 
   # LTO needs more open files
   ulimit -n 4096
@@ -208,7 +210,7 @@
   if [[ -f $SOCORRO_SYMBOL_UPLOAD_TOKEN_FILE ]]; then
 make -C obj uploadsymbols
   else
-cp -fvt "$startdir" obj/dist/*crashreporter-symbols-full.zip
+cp -fvt "$startdir" obj/dist/*crashreporter-symbols-full.tar.zst
   fi
 }
 


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

2020-09-21 Thread Levente Polyak via arch-commits
Date: Monday, September 21, 2020 @ 20:29:50
  Author: anthraxx
Revision: 711319

archrelease: copy trunk to community-x86_64

Added:
  eksctl/repos/community-x86_64/PKGBUILD
(from rev 711318, eksctl/trunk/PKGBUILD)
Deleted:
  eksctl/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-21 20:29:46 UTC (rev 711318)
+++ PKGBUILD2020-09-21 20:29:50 UTC (rev 711319)
@@ -1,42 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: David Birks 
-# Contributor: Mike Williamson 
-
-pkgname=eksctl
-pkgver=0.27.0
-pkgrel=2
-pkgdesc='Command line tool for creating clusters on Amazon EKS'
-url='https://github.com/weaveworks/eksctl'
-arch=('x86_64')
-license=('Apache')
-depends=('kubectl' 'glibc')
-makedepends=('go')
-source=("${url}/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz")
-sha256sums=('5c5b3f4a1b5570c74822e1de985232a6cda3dae46c87837b3e06bf80d429f7b8')
-b2sums=('f0d5e9bc112d508a67a8c6ca77a82f64b497b273ebcd8994f773665a93826893539c30107bf4d68441b051cc3f3e2e7c4cb0dce97abf1293d9178bacdcd28079')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_LDFLAGS="${LDFLAGS}"
-  export GOFLAGS="-buildmode=pie -ldflags=-linkmode=external -trimpath 
-mod=readonly -modcacherw"
-  go build -v \
--ldflags "-linkmode=external -extldflags '${LDFLAGS}' -X 
github.com/weaveworks/eksctl/pkg/version.gitTag=${pkgver}" \
-./cmd/eksctl
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  install -Dm 755 ${pkgname} -t "$pkgdir/usr/bin"
-
-  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
-
-  # completions
-  "${pkgdir}/usr/bin/${pkgname}" completion bash | install -Dm 644 /dev/stdin 
"${pkgdir}/usr/share/bash-completion/completions/${pkgname}"
-  "${pkgdir}/usr/bin/${pkgname}" completion zsh | install -Dm 644 /dev/stdin 
"${pkgdir}/usr/share/zsh/site-functions/_${pkgname}"
-  "${pkgdir}/usr/bin/${pkgname}" completion fish | install -Dm 644 /dev/stdin 
"${pkgdir}/usr/share/fish/completions/${pkgname}.fish"
-}
-
-# vim: ts=2 sw=2 et:

Copied: eksctl/repos/community-x86_64/PKGBUILD (from rev 711318, 
eksctl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-21 20:29:50 UTC (rev 711319)
@@ -0,0 +1,42 @@
+# Maintainer: Levente Polyak 
+# Contributor: David Birks 
+# Contributor: Mike Williamson 
+
+pkgname=eksctl
+pkgver=0.28.0
+pkgrel=1
+pkgdesc='Command line tool for creating clusters on Amazon EKS'
+url='https://github.com/weaveworks/eksctl'
+arch=('x86_64')
+license=('Apache')
+depends=('kubectl' 'glibc')
+makedepends=('go')
+source=("${url}/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz")
+sha256sums=('073a624f2c6f9251ab65e798d1d36534fb56de61f02b4f0aaa353640e2ef460d')
+b2sums=('83486306a3bf7d55c8476f11f3685bd68adc356dfe51d4f0e44c20b0e561e8f8faf96a77bb09475df78e47c363d3ff4fd47078ab10ef01b7092fe21dc8c38e2e')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export GOFLAGS="-buildmode=pie -ldflags=-linkmode=external -trimpath 
-mod=readonly -modcacherw"
+  go build -v \
+-ldflags "-linkmode=external -extldflags '${LDFLAGS}' -X 
github.com/weaveworks/eksctl/pkg/version.gitTag=${pkgver}" \
+./cmd/eksctl
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  install -Dm 755 ${pkgname} -t "$pkgdir/usr/bin"
+
+  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+
+  # completions
+  "${pkgdir}/usr/bin/${pkgname}" completion bash | install -Dm 644 /dev/stdin 
"${pkgdir}/usr/share/bash-completion/completions/${pkgname}"
+  "${pkgdir}/usr/bin/${pkgname}" completion zsh | install -Dm 644 /dev/stdin 
"${pkgdir}/usr/share/zsh/site-functions/_${pkgname}"
+  "${pkgdir}/usr/bin/${pkgname}" completion fish | install -Dm 644 /dev/stdin 
"${pkgdir}/usr/share/fish/completions/${pkgname}.fish"
+}
+
+# vim: ts=2 sw=2 et:


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

2020-09-21 Thread Levente Polyak via arch-commits
Date: Monday, September 21, 2020 @ 20:29:46
  Author: anthraxx
Revision: 711318

upgpkg: eksctl 0.28.0-1

Modified:
  eksctl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-21 20:24:31 UTC (rev 711317)
+++ PKGBUILD2020-09-21 20:29:46 UTC (rev 711318)
@@ -3,8 +3,8 @@
 # Contributor: Mike Williamson 
 
 pkgname=eksctl
-pkgver=0.27.0
-pkgrel=2
+pkgver=0.28.0
+pkgrel=1
 pkgdesc='Command line tool for creating clusters on Amazon EKS'
 url='https://github.com/weaveworks/eksctl'
 arch=('x86_64')
@@ -12,8 +12,8 @@
 depends=('kubectl' 'glibc')
 makedepends=('go')
 source=("${url}/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz")
-sha256sums=('5c5b3f4a1b5570c74822e1de985232a6cda3dae46c87837b3e06bf80d429f7b8')
-b2sums=('f0d5e9bc112d508a67a8c6ca77a82f64b497b273ebcd8994f773665a93826893539c30107bf4d68441b051cc3f3e2e7c4cb0dce97abf1293d9178bacdcd28079')
+sha256sums=('073a624f2c6f9251ab65e798d1d36534fb56de61f02b4f0aaa353640e2ef460d')
+b2sums=('83486306a3bf7d55c8476f11f3685bd68adc356dfe51d4f0e44c20b0e561e8f8faf96a77bb09475df78e47c363d3ff4fd47078ab10ef01b7092fe21dc8c38e2e')
 
 build() {
   cd ${pkgname}-${pkgver}


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

2020-09-21 Thread Antonio Rojas via arch-commits
Date: Monday, September 21, 2020 @ 20:24:43
  Author: arojas
Revision: 396410

archrelease: copy trunk to extra-x86_64

Added:
  markdownpart/repos/extra-x86_64/PKGBUILD
(from rev 396409, markdownpart/trunk/PKGBUILD)
Deleted:
  markdownpart/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-21 20:24:34 UTC (rev 396409)
+++ PKGBUILD2020-09-21 20:24:43 UTC (rev 396410)
@@ -1,25 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=markdownpart
-pkgver=0.1.0
-pkgrel=1
-pkgdesc='KPart for rendering Markdown content'
-arch=(x86_64)
-url='https://kde.org/'
-license=(GPL)
-depends=(kparts)
-makedepends=(extra-cmake-modules)
-source=("https://download.kde.org/stable/$pkgname/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('29831a64548444559740bcff230c4093fbc79155be8ce6af2994f619eb7c7cc3'
-'SKIP')
-validpgpkeys=('0A48BC961075B4BA8523E3790A345FB086E797D9')  # Friedrich W. H. 
Kossebau 
-
-build() {
-  cmake -B build -S $pkgname-$pkgver \
--DBUILD_TESTING=OFF
-  cmake --build build
-}
-
-package() {
-  DESTDIR="$pkgdir" cmake --install build
-}

Copied: markdownpart/repos/extra-x86_64/PKGBUILD (from rev 396409, 
markdownpart/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-21 20:24:43 UTC (rev 396410)
@@ -0,0 +1,25 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=markdownpart
+pkgver=0.1.1
+pkgrel=1
+pkgdesc='KPart for rendering Markdown content'
+arch=(x86_64)
+url='https://kde.org/'
+license=(GPL)
+depends=(kparts)
+makedepends=(extra-cmake-modules)
+source=("https://download.kde.org/stable/$pkgname/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('d1dd6084a8a4e936618817490a4a0e99060865b8a5eebd85d69d42036f1c658b'
+'SKIP')
+validpgpkeys=('0A48BC961075B4BA8523E3790A345FB086E797D9')  # Friedrich W. H. 
Kossebau 
+
+build() {
+  cmake -B build -S $pkgname-$pkgver \
+-DBUILD_TESTING=OFF
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+}


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

2020-09-21 Thread Antonio Rojas via arch-commits
Date: Monday, September 21, 2020 @ 20:24:34
  Author: arojas
Revision: 396409

Update to 0.1.1

Modified:
  markdownpart/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-21 19:16:05 UTC (rev 396408)
+++ PKGBUILD2020-09-21 20:24:34 UTC (rev 396409)
@@ -1,7 +1,7 @@
 # Maintainer: Antonio Rojas 
 
 pkgname=markdownpart
-pkgver=0.1.0
+pkgver=0.1.1
 pkgrel=1
 pkgdesc='KPart for rendering Markdown content'
 arch=(x86_64)
@@ -10,7 +10,7 @@
 depends=(kparts)
 makedepends=(extra-cmake-modules)
 
source=("https://download.kde.org/stable/$pkgname/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('29831a64548444559740bcff230c4093fbc79155be8ce6af2994f619eb7c7cc3'
+sha256sums=('d1dd6084a8a4e936618817490a4a0e99060865b8a5eebd85d69d42036f1c658b'
 'SKIP')
 validpgpkeys=('0A48BC961075B4BA8523E3790A345FB086E797D9')  # Friedrich W. H. 
Kossebau 
 


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

2020-09-21 Thread Felix Yan via arch-commits
Date: Monday, September 21, 2020 @ 20:24:31
  Author: felixonmars
Revision: 711317

archrelease: copy trunk to community-staging-x86_64

Added:
  tamarin-prover/repos/community-staging-x86_64/
  tamarin-prover/repos/community-staging-x86_64/PKGBUILD
(from rev 711316, tamarin-prover/trunk/PKGBUILD)

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

Copied: tamarin-prover/repos/community-staging-x86_64/PKGBUILD (from rev 
711316, tamarin-prover/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-09-21 20:24:31 UTC (rev 711317)
@@ -0,0 +1,50 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=tamarin-prover
+pkgver=1.6.0
+pkgrel=7
+pkgdesc="The Tamarin prover for security protocol analysis"
+url="https://tamarin-prover.github.io;
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'graphviz' 'maude' 'haskell-hunit' 
'haskell-binary-orphans' 'haskell-binary-instances'
+ 'haskell-blaze-builder' 'haskell-blaze-html' 'haskell-cmdargs' 
'haskell-conduit'
+ 'haskell-fclabels' 'haskell-file-embed' 'haskell-gitrev' 
'haskell-http-types'
+ 'haskell-lifted-base' 'haskell-monad-unlift' 'haskell-resourcet' 
'haskell-safe'
+ 'haskell-shakespeare' 'haskell-threads' 'haskell-wai' 'haskell-warp' 
'haskell-yesod-core'
+ 'haskell-yesod-static' 'haskell-tamarin-prover-utils' 
'haskell-tamarin-prover-term'
+ 'haskell-tamarin-prover-theory' 'haskell-tamarin-prover-sapic')
+optdepends=('ocaml: for sapic support')
+makedepends=('ghc' 'ocaml>=4.11.0')
+source=("tamarin-prover-$pkgver.tar.gz::https://github.com/tamarin-prover/tamarin-prover/archive/$pkgver.tar.gz;)
+sha512sums=('7f3569f740d63d715b92a8f073eaecb8b32efe59b910b246977d36bb9e873765440e72feb6e76c7cbafab0495b88cfc666bb1dd12f685627c60d5cbd97b2973e')
+
+prepare() {
+cd $pkgname-$pkgver
+sed -i '/cp sapic/d' plugins/sapic/Makefile
+}
+
+build() {
+cd $pkgname-$pkgver
+
+runhaskell Setup configure -O --enable-executable-dynamic --prefix=/usr \
+--docdir="/usr/share/doc/${pkgname}" --datasubdir="$pkgname" \
+-fthreaded -ftest-coverage -f-build-tests --ghc-option='-pie'
+runhaskell Setup build $MAKEFLAGS
+
+cd plugins/sapic
+make -j1
+}
+
+package() {
+cd $pkgname-$pkgver
+runhaskell Setup copy --destdir="${pkgdir}"
+
+install -Dm644 etc/filetype.vim 
"$pkgdir"/usr/share/vim/vimfiles/ftdetect/tamarin.vim
+install -Dm644 etc/syntax/spthy.vim 
"$pkgdir"/usr/share/vim/vimfiles/syntax/spthy.vim
+ln -s spthy.vim "$pkgdir"/usr/share/vim/vimfiles/syntax/sapic.vim
+
+cd plugins/sapic
+install -Dm755 sapic "$pkgdir"/usr/bin/sapic
+}


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

2020-09-21 Thread Felix Yan via arch-commits
Date: Monday, September 21, 2020 @ 20:24:17
  Author: felixonmars
Revision: 711316

upgpkg: tamarin-prover 1.6.0-7: rebuild with wai-extra 3.0.32

Modified:
  tamarin-prover/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-21 20:23:13 UTC (rev 711315)
+++ PKGBUILD2020-09-21 20:24:17 UTC (rev 711316)
@@ -3,7 +3,7 @@
 
 pkgname=tamarin-prover
 pkgver=1.6.0
-pkgrel=6
+pkgrel=7
 pkgdesc="The Tamarin prover for security protocol analysis"
 url="https://tamarin-prover.github.io;
 license=("GPL")


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

2020-09-21 Thread Felix Yan via arch-commits
Date: Monday, September 21, 2020 @ 20:23:13
  Author: felixonmars
Revision: 711315

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: postgrest/repos/community-staging-x86_64/PKGBUILD (from rev 711314, 
postgrest/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-09-21 20:23:13 UTC (rev 711315)
@@ -0,0 +1,71 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=postgrest
+pkgver=7.0.1
+pkgrel=93
+pkgdesc="REST API for any Postgres database"
+url="https://github.com/begriffs/postgrest;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-http' 'haskell-ranged-sets' 'haskell-aeson' 
'haskell-ansi-wl-pprint'
+ 'haskell-base64-bytestring' 'haskell-case-insensitive' 
'haskell-cassava'
+ 'haskell-configurator-pg' 'haskell-contravariant' 
'haskell-contravariant-extras'
+ 'haskell-cookie' 'haskell-either' 'haskell-gitrev' 'haskell-hasql' 
'haskell-hasql-pool'
+ 'haskell-hasql-transaction' 'haskell-heredoc' 'haskell-http-types'
+ 'haskell-insert-ordered-containers' 
'haskell-interpolatedstring-perl6' 'haskell-jose'
+ 'haskell-lens' 'haskell-lens-aeson' 'haskell-network-uri' 
'haskell-optparse-applicative'
+ 'haskell-parsec' 'haskell-protolude' '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-auto-update' 'haskell-retry' 'haskell-warp')
+makedepends=('ghc' 'haskell-aeson-qq' 'haskell-async' 'haskell-hspec' 
'haskell-hspec-wai'
+ 'haskell-hspec-wai-json' 'haskell-monad-control' 
'haskell-transformers-base')
+checkdepends=('pifpaf' 'postgresql' 'procps-ng')
+source=("$pkgname-$pkgver.tar.bz2::https://github.com/begriffs/postgrest/archive/v$pkgver.tar.gz;)
+sha512sums=('0e6270ff4762b444b4d3791ceea4bb468bc316c9d2103f9d355e2e6108bb4bb51b302499b68a5cfc4ff14f503bdd95985481f7fb6eb6dbb158f1f5350857cf1b')
+
+prepare() {
+cd $pkgname-$pkgver
+sed -i 's/5432/9824/' test/fixtures/dumpfixture.sh
+sed -i 's/< *1.5/<2/;s/< *1.2/<2/' $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 --ghc-option='-pie'
+runhaskell Setup build $MAKEFLAGS
+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)
+createdb postgrest_test
+
+# TODO: user authentication issue?
+POSTGREST_TEST_CONNECTION=$(test/create_test_db 
"postgres://$USER@localhost" postgrest_test) runhaskell Setup test || warning 
"Tests failed"
+
+# 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 postgrest/trunk (PKGBUILD)

2020-09-21 Thread Felix Yan via arch-commits
Date: Monday, September 21, 2020 @ 20:22:59
  Author: felixonmars
Revision: 711314

upgpkg: postgrest 7.0.1-93: rebuild with wai-extra 3.0.32

Modified:
  postgrest/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-21 20:20:52 UTC (rev 711313)
+++ PKGBUILD2020-09-21 20:22:59 UTC (rev 711314)
@@ -3,7 +3,7 @@
 
 pkgname=postgrest
 pkgver=7.0.1
-pkgrel=92
+pkgrel=93
 pkgdesc="REST API for any Postgres database"
 url="https://github.com/begriffs/postgrest;
 license=("MIT")


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

2020-09-21 Thread Felix Yan via arch-commits
Date: Monday, September 21, 2020 @ 20:20:52
  Author: felixonmars
Revision: 711313

archrelease: copy trunk to community-staging-x86_64

Added:
  idris/repos/community-staging-x86_64/
  idris/repos/community-staging-x86_64/PKGBUILD
(from rev 711312, idris/trunk/PKGBUILD)

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

Copied: idris/repos/community-staging-x86_64/PKGBUILD (from rev 711312, 
idris/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-09-21 20:20:52 UTC (rev 711313)
@@ -0,0 +1,62 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=idris
+pkgver=1.3.3
+pkgrel=73
+pkgdesc="Functional Programming Language with Dependent Types"
+url="https://www.idris-lang.org/;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-annotated-wl-pprint' 
'haskell-ansi-terminal'
+ 'haskell-ansi-wl-pprint' 'haskell-async' 'haskell-base64-bytestring' 
'haskell-blaze-html'
+ 'haskell-blaze-markup' 'haskell-cheapskate' 'haskell-code-page' 
'haskell-fingertree'
+ 'haskell-fsnotify' 'haskell-ieee754' 'haskell-libffi' 
'haskell-megaparsec'
+ 'haskell-network' 'haskell-optparse-applicative' 
'haskell-parser-combinators'
+ 'haskell-regex-tdfa' 'haskell-safe' 'haskell-split' 
'haskell-terminal-size'
+ 'haskell-uniplate' 'haskell-unordered-containers' 
'haskell-utf8-string' 'haskell-vector'
+ 'haskell-vector-binary-instances' 'haskell-zip-archive')
+makedepends=('ghc' 'haskell-tagged' 'haskell-tasty' 'haskell-tasty-golden' 
'haskell-tasty-rerun'
+ 'nodejs')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/idris-lang/Idris-dev/archive/v$pkgver.tar.gz;
+
idris-haskeline-0.8.patch::https://github.com/idris-lang/Idris-dev/pull/4871.patch)
+sha512sums=('fc5c65847c8021ed691c7968043a04fcffaed3a44a6339f611fed616fddefa1b5bc2da8e7e6662dfa552981688a1c96571eadc197e4e50ba060de3c6ddbd03de'
+
'5f2efe359d5626c44f0c146f108dae4635ae2c8babf53841d5147d17d5be2460ab19a0b952492c68c93fa6470989bcf396cd7fbf6c8d44ac77792a54c3bbb141')
+
+prepare() {
+cd Idris-dev-$pkgver
+patch -p1 -i ../idris-haskeline-0.8.patch
+sed -i '1ioverride IDRIS := env LD_PRELOAD=$(shell ls 
../../dist/build/libHSidris-*-ghc*.so) $(IDRIS)' \
+libs/*/Makefile
+sed -i -e 's/< *1.5/<2/;s/< *3.1.2/<3.2/;s/< *1.2/<2/;s/< *0.11/<1/' 
idris.cabal
+}
+
+build() {
+cd Idris-dev-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fFFI -fGMP -f-release -f-freestanding -f-CI -f-execonly 
--ghc-option='-pie'
+LC_CTYPE=en_US.UTF-8 runhaskell Setup build $MAKEFLAGS
+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 Idris-dev-$pkgver
+# TODO: figure out the tests
+PATH="$PWD/dist/build:$PWD/dist/build/idris:$PATH" 
LD_LIBRARY_PATH="$PWD/dist/build" IDRIS_LIBRARY_PATH="$PWD/libs" runhaskell 
Setup test || warning "Tests failed"
+}
+
+package() {
+cd Idris-dev-$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 idris/trunk (PKGBUILD)

2020-09-21 Thread Felix Yan via arch-commits
Date: Monday, September 21, 2020 @ 20:20:38
  Author: felixonmars
Revision: 711312

upgpkg: idris 1.3.3-73: rebuild with wai-extra 3.0.32

Modified:
  idris/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-21 20:12:56 UTC (rev 711311)
+++ PKGBUILD2020-09-21 20:20:38 UTC (rev 711312)
@@ -3,7 +3,7 @@
 
 pkgname=idris
 pkgver=1.3.3
-pkgrel=72
+pkgrel=73
 pkgdesc="Functional Programming Language with Dependent Types"
 url="https://www.idris-lang.org/;
 license=("BSD")


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

2020-09-21 Thread Levente Polyak via arch-commits
Date: Monday, September 21, 2020 @ 20:12:52
  Author: anthraxx
Revision: 711310

upgpkg: dmenu 5.0-1

Modified:
  dmenu/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-21 20:07:44 UTC (rev 711309)
+++ PKGBUILD2020-09-21 20:12:52 UTC (rev 711310)
@@ -6,15 +6,16 @@
 # Contributor: Jeff 'codemac' Mickey 
 
 pkgname=dmenu
-pkgver=4.9
-pkgrel=2
+pkgver=5.0
+pkgrel=1
 pkgdesc='Generic menu for X'
 url='https://tools.suckless.org/dmenu/'
 arch=('x86_64')
 license=('MIT')
-depends=('sh' 'libxinerama' 'libxft' 'freetype2')
+depends=('sh' 'glibc' 'coreutils' 'libx11' 'libxinerama' 'libxft' 'freetype2' 
'fontconfig' 'libfontconfig.so')
 source=(https://dl.suckless.org/tools/dmenu-${pkgver}.tar.gz)
-sha512sums=('c2779209fe012de8ca1cdd72923da6d594f4a8368c85c3c0e0afd4ae489a95fe0e6f05a947d115b6b389aa7170ab14c2c645a2031353b0a08f38327ab461fe65')
+sha512sums=('2b6a7cdf5aefc5e7ca7a4944883c3c16ee6f5005d2a96b61482d4899ad395f9cb8926907681d88b9df3e1188cf421dad4cc17e343b752f6cb8b161d33384b3f3')
+b2sums=('9f161e3d44d5cb80e3996db81e28cdf7f143d310ec2660c837df167d8426645dde09d4f5a0c71d4be73f80f76615a32c20dd3d7f30a23506993215c89fe40844')
 
 prepare() {
   cd ${pkgname}-${pkgver}


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

2020-09-21 Thread Levente Polyak via arch-commits
Date: Monday, September 21, 2020 @ 20:12:56
  Author: anthraxx
Revision: 711311

archrelease: copy trunk to community-x86_64

Added:
  dmenu/repos/community-x86_64/PKGBUILD
(from rev 711310, dmenu/trunk/PKGBUILD)
Deleted:
  dmenu/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-21 20:12:52 UTC (rev 711310)
+++ PKGBUILD2020-09-21 20:12:56 UTC (rev 711311)
@@ -1,40 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Sergej Pupykin 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Thorsten Töpper 
-# Contributor: Thayer Williams 
-# Contributor: Jeff 'codemac' Mickey 
-
-pkgname=dmenu
-pkgver=4.9
-pkgrel=2
-pkgdesc='Generic menu for X'
-url='https://tools.suckless.org/dmenu/'
-arch=('x86_64')
-license=('MIT')
-depends=('sh' 'libxinerama' 'libxft' 'freetype2')
-source=(https://dl.suckless.org/tools/dmenu-${pkgver}.tar.gz)
-sha512sums=('c2779209fe012de8ca1cdd72923da6d594f4a8368c85c3c0e0afd4ae489a95fe0e6f05a947d115b6b389aa7170ab14c2c645a2031353b0a08f38327ab461fe65')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-  echo "CPPFLAGS+=${CPPFLAGS}" >> config.mk
-  echo "CFLAGS+=${CFLAGS}" >> config.mk
-  echo "LDFLAGS+=${LDFLAGS}" >> config.mk
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-  make \
- X11INC=/usr/include/X11 \
- X11LIB=/usr/lib/X11 \
- FREETYPEINC=/usr/include/freetype2
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make PREFIX=/usr DESTDIR="${pkgdir}" install
-  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: dmenu/repos/community-x86_64/PKGBUILD (from rev 711310, 
dmenu/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-21 20:12:56 UTC (rev 711311)
@@ -0,0 +1,41 @@
+# Maintainer: Levente Polyak 
+# Contributor: Sergej Pupykin 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Thorsten Töpper 
+# Contributor: Thayer Williams 
+# Contributor: Jeff 'codemac' Mickey 
+
+pkgname=dmenu
+pkgver=5.0
+pkgrel=1
+pkgdesc='Generic menu for X'
+url='https://tools.suckless.org/dmenu/'
+arch=('x86_64')
+license=('MIT')
+depends=('sh' 'glibc' 'coreutils' 'libx11' 'libxinerama' 'libxft' 'freetype2' 
'fontconfig' 'libfontconfig.so')
+source=(https://dl.suckless.org/tools/dmenu-${pkgver}.tar.gz)
+sha512sums=('2b6a7cdf5aefc5e7ca7a4944883c3c16ee6f5005d2a96b61482d4899ad395f9cb8926907681d88b9df3e1188cf421dad4cc17e343b752f6cb8b161d33384b3f3')
+b2sums=('9f161e3d44d5cb80e3996db81e28cdf7f143d310ec2660c837df167d8426645dde09d4f5a0c71d4be73f80f76615a32c20dd3d7f30a23506993215c89fe40844')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  echo "CPPFLAGS+=${CPPFLAGS}" >> config.mk
+  echo "CFLAGS+=${CFLAGS}" >> config.mk
+  echo "LDFLAGS+=${LDFLAGS}" >> config.mk
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  make \
+ X11INC=/usr/include/X11 \
+ X11LIB=/usr/lib/X11 \
+ FREETYPEINC=/usr/include/freetype2
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make PREFIX=/usr DESTDIR="${pkgdir}" install
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:


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

2020-09-21 Thread Felix Yan via arch-commits
Date: Monday, September 21, 2020 @ 20:07:44
  Author: felixonmars
Revision: 711309

archrelease: copy trunk to community-staging-x86_64

Added:
  hoogle/repos/community-staging-x86_64/
  hoogle/repos/community-staging-x86_64/PKGBUILD
(from rev 711308, hoogle/trunk/PKGBUILD)

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

Copied: hoogle/repos/community-staging-x86_64/PKGBUILD (from rev 711308, 
hoogle/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-09-21 20:07:44 UTC (rev 711309)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hoogle
+pkgver=5.0.18
+pkgrel=51
+pkgdesc="Haskell API Search"
+url="https://www.haskell.org/hoogle/;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-quickcheck' 'haskell-aeson' 'haskell-blaze-html'
+ 'haskell-blaze-markup' 'haskell-cmdargs' 'haskell-conduit' 
'haskell-conduit-extra'
+ 'haskell-connection' 'haskell-extra' 'haskell-foundation' 
'haskell-hashable'
+ 'haskell-http-conduit' 'haskell-http-types' 'haskell-js-flot' 
'haskell-js-jquery'
+ 'haskell-mmap' 'haskell-network' 'haskell-old-locale' 
'haskell-process-extras'
+ 'haskell-resourcet' 'haskell-src-exts' 'haskell-storable-tuple' 
'haskell-tar'
+ 'haskell-uniplate' 'haskell-utf8-string' 'haskell-vector' 
'haskell-wai'
+ 'haskell-wai-logger' 'haskell-warp' 'haskell-warp-tls' 'haskell-zlib')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('a5f636513f89574e9fca721d9afdb35e56908ed56b31e292e874125ce997cd76fb2a035037564deb217cc62952d45a6f75adf1e60a9009b3106e23c919cf93cd')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+--ghc-option='-pie'
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-09-21 Thread Felix Yan via arch-commits
Date: Monday, September 21, 2020 @ 20:07:30
  Author: felixonmars
Revision: 711308

upgpkg: hoogle 5.0.18-51: rebuild with wai-extra 3.0.32

Modified:
  hoogle/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-21 20:06:30 UTC (rev 711307)
+++ PKGBUILD2020-09-21 20:07:30 UTC (rev 711308)
@@ -3,7 +3,7 @@
 
 pkgname=hoogle
 pkgver=5.0.18
-pkgrel=50
+pkgrel=51
 pkgdesc="Haskell API Search"
 url="https://www.haskell.org/hoogle/;
 license=("BSD")


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

2020-09-21 Thread Felix Yan via arch-commits
Date: Monday, September 21, 2020 @ 20:06:30
  Author: felixonmars
Revision: 711307

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: hledger-web/repos/community-staging-x86_64/PKGBUILD (from rev 711306, 
hledger-web/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-09-21 20:06:30 UTC (rev 711307)
@@ -0,0 +1,49 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hledger-web
+pkgver=1.19.1
+pkgrel=9
+pkgdesc="Web-based user interface for the hledger accounting system"
+url="http://hledger.org;
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'hledger' 'haskell-hledger-lib' 'haskell-aeson' 
'haskell-blaze-html'
+ 'haskell-blaze-markup' 'haskell-case-insensitive' 
'haskell-clientsession'
+ 'haskell-cmdargs' 'haskell-conduit' 'haskell-conduit-extra' 
'haskell-data-default'
+ 'haskell-decimal' 'haskell-extra' 'haskell-hjsmin' 
'haskell-http-conduit'
+ 'haskell-http-client' 'haskell-http-types' 'haskell-megaparsec' 
'haskell-network'
+ 'haskell-shakespeare' 'haskell-unix-compat' 
'haskell-unordered-containers'
+ 'haskell-utf8-string' 'haskell-wai' 'haskell-wai-cors' 
'haskell-wai-extra'
+ 'haskell-wai-handler-launch' 'haskell-warp' 'haskell-yesod' 
'haskell-yesod-core'
+ 'haskell-yesod-form' 'haskell-yesod-static')
+makedepends=('ghc' 'haskell-hspec' 'haskell-yesod-test')
+replaces=('hledger-api')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('adef619601e918962e7b9eb9a4cd4a5e094b2ad245461d1cddcf9cfdb1c8d9f3b5b7ea08adee50c7855cbac28cf8216decc00dd1f3c1d6fc7da91aeecd9ed1be')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-dev -f-library-only -fthreaded
+runhaskell Setup build $MAKEFLAGS
+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
+runhaskell Setup test
+}
+
+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}"
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-09-21 Thread Felix Yan via arch-commits
Date: Monday, September 21, 2020 @ 20:06:16
  Author: felixonmars
Revision: 711306

upgpkg: hledger-web 1.19.1-9: rebuild with wai-extra 3.0.32

Modified:
  hledger-web/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-21 20:05:14 UTC (rev 711305)
+++ PKGBUILD2020-09-21 20:06:16 UTC (rev 711306)
@@ -3,7 +3,7 @@
 
 pkgname=hledger-web
 pkgver=1.19.1
-pkgrel=8
+pkgrel=9
 pkgdesc="Web-based user interface for the hledger accounting system"
 url="http://hledger.org;
 license=("GPL")


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

2020-09-21 Thread Felix Yan via arch-commits
Date: Monday, September 21, 2020 @ 20:04:59
  Author: felixonmars
Revision: 711304

upgpkg: git-annex 8.20200908-11: rebuild with wai-extra 3.0.32

Modified:
  git-annex/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-21 20:01:53 UTC (rev 711303)
+++ PKGBUILD2020-09-21 20:04:59 UTC (rev 711304)
@@ -3,7 +3,7 @@
 
 pkgname=git-annex
 pkgver=8.20200908
-pkgrel=10
+pkgrel=11
 pkgdesc="Manage files with git, without checking their contents into git"
 url="https://git-annex.branchable.com/;
 license=("AGPL3")


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

2020-09-21 Thread Felix Yan via arch-commits
Date: Monday, September 21, 2020 @ 20:05:14
  Author: felixonmars
Revision: 711305

archrelease: copy trunk to community-staging-x86_64

Added:
  git-annex/repos/community-staging-x86_64/
  git-annex/repos/community-staging-x86_64/PKGBUILD
(from rev 711304, git-annex/trunk/PKGBUILD)

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

Copied: git-annex/repos/community-staging-x86_64/PKGBUILD (from rev 711304, 
git-annex/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-09-21 20:05:14 UTC (rev 711305)
@@ -0,0 +1,48 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=git-annex
+pkgver=8.20200908
+pkgrel=11
+pkgdesc="Manage files with git, without checking their contents into git"
+url="https://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-fdo-notify' 'haskell-feed' 'haskell-filepath-bytestring' 
'haskell-git-lfs'
+ 'haskell-hinotify' 'haskell-hslogger' 'haskell-http-client'
+ 'haskell-http-client-restricted' '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-unliftio-core' 
'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')
+
+build() {
+  cd git-annex
+  sed -e 's|--ghc-options|-O --prefix=/usr --enable-executable-dynamic 
--disable-library-vanilla --docdir=/usr/share/doc/'$pkgname' --ghc-options|' \
+  -i Makefile
+  make GHC="ghc -dynamic" BUILDER=./Setup BUILDEROPTIONS=$MAKEFLAGS
+}
+
+package() {
+  cd git-annex
+  make GHC="ghc -dynamic" BUILDER=./Setup DESTDIR="$pkgdir" install
+
+  rmdir "$pkgdir"/usr/share/doc/git-annex "$pkgdir"/usr/share/doc
+}


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

2020-09-21 Thread Felix Yan via arch-commits
Date: Monday, September 21, 2020 @ 20:01:53
  Author: felixonmars
Revision: 711303

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-yesod-static/repos/community-staging-x86_64/
  haskell-yesod-static/repos/community-staging-x86_64/PKGBUILD
(from rev 711302, haskell-yesod-static/trunk/PKGBUILD)

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

Copied: haskell-yesod-static/repos/community-staging-x86_64/PKGBUILD (from rev 
711302, haskell-yesod-static/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-09-21 20:01:53 UTC (rev 711303)
@@ -0,0 +1,48 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-static
+pkgname=haskell-yesod-static
+pkgver=1.6.1.0
+pkgrel=53
+pkgdesc="Static file serving subsite for Yesod Web Framework."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-async' 'haskell-attoparsec' 
'haskell-base64-bytestring'
+ 'haskell-blaze-builder' 'haskell-conduit' 'haskell-cryptonite'
+ 'haskell-cryptonite-conduit' 'haskell-css-text' 'haskell-data-default'
+ 'haskell-file-embed' 'haskell-hashable' 'haskell-hjsmin' 
'haskell-http-types'
+ 'haskell-memory' 'haskell-mime-types' 'haskell-rio' 
'haskell-unix-compat'
+ 'haskell-unordered-containers' 'haskell-wai' 'haskell-wai-app-static' 
'haskell-yesod-core')
+makedepends=('ghc' 'haskell-hspec' 'haskell-hunit' 'haskell-wai-extra' 
'haskell-yesod-test')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('66037ec28eac83e374161c1b306a4d20805ecb35ccfc4878e7894d961daaf30d9936c6e209641ff323d7e3dd5626f5a24a12915d4205417c496e272a2e969f6e')
+
+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 $MAKEFLAGS
+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-yesod-test/repos (2 files)

2020-09-21 Thread Felix Yan via arch-commits
Date: Monday, September 21, 2020 @ 20:00:49
  Author: felixonmars
Revision: 711301

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-yesod-test/repos/community-staging-x86_64/
  haskell-yesod-test/repos/community-staging-x86_64/PKGBUILD
(from rev 711300, haskell-yesod-test/trunk/PKGBUILD)

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

Copied: haskell-yesod-test/repos/community-staging-x86_64/PKGBUILD (from rev 
711300, haskell-yesod-test/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-09-21 20:00:49 UTC (rev 711301)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+
+_hkgname=yesod-test
+pkgname=haskell-yesod-test
+pkgver=1.6.10
+pkgrel=55
+pkgdesc="Integration testing for WAI/Yesod Applications"
+url="https://www.yesodweb.com;
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-hunit' 'haskell-aeson' 'haskell-attoparsec' 
'haskell-blaze-builder'
+ 'haskell-blaze-html' 'haskell-case-insensitive' 'haskell-conduit'
+ 'haskell-cookie' 'haskell-hspec-core' 'haskell-html-conduit' 
'haskell-http-types'
+ 'haskell-memory' 'haskell-network' 'haskell-pretty-show' 'haskell-wai'
+ 'haskell-wai-extra' 'haskell-xml-conduit' 'haskell-xml-types' 
'haskell-yesod-core')
+makedepends=('ghc' 'haskell-yesod-form' 'haskell-hspec' 'haskell-unliftio' 
'haskell-unliftio-core')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('badbd76b9a345c86f9dcf8b5d6043f173eec60bf6f39bdcb4a60d17d95ad693991a1c7b4061a1e86d61fb9efe3f2f29b3129e6b9ffef4b07d5b563116959b016')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i '/semigroups/d' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build $MAKEFLAGS
+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-yesod-static/trunk (PKGBUILD)

2020-09-21 Thread Felix Yan via arch-commits
Date: Monday, September 21, 2020 @ 20:01:40
  Author: felixonmars
Revision: 711302

upgpkg: haskell-yesod-static 1.6.1.0-53: rebuild with wai-extra 3.0.32

Modified:
  haskell-yesod-static/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-21 20:00:49 UTC (rev 711301)
+++ PKGBUILD2020-09-21 20:01:40 UTC (rev 711302)
@@ -4,7 +4,7 @@
 _hkgname=yesod-static
 pkgname=haskell-yesod-static
 pkgver=1.6.1.0
-pkgrel=52
+pkgrel=53
 pkgdesc="Static file serving subsite for Yesod Web Framework."
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2020-09-21 Thread Felix Yan via arch-commits
Date: Monday, September 21, 2020 @ 19:59:46
  Author: felixonmars
Revision: 711299

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-yesod-auth/repos/community-staging-x86_64/
  haskell-yesod-auth/repos/community-staging-x86_64/PKGBUILD
(from rev 711298, haskell-yesod-auth/trunk/PKGBUILD)

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

Copied: haskell-yesod-auth/repos/community-staging-x86_64/PKGBUILD (from rev 
711298, haskell-yesod-auth/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-09-21 19:59:46 UTC (rev 711299)
@@ -0,0 +1,47 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-auth
+pkgname=haskell-yesod-auth
+pkgver=1.6.10
+pkgrel=118
+pkgdesc="Authentication for Yesod."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-authenticate' 
'haskell-base16-bytestring'
+ 'haskell-base64-bytestring' 'haskell-blaze-builder' 
'haskell-blaze-html'
+ 'haskell-blaze-markup' 'haskell-conduit' 'haskell-conduit-extra' 
'haskell-cryptonite'
+ 'haskell-data-default' 'haskell-email-validate' 'haskell-file-embed' 
'haskell-http-client'
+ 'haskell-http-client-tls' 'haskell-http-conduit' 'haskell-http-types' 
'haskell-memory'
+ 'haskell-network-uri' 'haskell-nonce' 'haskell-persistent' 
'haskell-random' 'haskell-safe'
+ 'haskell-shakespeare' 'haskell-unliftio' 'haskell-unliftio-core'
+ 'haskell-unordered-containers' 'haskell-wai' 'haskell-yesod-core' 
'haskell-yesod-form'
+ 'haskell-yesod-persistent')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('0361d49d625ca01db2fbe063c7a4b314ab29f363295b839210fddb15118929ff619fa0256c4ffe45f06df388166597c1c64a07be8de9019b630e71632d301eb7')
+
+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 \
+-fnetwork-uri
+runhaskell Setup build $MAKEFLAGS
+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-yesod-auth/trunk (PKGBUILD)

2020-09-21 Thread Felix Yan via arch-commits
Date: Monday, September 21, 2020 @ 19:59:32
  Author: felixonmars
Revision: 711298

upgpkg: haskell-yesod-auth 1.6.10-118: rebuild with wai-extra 3.0.32

Modified:
  haskell-yesod-auth/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-21 19:58:42 UTC (rev 711297)
+++ PKGBUILD2020-09-21 19:59:32 UTC (rev 711298)
@@ -4,7 +4,7 @@
 _hkgname=yesod-auth
 pkgname=haskell-yesod-auth
 pkgver=1.6.10
-pkgrel=117
+pkgrel=118
 pkgdesc="Authentication for Yesod."
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2020-09-21 Thread Felix Yan via arch-commits
Date: Monday, September 21, 2020 @ 20:00:35
  Author: felixonmars
Revision: 711300

upgpkg: haskell-yesod-test 1.6.10-55: rebuild with wai-extra 3.0.32

Modified:
  haskell-yesod-test/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-21 19:59:46 UTC (rev 711299)
+++ PKGBUILD2020-09-21 20:00:35 UTC (rev 711300)
@@ -3,7 +3,7 @@
 _hkgname=yesod-test
 pkgname=haskell-yesod-test
 pkgver=1.6.10
-pkgrel=54
+pkgrel=55
 pkgdesc="Integration testing for WAI/Yesod Applications"
 url="https://www.yesodweb.com;
 license=('MIT')


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

2020-09-21 Thread Felix Yan via arch-commits
Date: Monday, September 21, 2020 @ 19:56:49
  Author: felixonmars
Revision: 711294

upgpkg: haskell-yesod-form 1.6.7-254: rebuild with wai-extra 3.0.32

Modified:
  haskell-yesod-form/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-21 19:56:20 UTC (rev 711293)
+++ PKGBUILD2020-09-21 19:56:49 UTC (rev 711294)
@@ -4,7 +4,7 @@
 _hkgname=yesod-form
 pkgname=haskell-yesod-form
 pkgver=1.6.7
-pkgrel=253
+pkgrel=254
 pkgdesc="Form handling support for Yesod Web Framework"
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2020-09-21 Thread Felix Yan via arch-commits
Date: Monday, September 21, 2020 @ 19:56:20
  Author: felixonmars
Revision: 711293

archrelease: copy trunk to community-x86_64

Added:
  deepin-screen-recorder/repos/community-x86_64/PKGBUILD
(from rev 711292, deepin-screen-recorder/trunk/PKGBUILD)
  
deepin-screen-recorder/repos/community-x86_64/deepin-screen-recorder-qt5.15.patch
(from rev 711292, 
deepin-screen-recorder/trunk/deepin-screen-recorder-qt5.15.patch)
Deleted:
  deepin-screen-recorder/repos/community-x86_64/PKGBUILD
  
deepin-screen-recorder/repos/community-x86_64/deepin-screen-recorder-qt5.15.patch

-+
 PKGBUILD|   72 +-
 deepin-screen-recorder-qt5.15.patch |   72 +-
 2 files changed, 72 insertions(+), 72 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-21 19:56:01 UTC (rev 711292)
+++ PKGBUILD2020-09-21 19:56:20 UTC (rev 711293)
@@ -1,36 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Josip Ponjavic 
-# Contributor: Xu Fasheng 
-
-pkgname=deepin-screen-recorder
-pkgver=5.8.0.12
-pkgrel=1
-pkgdesc='Deepin Screen Recorder'
-arch=('x86_64')
-url="https://github.com/linuxdeepin/deepin-screen-recorder;
-license=('GPL3')
-depends=('deepin-qt5integration' 'deepin-turbo' 'byzanz' 'ffmpeg')
-makedepends=('qt5-tools')
-groups=('deepin-extra')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-screen-recorder/archive/$pkgver.tar.gz;
- deepin-screen-recorder-qt5.15.patch)
-sha512sums=('5f0fe403a2ecb86db628c312be1b2b56ebb662906449f035844615ae638eccf6999b7872f69ce982112f3fb78182291eb7bcaf154a45f21fd1fb2fcbf86607c3'
-
'aaef789b5b1e74c9b2972bf94134b639393247ea4c6459e90d0b875d692b6adca71cafc27f1cc402fc81126eb47c52ae816867d7a3d2dfa775594dd839840247')
-
-prepare() {
-  cd deepin-screen-recorder-$pkgver
-  sed -i '/include /a #undef min' src/event_monitor.cpp
-
-  patch -p1 -i ../deepin-screen-recorder-qt5.15.patch # Fix build with Qt 5.15
-}
-
-build(){
-  cd deepin-screen-recorder-$pkgver
-  qmake-qt5 PREFIX=/usr
-  make
-}
-
-package() {
-  cd deepin-screen-recorder-$pkgver
-  make INSTALL_ROOT="$pkgdir" install
-}

Copied: deepin-screen-recorder/repos/community-x86_64/PKGBUILD (from rev 
711292, deepin-screen-recorder/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-21 19:56:20 UTC (rev 711293)
@@ -0,0 +1,36 @@
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-screen-recorder
+pkgver=5.8.0.13
+pkgrel=1
+pkgdesc='Deepin Screen Recorder'
+arch=('x86_64')
+url="https://github.com/linuxdeepin/deepin-screen-recorder;
+license=('GPL3')
+depends=('byzanz' 'deepin-qt5integration' 'deepin-turbo' 'ffmpeg' 'ki18n' 
'kwindowsystem')
+makedepends=('qt5-tools')
+groups=('deepin-extra')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-screen-recorder/archive/$pkgver.tar.gz;
+ deepin-screen-recorder-qt5.15.patch)
+sha512sums=('9a712e4162e88065a9d05be5f2cf4eef9fa7042c374f3a64d3ca2a674ad8bb76861bbddfe7ec2d15a7c83c3158951c748e1b3461af3d32410f6211db2871b1e7'
+
'aaef789b5b1e74c9b2972bf94134b639393247ea4c6459e90d0b875d692b6adca71cafc27f1cc402fc81126eb47c52ae816867d7a3d2dfa775594dd839840247')
+
+prepare() {
+  cd deepin-screen-recorder-$pkgver
+  sed -i '/include /a #undef min' src/event_monitor.cpp
+
+  patch -p1 -i ../deepin-screen-recorder-qt5.15.patch # Fix build with Qt 5.15
+}
+
+build(){
+  cd deepin-screen-recorder-$pkgver
+  qmake-qt5 PREFIX=/usr
+  make
+}
+
+package() {
+  cd deepin-screen-recorder-$pkgver
+  make INSTALL_ROOT="$pkgdir" install
+}

Deleted: deepin-screen-recorder-qt5.15.patch
===
--- deepin-screen-recorder-qt5.15.patch 2020-09-21 19:56:01 UTC (rev 711292)
+++ deepin-screen-recorder-qt5.15.patch 2020-09-21 19:56:20 UTC (rev 711293)
@@ -1,36 +0,0 @@
-diff --git a/src/utils.cpp b/src/utils.cpp
-index 96f2226..7076d09 100755
 a/src/utils.cpp
-+++ b/src/utils.cpp
-@@ -27,6 +27,7 @@
- #include 
- #include 
- #include 
-+#include 
- #include 
- #include 
- #include 
-diff --git a/src/widgets/shapeswidget.cpp b/src/widgets/shapeswidget.cpp
-index 127620e..38638df 100755
 a/src/widgets/shapeswidget.cpp
-+++ b/src/widgets/shapeswidget.cpp
-@@ -20,6 +20,7 @@
- #include "shapeswidget.h"
- #include 
- #include 
-+#include 
- #include 
- 
- #include "../utils/calculaterect.h"
-diff --git a/src/widgets/tooltips.cpp b/src/widgets/tooltips.cpp
-index afd844a..0f377bb 100644
 a/src/widgets/tooltips.cpp
-+++ b/src/widgets/tooltips.cpp
-@@ -33,6 +33,7 @@
- #include 
- #include 
- #include 
-+#include 
- #include 
- #include 
- #include 

Copied: 
deepin-screen-recorder/repos/community-x86_64/deepin-screen-recorder-qt5.15.patch
 (from 

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

2020-09-21 Thread Felix Yan via arch-commits
Date: Monday, September 21, 2020 @ 19:58:09
  Author: felixonmars
Revision: 711296

upgpkg: haskell-yesod 1.6.1.0-33: rebuild with wai-extra 3.0.32

Modified:
  haskell-yesod/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-21 19:57:04 UTC (rev 711295)
+++ PKGBUILD2020-09-21 19:58:09 UTC (rev 711296)
@@ -4,7 +4,7 @@
 _hkgname=yesod
 pkgname=haskell-yesod
 pkgver=1.6.1.0
-pkgrel=32
+pkgrel=33
 pkgdesc="Creation of type-safe, RESTful web applications."
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2020-09-21 Thread Felix Yan via arch-commits
Date: Monday, September 21, 2020 @ 19:57:04
  Author: felixonmars
Revision: 711295

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-yesod-form/repos/community-staging-x86_64/
  haskell-yesod-form/repos/community-staging-x86_64/PKGBUILD
(from rev 711294, haskell-yesod-form/trunk/PKGBUILD)

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

Copied: haskell-yesod-form/repos/community-staging-x86_64/PKGBUILD (from rev 
711294, haskell-yesod-form/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-09-21 19:57:04 UTC (rev 711295)
@@ -0,0 +1,47 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-form
+pkgname=haskell-yesod-form
+pkgver=1.6.7
+pkgrel=254
+pkgdesc="Form handling support for Yesod Web Framework"
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-attoparsec' 
'haskell-blaze-builder' 'haskell-blaze-html'
+ 'haskell-blaze-markup' 'haskell-byteable' 'haskell-data-default' 
'haskell-email-validate'
+ 'haskell-network-uri' 'haskell-persistent' 'haskell-resourcet' 
'haskell-shakespeare'
+ 'haskell-wai' 'haskell-xss-sanitize' 'haskell-yesod-core' 
'haskell-yesod-persistent')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('a23c2cb67ed0a87afde9e9e903aa789f8fd9c071893a1bebd0ff9dc3dec6e8e03dd08a4a7ef6ef2d438fbf62597ea0181a038bd7bb5631199c9be83d2a8aef0c')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i '/semigroups/d' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fnetwork-uri
+runhaskell Setup build $MAKEFLAGS
+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-yesod/repos (2 files)

2020-09-21 Thread Felix Yan via arch-commits
Date: Monday, September 21, 2020 @ 19:58:42
  Author: felixonmars
Revision: 711297

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-yesod/repos/community-staging-x86_64/PKGBUILD (from rev 711296, 
haskell-yesod/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-09-21 19:58:42 UTC (rev 711297)
@@ -0,0 +1,47 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod
+pkgname=haskell-yesod
+pkgver=1.6.1.0
+pkgrel=33
+pkgdesc="Creation of type-safe, RESTful web applications."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-conduit' 
'haskell-data-default-class'
+ 'haskell-fast-logger' 'haskell-file-embed' 'haskell-monad-logger' 
'haskell-shakespeare'
+ 'haskell-streaming-commons' 'haskell-unordered-containers' 
'haskell-wai'
+ 'haskell-wai-extra' 'haskell-wai-logger' 'haskell-warp' 'haskell-yaml'
+ 'haskell-yesod-core' 'haskell-yesod-form' 'haskell-yesod-persistent')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('712eed39b64f515cb949186ddb950133cc2daccde6d4a9b0115809e5f4726a957b2809ee785b348971c617b3d173bcd40776b065f5bf1d68b79af12905ada77a')
+
+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 $MAKEFLAGS
+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-yesod-persistent/repos (2 files)

2020-09-21 Thread Felix Yan via arch-commits
Date: Monday, September 21, 2020 @ 19:56:00
  Author: felixonmars
Revision: 711291

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-yesod-persistent/repos/community-staging-x86_64/
  haskell-yesod-persistent/repos/community-staging-x86_64/PKGBUILD
(from rev 711290, haskell-yesod-persistent/trunk/PKGBUILD)

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

Copied: haskell-yesod-persistent/repos/community-staging-x86_64/PKGBUILD (from 
rev 711290, haskell-yesod-persistent/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-09-21 19:56:00 UTC (rev 711291)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-persistent
+pkgname=haskell-yesod-persistent
+pkgver=1.6.0.4
+pkgrel=198
+pkgdesc="Some helpers for using Persistent from Yesod."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-blaze-builder" "haskell-conduit" 
"haskell-persistent"
+ "haskell-persistent-template" "haskell-resource-pool" 
"haskell-resourcet"
+ "haskell-yesod-core")
+makedepends=('ghc' 'haskell-hspec' 'haskell-wai-extra' 
'haskell-persistent-sqlite')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('a52d85b025397ae04641346107124a5570765356bc7209f0391646b93b3c8954219c73d717c98d108d552800eeb2122531f98abd2b0e2109aee59c7d9825f70d')
+
+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 $MAKEFLAGS
+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 deepin-screen-recorder/trunk (PKGBUILD)

2020-09-21 Thread Felix Yan via arch-commits
Date: Monday, September 21, 2020 @ 19:56:01
  Author: felixonmars
Revision: 711292

upgpkg: deepin-screen-recorder 5.8.0.13-1

Modified:
  deepin-screen-recorder/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-21 19:56:00 UTC (rev 711291)
+++ PKGBUILD2020-09-21 19:56:01 UTC (rev 711292)
@@ -3,18 +3,18 @@
 # Contributor: Xu Fasheng 
 
 pkgname=deepin-screen-recorder
-pkgver=5.8.0.12
+pkgver=5.8.0.13
 pkgrel=1
 pkgdesc='Deepin Screen Recorder'
 arch=('x86_64')
 url="https://github.com/linuxdeepin/deepin-screen-recorder;
 license=('GPL3')
-depends=('deepin-qt5integration' 'deepin-turbo' 'byzanz' 'ffmpeg')
+depends=('byzanz' 'deepin-qt5integration' 'deepin-turbo' 'ffmpeg' 'ki18n' 
'kwindowsystem')
 makedepends=('qt5-tools')
 groups=('deepin-extra')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-screen-recorder/archive/$pkgver.tar.gz;
  deepin-screen-recorder-qt5.15.patch)
-sha512sums=('5f0fe403a2ecb86db628c312be1b2b56ebb662906449f035844615ae638eccf6999b7872f69ce982112f3fb78182291eb7bcaf154a45f21fd1fb2fcbf86607c3'
+sha512sums=('9a712e4162e88065a9d05be5f2cf4eef9fa7042c374f3a64d3ca2a674ad8bb76861bbddfe7ec2d15a7c83c3158951c748e1b3461af3d32410f6211db2871b1e7'
 
'aaef789b5b1e74c9b2972bf94134b639393247ea4c6459e90d0b875d692b6adca71cafc27f1cc402fc81126eb47c52ae816867d7a3d2dfa775594dd839840247')
 
 prepare() {


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

2020-09-21 Thread Felix Yan via arch-commits
Date: Monday, September 21, 2020 @ 19:55:45
  Author: felixonmars
Revision: 711290

upgpkg: haskell-yesod-persistent 1.6.0.4-198: rebuild with wai-extra 3.0.32

Modified:
  haskell-yesod-persistent/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-21 19:55:07 UTC (rev 711289)
+++ PKGBUILD2020-09-21 19:55:45 UTC (rev 711290)
@@ -4,7 +4,7 @@
 _hkgname=yesod-persistent
 pkgname=haskell-yesod-persistent
 pkgver=1.6.0.4
-pkgrel=197
+pkgrel=198
 pkgdesc="Some helpers for using Persistent from Yesod."
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2020-09-21 Thread Felix Yan via arch-commits
Date: Monday, September 21, 2020 @ 19:55:07
  Author: felixonmars
Revision: 711289

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-yesod-default/repos/community-staging-x86_64/
  haskell-yesod-default/repos/community-staging-x86_64/PKGBUILD
(from rev 711288, haskell-yesod-default/trunk/PKGBUILD)

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

Copied: haskell-yesod-default/repos/community-staging-x86_64/PKGBUILD (from rev 
711288, haskell-yesod-default/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-09-21 19:55:07 UTC (rev 711289)
@@ -0,0 +1,38 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-default
+pkgname=haskell-yesod-default
+pkgver=1.2.0
+pkgrel=810
+pkgdesc="Default config and main functions for your yesod application 
(deprecated)"
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-yesod-core")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('f39ae1953a95c1919a9dd214d93bf81078b1dcbbac737dc9bb7339dbad9dda96')
+
+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 $MAKEFLAGS
+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-yesod-core/repos (2 files)

2020-09-21 Thread Felix Yan via arch-commits
Date: Monday, September 21, 2020 @ 19:54:11
  Author: felixonmars
Revision: 711287

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-yesod-core/repos/community-staging-x86_64/
  haskell-yesod-core/repos/community-staging-x86_64/PKGBUILD
(from rev 711286, haskell-yesod-core/trunk/PKGBUILD)

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

Copied: haskell-yesod-core/repos/community-staging-x86_64/PKGBUILD (from rev 
711286, haskell-yesod-core/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-09-21 19:54:11 UTC (rev 711287)
@@ -0,0 +1,50 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-core
+pkgname=haskell-yesod-core
+pkgver=1.6.18
+pkgrel=100
+pkgdesc="Creation of type-safe, RESTful web applications."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-auto-update' 'haskell-blaze-html'
+ 'haskell-blaze-markup' 'haskell-case-insensitive' 'haskell-cereal'
+ 'haskell-clientsession' 'haskell-conduit' 'haskell-conduit-extra' 
'haskell-cookie'
+ 'haskell-fast-logger' 'haskell-http-types' 'haskell-memory'
+ 'haskell-monad-logger' 'haskell-old-locale' 'haskell-path-pieces' 
'haskell-primitive'
+ 'haskell-random' 'haskell-resourcet' 'haskell-shakespeare' 
'haskell-unix-compat'
+ 'haskell-unliftio' 'haskell-unordered-containers' 'haskell-vector' 
'haskell-wai'
+ 'haskell-wai-extra' 'haskell-wai-logger' 'haskell-warp' 
'haskell-word8')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('babb4f0556107044fcaba04c09ad4bcb0b6269d70763fe0aec31a440c7997c71ebd4de4b3b2881f6c1e31b336de505b9c4e4cf49d1b411abe822ad61b5e0')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i '/semigroups/d;s/< *1.2/<2/' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build $MAKEFLAGS
+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-yesod-default/trunk (PKGBUILD)

2020-09-21 Thread Felix Yan via arch-commits
Date: Monday, September 21, 2020 @ 19:54:47
  Author: felixonmars
Revision: 711288

upgpkg: haskell-yesod-default 1.2.0-810: rebuild with wai-extra 3.0.32

Modified:
  haskell-yesod-default/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-21 19:54:11 UTC (rev 711287)
+++ PKGBUILD2020-09-21 19:54:47 UTC (rev 711288)
@@ -4,7 +4,7 @@
 _hkgname=yesod-default
 pkgname=haskell-yesod-default
 pkgver=1.2.0
-pkgrel=809
+pkgrel=810
 pkgdesc="Default config and main functions for your yesod application 
(deprecated)"
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2020-09-21 Thread Felix Yan via arch-commits
Date: Monday, September 21, 2020 @ 19:53:57
  Author: felixonmars
Revision: 711286

upgpkg: haskell-yesod-core 1.6.18-100: rebuild with wai-extra 3.0.32

Modified:
  haskell-yesod-core/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-21 19:53:08 UTC (rev 711285)
+++ PKGBUILD2020-09-21 19:53:57 UTC (rev 711286)
@@ -4,7 +4,7 @@
 _hkgname=yesod-core
 pkgname=haskell-yesod-core
 pkgver=1.6.18
-pkgrel=99
+pkgrel=100
 pkgdesc="Creation of type-safe, RESTful web applications."
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2020-09-21 Thread Felix Yan via arch-commits
Date: Monday, September 21, 2020 @ 19:51:38
  Author: felixonmars
Revision: 711283

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-hakyll/repos/community-staging-x86_64/PKGBUILD (from rev 
711282, haskell-hakyll/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-09-21 19:51:38 UTC (rev 711283)
@@ -0,0 +1,59 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hakyll
+pkgname=haskell-hakyll
+pkgver=4.13.4.0
+pkgrel=66
+pkgdesc="A static website compiler library"
+url="https://jaspervdj.be/hakyll;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-blaze-html' 'haskell-blaze-markup' 
'haskell-cryptonite'
+ 'haskell-data-default' 'haskell-file-embed' 'haskell-fsnotify' 
'haskell-http-conduit'
+ 'haskell-http-types' 'haskell-lrucache' 'haskell-memory' 
'haskell-network-uri'
+ 'haskell-optparse-applicative' 'pandoc' 'pandoc-citeproc' 
'haskell-random'
+ 'haskell-regex-tdfa' 'haskell-resourcet' 'haskell-scientific' 
'haskell-tagsoup'
+ 'haskell-time-locale-compat' 'haskell-unordered-containers' 
'haskell-vector'
+ 'haskell-wai' 'haskell-wai-app-static' 'haskell-warp' 'haskell-yaml')
+makedepends=('ghc' 'haskell-quickcheck' 'haskell-tasty' 'haskell-tasty-hunit'
+ 'haskell-tasty-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;
+
hakyll-pandoc-2.10.patch::https://github.com/jaspervdj/hakyll/pull/787.patch)
+sha512sums=('4ade6776cfee7a8293ba4a659cf8633c0e6641ee2c33db9cdddeaca996ff092d027ce4165e174d7acdeb8485904394d9a899351d9e3c065e4ce7cb5af61ee08a'
+
'c78d30619a29f0015d74b997187ed22fdd11c62f10a8da3362c3c2090446bdd17cd0afb7397c3f789305de7047299c54bcad845e0255cee327138c463d3dd8ad')
+
+prepare() {
+cd $_hkgname-$pkgver
+patch -p1 -i ../hakyll-pandoc-2.10.patch
+sed -i 's/< *0.0.12/<1/;s/< *2.14/<3/;s/< *1.2/<2/' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --datasubdir="$pkgname" 
--enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fcheckexternal -fwatchserver -fpreviewserver -fusepandoc
+runhaskell Setup build $MAKEFLAGS
+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
+LC_CTYPE=en_US.UTF-8 runhaskell Setup test || warning 
"https://github.com/jaspervdj/hakyll/issues/682;
+}
+
+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-hakyll/trunk (PKGBUILD)

2020-09-21 Thread Felix Yan via arch-commits
Date: Monday, September 21, 2020 @ 19:51:23
  Author: felixonmars
Revision: 711282

upgpkg: haskell-hakyll 4.13.4.0-66: rebuild with wai-extra 3.0.32

Modified:
  haskell-hakyll/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-21 19:51:03 UTC (rev 711281)
+++ PKGBUILD2020-09-21 19:51:23 UTC (rev 711282)
@@ -4,7 +4,7 @@
 _hkgname=hakyll
 pkgname=haskell-hakyll
 pkgver=4.13.4.0
-pkgrel=65
+pkgrel=66
 pkgdesc="A static website compiler library"
 url="https://jaspervdj.be/hakyll;
 license=("BSD")


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

2020-09-21 Thread Felix Yan via arch-commits
Date: Monday, September 21, 2020 @ 19:50:47
  Author: felixonmars
Revision: 711280

upgpkg: fcitx5-configtool 0.0.0.20200921-1

Modified:
  fcitx5-configtool/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-21 19:50:09 UTC (rev 711279)
+++ PKGBUILD2020-09-21 19:50:47 UTC (rev 711280)
@@ -3,8 +3,8 @@
 # Contributor: csslayer 
 
 pkgname=fcitx5-configtool
-pkgver=0.0.0.20200915
-_commit=e8c08930045bc00d49aebb9465445d9ab8d2a120
+pkgver=0.0.0.20200921
+_commit=be88c5b8e68680836fe2f13c01b79a32fbe97111
 pkgrel=1
 pkgdesc="Configuration Tool for Fcitx5"
 arch=('x86_64')
@@ -19,7 +19,7 @@
 'kirigami2: for KCM support')
 makedepends=('extra-cmake-modules' 'kdeclarative' 'kirigami2' 'ninja' 'python')
 
source=("https://github.com/fcitx/fcitx5-configtool/archive/$_commit/fcitx5-configtool-$_commit.tar.gz;)
-sha512sums=('e89a27803c6c493821a1f91e6034701ffbf8e747375acc2445fe65c45804ce0c8496b307bc713e26634299f4c47d60a5f3b653131d294c064c2ac31b05e21ddb')
+sha512sums=('2166830a328c882aece8871455b08e3cc212fa2de9bfedbc6bd384ce21962d3bd59d2be83a2eca99ac7f85e107b61e8c2bf9d6998f26d940e8a49dd18a871ead')
 
 build(){
   cd $pkgname-$_commit


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

2020-09-21 Thread Felix Yan via arch-commits
Date: Monday, September 21, 2020 @ 19:53:08
  Author: felixonmars
Revision: 711285

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-servant-server/repos/community-staging-x86_64/PKGBUILD (from 
rev 711284, haskell-servant-server/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-09-21 19:53:08 UTC (rev 711285)
@@ -0,0 +1,55 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=servant-server
+pkgname=haskell-servant-server
+pkgver=0.18
+pkgrel=5
+pkgdesc="A family of combinators for defining webservices APIs and serving 
them"
+url="https://haskell-servant.readthedocs.org/;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-base-compat' 'haskell-aeson' 
'haskell-base64-bytestring'
+ 'haskell-http-api-data' 'haskell-http-media' 'haskell-http-types'
+ 'haskell-network-uri' 'haskell-monad-control' 'haskell-network' 
'haskell-servant'
+ 'haskell-string-conversions' 'haskell-resourcet' 'haskell-tagged'
+ 'haskell-transformers-base' 'haskell-wai' 'haskell-wai-app-static' 
'haskell-warp'
+ 'haskell-word8')
+makedepends=('ghc' 'haskell-hspec' 'haskell-hspec-wai' 
'haskell-should-not-typecheck'
+ 'haskell-quickcheck' 'haskell-safe' 'haskell-wai-extra' 
'haskell-temporary'
+ 'haskell-transformers-compat')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('9a10338c4a9411649c03fc3407130a2b04ef8302bb4980770a7fef69ccf4983628c47c3e485f02826bca6fc83d6af945b9d1f44eea2ab8de9021e3542fa5a9f9')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i 's/< *2.14/<3/;s/< *1.2/<2/;s/< *0.4.2/<1/' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build $MAKEFLAGS
+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 fcitx5-configtool/repos/community-x86_64 (PKGBUILD PKGBUILD)

2020-09-21 Thread Felix Yan via arch-commits
Date: Monday, September 21, 2020 @ 19:51:03
  Author: felixonmars
Revision: 711281

archrelease: copy trunk to community-x86_64

Added:
  fcitx5-configtool/repos/community-x86_64/PKGBUILD
(from rev 711280, fcitx5-configtool/trunk/PKGBUILD)
Deleted:
  fcitx5-configtool/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-21 19:50:47 UTC (rev 711280)
+++ PKGBUILD2020-09-21 19:51:03 UTC (rev 711281)
@@ -1,34 +0,0 @@
-# $Id: PKGBUILD 226039 2017-04-27 13:52:30Z felixonmars $
-# Maintainer: Felix Yan 
-# Contributor: csslayer 
-
-pkgname=fcitx5-configtool
-pkgver=0.0.0.20200915
-_commit=e8c08930045bc00d49aebb9465445d9ab8d2a120
-pkgrel=1
-pkgdesc="Configuration Tool for Fcitx5"
-arch=('x86_64')
-url="https://github.com/fcitx/fcitx5-configtool;
-license=('GPL')
-groups=('fcitx5-im')
-provides=('fcitx5-config-qt' 'kcm-fcitx5')
-conflicts=('kcm-fcitx5')
-replaces=('kcm-fcitx5')
-depends=('fcitx5-qt' 'kwidgetsaddons' 'kitemviews' 'qt5-x11extras')
-optdepends=('kdeclarative: for KCM support'
-'kirigami2: for KCM support')
-makedepends=('extra-cmake-modules' 'kdeclarative' 'kirigami2' 'ninja' 'python')
-source=("https://github.com/fcitx/fcitx5-configtool/archive/$_commit/fcitx5-configtool-$_commit.tar.gz;)
-sha512sums=('e89a27803c6c493821a1f91e6034701ffbf8e747375acc2445fe65c45804ce0c8496b307bc713e26634299f4c47d60a5f3b653131d294c064c2ac31b05e21ddb')
-
-build(){
-  cd $pkgname-$_commit
-
-  cmake -GNinja -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=/usr/lib 
-DKDE_INSTALL_USE_QT_SYS_PATHS=ON .
-  ninja
-}
-
-package() {
-  cd $pkgname-$_commit
-  DESTDIR="$pkgdir" ninja install
-}

Copied: fcitx5-configtool/repos/community-x86_64/PKGBUILD (from rev 711280, 
fcitx5-configtool/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-21 19:51:03 UTC (rev 711281)
@@ -0,0 +1,34 @@
+# $Id: PKGBUILD 226039 2017-04-27 13:52:30Z felixonmars $
+# Maintainer: Felix Yan 
+# Contributor: csslayer 
+
+pkgname=fcitx5-configtool
+pkgver=0.0.0.20200921
+_commit=be88c5b8e68680836fe2f13c01b79a32fbe97111
+pkgrel=1
+pkgdesc="Configuration Tool for Fcitx5"
+arch=('x86_64')
+url="https://github.com/fcitx/fcitx5-configtool;
+license=('GPL')
+groups=('fcitx5-im')
+provides=('fcitx5-config-qt' 'kcm-fcitx5')
+conflicts=('kcm-fcitx5')
+replaces=('kcm-fcitx5')
+depends=('fcitx5-qt' 'kwidgetsaddons' 'kitemviews' 'qt5-x11extras')
+optdepends=('kdeclarative: for KCM support'
+'kirigami2: for KCM support')
+makedepends=('extra-cmake-modules' 'kdeclarative' 'kirigami2' 'ninja' 'python')
+source=("https://github.com/fcitx/fcitx5-configtool/archive/$_commit/fcitx5-configtool-$_commit.tar.gz;)
+sha512sums=('2166830a328c882aece8871455b08e3cc212fa2de9bfedbc6bd384ce21962d3bd59d2be83a2eca99ac7f85e107b61e8c2bf9d6998f26d940e8a49dd18a871ead')
+
+build(){
+  cd $pkgname-$_commit
+
+  cmake -GNinja -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=/usr/lib 
-DKDE_INSTALL_USE_QT_SYS_PATHS=ON .
+  ninja
+}
+
+package() {
+  cd $pkgname-$_commit
+  DESTDIR="$pkgdir" ninja install
+}


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

2020-09-21 Thread Felix Yan via arch-commits
Date: Monday, September 21, 2020 @ 19:52:53
  Author: felixonmars
Revision: 711284

upgpkg: haskell-servant-server 0.18-5: rebuild with wai-extra 3.0.32

Modified:
  haskell-servant-server/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-21 19:51:38 UTC (rev 711283)
+++ PKGBUILD2020-09-21 19:52:53 UTC (rev 711284)
@@ -4,7 +4,7 @@
 _hkgname=servant-server
 pkgname=haskell-servant-server
 pkgver=0.18
-pkgrel=4
+pkgrel=5
 pkgdesc="A family of combinators for defining webservices APIs and serving 
them"
 url="https://haskell-servant.readthedocs.org/;
 license=("BSD")


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

2020-09-21 Thread Felix Yan via arch-commits
Date: Monday, September 21, 2020 @ 19:49:52
  Author: felixonmars
Revision: 711277

upgpkg: fcitx5 0.0.0.20200921-1

Modified:
  fcitx5/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-21 19:49:49 UTC (rev 711276)
+++ PKGBUILD2020-09-21 19:49:52 UTC (rev 711277)
@@ -3,8 +3,8 @@
 # Contributor: csslayer 
 
 pkgname=fcitx5
-pkgver=0.0.0.20200915
-_commit=5415db391c1b84ea9964b0d508c053ae5c25e4aa
+pkgver=0.0.0.20200921
+_commit=938bad6712bd9b8f597911dad3a2863138b44357
 _endictver=20121020
 pkgrel=1
 pkgdesc="Next generation of fcitx"
@@ -19,7 +19,7 @@
 makedepends=('extra-cmake-modules')
 
source=("https://github.com/fcitx/fcitx5/archive/$_commit/fcitx5-$_commit.tar.gz;
 https://download.fcitx-im.org/data/en_dict-$_endictver.tar.gz)
-sha512sums=('f352dce18fff1c619eebfeaa32586dd708f98207ecf628a9664462d5818ebf59ff852334dffe650189c531d27f8cb046c2327013c8f9627dde9604ec33106d80'
+sha512sums=('e3d11fed71a352fcea3aebd5e4a34e75584ab6b95ce206460532b00694602dd2e0586e174e4d65fa4427c5efc8a39345f1fd6dcd8001e3bc1b70f1a0f96e97b6'
 
'8418bd02492bfd786c0fab93be4400ef027ec8e9fac02220cc1f653f5eb67f54573a6a84a15baba19bb34ab892745c87df16499d6304ea75009131e2ab3b97f2')
 
 prepare() {


[arch-commits] Commit in haskell-wai-app-static/repos (2 files)

2020-09-21 Thread Felix Yan via arch-commits
Date: Monday, September 21, 2020 @ 19:50:04
  Author: felixonmars
Revision: 711278

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-wai-app-static/repos/community-staging-x86_64/
  haskell-wai-app-static/repos/community-staging-x86_64/PKGBUILD
(from rev 711277, haskell-wai-app-static/trunk/PKGBUILD)

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

Copied: haskell-wai-app-static/repos/community-staging-x86_64/PKGBUILD (from 
rev 711277, haskell-wai-app-static/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-09-21 19:50:04 UTC (rev 711278)
@@ -0,0 +1,48 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=wai-app-static
+pkgname=haskell-wai-app-static
+pkgver=3.1.7.2
+pkgrel=24
+pkgdesc="WAI application for static serving"
+url="https://www.yesodweb.com/book/web-application-interface;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-blaze-html' 'haskell-blaze-markup' 
'haskell-cryptonite'
+ 'haskell-file-embed' 'haskell-http-date' 'haskell-http-types' 
'haskell-memory'
+ 'haskell-mime-types' 'haskell-old-locale' 
'haskell-optparse-applicative'
+ 'haskell-unix-compat' 'haskell-unordered-containers' 'haskell-wai' 
'haskell-wai-extra'
+ 'haskell-warp' 'haskell-zlib')
+makedepends=('ghc' 'haskell-hspec' 'haskell-mockery' 'haskell-network' 
'haskell-temporary')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('e073d85efc201eab94b9c8be4e40ee71567d07ed2e2907504a946477211bc21aaf2250213cac67525ae58be499b164b09880600c0a6f62b0b1742fb9d730d6d9')
+
+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-print
+runhaskell Setup build $MAKEFLAGS
+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 fcitx5-chinese-addons/trunk (PKGBUILD)

2020-09-21 Thread Felix Yan via arch-commits
Date: Monday, September 21, 2020 @ 19:49:27
  Author: felixonmars
Revision: 711274

upgpkg: fcitx5-chinese-addons 0.0.0.20200921.1-1

Modified:
  fcitx5-chinese-addons/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-21 19:49:11 UTC (rev 711273)
+++ PKGBUILD2020-09-21 19:49:27 UTC (rev 711274)
@@ -2,8 +2,8 @@
 # Contributor: csslayer 
 
 pkgname=fcitx5-chinese-addons
-pkgver=0.0.0.20200921
-_commit=b6eaa7b3c4767022a7d206e384fc7404e5fc55cb
+pkgver=0.0.0.20200921.1
+_commit=ad45d462679847f5fffcb30beb00b5f0f6c35f0e
 _pytablever=20121124
 pkgrel=1
 pkgdesc="Addons related to Chinese, including IME previous bundled inside 
fcitx4"
@@ -18,7 +18,7 @@
 https://download.fcitx-im.org/data/py_table-$_pytablever.tar.gz
 https://download.fcitx-im.org/data/py_stroke-$_pytablever.tar.gz)
 noextract=(py_table-$_pytablever.tar.gz)
-sha512sums=('6c37345b9f9f9a737d9913acb851235902262d1037ee624a52602fa950459c6598418a0ecb616a26d3e997fdb819d0655707a332e85a5a4d7f12cd3ff677ebcb'
+sha512sums=('4f07d8e2038413a4472b5ee30dd0e7b2822ad2f4c191d99685e7993f7e52c5111a27a4e99efb758024d889c910c1f9f5c31349f9ae86577806b92822128adff2'
 
'0fa72ce6820a316e9729bc0d7a08af5ca3468134de9ff1bf0c559a398846a7bcf7313a3609d943e6bab637d930cf45ad9acfe25a8d3df078a774b071a7296486'
 
'd80ff9a3549e07c7a6935e686785f9a076c58f1a782a832ae28ee65e2a213d67f089f450ce09bed87ec2a141c32b9c1fcb83c221ddcab436858fa9009f161fb3')
 


[arch-commits] Commit in haskell-wai-app-static/trunk (PKGBUILD)

2020-09-21 Thread Felix Yan via arch-commits
Date: Monday, September 21, 2020 @ 19:49:49
  Author: felixonmars
Revision: 711276

upgpkg: haskell-wai-app-static 3.1.7.2-24: rebuild with wai-extra 3.0.32

Modified:
  haskell-wai-app-static/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-21 19:49:44 UTC (rev 711275)
+++ PKGBUILD2020-09-21 19:49:49 UTC (rev 711276)
@@ -4,7 +4,7 @@
 _hkgname=wai-app-static
 pkgname=haskell-wai-app-static
 pkgver=3.1.7.2
-pkgrel=23
+pkgrel=24
 pkgdesc="WAI application for static serving"
 url="https://www.yesodweb.com/book/web-application-interface;
 license=("MIT")


[arch-commits] Commit in fcitx5-chinese-addons/repos/community-x86_64 (2 files)

2020-09-21 Thread Felix Yan via arch-commits
Date: Monday, September 21, 2020 @ 19:49:44
  Author: felixonmars
Revision: 711275

archrelease: copy trunk to community-x86_64

Added:
  fcitx5-chinese-addons/repos/community-x86_64/PKGBUILD
(from rev 711274, fcitx5-chinese-addons/trunk/PKGBUILD)
Deleted:
  fcitx5-chinese-addons/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-21 19:49:27 UTC (rev 711274)
+++ PKGBUILD2020-09-21 19:49:44 UTC (rev 711275)
@@ -1,46 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: csslayer 
-
-pkgname=fcitx5-chinese-addons
-pkgver=0.0.0.20200921
-_commit=b6eaa7b3c4767022a7d206e384fc7404e5fc55cb
-_pytablever=20121124
-pkgrel=1
-pkgdesc="Addons related to Chinese, including IME previous bundled inside 
fcitx4"
-arch=('x86_64')
-url="https://github.com/fcitx/fcitx5-chinese-addons;
-license=('GPL')
-conflicts=('fcitx')
-depends=('curl' 'fcitx5-qt' 'libime' 'opencc' 'qt5-webkit')
-makedepends=('boost' 'extra-cmake-modules' 'fcitx5-lua' 'ninja')
-optdepends=('fcitx5-lua: Lua and imeapi support from pinyin')
-source=("https://github.com/fcitx/fcitx5-chinese-addons/archive/$_commit/fcitx5-chinese-addons-$_commit.tar.gz;
-https://download.fcitx-im.org/data/py_table-$_pytablever.tar.gz
-https://download.fcitx-im.org/data/py_stroke-$_pytablever.tar.gz)
-noextract=(py_table-$_pytablever.tar.gz)
-sha512sums=('6c37345b9f9f9a737d9913acb851235902262d1037ee624a52602fa950459c6598418a0ecb616a26d3e997fdb819d0655707a332e85a5a4d7f12cd3ff677ebcb'
-
'0fa72ce6820a316e9729bc0d7a08af5ca3468134de9ff1bf0c559a398846a7bcf7313a3609d943e6bab637d930cf45ad9acfe25a8d3df078a774b071a7296486'
-
'd80ff9a3549e07c7a6935e686785f9a076c58f1a782a832ae28ee65e2a213d67f089f450ce09bed87ec2a141c32b9c1fcb83c221ddcab436858fa9009f161fb3')
-
-prepare() {
-  cd $pkgname-$_commit/modules/pinyinhelper
-  ln -s "$srcdir"/py_table-$_pytablever.tar.gz
-  ln -s "$srcdir"/py_stroke-$_pytablever.tar.gz
-}
-
-build() {
-  cd $pkgname-$_commit
-
-  cmake -GNinja -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=/usr/lib .
-  ninja
-}
-
-check() {
-  cd $pkgname-$_commit
-  ninja test
-}
-
-package() {
-  cd $pkgname-$_commit
-  DESTDIR="$pkgdir" ninja install
-}

Copied: fcitx5-chinese-addons/repos/community-x86_64/PKGBUILD (from rev 711274, 
fcitx5-chinese-addons/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-21 19:49:44 UTC (rev 711275)
@@ -0,0 +1,46 @@
+# Maintainer: Felix Yan 
+# Contributor: csslayer 
+
+pkgname=fcitx5-chinese-addons
+pkgver=0.0.0.20200921.1
+_commit=ad45d462679847f5fffcb30beb00b5f0f6c35f0e
+_pytablever=20121124
+pkgrel=1
+pkgdesc="Addons related to Chinese, including IME previous bundled inside 
fcitx4"
+arch=('x86_64')
+url="https://github.com/fcitx/fcitx5-chinese-addons;
+license=('GPL')
+conflicts=('fcitx')
+depends=('curl' 'fcitx5-qt' 'libime' 'opencc' 'qt5-webkit')
+makedepends=('boost' 'extra-cmake-modules' 'fcitx5-lua' 'ninja')
+optdepends=('fcitx5-lua: Lua and imeapi support from pinyin')
+source=("https://github.com/fcitx/fcitx5-chinese-addons/archive/$_commit/fcitx5-chinese-addons-$_commit.tar.gz;
+https://download.fcitx-im.org/data/py_table-$_pytablever.tar.gz
+https://download.fcitx-im.org/data/py_stroke-$_pytablever.tar.gz)
+noextract=(py_table-$_pytablever.tar.gz)
+sha512sums=('4f07d8e2038413a4472b5ee30dd0e7b2822ad2f4c191d99685e7993f7e52c5111a27a4e99efb758024d889c910c1f9f5c31349f9ae86577806b92822128adff2'
+
'0fa72ce6820a316e9729bc0d7a08af5ca3468134de9ff1bf0c559a398846a7bcf7313a3609d943e6bab637d930cf45ad9acfe25a8d3df078a774b071a7296486'
+
'd80ff9a3549e07c7a6935e686785f9a076c58f1a782a832ae28ee65e2a213d67f089f450ce09bed87ec2a141c32b9c1fcb83c221ddcab436858fa9009f161fb3')
+
+prepare() {
+  cd $pkgname-$_commit/modules/pinyinhelper
+  ln -s "$srcdir"/py_table-$_pytablever.tar.gz
+  ln -s "$srcdir"/py_stroke-$_pytablever.tar.gz
+}
+
+build() {
+  cd $pkgname-$_commit
+
+  cmake -GNinja -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=/usr/lib .
+  ninja
+}
+
+check() {
+  cd $pkgname-$_commit
+  ninja test
+}
+
+package() {
+  cd $pkgname-$_commit
+  DESTDIR="$pkgdir" ninja install
+}


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

2020-09-21 Thread Felix Yan via arch-commits
Date: Monday, September 21, 2020 @ 19:50:09
  Author: felixonmars
Revision: 711279

archrelease: copy trunk to community-x86_64

Added:
  fcitx5/repos/community-x86_64/PKGBUILD
(from rev 711277, fcitx5/trunk/PKGBUILD)
Deleted:
  fcitx5/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-21 19:50:04 UTC (rev 711278)
+++ PKGBUILD2020-09-21 19:50:09 UTC (rev 711279)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: csslayer 
-
-pkgname=fcitx5
-pkgver=0.0.0.20200915
-_commit=5415db391c1b84ea9964b0d508c053ae5c25e4aa
-_endictver=20121020
-pkgrel=1
-pkgdesc="Next generation of fcitx"
-arch=('x86_64')
-url="https://github.com/fcitx/fcitx5;
-license=('GPL')
-conflicts=('fcitx')
-groups=('fcitx5-im')
-depends=('cairo' 'enchant' 'iso-codes' 'libgl' 'libxkbcommon-x11' 'pango' 
'systemd' 'wayland'
- 'wayland-protocols' 'xcb-imdkit' 'xcb-util-wm' 'libxkbfile' 'fmt' 
'gdk-pixbuf2'
- 'cldr-emoji-annotation')
-makedepends=('extra-cmake-modules')
-source=("https://github.com/fcitx/fcitx5/archive/$_commit/fcitx5-$_commit.tar.gz;
-https://download.fcitx-im.org/data/en_dict-$_endictver.tar.gz)
-sha512sums=('f352dce18fff1c619eebfeaa32586dd708f98207ecf628a9664462d5818ebf59ff852334dffe650189c531d27f8cb046c2327013c8f9627dde9604ec33106d80'
-
'8418bd02492bfd786c0fab93be4400ef027ec8e9fac02220cc1f653f5eb67f54573a6a84a15baba19bb34ab892745c87df16499d6304ea75009131e2ab3b97f2')
-
-prepare() {
-  cd $pkgname-$_commit/src/modules/spell/dict
-  ln -s "$srcdir"/en_dict-$_endictver.tar.gz ./
-}
-
-build() {
-  cd $pkgname-$_commit
-
-  cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=/usr/lib .
-  make
-}
-
-check() {
-  cd $pkgname-$_commit
-  make test
-}
-
-package() {
-  cd $pkgname-$_commit
-  make DESTDIR="$pkgdir" install
-}

Copied: fcitx5/repos/community-x86_64/PKGBUILD (from rev 711277, 
fcitx5/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-21 19:50:09 UTC (rev 711279)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: csslayer 
+
+pkgname=fcitx5
+pkgver=0.0.0.20200921
+_commit=938bad6712bd9b8f597911dad3a2863138b44357
+_endictver=20121020
+pkgrel=1
+pkgdesc="Next generation of fcitx"
+arch=('x86_64')
+url="https://github.com/fcitx/fcitx5;
+license=('GPL')
+conflicts=('fcitx')
+groups=('fcitx5-im')
+depends=('cairo' 'enchant' 'iso-codes' 'libgl' 'libxkbcommon-x11' 'pango' 
'systemd' 'wayland'
+ 'wayland-protocols' 'xcb-imdkit' 'xcb-util-wm' 'libxkbfile' 'fmt' 
'gdk-pixbuf2'
+ 'cldr-emoji-annotation')
+makedepends=('extra-cmake-modules')
+source=("https://github.com/fcitx/fcitx5/archive/$_commit/fcitx5-$_commit.tar.gz;
+https://download.fcitx-im.org/data/en_dict-$_endictver.tar.gz)
+sha512sums=('e3d11fed71a352fcea3aebd5e4a34e75584ab6b95ce206460532b00694602dd2e0586e174e4d65fa4427c5efc8a39345f1fd6dcd8001e3bc1b70f1a0f96e97b6'
+
'8418bd02492bfd786c0fab93be4400ef027ec8e9fac02220cc1f653f5eb67f54573a6a84a15baba19bb34ab892745c87df16499d6304ea75009131e2ab3b97f2')
+
+prepare() {
+  cd $pkgname-$_commit/src/modules/spell/dict
+  ln -s "$srcdir"/en_dict-$_endictver.tar.gz ./
+}
+
+build() {
+  cd $pkgname-$_commit
+
+  cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=/usr/lib .
+  make
+}
+
+check() {
+  cd $pkgname-$_commit
+  make test
+}
+
+package() {
+  cd $pkgname-$_commit
+  make DESTDIR="$pkgdir" install
+}


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

2020-09-21 Thread Felix Yan via arch-commits
Date: Monday, September 21, 2020 @ 19:48:52
  Author: felixonmars
Revision: 711270

upgpkg: rime-cantonese 0.0.0.20200921-1

Modified:
  rime-cantonese/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-21 19:48:21 UTC (rev 711269)
+++ PKGBUILD2020-09-21 19:48:52 UTC (rev 711270)
@@ -1,8 +1,8 @@
 # Maintainer: Felix Yan 
 
 pkgname=rime-cantonese
-pkgver=0.0.0.20200919
-_commit=e4d6ad93b991137c191f53cd3d91c10316199d05
+pkgver=0.0.0.20200921
+_commit=e393f5ac1832b201c2f8bfdaa239dc256b07bc91
 pkgrel=1
 pkgdesc="Cantonese input for rime"
 arch=('x86_64')
@@ -12,7 +12,7 @@
 depends=('rime-cangjie' 'rime-emoji' 'rime-loengfan' 'rime-luna-pinyin' 
'rime-stroke')
 makedepends=('librime' 'rime-prelude' 'rime-essay')
 
source=("https://github.com/rime/rime-cantonese/archive/$_commit/rime-cantonese-$_commit.tar.gz;)
-sha512sums=('eb48dbbb31d546e6211a9e682ca79ec242e08ddc3205fb3c6873d6b6d2b7320721db04dff6a6835b7deb2b0f89f872832306189c0139808bed309abb7358adc0')
+sha512sums=('79ba230d9d25e8af4824848ff46e6d1a05cc02def0e5ff8e07feb0b6e657071ed8d91d991ca508b89b0faa867b200086c2485ed2b8388bb8a2507502863e124b')
 
 prepare() {
   cd $pkgname-$_commit


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

2020-09-21 Thread Felix Yan via arch-commits
Date: Monday, September 21, 2020 @ 19:49:09
  Author: felixonmars
Revision: 711272

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 711271, 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 711271, haskell-hspec-wai-json/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-09-21 19:49:09 UTC (rev 711272)
@@ -0,0 +1,44 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hspec-wai-json
+pkgname=haskell-hspec-wai-json
+pkgver=0.10.1
+pkgrel=94
+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=('ff7d9960619254e410d004deb8ab6b6b0f918c9d657e125de986e46f8bbc60d8de97fcae4462ace11e106541c5d095506088910895fae24207909c29683211ec')
+
+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 $MAKEFLAGS
+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 rime-cantonese/repos/community-x86_64 (PKGBUILD PKGBUILD)

2020-09-21 Thread Felix Yan via arch-commits
Date: Monday, September 21, 2020 @ 19:49:11
  Author: felixonmars
Revision: 711273

archrelease: copy trunk to community-x86_64

Added:
  rime-cantonese/repos/community-x86_64/PKGBUILD
(from rev 711271, rime-cantonese/trunk/PKGBUILD)
Deleted:
  rime-cantonese/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-21 19:49:09 UTC (rev 711272)
+++ PKGBUILD2020-09-21 19:49:11 UTC (rev 711273)
@@ -1,35 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=rime-cantonese
-pkgver=0.0.0.20200919
-_commit=e4d6ad93b991137c191f53cd3d91c10316199d05
-pkgrel=1
-pkgdesc="Cantonese input for rime"
-arch=('x86_64')
-url="https://github.com/rime/rime-cantonese;
-license=('CCPL:cc-by')
-# dependency for reverse lookup
-depends=('rime-cangjie' 'rime-emoji' 'rime-loengfan' 'rime-luna-pinyin' 
'rime-stroke')
-makedepends=('librime' 'rime-prelude' 'rime-essay')
-source=("https://github.com/rime/rime-cantonese/archive/$_commit/rime-cantonese-$_commit.tar.gz;)
-sha512sums=('eb48dbbb31d546e6211a9e682ca79ec242e08ddc3205fb3c6873d6b6d2b7320721db04dff6a6835b7deb2b0f89f872832306189c0139808bed309abb7358adc0')
-
-prepare() {
-  cd $pkgname-$_commit
-  # Link essentials
-  for _f in $(pacman -Qql rime-prelude rime-essay | grep -v "/$"); do ln -sf 
$_f; done
-}
-
-build(){
-  cd $pkgname-$_commit
-  for _s in $(ls *.schema.yaml); do rime_deployer --compile $_s; done
-}
-
-package() {
-  cd $pkgname-$_commit
-  find . -type l -delete
-  rm build/*.txt
-  install -Dm644 *.yaml -t "$pkgdir"/usr/share/rime-data/
-  install -Dm644 build/* -t "$pkgdir"/usr/share/rime-data/build/
-  install -Dm644 opencc/* -t "$pkgdir"/usr/share/rime-data/opencc/
-}

Copied: rime-cantonese/repos/community-x86_64/PKGBUILD (from rev 711271, 
rime-cantonese/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-21 19:49:11 UTC (rev 711273)
@@ -0,0 +1,35 @@
+# Maintainer: Felix Yan 
+
+pkgname=rime-cantonese
+pkgver=0.0.0.20200921
+_commit=e393f5ac1832b201c2f8bfdaa239dc256b07bc91
+pkgrel=1
+pkgdesc="Cantonese input for rime"
+arch=('x86_64')
+url="https://github.com/rime/rime-cantonese;
+license=('CCPL:cc-by')
+# dependency for reverse lookup
+depends=('rime-cangjie' 'rime-emoji' 'rime-loengfan' 'rime-luna-pinyin' 
'rime-stroke')
+makedepends=('librime' 'rime-prelude' 'rime-essay')
+source=("https://github.com/rime/rime-cantonese/archive/$_commit/rime-cantonese-$_commit.tar.gz;)
+sha512sums=('79ba230d9d25e8af4824848ff46e6d1a05cc02def0e5ff8e07feb0b6e657071ed8d91d991ca508b89b0faa867b200086c2485ed2b8388bb8a2507502863e124b')
+
+prepare() {
+  cd $pkgname-$_commit
+  # Link essentials
+  for _f in $(pacman -Qql rime-prelude rime-essay | grep -v "/$"); do ln -sf 
$_f; done
+}
+
+build(){
+  cd $pkgname-$_commit
+  for _s in $(ls *.schema.yaml); do rime_deployer --compile $_s; done
+}
+
+package() {
+  cd $pkgname-$_commit
+  find . -type l -delete
+  rm build/*.txt
+  install -Dm644 *.yaml -t "$pkgdir"/usr/share/rime-data/
+  install -Dm644 build/* -t "$pkgdir"/usr/share/rime-data/build/
+  install -Dm644 opencc/* -t "$pkgdir"/usr/share/rime-data/opencc/
+}


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

2020-09-21 Thread Felix Yan via arch-commits
Date: Monday, September 21, 2020 @ 19:48:54
  Author: felixonmars
Revision: 711271

upgpkg: haskell-hspec-wai-json 0.10.1-94: rebuild with wai-extra 3.0.32

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

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-21 19:48:52 UTC (rev 711270)
+++ PKGBUILD2020-09-21 19:48:54 UTC (rev 711271)
@@ -4,7 +4,7 @@
 _hkgname=hspec-wai-json
 pkgname=haskell-hspec-wai-json
 pkgver=0.10.1
-pkgrel=93
+pkgrel=94
 pkgdesc="Testing JSON APIs with hspec-wai"
 url="https://github.com/hspec/hspec-wai;
 license=("MIT")


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

2020-09-21 Thread Felix Yan via arch-commits
Date: Monday, September 21, 2020 @ 19:48:21
  Author: felixonmars
Revision: 711269

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-hspec-wai/repos/community-staging-x86_64/PKGBUILD (from rev 
711268, haskell-hspec-wai/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-09-21 19:48:21 UTC (rev 711269)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hspec-wai
+pkgname=haskell-hspec-wai
+pkgver=0.10.1
+pkgrel=87
+pkgdesc="Experimental Hspec support for testing WAI applications"
+url="https://github.com/hspec/hspec-wai;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-quickcheck' 'haskell-base-compat' 
'haskell-case-insensitive'
+ 'haskell-hspec' 'haskell-hspec-core' 'haskell-hspec-expectations' 
'haskell-http-types'
+ 'haskell-wai' 'haskell-wai-extra')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('9a599411e79ef056a915494f7bb247e61f94a5243cd7fde3f6651f09e2b6fc28e99554f1721717ee45f06b7029502620d6fdf1624e280442333224147320508d')
+
+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 $MAKEFLAGS
+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/trunk (PKGBUILD)

2020-09-21 Thread Felix Yan via arch-commits
Date: Monday, September 21, 2020 @ 19:48:07
  Author: felixonmars
Revision: 711268

upgpkg: haskell-hspec-wai 0.10.1-87: rebuild with wai-extra 3.0.32

Modified:
  haskell-hspec-wai/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-21 19:47:31 UTC (rev 711267)
+++ PKGBUILD2020-09-21 19:48:07 UTC (rev 711268)
@@ -4,7 +4,7 @@
 _hkgname=hspec-wai
 pkgname=haskell-hspec-wai
 pkgver=0.10.1
-pkgrel=86
+pkgrel=87
 pkgdesc="Experimental Hspec support for testing WAI applications"
 url="https://github.com/hspec/hspec-wai;
 license=("MIT")


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

2020-09-21 Thread Felix Yan via arch-commits
Date: Monday, September 21, 2020 @ 19:47:31
  Author: felixonmars
Revision: 711267

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-cheapskate/repos/community-staging-x86_64/PKGBUILD (from rev 
711266, haskell-cheapskate/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-09-21 19:47:31 UTC (rev 711267)
@@ -0,0 +1,41 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=cheapskate
+pkgname=haskell-cheapskate
+pkgver=0.1.1.2
+pkgrel=154
+pkgdesc="Experimental markdown processor."
+url="https://github.com/jgm/cheapskate;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-aeson" "haskell-blaze-html" 
"haskell-data-default" "haskell-http-types"
+ "haskell-syb" "haskell-uniplate" "haskell-wai"
+ "haskell-wai-extra" "haskell-xss-sanitize")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('b671ada413b8bd90f28b008c7bada4b744dedac2c7711090f1148dfa1643f7843f44e56c9a5a99fd0f71ded8393a0095b04fbdf73f70a707698dc9fb76ed1b45')
+
+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 \
+-fdingus
+runhaskell Setup build $MAKEFLAGS
+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-wai-extra/repos/community-staging-x86_64 (2 files)

2020-09-21 Thread Felix Yan via arch-commits
Date: Monday, September 21, 2020 @ 19:46:29
  Author: felixonmars
Revision: 711265

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-wai-extra/repos/community-staging-x86_64/PKGBUILD
(from rev 711264, haskell-wai-extra/trunk/PKGBUILD)
Deleted:
  haskell-wai-extra/repos/community-staging-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-21 19:46:13 UTC (rev 711264)
+++ PKGBUILD2020-09-21 19:46:29 UTC (rev 711265)
@@ -1,49 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Arch Haskell Team 
-
-_hkgname=wai-extra
-pkgname=haskell-wai-extra
-pkgver=3.0.32
-pkgrel=1
-pkgdesc="Provides some basic WAI handlers and middleware."
-url="https://github.com/yesodweb/wai;
-license=("MIT")
-arch=('x86_64')
-depends=('ghc-libs' 'haskell-aeson' 'haskell-ansi-terminal' 
'haskell-base64-bytestring'
- 'haskell-case-insensitive' 'haskell-cookie' 
'haskell-data-default-class'
- 'haskell-fast-logger' 'haskell-http-types' 'haskell-http2' 
'haskell-iproute'
- 'haskell-network' 'haskell-old-locale' 'haskell-resourcet' 
'haskell-streaming-commons'
- 'haskell-unix-compat' 'haskell-vault' 'haskell-void' 'haskell-wai'
- 'haskell-wai-logger' 'haskell-word8' 'haskell-zlib')
-makedepends=('ghc' 'haskell-hspec' 'haskell-hunit')
-source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha512sums=('ad3e5827148791d413978d5db690103db84e557bd333e1f1b9d143b2b537375f5f1afc62e664e217ede821f64d8c21324786dce0bf066544deb6b3594c28549d')
-
-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 $MAKEFLAGS
-runhaskell Setup register --gen-script
-runhaskell Setup unregister --gen-script
-sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
-sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
-}
-
-check() {
-cd $_hkgname-$pkgver
-runhaskell Setup test
-}
-
-package() {
-cd $_hkgname-$pkgver
-
-install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
-install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
-runhaskell Setup copy --destdir="$pkgdir"
-install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
-}

Copied: haskell-wai-extra/repos/community-staging-x86_64/PKGBUILD (from rev 
711264, haskell-wai-extra/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-21 19:46:29 UTC (rev 711265)
@@ -0,0 +1,49 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=wai-extra
+pkgname=haskell-wai-extra
+pkgver=3.0.32
+pkgrel=2
+pkgdesc="Provides some basic WAI handlers and middleware."
+url="https://github.com/yesodweb/wai;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-ansi-terminal' 
'haskell-base64-bytestring'
+ 'haskell-case-insensitive' 'haskell-cookie' 
'haskell-data-default-class'
+ 'haskell-fast-logger' 'haskell-http-types' 'haskell-http2' 
'haskell-iproute'
+ 'haskell-network' 'haskell-old-locale' 'haskell-resourcet' 
'haskell-streaming-commons'
+ 'haskell-unix-compat' 'haskell-vault' 'haskell-void' 'haskell-wai'
+ 'haskell-wai-logger' 'haskell-word8' 'haskell-zlib')
+makedepends=('ghc' 'haskell-hspec' 'haskell-hunit')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('ad3e5827148791d413978d5db690103db84e557bd333e1f1b9d143b2b537375f5f1afc62e664e217ede821f64d8c21324786dce0bf066544deb6b3594c28549d')
+
+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 $MAKEFLAGS
+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 

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

2020-09-21 Thread Felix Yan via arch-commits
Date: Monday, September 21, 2020 @ 19:47:17
  Author: felixonmars
Revision: 711266

upgpkg: haskell-cheapskate 0.1.1.2-154: rebuild with wai-extra 3.0.32

Modified:
  haskell-cheapskate/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-21 19:46:29 UTC (rev 711265)
+++ PKGBUILD2020-09-21 19:47:17 UTC (rev 711266)
@@ -4,7 +4,7 @@
 _hkgname=cheapskate
 pkgname=haskell-cheapskate
 pkgver=0.1.1.2
-pkgrel=153
+pkgrel=154
 pkgdesc="Experimental markdown processor."
 url="https://github.com/jgm/cheapskate;
 license=("BSD")


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

2020-09-21 Thread Felix Yan via arch-commits
Date: Monday, September 21, 2020 @ 19:46:13
  Author: felixonmars
Revision: 711264

upgpkg: haskell-wai-extra 3.0.32-2: rebuild with wai-extra 3.0.32

Modified:
  haskell-wai-extra/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-21 19:44:34 UTC (rev 711263)
+++ PKGBUILD2020-09-21 19:46:13 UTC (rev 711264)
@@ -4,7 +4,7 @@
 _hkgname=wai-extra
 pkgname=haskell-wai-extra
 pkgver=3.0.32
-pkgrel=1
+pkgrel=2
 pkgdesc="Provides some basic WAI handlers and middleware."
 url="https://github.com/yesodweb/wai;
 license=("MIT")


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

2020-09-21 Thread Felix Yan via arch-commits
Date: Monday, September 21, 2020 @ 19:44:34
  Author: felixonmars
Revision: 711263

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-wai-logger/repos/community-staging-x86_64/
  haskell-wai-logger/repos/community-staging-x86_64/PKGBUILD
(from rev 711262, haskell-wai-logger/trunk/PKGBUILD)

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

Copied: haskell-wai-logger/repos/community-staging-x86_64/PKGBUILD (from rev 
711262, haskell-wai-logger/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-09-21 19:44:34 UTC (rev 711263)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=wai-logger
+pkgname=haskell-wai-logger
+pkgver=2.3.6
+pkgrel=135
+pkgdesc="A logging system for WAI"
+url="https://hackage.haskell.org/package/${_hkgname};
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-byteorder' 'haskell-fast-logger'
+ 'haskell-http-types' 'haskell-network' 'haskell-wai')
+makedepends=('ghc' 'haskell-cabal-doctest' 'haskell-doctest')
+checkdepends=('haskell-wai-extra')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('0c16120c342321cd686ab7cf9fa7df503a426b0c3d145c16e566013e0df44ef565d9890726d780c1fb73a49507f49bbf5fb886ff4bdccbd19a19b4c00626532e')
+
+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 $MAKEFLAGS
+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-wai-logger/trunk (PKGBUILD)

2020-09-21 Thread Felix Yan via arch-commits
Date: Monday, September 21, 2020 @ 19:44:18
  Author: felixonmars
Revision: 711262

upgpkg: haskell-wai-logger 2.3.6-135: rebuild with wai-extra 3.0.32

Modified:
  haskell-wai-logger/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-21 19:43:29 UTC (rev 711261)
+++ PKGBUILD2020-09-21 19:44:18 UTC (rev 711262)
@@ -4,7 +4,7 @@
 _hkgname=wai-logger
 pkgname=haskell-wai-logger
 pkgver=2.3.6
-pkgrel=134
+pkgrel=135
 pkgdesc="A logging system for WAI"
 url="https://hackage.haskell.org/package/${_hkgname};
 license=("BSD")


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

2020-09-21 Thread Felix Yan via arch-commits
Date: Monday, September 21, 2020 @ 19:43:29
  Author: felixonmars
Revision: 711261

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-wai-extra/repos/community-staging-x86_64/
  haskell-wai-extra/repos/community-staging-x86_64/PKGBUILD
(from rev 711260, haskell-wai-extra/trunk/PKGBUILD)

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

Copied: haskell-wai-extra/repos/community-staging-x86_64/PKGBUILD (from rev 
711260, haskell-wai-extra/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-09-21 19:43:29 UTC (rev 711261)
@@ -0,0 +1,49 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=wai-extra
+pkgname=haskell-wai-extra
+pkgver=3.0.32
+pkgrel=1
+pkgdesc="Provides some basic WAI handlers and middleware."
+url="https://github.com/yesodweb/wai;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-ansi-terminal' 
'haskell-base64-bytestring'
+ 'haskell-case-insensitive' 'haskell-cookie' 
'haskell-data-default-class'
+ 'haskell-fast-logger' 'haskell-http-types' 'haskell-http2' 
'haskell-iproute'
+ 'haskell-network' 'haskell-old-locale' 'haskell-resourcet' 
'haskell-streaming-commons'
+ 'haskell-unix-compat' 'haskell-vault' 'haskell-void' 'haskell-wai'
+ 'haskell-wai-logger' 'haskell-word8' 'haskell-zlib')
+makedepends=('ghc' 'haskell-hspec' 'haskell-hunit')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('ad3e5827148791d413978d5db690103db84e557bd333e1f1b9d143b2b537375f5f1afc62e664e217ede821f64d8c21324786dce0bf066544deb6b3594c28549d')
+
+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 $MAKEFLAGS
+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-wai-extra/trunk (PKGBUILD)

2020-09-21 Thread Felix Yan via arch-commits
Date: Monday, September 21, 2020 @ 19:43:14
  Author: felixonmars
Revision: 711260

upgpkg: haskell-wai-extra 3.0.32-1: rebuild with wai-extra 3.0.32

Modified:
  haskell-wai-extra/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-21 19:16:26 UTC (rev 711259)
+++ PKGBUILD2020-09-21 19:43:14 UTC (rev 711260)
@@ -3,8 +3,8 @@
 
 _hkgname=wai-extra
 pkgname=haskell-wai-extra
-pkgver=3.0.31
-pkgrel=2
+pkgver=3.0.32
+pkgrel=1
 pkgdesc="Provides some basic WAI handlers and middleware."
 url="https://github.com/yesodweb/wai;
 license=("MIT")
@@ -14,10 +14,10 @@
  'haskell-fast-logger' 'haskell-http-types' 'haskell-http2' 
'haskell-iproute'
  'haskell-network' 'haskell-old-locale' 'haskell-resourcet' 
'haskell-streaming-commons'
  'haskell-unix-compat' 'haskell-vault' 'haskell-void' 'haskell-wai'
- 'haskell-wai-logger' 'haskell-word8' 'haskell-zlib' 
'haskell-call-stack')
+ 'haskell-wai-logger' 'haskell-word8' 'haskell-zlib')
 makedepends=('ghc' 'haskell-hspec' 'haskell-hunit')
 
source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha512sums=('71635f9acc44ffd19b76d7f1a5e43fa079dffe6e447be1c9df4b491cf96c226346788eb773923cf702d44d4620f2a5e7478be1c625b4c2332b9bed7e6e5391d2')
+sha512sums=('ad3e5827148791d413978d5db690103db84e557bd333e1f1b9d143b2b537375f5f1afc62e664e217ede821f64d8c21324786dce0bf066544deb6b3594c28549d')
 
 build() {
 cd $_hkgname-$pkgver


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

2020-09-21 Thread Jaroslav Lichtblau via arch-commits
Date: Monday, September 21, 2020 @ 19:16:26
  Author: jlichtblau
Revision: 711259

archrelease: copy trunk to community-x86_64

Added:
  newsboat/repos/community-x86_64/PKGBUILD
(from rev 711258, newsboat/trunk/PKGBUILD)
  newsboat/repos/community-x86_64/newsboat.changelog
(from rev 711258, newsboat/trunk/newsboat.changelog)
Deleted:
  newsboat/repos/community-x86_64/PKGBUILD
  newsboat/repos/community-x86_64/newsboat.changelog

+
 PKGBUILD   |   68 +-
 newsboat.changelog |  183 +--
 2 files changed, 127 insertions(+), 124 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-21 19:16:14 UTC (rev 711258)
+++ PKGBUILD2020-09-21 19:16:26 UTC (rev 711259)
@@ -1,34 +0,0 @@
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: Sven Pfleiderer 
-
-pkgname=newsboat
-pkgver=2.20.1
-pkgrel=2
-pkgdesc="An RSS/Atom feed reader for text terminals"
-arch=('x86_64')
-url="https://newsboat.org/;
-license=('custom: MIT')
-depends=('curl' 'json-c' 'libxml2' 'sqlite' 'stfl')
-makedepends=('swig' 'gettext' 'asciidoc' 'rust' 'asciidoctor')
-replaces=('newsbeuter')
-changelog=$pkgname.changelog
-options=('!emptydirs')
-optdepends=('perl: pinboard.pl script')
-source=(https://newsboat.org/releases/$pkgver/$pkgname-$pkgver.tar.xz{,.asc})
-validpgpkeys=('B8B1756A0DDBF0760CE67CCF4ED6CD61932B9EBE') #Newsboat project 

-sha256sums=('82782079b75fe307f7a5a17dff9e712aa5975678fa550fb728d5a46867943566'
-'SKIP')
-
-build() {
-  cd "${srcdir}"/$pkgname-$pkgver
-
-  make prefix=/usr
-  make doc
-}
-
-package() {
-  cd "${srcdir}"/$pkgname-$pkgver
-
-  make prefix=/usr DESTDIR="${pkgdir}" install
-  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: newsboat/repos/community-x86_64/PKGBUILD (from rev 711258, 
newsboat/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-21 19:16:26 UTC (rev 711259)
@@ -0,0 +1,34 @@
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Sven Pfleiderer 
+
+pkgname=newsboat
+pkgver=2.21
+pkgrel=1
+pkgdesc="An RSS/Atom feed reader for text terminals"
+arch=('x86_64')
+url="https://newsboat.org/;
+license=('custom: MIT')
+depends=('curl' 'json-c' 'libxml2' 'sqlite' 'stfl')
+makedepends=('swig' 'gettext' 'asciidoc' 'rust' 'asciidoctor')
+replaces=('newsbeuter')
+changelog=$pkgname.changelog
+options=('!emptydirs' '!makeflags')
+optdepends=('perl: pinboard.pl script')
+source=(https://newsboat.org/releases/$pkgver/$pkgname-$pkgver.tar.xz{,.asc})
+validpgpkeys=('B8B1756A0DDBF0760CE67CCF4ED6CD61932B9EBE') #Newsboat project 

+sha256sums=('0c46b3dd46bb578dd6dd4915db4cfdffb4352ab258f251080ad14655c75a9c31'
+'SKIP')
+
+build() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  make prefix=/usr
+  make doc
+}
+
+package() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  make prefix=/usr DESTDIR="${pkgdir}" install
+  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/$pkgname/LICENSE
+}

Deleted: newsboat.changelog
===
--- newsboat.changelog  2020-09-21 19:16:14 UTC (rev 711258)
+++ newsboat.changelog  2020-09-21 19:16:26 UTC (rev 711259)
@@ -1,90 +0,0 @@
-2020-06-24 Jaroslav Lichtblau 
-   * newsboat 2.20.1-1
-
-2020-06-21 Jaroslav Lichtblau 
-   * newsboat 2.20-1
-
-2020-03-23 Jaroslav Lichtblau 
-   * newsboat 2.19-1
-
-2019-12-23 Jaroslav Lichtblau 
-   * newsboat 2.18-1
-
-2019-08-06 Jaroslav Lichtblau 
-   * newsboat 2.16.1-1
-
-2019-03-30 Jaroslav Lichtblau 
-   * newsboat 2.15-1
-
-2019-02-10 Jaroslav Lichtblau 
-   * newsboat 2.14.1-1
-
-2019-01-01 Jaroslav Lichtblau 
-   * newsboat 2.14-1
-
-2018-09-29 Jaroslav Lichtblau 
-   * newsboat 2.13-1
-
-2018-04-10 Jaroslav Lichtblau 
-   * newsboat 2.11.1-1
-
-2018-03-26 Jaroslav Lichtblau 
-   * newsboat 2.11-1
-
-2017-12-27 Jaroslav Lichtblau 
-   * newsboat 2.10.2-1
-
-2017-12-02 Jaroslav Lichtblau 
-   * newsboat 2.10.1-2 FS#56519 fixed
-
-2017-10-21 Jaroslav Lichtblau 
-   * newsboat 2.10.1-1
-
-2017-10-21 Jaroslav Lichtblau 
-   * newsboat 2.10-1 moving over to the new maintained fork of newsbeuter
-
-2015-09-13 Jaroslav Lichtblau 
-   * newsbeuter 2.9-4 ncurses6 re-rebuild
-
-2015-09-13 Jaroslav Lichtblau 
-   * newsbeuter 2.9-3 segmentation fault on podcasts downloads #167 fix
-
-2015-02-19 Jaroslav Lichtblau 
-   * newsbeuter 2.9-1
-
-2014-01-27 Jaroslav Lichtblau 
-   * newsbeuter 2.8-1
-
-2013-09-02 Jaroslav Lichtblau 
-   * newsbeuter 2.7-1
-
-2013-03-28 Jaroslav Lichtblau 
-   * newsbeuter 2.6-1
-
-2013-03-07 Andrea Scarpino 
-   * ruby 2.0 rebuild
-
-2012-02-23 Jaroslav Lichtblau 
-   * newsbeuter 2.5-1
-
-2011-01-06 Jaroslav Lichtblau 
-   * newsbeuter 2.4-1
-
-2010-06-26 Jaroslav 

[arch-commits] Commit in newsboat/trunk (PKGBUILD newsboat.changelog)

2020-09-21 Thread Jaroslav Lichtblau via arch-commits
Date: Monday, September 21, 2020 @ 19:16:14
  Author: jlichtblau
Revision: 711258

upgpkg: newsboat 2.21-1 - new upstream release

Modified:
  newsboat/trunk/PKGBUILD
  newsboat/trunk/newsboat.changelog

+
 PKGBUILD   |8 
 newsboat.changelog |3 +++
 2 files changed, 7 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-09-21 19:11:54 UTC (rev 711257)
+++ PKGBUILD2020-09-21 19:16:14 UTC (rev 711258)
@@ -2,8 +2,8 @@
 # Contributor: Sven Pfleiderer 
 
 pkgname=newsboat
-pkgver=2.20.1
-pkgrel=2
+pkgver=2.21
+pkgrel=1
 pkgdesc="An RSS/Atom feed reader for text terminals"
 arch=('x86_64')
 url="https://newsboat.org/;
@@ -12,11 +12,11 @@
 makedepends=('swig' 'gettext' 'asciidoc' 'rust' 'asciidoctor')
 replaces=('newsbeuter')
 changelog=$pkgname.changelog
-options=('!emptydirs')
+options=('!emptydirs' '!makeflags')
 optdepends=('perl: pinboard.pl script')
 source=(https://newsboat.org/releases/$pkgver/$pkgname-$pkgver.tar.xz{,.asc})
 validpgpkeys=('B8B1756A0DDBF0760CE67CCF4ED6CD61932B9EBE') #Newsboat project 

-sha256sums=('82782079b75fe307f7a5a17dff9e712aa5975678fa550fb728d5a46867943566'
+sha256sums=('0c46b3dd46bb578dd6dd4915db4cfdffb4352ab258f251080ad14655c75a9c31'
 'SKIP')
 
 build() {

Modified: newsboat.changelog
===
--- newsboat.changelog  2020-09-21 19:11:54 UTC (rev 711257)
+++ newsboat.changelog  2020-09-21 19:16:14 UTC (rev 711258)
@@ -1,3 +1,6 @@
+2020-09-21 Jaroslav Lichtblau 
+   * newsboat 2.21-1
+
 2020-06-24 Jaroslav Lichtblau 
* newsboat 2.20.1-1
 


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

2020-09-21 Thread David Runge via arch-commits
Date: Monday, September 21, 2020 @ 19:15:57
  Author: dvzrv
Revision: 396407

upgpkg: fluidsynth 2.1.5-2: Rebuild to add upstreamed fix for systemd user unit 
(FS#67955).

Modified:
  fluidsynth/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-21 18:45:51 UTC (rev 396406)
+++ PKGBUILD2020-09-21 19:15:57 UTC (rev 396407)
@@ -4,7 +4,7 @@
 
 pkgname=fluidsynth
 pkgver=2.1.5
-pkgrel=1
+pkgrel=2
 pkgdesc="A real-time software synthesizer based on the SoundFont 2 
specifications"
 arch=('x86_64')
 url="http://www.fluidsynth.org/;
@@ -15,10 +15,20 @@
 'libinstpatch' 'libpulse' 'libsndfile' 'portaudio' 'readline' 'systemd-libs')
 provides=('libfluidsynth.so' 'soundfont-synthesizer')
 backup=("etc/conf.d/$pkgname")
-source=("$pkgname-$pkgver.tar.gz::https://github.com/${pkgname}/${pkgname}/archive/v$pkgver.tar.gz;)
-sha512sums=('171ee6b1983ab9636086fb414ae464508f7a9a412cd2c1e7800a19a84d3dff21bbd86d1971f9bb5985e977f808b60e0d0cfbde4551b85fcc4aae4928a1abadbc')
-b2sums=('f5669f49db481ded6d953ee2cdaa8c59bb751f79210d993b69967cca1b71dce12b50fbf258512c144b1578441e78cc5299d96004da5fed44a40fc33858254bc0')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/${pkgname}/${pkgname}/archive/v$pkgver.tar.gz;
+
"${pkgname}-2.1.5-systemd_user_unit.patch::https://github.com/FluidSynth/fluidsynth/pull/676/commits/777f9ea5b4a9d757a3e6634e700dd96703ea5b45.patch;)
+sha512sums=('171ee6b1983ab9636086fb414ae464508f7a9a412cd2c1e7800a19a84d3dff21bbd86d1971f9bb5985e977f808b60e0d0cfbde4551b85fcc4aae4928a1abadbc'
+
'edbfe794a1733ba622110660a410de546462a7c84c5ac3f2c0af3c66a1b8fc947b4796782463636e31981cb12e5c96ab07ecf540dc62f968221e2d6c3b9eca79')
+b2sums=('f5669f49db481ded6d953ee2cdaa8c59bb751f79210d993b69967cca1b71dce12b50fbf258512c144b1578441e78cc5299d96004da5fed44a40fc33858254bc0'
+
'3cfec84d25b92327881d76ba52e2b90d11aae9b41f8ae5dfe0cd83469a478a8c020cd454a90ec66c8925317e7b00e32e5b0a99edc2f65a449787ee5b8636b70c')
 
+prepare() {
+  cd "${pkgname}-${pkgver}"
+  # fix systemd user unit install target:
+  # https://bugs.archlinux.org/task/67955
+  patch -Np1 -i "../${pkgname}-2.1.5-systemd_user_unit.patch"
+}
+
 build() {
   cd "${pkgname}-${pkgver}"
   cmake -DCMAKE_INSTALL_PREFIX=/usr \


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

2020-09-21 Thread David Runge via arch-commits
Date: Monday, September 21, 2020 @ 19:16:05
  Author: dvzrv
Revision: 396408

archrelease: copy trunk to extra-x86_64

Added:
  fluidsynth/repos/extra-x86_64/PKGBUILD
(from rev 396407, fluidsynth/trunk/PKGBUILD)
Deleted:
  fluidsynth/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-21 19:15:57 UTC (rev 396407)
+++ PKGBUILD2020-09-21 19:16:05 UTC (rev 396408)
@@ -1,55 +0,0 @@
-# Maintainer: David Runge 
-# Contributor: Ray Rashif 
-# Contributor: damir 
-
-pkgname=fluidsynth
-pkgver=2.1.5
-pkgrel=1
-pkgdesc="A real-time software synthesizer based on the SoundFont 2 
specifications"
-arch=('x86_64')
-url="http://www.fluidsynth.org/;
-license=('LGPL2.1')
-groups=('pro-audio')
-depends=('glibc' 'sdl2')
-makedepends=('alsa-lib' 'cmake' 'dbus' 'doxygen' 'glib2' 'jack' 'ladspa'
-'libinstpatch' 'libpulse' 'libsndfile' 'portaudio' 'readline' 'systemd-libs')
-provides=('libfluidsynth.so' 'soundfont-synthesizer')
-backup=("etc/conf.d/$pkgname")
-source=("$pkgname-$pkgver.tar.gz::https://github.com/${pkgname}/${pkgname}/archive/v$pkgver.tar.gz;)
-sha512sums=('171ee6b1983ab9636086fb414ae464508f7a9a412cd2c1e7800a19a84d3dff21bbd86d1971f9bb5985e977f808b60e0d0cfbde4551b85fcc4aae4928a1abadbc')
-b2sums=('f5669f49db481ded6d953ee2cdaa8c59bb751f79210d993b69967cca1b71dce12b50fbf258512c144b1578441e78cc5299d96004da5fed44a40fc33858254bc0')
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  cmake -DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE='None' \
--DFLUID_DAEMON_ENV_FILE=/etc/conf.d/fluidsynth \
--Denable-ladspa=ON \
--Denable-portaudio=ON \
--DLIB_SUFFIX="" \
--Wno-dev \
--B build \
--S .
-  make -C build VERBOSE=1
-}
-
-check() {
-  cd "${pkgname}-${pkgver}"
-  make -C build -k check
-}
-
-package() {
-  depends+=('libasound.so' 'libdbus-1.so' 'libglib-2.0.so' 'libgmodule-2.0.so'
-  'libgobject-2.0.so' 'libinstpatch-1.0.so' 'libjack.so' 'libportaudio.so'
-  'libpulse-simple.so' 'libreadline.so' 'libsndfile.so' 'libsystemd.so')
-  cd "${pkgname}-${pkgver}"
-  make -C build DESTDIR="$pkgdir" install
-  # systemd user unit
-  install -vDm 644 "build/${pkgname}.service" \
--t "$pkgdir/usr/lib/systemd/user/"
-  # system-wide configuration file
-  install -vDm 644 "build/${pkgname}.conf" "${pkgdir}/etc/conf.d/${pkgname}"
-  # docs
-  install -vDm 644 {AUTHORS,ChangeLog,{CONTRIBUTING,README}.md,THANKS,TODO} \
--t "${pkgdir}/usr/share/doc/${pkgname}"
-}

Copied: fluidsynth/repos/extra-x86_64/PKGBUILD (from rev 396407, 
fluidsynth/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-21 19:16:05 UTC (rev 396408)
@@ -0,0 +1,65 @@
+# Maintainer: David Runge 
+# Contributor: Ray Rashif 
+# Contributor: damir 
+
+pkgname=fluidsynth
+pkgver=2.1.5
+pkgrel=2
+pkgdesc="A real-time software synthesizer based on the SoundFont 2 
specifications"
+arch=('x86_64')
+url="http://www.fluidsynth.org/;
+license=('LGPL2.1')
+groups=('pro-audio')
+depends=('glibc' 'sdl2')
+makedepends=('alsa-lib' 'cmake' 'dbus' 'doxygen' 'glib2' 'jack' 'ladspa'
+'libinstpatch' 'libpulse' 'libsndfile' 'portaudio' 'readline' 'systemd-libs')
+provides=('libfluidsynth.so' 'soundfont-synthesizer')
+backup=("etc/conf.d/$pkgname")
+source=("$pkgname-$pkgver.tar.gz::https://github.com/${pkgname}/${pkgname}/archive/v$pkgver.tar.gz;
+
"${pkgname}-2.1.5-systemd_user_unit.patch::https://github.com/FluidSynth/fluidsynth/pull/676/commits/777f9ea5b4a9d757a3e6634e700dd96703ea5b45.patch;)
+sha512sums=('171ee6b1983ab9636086fb414ae464508f7a9a412cd2c1e7800a19a84d3dff21bbd86d1971f9bb5985e977f808b60e0d0cfbde4551b85fcc4aae4928a1abadbc'
+
'edbfe794a1733ba622110660a410de546462a7c84c5ac3f2c0af3c66a1b8fc947b4796782463636e31981cb12e5c96ab07ecf540dc62f968221e2d6c3b9eca79')
+b2sums=('f5669f49db481ded6d953ee2cdaa8c59bb751f79210d993b69967cca1b71dce12b50fbf258512c144b1578441e78cc5299d96004da5fed44a40fc33858254bc0'
+
'3cfec84d25b92327881d76ba52e2b90d11aae9b41f8ae5dfe0cd83469a478a8c020cd454a90ec66c8925317e7b00e32e5b0a99edc2f65a449787ee5b8636b70c')
+
+prepare() {
+  cd "${pkgname}-${pkgver}"
+  # fix systemd user unit install target:
+  # https://bugs.archlinux.org/task/67955
+  patch -Np1 -i "../${pkgname}-2.1.5-systemd_user_unit.patch"
+}
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  cmake -DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE='None' \
+-DFLUID_DAEMON_ENV_FILE=/etc/conf.d/fluidsynth \
+-Denable-ladspa=ON \
+-Denable-portaudio=ON \
+-DLIB_SUFFIX="" \
+-Wno-dev \
+-B build \
+-S .
+  make -C build VERBOSE=1
+}
+
+check() {
+  cd "${pkgname}-${pkgver}"
+  make -C build -k check
+}
+
+package() {
+ 

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

2020-09-21 Thread David Runge via arch-commits
Date: Monday, September 21, 2020 @ 19:11:54
  Author: dvzrv
Revision: 711257

archrelease: copy trunk to community-x86_64

Added:
  spectmorph/repos/community-x86_64/PKGBUILD
(from rev 711256, spectmorph/trunk/PKGBUILD)
Deleted:
  spectmorph/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-21 19:11:43 UTC (rev 711256)
+++ PKGBUILD2020-09-21 19:11:54 UTC (rev 711257)
@@ -1,58 +0,0 @@
-# Maintainer: David Runge 
-
-pkgname=spectmorph
-pkgver=0.5.1
-pkgrel=1
-pkgdesc="Analyze samples of musical instruments and combine them (morphing)"
-arch=('x86_64')
-url="http://spectmorph.org/;
-license=('LGPL3')
-groups=('lv2-plugins' 'pro-audio' 'vst-plugins')
-depends=('cairo' 'gcc-libs' 'glib2' 'glibc' 'libao' 'libglvnd' 'libx11' 'zlib')
-makedepends=('fftw' 'freetype2' 'jack' 'lv2' 'libsndfile' 'qt5-base')
-checkdepends=('lv2lint')
-optdepends=('jack: for smjack and smsampleedit'
-'qt5-base: for sminspector and smsampleedit')
-provides=('libspectmorphjack.so' 'libspectmorphgui.so' 'libspectmorphglui.so'
-'libspectmorph.so')
-source=("http://www.spectmorph.org/files/releases/${pkgname}-${pkgver}.tar.bz2;
-
"http://spectmorph.org/files/instruments/${pkgname}-instruments-${pkgver}.tar.xz;)
-sha512sums=('db5770266d1cdcb1dc64c369fc8ea9580741a8d7d766e3c298fdf175db4cf5daf2abb55213e3f6e9a93f42e103c86eb3b3dce10f2e945441c3048e847c811b01'
-
'7cfb94b312a9d3f73dd0c87185cd398fdb3373ee4ec2e904033a1cbaa43296cd43a247dd81365cecd07609354c0bbd15cf2ee379fb36b890736f0cff1e7bc689')
-
-prepare() {
-  cd "$pkgname-$pkgver"
-  autoreconf -vfi
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-  ./configure --prefix=/usr \
-  --with-lv2 \
-  --with-jack \
-  --with-qt
-  make
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-  cp -v lv2/.libs/*.so lv2/
-  LV2_PATH="${PWD}" lv2lint "http://spectmorph.org/plugins/spectmorph; || echo 
"Known failing tests: https://github.com/swesterfeld/spectmorph/issues/8;
-  rm -v lv2/*.so
-}
-
-package() {
-  depends+=('libfftw3f.so' 'libfftw3f_threads.so' 'libfreetype.so'
-  'libsndfile.so')
-  cd "$pkgname-$pkgver"
-  make DESTDIR="$pkgdir/" install
-  # standard instruments
-  install -vDm 644 ../instruments/standard/* \
--t "${pkgdir}/usr/share/${pkgname}/instruments/standard/"
-  # docs
-  install -vDm 644 {AUTHORS,DESIGN,NEWS,README.md,TODO} \
--t "${pkgdir}/usr/share/doc/${pkgname}/"
-  # sminstbuilder is not compatible with python3:
-  # https://github.com/swesterfeld/spectmorph/issues/6
-  rm -v "${pkgdir}/usr/bin/sminstbuilder"
-}

Copied: spectmorph/repos/community-x86_64/PKGBUILD (from rev 711256, 
spectmorph/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-21 19:11:54 UTC (rev 711257)
@@ -0,0 +1,61 @@
+# Maintainer: David Runge 
+
+pkgname=spectmorph
+pkgver=0.5.2
+pkgrel=1
+pkgdesc="Analyze samples of musical instruments and combine them (morphing)"
+arch=('x86_64')
+url="http://spectmorph.org/;
+license=('LGPL3')
+groups=('lv2-plugins' 'pro-audio' 'vst-plugins')
+depends=('cairo' 'gcc-libs' 'glibc' 'libglvnd' 'libx11' 'zlib')
+makedepends=('fftw' 'freetype2' 'glib2' 'jack' 'lv2' 'libao' 'libsndfile'
+'qt5-base')
+checkdepends=('lv2lint')
+optdepends=('jack: for smjack and smsampleedit'
+'qt5-base: for sminspector and smsampleedit')
+provides=('libspectmorphjack.so' 'libspectmorphgui.so' 'libspectmorphglui.so'
+'libspectmorph.so')
+source=("http://www.spectmorph.org/files/releases/${pkgname}-${pkgver}.tar.bz2;
+
"http://spectmorph.org/files/instruments/${pkgname}-instruments-${pkgver}.tar.xz;)
+sha512sums=('c98607ca3dc0f1a3063bf376431e2d43241a1ccbc864e03ed8726e366d9ab8d43a1f82547743bbb3111494ba819ece8b96deac34c151beccee479e2c4055013c'
+
'7c1353be42b04e0b0107a994a0236b4be5ddf387e436786eeca7173751961f4dcf3b887de84c538d43119a3c9fb3b50cab3850afee4d1634e64803a83daef7da')
+b2sums=('0abba1ae9e7e37880ba0b7ae8c6e4de535e863d14bd8d579be1afa432d62d44ba0b04bd28b007513c6095e5d132b1a0ed51675841f3cc712a4a252aa40c9bd8c'
+
'213d844979c262af63d78f28cba301a2d255c9b31442c3c31b0ce900ffb56d1d0fd38829b3156c159e476b9321790b2af0279dd1dfbf88dd9c86ed2d0863a979')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+  autoreconf -vfi
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  ./configure --prefix=/usr \
+  --with-lv2 \
+  --with-jack \
+  --with-qt
+  make
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  cp -v lv2/.libs/*.so lv2/
+  LV2_PATH="${PWD}" lv2lint "http://spectmorph.org/plugins/spectmorph; || echo 
"Known failing tests: https://github.com/swesterfeld/spectmorph/issues/8;
+  rm -v lv2/*.so
+}
+
+package() {
+  depends+=('libao.so' 'libfftw3f.so' 

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

2020-09-21 Thread David Runge via arch-commits
Date: Monday, September 21, 2020 @ 19:11:43
  Author: dvzrv
Revision: 711256

upgpkg: spectmorph 0.5.2-1: Upgrade to 0.5.2.

Add all available sodeps in package().

Modified:
  spectmorph/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-21 18:58:43 UTC (rev 711255)
+++ PKGBUILD2020-09-21 19:11:43 UTC (rev 711256)
@@ -8,8 +8,9 @@
 url="http://spectmorph.org/;
 license=('LGPL3')
 groups=('lv2-plugins' 'pro-audio' 'vst-plugins')
-depends=('cairo' 'gcc-libs' 'glib2' 'glibc' 'libglvnd' 'libx11' 'zlib')
-makedepends=('fftw' 'freetype2' 'jack' 'lv2' 'libao' 'libsndfile' 'qt5-base')
+depends=('cairo' 'gcc-libs' 'glibc' 'libglvnd' 'libx11' 'zlib')
+makedepends=('fftw' 'freetype2' 'glib2' 'jack' 'lv2' 'libao' 'libsndfile'
+'qt5-base')
 checkdepends=('lv2lint')
 optdepends=('jack: for smjack and smsampleedit'
 'qt5-base: for sminspector and smsampleedit')
@@ -45,7 +46,7 @@
 
 package() {
   depends+=('libao.so' 'libfftw3f.so' 'libfftw3f_threads.so' 'libfreetype.so'
-  'libsndfile.so')
+  'libglib-2.0.so' 'libsndfile.so')
   cd "$pkgname-$pkgver"
   make DESTDIR="$pkgdir/" install
   # standard instruments


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

2020-09-21 Thread Felix Yan via arch-commits
Date: Monday, September 21, 2020 @ 18:58:26
  Author: felixonmars
Revision: 711254

upgpkg: deepin-movie 1:5.7.6.31-1

Modified:
  deepin-movie/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-21 18:39:16 UTC (rev 711253)
+++ PKGBUILD2020-09-21 18:58:26 UTC (rev 711254)
@@ -2,7 +2,7 @@
 
 pkgname=deepin-movie
 epoch=1
-pkgver=5.7.6.30
+pkgver=5.7.6.31
 pkgrel=1
 pkgdesc='Movie player based on QtAV'
 arch=('x86_64')
@@ -12,7 +12,7 @@
 makedepends=('cmake' 'ninja' 'qt5-tools')
 groups=('deepin-extra')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-movie-reborn/archive/$pkgver.tar.gz;)
-sha512sums=('bb1fdd69d84fd0b4558ee833e5db205c889d56483a1a3157a3fb39b90bca5e9f9bf5730cfd4e5de5ae9a16b2346e30f900a027cf4cc87c448b21174ecdf37060')
+sha512sums=('070e229cb8db6840f0993da82f6ae8b4e77fe32a191904b7aa951c2f135e9440126af5675fea6a373227a7b52e1329f17cbbc50d1eaff3a21d4aa917d588d75b')
 
 prepare() {
   cd deepin-movie-reborn-$pkgver


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

2020-09-21 Thread Felix Yan via arch-commits
Date: Monday, September 21, 2020 @ 18:58:43
  Author: felixonmars
Revision: 711255

archrelease: copy trunk to community-x86_64

Added:
  deepin-movie/repos/community-x86_64/PKGBUILD
(from rev 711254, deepin-movie/trunk/PKGBUILD)
Deleted:
  deepin-movie/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-21 18:58:26 UTC (rev 711254)
+++ PKGBUILD2020-09-21 18:58:43 UTC (rev 711255)
@@ -1,31 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=deepin-movie
-epoch=1
-pkgver=5.7.6.30
-pkgrel=1
-pkgdesc='Movie player based on QtAV'
-arch=('x86_64')
-url="https://github.com/linuxdeepin/deepin-movie-reborn;
-license=('GPL3')
-depends=('deepin-qt5integration' 'mpv' 'ffmpegthumbnailer')
-makedepends=('cmake' 'ninja' 'qt5-tools')
-groups=('deepin-extra')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-movie-reborn/archive/$pkgver.tar.gz;)
-sha512sums=('bb1fdd69d84fd0b4558ee833e5db205c889d56483a1a3157a3fb39b90bca5e9f9bf5730cfd4e5de5ae9a16b2346e30f900a027cf4cc87c448b21174ecdf37060')
-
-prepare() {
-  cd deepin-movie-reborn-$pkgver
-  sed -i '/#include /a #include ' 
src/widgets/{tip,toolbutton}.h
-}
-
-build() {
-  cd deepin-movie-reborn-$pkgver
-  cmake -GNinja -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=lib 
-DCMAKE_BUILD_TYPE=Release .
-  ninja
-}
-
-package() {
-  cd deepin-movie-reborn-$pkgver
-  DESTDIR="$pkgdir" ninja install
-}

Copied: deepin-movie/repos/community-x86_64/PKGBUILD (from rev 711254, 
deepin-movie/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-21 18:58:43 UTC (rev 711255)
@@ -0,0 +1,31 @@
+# Maintainer: Felix Yan 
+
+pkgname=deepin-movie
+epoch=1
+pkgver=5.7.6.31
+pkgrel=1
+pkgdesc='Movie player based on QtAV'
+arch=('x86_64')
+url="https://github.com/linuxdeepin/deepin-movie-reborn;
+license=('GPL3')
+depends=('deepin-qt5integration' 'mpv' 'ffmpegthumbnailer')
+makedepends=('cmake' 'ninja' 'qt5-tools')
+groups=('deepin-extra')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-movie-reborn/archive/$pkgver.tar.gz;)
+sha512sums=('070e229cb8db6840f0993da82f6ae8b4e77fe32a191904b7aa951c2f135e9440126af5675fea6a373227a7b52e1329f17cbbc50d1eaff3a21d4aa917d588d75b')
+
+prepare() {
+  cd deepin-movie-reborn-$pkgver
+  sed -i '/#include /a #include ' 
src/widgets/{tip,toolbutton}.h
+}
+
+build() {
+  cd deepin-movie-reborn-$pkgver
+  cmake -GNinja -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=lib 
-DCMAKE_BUILD_TYPE=Release .
+  ninja
+}
+
+package() {
+  cd deepin-movie-reborn-$pkgver
+  DESTDIR="$pkgdir" ninja install
+}


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

2020-09-21 Thread Jan Steffens via arch-commits
Date: Monday, September 21, 2020 @ 18:45:51
  Author: heftig
Revision: 396406

archrelease: copy trunk to gnome-unstable-x86_64

Added:
  vala/repos/gnome-unstable-x86_64/
  vala/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 396405, vala/trunk/PKGBUILD)

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

Copied: vala/repos/gnome-unstable-x86_64/PKGBUILD (from rev 396405, 
vala/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2020-09-21 18:45:51 UTC (rev 396406)
@@ -0,0 +1,50 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Ionut Biru 
+# Contributor: Timm Preetz 
+
+pkgname=vala
+pkgver=0.50.0
+pkgrel=1
+pkgdesc='Compiler for the GObject type system'
+url='https://wiki.gnome.org/Projects/Vala'
+arch=(x86_64)
+license=(LGPL)
+depends=(glib2 gtk-doc graphviz ttf-font pkg-config gcc)
+makedepends=(libxslt vala git help2man autoconf-archive)
+checkdepends=(dbus libx11 gobject-introspection)
+provides=(valadoc libvala-${pkgver%.*}.so libvaladoc-${pkgver%.*}.so)
+conflicts=(valadoc)
+replaces=(valadoc)
+_commit=b32985eaa47e78e840ae03be2f5ede3692eabd4f  # tags/0.50.0^0
+source=("git+https://gitlab.gnome.org/GNOME/vala.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+check() {
+  cd $pkgname
+  make check
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}
+
+# vim: ts=2 sw=2 et:


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

2020-09-21 Thread Jan Steffens via arch-commits
Date: Monday, September 21, 2020 @ 18:45:27
  Author: heftig
Revision: 396405

0.50.0-1

Modified:
  vala/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-21 18:45:10 UTC (rev 396404)
+++ PKGBUILD2020-09-21 18:45:27 UTC (rev 396405)
@@ -4,7 +4,7 @@
 # Contributor: Timm Preetz 
 
 pkgname=vala
-pkgver=0.48.10
+pkgver=0.50.0
 pkgrel=1
 pkgdesc='Compiler for the GObject type system'
 url='https://wiki.gnome.org/Projects/Vala'
@@ -16,7 +16,7 @@
 provides=(valadoc libvala-${pkgver%.*}.so libvaladoc-${pkgver%.*}.so)
 conflicts=(valadoc)
 replaces=(valadoc)
-_commit=5e410681a98ca6b5b14a30806bb0165f5aeb943f  # tags/0.48.10^0
+_commit=b32985eaa47e78e840ae03be2f5ede3692eabd4f  # tags/0.50.0^0
 source=("git+https://gitlab.gnome.org/GNOME/vala.git#commit=$_commit;)
 sha256sums=('SKIP')
 


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

2020-09-21 Thread Jan Steffens via arch-commits
Date: Monday, September 21, 2020 @ 18:45:10
  Author: heftig
Revision: 396404

81.0-1

Modified:
  firefox-i18n/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-21 18:43:08 UTC (rev 396403)
+++ PKGBUILD2020-09-21 18:45:10 UTC (rev 396404)
@@ -5,7 +5,7 @@
 # Contributor: Andrea Scarpino 
 
 pkgbase=firefox-i18n
-pkgver=80.0.1
+pkgver=81.0
 pkgrel=1
 pkgdesc="Language pack for Firefox"
 arch=(any)
@@ -136,99 +136,99 @@
 
"$pkgdir/usr/lib/firefox/browser/extensions/langpack-$1...@firefox.mozilla.org.xpi"
 }
 
-sha256sums=('ceb89c825a218f13420c755fcd1363ddb9188a5c22f45c10e067750829c83a46'
-'6969c5e9da1f9194a807811fe942915f4490014a99d324409a8709b5dc02a327'
-'53d9344b056798dd0dcd0387fe502521209c6e2024d6c3e2595c64cbe7a33c30'
-'905a7e36df72b522fa0ab986eafbecad93e5ddd7e77ede23adac5f0e8da99405'
-'3fb4f90e8226628856c55124320106f487d616e35d548852ccd0173c67789135'
-'b7d643361e1ea769830c5cff07f7cb4604c4ab2c4e5e8f5529133d6b0b87a5ce'
-'1a51712823e2331ecda5f3140100a0a412cfd1c185300ef3d7980df0ab302ce9'
-'9d9c256093e98568c3ce20a26fe7b0181ce44c5bd06e68300821fec65eb70b9c'
-'309e063ea49a1bee1afa22163b0da1fece46a400fe88f965473750c56dbd1854'
-'f2718f19bf68bf092612afd0596f018f819d8acc4450937f2cf8e3d13cbce970'
-'a9c71619272d64160630b94a93f0d791c03029480d681b00280d8385d1434722'
-'f9405249f483e0ab039f96cb7de06aed8a0731ec1819920b001bdc7f790aba48'
-'f58eb00912a03a8cb35939b33478817276476c1256583eceadc42dadbd0baff7'
-'f85fd1f27aa13dad169fe87877bef663a4438bdb4fd8e7750913e9a3cb8a8ffc'
-'fd10c3ebea42f154af0ba83009c7786cf6316934e314aa3142c0e25c7eaa12c7'
-'c78e5b4b8a68cde6f20523f0e14dd49f5ead212e29b0268f3345f9a952544143'
-'5f6996f8cd08456a07898ba0d5675bd0104e87407e0e63c6412977a2eb0ad0e4'
-'ff06eb308b9586c7f5b596a496c07996ef2ee5ba6b097ddaf37b146d84ef1e62'
-'3c42c66ba1f0a051613d5fdf3b4a925313dcfe647ef8b1e3b811ea4dbbc7e509'
-'dfda50346a8f51a432a8645428bab4571c86cbdcbb3aa1d2eda278f8a048'
-'8b3a7c409f93d6b4eef73f0293997daf118d186104d63f519be81520310343be'
-'286608d67f32d8322654e4b83e2ec25c37d140bab9139faa2bad46be32d7f198'
-'a4df3f8da2e0f7509d3f50746669367f6ba169a76a4087a45e39abc24609cb26'
-'eeae4398feb9bd64f13ccda45e71ee2eb10f77c60c06077bb26ba59f1e81250b'
-'941c1631e3e7801a838914e9332ac4ad367ab00e1a55da2be846b4fb6ee7acd0'
-'cf9574c5834e4fad34bb4a53a057d3dce60ab4868584ff71a87a027123db3c77'
-'387c585179e5c198fd6894fb0b80c8bb6db344f5acb39ff9f1e25eba1c71b0bf'
-'53b6e75ee2017991fca48235d5164bc0963341232c2fc4322f14def12c8d4f71'
-'f1ff4cc93161856ad6ac2d89c50622c262dd5d78579762e2d8be1921e7a53161'
-'13fa890d719b5ffd8cf13d8491a49d83f7b754f75254bf92ac834cb04e73024c'
-'1bd474a51baa7d901ba37842182eaeb0001ea4c0db63f822e77f4cce4f97de43'
-'bf0de8af69ece99b8ba82cb65301587744bbcf8a0e100d17f4c9667245af3670'
-'c7db7d3409049076618d27826ee39067c4bb81b9a9694461cf3fafa49c749cbb'
-'0177a76b393e3c8fe6abb3861a0282e6d3c68bab6f56910934e041a4d6a5419d'
-'71582f3111d9b0dfd40bd72e53b848d88e71146ca9bc76bcf46a25502300c906'
-'f35b346a5060999b9ef373aa52b0b657113ec3a5bdf5e6c6901f8a434c471d4d'
-'42846f63cbcc3c87a90a721c49175818b162e49df3926326951f85ace72bbe98'
-'06c3c1cb7d8d6c592bda8c97f2b826f0fe97780995616c395c272c429a8576ad'
-'bc414c8adca22351fc79453673653078d0f188bb533d19de2db7f4d07d2ce0d6'
-'fc9c39b2e962d1982b7199db77996bfb75facd22afeb06e54476a5dc01549f12'
-'c74578bdacaf47e14caaa64cad6dc15e1d4507524135d6a4d6b195c717d1c7db'
-'f402e0c64b4a0868c048713f33ac013804bfc3c6ddd7a7ee3fa5d3dc8ac28033'
-'2371255d48946dc3027046633d047ccaa2960a11cee5962b4b9c27423b97f622'
-'d71a8239979d26c63f622016c437cb5b2bec20a63973b46ac066bd8326b5a5bc'
-'f0aa7cac3d6929a75a886f8d886ea6dc1dee52f8bec1c53c63cd6ea40c0e5e95'
-'7d405bc522c8a55b11d452df69f3d160698ce6d77b7544e0955ad28828fe1559'
-'f1a4a8412e77af081c8daf1c849116000fa24b2c95be7c118d30954dbcefb728'
-'8c231a979d2a8e8756b7500757c9689c0505c828d7b0424c733d19f50eba5bb1'
-'31c05f5bad8316aa5471c46ff3d18edd955fbdfe79fb93c6b87401546174ebfe'
-'330af4535f0d9aec3594a9779807a074da4b605933102b1f1add984702e053ab'
-'96e921deceecd10f6aa20f47b0227ee3f16d2a965fe300a71abf01b5071321cc'
-'28844177de7f0b6d64ae79417b072fe21c7728cf9c8ad8a7e285b72c645092a1'
-'11034c5e47503ca335f73c2cf50742d8703e09007cf5463309201586e2757d7f'
-

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

2020-09-21 Thread Jan Steffens via arch-commits
Date: Monday, September 21, 2020 @ 18:43:08
  Author: heftig
Revision: 396403

archrelease: copy trunk to extra-x86_64

Added:
  imagemagick6/repos/extra-x86_64/PKGBUILD
(from rev 396402, imagemagick6/trunk/PKGBUILD)
  imagemagick6/repos/extra-x86_64/arch-fonts.diff
(from rev 396402, imagemagick6/trunk/arch-fonts.diff)
Deleted:
  imagemagick6/repos/extra-x86_64/PKGBUILD
  imagemagick6/repos/extra-x86_64/arch-fonts.diff

-+
 PKGBUILD|  222 +++---
 arch-fonts.diff |  214 ++--
 2 files changed, 218 insertions(+), 218 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-21 18:42:57 UTC (rev 396402)
+++ PKGBUILD2020-09-21 18:43:08 UTC (rev 396403)
@@ -1,111 +0,0 @@
-# Maintainer: Eric Bélanger 
-
-pkgbase=imagemagick6
-pkgname=(libmagick6)
-pkgver=6.9.11.29
-pkgrel=1
-pkgdesc="An image viewing/manipulation program (version 6)"
-url="https://legacy.imagemagick.org/;
-arch=(x86_64)
-license=(custom)
-depends=(libltdl lcms2 fontconfig libxext liblqr libraqm libpng)
-makedepends=(ghostscript openexr libwmf librsvg libxml2 openjpeg2 libraw 
opencl-headers libwebp
- chrpath ocl-icd glu ghostpcl ghostxps libheif jbigkit)
-checkdepends=(gsfonts ttf-dejavu)
-_relname=ImageMagick-${pkgver%%.*}
-_tarname=ImageMagick-${pkgver%.*}-${pkgver##*.}
-source=(https://www.imagemagick.org/download/$_tarname.tar.xz{,.asc}
-arch-fonts.diff)
-sha256sums=('a26851d223fac5384ba030aeccd78f14938c32db34533e32f58f0c4c154602e9'
-'SKIP'
-'a85b744c61b1b563743ecb7c7adad999d7ed9a8af816650e3ab9321b2b102e73')
-validpgpkeys=(D8272EF51DA223E4D05B466989AB63D48277377A)  # Lexie Parsimoniae
-
-prepare() {
-  mkdir -p binpkg/usr/lib/pkgconfig {binpkg,docpkg}/usr/share
-
-  cd $_tarname
-
-  # Fix up typemaps to match our packages, where possible
-  patch -Np1 -i ../arch-fonts.diff
-
-  # Don't run auto(re)conf; assumes use of git
-}
-
-build() {
-  cd $_tarname
-  ./configure \
-PKG_CONFIG="/usr/bin/env PKG_CONFIG_PATH=/usr/lib/$pkgbase/pkgconfig 
pkg-config" \
---prefix=/usr \
---sysconfdir=/etc \
---with-dejavu-font-dir=/usr/share/fonts/TTF \
---with-gs-font-dir=/usr/share/fonts/gsfonts \
-PSDelegate=/usr/bin/gs \
-XPSDelegate=/usr/bin/gxps \
-PCLDelegate=/usr/bin/gpcl6 \
---enable-hdri \
---enable-opencl \
---without-gslib \
---with-lqr \
---with-modules \
---with-openexr \
---with-openjp2 \
---with-perl \
---with-perl-options=INSTALLDIRS=vendor \
---with-rsvg \
---with-webp \
---with-wmf \
---with-xml \
---without-autotrace \
---without-djvu \
---without-dps \
---without-fftw \
---without-fpx \
---without-gcc-arch \
---without-gvc
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-check() (
-  cd $_tarname
-  ulimit -n 4096
-  make check || :
-)
-
-package_libmagick6() {
-  pkgdesc="${pkgdesc/)/; library)}"
-  optdepends=('ghostscript: PS/PDF support'
-  'libheif: HEIF support'
-  'libraw: DNG support'
-  'librsvg: SVG support'
-  'libwebp: WEBP support'
-  'libwmf: WMF support'
-  'libxml2: Magick Scripting Language'
-  'ocl-icd: OpenCL support'
-  'openexr: OpenEXR support'
-  'openjpeg2: JPEG2000 support'
-  'pango: Text rendering')
-  
backup=(etc/$_relname/{coder,colors,delegates,log,magic,mime,policy,quantization-table,thresholds,type,type-{dejavu,ghostscript}}.xml)
-  options=('!docs' '!emptydirs' libtool)
-
-  cd $_tarname
-  make DESTDIR="$pkgdir" install pkgconfigdir="/usr/lib/$pkgbase/pkgconfig"
-
-  rm "$pkgdir"/etc/$_relname/type-{apple,urw-base35,windows}.xml
-  rm "$pkgdir"/usr/lib/*.la
-
-  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 LICENSE NOTICE
-
-# Drop tools
-  cd ../binpkg
-  mv "$pkgdir/usr/bin" usr/
-  mv "$pkgdir/usr/lib/perl5" usr/lib/
-  mv "$pkgdir/usr/share/man" usr/share/
-
-# Harden security policy https://bugs.archlinux.org/task/62785
-  sed -e '/<\/policymap>/i \ \ ' -i "$pkgdir"/etc/ImageMagick-6/policy.xml
-
-# Use correct options for inkscape<1.0
-  sed -e 's|--export-file|--export-png|' -i 
"$pkgdir"/etc/ImageMagick-6/delegates.xml
-}

Copied: imagemagick6/repos/extra-x86_64/PKGBUILD (from rev 396402, 
imagemagick6/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-21 18:43:08 UTC (rev 396403)
@@ -0,0 +1,111 @@
+# Maintainer: Eric Bélanger 
+
+pkgbase=imagemagick6
+pkgname=(libmagick6)
+pkgver=6.9.11.30
+pkgrel=1
+pkgdesc="An image viewing/manipulation program (version 6)"
+url="https://legacy.imagemagick.org/;
+arch=(x86_64)
+license=(custom)
+depends=(libltdl lcms2 fontconfig libxext liblqr libraqm 

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

2020-09-21 Thread Jan Steffens via arch-commits
Date: Monday, September 21, 2020 @ 18:42:57
  Author: heftig
Revision: 396402

6.9.11.30-1

Modified:
  imagemagick6/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-21 18:39:00 UTC (rev 396401)
+++ PKGBUILD2020-09-21 18:42:57 UTC (rev 396402)
@@ -2,7 +2,7 @@
 
 pkgbase=imagemagick6
 pkgname=(libmagick6)
-pkgver=6.9.11.29
+pkgver=6.9.11.30
 pkgrel=1
 pkgdesc="An image viewing/manipulation program (version 6)"
 url="https://legacy.imagemagick.org/;
@@ -16,7 +16,7 @@
 _tarname=ImageMagick-${pkgver%.*}-${pkgver##*.}
 source=(https://www.imagemagick.org/download/$_tarname.tar.xz{,.asc}
 arch-fonts.diff)
-sha256sums=('a26851d223fac5384ba030aeccd78f14938c32db34533e32f58f0c4c154602e9'
+sha256sums=('b427c92933c916f70a4f98df0504541909b9e69f5623377398283ae5a6e8a209'
 'SKIP'
 'a85b744c61b1b563743ecb7c7adad999d7ed9a8af816650e3ab9321b2b102e73')
 validpgpkeys=(D8272EF51DA223E4D05B466989AB63D48277377A)  # Lexie Parsimoniae


  1   2   3   >