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

2021-11-21 Thread Felix Yan via arch-commits
Date: Monday, November 22, 2021 @ 06:55:53
  Author: felixonmars
Revision: 1054215

archrelease: copy trunk to community-staging-x86_64

Added:
  tensorflow/repos/community-staging-x86_64/
  tensorflow/repos/community-staging-x86_64/48935.patch
(from rev 1054214, tensorflow/trunk/48935.patch)
  tensorflow/repos/community-staging-x86_64/PKGBUILD
(from rev 1054214, tensorflow/trunk/PKGBUILD)
  tensorflow/repos/community-staging-x86_64/build-against-actual-mkl.patch
(from rev 1054214, tensorflow/trunk/build-against-actual-mkl.patch)
  tensorflow/repos/community-staging-x86_64/fix-c++17-compat.patch
(from rev 1054214, tensorflow/trunk/fix-c++17-compat.patch)
  tensorflow/repos/community-staging-x86_64/openssl-1.1.patch
(from rev 1054214, tensorflow/trunk/openssl-1.1.patch)
  tensorflow/repos/community-staging-x86_64/test.py
(from rev 1054214, tensorflow/trunk/test.py)

+
 48935.patch|  926 +++
 PKGBUILD   |  310 +
 build-against-actual-mkl.patch |   37 +
 fix-c++17-compat.patch |   11 
 openssl-1.1.patch  |   24 +
 test.py|   12 
 6 files changed, 1320 insertions(+)

Copied: tensorflow/repos/community-staging-x86_64/48935.patch (from rev 
1054214, tensorflow/trunk/48935.patch)
===
--- community-staging-x86_64/48935.patch(rev 0)
+++ community-staging-x86_64/48935.patch2021-11-22 06:55:53 UTC (rev 
1054215)
@@ -0,0 +1,926 @@
+From 0f8fde42d09b199d02cf5d9d79fe76ebf1d260ef Mon Sep 17 00:00:00 2001
+From: Ben Greiner 
+Date: Thu, 6 May 2021 12:13:40 +0200
+Subject: [PATCH 01/14] Fix NumPy 1.20 error with np.prod()
+
+Reference: #47691, https://stackoverflow.com/questions/66373169
+---
+ tensorflow/python/ops/array_ops.py | 3 ++-
+ 1 file changed, 2 insertions(+), 1 deletion(-)
+
+diff --git a/tensorflow/python/ops/array_ops.py 
b/tensorflow/python/ops/array_ops.py
+index 519f2ef26fcef..d143ee96a2fc9 100644
+--- a/tensorflow/python/ops/array_ops.py
 b/tensorflow/python/ops/array_ops.py
+@@ -36,6 +36,7 @@
+ from tensorflow.python.framework.constant_op import constant
+ from tensorflow.python.ops import gen_array_ops
+ from tensorflow.python.ops import gen_math_ops
++from tensorflow.python.ops import math_ops
+ # go/tf-wildcard-import
+ # pylint: disable=wildcard-import
+ from tensorflow.python.ops.gen_array_ops import *
+@@ -2894,7 +2895,7 @@ def matrix_set_diag(
+ 
+ def _constant_if_small(value, shape, dtype, name):
+   try:
+-if np.prod(shape) < 1000:
++if math_ops.reduce_prod(shape) < 1000:
+   return constant(value, shape=shape, dtype=dtype, name=name)
+   except TypeError:
+ # Happens when shape is a Tensor, list with Tensor elements, etc.
+
+From 86cbf87703876330b5818b7f170489356d9d2c86 Mon Sep 17 00:00:00 2001
+From: Ben Greiner 
+Date: Thu, 6 May 2021 12:34:12 +0200
+Subject: [PATCH 02/14] relax upper bounds for NumPy and SciPy in pip installs
+
+---
+ .../tools/pip_package/setup_with_binary.py |  2 +-
+ .../install/install_centos_pip_packages.sh |  6 +++---
+ .../ci_build/install/install_pip_packages.sh   |  4 ++--
+ .../install/install_pip_packages_by_version.sh |  2 +-
+ .../install/install_python3.6_pip_packages.sh  |  2 +-
+ tensorflow/tools/ci_build/release/common.sh| 18 +-
+ tensorflow/tools/pip_package/setup.py  |  2 +-
+ 7 files changed, 18 insertions(+), 18 deletions(-)
+
+diff --git a/tensorflow/lite/tools/pip_package/setup_with_binary.py 
b/tensorflow/lite/tools/pip_package/setup_with_binary.py
+index 6b9fe534bb2b1..ae06df8245521 100644
+--- a/tensorflow/lite/tools/pip_package/setup_with_binary.py
 b/tensorflow/lite/tools/pip_package/setup_with_binary.py
+@@ -67,5 +67,5 @@
+ package_dir={'': '.'},
+ package_data={'': ['*.so', '*.pyd']},
+ install_requires=[
+-'numpy ~= 1.19.2',  # Higher versions have a compatibility issue.
++'numpy >= 1.19.2 , <1.21',
+ ])
+diff --git a/tensorflow/tools/ci_build/install/install_centos_pip_packages.sh 
b/tensorflow/tools/ci_build/install/install_centos_pip_packages.sh
+index b9906b9378c79..ab0a766bf22b0 100755
+--- a/tensorflow/tools/ci_build/install/install_centos_pip_packages.sh
 b/tensorflow/tools/ci_build/install/install_centos_pip_packages.sh
+@@ -55,17 +55,17 @@ pip2 install --upgrade protobuf==3.6.1
+ pip3 install --upgrade protobuf==3.6.1
+ 
+ pip2 install --upgrade numpy==1.14.5
+-pip3 install --upgrade numpy==1.14.5
++pip3 install --upgrade numpy>=1.14.5
+ 
+ pip2 install scipy==1.2.2
+-pip3 install scipy==1.4.1
++pip3 install scipy>=1.4.1
+ 
+ pip2 install scikit-learn==0.18.1
+ pip3 install scikit-learn==0.18.1
+ 
+ # pandas required by `inflow`
+ pip2 install pandas==0.19.2
+-pip3 install pandas==0.19.2
++pip3 install pandas>=0.19.2
+ 
+ # Benchmark tests require th

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

2021-11-21 Thread Felix Yan via arch-commits
Date: Monday, November 22, 2021 @ 06:54:34
  Author: felixonmars
Revision: 1054214

upgpkg: tensorflow 2.7.0-2: icu 70.1 rebuild

Modified:
  tensorflow/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-22 06:23:42 UTC (rev 1054213)
+++ PKGBUILD2021-11-22 06:54:34 UTC (rev 1054214)
@@ -7,7 +7,7 @@
 pkgname=(tensorflow tensorflow-opt tensorflow-cuda tensorflow-opt-cuda 
python-tensorflow python-tensorflow-opt python-tensorflow-cuda 
python-tensorflow-opt-cuda)
 pkgver=2.7.0
 _pkgver=2.7.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Library for computation using data flow graphs for scalable machine 
learning"
 url="https://www.tensorflow.org/";
 license=('APACHE')



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

2021-11-21 Thread George Rawlinson via arch-commits
Date: Monday, November 22, 2021 @ 06:23:42
  Author: grawlinson
Revision: 1054213

archrelease: copy trunk to community-testing-x86_64

Added:
  libspf2/repos/community-testing-x86_64/
  libspf2/repos/community-testing-x86_64/PKGBUILD
(from rev 1054212, libspf2/trunk/PKGBUILD)

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

Copied: libspf2/repos/community-testing-x86_64/PKGBUILD (from rev 1054212, 
libspf2/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2021-11-22 06:23:42 UTC (rev 1054213)
@@ -0,0 +1,39 @@
+# Maintainer: Thore Bödecker 
+# Contributor: George Rawlinson 
+# Contributor: svvac <_...@svvac.net>
+
+# NOTE: package version is a pinned commit (titled 'bump to version 1.2.11').
+# this is used due to inactivity upstream and CVE-2021-20314.
+# when/if upstream becomes active again, this package can be re-done in a
+# better way.
+
+pkgname=libspf2
+pkgver=1.2.11
+pkgrel=1
+pkgdesc="Sender Policy Framework record checking library"
+arch=('x86_64')
+url="https://www.libspf2.org/";
+license=('LGPL')
+depends=('glibc' 'libnsl')
+makedepends=('libmilter' 'git')
+source=("$pkgname::git+https://github.com/shevek/libspf2#commit=8131fe140704eaae695e76b5cd09e39bd1dd220b";)
+sha512sums=('SKIP')
+
+build() {
+  cd "$pkgname"
+  ./configure --prefix='/usr'
+  make
+}
+
+check() {
+  cd "$pkgname"
+  make check
+}
+
+package() {
+  cd "$pkgname"
+  make DESTDIR="$pkgdir" install
+
+  # remove unused binaries
+  rm -v "${pkgdir}"/usr/bin/*_static "${pkgdir}/usr/bin/spfd" 
"${pkgdir}/usr/bin/spf_example" "${pkgdir}/usr/bin/spftest"
+}



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

2021-11-21 Thread George Rawlinson via arch-commits
Date: Monday, November 22, 2021 @ 06:22:43
  Author: grawlinson
Revision: 1054212

upgpkg: libspf2 1.2.11-1

New upstream "release". See notes in PKGBUILD for more
information.

Modified:
  libspf2/trunk/PKGBUILD

--+
 PKGBUILD |   36 +---
 1 file changed, 13 insertions(+), 23 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-11-22 05:58:15 UTC (rev 1054211)
+++ PKGBUILD2021-11-22 06:22:43 UTC (rev 1054212)
@@ -2,46 +2,36 @@
 # Contributor: George Rawlinson 
 # Contributor: svvac <_...@svvac.net>
 
+# NOTE: package version is a pinned commit (titled 'bump to version 1.2.11').
+# this is used due to inactivity upstream and CVE-2021-20314.
+# when/if upstream becomes active again, this package can be re-done in a
+# better way.
+
 pkgname=libspf2
-pkgver=1.2.10
-pkgrel=7
+pkgver=1.2.11
+pkgrel=1
 pkgdesc="Sender Policy Framework record checking library"
 arch=('x86_64')
 url="https://www.libspf2.org/";
 license=('LGPL')
 depends=('glibc' 'libnsl')
-makedepends=('libmilter')
-source=(
-  "https://www.libspf2.org/spf/$pkgname-$pkgver.tar.gz";
-  
'fix-variadic-macros.patch::https://github.com/shevek/libspf2/commit/5852828582f556e73751076ad092f72acf7fc8b6.patch'
-  
'fix-cve-2021-20314.patch::https://github.com/shevek/libspf2/commit/c37b7c13c30e225183899364b9f2efdfa85552ef.patch'
-)
-sha512sums=('162ce382628c6fcadac3e11f5a12442db622bb23f7ec503e16f5ba7fc88afdd777bce6b093c12a58210355985fd11b74b140f08fab347334d82d953dd183b130'
-
'886a347c6526c4e81bc035d7e0069f72aaa5ad2103f0e035e46dbd7e1e5f328ebbbc81842fd32397d195a5b18cf841784455a4142291276c1be8942a1c753b4d'
-
'809c9a001b21831a6840359bea3f4e302e1589a5e77bceff85dd63d631ac25ce217ba11446d537d044a1e87481323940da25e6159ad19dd62fcb0803bcd2dcf6')
-b2sums=('d15a44f64c5e3da20aa349e61a6cc02a15f83ed3acff93fe4c23970e30533d6424b1db35d7d60ff488c9a239d343f8544426fbf8fcb66271237155e0b57df1b5'
-
'0fcf2c91cc8b01f8d20ec1d7e1896f59c01115de45b505c7cf81e68d0850456a08b87c1e2f59a5e37824298bee969650f9dd391ec25addf5186478e07a07d182'
-
'3108e42c5a1f629ce5129adfecd2874d1a02ddca0b2db05da1a9d76907dcf2c8d2bde822eb9ad485485d2befd1a35a07bc7f49b629a0829c20253914c6297593')
+makedepends=('libmilter' 'git')
+source=("$pkgname::git+https://github.com/shevek/libspf2#commit=8131fe140704eaae695e76b5cd09e39bd1dd220b";)
+sha512sums=('SKIP')
 
-prepare() {
-  cd "$pkgname-$pkgver"
-  patch -p1 -i "$srcdir/fix-variadic-macros.patch"
-  patch -p1 -i "$srcdir/fix-cve-2021-20314.patch"
-}
-
 build() {
-  cd "$pkgname-$pkgver"
+  cd "$pkgname"
   ./configure --prefix='/usr'
   make
 }
 
 check() {
-  cd "$pkgname-$pkgver"
+  cd "$pkgname"
   make check
 }
 
 package() {
-  cd "$pkgname-$pkgver"
+  cd "$pkgname"
   make DESTDIR="$pkgdir" install
 
   # remove unused binaries



[arch-commits] Commit in electron13/repos (17 files)

2021-11-21 Thread Felix Yan via arch-commits
Date: Monday, November 22, 2021 @ 05:37:36
  Author: felixonmars
Revision: 1054210

archrelease: copy trunk to community-staging-x86_64

Added:
  electron13/repos/community-staging-x86_64/
  electron13/repos/community-staging-x86_64/PKGBUILD
(from rev 1054209, electron13/trunk/PKGBUILD)
  
electron13/repos/community-staging-x86_64/add-clang-nomerge-attribute-to-CheckError.patch
(from rev 1054209, 
electron13/trunk/add-clang-nomerge-attribute-to-CheckError.patch)
  electron13/repos/community-staging-x86_64/chromium-freetype-2.11.patch
(from rev 1054209, electron13/trunk/chromium-freetype-2.11.patch)
  electron13/repos/community-staging-x86_64/chromium-glibc-2.33.patch
(from rev 1054209, electron13/trunk/chromium-glibc-2.33.patch)
  electron13/repos/community-staging-x86_64/chromium-harfbuzz-3.0.0.patch
(from rev 1054209, electron13/trunk/chromium-harfbuzz-3.0.0.patch)
  electron13/repos/community-staging-x86_64/default_app-icon.patch
(from rev 1054209, electron13/trunk/default_app-icon.patch)
  electron13/repos/community-staging-x86_64/electron-launcher.sh
(from rev 1054209, electron13/trunk/electron-launcher.sh)
  electron13/repos/community-staging-x86_64/electron.desktop
(from rev 1054209, electron13/trunk/electron.desktop)
  electron13/repos/community-staging-x86_64/gn-visibility-gmock.patch
(from rev 1054209, electron13/trunk/gn-visibility-gmock.patch)
  electron13/repos/community-staging-x86_64/gn-visibility-mojo.patch
(from rev 1054209, electron13/trunk/gn-visibility-mojo.patch)
  electron13/repos/community-staging-x86_64/gn-visibility-webrtc.patch
(from rev 1054209, electron13/trunk/gn-visibility-webrtc.patch)
  electron13/repos/community-staging-x86_64/skia-harfbuzz-3.0.0.patch
(from rev 1054209, electron13/trunk/skia-harfbuzz-3.0.0.patch)
  
electron13/repos/community-staging-x86_64/sql-make-VirtualCursor-standard-layout-type.patch
(from rev 1054209, 
electron13/trunk/sql-make-VirtualCursor-standard-layout-type.patch)
  
electron13/repos/community-staging-x86_64/unbundle-fix-visibility-of-build-config-freetype.patch
(from rev 1054209, 
electron13/trunk/unbundle-fix-visibility-of-build-config-freetype.patch)
  
electron13/repos/community-staging-x86_64/unbundle-use-char16_t-as-UCHAR_TYPE.patch
(from rev 1054209, 
electron13/trunk/unbundle-use-char16_t-as-UCHAR_TYPE.patch)
  electron13/repos/community-staging-x86_64/use-system-libraries-in-node.patch
(from rev 1054209, electron13/trunk/use-system-libraries-in-node.patch)

+
 PKGBUILD   |  242 +++
 add-clang-nomerge-attribute-to-CheckError.patch|   44 ++
 chromium-freetype-2.11.patch   |   38 ++
 chromium-glibc-2.33.patch  |  144 
 chromium-harfbuzz-3.0.0.patch  |   20 +
 default_app-icon.patch |   21 +
 electron-launcher.sh   |   20 +
 electron.desktop   |7 
 gn-visibility-gmock.patch  |   43 ++
 gn-visibility-mojo.patch   |   36 ++
 gn-visibility-webrtc.patch |   45 ++
 skia-harfbuzz-3.0.0.patch  |  100 ++
 sql-make-VirtualCursor-standard-layout-type.patch  |  238 ++
 unbundle-fix-visibility-of-build-config-freetype.patch |   31 +
 unbundle-use-char16_t-as-UCHAR_TYPE.patch  |   30 +
 use-system-libraries-in-node.patch |   52 +++
 16 files changed,  insertions(+)

Copied: electron13/repos/community-staging-x86_64/PKGBUILD (from rev 1054209, 
electron13/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-11-22 05:37:36 UTC (rev 1054210)
@@ -0,0 +1,242 @@
+# Maintainer: Nicola Squartini 
+
+pkgname=electron13
+pkgver=13.6.2
+_commit=2ee43f9ecedc50daf875c50f1a1fb11b0bd5c10d
+_chromiumver=91.0.4472.164
+_gcc_patchset=5
+pkgrel=2
+pkgdesc='Build cross platform desktop apps with web technologies'
+arch=('x86_64')
+url='https://electronjs.org/'
+license=('MIT' 'custom')
+depends=('c-ares' 'ffmpeg' 'gtk3' 'libevent' 'libxslt' 'minizip' 'nss' 're2'
+ 'snappy')
+makedepends=('clang' 'git' 'gn' 'gperf' 'harfbuzz-icu' 'http-parser'
+ 'java-runtime-headless' 'jsoncpp' 'libnotify' 'lld' 'llvm' 'ninja'
+ 'npm' 'pciutils' 'pipewire' 'python2' 'wget' 'yarn')
+optdepends=('kde-cli-tools: file deletion support (kioclient5)'
+'libappindicator-gtk3: StatusNotifierItem support'
+'pipewire: WebRTC desktop sharing under Wayland'
+'trash-cli: file deletion support (trash-put)'
+"xdg-utils: open URLs with desktop's de

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

2021-11-21 Thread Felix Yan via arch-commits
Date: Monday, November 22, 2021 @ 05:37:05
  Author: felixonmars
Revision: 1054209

upgpkg: electron13 13.6.2-2: icu 70.1 rebuild

Modified:
  electron13/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-22 03:33:30 UTC (rev 1054208)
+++ PKGBUILD2021-11-22 05:37:05 UTC (rev 1054209)
@@ -5,7 +5,7 @@
 _commit=2ee43f9ecedc50daf875c50f1a1fb11b0bd5c10d
 _chromiumver=91.0.4472.164
 _gcc_patchset=5
-pkgrel=1
+pkgrel=2
 pkgdesc='Build cross platform desktop apps with web technologies'
 arch=('x86_64')
 url='https://electronjs.org/'



[arch-commits] Commit in electron9/repos (23 files)

2021-11-21 Thread Felix Yan via arch-commits
Date: Monday, November 22, 2021 @ 03:33:30
  Author: felixonmars
Revision: 1054208

archrelease: copy trunk to community-staging-x86_64

Added:
  electron9/repos/community-staging-x86_64/
  electron9/repos/community-staging-x86_64/PKGBUILD
(from rev 1054207, electron9/trunk/PKGBUILD)
  
electron9/repos/community-staging-x86_64/add-missing-algorithm-header-in-crx_install_error.cc.patch
(from rev 1054207, 
electron9/trunk/add-missing-algorithm-header-in-crx_install_error.cc.patch)
  
electron9/repos/community-staging-x86_64/avoid-double-destruction-of-ServiceWorkerObjectHost.patch
(from rev 1054207, 
electron9/trunk/avoid-double-destruction-of-ServiceWorkerObjectHost.patch)
  electron9/repos/community-staging-x86_64/chromium-83-gcc-10.patch
(from rev 1054207, electron9/trunk/chromium-83-gcc-10.patch)
  electron9/repos/community-staging-x86_64/chromium-ffmpeg-4.3.patch
(from rev 1054207, electron9/trunk/chromium-ffmpeg-4.3.patch)
  electron9/repos/community-staging-x86_64/chromium-harfbuzz-3.0.0.patch
(from rev 1054207, electron9/trunk/chromium-harfbuzz-3.0.0.patch)
  electron9/repos/community-staging-x86_64/chromium-include-limits.patch
(from rev 1054207, electron9/trunk/chromium-include-limits.patch)
  electron9/repos/community-staging-x86_64/chromium-skia-harmony.patch
(from rev 1054207, electron9/trunk/chromium-skia-harmony.patch)
  electron9/repos/community-staging-x86_64/clean-up-a-call-to-set_utf8.patch
(from rev 1054207, electron9/trunk/clean-up-a-call-to-set_utf8.patch)
  electron9/repos/community-staging-x86_64/default_app-icon.patch
(from rev 1054207, electron9/trunk/default_app-icon.patch)
  
electron9/repos/community-staging-x86_64/disk_data_allocator-Metadata-constructor.patch
(from rev 1054207, 
electron9/trunk/disk_data_allocator-Metadata-constructor.patch)
  electron9/repos/community-staging-x86_64/electron9.desktop
(from rev 1054207, electron9/trunk/electron9.desktop)
  
electron9/repos/community-staging-x86_64/include-memory-header-to-get-the-definition-of-std-u.patch
(from rev 1054207, 
electron9/trunk/include-memory-header-to-get-the-definition-of-std-u.patch)
  
electron9/repos/community-staging-x86_64/iwyu-std-numeric_limits-is-defined-in-limits.patch
(from rev 1054207, 
electron9/trunk/iwyu-std-numeric_limits-is-defined-in-limits.patch)
  
electron9/repos/community-staging-x86_64/libstdc-fix-incomplete-type-in-AXTree-for-NodeSetSiz.patch
(from rev 1054207, 
electron9/trunk/libstdc-fix-incomplete-type-in-AXTree-for-NodeSetSiz.patch)
  
electron9/repos/community-staging-x86_64/make-some-of-blink-custom-iterators-STL-compatible.patch
(from rev 1054207, 
electron9/trunk/make-some-of-blink-custom-iterators-STL-compatible.patch)
  electron9/repos/community-staging-x86_64/qt5-webengine-glibc-2.33.patch
(from rev 1054207, electron9/trunk/qt5-webengine-glibc-2.33.patch)
  electron9/repos/community-staging-x86_64/skia-harfbuzz-3.0.0.patch
(from rev 1054207, electron9/trunk/skia-harfbuzz-3.0.0.patch)
  
electron9/repos/community-staging-x86_64/sql-make-VirtualCursor-standard-layout-type.patch
(from rev 1054207, 
electron9/trunk/sql-make-VirtualCursor-standard-layout-type.patch)
  electron9/repos/community-staging-x86_64/use-system-libraries-in-node.patch
(from rev 1054207, electron9/trunk/use-system-libraries-in-node.patch)
  
electron9/repos/community-staging-x86_64/v8-call-new-ListFormatter-createInstance.patch
(from rev 1054207, 
electron9/trunk/v8-call-new-ListFormatter-createInstance.patch)
  
electron9/repos/community-staging-x86_64/v8-remove-soon-to-be-removed-getAllFieldPositions.patch
(from rev 1054207, 
electron9/trunk/v8-remove-soon-to-be-removed-getAllFieldPositions.patch)

+
 PKGBUILD   |  250 +++
 add-missing-algorithm-header-in-crx_install_error.cc.patch |   29 +
 avoid-double-destruction-of-ServiceWorkerObjectHost.patch  |  138 ++
 chromium-83-gcc-10.patch   |   64 ++
 chromium-ffmpeg-4.3.patch  |   21 
 chromium-harfbuzz-3.0.0.patch  |   20 
 chromium-include-limits.patch  |   31 +
 chromium-skia-harmony.patch|   14 
 clean-up-a-call-to-set_utf8.patch  |   34 +
 default_app-icon.patch |   21 
 disk_data_allocator-Metadata-constructor.patch |   18 
 electron9.desktop  |7 
 include-memory-header-to-get-the-definition-of-std-u.patch |   32 +
 iwyu-std-numeric_limits-is-defined-in-limits.patch |   29 +
 libstdc-fix-incomplete-type-in-AXTree-for-NodeSetSiz.patch |   62 ++
 make-some-of-blink-custom-iterators-STL-compatible.patch   |   95 
 qt5-webengine-glibc-2.33.patch |  1

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

2021-11-21 Thread Felix Yan via arch-commits
Date: Monday, November 22, 2021 @ 03:32:18
  Author: felixonmars
Revision: 428893

archrelease: copy trunk to staging-x86_64

Added:
  libreoffice-fresh/repos/staging-x86_64/
  libreoffice-fresh/repos/staging-x86_64/PKGBUILD
(from rev 428892, libreoffice-fresh/trunk/PKGBUILD)
  libreoffice-fresh/repos/staging-x86_64/libreoffice-fresh.csh
(from rev 428892, libreoffice-fresh/trunk/libreoffice-fresh.csh)
  libreoffice-fresh/repos/staging-x86_64/libreoffice-fresh.sh
(from rev 428892, libreoffice-fresh/trunk/libreoffice-fresh.sh)
  
libreoffice-fresh/repos/staging-x86_64/make-pyuno-work-with-system-wide-module-install.diff
(from rev 428892, 
libreoffice-fresh/trunk/make-pyuno-work-with-system-wide-module-install.diff)
  libreoffice-fresh/repos/staging-x86_64/soffice-template.desktop.in
(from rev 428892, libreoffice-fresh/trunk/soffice-template.desktop.in)

--+
 PKGBUILD |  386 +
 libreoffice-fresh.csh|7 
 libreoffice-fresh.sh |7 
 make-pyuno-work-with-system-wide-module-install.diff |   18 
 soffice-template.desktop.in  |7 
 5 files changed, 425 insertions(+)

Copied: libreoffice-fresh/repos/staging-x86_64/PKGBUILD (from rev 428892, 
libreoffice-fresh/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2021-11-22 03:32:18 UTC (rev 428893)
@@ -0,0 +1,386 @@
+# Maintainer: AndyRTR 
+# Maintainer: Bartłomiej Piotrowski 
+
+# Google API keys (see http://www.chromium.org/developers/how-tos/api-keys)
+# Note: These are for Arch Linux use ONLY. For your own distribution, please
+# get your own set of keys. Feel free to contact foutre...@archlinux.org for
+# more information.
+_google_default_client_id=413772536636.apps.googleusercontent.com
+_google_default_client_secret=0ZChLK6AxeA3Isu96MkwqDR4
+
+pkgbase=libreoffice-fresh
+pkgname=('libreoffice-fresh-sdk' 'libreoffice-fresh')
+_LOver=7.2.2.2
+pkgver=7.2.2
+pkgrel=4
+arch=('x86_64')
+license=('LGPL3')
+url="https://www.libreoffice.org/";
+makedepends=('curl>=7.20.0' 'hunspell>=1.2.8' 'python>=3.7' 'libwpd>=0.9.2' 
'libwps'
+   'neon>=0.28.6' 'pango' 'nspr' 'libjpeg' 'libxrandr' 'libgl' 'dbus-glib'
+   'libxslt' 'redland' 'hyphen' 'lpsolve' 'gcc-libs' 'sh' 'graphite' 'icu' 
+   'lcms2' 'poppler>=0.24.0' 'libvisio' 'libetonyek' 'libodfgen' 'libcdr'
+   'libmspub' 'harfbuzz-icu' 'nss' 'hicolor-icon-theme'
+   'desktop-file-utils' 'shared-mime-info' 'gst-plugins-base-libs'
+   'sane' 'perl-archive-zip' 'zip' 'unzip' 'unixodbc' 'ant'
+   'gperf' 'gtk3' 'qt5-base' 'plasma-framework' 'cppunit' 'beanshell' 
'clucene'
+   'junit' 'libmythes' 'libwpg'  'java-environment=11' 'postgresql-libs' 
'mariadb-libs' 'libgl'
+   'bluez-libs' 'gdb' 'doxygen'  'libatomic_ops'  'mdds'
+   'apr' 'serf' 'ttf-liberation' 'ttf-dejavu' 'ttf-carlito' 'libxinerama' 
'libpagemaker' 'glm'
+   'libabw' 'libmwaw' 'libe-book' 'coin-or-mp' 'liblangtag' 'liborcus' 
+#  'libexttextcat' 'libcmis' 'gobject-introspection' # 'libfbclient'
+   'libexttextcat' 'gobject-introspection' # 'libfbclient'
+   'libtommath' 'libzmf' 'gpgme' 'xmlsec' 'rxvt-unicode' 
+   'libepubgen' 'libfreehand' 'libqxp' 'libstaroffice'  'boost' 
'libnumbertext'
+   'libffi' 'box2d' 'git'
+)
+
+_mirror="https://download.documentfoundation.org/libreoffice/src/${pkgver}";
+#_mirror="https://dev-builds.libreoffice.org/pre-releases/src";
+_additional_source_url="https://dev-www.libreoffice.org/src";
+_additional_source_url2="https://dev-www.libreoffice.org/extern";
+source=(${_mirror}/libreoffice{,-help,-translations}-${_LOver}.tar.xz{,.asc}
+   
${_additional_source_url}/35c94d2df8893241173de1d16b6034c0-swingExSrc.zip
+   
${_additional_source_url}/798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip # 
keep old bundled version, new system version ftbs
+   
${_additional_source_url}/a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip
+   
${_additional_source_url}/0168229624cfac409e766913506961a8-ucpp-1.3.2.tar.gz
+   ${_additional_source_url}/language-subtag-registry-2021-03-05.tar.bz2
+   
${_additional_source_url}/17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip
+   
${_additional_source_url}/d8bd5eed178db6e2b18eeed243f85aa8-flute-1.1.6.zip
+   
${_additional_source_url}/ba2930200c9f019c2d93a8c88c651a0f-flow-engine-0.9.4.zip
+   ${_additional_source_url}/pdfium-4500.tar.bz2
+   ${_additional_source_url}/dtoa-20180411.tgz
+   ${_additional_source_url}/lxml-4.1.1.tgz
+   ${_additional_source_url}/Firebird-3.0.7.33374-0.tar.bz2
+   ${_additional_source_url}/zxing-cpp-1.1.1.tar.gz
+   
${_additional_source_url}/skia-m90-45c57e116ee0ce214bdf78405a4762722e4507d9.tar.xz
+ 

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

2021-11-21 Thread Felix Yan via arch-commits
Date: Monday, November 22, 2021 @ 03:32:15
  Author: felixonmars
Revision: 1054207

upgpkg: electron9 9.4.4-4: icu 70.1 rebuild

Modified:
  electron9/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-22 03:05:30 UTC (rev 1054206)
+++ PKGBUILD2021-11-22 03:32:15 UTC (rev 1054207)
@@ -4,7 +4,7 @@
 pkgver=9.4.4
 _commit=f981f3a7c41767fa5ec13cbc8e2242129db96e7a
 _chromiumver=83.0.4103.122
-pkgrel=3
+pkgrel=4
 pkgdesc='Build cross platform desktop apps with web technologies'
 arch=('x86_64')
 url='https://electronjs.org/'



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

2021-11-21 Thread Felix Yan via arch-commits
Date: Monday, November 22, 2021 @ 03:31:59
  Author: felixonmars
Revision: 428892

upgpkg: libreoffice-fresh 7.2.2-4: icu 70.1 rebuild

Modified:
  libreoffice-fresh/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-22 02:46:54 UTC (rev 428891)
+++ PKGBUILD2021-11-22 03:31:59 UTC (rev 428892)
@@ -12,7 +12,7 @@
 pkgname=('libreoffice-fresh-sdk' 'libreoffice-fresh')
 _LOver=7.2.2.2
 pkgver=7.2.2
-pkgrel=3
+pkgrel=4
 arch=('x86_64')
 license=('LGPL3')
 url="https://www.libreoffice.org/";



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

2021-11-21 Thread Andrew Crerar via arch-commits
Date: Monday, November 22, 2021 @ 03:05:30
  Author: andrewsc
Revision: 1054206

archrelease: copy trunk to community-any

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

--+
 PKGBUILD |  460 ++---
 1 file changed, 230 insertions(+), 230 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-11-22 03:05:12 UTC (rev 1054205)
+++ PKGBUILD2021-11-22 03:05:30 UTC (rev 1054206)
@@ -1,230 +0,0 @@
-# Maintainer: Andrew Crerar 
-
-pkgbase=firefox-developer-edition-i18n
-pkgver=95.0b9
-pkgrel=1
-pkgdesc="Language pack for Firefox Developer Edition"
-arch=('any')
-url="https://www.mozilla.com/";
-license=('MPL' 'GPL')
-
-_languages=(
-  'ach "Acholi"'
-  'af  "Afrikaans"'
-  'an  "Aragonese"'
-  'ar  "Arabic"'
-  'ast "Asturian"'
-  'az  "Azerbaijani"'
-  'be  "Belarusian"'
-  'bg  "Bulgarian"'
-  'bn  "Bengali"'
-  'br  "Breton"'
-  'bs  "Bosnian"'
-  'ca  "Catalan"'
-  'ca-valencia "Catalan (Valencian)"'
-  'cak "Maya Kaqchikel"'
-  'cs  "Czech"'
-  'cy  "Welsh"'
-  'da  "Danish"'
-  'de  "German"'
-  'dsb "Lower Sorbian"'
-  'el  "Greek"'
-  'en-CA   "English (Canada)"'
-  'en-GB   "English (British)"'
-  'en-US   "English (American)"'
-  '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 "Triqui"'
-  'uk  "Ukrainian"'
-  'ur  "Urdu"'
-  'uz  "Uzbek"'
-  'vi  "Vietnamese"'
-  'xh  "Xhosa"'
-  'zh-CN   "Chinese (Simplified)"'
-  'zh-TW   "Chinese (Traditional)"'
-)
-
-pkgname=()
-source=()
-_url=https://archive.mozilla.org/pub/firefox/releases/$pkgver/linux-x86_64/xpi
-
-for _lang in "${_languages[@]}"; do
-  _locale=${_lang%% *}
-  _pkgname=firefox-developer-edition-i18n-${_locale,,}
-
-  pkgname+=($_pkgname)
-  
source+=("firefox-developer-edition-i18n-$pkgver-$_locale.xpi::$_url/$_locale.xpi")
-  eval "package_$_pkgname() {
-_package $_lang
-  }"
-done
-
-# Don't extract anything
-noextract=(${source[@]%%::*})
-
-_package() {
-  pkgdesc="$2 language pack for Firefox Developer Edition"
-  depends=("firefox-developer-edition>=$pkgver")
-  install -Dm644 firefox-developer-edition-i18n-$pkgver-$1.xpi \
-
"$pkgdir/usr/lib/firefox-developer-edition/browser/extensions/langpack-$1...@firefox.mozilla.org.xpi"
-}
-
-sha512sums=('175f3e70b5fdee48b66e3cbcdbe43612cb8fa799814b772bb145aca967a3facf60bc35f4e6a852b2e7f3c86524715ef2ad06a6dfe8a9246893e7577916f1d2b5'
-
'05753104c47526a514558c308b8a547aff9d4c796594af48a3b3ce6437342d94aba22e293aa214279a94008c3eef516785e3a628d3076cef0f3433dd5571f245'
-
'28f793c1617ec539799fad26cd0ce2e7c5e0829d37e1cc27e53cbc05e98fee9cbb1477d13d419761bfaafd7c8455e5e0313d92a1ddf235dc0e122db076aa1b3e'
-
'b9ff9bc7cfa8772b62f3bfe6874c0ac6e5bf01e80

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

2021-11-21 Thread Andrew Crerar via arch-commits
Date: Monday, November 22, 2021 @ 03:05:12
  Author: andrewsc
Revision: 1054205

upgpkg: firefox-developer-edition-i18n 95.0b10-1

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

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-22 03:04:09 UTC (rev 1054204)
+++ PKGBUILD2021-11-22 03:05:12 UTC (rev 1054205)
@@ -1,7 +1,7 @@
 # Maintainer: Andrew Crerar 
 
 pkgbase=firefox-developer-edition-i18n
-pkgver=95.0b9
+pkgver=95.0b10
 pkgrel=1
 pkgdesc="Language pack for Firefox Developer Edition"
 arch=('any')
@@ -132,99 +132,99 @@
 
"$pkgdir/usr/lib/firefox-developer-edition/browser/extensions/langpack-$1...@firefox.mozilla.org.xpi"
 }
 
-sha512sums=('175f3e70b5fdee48b66e3cbcdbe43612cb8fa799814b772bb145aca967a3facf60bc35f4e6a852b2e7f3c86524715ef2ad06a6dfe8a9246893e7577916f1d2b5'
-
'05753104c47526a514558c308b8a547aff9d4c796594af48a3b3ce6437342d94aba22e293aa214279a94008c3eef516785e3a628d3076cef0f3433dd5571f245'
-
'28f793c1617ec539799fad26cd0ce2e7c5e0829d37e1cc27e53cbc05e98fee9cbb1477d13d419761bfaafd7c8455e5e0313d92a1ddf235dc0e122db076aa1b3e'
-
'b9ff9bc7cfa8772b62f3bfe6874c0ac6e5bf01e809c273ce19aca1d505102ef63aa419da55acd90ab3607075c4c590a5c113c8e71ec530bab0e1c4b68ae3923f'
-
'57aca05c53f5a1035f7a4b1bca16af94f53126eaa23916312ccc31916b55e41c92f0855ad4d7472781ab0a68f967ac9ec44854a0c68b09f5d28c373af2041527'
-
'13b269272efa154e2605b398243ba5aff9c3343ac5f51b93cc95195d8953580dd2e1d2b8b46f6101960e7e585b24838fa5f9d8f1443cc3c06da4b05cadf10488'
-
'950f3f4d198c83a1e65a321a65cc3138301ca0417af803c862c91aca266d05122920b8f8d81004f90d3a21cb412a2f69c23b9af06ae953705e7d704f5264e112'
-
'4a9a982d13c3ef2bdc69f54703e5006d186b07c12b37e2487b67c0198df62e35c7ef43869196683a13fd2aceae18425a34f3489cf58166df4f855a1cd5f871f5'
-
'62e3e26138844063133231e7426c42fa98fb8c9d55430d1ed5f9db26a8d395e9d306221a50eccc47250f6410f7b26f6b3f8abe0dca650128623919f5ddd78d00'
-
'f2d9fd1472654fe0c961f5dd43ce963e794c8394096fddeb62dfe5f22b39256a5d819f7b687ed108d05201b537505a5ff490c66e45d35028ca2296974be9fbce'
-
'3e1612a76e61a4c0a5395a3a570e859ac5a0d5f328ad2502ea4cca559df73ba8eaaf6809475ffef94a2bcc1167ad62145c973f751562c447aa86f142630feb3a'
-
'4c0f34e763fa32730d93d41e94df798ad0f2e53a7d80ff245e37abbeb05978a1a3dd99d2690f1852767bba8050129f19f05aa6f6607b696e5084ba74f96e44a6'
-
'55c590b56b2737320493218dcb3c394b90384474c295fbc8744a71cf8e29685a1deec2c94bee3701084a1b6dd1f81700ae7014ac1f7ed22dbcee68c252ee5532'
-
'2e639528701c6cdfded1fa52a624eb16a057959456c992785f8875767d012d4e784346c5d8c08fa79038975c65b280bbcf969bc7184284543c3c058d6321c39e'
-
'd3d4d84588973613221654e3a7ce76dbaef501188afa22b863cff0b1a627be529da74cdf20d5eb1108026e18f4284f940511bf16047d1d5debbb8f6cfb2fedd1'
-
'51db14ac001ccc9eb9adc57153c79ba8ee243bab12bf84971f6d55b5f3e15810a8a1c2d32e75a0a1df18f3ca0cc5111dcb952a2e2fff2c6a673d70ffe11fd0cc'
-
'3ca2f7641c40a88e2cebd0c0f03d1b777960752501ab2b6e414a45664aa507250fe7f764d7cf3984a27c40f26c599b8ed2c7760c9841d5589d57e5552774a044'
-
'de0f84e0759170a27a1e244efb364f13634336e843b0f972bcab03c50f5d67747d7073ef86e0138281bdc172be86eb17dc3ca4423fc70ff0b8eaf94361c564bf'
-
'7ec99f81d6600a0fb158d9f2e54b8c5d2ce61a945efc1e048500c0f5c86a8b1625b8aade83b4da71ad9a44b679c4faa02864cc739cfb03aad1857050e29f9e96'
-
'8faa843e7b74fa45c7a11954fb0affbdc127100cd58274ae2072f89aa95c7d13b32ecbb9a507aed73ffaa9b6c0326486d6901c1c443ec10048ba7cc4c3ffac70'
-
'345021c81f49b425dcb3f6ccca9a5e00f33c91de09e1d7fed1a5c05e6c957c72072dcd03389726d63072f3a25f97e614b35bbf327c8a76cf956c1d6676fec858'
-
'01e455af38ee0004e553b848895916c487198c313d87e95c16dcf660752aa84786b471d1a47346d5a73f98202e48c28841da0680a5d2eac59883ac9ae3a5055e'
-
'0740dfbb74bb3de82e60b9ef6b8c9f7cd1cce4e4aca629a8b2dd7d999ad86534930f69b3a6b96b46aa44a49704d51daf720b93a3e34aa8fa4d7932b048ccf72e'
-
'45ed9c752161840e15e92cc8c3d29197a15855183d07d941da69430323a286ce62bfdbbaac7fa1f8a14c7eaa67bf2d438182bd9d5b7d789de372e0ff1db72a83'
-
'e2d9a466e9849a164de28ba2e51987fc8a2614c3bf5d2d8b8d67189d86f75715fd415b0528987f3a43ff918a10a7b304e5a151f27809350012a315d8bd1114ff'
-
'c6013dd986ed24b542ceab8423b9df83ed805620421ae1a482a71632b452ba2bcb45852fe4a75466d2a7904da7c82582835937a5ad72900a82e0cbc18dabc619'
-
'4a8d5f4ff2427fec11b1f836ea03928d1573482f40e2ba0e1c2431fbf6e8404689f9e90a0d1582aeaf332e71c7b0edd849de346730977e4f258737a9f2ab71fd'
-
'752f4e36744c92af18ca2efdc2f9bf0be050b8317919af7f7e5e3133ff0082b7af8f82e2f0b53c67a4ddcf154c43f657aada2afeb74f714f145f4ac3d99cc8ec'
-
'b3a7d996e754feb55a86a3842a5d8abb0320c1809eae07aa652c804f4923

[arch-commits] Commit in electron/repos (17 files)

2021-11-21 Thread Felix Yan via arch-commits
Date: Monday, November 22, 2021 @ 03:04:09
  Author: felixonmars
Revision: 1054204

archrelease: copy trunk to community-staging-x86_64

Added:
  electron/repos/community-staging-x86_64/
  electron/repos/community-staging-x86_64/PKGBUILD
(from rev 1054203, electron/trunk/PKGBUILD)
  
electron/repos/community-staging-x86_64/add-a-TODO-about-a-missing-pnacl-flag.patch
(from rev 1054203, 
electron/trunk/add-a-TODO-about-a-missing-pnacl-flag.patch)
  electron/repos/community-staging-x86_64/chromium-93-ffmpeg-4.4.patch
(from rev 1054203, electron/trunk/chromium-93-ffmpeg-4.4.patch)
  electron/repos/community-staging-x86_64/chromium-94-ffmpeg-roll.patch
(from rev 1054203, electron/trunk/chromium-94-ffmpeg-roll.patch)
  electron/repos/community-staging-x86_64/default_app-icon.patch
(from rev 1054203, electron/trunk/default_app-icon.patch)
  electron/repos/community-staging-x86_64/electron-launcher.sh
(from rev 1054203, electron/trunk/electron-launcher.sh)
  electron/repos/community-staging-x86_64/electron.desktop
(from rev 1054203, electron/trunk/electron.desktop)
  electron/repos/community-staging-x86_64/gn-visibility-gmock.patch
(from rev 1054203, electron/trunk/gn-visibility-gmock.patch)
  electron/repos/community-staging-x86_64/gn-visibility-mojo.patch
(from rev 1054203, electron/trunk/gn-visibility-mojo.patch)
  electron/repos/community-staging-x86_64/gn-visibility-webrtc.patch
(from rev 1054203, electron/trunk/gn-visibility-webrtc.patch)
  
electron/repos/community-staging-x86_64/replace-blacklist-with-ignorelist.patch
(from rev 1054203, electron/trunk/replace-blacklist-with-ignorelist.patch)
  
electron/repos/community-staging-x86_64/sql-make-VirtualCursor-standard-layout-type.patch
(from rev 1054203, 
electron/trunk/sql-make-VirtualCursor-standard-layout-type.patch)
  
electron/repos/community-staging-x86_64/unbundle-fix-visibility-of-build-config-freetype.patch
(from rev 1054203, 
electron/trunk/unbundle-fix-visibility-of-build-config-freetype.patch)
  
electron/repos/community-staging-x86_64/unexpire-accelerated-video-decode-flag.patch
(from rev 1054203, 
electron/trunk/unexpire-accelerated-video-decode-flag.patch)
  electron/repos/community-staging-x86_64/use-ffile-compilation-dir.patch
(from rev 1054203, electron/trunk/use-ffile-compilation-dir.patch)
  electron/repos/community-staging-x86_64/use-system-libraries-in-node.patch
(from rev 1054203, electron/trunk/use-system-libraries-in-node.patch)

+
 PKGBUILD   |  271 +++
 add-a-TODO-about-a-missing-pnacl-flag.patch|   28 +
 chromium-93-ffmpeg-4.4.patch   |   36 +
 chromium-94-ffmpeg-roll.patch  |   49 ++
 default_app-icon.patch |   21 +
 electron-launcher.sh   |   20 +
 electron.desktop   |7 
 gn-visibility-gmock.patch  |   43 ++
 gn-visibility-mojo.patch   |   36 +
 gn-visibility-webrtc.patch |   45 ++
 replace-blacklist-with-ignorelist.patch|  196 ++
 sql-make-VirtualCursor-standard-layout-type.patch  |  238 +
 unbundle-fix-visibility-of-build-config-freetype.patch |   31 +
 unexpire-accelerated-video-decode-flag.patch   |   11 
 use-ffile-compilation-dir.patch|   65 +++
 use-system-libraries-in-node.patch |   52 ++
 16 files changed, 1149 insertions(+)

Copied: electron/repos/community-staging-x86_64/PKGBUILD (from rev 1054203, 
electron/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-11-22 03:04:09 UTC (rev 1054204)
@@ -0,0 +1,271 @@
+# Maintainer: Nicola Squartini 
+
+_use_suffix=0
+pkgver=15.3.1
+_commit=e298bf46e420d3bcec1b936dd6cdccbcbc701fcb
+_chromiumver=94.0.4606.81
+_gcc_patchset=3
+# shellcheck disable=SC2034
+pkgrel=2
+
+_major_ver=${pkgver%%.*}
+if [[ ${_use_suffix} != 0 ]]; then
+  pkgname="electron${_major_ver}"
+else
+  pkgname=electron
+fi
+# shellcheck disable=SC2034
+pkgdesc='Build cross platform desktop apps with web technologies'
+# shellcheck disable=SC2034
+arch=('x86_64')
+# shellcheck disable=SC2034
+url='https://electronjs.org/'
+# shellcheck disable=SC2034
+license=('MIT' 'custom')
+# shellcheck disable=SC2034
+depends=('c-ares' 'ffmpeg' 'gtk3' 'libevent' 'libxslt' 'minizip' 'nss' 're2'
+ 'snappy')
+# shellcheck disable=SC2034
+makedepends=('clang' 'git' 'gn' 'gperf' 'harfbuzz-icu' 'http-parser'
+ 'java-runtime-headless' 'jsoncpp' 'libnotify' 'lld' 'llvm' 'ninja'
+ 'npm' 'pciutils' 'pipewire' 'python' 'wget' 'yarn')
+# shellcheck d

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

2021-11-21 Thread Felix Yan via arch-commits
Date: Monday, November 22, 2021 @ 03:03:37
  Author: felixonmars
Revision: 1054203

upgpkg: electron 15.3.1-2: icu 70.1 rebuild

Modified:
  electron/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-22 02:55:25 UTC (rev 1054202)
+++ PKGBUILD2021-11-22 03:03:37 UTC (rev 1054203)
@@ -6,7 +6,7 @@
 _chromiumver=94.0.4606.81
 _gcc_patchset=3
 # shellcheck disable=SC2034
-pkgrel=1
+pkgrel=2
 
 _major_ver=${pkgver%%.*}
 if [[ ${_use_suffix} != 0 ]]; then



[arch-commits] Commit in electron14/repos (17 files)

2021-11-21 Thread Felix Yan via arch-commits
Date: Monday, November 22, 2021 @ 02:55:25
  Author: felixonmars
Revision: 1054202

archrelease: copy trunk to community-staging-x86_64

Added:
  electron14/repos/community-staging-x86_64/
  electron14/repos/community-staging-x86_64/PKGBUILD
(from rev 1054201, electron14/trunk/PKGBUILD)
  electron14/repos/community-staging-x86_64/chromium-93-ffmpeg-4.4.patch
(from rev 1054201, electron14/trunk/chromium-93-ffmpeg-4.4.patch)
  electron14/repos/community-staging-x86_64/chromium-harfbuzz-3.0.0.patch
(from rev 1054201, electron14/trunk/chromium-harfbuzz-3.0.0.patch)
  electron14/repos/community-staging-x86_64/default_app-icon.patch
(from rev 1054201, electron14/trunk/default_app-icon.patch)
  electron14/repos/community-staging-x86_64/electron-launcher.sh
(from rev 1054201, electron14/trunk/electron-launcher.sh)
  electron14/repos/community-staging-x86_64/electron.desktop
(from rev 1054201, electron14/trunk/electron.desktop)
  electron14/repos/community-staging-x86_64/gn-visibility-gmock.patch
(from rev 1054201, electron14/trunk/gn-visibility-gmock.patch)
  electron14/repos/community-staging-x86_64/gn-visibility-mojo.patch
(from rev 1054201, electron14/trunk/gn-visibility-mojo.patch)
  electron14/repos/community-staging-x86_64/gn-visibility-webrtc.patch
(from rev 1054201, electron14/trunk/gn-visibility-webrtc.patch)
  
electron14/repos/community-staging-x86_64/linux-sandbox-fix-fstatat-crash.patch
(from rev 1054201, electron14/trunk/linux-sandbox-fix-fstatat-crash.patch)
  
electron14/repos/community-staging-x86_64/linux-sandbox-syscall-broker-use-struct-kernel_stat.patch
(from rev 1054201, 
electron14/trunk/linux-sandbox-syscall-broker-use-struct-kernel_stat.patch)
  
electron14/repos/community-staging-x86_64/replace-blacklist-with-ignorelist.patch
(from rev 1054201, electron14/trunk/replace-blacklist-with-ignorelist.patch)
  electron14/repos/community-staging-x86_64/skia-harfbuzz-3.0.0.patch
(from rev 1054201, electron14/trunk/skia-harfbuzz-3.0.0.patch)
  
electron14/repos/community-staging-x86_64/sql-make-VirtualCursor-standard-layout-type.patch
(from rev 1054201, 
electron14/trunk/sql-make-VirtualCursor-standard-layout-type.patch)
  
electron14/repos/community-staging-x86_64/unbundle-fix-visibility-of-build-config-freetype.patch
(from rev 1054201, 
electron14/trunk/unbundle-fix-visibility-of-build-config-freetype.patch)
  electron14/repos/community-staging-x86_64/use-system-libraries-in-node.patch
(from rev 1054201, electron14/trunk/use-system-libraries-in-node.patch)

---+
 PKGBUILD  |  276 ++
 chromium-93-ffmpeg-4.4.patch  |   36 
 chromium-harfbuzz-3.0.0.patch |   20 
 default_app-icon.patch|   21 
 electron-launcher.sh  |   20 
 electron.desktop  |7 
 gn-visibility-gmock.patch |   43 
 gn-visibility-mojo.patch  |   36 
 gn-visibility-webrtc.patch|   45 
 linux-sandbox-fix-fstatat-crash.patch |  348 +++
 linux-sandbox-syscall-broker-use-struct-kernel_stat.patch | 1384 
 replace-blacklist-with-ignorelist.patch   |  196 +
 skia-harfbuzz-3.0.0.patch |  100 
 sql-make-VirtualCursor-standard-layout-type.patch |  238 ++
 unbundle-fix-visibility-of-build-config-freetype.patch|   31 
 use-system-libraries-in-node.patch|   52 
 16 files changed, 2853 insertions(+)

Copied: electron14/repos/community-staging-x86_64/PKGBUILD (from rev 1054201, 
electron14/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-11-22 02:55:25 UTC (rev 1054202)
@@ -0,0 +1,276 @@
+# Maintainer: Nicola Squartini 
+
+_use_suffix=1
+pkgver=14.2.0
+_commit=c2b3c974e07a9743ab758cb98db323dceddd6903
+_chromiumver=93.0.4577.82
+_gcc_patchset=6
+# shellcheck disable=SC2034
+pkgrel=2
+
+_major_ver=${pkgver%%.*}
+if [[ ${_use_suffix} != 0 ]]; then
+  pkgname="electron${_major_ver}"
+else
+  pkgname=electron
+fi
+# shellcheck disable=SC2034
+pkgdesc='Build cross platform desktop apps with web technologies'
+# shellcheck disable=SC2034
+arch=('x86_64')
+# shellcheck disable=SC2034
+url='https://electronjs.org/'
+# shellcheck disable=SC2034
+license=('MIT' 'custom')
+# shellcheck disable=SC2034
+depends=('c-ares' 'ffmpeg' 'gtk3' 'libevent' 'libxslt' 'minizip' 'nss' 're2'
+ 'snappy')
+# shellcheck disable=SC2034
+makedepends=('clang' 'git' 'gn' 'gperf' 'harfbuzz-icu' 'http-parser'
+ 'java-runtime-headless' 'jsoncpp' 'libnotify' 'lld' 'llvm' 'n

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

2021-11-21 Thread Felix Yan via arch-commits
Date: Monday, November 22, 2021 @ 02:54:54
  Author: felixonmars
Revision: 1054201

upgpkg: electron14 14.2.0-2: icu 70.1 rebuild

Modified:
  electron14/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-22 02:51:29 UTC (rev 1054200)
+++ PKGBUILD2021-11-22 02:54:54 UTC (rev 1054201)
@@ -6,7 +6,7 @@
 _chromiumver=93.0.4577.82
 _gcc_patchset=6
 # shellcheck disable=SC2034
-pkgrel=1
+pkgrel=2
 
 _major_ver=${pkgver%%.*}
 if [[ ${_use_suffix} != 0 ]]; then



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

2021-11-21 Thread Andrew Crerar via arch-commits
Date: Monday, November 22, 2021 @ 02:51:04
  Author: andrewsc
Revision: 1054199

upgpkg: firefox-developer-edition 95.0b10-1

Modified:
  firefox-developer-edition/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-22 02:29:34 UTC (rev 1054198)
+++ PKGBUILD2021-11-22 02:51:04 UTC (rev 1054199)
@@ -2,7 +2,7 @@
 # Contributor: Jan Alexander Steffens (heftig) 
 
 pkgname=firefox-developer-edition
-pkgver=95.0b9
+pkgver=95.0b10
 pkgrel=1
 pkgdesc="Developer Edition of the popular Firefox web browser"
 arch=('x86_64')
@@ -26,7 +26,7 @@
 0001-Use-remoting-name-for-GDK-application-names.patch
 "$pkgname".desktop
 identity-icons-brand.svg)
-sha512sums=('e95d4947e514fba1dc2a5cd59812a89f80bf70a2b5fe2e8c22e12df69ef2c26a74b2a18fcb5950be85bd7e0a703636770e9b9a28090c4297e0293eb17f51a57a'
+sha512sums=('97c8eced2c6f99865bf9c7bfdfa6249ed5db778380cc510814aa68ddfce830159e9855da6da8c8adfa7b630e2da159dc4c55685ff4107e57de5f77a38d4027ab'
 'SKIP'
 
'b66dbe7f262d036e5a5b895ab5b0dbb03313bca18b0823c001ef2dbaeb1a33169b57db0cf4dfd268499f28913845119902b5d62e8a6a9cc4820eb0ee2f322a1e'
 
'f00f547a55df90a2f96c7b5f3a3c46b033f985db9a12257cb57f617ae8e0df9558baf6a79a7825f4866de45f9f4875cbbf1f0b99cd44371e047c6bc5dc6c78ba'



[arch-commits] Commit in qt6-webengine/repos (staging-x86_64 staging-x86_64/PKGBUILD)

2021-11-21 Thread Felix Yan via arch-commits
Date: Monday, November 22, 2021 @ 02:46:54
  Author: felixonmars
Revision: 428891

archrelease: copy trunk to staging-x86_64

Added:
  qt6-webengine/repos/staging-x86_64/
  qt6-webengine/repos/staging-x86_64/PKGBUILD
(from rev 428890, qt6-webengine/trunk/PKGBUILD)

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

Copied: qt6-webengine/repos/staging-x86_64/PKGBUILD (from rev 428890, 
qt6-webengine/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2021-11-22 02:46:54 UTC (rev 428891)
@@ -0,0 +1,36 @@
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+
+pkgname=qt6-webengine
+_qtver=6.2.1
+pkgver=${_qtver/-/}
+pkgrel=2
+arch=(x86_64)
+url='https://www.qt.io'
+license=(GPL3 LGPL3 FDL custom)
+pkgdesc='Provides support for web applications using the Chromium browser 
project'
+depends=(qt6-webchannel qt6-location libxcomposite libxrandr pciutils libxss 
libxkbfile 
+ libevent snappy nss libxslt minizip ffmpeg re2 libvpx libxtst 
ttf-font)
+makedepends=(cmake ninja python2 python gperf jsoncpp qt6-tools pipewire 
nodejs)
+optdepends=('pipewire: WebRTC desktop sharing under Wayland')
+groups=(qt6)
+_pkgfn="${pkgname/6-/}-everywhere-src-$_qtver"
+source=(https://download.qt.io/official_releases/qt/${pkgver%.*}/$_qtver/submodules/$_pkgfn.tar.xz)
+sha256sums=('1f933cffb8671c1e71b6b2a4924cb6b3f9878388ae6298ac8d31a76c1ecffbb7')
+
+build() {
+  cmake -B build -S $_pkgfn -G Ninja \
+-DCMAKE_TOOLCHAIN_FILE=/usr/lib/cmake/Qt6/qt.toolchain.cmake \
+-DQT_FEATURE_webengine_system_ffmpeg=ON \
+-DQT_FEATURE_webengine_system_icu=ON \
+-DQT_FEATURE_webengine_proprietary_codecs=ON \
+-DQT_FEATURE_webengine_kerberos=ON \
+-DQT_FEATURE_webengine_webrtc_pipewire=ON
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+
+  install -Dm644 "$srcdir"/${_pkgfn}/src/3rdparty/chromium/LICENSE 
"$pkgdir"/usr/share/licenses/${pkgname}/LICENSE.chromium
+}



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

2021-11-21 Thread Felix Yan via arch-commits
Date: Monday, November 22, 2021 @ 02:46:44
  Author: felixonmars
Revision: 428890

upgpkg: qt6-webengine 6.2.1-2: icu 70.1 rebuild

Modified:
  qt6-webengine/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-22 01:51:32 UTC (rev 428889)
+++ PKGBUILD2021-11-22 02:46:44 UTC (rev 428890)
@@ -4,7 +4,7 @@
 pkgname=qt6-webengine
 _qtver=6.2.1
 pkgver=${_qtver/-/}
-pkgrel=1
+pkgrel=2
 arch=(x86_64)
 url='https://www.qt.io'
 license=(GPL3 LGPL3 FDL custom)



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

2021-11-21 Thread Felix Yan via arch-commits
Date: Monday, November 22, 2021 @ 02:29:34
  Author: felixonmars
Revision: 1054198

archrelease: copy trunk to community-staging-x86_64

Added:
  electron12/repos/community-staging-x86_64/
  electron12/repos/community-staging-x86_64/PKGBUILD
(from rev 1054197, electron12/trunk/PKGBUILD)
  
electron12/repos/community-staging-x86_64/add-dependency-on-opus-in-webcodecs.patch
(from rev 1054197, 
electron12/trunk/add-dependency-on-opus-in-webcodecs.patch)
  electron12/repos/community-staging-x86_64/chromium-fix-libva-redef.patch
(from rev 1054197, electron12/trunk/chromium-fix-libva-redef.patch)
  electron12/repos/community-staging-x86_64/chromium-glibc-2.33.patch
(from rev 1054197, electron12/trunk/chromium-glibc-2.33.patch)
  electron12/repos/community-staging-x86_64/chromium-harfbuzz-3.0.0.patch
(from rev 1054197, electron12/trunk/chromium-harfbuzz-3.0.0.patch)
  electron12/repos/community-staging-x86_64/default_app-icon.patch
(from rev 1054197, electron12/trunk/default_app-icon.patch)
  electron12/repos/community-staging-x86_64/electron-launcher.sh
(from rev 1054197, electron12/trunk/electron-launcher.sh)
  electron12/repos/community-staging-x86_64/electron.desktop
(from rev 1054197, electron12/trunk/electron.desktop)
  electron12/repos/community-staging-x86_64/skia-harfbuzz-3.0.0.patch
(from rev 1054197, electron12/trunk/skia-harfbuzz-3.0.0.patch)
  
electron12/repos/community-staging-x86_64/sql-make-VirtualCursor-standard-layout-type.patch
(from rev 1054197, 
electron12/trunk/sql-make-VirtualCursor-standard-layout-type.patch)
  electron12/repos/community-staging-x86_64/use-system-libraries-in-node.patch
(from rev 1054197, electron12/trunk/use-system-libraries-in-node.patch)

---+
 PKGBUILD  |  229 +++
 add-dependency-on-opus-in-webcodecs.patch |   43 +++
 chromium-fix-libva-redef.patch|   86 +++
 chromium-glibc-2.33.patch |  144 
 chromium-harfbuzz-3.0.0.patch |   20 +
 default_app-icon.patch|   21 +
 electron-launcher.sh  |   20 +
 electron.desktop  |7 
 skia-harfbuzz-3.0.0.patch |  100 
 sql-make-VirtualCursor-standard-layout-type.patch |  238 
 use-system-libraries-in-node.patch|   52 
 11 files changed, 960 insertions(+)

Copied: electron12/repos/community-staging-x86_64/PKGBUILD (from rev 1054197, 
electron12/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-11-22 02:29:34 UTC (rev 1054198)
@@ -0,0 +1,229 @@
+# Maintainer: Nicola Squartini 
+
+pkgname=electron12
+pkgver=12.2.3
+_commit=8492c10291d852071bb599fcf59d57eb2566afd8
+_chromiumver=89.0.4389.128
+_gcc_patchset=7
+pkgrel=2
+pkgdesc='Build cross platform desktop apps with web technologies'
+arch=('x86_64')
+url='https://electronjs.org/'
+license=('MIT' 'custom')
+depends=('c-ares' 'ffmpeg' 'gtk3' 'libevent' 'libxslt' 'minizip' 'nss' 're2'
+ 'snappy')
+makedepends=('clang' 'git' 'gn-m87' 'gperf' 'harfbuzz-icu' 'http-parser'
+ 'java-runtime-headless' 'jsoncpp' 'libnotify' 'lld' 'llvm' 'ninja'
+ 'npm' 'pciutils' 'pipewire' 'python2' 'wget' 'yarn')
+optdepends=('kde-cli-tools: file deletion support (kioclient5)'
+'libappindicator-gtk3: StatusNotifierItem support'
+'pipewire: WebRTC desktop sharing under Wayland'
+'trash-cli: file deletion support (trash-put)'
+"xdg-utils: open URLs with desktop's default (xdg-email, 
xdg-open)")
+source=('git+https://github.com/electron/electron.git'
+
'git+https://chromium.googlesource.com/chromium/tools/depot_tools.git#branch=main'
+
"https://github.com/stha09/chromium-patches/releases/download/chromium-${_chromiumver%%.*}-patchset-${_gcc_patchset}/chromium-${_chromiumver%%.*}-patchset-${_gcc_patchset}.tar.xz";
+"electron-launcher.sh"
+"electron.desktop"
+'default_app-icon.patch'
+'use-system-libraries-in-node.patch'
+'add-dependency-on-opus-in-webcodecs.patch'
+'chromium-fix-libva-redef.patch'
+'chromium-glibc-2.33.patch'
+'chromium-harfbuzz-3.0.0.patch'
+'skia-harfbuzz-3.0.0.patch'
+'sql-make-VirtualCursor-standard-layout-type.patch'
+   )
+sha256sums=('SKIP'
+'SKIP'
+'f8b1558f6c87b33423da854d42f0f69d47885a96d6bf6ce7f26373e93d47442f'
+'929e058a3cbcdea24f42716a43f6ab29727d99b0cddd807099b791662f1a100e'
+'0805ec335447914d8895afa13f07de0496a687f7f6a088c1fe10d72d08d2f42c'
+'dd2d248831dd4944d385ebf008426e66efe61d6fdf66f8932c963a12167947b

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

2021-11-21 Thread Felix Yan via arch-commits
Date: Monday, November 22, 2021 @ 02:29:10
  Author: felixonmars
Revision: 1054197

upgpkg: electron12 12.2.3-2: icu 70.1 rebuild

Modified:
  electron12/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-22 02:12:20 UTC (rev 1054196)
+++ PKGBUILD2021-11-22 02:29:10 UTC (rev 1054197)
@@ -5,7 +5,7 @@
 _commit=8492c10291d852071bb599fcf59d57eb2566afd8
 _chromiumver=89.0.4389.128
 _gcc_patchset=7
-pkgrel=1
+pkgrel=2
 pkgdesc='Build cross platform desktop apps with web technologies'
 arch=('x86_64')
 url='https://electronjs.org/'



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

2021-11-21 Thread Felix Yan via arch-commits
Date: Monday, November 22, 2021 @ 02:12:20
  Author: felixonmars
Revision: 1054196

archrelease: copy trunk to community-staging-x86_64

Added:
  openttd/repos/community-staging-x86_64/
  openttd/repos/community-staging-x86_64/PKGBUILD
(from rev 1054195, openttd/trunk/PKGBUILD)

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

Copied: openttd/repos/community-staging-x86_64/PKGBUILD (from rev 1054195, 
openttd/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-11-22 02:12:20 UTC (rev 1054196)
@@ -0,0 +1,37 @@
+# Maintainer: Laurent Carlier 
+# Maintainer: Alexander F. Rødseth 
+# Contributor: Vesa Kaihlavirta 
+
+pkgname=openttd
+pkgver=12.1
+pkgrel=2
+pkgdesc='Engine for running Transport Tycoon Deluxe'
+arch=(x86_64)
+url='https://www.openttd.org'
+license=(GPL)
+depends=(fluidsynth fontconfig hicolor-icon-theme libpng)
+makedepends=(cmake ninja)
+optdepends=('openttd-opengfx: free graphics'
+'openttd-opensfx: free soundset')
+source=("https://cdn.$pkgname.org/$pkgname-releases/$pkgver/$pkgname-$pkgver-source.tar.xz";)
+b2sums=('653a511416b0d75af696eae96cf730e95747b476f9b1957759a6d3941eff2d6194dfb4bdb8e5e6cb645b81278ac4d48cf886daaa5796d1f995da490bcd046514')
+
+prepare() {
+  sed -i '/sse/d;/SSE/d' $pkgname-$pkgver/CMakeLists.txt
+}
+
+build() {
+  cmake \
+-B build \
+-D CMAKE_BUILD_TYPE=Release \
+-D CMAKE_INSTALL_PREFIX=/usr \
+-D CMAKE_INSTALL_BINDIR=bin \
+-D CMAKE_INSTALL_DATADIR=/usr/share \
+-G Ninja \
+-S $pkgname-$pkgver
+  ninja -C build
+}
+
+package() {
+  DESTDIR="$pkgdir" ninja -C build install
+}



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

2021-11-21 Thread Felix Yan via arch-commits
Date: Monday, November 22, 2021 @ 02:12:13
  Author: felixonmars
Revision: 1054195

upgpkg: openttd 12.1-2: openldap 2.6 rebuild

Modified:
  openttd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-22 01:59:55 UTC (rev 1054194)
+++ PKGBUILD2021-11-22 02:12:13 UTC (rev 1054195)
@@ -4,7 +4,7 @@
 
 pkgname=openttd
 pkgver=12.1
-pkgrel=1
+pkgrel=2
 pkgdesc='Engine for running Transport Tycoon Deluxe'
 arch=(x86_64)
 url='https://www.openttd.org'



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

2021-11-21 Thread Evangelos Foutras via arch-commits
Date: Monday, November 22, 2021 @ 01:59:55
  Author: foutrelis
Revision: 1054194

archrelease: copy trunk to community-staging-x86_64

Added:
  couchdb/repos/community-staging-x86_64/
  couchdb/repos/community-staging-x86_64/PKGBUILD
(from rev 1054193, couchdb/trunk/PKGBUILD)
  couchdb/repos/community-staging-x86_64/couchdb.service
(from rev 1054193, couchdb/trunk/couchdb.service)
  couchdb/repos/community-staging-x86_64/couchdb.sysusers
(from rev 1054193, couchdb/trunk/couchdb.sysusers)
  couchdb/repos/community-staging-x86_64/couchdb.tmpfiles
(from rev 1054193, couchdb/trunk/couchdb.tmpfiles)
  couchdb/repos/community-staging-x86_64/datadirs.ini
(from rev 1054193, couchdb/trunk/datadirs.ini)

--+
 PKGBUILD |   58 +
 couchdb.service  |   42 ++
 couchdb.sysusers |1 
 couchdb.tmpfiles |3 ++
 datadirs.ini |3 ++
 5 files changed, 107 insertions(+)

Copied: couchdb/repos/community-staging-x86_64/PKGBUILD (from rev 1054193, 
couchdb/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-11-22 01:59:55 UTC (rev 1054194)
@@ -0,0 +1,58 @@
+# Maintainer: Bruno Pagani 
+# Contributor: Sergej Pupykin 
+# Contributor: Vitaliy Berdinskikh ur6lad[at]i.ua
+# Contributor: Michael Fellinger 
+
+pkgname=couchdb
+pkgver=3.2.0
+pkgrel=2
+pkgdesc="Document-oriented database that can be queried and indexed in a 
MapReduce fashion using JSON"
+arch=(x86_64)
+url="https://couchdb.apache.org";
+license=(Apache)
+depends=(icu js78 zlib)
+optdepends=('erlang-nox: for weatherreport')
+makedepends=(erlang-nox)
+backup=('etc/couchdb/local.ini'
+'etc/couchdb/vm.args')
+source=("https://www-eu.apache.org/dist/couchdb/source/${pkgver}/apache-couchdb-${pkgver}.tar.gz"{,.asc}
+couchdb.service
+couchdb.sysusers
+couchdb.tmpfiles
+datadirs.ini)
+sha256sums=('8bea574faa6bb0926c670542d8318c322268cf7e6614dab318dea734ccf1b00c'
+'SKIP'
+'38f3e489c031b8c6eacd8b9da3ca91362d7929e8f5e3c8b0e4cf5401c67bf7bb'
+'3ed1ad2a37a068ce194b03fb72eb35285d60fa7faf2d2c2bb710703d229108a8'
+'0ce806cbc5e18e60b17be9fd2cdbd4c7f12cc84ca95b079efdede16ddb5f3efd'
+'937ca3498aab47b3f2226d027fa8a1a95de55cbb463373099e28cb9a6c7046ac')
+validpgpkeys=(2EC788AE3F239FA13E82D215CDE711289384AE37  # Joan Touzet (CODE 
SIGNING KEY) 
+  D2B17F9DA23C0A10991AF2E3D9EE01E47852AEE4  # Jan Lehnardt 

+  0BD7A98499C4AB41C910EE65FC04DFBC9657A78E) # Nick Vatamaniuc 

+
+prepare() {
+  cd apache-couchdb-${pkgver}
+  sed -i 's|$ROOTDIR/etc/vm.args|/etc/couchdb/vm.args|' rel/files/couchdb.in
+}
+
+build() {
+  cd apache-couchdb-${pkgver}
+  ./configure --spidermonkey-version 78
+  make release
+}
+
+package() {
+  cd apache-couchdb-${pkgver}
+  install -dm755 "${pkgdir}"/usr/lib/
+  install -dm755 "${pkgdir}"/etc/couchdb/
+
+  cp -r rel/couchdb "${pkgdir}"/usr/lib/couchdb
+  mv "${pkgdir}"/usr/lib/couchdb/etc/local.ini 
"${pkgdir}"/etc/couchdb/local.ini
+  mv "${pkgdir}"/usr/lib/couchdb/etc/vm.args "${pkgdir}"/etc/couchdb/vm.args
+
+  cd "${srcdir}"
+  install -Dm644 ${pkgname}.service -t "${pkgdir}"/usr/lib/systemd/system/
+  install -Dm644 ${pkgname}.tmpfiles 
"${pkgdir}"/usr/lib/tmpfiles.d/${pkgname}.conf
+  install -Dm644 ${pkgname}.sysusers 
"${pkgdir}"/usr/lib/sysusers.d/${pkgname}.conf
+  install -Dm644 datadirs.ini -t "${pkgdir}"/usr/lib/couchdb/etc/
+}

Copied: couchdb/repos/community-staging-x86_64/couchdb.service (from rev 
1054193, couchdb/trunk/couchdb.service)
===
--- community-staging-x86_64/couchdb.service(rev 0)
+++ community-staging-x86_64/couchdb.service2021-11-22 01:59:55 UTC (rev 
1054194)
@@ -0,0 +1,42 @@
+[Unit]
+Description=CouchDB Server
+
+[Service]
+User=couchdb
+Group=couchdb
+Type=simple
+WorkingDirectory=~
+StateDirectory=couchdb
+Environment="ERL_FLAGS=-couch_ini /usr/lib/couchdb/etc/default.ini 
/usr/lib/couchdb/etc/datadirs.ini /etc/couchdb/local.ini"
+ExecStart=/usr/lib/couchdb/bin/couchdb
+ReadWritePaths=/etc/couchdb/local.ini
+Restart=always
+RestartSec=2s
+AmbientCapabilities=
+CapabilityBoundingSet=
+LockPersonality=true
+# Not compatible with the use of JS
+#MemoryDenyWriteExecute=true
+NoNewPrivileges=True
+PrivateDevices=true
+PrivateTmp=true
+PrivateUsers=true
+ProtectClock=true
+ProtectControlGroups=yes
+ProtectHome=true
+ProtectHostname=true
+ProtectKernelLogs=true
+ProtectKernelModules=yes
+ProtectKernelTunables=true
+ProtectProc=invisible
+ProtectSystem=strict
+RestrictAddressFamilies=AF_INET AF_INET6 AF_NETLINK AF_UNIX
+RestrictNamespaces=true
+RestrictRealtime=true
+RestrictSUIDSGID=true
+SystemCallArchitectures=native
+SystemCallFilter=@system

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

2021-11-21 Thread Evangelos Foutras via arch-commits
Date: Monday, November 22, 2021 @ 01:59:48
  Author: foutrelis
Revision: 1054193

upgpkg: couchdb 3.2.0-2: icu 70.1 rebuild

Modified:
  couchdb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-22 01:56:53 UTC (rev 1054192)
+++ PKGBUILD2021-11-22 01:59:48 UTC (rev 1054193)
@@ -5,7 +5,7 @@
 
 pkgname=couchdb
 pkgver=3.2.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Document-oriented database that can be queried and indexed in a 
MapReduce fashion using JSON"
 arch=(x86_64)
 url="https://couchdb.apache.org";



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

2021-11-21 Thread Evangelos Foutras via arch-commits
Date: Monday, November 22, 2021 @ 01:56:53
  Author: foutrelis
Revision: 1054192

archrelease: copy trunk to community-staging-x86_64

Added:
  calibre/repos/community-staging-x86_64/
  calibre/repos/community-staging-x86_64/PKGBUILD
(from rev 1054191, calibre/trunk/PKGBUILD)

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

Copied: calibre/repos/community-staging-x86_64/PKGBUILD (from rev 1054191, 
calibre/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-11-22 01:56:53 UTC (rev 1054192)
@@ -0,0 +1,104 @@
+# Maintainer: Jelle van der Waa 
+# Maintainer: Eli Schwartz 
+# Contributor: Daniel Wallace 
+# Contributor: Giovanni Scafora 
+# Contributor: Petrov Roman 
+# Contributor: Andrea Fagiani 
+# Contributor: Larry Hajali 
+
+pkgbase=calibre
+pkgname=calibre
+pkgver=5.32.0
+pkgrel=2
+pkgdesc="Ebook management application"
+arch=('x86_64')
+url="https://calibre-ebook.com/";
+license=('GPL3')
+_py_deps=('apsw' 'beautifulsoup4' 'cchardet' 'cssselect' 'css-parser' 
'dateutil' 'dnspython'
+  'feedparser' 'html2text' 'html5-parser' 'jeepney' 'lxml' 'markdown' 
'mechanize' 'msgpack'
+  'netifaces' 'unrardll' 'pillow' 'psutil' 'py7zr' 'pychm' 'pygments' 
'pyqt5'
+  'pyqtwebengine' 'regex' 'zeroconf')
+depends=('hunspell' 'hyphen' 'icu' 'jxrlib' 'libmtp' 'libstemmer' 'libusb'
+ 'libwmf' 'mathjax' 'mtdev' 'optipng' 'podofo'
+ "${_py_deps[@]/#/python-}" 'qt5-imageformats' 'qt5-svg' 
'ttf-liberation' 'udisks2')
+makedepends=('qt5-x11extras' 'sip' 'pyqt-builder' 'xdg-utils' 'rapydscript-ng')
+checkdepends=('xorg-server-xvfb')
+optdepends=('poppler: required for converting pdf to html'
+'speech-dispatcher: TTS support in the viewer')
+conflicts=('calibre-common' 'calibre-python3')
+replaces=('calibre-common' 'calibre-python3')
+source=("https://download.calibre-ebook.com/${pkgver}/calibre-${pkgver}.tar.xz";
+"https://calibre-ebook.com/signatures/${pkgbase}-${pkgver}.tar.xz.sig";)
+sha256sums=('3571efc1cc773e453b459096a38b141fd0c7784fb9611505a1f9a55648f47e5e'
+'SKIP')
+validpgpkeys=('3CE1780F78DD88DF45194FD706BC317B515ACE7C') # Kovid Goyal (New 
longer key) 
+
+prepare(){
+cd "${pkgbase}-${pkgver}"
+
+# Desktop integration (e.g. enforce arch defaults)
+# Use uppercase naming scheme, don't delete config files under fakeroot.
+sed -e "/import config_dir/,/os.rmdir(config_dir)/d" \
+-e "s/'ctc-posml'/'text' not in mt and 'pdf' not in mt and 'xhtml'/" \
+-e "s/^Name=calibre/Name=Calibre/g" \
+-i  src/calibre/linux.py
+
+cd resources
+
+# Remove unneeded files
+rm ${pkgbase}-portable.* mozilla-ca-certs.pem
+
+# use system mathjax
+rm -r mathjax
+}
+
+build() {
+cd "${pkgbase}-${pkgver}"
+
+LANG='en_US.UTF-8' python setup.py build
+LANG='en_US.UTF-8' python setup.py gui
+python setup.py liberation_fonts --path-to-liberation_fonts 
/usr/share/fonts/liberation --system-liberation_fonts
+LANG='en_US.UTF-8' python setup.py mathjax --path-to-mathjax 
/usr/share/mathjax --system-mathjax
+LANG='en_US.UTF-8' python setup.py rapydscript
+}
+
+check() {
+cd "${pkgbase}-${pkgver}"
+
+_test_excludes=(
+# merely testing if a runtime-optional feature optdepend is importable
+'speech_dispatcher'
+# tests if a completely unused module is bundled
+'pycryptodome'
+)
+
+# without xvfb-run this fails with much "Control socket failed to recv(), 
resetting"
+# ERROR: test_websocket_perf (calibre.srv.tests.web_sockets.WebSocketTest)
+# one or two tests are a bit flaky, but the python3 build seems to succeed 
more often
+LANG='en_US.UTF-8' xvfb-run python setup.py test 
"${_test_excludes[@]/#/--exclude-test-name=}"
+}
+
+package() {
+cd "${pkgbase}-${pkgver}"
+
+# If this directory doesn't exist, zsh completion won't install.
+install -d "${pkgdir}/usr/share/zsh/site-functions"
+
+LANG='en_US.UTF-8' python setup.py install \
+--staging-root="${pkgdir}/usr" \
+--prefix=/usr \
+--system-plugins-location=/usr/share/calibre/system-plugins
+
+cp -a man-pages/ "${pkgdir}/usr/share/man"
+
+# not needed at runtime
+rm -r "${pkgdir}"/usr/share/calibre/rapydscript/
+
+# Compiling bytecode FS#33392
+# This is kind of ugly but removes traces of the build root.
+while read -rd '' _file; do
+_destdir="$(dirname "${_file#${pkgdir}}")"
+python3 -m compileall -d "${_destdir}" "${_file}"
+python3 -O -m compileall -d "${_destdir}" "${_file}"
+done < <(find "${pkgdir}"/usr/lib/ -name '*.py' -print0)
+}



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

2021-11-21 Thread Evangelos Foutras via arch-commits
Date: Monday, November 22, 2021 @ 01:56:49
  Author: foutrelis
Revision: 1054191

upgpkg: calibre 5.32.0-2: icu 70.1 rebuild

Modified:
  calibre/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-22 01:56:21 UTC (rev 1054190)
+++ PKGBUILD2021-11-22 01:56:49 UTC (rev 1054191)
@@ -9,7 +9,7 @@
 pkgbase=calibre
 pkgname=calibre
 pkgver=5.32.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Ebook management application"
 arch=('x86_64')
 url="https://calibre-ebook.com/";



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

2021-11-21 Thread Evangelos Foutras via arch-commits
Date: Monday, November 22, 2021 @ 01:56:21
  Author: foutrelis
Revision: 1054190

archrelease: copy trunk to community-staging-x86_64

Added:
  python-pyicu/repos/community-staging-x86_64/
  python-pyicu/repos/community-staging-x86_64/PKGBUILD
(from rev 1054189, python-pyicu/trunk/PKGBUILD)

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

Copied: python-pyicu/repos/community-staging-x86_64/PKGBUILD (from rev 1054189, 
python-pyicu/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-11-22 01:56:21 UTC (rev 1054190)
@@ -0,0 +1,31 @@
+# Maintainer: Felix Yan 
+# Contributor: Jonathan Liu 
+
+pkgname=python-pyicu
+pkgver=2.8
+pkgrel=1
+pkgdesc="Python binding for ICU"
+arch=('x86_64')
+license=('MIT')
+url="http://pyicu.osafoundation.org/";
+depends=('python' 'icu')
+makedepends=('python-setuptools')
+checkdepends=('python-fonttools' 'python-pytest')
+source=("https://pypi.io/packages/source/P/PyICU/PyICU-$pkgver.tar.gz";)
+sha512sums=('c0447a7ffa3eef69a24fc4347496fe40c48df9bf13871c9920f1b932b409642fd4d3a63e272262cb4b4ed4ec7f9070b6d93e9ee70d0efea7eaa049e1c8d5afc2')
+
+build() {
+  cd PyICU-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd PyICU-$pkgver
+  python setup.py test
+}
+
+package() {
+  cd PyICU-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}



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

2021-11-21 Thread Evangelos Foutras via arch-commits
Date: Monday, November 22, 2021 @ 01:56:16
  Author: foutrelis
Revision: 1054189

upgpkg: python-pyicu 2.8-1: icu 70.1 rebuild

Modified:
  python-pyicu/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-22 01:55:08 UTC (rev 1054188)
+++ PKGBUILD2021-11-22 01:56:16 UTC (rev 1054189)
@@ -3,7 +3,7 @@
 
 pkgname=python-pyicu
 pkgver=2.8
-pkgrel=0
+pkgrel=1
 pkgdesc="Python binding for ICU"
 arch=('x86_64')
 license=('MIT')



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

2021-11-21 Thread Evangelos Foutras via arch-commits
Date: Monday, November 22, 2021 @ 01:55:08
  Author: foutrelis
Revision: 1054188

Bump to 2.8 for icu 70.1 rebuild

Modified:
  python-pyicu/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-22 01:53:41 UTC (rev 1054187)
+++ PKGBUILD2021-11-22 01:55:08 UTC (rev 1054188)
@@ -2,8 +2,8 @@
 # Contributor: Jonathan Liu 
 
 pkgname=python-pyicu
-pkgver=2.7.4
-pkgrel=1
+pkgver=2.8
+pkgrel=0
 pkgdesc="Python binding for ICU"
 arch=('x86_64')
 license=('MIT')
@@ -11,17 +11,9 @@
 depends=('python' 'icu')
 makedepends=('python-setuptools')
 checkdepends=('python-fonttools' 'python-pytest')
-source=("https://pypi.io/packages/source/P/PyICU/PyICU-$pkgver.tar.gz";
-
$pkgname-$pkgver-LICENSE::https://gitlab.pyicu.org/main/pyicu/-/raw/v$pkgver/LICENSE)
-sha512sums=('b1252f04c162525b607f28704629389a0765961eb3b8d8c7e67a141f9ecbe6d420cfdd043bc945134db8df550cd58316c08a3ac9c30192e04b0710ad2bc21c1d'
-
'ac2b6d1fe6124b84249426abbf4ecdb7c40ab3101ff6b91fa98776a8f27e6b0c255ed88724d19a77e9c89628aab7a16ede1416d5e2464bfe5d8f3ace59dc67f5')
+source=("https://pypi.io/packages/source/P/PyICU/PyICU-$pkgver.tar.gz";)
+sha512sums=('c0447a7ffa3eef69a24fc4347496fe40c48df9bf13871c9920f1b932b409642fd4d3a63e272262cb4b4ed4ec7f9070b6d93e9ee70d0efea7eaa049e1c8d5afc2')
 
-prepare() {
-  # https://gitlab.pyicu.org/main/pyicu/-/issues/148#note_785
-  # next release after 2.7.2 will include this in the tarball
-  mv -vn $pkgname-$pkgver-LICENSE PyICU-$pkgver/LICENSE
-}
-
 build() {
   cd PyICU-$pkgver
   python setup.py build



[arch-commits] Commit in deepin-system-monitor/repos (3 files)

2021-11-21 Thread Evangelos Foutras via arch-commits
Date: Monday, November 22, 2021 @ 01:53:41
  Author: foutrelis
Revision: 1054187

archrelease: copy trunk to community-staging-x86_64

Added:
  deepin-system-monitor/repos/community-staging-x86_64/
  deepin-system-monitor/repos/community-staging-x86_64/PKGBUILD
(from rev 1054186, deepin-system-monitor/trunk/PKGBUILD)
  
deepin-system-monitor/repos/community-staging-x86_64/deepin-system-monitor.install
(from rev 1054186, 
deepin-system-monitor/trunk/deepin-system-monitor.install)

---+
 PKGBUILD  |   28 
 deepin-system-monitor.install |7 +++
 2 files changed, 35 insertions(+)

Copied: deepin-system-monitor/repos/community-staging-x86_64/PKGBUILD (from rev 
1054186, deepin-system-monitor/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-11-22 01:53:41 UTC (rev 1054187)
@@ -0,0 +1,28 @@
+# Maintainer: Felix Yan 
+# Contributor: Josip Ponjavic 
+# Contributor: Xu Fasheng 
+
+pkgname=deepin-system-monitor
+pkgver=5.8.8
+pkgrel=2
+pkgdesc='A more user-friendly system monitor'
+arch=('x86_64')
+url="https://github.com/linuxdeepin/deepin-system-monitor";
+license=('GPL3')
+depends=('deepin-qt5integration' 'dtkwm' 'procps-ng' 'libcap')
+makedepends=('cmake' 'deepin-gettext-tools' 'ninja' 'qt5-tools')
+groups=('deepin')
+install=deepin-system-monitor.install
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-system-monitor/archive/$pkgver.tar.gz";)
+sha512sums=('0b618dbebc90ca3e134249a41411a7b990b4ed15d83e310ad963fb777adcf1264b6a015301f7bb2ac2f3635cb37784dd80098feec218720a95dc9f669a2b6067')
+
+build() {
+  cd deepin-system-monitor-$pkgver
+  cmake . -GNinja -DCMAKE_INSTALL_PREFIX=/usr
+  ninja
+}
+
+package() {
+  cd deepin-system-monitor-$pkgver
+  DESTDIR="$pkgdir" ninja install
+}

Copied: 
deepin-system-monitor/repos/community-staging-x86_64/deepin-system-monitor.install
 (from rev 1054186, deepin-system-monitor/trunk/deepin-system-monitor.install)
===
--- community-staging-x86_64/deepin-system-monitor.install  
(rev 0)
+++ community-staging-x86_64/deepin-system-monitor.install  2021-11-22 
01:53:41 UTC (rev 1054187)
@@ -0,0 +1,7 @@
+post_install() {
+  setcap cap_kill,cap_net_raw,cap_dac_read_search,cap_sys_ptrace+ep 
usr/bin/deepin-system-monitor
+}
+
+post_upgrade() {
+  post_install
+}



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

2021-11-21 Thread Evangelos Foutras via arch-commits
Date: Monday, November 22, 2021 @ 01:53:36
  Author: foutrelis
Revision: 1054186

upgpkg: deepin-system-monitor 5.8.8-2: icu 70.1 rebuild

Modified:
  deepin-system-monitor/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-22 01:53:04 UTC (rev 1054185)
+++ PKGBUILD2021-11-22 01:53:36 UTC (rev 1054186)
@@ -4,7 +4,7 @@
 
 pkgname=deepin-system-monitor
 pkgver=5.8.8
-pkgrel=1
+pkgrel=2
 pkgdesc='A more user-friendly system monitor'
 arch=('x86_64')
 url="https://github.com/linuxdeepin/deepin-system-monitor";



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

2021-11-21 Thread Felix Yan via arch-commits
Date: Monday, November 22, 2021 @ 01:52:54
  Author: felixonmars
Revision: 1054183

archrelease: copy trunk to community-staging-x86_64

Added:
  freerdp/repos/community-staging-x86_64/
  freerdp/repos/community-staging-x86_64/PKGBUILD
(from rev 1054182, freerdp/trunk/PKGBUILD)
  freerdp/repos/community-staging-x86_64/freerdp-2.0.0-manpage_formatting.patch
(from rev 1054182, freerdp/trunk/freerdp-2.0.0-manpage_formatting.patch)

+
 PKGBUILD   |   71 +++
 freerdp-2.0.0-manpage_formatting.patch |   12 +
 2 files changed, 83 insertions(+)

Copied: freerdp/repos/community-staging-x86_64/PKGBUILD (from rev 1054182, 
freerdp/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-11-22 01:52:54 UTC (rev 1054183)
@@ -0,0 +1,71 @@
+# Maintainer: Sergej Pupykin 
+# Contributor: David Runge 
+# Contributor: Stijn Segers 
+
+_name=FreeRDP
+pkgname=freerdp
+pkgver=2.4.1
+pkgrel=2
+epoch=2
+pkgdesc="Free implementation of the Remote Desktop Protocol (RDP)"
+arch=('x86_64')
+url="https://www.freerdp.com/";
+license=('Apache')
+depends=('dbus-glib' 'glibc' 'gstreamer' 'gst-plugins-base-libs' 'libcups'
+'libgssglue' 'libx11' 'libxcursor' 'libxext' 'libxdamage' 'libxfixes'
+'libxkbcommon' 'libxi' 'libxinerama' 'libxkbfile' 'libxrandr' 'libxrender'
+'libxtst' 'openssl' 'pcsclite' 'wayland')
+makedepends=('alsa-lib' 'cmake' 'docbook-xsl' 'ffmpeg' 'icu' 'krb5'
+'libjpeg-turbo' 'libpulse' 'libusb' 'pam' 'systemd-libs' 'xmlto' 'xorgproto')
+provides=('libfreerdp2.so' 'libfreerdp-client2.so' 'libfreerdp-server2'
+'libfreerdp-shadow2.so' 'libfreerdp-shadow-subsystem2.so' 'libwinpr2.so'
+'libwinpr-tools2.so' 'libuwac0.so')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/${pkgname}/${pkgname}/archive/${pkgver}.tar.gz";
+"$pkgname-2.0.0-manpage_formatting.patch")
+sha512sums=('a02c2fac8f90142b8b7a36e31a720c79d7947c32fc8d4ac1c976e4f01467b3d78c50b00974af1db6e3e61c2c81ac77c1ac9bf889d14e4be084afa18b634e28f0'
+
'd960e042d1527b5d5721136b6b20fc36f65beafd010581ea5b908668537fe9fe622de6689a29c0274b0d6f1e513615f0d02e56c1d1d1e613d093e145d39af8d7')
+b2sums=('19ceb0d7f6b141c9632e1b0ff05fa18772e80d24fb149542f6d365b709f13a8bdd4dee2d647b504f61c9ed4b5806442e8c4ec6f2a876578117fbeb7962b8771d'
+
'8242fe56ba9cf5352d836f656645a46142c1aecea3e8200203117a0226135591c16fa0a24cfa196ade7b703832ff6871a948fd3bbbcc1d9c6df9885dc360')
+
+prepare() {
+  mv -v "${_name}-${pkgver}" "${pkgname}-${pkgver}"
+  cd "${pkgname}-${pkgver}"
+  # fix man page formatting:
+  # https://bugs.archlinux.org/task/64814
+  patch -Np1 -i "../${pkgname}-2.0.0-manpage_formatting.patch"
+}
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  cmake -DCMAKE_INSTALL_PREFIX='/usr' \
+-DCMAKE_INSTALL_LIBDIR='lib' \
+-DCMAKE_BUILD_TYPE='None' \
+-DPROXY_PLUGINDIR='/usr/lib/freerdp2/server/proxy/plugins' \
+-DWITH_DSP_FFMPEG=ON \
+-DWITH_FFMPEG=ON \
+-DWITH_PULSE=ON \
+-DWITH_CUPS=ON \
+-DWITH_PCSC=ON \
+-DWITH_ICU=ON \
+-DWITH_JPEG=ON \
+-DWITH_SERVER=ON \
+-DWITH_SWSCALE=ON \
+-DWITH_CHANNELS=ON \
+-DWITH_CLIENT_CHANNELS=ON \
+-DWITH_SERVER_CHANNELS=ON \
+-DCHANNEL_URBDRC_CLIENT=ON \
+-Wno-dev \
+-B build \
+-S .
+  make VERBOSE=1 -C build
+}
+
+package() {
+  depends+=('libasound.so' 'libavcodec.so' 'libavutil.so' 'libicuuc.so'
+  'libjpeg.so' 'libpam.so' 'libpulse.so' 'libswscale.so' 'libswresample.so'
+  'libsystemd.so' 'libusb-1.0.so')
+  cd "${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install -C build
+  install -vDm 644 {ChangeLog,README.md} \
+-t "${pkgdir}/usr/share/doc/${pkgname}"
+}

Copied: 
freerdp/repos/community-staging-x86_64/freerdp-2.0.0-manpage_formatting.patch 
(from rev 1054182, freerdp/trunk/freerdp-2.0.0-manpage_formatting.patch)
===
--- community-staging-x86_64/freerdp-2.0.0-manpage_formatting.patch 
(rev 0)
+++ community-staging-x86_64/freerdp-2.0.0-manpage_formatting.patch 
2021-11-22 01:52:54 UTC (rev 1054183)
@@ -0,0 +1,12 @@
+diff -ruN a/cmake/FindDocBookXSL.cmake b/cmake/FindDocBookXSL.cmake
+--- a/cmake/FindDocBookXSL.cmake   2018-11-20 11:43:51.0 +0100
 b/cmake/FindDocBookXSL.cmake   2020-01-30 10:37:44.827482448 +0100
+@@ -30,7 +30,7 @@
+set (STYLESHEET_PATH_LIST)
+foreach (STYLESHEET_PREFIX_ITER ${CMAKE_SYSTEM_PREFIX_PATH})
+   file(GLOB STYLESHEET_SUFFIX_ITER RELATIVE ${STYLESHEET_PREFIX_ITER}
+-   ${STYLESHEET_PREFIX_ITER}/share/xml/docbook/xsl-stylesheets-*
++   ${STYLESHEET_PREFIX_ITER}/share/xml/docbook/xsl-stylesheets-*-nons
+   )
+   if (STYLESHEET_SUFFIX_ITER)
+   

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

2021-11-21 Thread Felix Yan via arch-commits
Date: Monday, November 22, 2021 @ 01:52:57
  Author: felixonmars
Revision: 1054184

upgpkg: imv 4.3.0-2: icu 70.1 rebuild

Modified:
  imv/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-22 01:52:54 UTC (rev 1054183)
+++ PKGBUILD2021-11-22 01:52:57 UTC (rev 1054184)
@@ -3,7 +3,7 @@
 
 pkgname=imv
 pkgver=4.3.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Image viewer for Wayland and X11'
 url='https://github.com/eXeC64/imv'
 arch=(x86_64)



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

2021-11-21 Thread Felix Yan via arch-commits
Date: Monday, November 22, 2021 @ 01:53:04
  Author: felixonmars
Revision: 1054185

archrelease: copy trunk to community-staging-x86_64

Added:
  imv/repos/community-staging-x86_64/
  imv/repos/community-staging-x86_64/PKGBUILD
(from rev 1054184, imv/trunk/PKGBUILD)

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

Copied: imv/repos/community-staging-x86_64/PKGBUILD (from rev 1054184, 
imv/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-11-22 01:53:04 UTC (rev 1054185)
@@ -0,0 +1,24 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: Harry Jeffery 
+
+pkgname=imv
+pkgver=4.3.0
+pkgrel=2
+pkgdesc='Image viewer for Wayland and X11'
+url='https://github.com/eXeC64/imv'
+arch=(x86_64)
+license=(GPL)
+depends=(freeimage glu libheif libinih libnsgif librsvg libxkbcommon 
libxkbcommon-x11 pango)
+makedepends=(asciidoc cmocka git meson)
+conflicts=(renameutils)
+source=("git+$url#commit=6fffe1445874b20c85398c4586753176585bbec4") # tag: 
v4.3.0
+b2sums=('SKIP')
+
+build() {
+  arch-meson build $pkgname
+  ninja -C build
+}
+
+package() {
+  DESTDIR="$pkgdir" ninja -C build install
+}



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

2021-11-21 Thread Evangelos Foutras via arch-commits
Date: Monday, November 22, 2021 @ 01:52:44
  Author: foutrelis
Revision: 1054182

archrelease: copy trunk to community-staging-x86_64

Added:
  libzim/repos/community-staging-x86_64/
  libzim/repos/community-staging-x86_64/PKGBUILD
(from rev 1054180, libzim/trunk/PKGBUILD)

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

Copied: libzim/repos/community-staging-x86_64/PKGBUILD (from rev 1054180, 
libzim/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-11-22 01:52:44 UTC (rev 1054182)
@@ -0,0 +1,33 @@
+# Maintainer: Justin Kromlinger 
+pkgname=libzim
+pkgver=7.0.0
+_testing_suite_commit=31ffbefd6699384d80e1f584b69b4321c843bc0c # v0.3
+pkgrel=2
+pkgdesc="Reference implementation of the ZIM specification by the openZIM 
project"
+license=('GPL2')
+arch=('x86_64')
+depends=('xapian-core' 'zlib' 'xz' 'icu' 'zstd')
+makedepends=('meson' 'gtest' 'git')
+url='https://github.com/openzim/libzim'
+source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz"
+
"git+https://github.com/openzim/zim-testing-suite#commit=${_testing_suite_commit}";)
+sha256sums=('91702b383d33f4aff0216596cc01b46dc3c6f8d60c069ffd14affa8ff6459f5d'
+'SKIP')
+
+build() {
+   cd "${pkgname}-${pkgver}"
+   arch-meson build \
+   -Dtest_data_dir="${srcdir}/zim-testing-suite/data"
+   ninja -C build
+}
+
+check() {
+   cd "${pkgname}-${pkgver}/build"
+   SKIP_BIG_MEMORY_TEST=1 ninja meson-test
+}
+
+package() {
+   install -Dm644 "${pkgname}-${pkgver}/COPYING" 
"$pkgdir/usr/share/licenses/$pkgname/COPYING"
+   cd "${pkgname}-${pkgver}/build"
+   DESTDIR="${pkgdir}" ninja install
+}



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

2021-11-21 Thread Felix Yan via arch-commits
Date: Monday, November 22, 2021 @ 01:52:44
  Author: felixonmars
Revision: 1054181

upgpkg: freerdp 2:2.4.1-2: openldap 2.6 rebuild

Modified:
  freerdp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-22 01:52:41 UTC (rev 1054180)
+++ PKGBUILD2021-11-22 01:52:44 UTC (rev 1054181)
@@ -5,7 +5,7 @@
 _name=FreeRDP
 pkgname=freerdp
 pkgver=2.4.1
-pkgrel=1
+pkgrel=2
 epoch=2
 pkgdesc="Free implementation of the Remote Desktop Protocol (RDP)"
 arch=('x86_64')



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

2021-11-21 Thread Evangelos Foutras via arch-commits
Date: Monday, November 22, 2021 @ 01:52:41
  Author: foutrelis
Revision: 1054180

upgpkg: libzim 7.0.0-2: icu 70.1 rebuild

Modified:
  libzim/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-22 01:51:56 UTC (rev 1054179)
+++ PKGBUILD2021-11-22 01:52:41 UTC (rev 1054180)
@@ -2,7 +2,7 @@
 pkgname=libzim
 pkgver=7.0.0
 _testing_suite_commit=31ffbefd6699384d80e1f584b69b4321c843bc0c # v0.3
-pkgrel=1
+pkgrel=2
 pkgdesc="Reference implementation of the ZIM specification by the openZIM 
project"
 license=('GPL2')
 arch=('x86_64')



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

2021-11-21 Thread Evangelos Foutras via arch-commits
Date: Monday, November 22, 2021 @ 01:51:56
  Author: foutrelis
Revision: 1054179

archrelease: copy trunk to community-staging-x86_64

Added:
  0ad/repos/community-staging-x86_64/
  0ad/repos/community-staging-x86_64/PKGBUILD
(from rev 1054178, 0ad/trunk/PKGBUILD)

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

Copied: 0ad/repos/community-staging-x86_64/PKGBUILD (from rev 1054178, 
0ad/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-11-22 01:51:56 UTC (rev 1054179)
@@ -0,0 +1,45 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: t3ddy  
+# Contributor: Adrián Chaves Fernández (Gallaecio) 
+pkgname=0ad
+pkgver=a25.b
+_pkgver=0.0.25b-alpha
+pkgrel=2
+pkgdesc="Cross-platform, 3D and historically-based real-time strategy game"
+arch=('x86_64')
+url="http://play0ad.com/";
+license=('GPL2' 'CCPL')
+depends=('0ad-data' 'binutils' 'boost-libs' 'curl' 'enet' 'libogg' 'libpng' 
'libvorbis'
+ 'libxml2' 'openal' 'sdl2' 'wxgtk3' 'zlib' 'libgl' 'glu' 'fmt'
+ 'gloox' 'miniupnpc' 'libminiupnpc.so' 'icu' 'nspr' 'libsodium')
+makedepends=('boost' 'cmake' 'mesa' 'zip' 'libsm' 'rust')
+source=("https://releases.wildfiregames.com/$pkgname-$_pkgver-unix-build.tar.xz";)
+sha512sums=('e8069897b97b381099ab5ec5868d27e96c699105b3307054d1bc7bf9236a537f02625ba9034892d91f3e951b4f95c9ce5fb75ed0a7c14b8a294882482fd9c1b4')
+
+build() {
+  cd "$pkgname-$_pkgver/build/workspaces"
+
+  export WX_CONFIG="wx-config-gtk3"
+  ./update-workspaces.sh -j$(nproc) \
+  --without-pch \
+  --bindir=/usr/bin \
+  --libdir=/usr/lib/0ad \
+  --datadir=/usr/share/0ad/data
+
+  cd gcc
+
+  VERBOSE=1 make
+}
+
+package() {
+  cd "$pkgname-$_pkgver"
+  install -d "${pkgdir}"/usr/{bin,lib/0ad,share/"${pkgname}"/data}
+  install -Dm755 binaries/system/pyrogenesis "${pkgdir}/usr/bin"
+  install -Dm755 binaries/system/*.so "${pkgdir}/usr/lib/0ad"
+
+  cp -r binaries/data/l10n/ "${pkgdir}/usr/share/${pkgname}/data/"
+
+  install -Dm755 build/resources/${pkgname}.sh "${pkgdir}/usr/bin/${pkgname}"
+  install -Dm644 build/resources/${pkgname}.desktop 
"${pkgdir}/usr/share/applications/${pkgname}.desktop"
+  install -Dm644 build/resources/${pkgname}.png 
"${pkgdir}/usr/share/pixmaps/${pkgname}.png"
+}



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

2021-11-21 Thread Evangelos Foutras via arch-commits
Date: Monday, November 22, 2021 @ 01:51:52
  Author: foutrelis
Revision: 1054178

upgpkg: 0ad a25.b-2: icu 70.1 rebuild

Modified:
  0ad/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-22 01:51:21 UTC (rev 1054177)
+++ PKGBUILD2021-11-22 01:51:52 UTC (rev 1054178)
@@ -4,7 +4,7 @@
 pkgname=0ad
 pkgver=a25.b
 _pkgver=0.0.25b-alpha
-pkgrel=1
+pkgrel=2
 pkgdesc="Cross-platform, 3D and historically-based real-time strategy game"
 arch=('x86_64')
 url="http://play0ad.com/";



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

2021-11-21 Thread Felix Yan via arch-commits
Date: Monday, November 22, 2021 @ 01:51:32
  Author: felixonmars
Revision: 428889

archrelease: copy trunk to staging-x86_64

Added:
  wpewebkit/repos/staging-x86_64/
  wpewebkit/repos/staging-x86_64/PKGBUILD
(from rev 42, wpewebkit/trunk/PKGBUILD)
  wpewebkit/repos/staging-x86_64/fix-doc.diff
(from rev 42, wpewebkit/trunk/fix-doc.diff)

--+
 PKGBUILD |   62 +
 fix-doc.diff |   17 +++
 2 files changed, 79 insertions(+)

Copied: wpewebkit/repos/staging-x86_64/PKGBUILD (from rev 42, 
wpewebkit/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2021-11-22 01:51:32 UTC (rev 428889)
@@ -0,0 +1,62 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=wpewebkit
+pkgver=2.34.1
+pkgrel=3
+pkgdesc="Web content engine for embedded devices"
+url="https://wpewebkit.org";
+arch=(x86_64)
+license=(custom)
+depends=(cairo fontconfig freetype2 glib2 harfbuzz harfbuzz-icu icu libjpeg
+ libepoxy libgcrypt libsoup3 libxml2 zlib libpng sqlite libwebp libwpe
+ atk at-spi2-atk openjpeg2 woff2 libtasn1 libxslt libsystemd bubblewrap
+ libseccomp xdg-dbus-proxy gstreamer gst-plugins-base-libs libxkbcommon
+ wayland wpebackend-fdo)
+makedepends=(cmake ninja gtk-doc python ruby systemd gst-plugins-bad gperf
+ wayland-protocols)
+optdepends=('geoclue: Geolocation support'
+'gst-plugins-good: media decoding'
+'gst-plugins-bad: media decoding'
+'gst-libav: nonfree media decoding')
+source=($url/releases/$pkgname-$pkgver.tar.xz{,.asc} fix-doc.diff)
+sha256sums=('cb336986341be9c3a9b1ca2c18de0d29d90ae4e77b9967a6f6879597e7a969f7'
+'SKIP'
+'d8406f972334b22c7bcad4b105f4fe3e1c9f3dda5b396dbf912afa01fc121d8f')
+validpgpkeys=('D7FCF61CF9A2DEAB31D81BD3F3D322D0EC4582C3'  # Carlos Garcia 
Campos 
+  '5AA3BC334FD7E3369E7C77B291C559DBE4C9123B') # Adrián Pérez de 
Castro 
+
+prepare() {
+  cd $pkgname-$pkgver
+  patch -Np1 -i ../fix-doc.diff
+}
+
+build() {
+  cmake -S $pkgname-$pkgver -B build -G Ninja \
+-DPORT=WPE \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DCMAKE_INSTALL_LIBEXECDIR=lib \
+-DCMAKE_SKIP_RPATH=ON \
+-DENABLE_GTKDOC=ON \
+-DENABLE_MINIBROWSER=ON
+  cmake --build build
+}
+
+package() {
+  depends+=(libwpe-1.0.so libWPEBackend-fdo-1.0.so)
+  provides+=(libWPEWebKit-1.1.so)
+
+  DESTDIR="$pkgdir" cmake --install build
+
+  cd $pkgname-$pkgver
+  find Source -name 'COPYING*' -or -name 'LICENSE*' -print0 | sort -z |
+while IFS= read -d $'\0' -r _f; do
+  echo "### $_f ###"
+  cat "$_f"
+  echo
+done |
+install -Dm644 /dev/stdin "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set sw=2 et:

Copied: wpewebkit/repos/staging-x86_64/fix-doc.diff (from rev 42, 
wpewebkit/trunk/fix-doc.diff)
===
--- staging-x86_64/fix-doc.diff (rev 0)
+++ staging-x86_64/fix-doc.diff 2021-11-22 01:51:32 UTC (rev 428889)
@@ -0,0 +1,17 @@
+diff -u -r wpewebkit-2.34.1/Source/PlatformWPE.cmake 
wpewebkit-2.34.1-doc/Source/PlatformWPE.cmake
+--- wpewebkit-2.34.1/Source/PlatformWPE.cmake  2021-09-16 12:43:07.0 
+
 wpewebkit-2.34.1-doc/Source/PlatformWPE.cmake  2021-11-03 
20:19:45.981812827 +
+@@ -10,10 +10,10 @@
+ )
+ 
+ if (ENABLE_GTKDOC)
+-install(DIRECTORY 
${CMAKE_BINARY_DIR}/Documentation/wpe-${WPE_API_VERSION}/html/wpe-${WPE_API_VERSION}
+-DESTINATION "${CMAKE_INSTALL_DATADIR}/gtk-doc/html"
++install(DIRECTORY 
${CMAKE_BINARY_DIR}/Documentation/wpe-${WPE_API_DOC_VERSION}/html/wpe-${WPE_API_DOC_VERSION}
++DESTINATION "${CMAKE_INSTALL_DATADIR}/gtk-doc/html"
+ )
+-install(DIRECTORY 
${CMAKE_BINARY_DIR}/Documentation/wpe-webextensions-${WPE_API_VERSION}/html/wpe-webextensions-${WPE_API_VERSION}
++install(DIRECTORY 
${CMAKE_BINARY_DIR}/Documentation/wpe-webextensions-${WPE_API_DOC_VERSION}/html/wpe-webextensions-${WPE_API_DOC_VERSION}
+ DESTINATION "${CMAKE_INSTALL_DATADIR}/gtk-doc/html"
+ )
+ endif ()



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

2021-11-21 Thread Felix Yan via arch-commits
Date: Monday, November 22, 2021 @ 01:51:23
  Author: felixonmars
Revision: 42

upgpkg: wpewebkit 2.34.1-3: icu 70.1 rebuild

Modified:
  wpewebkit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-22 01:39:35 UTC (rev 428887)
+++ PKGBUILD2021-11-22 01:51:23 UTC (rev 42)
@@ -2,7 +2,7 @@
 
 pkgname=wpewebkit
 pkgver=2.34.1
-pkgrel=2
+pkgrel=3
 pkgdesc="Web content engine for embedded devices"
 url="https://wpewebkit.org";
 arch=(x86_64)



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

2021-11-21 Thread Evangelos Foutras via arch-commits
Date: Monday, November 22, 2021 @ 01:51:21
  Author: foutrelis
Revision: 1054177

archrelease: copy trunk to community-staging-x86_64

Added:
  znc/repos/community-staging-x86_64/
  znc/repos/community-staging-x86_64/PKGBUILD
(from rev 1054176, znc/trunk/PKGBUILD)
  znc/repos/community-staging-x86_64/znc.install
(from rev 1054176, znc/trunk/znc.install)
  znc/repos/community-staging-x86_64/znc.sysusers
(from rev 1054176, znc/trunk/znc.sysusers)
  znc/repos/community-staging-x86_64/znc.tmpfiles
(from rev 1054176, znc/trunk/znc.tmpfiles)

--+
 PKGBUILD |   50 ++
 znc.install  |   17 +
 znc.sysusers |1 +
 znc.tmpfiles |1 +
 4 files changed, 69 insertions(+)

Copied: znc/repos/community-staging-x86_64/PKGBUILD (from rev 1054176, 
znc/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-11-22 01:51:21 UTC (rev 1054177)
@@ -0,0 +1,50 @@
+# Maintainer: Sébastien Luttringer
+# Contributor: Kaiting Chen 
+# Contributor: mickael9 
+
+pkgname=znc
+pkgver=1.8.2
+pkgrel=5
+pkgdesc='An IRC bouncer with modules & scripts support'
+url='https://wiki.znc.in/'
+license=('GPL2')
+arch=('x86_64')
+depends=('libsasl' 'icu' 'boost-libs')
+makedepends=('tcl' 'python' 'perl' 'cmake' 'boost')
+optdepends=('tcl: modtcl module'
+'python: modpython module'
+'perl: modperl module'
+'cyrus-sasl: saslauth module')
+install=$pkgname.install
+source=("https://znc.in/releases/archive/$pkgname-$pkgver.tar.gz"{,.sig}
+"$pkgname.tmpfiles"
+"$pkgname.sysusers")
+validpgpkeys=('D5823CACB477191CAC007AE420CC0209989E') #Alexey Sokolov 

+sha256sums=('ff238aae3f2ae0e44e683c4aee17dc8e4fdd261ca9379d83b48a7d422488de0d'
+'SKIP'
+'8cd1b5b011c706fea9dc0c70d4daa75a53bf0966d6e96a3fce3a541777aa2771'
+'8802f1b84ab3031db7cc45678f008ceca9b08b2012412a3d4ff1ea596586bb2a')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DWANT_PYTHON=ON \
+-DWANT_PERL=ON \
+-DWANT_TCL=ON \
+-DWANT_SYSTEMD=ON \
+-DSYSTEMD_DIR=/usr/lib/systemd/system
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+  install -Dm644 "$srcdir/$pkgname.sysusers" 
"$pkgdir/usr/lib/sysusers.d/$pkgname.conf"
+  install -Dm644 "$srcdir/$pkgname.tmpfiles" 
"$pkgdir/usr/lib/tmpfiles.d/$pkgname.conf"
+}

Copied: znc/repos/community-staging-x86_64/znc.install (from rev 1054176, 
znc/trunk/znc.install)
===
--- community-staging-x86_64/znc.install(rev 0)
+++ community-staging-x86_64/znc.install2021-11-22 01:51:21 UTC (rev 
1054177)
@@ -0,0 +1,17 @@
+#/bin/bash
+
+# arg 1:  the new package version
+post_install() {
+  echo '==> Use 'znc --makeconf' as user znc to generate your first config'
+}
+
+# arg 1:  the new package version
+# arg 2:  the old package version
+post_upgrade() {
+  if (( "$(vercmp $2 1.0-4)" < 0 )); then
+usermod -d /var/lib/znc znc 2>/dev/null && echo '==> znc home directory 
has moved to /var/lib/znc'
+  fi
+  :
+}
+
+# vim:set ts=2 sw=2 ft=sh et:

Copied: znc/repos/community-staging-x86_64/znc.sysusers (from rev 1054176, 
znc/trunk/znc.sysusers)
===
--- community-staging-x86_64/znc.sysusers   (rev 0)
+++ community-staging-x86_64/znc.sysusers   2021-11-22 01:51:21 UTC (rev 
1054177)
@@ -0,0 +1 @@
+u znc - - /var/lib/znc

Copied: znc/repos/community-staging-x86_64/znc.tmpfiles (from rev 1054176, 
znc/trunk/znc.tmpfiles)
===
--- community-staging-x86_64/znc.tmpfiles   (rev 0)
+++ community-staging-x86_64/znc.tmpfiles   2021-11-22 01:51:21 UTC (rev 
1054177)
@@ -0,0 +1 @@
+d /var/lib/znc 0750 znc znc -



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

2021-11-21 Thread Evangelos Foutras via arch-commits
Date: Monday, November 22, 2021 @ 01:51:15
  Author: foutrelis
Revision: 1054176

upgpkg: znc 1.8.2-5: icu 70.1 rebuild

Modified:
  znc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-22 01:50:05 UTC (rev 1054175)
+++ PKGBUILD2021-11-22 01:51:15 UTC (rev 1054176)
@@ -4,7 +4,7 @@
 
 pkgname=znc
 pkgver=1.8.2
-pkgrel=4
+pkgrel=5
 pkgdesc='An IRC bouncer with modules & scripts support'
 url='https://wiki.znc.in/'
 license=('GPL2')



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

2021-11-21 Thread Evangelos Foutras via arch-commits
Date: Monday, November 22, 2021 @ 01:50:00
  Author: foutrelis
Revision: 1054174

upgpkg: libmodsecurity 1:3.0.5-2: icu 70.1 rebuild

Modified:
  libmodsecurity/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-22 01:49:15 UTC (rev 1054173)
+++ PKGBUILD2021-11-22 01:50:00 UTC (rev 1054174)
@@ -2,7 +2,7 @@
 
 pkgname=libmodsecurity
 pkgver=3.0.5
-pkgrel=1
+pkgrel=2
 epoch=1
 
 pkgdesc='ModSecurity v3 library component'



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

2021-11-21 Thread Evangelos Foutras via arch-commits
Date: Monday, November 22, 2021 @ 01:50:05
  Author: foutrelis
Revision: 1054175

archrelease: copy trunk to community-staging-x86_64

Added:
  libmodsecurity/repos/community-staging-x86_64/
  libmodsecurity/repos/community-staging-x86_64/PKGBUILD
(from rev 1054174, libmodsecurity/trunk/PKGBUILD)

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

Copied: libmodsecurity/repos/community-staging-x86_64/PKGBUILD (from rev 
1054174, libmodsecurity/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-11-22 01:50:05 UTC (rev 1054175)
@@ -0,0 +1,31 @@
+# Maintainer: Massimiliano Torromeo 
+
+pkgname=libmodsecurity
+pkgver=3.0.5
+pkgrel=2
+epoch=1
+
+pkgdesc='ModSecurity v3 library component'
+arch=('x86_64')
+depends=('yajl' 'curl' 'libxml2' 'pcre' 'geoip' 'libmaxminddb' 'ssdeep' 
'luajit')
+makedepends=('doxygen')
+url="https://github.com/SpiderLabs/ModSecurity/tree/v3/master";
+license=('APACHE')
+source=("https://github.com/SpiderLabs/ModSecurity/releases/download/v$pkgver/modsecurity-v$pkgver.tar.gz"{,.asc})
+sha256sums=('751bf95a7a8d39c440d0c26ec1f73961550ca2eb2ac9e2e7a56dce2dd7b959e9'
+'SKIP')
+validpgpkeys=('190EFACCA1E9FA466A8ECD9CE6DFB08CE8B11277') # Felipe Zimmerle da 
Nobrega Costa 
+
+build() {
+   cd "$srcdir"/modsecurity-v$pkgver
+   ./build.sh
+   ./configure \
+   --prefix=/usr \
+   --disable-examples
+   make
+}
+
+package() {
+   cd "$srcdir"/modsecurity-v$pkgver
+   make DESTDIR="$pkgdir" install
+}



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

2021-11-21 Thread Christian Rebischke via arch-commits
Date: Monday, November 22, 2021 @ 01:49:15
  Author: shibumi
Revision: 1054173

archrelease: copy trunk to community-x86_64

Added:
  hugo/repos/community-x86_64/PKGBUILD
(from rev 1054172, hugo/trunk/PKGBUILD)
Deleted:
  hugo/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-11-22 01:49:10 UTC (rev 1054172)
+++ PKGBUILD2021-11-22 01:49:15 UTC (rev 1054173)
@@ -1,44 +0,0 @@
-# Maintainer: Jaroslav Lichtblau 
-# Maintainer: Christian Rebischke 
-# Contributor: fordprefect
-# Contributor: Jonathon Fernyhough 
-# Contributor: Brenton Horne
-
-pkgname=hugo
-pkgver=0.89.3
-pkgrel=1
-pkgdesc="Fast and Flexible Static Site Generator in Go"
-arch=('x86_64')
-url="https://gohugo.io/";
-license=('Apache')
-depends=('glibc')
-makedepends=('go' 'git')
-optdepends=('python-pygments: syntax-highlight code snippets'
-'python-docutils: reStructuredText support')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/gohugoio/${pkgname}/archive/v${pkgver}.tar.gz)
-sha512sums=('6270240e4681dfef245da4102fdcb660cd9a54945ad2e66af89b20568a6e505fd90cee2011908d87690ebc53d1c8b95d7f19630f84eefa4565e7577ce7835cf7')
-
-build() {
-  cd "${srcdir}"/${pkgname}-${pkgver}
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  export CGO_LDFLAGS="${LDFLAGS}"
-  export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
-  go build -tags extended
-
-  ./hugo gen man
-  ./hugo gen autocomplete --type bash --completionfile 
${pkgname}.bash-completion
-  ./hugo gen autocomplete --type zsh --completionfile ${pkgname}.zsh
-}
-
-package() {
-  cd "${srcdir}"/${pkgname}-${pkgver}
-  install -Dm755 "${pkgname}" "${pkgdir}"/usr/bin/${pkgname}
-  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-
-  install -Dm644 "${srcdir}"/${pkgname}-${pkgver}/man/*.1  -t 
"${pkgdir}"/usr/share/man/man1/
-  
-  install -Dm644 ${pkgname}.bash-completion 
"${pkgdir}"/usr/share/bash-completion/completions/${pkgname}
-  install -Dm644 ${pkgname}.zsh 
"${pkgdir}"/usr/share/zsh/site-functions/_${pkgname}
-}

Copied: hugo/repos/community-x86_64/PKGBUILD (from rev 1054172, 
hugo/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-11-22 01:49:15 UTC (rev 1054173)
@@ -0,0 +1,44 @@
+# Maintainer: Jaroslav Lichtblau 
+# Maintainer: Christian Rebischke 
+# Contributor: fordprefect
+# Contributor: Jonathon Fernyhough 
+# Contributor: Brenton Horne
+
+pkgname=hugo
+pkgver=0.89.4
+pkgrel=1
+pkgdesc="Fast and Flexible Static Site Generator in Go"
+arch=('x86_64')
+url="https://gohugo.io/";
+license=('Apache')
+depends=('glibc')
+makedepends=('go' 'git')
+optdepends=('python-pygments: syntax-highlight code snippets'
+'python-docutils: reStructuredText support')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/gohugoio/${pkgname}/archive/v${pkgver}.tar.gz)
+sha512sums=('71b868eb434d841aee9c4cb43d94cb99eaf019c9dfcb1e35e6790426c2d52680d5de85f438b7b13fea3cb98e129070d3861c1f5e77929afc078dee0d8487a509')
+
+build() {
+  cd "${srcdir}"/${pkgname}-${pkgver}
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
+  go build -tags extended
+
+  ./hugo gen man
+  ./hugo gen autocomplete --type bash --completionfile 
${pkgname}.bash-completion
+  ./hugo gen autocomplete --type zsh --completionfile ${pkgname}.zsh
+}
+
+package() {
+  cd "${srcdir}"/${pkgname}-${pkgver}
+  install -Dm755 "${pkgname}" "${pkgdir}"/usr/bin/${pkgname}
+  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+
+  install -Dm644 "${srcdir}"/${pkgname}-${pkgver}/man/*.1  -t 
"${pkgdir}"/usr/share/man/man1/
+  
+  install -Dm644 ${pkgname}.bash-completion 
"${pkgdir}"/usr/share/bash-completion/completions/${pkgname}
+  install -Dm644 ${pkgname}.zsh 
"${pkgdir}"/usr/share/zsh/site-functions/_${pkgname}
+}



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

2021-11-21 Thread Christian Rebischke via arch-commits
Date: Monday, November 22, 2021 @ 01:49:10
  Author: shibumi
Revision: 1054172

upgpkg: hugo 0.89.4-1

Modified:
  hugo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-22 01:48:00 UTC (rev 1054171)
+++ PKGBUILD2021-11-22 01:49:10 UTC (rev 1054172)
@@ -5,7 +5,7 @@
 # Contributor: Brenton Horne
 
 pkgname=hugo
-pkgver=0.89.3
+pkgver=0.89.4
 pkgrel=1
 pkgdesc="Fast and Flexible Static Site Generator in Go"
 arch=('x86_64')
@@ -16,7 +16,7 @@
 optdepends=('python-pygments: syntax-highlight code snippets'
 'python-docutils: reStructuredText support')
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/gohugoio/${pkgname}/archive/v${pkgver}.tar.gz)
-sha512sums=('6270240e4681dfef245da4102fdcb660cd9a54945ad2e66af89b20568a6e505fd90cee2011908d87690ebc53d1c8b95d7f19630f84eefa4565e7577ce7835cf7')
+sha512sums=('71b868eb434d841aee9c4cb43d94cb99eaf019c9dfcb1e35e6790426c2d52680d5de85f438b7b13fea3cb98e129070d3861c1f5e77929afc078dee0d8487a509')
 
 build() {
   cd "${srcdir}"/${pkgname}-${pkgver}



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

2021-11-21 Thread Evangelos Foutras via arch-commits
Date: Monday, November 22, 2021 @ 01:48:00
  Author: foutrelis
Revision: 1054171

archrelease: copy trunk to community-staging-x86_64

Added:
  xalan-c/repos/community-staging-x86_64/
  xalan-c/repos/community-staging-x86_64/PKGBUILD
(from rev 1054170, xalan-c/trunk/PKGBUILD)

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

Copied: xalan-c/repos/community-staging-x86_64/PKGBUILD (from rev 1054170, 
xalan-c/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-11-22 01:48:00 UTC (rev 1054171)
@@ -0,0 +1,35 @@
+# Maintainer: Roman Kyrylych 
+# Contributor: William Rea 
+
+pkgname=xalan-c
+pkgver=1.12
+pkgrel=4
+epoch=1
+pkgdesc="A XSLT processor for transforming XML documents"
+arch=('x86_64')
+url="https://xalan.apache.org/";
+license=('APACHE')
+makedepends=('cmake')
+depends=('xerces-c')
+provides=('libxalan-c.so' 'libxalanMsg.so')
+validpgpkeys=('F33D281D470AB4436756147C07B3C8BC4083E800') # Roger Leigh 

+source=("https://downloads.apache.org/xalan/xalan-c/sources/xalan_c-$pkgver.tar.gz"{,.asc})
+sha256sums=('ee7d4b0b08c5676f5e586c7154d94a5b32b299ac3cbb946e24c4375a25552da7'
+'SKIP')
+
+build() {
+  mkdir build
+  cd build
+
+  cmake \
+"../xalan_c-$pkgver" \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd build
+
+  make DESTDIR="$pkgdir" install
+}



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

2021-11-21 Thread Evangelos Foutras via arch-commits
Date: Monday, November 22, 2021 @ 01:47:56
  Author: foutrelis
Revision: 1054170

upgpkg: xalan-c 1:1.12-4: icu 70.1 rebuild

Modified:
  xalan-c/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-22 01:47:39 UTC (rev 1054169)
+++ PKGBUILD2021-11-22 01:47:56 UTC (rev 1054170)
@@ -3,7 +3,7 @@
 
 pkgname=xalan-c
 pkgver=1.12
-pkgrel=3
+pkgrel=4
 epoch=1
 pkgdesc="A XSLT processor for transforming XML documents"
 arch=('x86_64')



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

2021-11-21 Thread Felix Yan via arch-commits
Date: Monday, November 22, 2021 @ 01:47:39
  Author: felixonmars
Revision: 1054169

archrelease: copy trunk to multilib-staging-x86_64

Added:
  lib32-libxml2/repos/multilib-staging-x86_64/
  lib32-libxml2/repos/multilib-staging-x86_64/PKGBUILD
(from rev 1054168, lib32-libxml2/trunk/PKGBUILD)

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

Copied: lib32-libxml2/repos/multilib-staging-x86_64/PKGBUILD (from rev 1054168, 
lib32-libxml2/trunk/PKGBUILD)
===
--- multilib-staging-x86_64/PKGBUILD(rev 0)
+++ multilib-staging-x86_64/PKGBUILD2021-11-22 01:47:39 UTC (rev 1054169)
@@ -0,0 +1,66 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Jan de Groot 
+# Contributor: Tom Gundersen 
+# Contributor: John Proctor 
+
+_pkgbasename=libxml2
+pkgname=lib32-$_pkgbasename
+pkgver=2.9.12
+pkgrel=2
+pkgdesc='XML parsing library, version 2 (32-bit)'
+url='http://www.xmlsoft.org/'
+arch=(x86_64)
+license=(MIT)
+depends=(lib32-zlib lib32-readline lib32-ncurses lib32-xz lib32-icu libxml2)
+makedepends=(git)
+_commit=b48e77cf4f6fa0792c5f4b639707a2b0675e461b  # tags/v2.9.12^0
+source=("git+https://gitlab.gnome.org/GNOME/libxml2.git#commit=$_commit";)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd ${_pkgbasename}
+  git describe --always --tags | sed 
's/-rc/rc/;s/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
+}
+
+prepare() {
+  cd ${_pkgbasename}
+
+  # Work around lxml API abuse
+  git cherry-pick -n 85b1792e37b131e7a51af98a37f92472e8de5f3f
+  # Fix regression in xmlNodeDumpOutputInternal
+  git cherry-pick -n 13ad8736d294536da4cbcd70a96b0a2fbf47070c
+  # Fix XPath recursion limit
+  git cherry-pick -n 3e1aad4fe584747fd7d17cc7b2863a78e2d21a77
+  # Fix whitespace when serializing empty HTML documents
+  git cherry-pick -n 92d9ab4c28842a09ca2b76d3ff2f933e01b6cd6f
+
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  export CC="gcc -m32"
+  export CXX="g++ -m32"
+  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
+
+  cd ${_pkgbasename}
+
+  ./configure \
+--prefix=/usr \
+--with-threads \
+--with-history \
+--with-icu \
+--libdir=/usr/lib32
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0 /g' libtool
+  make
+}
+
+package() {
+  cd ${_pkgbasename}
+  make DESTDIR="${pkgdir}" install
+
+  rm -rf "${pkgdir}"/usr/{include,share,bin} "$pkgdir/usr/lib32/xml2Conf.sh"
+  mkdir -p "$pkgdir/usr/share/licenses"
+  ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname"
+}
+
+# vim: ts=2 sw=2 et:



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

2021-11-21 Thread Felix Yan via arch-commits
Date: Monday, November 22, 2021 @ 01:47:32
  Author: felixonmars
Revision: 1054168

upgpkg: lib32-libxml2 2.9.12-2: icu 70.1 rebuild

Modified:
  lib32-libxml2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-22 01:46:38 UTC (rev 1054167)
+++ PKGBUILD2021-11-22 01:47:32 UTC (rev 1054168)
@@ -6,7 +6,7 @@
 _pkgbasename=libxml2
 pkgname=lib32-$_pkgbasename
 pkgver=2.9.12
-pkgrel=1
+pkgrel=2
 pkgdesc='XML parsing library, version 2 (32-bit)'
 url='http://www.xmlsoft.org/'
 arch=(x86_64)



[arch-commits] Commit in electron10/repos (16 files)

2021-11-21 Thread Evangelos Foutras via arch-commits
Date: Monday, November 22, 2021 @ 01:46:38
  Author: foutrelis
Revision: 1054167

archrelease: copy trunk to community-staging-x86_64

Added:
  electron10/repos/community-staging-x86_64/
  electron10/repos/community-staging-x86_64/PKGBUILD
(from rev 1054166, electron10/trunk/PKGBUILD)
  electron10/repos/community-staging-x86_64/chromium-harfbuzz-3.0.0.patch
(from rev 1054166, electron10/trunk/chromium-harfbuzz-3.0.0.patch)
  electron10/repos/community-staging-x86_64/chromium-include-limits.patch
(from rev 1054166, electron10/trunk/chromium-include-limits.patch)
  electron10/repos/community-staging-x86_64/chromium-skia-harmony.patch
(from rev 1054166, electron10/trunk/chromium-skia-harmony.patch)
  electron10/repos/community-staging-x86_64/default_app-icon.patch
(from rev 1054166, electron10/trunk/default_app-icon.patch)
  
electron10/repos/community-staging-x86_64/disk_data_allocator-Metadata-constructor.patch
(from rev 1054166, 
electron10/trunk/disk_data_allocator-Metadata-constructor.patch)
  electron10/repos/community-staging-x86_64/electron10.desktop
(from rev 1054166, electron10/trunk/electron10.desktop)
  electron10/repos/community-staging-x86_64/icu68.patch
(from rev 1054166, electron10/trunk/icu68.patch)
  
electron10/repos/community-staging-x86_64/media-Set-allocation-limit-compatible-with-FFmpeg-4.3.patch
(from rev 1054166, 
electron10/trunk/media-Set-allocation-limit-compatible-with-FFmpeg-4.3.patch)
  electron10/repos/community-staging-x86_64/qt5-webengine-glibc-2.33.patch
(from rev 1054166, electron10/trunk/qt5-webengine-glibc-2.33.patch)
  electron10/repos/community-staging-x86_64/skia-harfbuzz-3.0.0.patch
(from rev 1054166, electron10/trunk/skia-harfbuzz-3.0.0.patch)
  
electron10/repos/community-staging-x86_64/sql-make-VirtualCursor-standard-layout-type.patch
(from rev 1054166, 
electron10/trunk/sql-make-VirtualCursor-standard-layout-type.patch)
  electron10/repos/community-staging-x86_64/use-system-libraries-in-node.patch
(from rev 1054166, electron10/trunk/use-system-libraries-in-node.patch)
  
electron10/repos/community-staging-x86_64/v8-call-new-ListFormatter-createInstance.patch
(from rev 1054166, 
electron10/trunk/v8-call-new-ListFormatter-createInstance.patch)
  electron10/repos/community-staging-x86_64/v8-icu68.patch
(from rev 1054166, electron10/trunk/v8-icu68.patch)

-+
 PKGBUILD|  223 +
 chromium-harfbuzz-3.0.0.patch   |   20 
 chromium-include-limits.patch   |   31 
 chromium-skia-harmony.patch |   14 
 default_app-icon.patch  |   21 
 disk_data_allocator-Metadata-constructor.patch  |   18 
 electron10.desktop  |7 
 icu68.patch |  421 ++
 media-Set-allocation-limit-compatible-with-FFmpeg-4.3.patch |   43 +
 qt5-webengine-glibc-2.33.patch  |  144 +++
 skia-harfbuzz-3.0.0.patch   |  100 ++
 sql-make-VirtualCursor-standard-layout-type.patch   |  238 +
 use-system-libraries-in-node.patch  |   57 +
 v8-call-new-ListFormatter-createInstance.patch  |   95 ++
 v8-icu68.patch  |  192 
 15 files changed, 1624 insertions(+)

Copied: electron10/repos/community-staging-x86_64/PKGBUILD (from rev 1054166, 
electron10/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-11-22 01:46:38 UTC (rev 1054167)
@@ -0,0 +1,223 @@
+# Maintainer: Nicola Squartini 
+
+pkgname=electron10
+pkgver=10.4.7
+_commit=9fc28e2296b99a970cc58cdcbf17b0f2a743617a
+_chromiumver=85.0.4183.121
+pkgrel=3
+pkgdesc='Build cross platform desktop apps with web technologies'
+arch=('x86_64')
+url='https://electronjs.org/'
+license=('MIT' 'custom')
+depends=('c-ares' 'ffmpeg' 'gtk3' 'http-parser' 'libevent' 'libnghttp2'
+ 'libxslt' 'minizip' 'nss' 're2' 'snappy')
+makedepends=('clang' 'git' 'gn-m85' 'gperf' 'harfbuzz-icu' 
'java-runtime-headless'
+ 'jsoncpp' 'libnotify' 'lld' 'llvm' 'ninja' 'npm' 'pciutils' 'yarn'
+ 'python2' 'wget')
+optdepends=('kde-cli-tools: file deletion support (kioclient5)'
+'libappindicator-gtk3: StatusNotifierItem support'
+'trash-cli: file deletion support (trash-put)'
+"xdg-utils: open URLs with desktop's default (xdg-email, 
xdg-open)")
+source=('git+https://github.com/electron/electron.git'
+'git+https://chromium.googlesource.com/chromium/tools/depot_tools.git'
+"${pkgname}.desktop"
+'default_app-icon.p

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

2021-11-21 Thread Evangelos Foutras via arch-commits
Date: Monday, November 22, 2021 @ 01:46:23
  Author: foutrelis
Revision: 1054166

upgpkg: electron10 10.4.7-3: icu 70.1 rebuild

Modified:
  electron10/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-22 01:44:43 UTC (rev 1054165)
+++ PKGBUILD2021-11-22 01:46:23 UTC (rev 1054166)
@@ -4,7 +4,7 @@
 pkgver=10.4.7
 _commit=9fc28e2296b99a970cc58cdcbf17b0f2a743617a
 _chromiumver=85.0.4183.121
-pkgrel=2
+pkgrel=3
 pkgdesc='Build cross platform desktop apps with web technologies'
 arch=('x86_64')
 url='https://electronjs.org/'



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

2021-11-21 Thread Felix Yan via arch-commits
Date: Monday, November 22, 2021 @ 01:44:43
  Author: felixonmars
Revision: 1054165

archrelease: copy trunk to community-staging-x86_64

Added:
  pandoc-crossref/repos/community-staging-x86_64/
  pandoc-crossref/repos/community-staging-x86_64/PKGBUILD
(from rev 1054164, pandoc-crossref/trunk/PKGBUILD)

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

Copied: pandoc-crossref/repos/community-staging-x86_64/PKGBUILD (from rev 
1054164, pandoc-crossref/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-11-22 01:44:43 UTC (rev 1054165)
@@ -0,0 +1,46 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=pandoc-crossref
+pkgver=0.3.12.0
+pkgrel=76
+pkgdesc="Pandoc filter for cross-references"
+url="https://hackage.haskell.org/package/${pkgname}";
+license=("GPL2")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-data-default' 'haskell-gitrev' 'haskell-microlens'
+ 'haskell-microlens-mtl' 'haskell-microlens-th' 'haskell-open-browser'
+ 'haskell-optparse-applicative' 'pandoc' 'haskell-pandoc-types' 
'haskell-roman-numerals'
+ 'haskell-syb' 'haskell-utility-ht')
+makedepends=('ghc' 'haskell-hspec')
+conflicts=('haskell-pandoc-crossref')
+replaces=('haskell-pandoc-crossref')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/lierdakil/pandoc-crossref/archive/v$pkgver.tar.gz";)
+sha512sums=('5e2dbd5d63d0a6b295da9efc97273d3d2c9a08f50ddda3df3f1df31b112be082233011e632c551be34043d50114f7d2373219ef68ffa1fa59a9fb4d31b9351d5')
+
+build() {
+cd $pkgname-$pkgver
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests 
--datasubdir="$pkgname" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
--ghc-option=-fllvm \
+   -f-enable_flaky_tests
+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 --show-details=direct
+}
+
+package() {
+cd $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 pandoc-crossref/trunk (PKGBUILD)

2021-11-21 Thread Felix Yan via arch-commits
Date: Monday, November 22, 2021 @ 01:44:35
  Author: felixonmars
Revision: 1054164

upgpkg: pandoc-crossref 0.3.12.0-76: icu 70.1 rebuild

Modified:
  pandoc-crossref/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-22 01:42:08 UTC (rev 1054163)
+++ PKGBUILD2021-11-22 01:44:35 UTC (rev 1054164)
@@ -3,7 +3,7 @@
 
 pkgname=pandoc-crossref
 pkgver=0.3.12.0
-pkgrel=75
+pkgrel=76
 pkgdesc="Pandoc filter for cross-references"
 url="https://hackage.haskell.org/package/${pkgname}";
 license=("GPL2")



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

2021-11-21 Thread Christian Rebischke via arch-commits
Date: Monday, November 22, 2021 @ 01:42:08
  Author: shibumi
Revision: 1054163

archrelease: copy trunk to community-x86_64

Added:
  operator-sdk/repos/community-x86_64/PKGBUILD
(from rev 1054162, operator-sdk/trunk/PKGBUILD)
Deleted:
  operator-sdk/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-11-22 01:42:02 UTC (rev 1054162)
+++ PKGBUILD2021-11-22 01:42:08 UTC (rev 1054163)
@@ -1,44 +0,0 @@
-# Maintainer: Christian Rebischke 
-
-pkgname=operator-sdk
-pkgver=1.15.0
-pkgrel=1
-pkgdesc="SDK for building Kubernetes applications"
-arch=('x86_64')
-url="https://github.com/operator-framework/operator-sdk";
-license=('Apache')
-makedepends=('go')
-depends=('glibc')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/operator-framework/operator-sdk/archive/v${pkgver}.tar.gz";)
-sha512sums=('43626938efa3c03eb6d798f4f6cc3deb59c8f7c62e60b88e63a2f7db98ce832889029898d9f007ee6560ae321c8f0e9a604ab08e09789c4e39492f222dcdf8f4')
-b2sums=('c72b554eaa7e163833be9b068f262a51302842d4eac3c99acbac83ec4565a6938ae4de3481bdddaf7e464425025f6605ff61db6dee985bdac40580a308e4dc2b')
-
-prepare() {
-  export GOPATH="${srcdir}"
-  mkdir -p src/github.com/operator-framework "${GOPATH}/bin"
-  mv "${pkgname}-${pkgver}" "src/github.com/operator-framework/${pkgname}"
-  export PACKAGE_ROOT="${GOPATH}/src/github.com/operator-framework/${pkgname}"
-}
-
-build() {
-  cd "${PACKAGE_ROOT}"
-  export CGO_ENABLED=1
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  export CGO_LDFLAGS="${LDFLAGS}"
-  export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
-  go build -ldflags "-linkmode=external" -v -o . 
./cmd/{operator-sdk,ansible-operator,helm-operator}
-}
-
-#check() {
-#  cd "${PACKAGE_ROOT}"
-#  go test -v ./...
-#}
-
-package() {
-  cd "${PACKAGE_ROOT}"
-  install -Dsm755 ./operator-sdk "${pkgdir}/usr/bin/operator-sdk"
-  install -Dsm755 ./ansible-operator "${pkgdir}/usr/bin/ansible-operator"
-  install -Dsm755 ./helm-operator "${pkgdir}/usr/bin/helm-operator"
-}

Copied: operator-sdk/repos/community-x86_64/PKGBUILD (from rev 1054162, 
operator-sdk/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-11-22 01:42:08 UTC (rev 1054163)
@@ -0,0 +1,50 @@
+# Maintainer: Christian Rebischke 
+
+pkgname=operator-sdk
+pkgver=1.15.0
+pkgrel=2
+pkgdesc="SDK for building Kubernetes applications"
+arch=('x86_64')
+url="https://github.com/operator-framework/operator-sdk";
+license=('Apache')
+makedepends=('go')
+depends=('glibc')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/operator-framework/operator-sdk/archive/v${pkgver}.tar.gz";)
+sha512sums=('43626938efa3c03eb6d798f4f6cc3deb59c8f7c62e60b88e63a2f7db98ce832889029898d9f007ee6560ae321c8f0e9a604ab08e09789c4e39492f222dcdf8f4')
+b2sums=('c72b554eaa7e163833be9b068f262a51302842d4eac3c99acbac83ec4565a6938ae4de3481bdddaf7e464425025f6605ff61db6dee985bdac40580a308e4dc2b')
+
+prepare() {
+  export GOPATH="${srcdir}"
+  mkdir -p src/github.com/operator-framework "${GOPATH}/bin"
+  mv "${pkgname}-${pkgver}" "src/github.com/operator-framework/${pkgname}"
+  export PACKAGE_ROOT="${GOPATH}/src/github.com/operator-framework/${pkgname}"
+}
+
+build() {
+  cd "${PACKAGE_ROOT}"
+  export CGO_ENABLED=1
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
+  go build -ldflags "-linkmode=external" -v -o . 
./cmd/{operator-sdk,ansible-operator,helm-operator}
+}
+
+#check() {
+#  cd "${PACKAGE_ROOT}"
+#  go test -v ./...
+#}
+
+package() {
+  cd "${PACKAGE_ROOT}"
+  install -Dsm755 ./operator-sdk "${pkgdir}/usr/bin/operator-sdk"
+  ./operator-sdk completion bash | install -Dm644 /dev/stdin 
"$pkgdir/usr/share/bash-completion/completions/operator-sdk"
+  ./operator-sdk completion zsh | install -Dm644 /dev/stdin 
"$pkgdir/usr/share/zsh/site-functions/_operator-sdk"
+  install -Dsm755 ./ansible-operator "${pkgdir}/usr/bin/ansible-operator"
+  ./ansible-operator completion bash | install -Dm644 /dev/stdin 
"$pkgdir/usr/share/bash-completion/completions/ansible-operator"
+  ./ansible-operator completion zsh | install -Dm644 /dev/stdin 
"$pkgdir/usr/share/zsh/site-functions/_ansible-operator"
+  install -Dsm755 ./helm-operator "${pkgdir}/usr/bin/helm-operator"
+  ./helm-operator completion bash | install -Dm644 /dev/stdin 
"$pkgdir/usr/share/bash-completion/completions/helm-operator"
+  ./helm-operator completion zsh | install -Dm644 /dev/stdin 
"$pkgdir/usr/share/zsh/site-functions/_helm-operator"
+}



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

2021-11-21 Thread Christian Rebischke via arch-commits
Date: Monday, November 22, 2021 @ 01:42:02
  Author: shibumi
Revision: 1054162

upgpkg: operator-sdk 1.15.0-2

Modified:
  operator-sdk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-22 01:38:32 UTC (rev 1054161)
+++ PKGBUILD2021-11-22 01:42:02 UTC (rev 1054162)
@@ -2,7 +2,7 @@
 
 pkgname=operator-sdk
 pkgver=1.15.0
-pkgrel=1
+pkgrel=2
 pkgdesc="SDK for building Kubernetes applications"
 arch=('x86_64')
 url="https://github.com/operator-framework/operator-sdk";
@@ -39,6 +39,12 @@
 package() {
   cd "${PACKAGE_ROOT}"
   install -Dsm755 ./operator-sdk "${pkgdir}/usr/bin/operator-sdk"
+  ./operator-sdk completion bash | install -Dm644 /dev/stdin 
"$pkgdir/usr/share/bash-completion/completions/operator-sdk"
+  ./operator-sdk completion zsh | install -Dm644 /dev/stdin 
"$pkgdir/usr/share/zsh/site-functions/_operator-sdk"
   install -Dsm755 ./ansible-operator "${pkgdir}/usr/bin/ansible-operator"
+  ./ansible-operator completion bash | install -Dm644 /dev/stdin 
"$pkgdir/usr/share/bash-completion/completions/ansible-operator"
+  ./ansible-operator completion zsh | install -Dm644 /dev/stdin 
"$pkgdir/usr/share/zsh/site-functions/_ansible-operator"
   install -Dsm755 ./helm-operator "${pkgdir}/usr/bin/helm-operator"
+  ./helm-operator completion bash | install -Dm644 /dev/stdin 
"$pkgdir/usr/share/bash-completion/completions/helm-operator"
+  ./helm-operator completion zsh | install -Dm644 /dev/stdin 
"$pkgdir/usr/share/zsh/site-functions/_helm-operator"
 }



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

2021-11-21 Thread Evangelos Foutras via arch-commits
Date: Monday, November 22, 2021 @ 01:39:35
  Author: foutrelis
Revision: 428887

archrelease: copy trunk to staging-x86_64

Added:
  chromium/repos/staging-x86_64/
  chromium/repos/staging-x86_64/PKGBUILD
(from rev 428886, chromium/trunk/PKGBUILD)
  chromium/repos/staging-x86_64/chromium-93-ffmpeg-4.4.patch
(from rev 428886, chromium/trunk/chromium-93-ffmpeg-4.4.patch)
  chromium/repos/staging-x86_64/chromium-94-ffmpeg-roll.patch
(from rev 428886, chromium/trunk/chromium-94-ffmpeg-roll.patch)
  
chromium/repos/staging-x86_64/sql-make-VirtualCursor-standard-layout-type.patch
(from rev 428886, 
chromium/trunk/sql-make-VirtualCursor-standard-layout-type.patch)
  
chromium/repos/staging-x86_64/unbundle-fix-visibility-of-build-config-freetype.patch
(from rev 428886, 
chromium/trunk/unbundle-fix-visibility-of-build-config-freetype.patch)
  chromium/repos/staging-x86_64/unexpire-accelerated-video-decode-flag.patch
(from rev 428886, 
chromium/trunk/unexpire-accelerated-video-decode-flag.patch)
  chromium/repos/staging-x86_64/use-oauth2-client-switches-as-default.patch
(from rev 428886, 
chromium/trunk/use-oauth2-client-switches-as-default.patch)

+
 PKGBUILD   |  264 +++
 chromium-93-ffmpeg-4.4.patch   |   36 ++
 chromium-94-ffmpeg-roll.patch  |   49 ++
 sql-make-VirtualCursor-standard-layout-type.patch  |  238 +
 unbundle-fix-visibility-of-build-config-freetype.patch |   31 +
 unexpire-accelerated-video-decode-flag.patch   |   11 
 use-oauth2-client-switches-as-default.patch|   17 
 7 files changed, 646 insertions(+)

Copied: chromium/repos/staging-x86_64/PKGBUILD (from rev 428886, 
chromium/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2021-11-22 01:39:35 UTC (rev 428887)
@@ -0,0 +1,264 @@
+# Maintainer: Evangelos Foutras 
+# Contributor: Pierre Schmitz 
+# Contributor: Jan "heftig" Steffens 
+# Contributor: Daniel J Griffiths 
+
+pkgname=chromium
+pkgver=96.0.4664.45
+pkgrel=2
+_launcher_ver=8
+_gcc_patchset=4
+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' 'libva'
+ 'desktop-file-utils' 'hicolor-icon-theme')
+makedepends=('python' 'gn' 'ninja' 'clang' 'lld' 'gperf' 'nodejs' 'pipewire'
+ 'java-runtime-headless')
+optdepends=('pipewire: WebRTC desktop sharing under Wayland'
+'kdialog: support for native dialogs in Plasma'
+'org.freedesktop.secrets: password storage backend on GNOME / Xfce'
+'kwallet: support for storing passwords in KWallet on Plasma')
+source=(https://commondatastorage.googleapis.com/chromium-browser-official/$pkgname-$pkgver.tar.xz
+
https://github.com/foutrelis/chromium-launcher/archive/v$_launcher_ver/chromium-launcher-$_launcher_ver.tar.gz
+
https://github.com/stha09/chromium-patches/releases/download/chromium-${pkgver%%.*}-patchset-$_gcc_patchset/chromium-${pkgver%%.*}-patchset-$_gcc_patchset.tar.xz
+unbundle-fix-visibility-of-build-config-freetype.patch
+sql-make-VirtualCursor-standard-layout-type.patch
+chromium-93-ffmpeg-4.4.patch
+chromium-94-ffmpeg-roll.patch
+unexpire-accelerated-video-decode-flag.patch
+use-oauth2-client-switches-as-default.patch)
+sha256sums=('488c6ad983ebf7781cb4d704f70496e8aa2165611b46656d7aa62f269c760407'
+'213e50f48b67feb4441078d50b0fd431df34323be15be97c55302d3fdac4483a'
+'090af7eab39aade15a1786273f2497d6b4abfaef24279fbf97ce0dd1c38c69aa'
+'d0b17162211dd49e3a58c16d1697e7d8c322dcfd3b7890f0c2f920b711f52293'
+'dd317f85e5abfdcfc89c6f23f4c8edbcdebdd5e083dcec770e5da49ee647d150'
+'1a9e074f417f8ffd78bcd6874d8e2e74a239905bf662f76a7755fa40dc476b57'
+'56acb6e743d2ab1ed9f3eb01700ade02521769978d03ac43226dec94659b3ace'
+'2a97b26c3d6821b15ef4ef1369905c6fa3e9c8da4877eb9af4361452a425290b'
+'e393174d7695d0bafed69e868c5fbfecf07aa6969f3b64596d0bae8b067e1711')
+
+# 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_l

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

2021-11-21 Thread Evangelos Foutras via arch-commits
Date: Monday, November 22, 2021 @ 01:39:24
  Author: foutrelis
Revision: 428886

upgpkg: chromium 96.0.4664.45-2: icu 70.1 rebuild

Modified:
  chromium/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-22 01:39:11 UTC (rev 428885)
+++ PKGBUILD2021-11-22 01:39:24 UTC (rev 428886)
@@ -5,7 +5,7 @@
 
 pkgname=chromium
 pkgver=96.0.4664.45
-pkgrel=1
+pkgrel=2
 _launcher_ver=8
 _gcc_patchset=4
 pkgdesc="A web browser built for speed, simplicity, and security"



[arch-commits] Commit in qt6-5compat/repos (staging-x86_64 staging-x86_64/PKGBUILD)

2021-11-21 Thread Felix Yan via arch-commits
Date: Monday, November 22, 2021 @ 01:39:11
  Author: felixonmars
Revision: 428885

archrelease: copy trunk to staging-x86_64

Added:
  qt6-5compat/repos/staging-x86_64/
  qt6-5compat/repos/staging-x86_64/PKGBUILD
(from rev 428884, qt6-5compat/trunk/PKGBUILD)

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

Copied: qt6-5compat/repos/staging-x86_64/PKGBUILD (from rev 428884, 
qt6-5compat/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2021-11-22 01:39:11 UTC (rev 428885)
@@ -0,0 +1,31 @@
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt6-5compat
+_qtver=6.2.1
+pkgver=${_qtver/-/}
+pkgrel=2
+arch=(x86_64)
+url='https://www.qt.io'
+license=(GPL3 LGPL3 FDL custom)
+pkgdesc='Module that contains unsupported Qt 5 APIs'
+depends=(qt6-base)
+makedepends=(cmake ninja qt6-declarative)
+optdepends=('qt6-declarative: for QtGraphicalEffects')
+groups=(qt6)
+_pkgfn="${pkgname/6-/}-everywhere-src-$_qtver"
+source=(https://download.qt.io/official_releases/qt/${pkgver%.*}/$_qtver/submodules/$_pkgfn.tar.xz)
+sha256sums=('3865c031450a3c2616de1e20104ca9470ac5447adf51faa918f8b01a2c425de7')
+
+build() {
+  cmake -B build -S $_pkgfn -G Ninja
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt6-base "$pkgdir"/usr/share/licenses/$pkgname
+}



[arch-commits] Commit in qt6-5compat/trunk (PKGBUILD)

2021-11-21 Thread Felix Yan via arch-commits
Date: Monday, November 22, 2021 @ 01:38:57
  Author: felixonmars
Revision: 428884

upgpkg: qt6-5compat 6.2.1-2: openldap 2.6 rebuild

Modified:
  qt6-5compat/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-22 01:38:34 UTC (rev 428883)
+++ PKGBUILD2021-11-22 01:38:57 UTC (rev 428884)
@@ -5,7 +5,7 @@
 pkgname=qt6-5compat
 _qtver=6.2.1
 pkgver=${_qtver/-/}
-pkgrel=1
+pkgrel=2
 arch=(x86_64)
 url='https://www.qt.io'
 license=(GPL3 LGPL3 FDL custom)



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

2021-11-21 Thread Felix Yan via arch-commits
Date: Monday, November 22, 2021 @ 01:38:32
  Author: felixonmars
Revision: 1054161

archrelease: copy trunk to community-staging-x86_64

Added:
  percona-server/repos/community-staging-x86_64/
  percona-server/repos/community-staging-x86_64/PKGBUILD
(from rev 1054160, percona-server/trunk/PKGBUILD)
  percona-server/repos/community-staging-x86_64/build-hostname.patch
(from rev 1054160, percona-server/trunk/build-hostname.patch)
  percona-server/repos/community-staging-x86_64/my.cnf
(from rev 1054160, percona-server/trunk/my.cnf)
  percona-server/repos/community-staging-x86_64/mysql-user.conf
(from rev 1054160, percona-server/trunk/mysql-user.conf)
  percona-server/repos/community-staging-x86_64/mysqlrouter-user.conf
(from rev 1054160, percona-server/trunk/mysqlrouter-user.conf)
  percona-server/repos/community-staging-x86_64/no-werror.patch
(from rev 1054160, percona-server/trunk/no-werror.patch)
  percona-server/repos/community-staging-x86_64/openldap-2.5.patch
(from rev 1054160, percona-server/trunk/openldap-2.5.patch)

---+
 PKGBUILD  |  208 
 build-hostname.patch  |   17 +++
 my.cnf|   34 +++
 mysql-user.conf   |1 
 mysqlrouter-user.conf |1 
 no-werror.patch   |   28 ++
 openldap-2.5.patch|   11 ++
 7 files changed, 300 insertions(+)

Copied: percona-server/repos/community-staging-x86_64/PKGBUILD (from rev 
1054160, percona-server/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-11-22 01:38:32 UTC (rev 1054161)
@@ -0,0 +1,208 @@
+# Maintainer: Massimiliano Torromeo 
+
+pkgbase=percona-server
+pkgname=('libperconaserverclient' 'percona-server-clients' 'percona-server')
+pkgver=8.0.26_16
+_boost_ver=1.73.0
+_pkgver=${pkgver/_/-}
+_myver=${pkgver/_rel*}
+pkgrel=3
+arch=('x86_64')
+makedepends=('cmake' 'zlib' 'lz4' 'zstd' 'libaio' 'systemd-tools' 'pam' 
'numactl' 'jemalloc' 'openssl'
+ 'rpcsvc-proto' 'doxygen' 'graphviz' 'libevent' 'protobuf') # 
'boost'
+license=('GPL')
+url="https://www.percona.com/software/mysql-database/percona-server";
+source=("https://www.percona.com/downloads/Percona-Server-${pkgver%.*_*}/Percona-Server-$_pkgver/source/tarball/percona-server-$_pkgver.tar.gz";
+
"https://boostorg.jfrog.io/artifactory/main/release/$_boost_ver/source/boost_${_boost_ver//./_}.tar.gz";
+'my.cnf'
+'mysql-user.conf'
+'mysqlrouter-user.conf'
+'openldap-2.5.patch'
+'build-hostname.patch'
+'no-werror.patch')
+sha256sums=('3db3939bd9b317dbcfc1a5638779ff87e755f62d7e6feeb3137876be8bb59d6a'
+'9995e192e68528793755692917f9eb6422f3052a53c5e13ba278a228af6c7acf'
+'b467b04d6d06152b2abc33f2a6de63fef0fc922dd5119d2ee1d07d3c1a489731'
+'5d7710fe88ec6d298175a309c0b776142397b119c468830b2865980292ed5da6'
+'4ca7ffdcb2d1716d4f31e4c7dd314e5d76e64f13fdc67c5d81c53650b793f5e0'
+'92d70b75a32517f598bbffbaf5db18b0d14be504c31f531e35c8572b330785f3'
+'1537fdbb92dd1c135c1eb9f4d10c44fd02e652db66c933d731990a1196f1397c'
+'2343a191c452b91caa458b03b0c1ef3f5afb0e7031816c68467af5c6a6ffe253')
+
+prepare() {
+   cd $pkgbase-$_pkgver
+   rm -v sql/sql_yacc.{cc,h}
+
+   patch --verbose -p1 -i "$srcdir"/openldap-2.5.patch
+   patch --verbose -p1 -i "$srcdir"/build-hostname.patch
+   patch --verbose -p1 -i "$srcdir"/no-werror.patch
+
+   sed -r -e s@/var/run/mysqlrouter@/run/mysqlrouter@ \
+  -e s@lib64/mysql@lib/mysql@ \
+  -i cmake/install_layout.cmake
+
+   for svcfile in mysqld{,@}.service.in; do
+   sed '/^PrivateTmp=/ a StateDirectory=mysql 
mysql-files\nRuntimeDirectory=mysqld' \
+   -i scripts/systemd/$svcfile
+   done
+
+   sed '/^PrivateTmp=/ a 
StateDirectory=mysqlrouter\nRuntimeDirectory=mysqlrouter' \
+   -i scripts/systemd/mysqlrouter.service.in
+}
+
+build() {
+   # rm -rf build
+   mkdir -p build
+   cd build
+
+   cmake ../$pkgbase-$_pkgver \
+   -DCMAKE_C_FLAGS_RELWITHDEBINFO="${CFLAGS} -DNDEBUG" \
+   -DCMAKE_CXX_FLAGS_RELWITHDEBINFO="${CXXFLAGS} -DNDEBUG" \
+   -Wno-dev \
+   -DCMAKE_BUILD_TYPE=RelWithDebInfo \
+   -DCMAKE_POSITION_INDEPENDENT_CODE=ON \
+   -DBUILD_CONFIG=mysql_release \
+   -DREPRODUCIBLE_BUILD=ON \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DSYSCONFDIR=/etc/mysql \
+   -DMYSQL_DATADIR=/var/lib/mysql \
+   -DMYSQL_UNIX_ADDR=/run/mysqld/mysqld.sock \
+   -DDEFAULT_CHARSET=utf8mb4 \
+   -DDEFAULT_COLLATION=utf8mb4_0900_ai_ci \
+   -DWITH_EXTRA_CHARSETS=all \
+   -DENABLED_LOC

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

2021-11-21 Thread Felix Yan via arch-commits
Date: Monday, November 22, 2021 @ 01:38:15
  Author: felixonmars
Revision: 1054160

upgpkg: percona-server 8.0.26_16-3: icu 70.1 rebuild

Modified:
  percona-server/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-22 01:35:39 UTC (rev 1054159)
+++ PKGBUILD2021-11-22 01:38:15 UTC (rev 1054160)
@@ -6,7 +6,7 @@
 _boost_ver=1.73.0
 _pkgver=${pkgver/_/-}
 _myver=${pkgver/_rel*}
-pkgrel=2
+pkgrel=3
 arch=('x86_64')
 makedepends=('cmake' 'zlib' 'lz4' 'zstd' 'libaio' 'systemd-tools' 'pam' 
'numactl' 'jemalloc' 'openssl'
  'rpcsvc-proto' 'doxygen' 'graphviz' 'libevent' 'protobuf') # 
'boost'



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

2021-11-21 Thread Felix Yan via arch-commits
Date: Monday, November 22, 2021 @ 01:37:17
  Author: felixonmars
Revision: 428882

upgpkg: thunderbird 91.3.2-2: icu 70.1 rebuild

Modified:
  thunderbird/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-22 01:11:47 UTC (rev 428881)
+++ PKGBUILD2021-11-22 01:37:17 UTC (rev 428882)
@@ -8,7 +8,7 @@
 pkgbase=thunderbird
 pkgname=(thunderbird)
 pkgver=91.3.2
-pkgrel=1
+pkgrel=2
 pkgdesc='Standalone mail and news reader from mozilla.org'
 url='https://www.mozilla.org/thunderbird/'
 arch=(x86_64)



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

2021-11-21 Thread Felix Yan via arch-commits
Date: Monday, November 22, 2021 @ 01:35:39
  Author: felixonmars
Revision: 1054159

archrelease: copy trunk to community-staging-x86_64

Added:
  scribus/repos/community-staging-x86_64/
  scribus/repos/community-staging-x86_64/PKGBUILD
(from rev 1054158, scribus/trunk/PKGBUILD)
  scribus/repos/community-staging-x86_64/harfbuzz-3.0.0.patch
(from rev 1054158, scribus/trunk/harfbuzz-3.0.0.patch)

--+
 PKGBUILD |   64 ++
 harfbuzz-3.0.0.patch |   68 +
 2 files changed, 132 insertions(+)

Copied: scribus/repos/community-staging-x86_64/PKGBUILD (from rev 1054158, 
scribus/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-11-22 01:35:39 UTC (rev 1054159)
@@ -0,0 +1,64 @@
+# Maintainer: Bruno Pagani 
+# Contributor: Gaetan Bisson 
+# Contributor: Daniel J Griffiths 
+# Contributor: Ronald van Haren 
+# Contributor: tobias 
+# Contributor: Ben 
+
+pkgname=scribus
+pkgver=1.5.7
+pkgrel=8
+pkgdesc="Desktop publishing software"
+arch=(x86_64)
+url="https://www.scribus.net/";
+license=(GPL)
+depends=(boost-libs cairo fontconfig freetype2 harfbuzz-icu
+ hunspell lcms2 libcdr libcups libfreehand libjpeg libmspub
+ libpagemaker libpng libqxp librevenge libtiff libvisio libxml2 libzmf
+ openscenegraph openssl podofo poppler python3 qt5-base zlib) 
#graphicsmagick
+makedepends=(cmake boost mesa qt5-tools)
+optdepends=('tk: scripts based on tkinter'
+'hyphen-lang: hyphenation patterns for desired languages')
+source=("https://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.xz"{,.asc}
+harfbuzz-3.0.0.patch)
+sha256sums=('318316b2cfc7a76191d3e0d3f8c2265147daea0570162028e243c292d826f8ce'
+'SKIP'
+'38f7ee8a3dafac3e677451a98a09e2c8a5e850ad20769ed58e896fa67e661024')
+validpgpkeys=(5086B8D68E70FDDF4C40045AEF7B95E7F60166DA  # Peter Linnell 

+  757F5E9B13DD648887AD50092D47C099E782504E  # The Scribus Team 
(www.scribus.net) 
+  6558BE84D27273A438A151198BEA48118AEBEE64) # Craig Bradney 

+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  patch -Np1 -i ../harfbuzz-3.0.0.patch
+}
+
+build() {
+  cmake -B build -S ${pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=None \
+-DCMAKE_SKIP_RPATH=ON \
+-DWANT_HUNSPELL=ON \
+-DWITH_BOOST=ON \
+-DWITH_PODOFO=ON #\
+# FS#59800
+#-DWANT_GRAPHICSMAGICK=ON
+  make -C build
+}
+
+package() {
+  make -C build DESTDIR="${pkgdir}" install
+
+  cd ${pkgname}-${pkgver}
+
+  install -Dm644 scribus.desktop -t "${pkgdir}"/usr/share/applications
+
+  for i in 16x16 32x32 128x128 256x256 512x512 1024x1024
+  do
+install -Dm644 resources/iconsets/artwork/icon_${i}.png 
"${pkgdir}"/usr/share/icons/hicolor/${i}/apps/scribus.png
+  done
+
+  # Use system hyphen
+  rm -rf "${pkgdir}"/usr/share/scribus/dicts/hyph
+  ln -sf /usr/share/hyphen "${pkgdir}"/usr/share/scribus/dicts/hyph
+}

Copied: scribus/repos/community-staging-x86_64/harfbuzz-3.0.0.patch (from rev 
1054158, scribus/trunk/harfbuzz-3.0.0.patch)
===
--- community-staging-x86_64/harfbuzz-3.0.0.patch   
(rev 0)
+++ community-staging-x86_64/harfbuzz-3.0.0.patch   2021-11-22 01:35:39 UTC 
(rev 1054159)
@@ -0,0 +1,68 @@
+From 1b546978bc4ea0b2a73fbe4d7cf947887e865162 Mon Sep 17 00:00:00 2001
+From: Jean Ghali 
+Date: Sat, 21 Aug 2021 20:05:43 +
+Subject: [PATCH] Use new hb-subset api with harfbuzz >= 2.9.0 in order to
+ prepeare for removal of legacy API in 3.0
+
+git-svn-id: svn://scribus.net/trunk/Scribus@24696 
11d20701-8431-0410-a711-e3c959e3b870
+---
+ scribus/fonts/sfnt.cpp | 10 +-
+ 1 file changed, 9 insertions(+), 1 deletion(-)
+
+diff --git a/scribus/fonts/sfnt.cpp b/scribus/fonts/sfnt.cpp
+index 50777f66e3..fca8b39158 100644
+--- a/scribus/fonts/sfnt.cpp
 b/scribus/fonts/sfnt.cpp
+@@ -1256,11 +1256,19 @@ namespace sfnt {
+ 
+   for (int i = 0; i < cids.count(); ++i)
+   hb_set_add(glyphSet, cids.at(i));
+-  
++
++#if HB_VERSION_ATLEAST(2, 9, 0)
++  uint32_t subsetFlags = (uint32_t) 
hb_subset_input_get_flags(hbSubsetInput.get());
++  subsetFlags |= HB_SUBSET_FLAGS_RETAIN_GIDS;
++  subsetFlags &= ~HB_SUBSET_FLAGS_NO_HINTING;
++  subsetFlags |= HB_SUBSET_FLAGS_NAME_LEGACY;
++  hb_subset_input_set_flags(hbSubsetInput.get(), subsetFlags);
++#else
+   hb_subset_input_set_retain_gids(hbSubsetInput.get(), true);
+   hb_subset_input_set_drop_hints(hbSubsetInput.get(), false);
+ #if HB_VERSION_ATLEAST(2, 6, 5)
+   hb_subset_input_set_name_legacy(hbSubsetInput.get(), true);
++#endif
+

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

2021-11-21 Thread Felix Yan via arch-commits
Date: Monday, November 22, 2021 @ 01:35:28
  Author: felixonmars
Revision: 1054158

upgpkg: scribus 1.5.7-8: openldap 2.6 rebuild

Modified:
  scribus/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-22 01:34:33 UTC (rev 1054157)
+++ PKGBUILD2021-11-22 01:35:28 UTC (rev 1054158)
@@ -7,7 +7,7 @@
 
 pkgname=scribus
 pkgver=1.5.7
-pkgrel=7
+pkgrel=8
 pkgdesc="Desktop publishing software"
 arch=(x86_64)
 url="https://www.scribus.net/";



[arch-commits] Commit in bluegriffon/repos (11 files)

2021-11-21 Thread Felix Yan via arch-commits
Date: Monday, November 22, 2021 @ 01:34:33
  Author: felixonmars
Revision: 1054157

archrelease: copy trunk to community-staging-x86_64

Added:
  bluegriffon/repos/community-staging-x86_64/
  bluegriffon/repos/community-staging-x86_64/PKGBUILD
(from rev 1054156, bluegriffon/trunk/PKGBUILD)
  bluegriffon/repos/community-staging-x86_64/bluegriffon-gcc11.patch
(from rev 1054156, bluegriffon/trunk/bluegriffon-gcc11.patch)
  bluegriffon/repos/community-staging-x86_64/bluegriffon.desktop
(from rev 1054156, bluegriffon/trunk/bluegriffon.desktop)
  bluegriffon/repos/community-staging-x86_64/bug_1533969_glibc230.patch
(from rev 1054156, bluegriffon/trunk/bug_1533969_glibc230.patch)
  bluegriffon/repos/community-staging-x86_64/fix-rust-lifetime-issue.patch
(from rev 1054156, bluegriffon/trunk/fix-rust-lifetime-issue.patch)
  bluegriffon/repos/community-staging-x86_64/glibc-2.32.patch
(from rev 1054156, bluegriffon/trunk/glibc-2.32.patch)
  
bluegriffon/repos/community-staging-x86_64/libstagefright-format-overflow.patch
(from rev 1054156, bluegriffon/trunk/libstagefright-format-overflow.patch)
  bluegriffon/repos/community-staging-x86_64/mozconfig
(from rev 1054156, bluegriffon/trunk/mozconfig)
  bluegriffon/repos/community-staging-x86_64/no-crmf.diff
(from rev 1054156, bluegriffon/trunk/no-crmf.diff)
  bluegriffon/repos/community-staging-x86_64/rust-explitcit-dyn.patch
(from rev 1054156, bluegriffon/trunk/rust-explitcit-dyn.patch)

--+
 PKGBUILD |  170 +++
 bluegriffon-gcc11.patch  |  238 +
 bluegriffon.desktop  |   16 ++
 bug_1533969_glibc230.patch   |   61 
 fix-rust-lifetime-issue.patch|   61 
 glibc-2.32.patch |   11 +
 libstagefright-format-overflow.patch |   10 +
 mozconfig|   31 
 no-crmf.diff |   15 ++
 rust-explitcit-dyn.patch |   22 +++
 10 files changed, 635 insertions(+)

Copied: bluegriffon/repos/community-staging-x86_64/PKGBUILD (from rev 1054156, 
bluegriffon/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-11-22 01:34:33 UTC (rev 1054157)
@@ -0,0 +1,170 @@
+# Maintainer: Muflone http://www.muflone.com/contacts/english/
+# Contributor: Balló György 
+
+pkgbase=bluegriffon
+pkgname=(bluegriffon)
+pkgver=3.1
+_gecko_dev_revision=042b84a # see config/gecko_dev_revision.txt
+pkgrel=17
+pkgdesc="The next-generation Web Editor based on the rendering engine of 
Firefox"
+arch=('x86_64')
+url="http://bluegriffon.org/";
+license=('MPL' 'GPL' 'LGPL')
+depends=('dbus-glib' 'gtk3' 'hunspell' 'nss' 'libvpx' 'libxt' 
'startup-notification')
+makedepends=('autoconf2.13' 'gtk2' 'libpulse' 'python2' 'rust' 'unzip' 'yasm' 
'zip')
+options=('!emptydirs')
+source=("${pkgbase}-${pkgver}.tar.gz"::"https://github.com/therealglazou/${pkgbase}/archive/${pkgver}.tar.gz";
+
"gecko-dev-${_gecko_dev_revision}.tar.gz"::"https://github.com/mozilla/gecko-dev/archive/${_gecko_dev_revision}.tar.gz";
+"mozconfig"
+"${pkgbase}.desktop"
+
"bug_1353650_icu59.patch"::"https://hg.mozilla.org/integration/mozilla-inbound/raw-rev/605d00e70409";
+
"bug_1384062_systemresourcemonitor.patch"::"https://hg.mozilla.org/mozilla-central/raw-rev/8d9ae8c45dd0";
+
"bug_1427455-unused-variables.patch"::"https://hg.mozilla.org/mozilla-central/raw-rev/8e28a66b548b";
+
"bug_445128_install-dir.patch"::"https://hg.mozilla.org/mozilla-central/raw-rev/8f74ddd39f61";
+"bug_1533969_glibc230.patch"
+"glibc-2.32.patch"
+"libstagefright-format-overflow.patch"
+"no-crmf.diff"
+"fix-rust-lifetime-issue.patch"
+"rust-explitcit-dyn.patch"
+"bluegriffon-gcc11.patch")
+sha256sums=('4fb9b29f00ff4e94e78994308ffa52bce818978009e0d8229203d6ac4210b0f4'
+'01096e58c898e1b37cba581e1cc0f325d1c402091ccc4a2491543b39add40c6c'
+'d589572a0e36b8500ed12937727e540a13b635c7ac12621a10ff675250b61175'
+'882133b77840356985a81e496b4ddc443f8f33c068cfb7ef0858497820adcfff'
+'6417fda6af8e610556f662fca28b2c25ceedb3e6970923a4eec562389b00b6d6'
+'7760ebe71f4057cbd2f52b715abaf0d944c14c39e2bb2a5322114ad8451e12d9'
+'806cbe936720676ea8d82c5f2bb880ca632181b07b0cf24a47c064a3485b7c7f'
+'18fbcfda13dd7d30d3c1310da15a133f90bf9ce6b7cfa15de833928e7d9efe95'
+'35bd21633bfe1005ccb643d6863e5da32b1281594f92bdcbd2ed36ef3fc43dfd'
+'4e986099c9817b70835457a229b5730e3968bb6ae097e43a188831ad01f6a61f'
+'28949cfeb646e48eb41669b64971ee69fce28ece580be145a1cd9540b3fd2ab5'
+'02000d185e647aa20ca336e595b4004bb29cdae9d8f317f90078bdcc7a36e873'
+  

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

2021-11-21 Thread Felix Yan via arch-commits
Date: Monday, November 22, 2021 @ 01:33:53
  Author: felixonmars
Revision: 1054156

upgpkg: bluegriffon 3.1-17: icu 70.1 rebuild

Modified:
  bluegriffon/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-22 01:31:42 UTC (rev 1054155)
+++ PKGBUILD2021-11-22 01:33:53 UTC (rev 1054156)
@@ -5,7 +5,7 @@
 pkgname=(bluegriffon)
 pkgver=3.1
 _gecko_dev_revision=042b84a # see config/gecko_dev_revision.txt
-pkgrel=16
+pkgrel=17
 pkgdesc="The next-generation Web Editor based on the rendering engine of 
Firefox"
 arch=('x86_64')
 url="http://bluegriffon.org/";



[arch-commits] Commit in networkmanager-strongswan/repos/community-x86_64 (2 files)

2021-11-21 Thread Christian Rebischke via arch-commits
Date: Monday, November 22, 2021 @ 01:31:42
  Author: shibumi
Revision: 1054155

archrelease: copy trunk to community-x86_64

Added:
  networkmanager-strongswan/repos/community-x86_64/PKGBUILD
(from rev 1054154, networkmanager-strongswan/trunk/PKGBUILD)
Deleted:
  networkmanager-strongswan/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-11-22 01:31:36 UTC (rev 1054154)
+++ PKGBUILD2021-11-22 01:31:42 UTC (rev 1054155)
@@ -1,39 +0,0 @@
-# Maintainer : Christian Rebischke 
-# Contributor: Jan Hicken 
-
-pkgname=networkmanager-strongswan
-_pkgname=NetworkManager-strongswan
-pkgver=1.5.2
-pkgrel=2
-pkgdesc="Strongswan NetworkManager plugin"
-arch=('x86_64')
-url="https://wiki.strongswan.org/projects/strongswan/wiki/NetworkManager";
-license=('GPL')
-depends=('libnm' 'libsecret' 'strongswan>=5.5.1')
-makedepends=('libnma' 'intltool')
-optdepends=('libnma: GUI support')
-source=("https://download.strongswan.org/NetworkManager/$_pkgname-$pkgver.tar.bz2"{,.sig})
-sha512sums=('c79f011470778ae05f80b71330acfd7df75363fd089624007e9bdd82b75513a23eaaa3ef10141f780df075eb501ee675e4c293710e0a4c5fd9d4f4b0565bae59'
-'SKIP')
-validpgpkeys=('12538F8F689B5F1F15F07BE1765FE26C6B467584') # Tobias Brunner
-
-build() {
-  cd "$_pkgname-$pkgver"
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---libexecdir=/usr/lib --disable-static --disable-more-warnings \
---without-libnm-glib --with-charon=/usr/lib/strongswan/charon-nm
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-check() {
-  cd "$_pkgname-$pkgver"
-  make check
-}
-
-package() {
-  cd "$_pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: networkmanager-strongswan/repos/community-x86_64/PKGBUILD (from rev 
1054154, networkmanager-strongswan/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-11-22 01:31:42 UTC (rev 1054155)
@@ -0,0 +1,39 @@
+# Maintainer : Christian Rebischke 
+# Contributor: Jan Hicken 
+
+pkgname=networkmanager-strongswan
+_pkgname=NetworkManager-strongswan
+pkgver=1.5.2
+pkgrel=3
+pkgdesc="Strongswan NetworkManager plugin"
+arch=('x86_64')
+url="https://wiki.strongswan.org/projects/strongswan/wiki/NetworkManager";
+license=('GPL')
+depends=('libnm' 'libsecret' 'strongswan>=5.5.1')
+makedepends=('libnma' 'intltool')
+optdepends=('libnma: GUI support')
+source=("https://download.strongswan.org/NetworkManager/$_pkgname-$pkgver.tar.bz2"{,.sig})
+sha512sums=('c79f011470778ae05f80b71330acfd7df75363fd089624007e9bdd82b75513a23eaaa3ef10141f780df075eb501ee675e4c293710e0a4c5fd9d4f4b0565bae59'
+'SKIP')
+validpgpkeys=('12538F8F689B5F1F15F07BE1765FE26C6B467584') # Tobias Brunner
+
+build() {
+  cd "$_pkgname-$pkgver"
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--libexecdir=/usr/lib --disable-static --disable-more-warnings \
+--without-libnm-glib --with-charon=/usr/lib/strongswan/charon-nm
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+check() {
+  cd "$_pkgname-$pkgver"
+  make check
+}
+
+package() {
+  cd "$_pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:



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

2021-11-21 Thread Christian Rebischke via arch-commits
Date: Monday, November 22, 2021 @ 01:31:36
  Author: shibumi
Revision: 1054154

upgpkg: networkmanager-strongswan 1.5.2-3

Modified:
  networkmanager-strongswan/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-22 01:11:43 UTC (rev 1054153)
+++ PKGBUILD2021-11-22 01:31:36 UTC (rev 1054154)
@@ -4,7 +4,7 @@
 pkgname=networkmanager-strongswan
 _pkgname=NetworkManager-strongswan
 pkgver=1.5.2
-pkgrel=2
+pkgrel=3
 pkgdesc="Strongswan NetworkManager plugin"
 arch=('x86_64')
 url="https://wiki.strongswan.org/projects/strongswan/wiki/NetworkManager";



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

2021-11-21 Thread Felix Yan via arch-commits
Date: Monday, November 22, 2021 @ 01:11:36
  Author: felixonmars
Revision: 428879

upgpkg: tracker-miners 2.3.5+2+gec09554af-4: icu 70.1 rebuild

Modified:
  tracker-miners/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-22 01:11:33 UTC (rev 428878)
+++ PKGBUILD2021-11-22 01:11:36 UTC (rev 428879)
@@ -2,7 +2,7 @@
 
 pkgname=tracker-miners
 pkgver=2.3.5+2+gec09554af
-pkgrel=3
+pkgrel=4
 pkgdesc="Collection of data extractors for Tracker/Nepomuk"
 url="https://wiki.gnome.org/Projects/Tracker";
 arch=(x86_64)



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

2021-11-21 Thread Felix Yan via arch-commits
Date: Monday, November 22, 2021 @ 01:11:42
  Author: felixonmars
Revision: 428880

archrelease: copy trunk to staging-x86_64

Added:
  webkit2gtk-4.1/repos/staging-x86_64/
  webkit2gtk-4.1/repos/staging-x86_64/PKGBUILD
(from rev 428879, webkit2gtk-4.1/trunk/PKGBUILD)

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

Copied: webkit2gtk-4.1/repos/staging-x86_64/PKGBUILD (from rev 428879, 
webkit2gtk-4.1/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2021-11-22 01:11:42 UTC (rev 428880)
@@ -0,0 +1,64 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Eric Bélanger 
+
+pkgname=webkit2gtk-4.1
+pkgver=2.34.1
+pkgrel=3
+pkgdesc="Web content engine for GTK"
+url="https://webkitgtk.org";
+arch=(x86_64)
+license=(custom)
+depends=(cairo fontconfig freetype2 libgcrypt glib2 gtk3 harfbuzz harfbuzz-icu
+ icu libjpeg libsoup3 libxml2 zlib libpng sqlite atk libwebp 
at-spi2-core
+ libegl libgl libgles libwpe wpebackend-fdo libxslt libsecret libtasn1
+ enchant libx11 libxext libice libxt wayland libnotify hyphen openjpeg2
+ woff2 libsystemd bubblewrap libseccomp xdg-dbus-proxy gstreamer
+ gst-plugins-base-libs libmanette)
+makedepends=(cmake ninja gtk-doc python ruby gobject-introspection
+ wayland-protocols systemd gst-plugins-bad gperf)
+optdepends=('geoclue: Geolocation support'
+'gst-plugins-good: media decoding'
+'gst-plugins-bad: media decoding'
+'gst-libav: nonfree media decoding')
+source=($url/releases/webkitgtk-$pkgver.tar.xz{,.asc})
+sha256sums=('443c1316705de024741748e85fe32324d299d9ee68e6feb340b89e4a04073dee'
+'SKIP')
+validpgpkeys=('D7FCF61CF9A2DEAB31D81BD3F3D322D0EC4582C3'  # Carlos Garcia 
Campos 
+  '5AA3BC334FD7E3369E7C77B291C559DBE4C9123B') # Adrián Pérez de 
Castro 
+
+prepare() {
+  cd webkitgtk-$pkgver
+}
+
+build() {
+  cmake -S webkitgtk-$pkgver -B build -G Ninja \
+-DPORT=GTK \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DCMAKE_INSTALL_LIBEXECDIR=lib \
+-DCMAKE_SKIP_RPATH=ON \
+-DENABLE_GTKDOC=ON \
+-DENABLE_MINIBROWSER=ON
+  cmake --build build
+}
+
+package() {
+  depends+=(libwpe-1.0.so libWPEBackend-fdo-1.0.so)
+  provides+=(libjavascriptcoregtk-4.1.so libwebkit2gtk-4.1.so)
+
+  DESTDIR="$pkgdir" cmake --install build
+
+  rm -r "$pkgdir/usr/bin"
+
+  cd webkitgtk-$pkgver
+  find Source -name 'COPYING*' -or -name 'LICENSE*' -print0 | sort -z |
+while IFS= read -d $'\0' -r _f; do
+  echo "### $_f ###"
+  cat "$_f"
+  echo
+done |
+install -Dm644 /dev/stdin "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set sw=2 et:



[arch-commits] Commit in tracker-miners/repos (staging-x86_64 staging-x86_64/PKGBUILD)

2021-11-21 Thread Felix Yan via arch-commits
Date: Monday, November 22, 2021 @ 01:11:47
  Author: felixonmars
Revision: 428881

archrelease: copy trunk to staging-x86_64

Added:
  tracker-miners/repos/staging-x86_64/
  tracker-miners/repos/staging-x86_64/PKGBUILD
(from rev 428879, tracker-miners/trunk/PKGBUILD)

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

Copied: tracker-miners/repos/staging-x86_64/PKGBUILD (from rev 428879, 
tracker-miners/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2021-11-22 01:11:47 UTC (rev 428881)
@@ -0,0 +1,43 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=tracker-miners
+pkgver=2.3.5+2+gec09554af
+pkgrel=4
+pkgdesc="Collection of data extractors for Tracker/Nepomuk"
+url="https://wiki.gnome.org/Projects/Tracker";
+arch=(x86_64)
+license=(GPL)
+depends=(tracker gst-plugins-base-libs exempi flac libexif libcue libgrss 
libgsf
+ libgxps libiptcdata libosinfo libvorbis poppler-glib totem-plparser
+ giflib libgexiv2 gupnp-dlna upower libseccomp)
+makedepends=(intltool git meson vala)
+checkdepends=(python-gobject gst-plugins-good gst-plugins-base gst-libav)
+groups=(gnome)
+_commit=ec09554afbcf6d6864add8331e977f9d5028f5ce  # tracker-miners-2.3
+source=("git+https://gitlab.gnome.org/GNOME/tracker-miners.git#commit=$_commit";)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd tracker-miners
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd tracker-miners
+}
+
+build() {
+  arch-meson tracker-miners build
+  meson compile -C build
+}
+
+check() {
+  # Intermittent test failures: 
https://gitlab.gnome.org/GNOME/tracker-miners/-/issues/79
+  dbus-run-session meson test -C build --print-errorlogs -t 3 || :
+}
+
+package() {
+  depends+=(libtracker-{miner,sparql}-2.0.so)
+
+  meson install -C build --destdir "$pkgdir"
+}



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

2021-11-21 Thread Felix Yan via arch-commits
Date: Monday, November 22, 2021 @ 01:11:33
  Author: felixonmars
Revision: 1054152

upgpkg: sword 1.9.0-3: icu 70.1 rebuild

Modified:
  sword/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-22 01:04:09 UTC (rev 1054151)
+++ PKGBUILD2021-11-22 01:11:33 UTC (rev 1054152)
@@ -10,7 +10,7 @@
 pkgname=(sword python-sword)
 _mainver=1.9
 pkgver=1.9.0
-pkgrel=2
+pkgrel=3
 pkgdesc="Library for Bible study programs"
 arch=('x86_64')
 url="https://www.crosswire.org/sword/";



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

2021-11-21 Thread Felix Yan via arch-commits
Date: Monday, November 22, 2021 @ 01:11:43
  Author: felixonmars
Revision: 1054153

archrelease: copy trunk to community-staging-x86_64

Added:
  sword/repos/community-staging-x86_64/
  sword/repos/community-staging-x86_64/PKGBUILD
(from rev 1054152, sword/trunk/PKGBUILD)

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

Copied: sword/repos/community-staging-x86_64/PKGBUILD (from rev 1054152, 
sword/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-11-22 01:11:43 UTC (rev 1054153)
@@ -0,0 +1,52 @@
+# Maintainer: Felix Yan 
+# Contributor: SanskritFritz (gmail)
+# Contributor: Alexander Rødseth
+# Contributor: Andrea Scarpino
+# Contributor: Stefan Husmann 
+# Contributor: TripleE 
+# Contributor: Dominic Tubach
+
+pkgbase=sword
+pkgname=(sword python-sword)
+_mainver=1.9
+pkgver=1.9.0
+pkgrel=3
+pkgdesc="Library for Bible study programs"
+arch=('x86_64')
+url="https://www.crosswire.org/sword/";
+license=('GPL')
+makedepends=('curl' 'clucene' 'swig' 'cmake' 'python')
+source=("https://www.crosswire.org/ftpmirror/pub/$pkgbase/source/v$_mainver/$pkgbase-$pkgver.tar.gz";)
+sha512sums=('9ed3fbb5024af1f93b1473bae0d95534d02a5b00b3c9d41a0f855cee8106dc4e330844080adbee7c3f74c0e5ce1480bf16c87c842421337a341f641bae11137f')
+
+prepare() {
+  cd $pkgbase-$pkgver
+  mkdir build
+}
+
+build() {
+  cd $pkgbase-$pkgver/build
+
+  # http://site.icu-project.org/download/61#TOC-Migration-Issues
+  CXXFLAGS+=' -DU_USING_ICU_NAMESPACE=1'
+
+  #./configure --prefix=/usr --libdir=/usr/lib --sysconfdir=/etc
+  cmake .. -DLIBSWORD_LIBRARY_TYPE="Shared" -DSYSCONF_INSTALL_DIR='/etc' \
+   -DSWORD_BUILD_TESTS="Yes" -DSWORD_PYTHON_3=TRUE 
-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package_sword() {
+  depends=('curl' 'clucene' 'swig' 'xz')
+  backup=('etc/sword.conf')
+
+  cd $pkgbase-$pkgver/build
+  make DESTDIR="$pkgdir" install
+}
+
+package_python-sword() {
+  depends=('sword' 'python')
+
+  cd $pkgbase-$pkgver/build/bindings/swig/python3
+  python setup.py install --root="$pkgdir" --prefix=/usr -O1 --skip-build
+}



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

2021-11-21 Thread Felix Yan via arch-commits
Date: Monday, November 22, 2021 @ 01:11:33
  Author: felixonmars
Revision: 428878

upgpkg: webkit2gtk-4.1 2.34.1-3: openldap 2.6 rebuild

Modified:
  webkit2gtk-4.1/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-22 00:55:28 UTC (rev 428877)
+++ PKGBUILD2021-11-22 01:11:33 UTC (rev 428878)
@@ -3,7 +3,7 @@
 
 pkgname=webkit2gtk-4.1
 pkgver=2.34.1
-pkgrel=2
+pkgrel=3
 pkgdesc="Web content engine for GTK"
 url="https://webkitgtk.org";
 arch=(x86_64)



[arch-commits] Commit in mongo-c-driver/repos (2 files)

2021-11-21 Thread Felix Yan via arch-commits
Date: Monday, November 22, 2021 @ 01:04:09
  Author: felixonmars
Revision: 1054151

archrelease: copy trunk to community-staging-x86_64

Added:
  mongo-c-driver/repos/community-staging-x86_64/
  mongo-c-driver/repos/community-staging-x86_64/PKGBUILD
(from rev 1054150, mongo-c-driver/trunk/PKGBUILD)

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

Copied: mongo-c-driver/repos/community-staging-x86_64/PKGBUILD (from rev 
1054150, mongo-c-driver/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-11-22 01:04:09 UTC (rev 1054151)
@@ -0,0 +1,42 @@
+# Maintainer: Felix Yan 
+
+pkgname=mongo-c-driver
+pkgver=1.19.0
+pkgrel=2
+pkgdesc='A client library written in C for MongoDB'
+arch=('x86_64')
+url='https://www.mongodb.org/display/DOCS/C+Language+Center'
+license=('Apache')
+depends=('libsasl' 'icu' 'snappy' 'zlib' 'zstd')
+makedepends=('cmake')
+provides=('libbson' 'libmongoc')
+conflicts=('libbson' 'libmongoc')
+replaces=('libbson' 'libmongoc')
+source=("https://github.com/mongodb/mongo-c-driver/releases/download/$pkgver/$pkgname-$pkgver.tar.gz";)
+sha512sums=('6bb3b199ecbe8cc31a42c50c123d82128ee490083ccc91f3f85fc83bdf96c9cc10666ffdbc4f9bc136d4e6d259915af140cb13bb51ec36b52c1b4433f545bdd2')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../mongo-c-driver-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DENABLE_STATIC=OFF -DENABLE_TESTS=OFF
+# Test profiles are not found even with ENABLE_TESTS=ON
+  make
+}
+
+check() {
+  cd build
+  # No test profile found
+  # pifpaf run mongodb --port 27017 make test || echo "Tests failed"
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir/" install
+}



[arch-commits] Commit in mongo-c-driver/trunk (PKGBUILD)

2021-11-21 Thread Felix Yan via arch-commits
Date: Monday, November 22, 2021 @ 01:03:54
  Author: felixonmars
Revision: 1054150

upgpkg: mongo-c-driver 1.19.0-2: icu 70.1 rebuild

Modified:
  mongo-c-driver/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-22 01:03:14 UTC (rev 1054149)
+++ PKGBUILD2021-11-22 01:03:54 UTC (rev 1054150)
@@ -2,7 +2,7 @@
 
 pkgname=mongo-c-driver
 pkgver=1.19.0
-pkgrel=1
+pkgrel=2
 pkgdesc='A client library written in C for MongoDB'
 arch=('x86_64')
 url='https://www.mongodb.org/display/DOCS/C+Language+Center'



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

2021-11-21 Thread Felix Yan via arch-commits
Date: Monday, November 22, 2021 @ 01:03:14
  Author: felixonmars
Revision: 1054149

archrelease: copy trunk to community-staging-x86_64

Added:
  widelands/repos/community-staging-x86_64/
  widelands/repos/community-staging-x86_64/PKGBUILD
(from rev 1054148, widelands/trunk/PKGBUILD)
  widelands/repos/community-staging-x86_64/widelands.desktop
(from rev 1054148, widelands/trunk/widelands.desktop)
  widelands/repos/community-staging-x86_64/widelands.png
(from rev 1054148, widelands/trunk/widelands.png)

---+
 PKGBUILD  |   53 
 widelands.desktop |8 +++
 2 files changed, 61 insertions(+)

Copied: widelands/repos/community-staging-x86_64/PKGBUILD (from rev 1054148, 
widelands/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-11-22 01:03:14 UTC (rev 1054149)
@@ -0,0 +1,53 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Arkham 
+# Contributor: Christoph Zeiler 
+
+pkgname=widelands
+pkgver=1.0
+epoch=1
+pkgrel=3
+pkgdesc="A realtime strategy game with emphasis on economy and transport"
+arch=('x86_64')
+url="https://widelands.org/";
+license=('GPL')
+depends=('sdl2_mixer' 'sdl2_image' 'sdl2_net' 'sdl2_ttf' 'sdl2_gfx' 'lua' 
'glew' 'python' 'dbus')
+makedepends=('cmake' 'boost' 'mesa' 'ninja' 'git')
+replaces=('widelands-data')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/widelands/widelands/archive/refs/tags/v${pkgver}.tar.gz";
+$pkgname.desktop
+$pkgname.png)
+sha512sums=('1092750944a8669682097dfbd2b578cdb8fab377f32cb81ce8d85b9d9b2e8ae8c4c73500c0a89be649b360fd7e086e19595eba37cecb8d64679e46f7da13e46e'
+
'ef7e54ffba11a2fe54d2cafc0a12fcbe5028e861b9b980f549317b159c8532ee62423af8724b05cfd344017097e022215fa750f4ca9afffa57703d434017d727'
+
'f7db9d7584ec8431f2f1857baddeb32cd3ae182343e7f0369e61fb444514bd9c2e6a3931ae34f24cc994840dffbbe4451f33845798f3d582f41b31f451b261ac')
+
+build() {
+  cd $pkgname-$pkgver
+
+  cmake \
+  -GNinja \
+  -Bbuild \
+  -DCMAKE_BUILD_TYPE=Release \
+  -DCMAKE_INSTALL_PREFIX=/usr \
+  -DWL_INSTALL_BASEDIR=/usr \
+  -DWL_INSTALL_DATADIR=/usr/share/widelands
+  ninja -C build
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  DESTDIR="$pkgdir" ninja -C build install
+
+  # Fix wrong locations of some installed files (upstream bug)
+  # See also FS#72240
+  mkdir -p "$pkgdir"/usr/bin
+  mv 
"$pkgdir"/usr/{widelands,wl_map_object_info,wl_map_info,wl_create_spritesheet} 
"$pkgdir"/usr/bin
+  mv "$pkgdir"/usr/{VERSION,ChangeLog,CREDITS} "$pkgdir"/usr/share/widelands
+  mv "$pkgdir"/share/* "$pkgdir"/usr/share/
+
+  mkdir -p "$pkgdir"/usr/share/licenses/$pkgname
+  mv "$pkgdir"/usr/COPYING "$pkgdir"/usr/share/licenses/$pkgname
+
+  install -Dm644 "$srcdir"/$pkgname.png 
"$pkgdir"/usr/share/pixmaps/$pkgname.png
+  install -Dm644 "$srcdir"/$pkgname.desktop 
"$pkgdir"/usr/share/applications/$pkgname.desktop
+}

Copied: widelands/repos/community-staging-x86_64/widelands.desktop (from rev 
1054148, widelands/trunk/widelands.desktop)
===
--- community-staging-x86_64/widelands.desktop  (rev 0)
+++ community-staging-x86_64/widelands.desktop  2021-11-22 01:03:14 UTC (rev 
1054149)
@@ -0,0 +1,8 @@
+[Desktop Entry]
+Name=Widelands
+GenericName=Widelands
+Comment=Realtime strategy game
+Icon=widelands
+Exec=widelands
+Type=Application
+Categories=Game;StrategyGame;

Copied: widelands/repos/community-staging-x86_64/widelands.png (from rev 
1054148, widelands/trunk/widelands.png)
===
(Binary files differ)



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

2021-11-21 Thread Felix Yan via arch-commits
Date: Monday, November 22, 2021 @ 01:02:39
  Author: felixonmars
Revision: 1054148

upgpkg: widelands 1:1.0-3: icu 70.1 rebuild

Modified:
  widelands/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-22 01:02:24 UTC (rev 1054147)
+++ PKGBUILD2021-11-22 01:02:39 UTC (rev 1054148)
@@ -5,7 +5,7 @@
 pkgname=widelands
 pkgver=1.0
 epoch=1
-pkgrel=2
+pkgrel=3
 pkgdesc="A realtime strategy game with emphasis on economy and transport"
 arch=('x86_64')
 url="https://widelands.org/";



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

2021-11-21 Thread Felix Yan via arch-commits
Date: Monday, November 22, 2021 @ 01:02:24
  Author: felixonmars
Revision: 1054147

archrelease: copy trunk to community-staging-x86_64

Added:
  tarantool/repos/community-staging-x86_64/
  tarantool/repos/community-staging-x86_64/PKGBUILD
(from rev 1054146, tarantool/trunk/PKGBUILD)
  tarantool/repos/community-staging-x86_64/tarantool.sysusers
(from rev 1054146, tarantool/trunk/tarantool.sysusers)

+
 PKGBUILD   |   91 +++
 tarantool.sysusers |2 +
 2 files changed, 93 insertions(+)

Copied: tarantool/repos/community-staging-x86_64/PKGBUILD (from rev 1054146, 
tarantool/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-11-22 01:02:24 UTC (rev 1054147)
@@ -0,0 +1,91 @@
+# Maintainer: Anatol Pomozov 
+
+pkgname=tarantool
+pkgver=2.9.0
+pkgrel=2
+pkgdesc='Lua application server integrated with a database management system'
+arch=(x86_64)
+url='https://www.tarantool.org'
+license=(BSD)
+depends=(readline ncurses zlib libyaml openssl libunwind icu)
+makedepends=(git cmake systemd)
+checkdepends=(python-gevent python-tarantool)
+source=(git+https://github.com/tarantool/tarantool.git#tag=$pkgver
+git+https://github.com/tarantool/luajit.git#branch=tarantool-1.7
+git+https://github.com/tarantool/libyaml.git
+git+https://github.com/tarantool/msgpuck.git
+git+https://github.com/rtsisyk/luafun.git
+git+https://github.com/tarantool/test-run.git
+git+https://github.com/tarantool/small.git
+git+https://github.com/tarantool/zstd.git
+
git+https://github.com/tarantool/luarocks.git#branch=luarocks-3.1.1-tarantool
+git+https://github.com/tarantool/decNumber.git
+git+https://github.com/tarantool/curl.git
+git+https://github.com/tarantool/c-ares.git
+tarantool.sysusers)
+sha256sums=('SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'2feccda75effbd44b40e43608e56395376ea7b9039a09aada91a05f9559b12fe')
+
+prepare() {
+  cd tarantool
+
+  git submodule init
+  git config -f .gitmodules 'submodule.third_party/luajit.url' "$srcdir/luajit"
+  git config -f .gitmodules 'submodule.src/lib/msgpuck.url' "$srcdir/msgpuck"
+  git config -f .gitmodules 'submodule.third_party/luafun.url' "$srcdir/luafun"
+  git config -f .gitmodules 'submodule.third_party/libyaml.url' 
"$srcdir/libyaml"
+  git config -f .gitmodules 'submodule.third_party/zstd.url' "$srcdir/zstd"
+  git config -f .gitmodules 'submodule.test-run.url' "$srcdir/test-run"
+  git config -f .gitmodules 'submodule.src/lib/small.url' "$srcdir/small"
+  git config -f .gitmodules 'submodule.third_party/luarocks.url' 
"$srcdir/luarocks"
+  git config -f .gitmodules 'submodule.third_party/decNumber.url' 
"$srcdir/decNumber"
+  git config -f .gitmodules 'submodule.third_party/curl.url' "$srcdir/curl"
+  git config -f .gitmodules 'submodule.third_party/c-ares.url' "$srcdir/c-ares"
+
+  git submodule sync
+  git submodule update
+}
+
+build() {
+  cd tarantool
+
+  # tarantool uses git submodule, handle this
+  cmake \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_BINDIR=/usr/bin \
+-DCMAKE_INSTALL_SYSCONFDIR=/etc \
+-DCMAKE_INSTALL_LIBDIR=/usr/lib \
+-DCMAKE_BUILD_TYPE=RelWithDebInfo \
+-DCMAKE_SKIP_RPATH=ON \
+-DENABLE_BACKTRACE:BOOL=ON \
+-DWITH_SYSTEMD:BOOL=ON \
+-DENABLE_DIST:BOOL=ON \
+.
+  make
+}
+
+check() {
+  cd "$srcdir/tarantool/test"
+  python test-run.py --suite box
+}
+
+package() {
+  cd tarantool
+  make install DESTDIR="$pkgdir"
+
+  sed 's|/var/run/|/run/|' -i "$pkgdir"/usr/lib/tmpfiles.d/tarantool.conf # 
https://github.com/tarantool/tarantool/issues/5227
+
+  install -D -m644 "$srcdir"/tarantool.sysusers 
"$pkgdir/usr/lib/sysusers.d/tarantool.conf"
+  install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}

Copied: tarantool/repos/community-staging-x86_64/tarantool.sysusers (from rev 
1054146, tarantool/trunk/tarantool.sysusers)
===
--- community-staging-x86_64/tarantool.sysusers (rev 0)
+++ community-staging-x86_64/tarantool.sysusers 2021-11-22 01:02:24 UTC (rev 
1054147)
@@ -0,0 +1,2 @@
+g tarantool
+u tarantool - "Tarantool Server" /var/lib/tarantool



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

2021-11-21 Thread Felix Yan via arch-commits
Date: Monday, November 22, 2021 @ 01:02:15
  Author: felixonmars
Revision: 1054146

upgpkg: tarantool 2.9.0-2: icu 70.1 rebuild

Modified:
  tarantool/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-22 00:59:39 UTC (rev 1054145)
+++ PKGBUILD2021-11-22 01:02:15 UTC (rev 1054146)
@@ -2,7 +2,7 @@
 
 pkgname=tarantool
 pkgver=2.9.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Lua application server integrated with a database management system'
 arch=(x86_64)
 url='https://www.tarantool.org'



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

2021-11-21 Thread Felix Yan via arch-commits
Date: Monday, November 22, 2021 @ 00:59:39
  Author: felixonmars
Revision: 1054145

archrelease: copy trunk to community-staging-x86_64

Added:
  kiwix-lib/repos/community-staging-x86_64/
  kiwix-lib/repos/community-staging-x86_64/PKGBUILD
(from rev 1054144, kiwix-lib/trunk/PKGBUILD)

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

Copied: kiwix-lib/repos/community-staging-x86_64/PKGBUILD (from rev 1054144, 
kiwix-lib/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-11-22 00:59:39 UTC (rev 1054145)
@@ -0,0 +1,30 @@
+# Maintainer: Justin Kromlinger 
+pkgname=kiwix-lib
+pkgver=9.4.1
+pkgrel=6
+pkgdesc="Library providing the Kiwix software core"
+license=('GPL3')
+arch=('x86_64')
+depends=('libzim6' 'pugixml' 'mustache' 'xapian-core' 'aria2' 'libmicrohttpd' 
'python' 'curl')
+makedepends=('meson' 'gtest')
+url='https://github.com/kiwix/kiwix-lib'
+source=("libkiwix-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
+sha256sums=('58c5fe6742f7f14cdda6bcdca29b8960891a4e9094ec10a48e1aa9b0a8f03ee5')
+
+build() {
+   cd "libkiwix-${pkgver}"
+   # We want to ignore xapian ABI version mismatches
+   arch-meson build -Dwerror=false
+   ninja -C build
+}
+
+check() {
+   cd "libkiwix-${pkgver}/build"
+   ninja meson-test
+}
+
+package() {
+   install -Dm644 "libkiwix-${pkgver}/COPYING" 
"$pkgdir/usr/share/licenses/$pkgname/COPYING"
+   cd "libkiwix-${pkgver}/build"
+   DESTDIR="${pkgdir}" ninja install
+}



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

2021-11-21 Thread Felix Yan via arch-commits
Date: Monday, November 22, 2021 @ 00:59:31
  Author: felixonmars
Revision: 1054144

upgpkg: kiwix-lib 9.4.1-6: icu 70.1 rebuild

Modified:
  kiwix-lib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-22 00:57:39 UTC (rev 1054143)
+++ PKGBUILD2021-11-22 00:59:31 UTC (rev 1054144)
@@ -1,7 +1,7 @@
 # Maintainer: Justin Kromlinger 
 pkgname=kiwix-lib
 pkgver=9.4.1
-pkgrel=5
+pkgrel=6
 pkgdesc="Library providing the Kiwix software core"
 license=('GPL3')
 arch=('x86_64')



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

2021-11-21 Thread Felix Yan via arch-commits
Date: Monday, November 22, 2021 @ 00:57:29
  Author: felixonmars
Revision: 1054142

upgpkg: openrct2 0.3.5-2: icu 70.1 rebuild

Modified:
  openrct2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-22 00:52:09 UTC (rev 1054141)
+++ PKGBUILD2021-11-22 00:57:29 UTC (rev 1054142)
@@ -3,7 +3,7 @@
 
 pkgname=openrct2
 pkgver=0.3.5
-pkgrel=1
+pkgrel=2
 pkgdesc='Open source re-implementation of Roller Coaster Tycoon 2 (requires 
full
  copy of the game)'
 arch=('x86_64')



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

2021-11-21 Thread Felix Yan via arch-commits
Date: Monday, November 22, 2021 @ 00:55:28
  Author: felixonmars
Revision: 428877

archrelease: copy trunk to staging-x86_64

Added:
  tracker3-miners/repos/staging-x86_64/
  tracker3-miners/repos/staging-x86_64/PKGBUILD
(from rev 428876, tracker3-miners/trunk/PKGBUILD)

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

Copied: tracker3-miners/repos/staging-x86_64/PKGBUILD (from rev 428876, 
tracker3-miners/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2021-11-22 00:55:28 UTC (rev 428877)
@@ -0,0 +1,44 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=tracker3-miners
+pkgver=3.2.1
+pkgrel=2
+pkgdesc="Collection of data extractors for Tracker/Nepomuk"
+url="https://wiki.gnome.org/Projects/Tracker";
+arch=(x86_64)
+license=(GPL)
+depends=(tracker3 gst-plugins-base-libs exempi libexif libcue libgrss libgsf
+ libgxps libiptcdata libosinfo poppler-glib totem-plparser giflib
+ libgexiv2 gupnp-dlna upower libseccomp libnm)
+makedepends=(git meson vala asciidoc)
+checkdepends=(python-gobject python-tappy gst-plugins-good gst-plugins-base
+  gst-libav)
+groups=(gnome)
+_commit=1e1a9e701faae73148fc05613b7e237715ad0cc9  # tags/3.2.1^0
+source=("git+https://gitlab.gnome.org/GNOME/tracker-miners.git#commit=$_commit";)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd tracker-miners
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd tracker-miners
+}
+
+build() {
+  arch-meson tracker-miners build -D tests_tap_protocol=true
+  meson compile -C build
+}
+
+check() {
+  # Intermittent test failures: 
https://gitlab.gnome.org/GNOME/tracker-miners/-/issues/79
+  dbus-run-session meson test -C build --print-errorlogs -t 3 || :
+}
+
+package() {
+  depends+=(libtracker-sparql-3.0.so)
+
+  meson install -C build --destdir "$pkgdir"
+}



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

2021-11-21 Thread Felix Yan via arch-commits
Date: Monday, November 22, 2021 @ 00:55:20
  Author: felixonmars
Revision: 428876

upgpkg: tracker3-miners 3.2.1-2: icu 70.1 rebuild

Modified:
  tracker3-miners/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-22 00:52:23 UTC (rev 428875)
+++ PKGBUILD2021-11-22 00:55:20 UTC (rev 428876)
@@ -2,7 +2,7 @@
 
 pkgname=tracker3-miners
 pkgver=3.2.1
-pkgrel=1
+pkgrel=2
 pkgdesc="Collection of data extractors for Tracker/Nepomuk"
 url="https://wiki.gnome.org/Projects/Tracker";
 arch=(x86_64)



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

2021-11-21 Thread Felix Yan via arch-commits
Date: Monday, November 22, 2021 @ 00:52:16
  Author: felixonmars
Revision: 428874

upgpkg: libqalculate 3.21.0-2: icu 70.1 rebuild

Modified:
  libqalculate/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-22 00:44:19 UTC (rev 428873)
+++ PKGBUILD2021-11-22 00:52:16 UTC (rev 428874)
@@ -3,7 +3,7 @@
 
 pkgname=libqalculate
 pkgver=3.21.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Multi-purpose desktop calculator'
 arch=(x86_64)
 url='https://qalculate.github.io/'



[arch-commits] Commit in libqalculate/repos (staging-x86_64 staging-x86_64/PKGBUILD)

2021-11-21 Thread Felix Yan via arch-commits
Date: Monday, November 22, 2021 @ 00:52:23
  Author: felixonmars
Revision: 428875

archrelease: copy trunk to staging-x86_64

Added:
  libqalculate/repos/staging-x86_64/
  libqalculate/repos/staging-x86_64/PKGBUILD
(from rev 428874, libqalculate/trunk/PKGBUILD)

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

Copied: libqalculate/repos/staging-x86_64/PKGBUILD (from rev 428874, 
libqalculate/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2021-11-22 00:52:23 UTC (rev 428875)
@@ -0,0 +1,26 @@
+# Maintainer: Eric Bélanger 
+# Maintainer: Antonio Rojas 
+
+pkgname=libqalculate
+pkgver=3.21.0
+pkgrel=2
+pkgdesc='Multi-purpose desktop calculator'
+arch=(x86_64)
+url='https://qalculate.github.io/'
+license=(GPL)
+depends=(libxml2 curl mpfr)
+makedepends=(intltool doxygen)
+optdepends=('gnuplot: for plotting support')
+source=(https://github.com/Qalculate/libqalculate/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz)
+sha256sums=('2a2b6f8de4b43acdff98efdda338436db1a3f7ecd994e1bc2a422a65fba03479')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}



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

2021-11-21 Thread Felix Yan via arch-commits
Date: Monday, November 22, 2021 @ 00:52:09
  Author: felixonmars
Revision: 1054141

archrelease: copy trunk to community-staging-x86_64

Added:
  kbibtex/repos/community-staging-x86_64/
  kbibtex/repos/community-staging-x86_64/PKGBUILD
(from rev 1054140, kbibtex/trunk/PKGBUILD)

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

Copied: kbibtex/repos/community-staging-x86_64/PKGBUILD (from rev 1054140, 
kbibtex/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-11-22 00:52:09 UTC (rev 1054141)
@@ -0,0 +1,35 @@
+# Maintainer: Ray Rashif 
+# Maintainer: Antonio Rojas 
+# Contributor: cmorlok 
+
+pkgname=kbibtex
+epoch=1
+pkgver=0.9.2
+pkgrel=6
+pkgdesc="A BibTeX editor for KDE"
+arch=(x86_64)
+url='https://userbase.kde.org/KBibTeX'
+license=(GPL)
+depends=(poppler-qt5 qt5-webengine qt5-xmlpatterns qoauth ktexteditor)
+optdepends=('okular: Document preview')
+makedepends=(extra-cmake-modules kdoctools)
+source=(https://download.kde.org/stable/KBibTeX/$pkgver/$pkgname-$pkgver.tar.xz{,.asc}
+
kbibtex-qsortfilterproxymodel-crash.patch::"https://invent.kde.org/office/kbibtex/-/commit/84b0551e.patch";)
+sha256sums=('d98651fba99de8ebaf1a19bd8b3c3ac660a34cea33e4c587be30fd61466fac27'
+'SKIP'
+'b4390a9361dc3f734f158d82afb586ddcee92ac5412eb69f4d0734c364c6471b')
+validpgpkeys=('1808CB466328F4380685A3B1A264FD738D861F41') # Thomas Fischer 

+
+prepare() {
+  patch -d $pkgname-$pkgver -p1 < kbibtex-qsortfilterproxymodel-crash.patch # 
FS#70366
+}
+
+build() {
+  cmake -B build -S $pkgname-$pkgver \
+-DBUILD_TESTING=OFF
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+}



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

2021-11-21 Thread Felix Yan via arch-commits
Date: Monday, November 22, 2021 @ 00:52:01
  Author: felixonmars
Revision: 1054140

upgpkg: kbibtex 1:0.9.2-6: icu 70.1 rebuild

Modified:
  kbibtex/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-22 00:51:31 UTC (rev 1054139)
+++ PKGBUILD2021-11-22 00:52:01 UTC (rev 1054140)
@@ -5,7 +5,7 @@
 pkgname=kbibtex
 epoch=1
 pkgver=0.9.2
-pkgrel=5
+pkgrel=6
 pkgdesc="A BibTeX editor for KDE"
 arch=(x86_64)
 url='https://userbase.kde.org/KBibTeX'



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

2021-11-21 Thread Felix Yan via arch-commits
Date: Monday, November 22, 2021 @ 00:51:31
  Author: felixonmars
Revision: 1054139

archrelease: copy trunk to community-staging-x86_64

Added:
  poedit/repos/community-staging-x86_64/
  poedit/repos/community-staging-x86_64/PKGBUILD
(from rev 1054138, poedit/trunk/PKGBUILD)

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

Copied: poedit/repos/community-staging-x86_64/PKGBUILD (from rev 1054138, 
poedit/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-11-22 00:51:31 UTC (rev 1054139)
@@ -0,0 +1,35 @@
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Sergej Pupykin 
+# Contributor: Andrea Scarpino 
+# Contributor: Giovanni Scafora 
+# Contributor: Alexander Fehr 
+# Contributor: Daniel J Griffiths 
+
+pkgname=poedit
+epoch=1
+pkgver=3.0
+pkgrel=4
+pkgdesc="Cross-platform gettext catalogs (.po files) editor"
+arch=('x86_64')
+url="https://www.poedit.net/";
+license=('MIT')
+depends=('gtkspell3' 'lucene++' 'wxgtk3' 'webkit2gtk')
+makedepends=('boost')
+source=(https://github.com/vslavik/poedit/releases/download/v$pkgver-oss/poedit-${pkgver}.tar.gz)
+sha256sums=('dfbe5e8c5ea6e36fd472fc294f2cedf804656f52db372ea3fbbe4103136b2dc2')
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  ./configure --prefix=/usr --libexecdir=/usr/lib/poedit 
--with-wx-config=/usr/bin/wx-config-gtk3
+  make CPPFLAGS+=' -DUCHAR_TYPE=uint16_t'
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+
+  make DESTDIR="${pkgdir}" install
+  rm "${pkgdir}"/usr/share/icons/hicolor/icon-theme.cache
+
+  install -Dm644 COPYING "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}



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

2021-11-21 Thread Felix Yan via arch-commits
Date: Monday, November 22, 2021 @ 00:51:23
  Author: felixonmars
Revision: 1054138

upgpkg: poedit 1:3.0-4: icu 70.1 rebuild

Modified:
  poedit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-22 00:41:27 UTC (rev 1054137)
+++ PKGBUILD2021-11-22 00:51:23 UTC (rev 1054138)
@@ -8,7 +8,7 @@
 pkgname=poedit
 epoch=1
 pkgver=3.0
-pkgrel=3
+pkgrel=4
 pkgdesc="Cross-platform gettext catalogs (.po files) editor"
 arch=('x86_64')
 url="https://www.poedit.net/";



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

2021-11-21 Thread Felix Yan via arch-commits
Date: Monday, November 22, 2021 @ 00:44:19
  Author: felixonmars
Revision: 428873

archrelease: copy trunk to staging-x86_64

Added:
  qt5-webkit/repos/staging-x86_64/
  qt5-webkit/repos/staging-x86_64/PKGBUILD
(from rev 428872, qt5-webkit/trunk/PKGBUILD)
  qt5-webkit/repos/staging-x86_64/glib-2.68.patch
(from rev 428872, qt5-webkit/trunk/glib-2.68.patch)
  qt5-webkit/repos/staging-x86_64/icu68.patch
(from rev 428872, qt5-webkit/trunk/icu68.patch)

-+
 PKGBUILD|   49 +++
 glib-2.68.patch |   26 
 icu68.patch |  170 ++
 3 files changed, 245 insertions(+)

Copied: qt5-webkit/repos/staging-x86_64/PKGBUILD (from rev 428872, 
qt5-webkit/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2021-11-22 00:44:19 UTC (rev 428873)
@@ -0,0 +1,49 @@
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt5-webkit
+_pkgver=5.212.0-alpha4
+pkgver=${_pkgver/-/}
+pkgrel=11
+arch=(x86_64)
+url='https://www.qt.io'
+license=(GPL3 LGPL3 FDL custom)
+pkgdesc='Classes for a WebKit2 based implementation and a new QML API'
+source=("https://github.com/qtwebkit/qtwebkit/releases/download/qtwebkit-$_pkgver/qtwebkit-$_pkgver.tar.xz";
+ icu68.patch
+ glib-2.68.patch
+ 
qt5-webkit-python-3.9.patch::"https://github.com/qtwebkit/qtwebkit/commit/78360c01.patch";
+ 
qt5-webkit-bison-3.7.patch::"https://github.com/qtwebkit/qtwebkit/commit/d92b11fe.patch";)
+depends=(qt5-location qt5-sensors qt5-webchannel libwebp libxslt libxcomposite 
gst-plugins-base hyphen woff2)
+makedepends=(cmake ruby gperf python qt5-doc qt5-tools)
+optdepends=('gst-plugins-good: Webm codec support')
+sha256sums=('9ca126da9273664dd23a3ccd0c9bebceb7bb534bddd743db31caf6a5a6d4a9e6'
+'0b40ed924f03ff6081af610bb0ee01560b7bd1fb68f8af02053304a01d4ccdf0'
+'4969dd03e482155e2490b50307dada81dda7bbc9e5398e3a53c20bc474f7c04e'
+'6e0cee08e4fa57b04752e80817f33562f48aa42608a3a620930b6040259b4932'
+'34f37b53ee0bc31c63ce85ebd1ae95543a8ba28483e387b20efd50574bd813be')
+
+prepare() {
+  cd qtwebkit-$_pkgver
+  patch -p0 -i ../icu68.patch # Fix build with ICU 68.x
+  patch -p1 -i ../glib-2.68.patch # 
https://github.com/qtwebkit/qtwebkit/issues/1057
+  patch -p1 -i ../qt5-webkit-python-3.9.patch # Fix build with python 3.9
+  patch -p1 -i ../qt5-webkit-bison-3.7.patch # Fix build with bison 3.7
+}
+
+build() {
+  cmake -B build -S qtwebkit-$_pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_CXX_FLAGS="${CXXFLAGS} -DNDEBUG" \
+-DPORT=Qt \
+-DENABLE_TOOLS=OFF
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}

Copied: qt5-webkit/repos/staging-x86_64/glib-2.68.patch (from rev 428872, 
qt5-webkit/trunk/glib-2.68.patch)
===
--- staging-x86_64/glib-2.68.patch  (rev 0)
+++ staging-x86_64/glib-2.68.patch  2021-11-22 00:44:19 UTC (rev 428873)
@@ -0,0 +1,26 @@
+From 5b698ba3faffd4e198a45be9fe74f53307395e4b Mon Sep 17 00:00:00 2001
+From: Fabian Vogt 
+Date: Wed, 7 Apr 2021 13:38:09 +0200
+Subject: [PATCH] Remove invalid g_object declarations to fix build with glib
+ >= 2.68
+
+g_object_ref_sink is defined as a macro meanwhile and so the build fails.
+Just remove the declarations, glib.h is included anyway.
+---
+ Source/WTF/wtf/glib/GRefPtr.h | 3 ---
+ 1 file changed, 3 deletions(-)
+
+diff --git a/Source/WTF/wtf/glib/GRefPtr.h b/Source/WTF/wtf/glib/GRefPtr.h
+index 06133d82cb35..d9a1d2f145f5 100644
+--- a/Source/WTF/wtf/glib/GRefPtr.h
 b/Source/WTF/wtf/glib/GRefPtr.h
+@@ -29,9 +29,6 @@
+ #include 
+ #include 
+ 
+-extern "C" void g_object_unref(gpointer);
+-extern "C" gpointer g_object_ref_sink(gpointer);
+-
+ namespace WTF {
+ 
+ enum GRefPtrAdoptType { GRefPtrAdopt };

Copied: qt5-webkit/repos/staging-x86_64/icu68.patch (from rev 428872, 
qt5-webkit/trunk/icu68.patch)
===
--- staging-x86_64/icu68.patch  (rev 0)
+++ staging-x86_64/icu68.patch  2021-11-22 00:44:19 UTC (rev 428873)
@@ -0,0 +1,170 @@
+Regressed by https://github.com/unicode-org/icu/commit/c3fe7e09d844
+
+In file included from Source/WebCore/platform/text/TextAllInOne.cpp:31:
+Source/WebCore/platform/text/TextCodecICU.cpp:311:42: error: use of undeclared 
identifier 'TRUE'
+ucnv_setFallback(m_converterICU, TRUE);
+ ^
+In file included from Source/WebCore/platform/text/TextAllInOne.cpp:40:
+In file included from Source/WebCore/platform/text/icu/UTextProvider.cpp:27:
+Sourc

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

2021-11-21 Thread Felix Yan via arch-commits
Date: Monday, November 22, 2021 @ 00:44:00
  Author: felixonmars
Revision: 428872

upgpkg: qt5-webkit 5.212.0alpha4-11: icu 70.1 rebuild

Modified:
  qt5-webkit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-22 00:37:58 UTC (rev 428871)
+++ PKGBUILD2021-11-22 00:44:00 UTC (rev 428872)
@@ -5,7 +5,7 @@
 pkgname=qt5-webkit
 _pkgver=5.212.0-alpha4
 pkgver=${_pkgver/-/}
-pkgrel=10
+pkgrel=11
 arch=(x86_64)
 url='https://www.qt.io'
 license=(GPL3 LGPL3 FDL custom)



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

2021-11-21 Thread Felix Yan via arch-commits
Date: Monday, November 22, 2021 @ 00:41:27
  Author: felixonmars
Revision: 1054137

archrelease: copy trunk to community-staging-x86_64

Added:
  gnucash/repos/community-staging-x86_64/
  gnucash/repos/community-staging-x86_64/PKGBUILD
(from rev 1054136, gnucash/trunk/PKGBUILD)

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

Copied: gnucash/repos/community-staging-x86_64/PKGBUILD (from rev 1054136, 
gnucash/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-11-22 00:41:27 UTC (rev 1054137)
@@ -0,0 +1,49 @@
+# Maintainer: Balló György 
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Juergen Hoetzel 
+# Contributor: Mark Schneider 
+
+pkgname=gnucash
+pkgver=4.8
+pkgrel=2
+pkgdesc='Personal and small-business financial-accounting application'
+arch=(x86_64)
+url='https://gnucash.org/'
+license=(GPL)
+depends=(aqbanking gwenhywfar boost-libs guile libdbi webkit2gtk)
+makedepends=(boost cmake gtest libdbi-drivers mariadb-libs postgresql-libs 
swig)
+optdepends=('gnucash-docs: documentation'
+'libdbi-drivers: open and save data into SQL database'
+'perl-date-manip: stock information lookups'
+'perl-finance-quote: stock information lookups')
+options=(!emptydirs)
+source=(https://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2)
+sha256sums=('15b8e4ff8336168eba88ef2faade377e5c5ff08e48b4660da1a33a8a407feb12')
+
+build() {
+  cd $pkgname-$pkgver
+
+  # Do not treat warnings as errors
+  sed -e 's|-Werror||g' -i CMakeLists.txt
+
+  cmake-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=/usr/lib \
+-DWITH_PYTHON=ON \
+-DCOMPILE_GSCHEMAS=OFF
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make -k check || : # 2 tests failed
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+
+  # Delete the gnucash-valgrind executable because the source files
+  # are not included with the package and the executable is hardlinked
+  # to the location that it was built at.
+  rm -f "$pkgdir/usr/bin/gnucash-valgrind"
+}



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

2021-11-21 Thread Felix Yan via arch-commits
Date: Monday, November 22, 2021 @ 00:41:20
  Author: felixonmars
Revision: 1054136

upgpkg: gnucash 4.8-2: icu 70.1 rebuild

Modified:
  gnucash/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-22 00:40:05 UTC (rev 1054135)
+++ PKGBUILD2021-11-22 00:41:20 UTC (rev 1054136)
@@ -5,7 +5,7 @@
 
 pkgname=gnucash
 pkgver=4.8
-pkgrel=1
+pkgrel=2
 pkgdesc='Personal and small-business financial-accounting application'
 arch=(x86_64)
 url='https://gnucash.org/'



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

2021-11-21 Thread Felix Yan via arch-commits
Date: Monday, November 22, 2021 @ 00:40:05
  Author: felixonmars
Revision: 1054135

archrelease: copy trunk to community-staging-x86_64

Added:
  libdatovka/repos/community-staging-x86_64/
  libdatovka/repos/community-staging-x86_64/PKGBUILD
(from rev 1054134, libdatovka/trunk/PKGBUILD)

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

Copied: libdatovka/repos/community-staging-x86_64/PKGBUILD (from rev 1054134, 
libdatovka/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-11-22 00:40:05 UTC (rev 1054135)
@@ -0,0 +1,27 @@
+# Maintainer: Jaroslav Lichtblau 
+
+pkgname=libdatovka
+pkgver=0.2.0
+pkgrel=2
+pkgdesc="ISDS client library"
+arch=('x86_64')
+url="https://www.datovka.cz/cs/pages/libdatovka.html";
+license=('LGPL')
+depends=('libxml2' 'openssl' 'curl')
+makedepends=('docbook-xsl')
+source=(https://secure.nic.cz/files/datove_schranky/$pkgname/$pkgname-$pkgver.tar.xz)
+sha256sums=('2c8835e30a4dac61d91596a9bc45ea5a53ea478855396388f66819c1444c3611')
+
+build() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  ./configure --prefix=/usr \
+
--with-docbook-xsl-stylesheets=/usr/share/xml/docbook/xsl-stylesheets-1.79.2
+  make
+}
+
+package() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  make DESTDIR="${pkgdir}" install
+}



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

2021-11-21 Thread Felix Yan via arch-commits
Date: Monday, November 22, 2021 @ 00:39:58
  Author: felixonmars
Revision: 1054134

upgpkg: libdatovka 0.2.0-2: icu 70.1 rebuild

Modified:
  libdatovka/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-11-22 00:39:44 UTC (rev 1054133)
+++ PKGBUILD2021-11-22 00:39:58 UTC (rev 1054134)
@@ -2,7 +2,7 @@
 
 pkgname=libdatovka
 pkgver=0.2.0
-pkgrel=1
+pkgrel=2
 pkgdesc="ISDS client library"
 arch=('x86_64')
 url="https://www.datovka.cz/cs/pages/libdatovka.html";



  1   2   3   4   5   6   7   >