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

2021-08-19 Thread Christian Hesse via arch-commits
Date: Friday, August 20, 2021 @ 05:48:54
  Author: eworm
Revision: 1003939

archrelease: copy trunk to multilib-testing-x86_64

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

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

Copied: lib32-e2fsprogs/repos/multilib-testing-x86_64/PKGBUILD (from rev 
1003938, lib32-e2fsprogs/trunk/PKGBUILD)
===
--- multilib-testing-x86_64/PKGBUILD(rev 0)
+++ multilib-testing-x86_64/PKGBUILD2021-08-20 05:48:54 UTC (rev 1003939)
@@ -0,0 +1,44 @@
+# Maintainer:  Ionut Biru 
+# Contributor: mightyjaym 
+# Contributor: Mikko Seppälä 
+
+pkgname=lib32-e2fsprogs
+pkgver=1.46.4
+pkgrel=1
+pkgdesc="Ext2/3/4 filesystem libraries (32-bit)"
+arch=('x86_64')
+license=('GPL' 'LGPL' 'MIT')
+url="http://e2fsprogs.sourceforge.net;
+depends=('lib32-glibc' 'e2fsprogs')
+makedepends=('bc' 'lib32-util-linux' 'gcc-multilib')
+provides=('libcom_err.so'
+  'libe2p.so'
+  'libext2fs.so'
+  'libss.so')
+validpgpkeys=('3AB057B7E78D945C8C5591FBD36F769BC11804F0') # Theodore Ts'o 

+source=("https://www.kernel.org/pub/linux/kernel/people/tytso/e2fsprogs/v${pkgver}/e2fsprogs-${pkgver}.tar."{xz,sign})
+sha256sums=('b11042533c1b1dcf17512f0da48e05b0c573dada1dd8b762864d10f4dc399713'
+'SKIP')
+
+build() {
+  export CC="gcc -m32"
+  export CXX="g++ -m32"
+  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
+
+  cd e2fsprogs-${pkgver}
+  ./configure --prefix=/usr \
+--libdir=/usr/lib32 \
+--with-root-prefix="" \
+--enable-elf-shlibs \
+--disable-{debugfs,imager,resizer,fsck,uuidd,libuuid,libblkid}
+  make
+}
+
+package() {
+  cd e2fsprogs-${pkgver}
+  make DESTDIR="${pkgdir}" install-libs
+
+  rm -rf "${pkgdir}"/usr/{bin,include,share}
+  mkdir -p "${pkgdir}"/usr/share/licenses
+  ln -s e2fsprogs "${pkgdir}"/usr/share/licenses/$pkgname
+}



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

2021-08-19 Thread Christian Hesse via arch-commits
Date: Friday, August 20, 2021 @ 05:48:52
  Author: eworm
Revision: 1003938

upgpkg: lib32-e2fsprogs 1.46.4-1: new upstream release

Modified:
  lib32-e2fsprogs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-20 05:20:19 UTC (rev 1003937)
+++ PKGBUILD2021-08-20 05:48:52 UTC (rev 1003938)
@@ -3,7 +3,7 @@
 # Contributor: Mikko Seppälä 
 
 pkgname=lib32-e2fsprogs
-pkgver=1.46.3
+pkgver=1.46.4
 pkgrel=1
 pkgdesc="Ext2/3/4 filesystem libraries (32-bit)"
 arch=('x86_64')
@@ -17,7 +17,7 @@
   'libss.so')
 validpgpkeys=('3AB057B7E78D945C8C5591FBD36F769BC11804F0') # Theodore Ts'o 

 
source=("https://www.kernel.org/pub/linux/kernel/people/tytso/e2fsprogs/v${pkgver}/e2fsprogs-${pkgver}.tar."{xz,sign})
-sha256sums=('86d1580facdd49f2e0e6b027e26b1e6c48af538762dc40aeed2a87153c1f11b7'
+sha256sums=('b11042533c1b1dcf17512f0da48e05b0c573dada1dd8b762864d10f4dc399713'
 'SKIP')
 
 build() {



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

2021-08-19 Thread Christian Hesse via arch-commits
Date: Friday, August 20, 2021 @ 05:46:50
  Author: eworm
Revision: 422393

archrelease: copy trunk to testing-x86_64

Added:
  e2fsprogs/repos/testing-x86_64/
  
e2fsprogs/repos/testing-x86_64/0001-mke2fs-fix-creating-a-file-system-image-w-o-a-pre-existing-file.patch
(from rev 422392, 
e2fsprogs/trunk/0001-mke2fs-fix-creating-a-file-system-image-w-o-a-pre-existing-file.patch)
  e2fsprogs/repos/testing-x86_64/MIT-LICENSE
(from rev 422392, e2fsprogs/trunk/MIT-LICENSE)
  e2fsprogs/repos/testing-x86_64/PKGBUILD
(from rev 422392, e2fsprogs/trunk/PKGBUILD)

+
 0001-mke2fs-fix-creating-a-file-system-image-w-o-a-pre-existing-file.patch |   
47 ++
 MIT-LICENSE|   
25 +++
 PKGBUILD   |   
73 ++
 3 files changed, 145 insertions(+)

Copied: 
e2fsprogs/repos/testing-x86_64/0001-mke2fs-fix-creating-a-file-system-image-w-o-a-pre-existing-file.patch
 (from rev 422392, 
e2fsprogs/trunk/0001-mke2fs-fix-creating-a-file-system-image-w-o-a-pre-existing-file.patch)
===
--- 
testing-x86_64/0001-mke2fs-fix-creating-a-file-system-image-w-o-a-pre-existing-file.patch
   (rev 0)
+++ 
testing-x86_64/0001-mke2fs-fix-creating-a-file-system-image-w-o-a-pre-existing-file.patch
   2021-08-20 05:46:50 UTC (rev 422393)
@@ -0,0 +1,47 @@
+commit 53464654bd33e58e3fff079f34261b823d839f3b
+Author: Theodore Ts'o 
+Date:   Mon Aug 2 21:08:01 2021 -0400
+
+mke2fs: fix creating a file system image w/o a pre-existing file
+
+The mke2fs program should allow creating a file system image when an
+explicit file system size is specified, even if the file doesn't yet
+exist.  By deferring the call to check_plausible() in commit
+942b00cb9d2f ("mke2fs: do not warn about a pre-existing partition
+table when using a non-zero offset") this behaviour was broken.
+
+Fix this regression by explicitly creating the file if the file system
+size is specified.
+
+Signed-off-by: Theodore Ts'o 
+
+diff --git a/misc/mke2fs.c b/misc/mke2fs.c
+index 306064df..31e8de1a 100644
+--- a/misc/mke2fs.c
 b/misc/mke2fs.c
+@@ -1986,6 +1986,25 @@ profile_error:
+   retval = ext2fs_get_device_size2(device_name,
+EXT2_BLOCK_SIZE(_param),
+_size);
++  if (retval == ENOENT) {
++  int fd;
++
++  if (!explicit_fssize) {
++  fprintf(stderr,
++  _("The file %s does not exist and no "
++"size was specified.\n"), device_name);
++  exit(1);
++  }
++  fd = ext2fs_open_file(device_name,
++O_CREAT | O_WRONLY, 0666);
++  if (fd < 0) {
++  retval = errno;
++  } else {
++  dev_size = 0;
++  retval = 0;
++  printf(_("Creating regular file %s\n"), device_name);
++  }
++  }
+   if (retval && (retval != EXT2_ET_UNIMPLEMENTED)) {
+   com_err(program_name, retval, "%s",
+   _("while trying to determine filesystem size"));

Copied: e2fsprogs/repos/testing-x86_64/MIT-LICENSE (from rev 422392, 
e2fsprogs/trunk/MIT-LICENSE)
===
--- testing-x86_64/MIT-LICENSE  (rev 0)
+++ testing-x86_64/MIT-LICENSE  2021-08-20 05:46:50 UTC (rev 422393)
@@ -0,0 +1,25 @@
+Copyright (c) 2003-2007 Theodore Ts'o 
+Copyright (c) 1997-2003 Yann Dirson 
+Copyright (c) 2001 Alcove 
+Copyright (c) 1997 Klee Dienes
+Copyright (c) 1995-1996 Michael Nonweiler 
+
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of this software and associated documentation files (the
+"Software"), to deal in the Software without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Software, and to
+permit persons to whom the Software is furnished to do so, subject
+to the following conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
+KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
+WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
+BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
+AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
+IN CONNECTION 

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

2021-08-19 Thread Christian Hesse via arch-commits
Date: Friday, August 20, 2021 @ 05:46:43
  Author: eworm
Revision: 422392

upgpkg: e2fsprogs 1.46.4-1: new upstream release

Modified:
  e2fsprogs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-19 23:03:14 UTC (rev 422391)
+++ PKGBUILD2021-08-20 05:46:43 UTC (rev 422392)
@@ -2,8 +2,8 @@
 # Contributor: judd 
 
 pkgname=e2fsprogs
-pkgver=1.46.3
-pkgrel=3
+pkgver=1.46.4
+pkgrel=1
 pkgdesc="Ext2/3/4 filesystem utilities"
 arch=('x86_64')
 license=('GPL' 'LGPL' 'MIT')
@@ -18,11 +18,9 @@
 options=('staticlibs')
 validpgpkeys=('3AB057B7E78D945C8C5591FBD36F769BC11804F0') # Theodore Ts'o 

 
source=("https://www.kernel.org/pub/linux/kernel/people/tytso/${pkgname}/v${pkgver}/${pkgname}-${pkgver}.tar."{xz,sign}
-
'0001-mke2fs-fix-creating-a-file-system-image-w-o-a-pre-existing-file.patch'
 'MIT-LICENSE')
-sha256sums=('86d1580facdd49f2e0e6b027e26b1e6c48af538762dc40aeed2a87153c1f11b7'
+sha256sums=('b11042533c1b1dcf17512f0da48e05b0c573dada1dd8b762864d10f4dc399713'
 'SKIP'
-'1e0eb9e1f809aa6b09131d9153bf683c152358a09a6770cbf6268d563ef3481a'
 'cc45386c1d71f438ad648fd7971e49e3074ad9dbacf9dd3a5b4cb61fd294ecbb')
 
 
@@ -29,9 +27,6 @@
 prepare() {
   cd "${srcdir}/${pkgname}-${pkgver}"
 
-  # mke2fs: fix creating a file system image w/o a pre-existing file
-  patch -Np1 < 
../0001-mke2fs-fix-creating-a-file-system-image-w-o-a-pre-existing-file.patch
-
   # Remove unnecessary init.d directory
   sed -i '/init\.d/s|^|#|' misc/Makefile.in
 }



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

2021-08-19 Thread Felix Yan via arch-commits
Date: Friday, August 20, 2021 @ 05:20:19
  Author: felixonmars
Revision: 1003937

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-20 05:20:11 UTC (rev 1003936)
+++ PKGBUILD2021-08-20 05:20:19 UTC (rev 1003937)
@@ -1,53 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=python-hypothesis
-pkgver=6.14.8
-pkgrel=1
-pkgdesc="Advanced Quickcheck style testing library for Python"
-arch=('any')
-license=('MPL')
-url="https://hypothesis.readthedocs.org;
-depends=('python-attrs' 'python-sortedcontainers')
-optdepends=('python-pytz: for datetime and django module'
-'python-faker: for fakefactory and django module'
-'python-django: for django module'
-'python-numpy: for numpy module'
-'python-pytest: for pytest module'
-'python-lark-parser: for lark module'
-'python-libcst: for codemods module')
-makedepends=('python-setuptools')
-checkdepends=('python-pytest' 'flake8' 'python-pytz' 'python-numpy' 
'python-faker'
-  'python-flaky' 'python-django' 'python-mock' 'python-pandas' 
'python-dpcontracts'
-  'python-pytest-xdist' 'python-lark-parser' 'python-pexpect' 
'python-coverage'
-  'python-typing_extensions' 'python-black' 'python-fakeredis' 
'python-libcst')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis/archive/hypothesis-python-$pkgver.tar.gz;)
-sha512sums=('3f99bf54e01a7d6945d898b8065b3241a1d9fc871adc9e3bec9cfe187e36651aee78eb57fa69e28405a668a0f784a5dc90acf213211d0c060a1e9a82de8e243e')
-
-prepare() {
-  mv hypothesis-hypothesis-python-$pkgver hypothesis-$pkgver
-}
-
-build() {
-  cd hypothesis-$pkgver/hypothesis-python
-  python setup.py build
-}
-
-check() {
-  # tests/numpy/test_lazy_import.py: 
https://github.com/HypothesisWorks/hypothesis/issues/2411
-
-  cd hypothesis-$pkgver/hypothesis-python
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  python examples/example_hypothesis_entrypoint/setup.py install 
--root="$PWD/tmp_install" --optimize=1
-
-  
PYTHONPATH="$PWD/tmp_install/usr/lib/python3.9/site-packages:$PWD/examples/example_hypothesis_entrypoint"
 \
-  PATH="$PWD/tmp_install/usr/bin:$PATH" \
-pytest --ignore tests/numpy/test_lazy_import.py --ignore tmp_install
-}
-
-package() {
-  cd hypothesis-$pkgver/hypothesis-python
-  python setup.py install --root="$pkgdir" --optimize=1
-
-  # It's only present when tests are enabled, so adding -f
-  rm -rf "$pkgdir"/usr/lib/python3.9/site-packages/tests
-}

Copied: python-hypothesis/repos/community-any/PKGBUILD (from rev 1003936, 
python-hypothesis/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-20 05:20:19 UTC (rev 1003937)
@@ -0,0 +1,53 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-hypothesis
+pkgver=6.14.9
+pkgrel=1
+pkgdesc="Advanced Quickcheck style testing library for Python"
+arch=('any')
+license=('MPL')
+url="https://hypothesis.readthedocs.org;
+depends=('python-attrs' 'python-sortedcontainers')
+optdepends=('python-pytz: for datetime and django module'
+'python-faker: for fakefactory and django module'
+'python-django: for django module'
+'python-numpy: for numpy module'
+'python-pytest: for pytest module'
+'python-lark-parser: for lark module'
+'python-libcst: for codemods module')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest' 'flake8' 'python-pytz' 'python-numpy' 
'python-faker'
+  'python-flaky' 'python-django' 'python-mock' 'python-pandas' 
'python-dpcontracts'
+  'python-pytest-xdist' 'python-lark-parser' 'python-pexpect' 
'python-coverage'
+  'python-typing_extensions' 'python-black' 'python-fakeredis' 
'python-libcst')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis/archive/hypothesis-python-$pkgver.tar.gz;)
+sha512sums=('a32d4f09ae6a44354d136164a517ea53c653fccb3e21a39ac63df78ebdf695c887f13749d2f310ac67863b6645a85dca73ef0bfab077aefe0486e445f6a85dce')
+
+prepare() {
+  mv hypothesis-hypothesis-python-$pkgver hypothesis-$pkgver
+}
+
+build() {
+  cd hypothesis-$pkgver/hypothesis-python
+  python setup.py build
+}
+
+check() {
+  # tests/numpy/test_lazy_import.py: 
https://github.com/HypothesisWorks/hypothesis/issues/2411
+
+  cd hypothesis-$pkgver/hypothesis-python
+  python setup.py install --root="$PWD/tmp_install" --optimize=1
+  python examples/example_hypothesis_entrypoint/setup.py install 

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

2021-08-19 Thread Felix Yan via arch-commits
Date: Friday, August 20, 2021 @ 05:20:11
  Author: felixonmars
Revision: 1003936

upgpkg: python-hypothesis 6.14.9-1

Modified:
  python-hypothesis/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-20 04:43:20 UTC (rev 1003935)
+++ PKGBUILD2021-08-20 05:20:11 UTC (rev 1003936)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=python-hypothesis
-pkgver=6.14.8
+pkgver=6.14.9
 pkgrel=1
 pkgdesc="Advanced Quickcheck style testing library for Python"
 arch=('any')
@@ -21,7 +21,7 @@
   'python-pytest-xdist' 'python-lark-parser' 'python-pexpect' 
'python-coverage'
   'python-typing_extensions' 'python-black' 'python-fakeredis' 
'python-libcst')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis/archive/hypothesis-python-$pkgver.tar.gz;)
-sha512sums=('3f99bf54e01a7d6945d898b8065b3241a1d9fc871adc9e3bec9cfe187e36651aee78eb57fa69e28405a668a0f784a5dc90acf213211d0c060a1e9a82de8e243e')
+sha512sums=('a32d4f09ae6a44354d136164a517ea53c653fccb3e21a39ac63df78ebdf695c887f13749d2f310ac67863b6645a85dca73ef0bfab077aefe0486e445f6a85dce')
 
 prepare() {
   mv hypothesis-hypothesis-python-$pkgver hypothesis-$pkgver



[arch-commits] Commit in pm2/repos/community-any (6 files)

2021-08-19 Thread Felix Yan via arch-commits
Date: Friday, August 20, 2021 @ 04:43:20
  Author: felixonmars
Revision: 1003935

archrelease: copy trunk to community-any

Added:
  pm2/repos/community-any/PKGBUILD
(from rev 1003934, pm2/trunk/PKGBUILD)
  pm2/repos/community-any/pm2.install
(from rev 1003934, pm2/trunk/pm2.install)
  pm2/repos/community-any/pm2.service
(from rev 1003934, pm2/trunk/pm2.service)
Deleted:
  pm2/repos/community-any/PKGBUILD
  pm2/repos/community-any/pm2.install
  pm2/repos/community-any/pm2.service

-+
 PKGBUILD|   72 +-
 pm2.install |   20 
 pm2.service |   32 -
 3 files changed, 62 insertions(+), 62 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-20 04:43:09 UTC (rev 1003934)
+++ PKGBUILD2021-08-20 04:43:20 UTC (rev 1003935)
@@ -1,36 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=pm2
-pkgver=5.1.0
-pkgrel=1
-pkgdesc='Production process manager for Node.JS applications with a built-in 
load balancer'
-arch=('any')
-url='https://pm2.keymetrics.io'
-license=('AGPL3')
-depends=('nodejs' 'semver')
-makedepends=('npm' 'git')
-install=pm2.install
-source=(https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz
-pm2.service)
-noextract=($pkgname-$pkgver.tgz)
-sha512sums=('ade277e4d3b1338fa0ec7d1e9d6e3b1c9b29df60accca92c782a2302e50c5247dfc97b060ca04c9c3aa1c4064c64ab475148e5d1c58512a29e86a0743831fc2b'
-
'0d80c16d4694511cc19970a3eb4a2e10f706a58c5cdc554809e12a12093a5b29ff6d30027cbe8646f837a42e40f7d9b7fe2853f96a76a38f47ddc14833f141ef')
-
-package() {
-  npm install -g --prefix "$pkgdir"/usr "$srcdir"/$pkgname-$pkgver.tgz
-  install -Dm644 pm2.service "$pkgdir"/usr/lib/systemd/system/pm2.service
-
-  # Non-deterministic race in npm gives 777 permissions to random directories.
-  # See https://github.com/npm/npm/issues/9359 for details.
-  chmod -R u=rwX,go=rX "$pkgdir"
-
-  # npm installs package.json owned by build user
-  # https://bugs.archlinux.org/task/63396
-  chown -R root:root "$pkgdir"
-
-  # Experimental dedup
-  cd "$pkgdir"/usr/lib/node_modules/$pkgname/node_modules
-  for dep in semver; do
-rm -r $dep;
-  done
-}

Copied: pm2/repos/community-any/PKGBUILD (from rev 1003934, pm2/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-20 04:43:20 UTC (rev 1003935)
@@ -0,0 +1,36 @@
+# Maintainer: Felix Yan 
+
+pkgname=pm2
+pkgver=5.1.1
+pkgrel=1
+pkgdesc='Production process manager for Node.JS applications with a built-in 
load balancer'
+arch=('any')
+url='https://pm2.keymetrics.io'
+license=('AGPL3')
+depends=('nodejs' 'semver')
+makedepends=('npm' 'git')
+install=pm2.install
+source=(https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz
+pm2.service)
+noextract=($pkgname-$pkgver.tgz)
+sha512sums=('d808299f62155ce2aef243fea9ac4a3af30b36d6d9ea56386f329c116d9ddadc3b3b496934eed0bc36b263869ffbc535f960a7f745233cae2adb03c5547b7fb0'
+
'0d80c16d4694511cc19970a3eb4a2e10f706a58c5cdc554809e12a12093a5b29ff6d30027cbe8646f837a42e40f7d9b7fe2853f96a76a38f47ddc14833f141ef')
+
+package() {
+  npm install -g --prefix "$pkgdir"/usr "$srcdir"/$pkgname-$pkgver.tgz
+  install -Dm644 pm2.service "$pkgdir"/usr/lib/systemd/system/pm2.service
+
+  # Non-deterministic race in npm gives 777 permissions to random directories.
+  # See https://github.com/npm/npm/issues/9359 for details.
+  chmod -R u=rwX,go=rX "$pkgdir"
+
+  # npm installs package.json owned by build user
+  # https://bugs.archlinux.org/task/63396
+  chown -R root:root "$pkgdir"
+
+  # Experimental dedup
+  cd "$pkgdir"/usr/lib/node_modules/$pkgname/node_modules
+  for dep in semver; do
+rm -r $dep;
+  done
+}

Deleted: pm2.install
===
--- pm2.install 2021-08-20 04:43:09 UTC (rev 1003934)
+++ pm2.install 2021-08-20 04:43:20 UTC (rev 1003935)
@@ -1,10 +0,0 @@
-post_install() {
-  # fixup permissions
-  chmod 755 /usr/lib/node_modules \
- /usr/lib/node_modules/pm2/node_modules \
- /usr/lib/node_modules/pm2/node_modules/.bin
-}
-
-post_upgrade() {
-  post_install
-}

Copied: pm2/repos/community-any/pm2.install (from rev 1003934, 
pm2/trunk/pm2.install)
===
--- pm2.install (rev 0)
+++ pm2.install 2021-08-20 04:43:20 UTC (rev 1003935)
@@ -0,0 +1,10 @@
+post_install() {
+  # fixup permissions
+  chmod 755 /usr/lib/node_modules \
+ /usr/lib/node_modules/pm2/node_modules \
+ /usr/lib/node_modules/pm2/node_modules/.bin
+}
+
+post_upgrade() {
+  post_install
+}

Deleted: pm2.service
===
--- pm2.service 2021-08-20 04:43:09 UTC (rev 1003934)
+++ pm2.service 2021-08-20 04:43:20 UTC (rev 1003935)
@@ 

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

2021-08-19 Thread Felix Yan via arch-commits
Date: Friday, August 20, 2021 @ 04:43:09
  Author: felixonmars
Revision: 1003934

upgpkg: pm2 5.1.1-1

Modified:
  pm2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-20 04:43:02 UTC (rev 1003933)
+++ PKGBUILD2021-08-20 04:43:09 UTC (rev 1003934)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=pm2
-pkgver=5.1.0
+pkgver=5.1.1
 pkgrel=1
 pkgdesc='Production process manager for Node.JS applications with a built-in 
load balancer'
 arch=('any')
@@ -13,7 +13,7 @@
 source=(https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz
 pm2.service)
 noextract=($pkgname-$pkgver.tgz)
-sha512sums=('ade277e4d3b1338fa0ec7d1e9d6e3b1c9b29df60accca92c782a2302e50c5247dfc97b060ca04c9c3aa1c4064c64ab475148e5d1c58512a29e86a0743831fc2b'
+sha512sums=('d808299f62155ce2aef243fea9ac4a3af30b36d6d9ea56386f329c116d9ddadc3b3b496934eed0bc36b263869ffbc535f960a7f745233cae2adb03c5547b7fb0'
 
'0d80c16d4694511cc19970a3eb4a2e10f706a58c5cdc554809e12a12093a5b29ff6d30027cbe8646f837a42e40f7d9b7fe2853f96a76a38f47ddc14833f141ef')
 
 package() {



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

2021-08-19 Thread Felix Yan via arch-commits
Date: Friday, August 20, 2021 @ 04:43:02
  Author: felixonmars
Revision: 1003933

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-20 04:42:54 UTC (rev 1003932)
+++ PKGBUILD2021-08-20 04:43:02 UTC (rev 1003933)
@@ -1,36 +0,0 @@
-# Maintainer: Alexander Rødseth 
-# Contributor: Jaroslav Lichtblau 
-# Contributor: Allan McRae 
-# Contributor: David Moore 
-
-pkgname=python-simplejson
-pkgver=3.17.3
-pkgrel=1
-pkgdesc='Simple, fast, extensible JSON encoder/decoder for Python'
-license=('MIT')
-arch=('x86_64')
-url='https://github.com/simplejson/simplejson'
-depends=('python')
-makedepends=('python-setuptools')
-checkdepends=('python-pytest-runner')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/simplejson/simplejson/archive/v$pkgver.tar.gz;)
-sha512sums=('eb8bae7cb14b9f3cdcc0fe8ce7fc9edde09099c054d6335d0afc26cfaa16657d580b095fd8879bb48856be82050824015e9636942dafe95c888ee2db43adfb97')
-
-build() {
-  cd "$srcdir"/simplejson-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd "$srcdir"/simplejson-$pkgver
-  python setup.py pytest
-}
-
-package_python-simplejson() {
-  cd simplejson-$pkgver
-  python setup.py install --root="$pkgdir"
-  install -Dm644 "$srcdir"/simplejson-$pkgver/LICENSE.txt \
-"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-simplejson/repos/community-x86_64/PKGBUILD (from rev 1003932, 
python-simplejson/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-20 04:43:02 UTC (rev 1003933)
@@ -0,0 +1,36 @@
+# Maintainer: Alexander Rødseth 
+# Contributor: Jaroslav Lichtblau 
+# Contributor: Allan McRae 
+# Contributor: David Moore 
+
+pkgname=python-simplejson
+pkgver=3.17.4
+pkgrel=1
+pkgdesc='Simple, fast, extensible JSON encoder/decoder for Python'
+license=('MIT')
+arch=('x86_64')
+url='https://github.com/simplejson/simplejson'
+depends=('python')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest-runner')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/simplejson/simplejson/archive/v$pkgver.tar.gz;)
+sha512sums=('16c16aea5e591cecd272e27d731fbb27f6f31c135e43c201daf476da38df384cfa60422b11eac1cb305ff62ad23e4c7da117803b5f2590046f0f74c7bbc7332d')
+
+build() {
+  cd "$srcdir"/simplejson-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd "$srcdir"/simplejson-$pkgver
+  python setup.py pytest
+}
+
+package_python-simplejson() {
+  cd simplejson-$pkgver
+  python setup.py install --root="$pkgdir"
+  install -Dm644 "$srcdir"/simplejson-$pkgver/LICENSE.txt \
+"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:



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

2021-08-19 Thread Felix Yan via arch-commits
Date: Friday, August 20, 2021 @ 04:42:54
  Author: felixonmars
Revision: 1003932

upgpkg: python-simplejson 3.17.4-1

Modified:
  python-simplejson/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-20 01:11:26 UTC (rev 1003931)
+++ PKGBUILD2021-08-20 04:42:54 UTC (rev 1003932)
@@ -4,7 +4,7 @@
 # Contributor: David Moore 
 
 pkgname=python-simplejson
-pkgver=3.17.3
+pkgver=3.17.4
 pkgrel=1
 pkgdesc='Simple, fast, extensible JSON encoder/decoder for Python'
 license=('MIT')
@@ -14,7 +14,7 @@
 makedepends=('python-setuptools')
 checkdepends=('python-pytest-runner')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/simplejson/simplejson/archive/v$pkgver.tar.gz;)
-sha512sums=('eb8bae7cb14b9f3cdcc0fe8ce7fc9edde09099c054d6335d0afc26cfaa16657d580b095fd8879bb48856be82050824015e9636942dafe95c888ee2db43adfb97')
+sha512sums=('16c16aea5e591cecd272e27d731fbb27f6f31c135e43c201daf476da38df384cfa60422b11eac1cb305ff62ad23e4c7da117803b5f2590046f0f74c7bbc7332d')
 
 build() {
   cd "$srcdir"/simplejson-$pkgver



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

2021-08-19 Thread Evangelos Foutras via arch-commits
Date: Thursday, August 19, 2021 @ 23:03:14
  Author: foutrelis
Revision: 422391

archrelease: copy trunk to staging-x86_64

Added:
  pidgin/repos/staging-x86_64/
  pidgin/repos/staging-x86_64/PKGBUILD
(from rev 422390, pidgin/trunk/PKGBUILD)

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

Copied: pidgin/repos/staging-x86_64/PKGBUILD (from rev 422390, 
pidgin/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2021-08-19 23:03:14 UTC (rev 422391)
@@ -0,0 +1,106 @@
+# Maintainer: Evangelos Foutras 
+# Contributor: Ionut Biru 
+# Contributor: Andrea Scarpino 
+# Contributor: Alexander Fehr 
+# Contributor: Lucien Immink 
+
+pkgname=('pidgin' 'libpurple' 'finch')
+pkgver=2.14.6
+pkgrel=2
+arch=('x86_64')
+url="https://pidgin.im/;
+license=('GPL')
+makedepends=('startup-notification' 'gtkspell' 'libxss' 'nss' 'libsasl' 'libsm'
+ 'libidn' 'libgadu' 'python' 'hicolor-icon-theme' 'farstream' 'tk'
+ 'libnsl' 'avahi' 'ca-certificates' 'intltool' 'libnm' 'dbus-glib'
+ 'libgnt' 'libxcrypt')
+options=('!emptydirs')
+source=(https://downloads.sourceforge.net/project/pidgin/Pidgin/$pkgver/$pkgname-$pkgver.tar.bz2{,.asc})
+sha256sums=('bb45f7c032f9efd6922a5dbf2840995775e5584771b23992d04f6eff7dff5336'
+'SKIP')
+validpgpkeys=('40DE1DC7288FE3F50AB938C548F66AFFD9BDB729') # Gary Kramlich 

+
+prepare() {
+  cd $pkgbase-$pkgver
+}
+
+build() {
+  cd $pkgbase-$pkgver
+
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--disable-schemas-install \
+--disable-gevolution \
+--disable-meanwhile \
+--disable-gnutls \
+--enable-cyrus-sasl \
+--disable-doxygen \
+--enable-nm \
+--with-system-ssl-certs=/etc/ssl/certs
+make
+}
+
+package_pidgin(){
+  pkgdesc="Multi-protocol instant messaging client"
+  depends=('libpurple' 'startup-notification' 'gtkspell' 'libxss' 'libsm'
+   'gst-plugins-base' 'gst-plugins-good' 'hicolor-icon-theme')
+  optdepends=('aspell: for spelling correction')
+
+  cd $pkgbase-$pkgver
+
+  # For linking
+  make -C libpurple DESTDIR="$pkgdir" install-libLTLIBRARIES
+
+  make -C pidgin DESTDIR="$pkgdir" install
+  make -C doc DESTDIR="$pkgdir" install
+
+  # Remove files that are packaged in libpurle
+  make -C libpurple DESTDIR="$pkgdir" uninstall-libLTLIBRARIES
+
+  rm "$pkgdir/usr/share/man/man1/finch.1"
+
+  # https://bugs.archlinux.org/task/53770
+  # https://bugs.archlinux.org/task/69026
+  find "$pkgdir/usr/lib/perl5" -name perllocal.pod -delete
+}
+
+package_libpurple(){
+  pkgdesc="IM library extracted from Pidgin"
+  depends=('farstream' 'libsasl' 'libidn' 'libnsl' 'libgadu' 'dbus-glib' 'nss'
+   'libnm' 'libxcrypt')
+  optdepends=('avahi: Bonjour protocol support'
+  'ca-certificates: SSL CA certificates'
+  'python-dbus: for purple-remote and purple-url-handler'
+  'tk: Tcl/Tk scripting support')
+
+  cd $pkgbase-$pkgver
+
+  for _dir in libpurple share/sounds share/ca-certs m4macros po; do
+make -C "$_dir" DESTDIR="$pkgdir" install
+  done
+
+  # https://bugs.archlinux.org/task/53770
+  # https://bugs.archlinux.org/task/69026
+  find "$pkgdir/usr/lib/perl5" -name perllocal.pod -delete
+}
+
+package_finch(){
+  pkgdesc="A ncurses-based messaging client"
+  depends=('libpurple' 'libgnt' 'libx11')
+
+  cd $pkgbase-$pkgver
+
+  # For linking
+  make -C libpurple DESTDIR="$pkgdir" install-libLTLIBRARIES
+
+  make -C finch DESTDIR="$pkgdir" install
+  make -C doc DESTDIR="$pkgdir" install
+
+  # Remove files that are packaged in libpurle
+  make -C libpurple DESTDIR="$pkgdir" uninstall-libLTLIBRARIES
+
+  rm "$pkgdir"/usr/share/man/man1/pidgin.1
+}
+
+# vim:set ts=2 sw=2 et:



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

2021-08-19 Thread Evangelos Foutras via arch-commits
Date: Thursday, August 19, 2021 @ 23:03:10
  Author: foutrelis
Revision: 422390

upgpkg: pidgin 2.14.6-2: libnsl 2.0.0 rebuild

Modified:
  pidgin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-19 22:34:45 UTC (rev 422389)
+++ PKGBUILD2021-08-19 23:03:10 UTC (rev 422390)
@@ -6,7 +6,7 @@
 
 pkgname=('pidgin' 'libpurple' 'finch')
 pkgver=2.14.6
-pkgrel=1
+pkgrel=2
 arch=('x86_64')
 url="https://pidgin.im/;
 license=('GPL')



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

2021-08-19 Thread Sébastien Luttringer via arch-commits
Date: Thursday, August 19, 2021 @ 22:34:45
  Author: seblu
Revision: 422389

archrelease: copy trunk to testing-x86_64

Added:
  grep/repos/testing-x86_64/
  grep/repos/testing-x86_64/PKGBUILD
(from rev 422388, grep/trunk/PKGBUILD)

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

Copied: grep/repos/testing-x86_64/PKGBUILD (from rev 422388, 
grep/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2021-08-19 22:34:45 UTC (rev 422389)
@@ -0,0 +1,49 @@
+# Maintainer: Sébastien Luttringer 
+# Contributor: Allan McRae 
+# Contributor: judd 
+
+pkgname=grep
+pkgver=3.7
+pkgrel=1
+pkgdesc='A string search utility'
+arch=('x86_64')
+license=('GPL3')
+url='https://www.gnu.org/software/grep/'
+groups=('base-devel')
+depends=('glibc' 'pcre')
+makedepends=('texinfo')
+validpgpkeys=('155D3FC500C834486D1EEA677FD9FCCB000B') # Jim Meyering
+source=("https://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('5c10da312460aec721984d5d83246d24520ec438dd48d7ab5a05dbc0d6d6823c'
+'SKIP')
+
+prepare() {
+  cd $pkgname-$pkgver
+  # apply patch from the source array (should be a pacman feature)
+  local src
+  for src in "${source[@]}"; do
+src="${src%%::*}"
+src="${src##*/}"
+[[ $src = *.patch ]] || continue
+msg2 "Applying patch $src..."
+patch -Np1 < "../$src"
+  done
+}
+
+build() {
+  cd $pkgname-$pkgver
+  # configure option --without-included-regex removed in 3.7
+  # see: https://lists.gnu.org/archive/html/bug-grep/2021-08/msg00028.html
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}



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

2021-08-19 Thread Sébastien Luttringer via arch-commits
Date: Thursday, August 19, 2021 @ 22:34:40
  Author: seblu
Revision: 422388

upgpkg: grep 3.7-1

Modified:
  grep/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-19 22:13:17 UTC (rev 422387)
+++ PKGBUILD2021-08-19 22:34:40 UTC (rev 422388)
@@ -3,7 +3,7 @@
 # Contributor: judd 
 
 pkgname=grep
-pkgver=3.6
+pkgver=3.7
 pkgrel=1
 pkgdesc='A string search utility'
 arch=('x86_64')
@@ -14,7 +14,7 @@
 makedepends=('texinfo')
 validpgpkeys=('155D3FC500C834486D1EEA677FD9FCCB000B') # Jim Meyering
 source=("https://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('667e15e8afe189e93f9f21a7cd3a7b3f776202f417330b248c2ad4f997d9373e'
+sha256sums=('5c10da312460aec721984d5d83246d24520ec438dd48d7ab5a05dbc0d6d6823c'
 'SKIP')
 
 prepare() {
@@ -32,7 +32,9 @@
 
 build() {
   cd $pkgname-$pkgver
-  ./configure --prefix=/usr --without-included-regex
+  # configure option --without-included-regex removed in 3.7
+  # see: https://lists.gnu.org/archive/html/bug-grep/2021-08/msg00028.html
+  ./configure --prefix=/usr
   make
 }
 



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

2021-08-19 Thread David Runge via arch-commits
Date: Thursday, August 19, 2021 @ 22:13:17
  Author: dvzrv
Revision: 422387

archrelease: copy trunk to staging-x86_64

Added:
  postfix/repos/staging-x86_64/
  postfix/repos/staging-x86_64/PKGBUILD
(from rev 422386, postfix/trunk/PKGBUILD)
  postfix/repos/staging-x86_64/postfix-3.5.8-main_defaults.patch
(from rev 422386, postfix/trunk/postfix-3.5.8-main_defaults.patch)
  postfix/repos/staging-x86_64/postfix.install
(from rev 422386, postfix/trunk/postfix.install)
  postfix/repos/staging-x86_64/postfix.service
(from rev 422386, postfix/trunk/postfix.service)
  postfix/repos/staging-x86_64/postfix.sysusers
(from rev 422386, postfix/trunk/postfix.sysusers)
  postfix/repos/staging-x86_64/postfix.tmpfiles
(from rev 422386, postfix/trunk/postfix.tmpfiles)

---+
 PKGBUILD  |  239 
 postfix-3.5.8-main_defaults.patch |   19 ++
 postfix.install   |8 +
 postfix.service   |   18 ++
 postfix.sysusers  |2 
 postfix.tmpfiles  |   16 ++
 6 files changed, 302 insertions(+)

Copied: postfix/repos/staging-x86_64/PKGBUILD (from rev 422386, 
postfix/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2021-08-19 22:13:17 UTC (rev 422387)
@@ -0,0 +1,239 @@
+# Maintainer: David Runge 
+# Contributor: Gaetan Bisson 
+# Contributor: Jeff Brodnax 
+# Contributor: Paul Mattal 
+
+pkgbase=postfix
+pkgname=('postfix' 'postfix-cdb' 'postfix-ldap' 'postfix-lmdb' 'postfix-mysql'
+'postfix-pcre' 'postfix-pgsql' 'postfix-sqlite')
+pkgver=3.6.2
+pkgrel=2
+url="http://www.postfix.org/;
+pkgdesc='Fast, easy to administer, secure mail server'
+license=('EPL')
+arch=('x86_64')
+depends=('glibc')
+makedepends=('db' 'icu' 'libldap' 'libnsl' 'libsasl' 'lmdb' 'mariadb-libs'
+'openssl' 'pcre' 'postgresql-libs' 'sqlite' 'tinycdb' 'zlib')
+source=("https://de.postfix.org/ftpmirror/official/${pkgname}-${pkgver}.tar.gz;
+
"${pkgname}-${pkgver}.tar.gz.sig::https://de.postfix.org/ftpmirror/official/${pkgname}-${pkgver}.tar.gz.gpg2;
+"${pkgname}-3.5.8-main_defaults.patch"
+"${pkgname}.service"
+"${pkgname}.sysusers"
+"${pkgname}.tmpfiles"
+)
+sha512sums=('464ce9ec77e637ede91123472a0383b2bfda52102f9e9852c7191016d4fda2e14f302f2db9793887c182688c2a14dde6eeda728523196a627a8028f99555a4d9'
+'SKIP'
+
'7b2785aa8120ca3ff91b405baf675e9e11f8d58b18a9b842672e7ae30932febddac10556a70823d8746fcb160bceb4dbabdee45cf46b02fc0127057656fb85c4'
+
'27f54747ad480d65b560c9dbc97e12c6353e4bceca0ffe3e358e31de56db0ad79928164c9f8790c73a9f791daa378253d2ee29b5a71778553ec889b2cf97'
+
'a7f15970f613ae7b98ce1b84ca0a6034ce3cc7b2b9ce7160dad9731f740fb762f4a54f44acceb5f06f8744fa9e952b088086af8a69da388a600b742a3cda37f2'
+
'd08574a6acd595fc146513c92dc1bb341c3432d67de1e93ab73a7ce60e385dd34f3a55e3d3d7aec5f358ac4aae260f028599ac47650ebc663cea3043a760a7bc')
+b2sums=('349f3eb2995fe72c89e374a2f95cbb09d4a4f5a5c896e340a2a166ffcb2c498ba514022a59a17d2731807f6dadc03f804a3d4b16127dd2d6addb825558b7ffd6'
+'SKIP'
+
'b5f19e0619f1fb017cd889c14e341c21146b3afe7b9eefcdb7fb1eb83a357434b899d1e92f3ab0023c78ef8f2de6ae54c4599ee0f0bd04d257f4ca0a4dc9a16c'
+
'02dd441cf6e4a7c2bc0de876f020b0784d811f77a5c6102dd075d67b07158dbc53c8b4d62bc8035283d4f349008574b1c3fac03f4519d56ffd809cb5bcfb7bea'
+
'db58b7deb24cea16fb84f56680f683f72e11a95039969878e3819607aad5e65af9d9f50007e7710609065c0e3ebb9b30c1d929162b74eca5e74434d82cf1'
+
'de31693cea5f452a9c8c0d1cf5210a6e67c0176f8b1a4d74106f2e803911569e9fdbb2301b3b5dc7ad6a6da285026b1a3ed3de52117d216b030cf0d92348909d')
+validpgpkeys=('622C7C012254C186677469C50C0B590E80CA15A7') # Wietse Venema 

+
+prepare() {
+  cd "${pkgbase}-${pkgver}"
+  # add distribution defaults to main.cf (alias_maps and alias_database)
+  patch -Np1 -i ../"${pkgbase}-3.5.8-main_defaults.patch"
+
+  # create work directories for split package configuration
+  mkdir -vp dynamicmaps.cf.d "${pkgbase}-files.d"
+}
+
+build() {
+  local _ccargs=(
+'-fPIC' '-fcommon'
+'-DUSE_SASL_AUTH'
+'-DUSE_CYRUS_SASL' '-I/usr/include/sasl'
+'-DHAS_LDAP'
+'-DUSE_LDAP_SASL'
+'-DHAS_LMDB'
+'-DUSE_TLS'
+'-DHAS_MYSQL' '-I/usr/include/mysql'
+'-DHAS_PGSQL' '-I/usr/include/postgresql'
+'-DHAS_SQLITE'
+'-DHAS_CDB'
+'-DDEF_COMMAND_DIR=\"/usr/bin\"'
+'-DDEF_DAEMON_DIR=\"/usr/lib/postfix/bin\"'
+'-DDEF_SENDMAIL_PATH=\"/usr/bin/sendmail\"'
+'-DDEF_README_DIR=\"/usr/share/doc/postfix\"'
+'-DDEF_MANPAGE_DIR=\"/usr/share/man\"'
+  )
+
+  cd "${pkgbase}-${pkgver}"
+  # NOTE: descriptions of variables in makedefs
+  make makefiles \
+DEBUG='' \
+pie=yes \
+shared=yes \
+dynamicmaps=yes \
+CCARGS="${_ccargs[*]}" \
+

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

2021-08-19 Thread David Runge via arch-commits
Date: Thursday, August 19, 2021 @ 22:12:46
  Author: dvzrv
Revision: 422386

upgpkg: postfix 3.6.2-2: Rebuild against libnsl 2.0.0.

Modified:
  postfix/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-19 22:07:51 UTC (rev 422385)
+++ PKGBUILD2021-08-19 22:12:46 UTC (rev 422386)
@@ -7,7 +7,7 @@
 pkgname=('postfix' 'postfix-cdb' 'postfix-ldap' 'postfix-lmdb' 'postfix-mysql'
 'postfix-pcre' 'postfix-pgsql' 'postfix-sqlite')
 pkgver=3.6.2
-pkgrel=1
+pkgrel=2
 url="http://www.postfix.org/;
 pkgdesc='Fast, easy to administer, secure mail server'
 license=('EPL')



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

2021-08-19 Thread David Runge via arch-commits
Date: Thursday, August 19, 2021 @ 22:10:39
  Author: dvzrv
Revision: 1003929

archrelease: copy trunk to multilib-staging-x86_64

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

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

Copied: lib32-libnsl/repos/multilib-staging-x86_64/PKGBUILD (from rev 1003928, 
lib32-libnsl/trunk/PKGBUILD)
===
--- multilib-staging-x86_64/PKGBUILD(rev 0)
+++ multilib-staging-x86_64/PKGBUILD2021-08-19 22:10:39 UTC (rev 1003929)
@@ -0,0 +1,48 @@
+# Maintainer: Maxime Gauduin 
+# Maintainer: David Runge 
+# Contributor: Bartłomiej Piotrowski 
+
+_name=libnsl
+pkgname=lib32-libnsl
+pkgver=2.0.0
+pkgrel=1
+pkgdesc='Public client interface library for NIS(YP)'
+arch=(x86_64)
+url=https://github.com/thkukuk/libnsl
+license=(LGPL2.1)
+depends=(
+  lib32-glibc
+  lib32-libtirpc
+  "libnsl=${pkgver}"
+)
+provides=('libnsl.so')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/thkukuk/${_name}/archive/v${pkgver}.tar.gz;)
+sha512sums=('86a7738707a3e4e56b60c8de0445fb576e66148bc12fa2a6aab422ea81eb4b42be3287a12f78384acd2b8bfb3885e9a0ce4f7328f078da3a5099acb66a35a935')
+b2sums=('e16bba0d64afa3c1473be831fa9fa743e88323091a4ee62436383169d282b1ad6deab3ff1f9462828c88e443a4b9b913ac18b36c68664593a6a80dae25988b7d')
+
+prepare() {
+  cd "$_name-$pkgver"
+  autoreconf -fiv
+}
+
+build() {
+  cd "$_name-$pkgver"
+
+  export CC='gcc -m32'
+  export CXX='g++ -m32'
+  export PKG_CONFIG_PATH='/usr/lib32/pkg-config'
+
+  ./configure \
+--prefix=/usr \
+--libdir=/usr/lib32 \
+--disable-static
+  make
+}
+
+package() {
+  cd "$_name-$pkgver"
+  make DESTDIR="${pkgdir}" install
+  rm -rf "${pkgdir}"/usr/include
+}
+
+# vim: ts=2 sw=2 et:



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

2021-08-19 Thread David Runge via arch-commits
Date: Thursday, August 19, 2021 @ 22:10:32
  Author: dvzrv
Revision: 1003928

upgpkg: lib32-libnsl 2.0.0-1: Upgrade to 2.0.0.

Modify pkgdesc, as upstream removed NIS+ support.

Modified:
  lib32-libnsl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-19 22:07:27 UTC (rev 1003927)
+++ PKGBUILD2021-08-19 22:10:32 UTC (rev 1003928)
@@ -4,9 +4,9 @@
 
 _name=libnsl
 pkgname=lib32-libnsl
-pkgver=1.3.0
-pkgrel=2
-pkgdesc='Public client interface library for NIS(YP) and NIS+'
+pkgver=2.0.0
+pkgrel=1
+pkgdesc='Public client interface library for NIS(YP)'
 arch=(x86_64)
 url=https://github.com/thkukuk/libnsl
 license=(LGPL2.1)
@@ -17,8 +17,8 @@
 )
 provides=('libnsl.so')
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/thkukuk/${_name}/archive/v${pkgver}.tar.gz;)
-sha512sums=('ce75ee9e54f1bdd2b31886e8157ff5f654511c3da017e0d9f8d0da6a2a9f9a78ff2e5f72cfb7ce3a23065f57337db51e3c8842a7e990350a62612018f4960342')
-b2sums=('d5116c2837a7ed5d5916d571d2e5deaf733b2e3e4401c2ebb0ec253d2755c2dc169139ea64756bd4ab28e3107f9ff1dcdd5ef6657828862a95ca18f2f145e3b3')
+sha512sums=('86a7738707a3e4e56b60c8de0445fb576e66148bc12fa2a6aab422ea81eb4b42be3287a12f78384acd2b8bfb3885e9a0ce4f7328f078da3a5099acb66a35a935')
+b2sums=('e16bba0d64afa3c1473be831fa9fa743e88323091a4ee62436383169d282b1ad6deab3ff1f9462828c88e443a4b9b913ac18b36c68664593a6a80dae25988b7d')
 
 prepare() {
   cd "$_name-$pkgver"



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

2021-08-19 Thread David Runge via arch-commits
Date: Thursday, August 19, 2021 @ 22:07:51
  Author: dvzrv
Revision: 422385

archrelease: copy trunk to staging-x86_64

Added:
  libnsl/repos/staging-x86_64/
  libnsl/repos/staging-x86_64/PKGBUILD
(from rev 422384, libnsl/trunk/PKGBUILD)

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

Copied: libnsl/repos/staging-x86_64/PKGBUILD (from rev 422384, 
libnsl/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2021-08-19 22:07:51 UTC (rev 422385)
@@ -0,0 +1,32 @@
+# Maintainer: David Runge 
+# Contributor: Bartłomiej Piotrowski 
+
+pkgname=libnsl
+pkgver=2.0.0
+pkgrel=1
+pkgdesc="Public client interface library for NIS(YP)"
+arch=('x86_64')
+url="https://github.com/thkukuk/libnsl;
+license=('LGPL2.1')
+depends=('glibc' 'libtirpc')
+provides=('libnsl.so')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha512sums=('86a7738707a3e4e56b60c8de0445fb576e66148bc12fa2a6aab422ea81eb4b42be3287a12f78384acd2b8bfb3885e9a0ce4f7328f078da3a5099acb66a35a935')
+b2sums=('e16bba0d64afa3c1473be831fa9fa743e88323091a4ee62436383169d282b1ad6deab3ff1f9462828c88e443a4b9b913ac18b36c68664593a6a80dae25988b7d')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+  autoreconf -fiv
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+  install -vDm 644 {AUTHORS,NEWS,README} -t 
"${pkgdir}/usr/share/doc/${pkgname}"
+}



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

2021-08-19 Thread David Runge via arch-commits
Date: Thursday, August 19, 2021 @ 22:07:44
  Author: dvzrv
Revision: 422384

upgpkg: libnsl 2.0.0-1: Upgrade to 2.0.0.

Modify pkgdesc, as upstream removed NIS+ support.
Install docs.

Modified:
  libnsl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-19 22:07:36 UTC (rev 422383)
+++ PKGBUILD2021-08-19 22:07:44 UTC (rev 422384)
@@ -2,9 +2,9 @@
 # Contributor: Bartłomiej Piotrowski 
 
 pkgname=libnsl
-pkgver=1.3.0
-pkgrel=2
-pkgdesc="Public client interface library for NIS(YP) and NIS+"
+pkgver=2.0.0
+pkgrel=1
+pkgdesc="Public client interface library for NIS(YP)"
 arch=('x86_64')
 url="https://github.com/thkukuk/libnsl;
 license=('LGPL2.1')
@@ -11,12 +11,12 @@
 depends=('glibc' 'libtirpc')
 provides=('libnsl.so')
 source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha512sums=('ce75ee9e54f1bdd2b31886e8157ff5f654511c3da017e0d9f8d0da6a2a9f9a78ff2e5f72cfb7ce3a23065f57337db51e3c8842a7e990350a62612018f4960342')
-b2sums=('d5116c2837a7ed5d5916d571d2e5deaf733b2e3e4401c2ebb0ec253d2755c2dc169139ea64756bd4ab28e3107f9ff1dcdd5ef6657828862a95ca18f2f145e3b3')
+sha512sums=('86a7738707a3e4e56b60c8de0445fb576e66148bc12fa2a6aab422ea81eb4b42be3287a12f78384acd2b8bfb3885e9a0ce4f7328f078da3a5099acb66a35a935')
+b2sums=('e16bba0d64afa3c1473be831fa9fa743e88323091a4ee62436383169d282b1ad6deab3ff1f9462828c88e443a4b9b913ac18b36c68664593a6a80dae25988b7d')
 
 prepare() {
   cd "$pkgname-$pkgver"
-  autoreconf -fi
+  autoreconf -fiv
 }
 
 build() {
@@ -28,4 +28,5 @@
 package() {
   cd "$pkgname-$pkgver"
   make DESTDIR="$pkgdir" install
+  install -vDm 644 {AUTHORS,NEWS,README} -t 
"${pkgdir}/usr/share/doc/${pkgname}"
 }



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

2021-08-19 Thread Sébastien Luttringer via arch-commits
Date: Thursday, August 19, 2021 @ 22:07:30
  Author: seblu
Revision: 422382

upgpkg: nftables 1:1.0.0-1

Modified:
  nftables/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-19 21:52:10 UTC (rev 422381)
+++ PKGBUILD2021-08-19 22:07:30 UTC (rev 422382)
@@ -2,8 +2,8 @@
 
 pkgname=nftables
 epoch=1
-pkgver=0.9.9
-pkgrel=6
+pkgver=1.0.0
+pkgrel=1
 pkgdesc='Netfilter tables userspace tools'
 arch=('x86_64')
 url='https://netfilter.org/projects/nftables/'
@@ -17,7 +17,7 @@
 'nftables.conf'
 'nftables.service')
 install=nftables.install
-sha256sums=('76ef2dc7fd0d79031a8369487739a217ca83996b3a746cec5bda79da11e3f1b4'
+sha256sums=('58bf547daf967a2b88ecb4f425f126006ebde22711db806b25c1d6cf84fe45f4'
 'SKIP'
 '2aff88019097d21dbfa4713f5b54c184751c86376e458b683f8d90f3abd232a8'
 'deffeef36fe658867dd9203ec13dec85047a6d224ea63334dcf60db97e1809ea')



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

2021-08-19 Thread Sébastien Luttringer via arch-commits
Date: Thursday, August 19, 2021 @ 22:07:36
  Author: seblu
Revision: 422383

archrelease: copy trunk to extra-x86_64

Added:
  nftables/repos/extra-x86_64/PKGBUILD
(from rev 422382, nftables/trunk/PKGBUILD)
  nftables/repos/extra-x86_64/nftables.conf
(from rev 422382, nftables/trunk/nftables.conf)
  nftables/repos/extra-x86_64/nftables.install
(from rev 422382, nftables/trunk/nftables.install)
  nftables/repos/extra-x86_64/nftables.service
(from rev 422382, nftables/trunk/nftables.service)
Deleted:
  nftables/repos/extra-x86_64/PKGBUILD
  nftables/repos/extra-x86_64/nftables.conf
  nftables/repos/extra-x86_64/nftables.install
  nftables/repos/extra-x86_64/nftables.service

--+
 PKGBUILD |  118 ++---
 nftables.conf|   54 
 nftables.install |   20 
 nftables.service |   24 +-
 4 files changed, 108 insertions(+), 108 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-19 22:07:30 UTC (rev 422382)
+++ PKGBUILD2021-08-19 22:07:36 UTC (rev 422383)
@@ -1,59 +0,0 @@
-# Maintainer: Sébastien "Seblu" Luttringer 
-
-pkgname=nftables
-epoch=1
-pkgver=0.9.9
-pkgrel=6
-pkgdesc='Netfilter tables userspace tools'
-arch=('x86_64')
-url='https://netfilter.org/projects/nftables/'
-license=('GPL2')
-depends=('libmnl' 'libnftnl' 'gmp' 'readline' 'ncurses' 'jansson')
-optdepends=('python: Python bindings')
-makedepends=('asciidoc' 'python')
-backup=('etc/nftables.conf')
-validpgpkeys=('37D964ACC04981C75500FB9BD55D978A8A1420E4') # Netfilter Core Team
-source=("https://netfilter.org/projects/nftables/files/nftables-$pkgver.tar.bz2"{,.sig}
-'nftables.conf'
-'nftables.service')
-install=nftables.install
-sha256sums=('76ef2dc7fd0d79031a8369487739a217ca83996b3a746cec5bda79da11e3f1b4'
-'SKIP'
-'2aff88019097d21dbfa4713f5b54c184751c86376e458b683f8d90f3abd232a8'
-'deffeef36fe658867dd9203ec13dec85047a6d224ea63334dcf60db97e1809ea')
-
-prepare() {
-  cd $pkgname-$pkgver
-  # apply patch from the source array (should be a pacman feature)
-  local filename
-  for filename in "${source[@]}"; do
-if [[ "$filename" =~ \.patch$ ]]; then
-  msg2 "Applying patch ${filename##*/}"
-  patch -p1 -N -i "$srcdir/${filename##*/}"
-fi
-  done
-  :
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure \
---prefix=/usr \
---sbindir=/usr/bin \
---sysconfdir=/usr/share \
---with-json \
---disable-debug
-  make
-}
-
-package() {
-  pushd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-  popd
-  # basic safe firewall config
-  install -Dm644 nftables.conf "$pkgdir/etc/nftables.conf"
-  # systemd
-  install -Dm644 nftables.service 
"$pkgdir/usr/lib/systemd/system/nftables.service"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: nftables/repos/extra-x86_64/PKGBUILD (from rev 422382, 
nftables/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-19 22:07:36 UTC (rev 422383)
@@ -0,0 +1,59 @@
+# Maintainer: Sébastien "Seblu" Luttringer 
+
+pkgname=nftables
+epoch=1
+pkgver=1.0.0
+pkgrel=1
+pkgdesc='Netfilter tables userspace tools'
+arch=('x86_64')
+url='https://netfilter.org/projects/nftables/'
+license=('GPL2')
+depends=('libmnl' 'libnftnl' 'gmp' 'readline' 'ncurses' 'jansson')
+optdepends=('python: Python bindings')
+makedepends=('asciidoc' 'python')
+backup=('etc/nftables.conf')
+validpgpkeys=('37D964ACC04981C75500FB9BD55D978A8A1420E4') # Netfilter Core Team
+source=("https://netfilter.org/projects/nftables/files/nftables-$pkgver.tar.bz2"{,.sig}
+'nftables.conf'
+'nftables.service')
+install=nftables.install
+sha256sums=('58bf547daf967a2b88ecb4f425f126006ebde22711db806b25c1d6cf84fe45f4'
+'SKIP'
+'2aff88019097d21dbfa4713f5b54c184751c86376e458b683f8d90f3abd232a8'
+'deffeef36fe658867dd9203ec13dec85047a6d224ea63334dcf60db97e1809ea')
+
+prepare() {
+  cd $pkgname-$pkgver
+  # apply patch from the source array (should be a pacman feature)
+  local filename
+  for filename in "${source[@]}"; do
+if [[ "$filename" =~ \.patch$ ]]; then
+  msg2 "Applying patch ${filename##*/}"
+  patch -p1 -N -i "$srcdir/${filename##*/}"
+fi
+  done
+  :
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure \
+--prefix=/usr \
+--sbindir=/usr/bin \
+--sysconfdir=/usr/share \
+--with-json \
+--disable-debug
+  make
+}
+
+package() {
+  pushd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  popd
+  # basic safe firewall config
+  install -Dm644 nftables.conf "$pkgdir/etc/nftables.conf"
+  # systemd
+  install -Dm644 nftables.service 
"$pkgdir/usr/lib/systemd/system/nftables.service"
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: nftables.conf
===
--- 

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

2021-08-19 Thread Orhun Parmaksiz via arch-commits
Date: Thursday, August 19, 2021 @ 22:07:27
  Author: orhun
Revision: 1003927

archrelease: copy trunk to community-x86_64

Added:
  cargo-spellcheck/repos/community-x86_64/PKGBUILD
(from rev 1003926, cargo-spellcheck/trunk/PKGBUILD)
Deleted:
  cargo-spellcheck/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-19 22:07:17 UTC (rev 1003926)
+++ PKGBUILD2021-08-19 22:07:27 UTC (rev 1003927)
@@ -1,33 +0,0 @@
-# Maintainer: Orhun Parmaksız 
-# Contributor: Sanpi 
-
-pkgname=cargo-spellcheck
-pkgver=0.8.12
-pkgrel=1
-pkgdesc="Checks all your documentation for spelling and grammar mistakes"
-arch=('x86_64')
-url="https://github.com/drahnr/cargo-spellcheck;
-license=('MIT' 'Apache')
-depends=('hunspell')
-makedepends=('rust' 'clang' 'hunspell-en_US')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha256sums=('27287f8559571b4cd79fef99d957d9fa13c2d424741ffcc71bf609ca691e1e8e')
-
-build() {
-  cd "$pkgname-$pkgver"
-  cargo build --release --locked
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-  cargo test --release --locked
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  install -Dm 755 "target/release/$pkgname" -t "$pkgdir/usr/bin"
-  install -Dm 644 README.md -t "$pkgdir/usr/share/doc/$pkgname"
-  install -Dm 644 LICENSE-MIT -t "$pkgdir/usr/share/licenses/$pkgname"
-}
-
-# vim: ts=2 sw=2 et:

Copied: cargo-spellcheck/repos/community-x86_64/PKGBUILD (from rev 1003926, 
cargo-spellcheck/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-19 22:07:27 UTC (rev 1003927)
@@ -0,0 +1,33 @@
+# Maintainer: Orhun Parmaksız 
+# Contributor: Sanpi 
+
+pkgname=cargo-spellcheck
+pkgver=0.8.13
+pkgrel=1
+pkgdesc="Checks all your documentation for spelling and grammar mistakes"
+arch=('x86_64')
+url="https://github.com/drahnr/cargo-spellcheck;
+license=('MIT' 'Apache')
+depends=('hunspell')
+makedepends=('rust' 'clang' 'hunspell-en_US')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha256sums=('7f15a875567968c61eb7821e48f1837ee205c196fb71df920fe6c8231faefa89')
+
+build() {
+  cd "$pkgname-$pkgver"
+  cargo build --release --locked
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  cargo test --release --locked
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  install -Dm 755 "target/release/$pkgname" -t "$pkgdir/usr/bin"
+  install -Dm 644 README.md -t "$pkgdir/usr/share/doc/$pkgname"
+  install -Dm 644 LICENSE-MIT -t "$pkgdir/usr/share/licenses/$pkgname"
+}
+
+# vim: ts=2 sw=2 et:



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

2021-08-19 Thread Orhun Parmaksiz via arch-commits
Date: Thursday, August 19, 2021 @ 22:07:17
  Author: orhun
Revision: 1003926

upgpkg: cargo-spellcheck 0.8.13-1: upstream release

Modified:
  cargo-spellcheck/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-19 21:52:09 UTC (rev 1003925)
+++ PKGBUILD2021-08-19 22:07:17 UTC (rev 1003926)
@@ -2,7 +2,7 @@
 # Contributor: Sanpi 
 
 pkgname=cargo-spellcheck
-pkgver=0.8.12
+pkgver=0.8.13
 pkgrel=1
 pkgdesc="Checks all your documentation for spelling and grammar mistakes"
 arch=('x86_64')
@@ -11,7 +11,7 @@
 depends=('hunspell')
 makedepends=('rust' 'clang' 'hunspell-en_US')
 source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha256sums=('27287f8559571b4cd79fef99d957d9fa13c2d424741ffcc71bf609ca691e1e8e')
+sha256sums=('7f15a875567968c61eb7821e48f1837ee205c196fb71df920fe6c8231faefa89')
 
 build() {
   cd "$pkgname-$pkgver"



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

2021-08-19 Thread Jan Steffens via arch-commits
Date: Thursday, August 19, 2021 @ 21:52:10
  Author: heftig
Revision: 422381

archrelease: copy trunk to testing-x86_64

Added:
  glib2/repos/testing-x86_64/
  glib2/repos/testing-x86_64/PKGBUILD
(from rev 422380, glib2/trunk/PKGBUILD)
  glib2/repos/testing-x86_64/gio-querymodules.hook
(from rev 422380, glib2/trunk/gio-querymodules.hook)
  glib2/repos/testing-x86_64/gio-querymodules.script
(from rev 422380, glib2/trunk/gio-querymodules.script)
  glib2/repos/testing-x86_64/glib-compile-schemas.hook
(from rev 422380, glib2/trunk/glib-compile-schemas.hook)
  glib2/repos/testing-x86_64/noisy-glib-compile-schemas.diff
(from rev 422380, glib2/trunk/noisy-glib-compile-schemas.diff)

-+
 PKGBUILD|   84 ++
 gio-querymodules.hook   |   12 +
 gio-querymodules.script |7 +++
 glib-compile-schemas.hook   |   12 +
 noisy-glib-compile-schemas.diff |   24 ++
 5 files changed, 139 insertions(+)

Copied: glib2/repos/testing-x86_64/PKGBUILD (from rev 422380, 
glib2/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2021-08-19 21:52:10 UTC (rev 422381)
@@ -0,0 +1,84 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+
+pkgbase=glib2
+pkgname=(glib2 glib2-docs)
+pkgver=2.68.4
+pkgrel=1
+pkgdesc="Low level core library"
+url="https://wiki.gnome.org/Projects/GLib;
+license=(LGPL)
+arch=(x86_64)
+depends=(pcre libffi util-linux-libs zlib)
+makedepends=(gettext gtk-doc shared-mime-info python libelf git util-linux
+ meson dbus)
+checkdepends=(desktop-file-utils)
+source=("git+https://gitlab.gnome.org/GNOME/glib.git?signed#tag=$pkgver;
+noisy-glib-compile-schemas.diff
+glib-compile-schemas.hook gio-querymodules.{hook,script})
+sha256sums=('SKIP'
+'b1cb539389aaabd13671424452f2805112a359b96c9e0e7f80fad804a77f9c7e'
+'64ae5597dda3cc160fc74be038dbe6267d41b525c0c35da9125fbf0de27f9b25'
+'2a9f9b8235f48e3b7d0f6cfcbc76cd2116c45f28692cac4bd61074c495bd5eb7'
+'92d08db5aa30bda276bc3d718e7ff9dd01dc40dcab45b359182dcc290054e24e')
+validpgpkeys=('923B7025EE03C1C59F42684CF0942E894B2EAFA0') # Philip Withnall 
(https://endlessos.org/) 
+
+pkgver() {
+  cd glib
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd glib
+
+  # Suppress noise from glib-compile-schemas.hook
+  git apply -3 ../noisy-glib-compile-schemas.diff
+}
+
+build() {
+  CFLAGS+=" -DG_DISABLE_CAST_CHECKS"
+  arch-meson glib build \
+-D glib_debug=disabled \
+-D selinux=disabled \
+-D man=true \
+-D gtk_doc=true
+  meson compile -C build
+}
+
+check() {
+  meson test -C build --no-suite flaky --no-suite slow --print-errorlogs
+}
+
+package_glib2() {
+  depends+=(libmount.so)
+  provides+=(libgio-2.0.so libglib-2.0.so libgmodule-2.0.so libgobject-2.0.so
+ libgthread-2.0.so)
+  optdepends=('python: gdbus-codegen, glib-genmarshal, glib-mkenums, 
gtester-report'
+  'libelf: gresource inspection tool')
+
+  meson install -C build --destdir "$pkgdir"
+
+  install -Dt "$pkgdir/usr/share/libalpm/hooks" -m644 *.hook
+  install -D gio-querymodules.script 
"$pkgdir/usr/share/libalpm/scripts/gio-querymodules"
+
+  export PYTHONHASHSEED=0
+  python -m compileall -d /usr/share/glib-2.0/codegen \
+"$pkgdir/usr/share/glib-2.0/codegen"
+  python -O -m compileall -d /usr/share/glib-2.0/codegen \
+"$pkgdir/usr/share/glib-2.0/codegen"
+
+  # Split docs
+  mkdir -p docs/usr/share
+  mv {"$pkgdir",docs}/usr/share/gtk-doc
+}
+
+package_glib2-docs() {
+  pkgdesc="Documentation for GLib"
+  depends=()
+  license+=(custom)
+
+  mv -t "$pkgdir" docs/*
+  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 
glib/docs/reference/COPYING
+}
+
+# vim:set sw=2 et:

Copied: glib2/repos/testing-x86_64/gio-querymodules.hook (from rev 422380, 
glib2/trunk/gio-querymodules.hook)
===
--- testing-x86_64/gio-querymodules.hook(rev 0)
+++ testing-x86_64/gio-querymodules.hook2021-08-19 21:52:10 UTC (rev 
422381)
@@ -0,0 +1,12 @@
+[Trigger]
+Type = Path
+Operation = Install
+Operation = Upgrade
+Operation = Remove
+Target = usr/lib/gio/modules/
+
+[Action]
+Description = Updating GIO module cache...
+When = PostTransaction
+Exec = /usr/share/libalpm/scripts/gio-querymodules
+NeedsTargets

Copied: glib2/repos/testing-x86_64/gio-querymodules.script (from rev 422380, 
glib2/trunk/gio-querymodules.script)
===
--- testing-x86_64/gio-querymodules.script  (rev 0)
+++ testing-x86_64/gio-querymodules.script  2021-08-19 21:52:10 UTC (rev 
422381)
@@ -0,0 +1,7 @@
+#!/bin/bash
+
+while read -r d; do
+  

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

2021-08-19 Thread Jan Steffens via arch-commits
Date: Thursday, August 19, 2021 @ 21:52:09
  Author: heftig
Revision: 1003925

archrelease: copy trunk to multilib-testing-x86_64

Added:
  lib32-glib2/repos/multilib-testing-x86_64/
  lib32-glib2/repos/multilib-testing-x86_64/PKGBUILD
(from rev 1003924, lib32-glib2/trunk/PKGBUILD)
  lib32-glib2/repos/multilib-testing-x86_64/gio-querymodules-32.hook
(from rev 1003924, lib32-glib2/trunk/gio-querymodules-32.hook)
  lib32-glib2/repos/multilib-testing-x86_64/gio-querymodules-32.script
(from rev 1003924, lib32-glib2/trunk/gio-querymodules-32.script)
  lib32-glib2/repos/multilib-testing-x86_64/multilib.diff
(from rev 1003924, lib32-glib2/trunk/multilib.diff)

+
 PKGBUILD   |   70 +++
 gio-querymodules-32.hook   |   12 +++
 gio-querymodules-32.script |7 
 multilib.diff  |   12 +++
 4 files changed, 101 insertions(+)

Copied: lib32-glib2/repos/multilib-testing-x86_64/PKGBUILD (from rev 1003924, 
lib32-glib2/trunk/PKGBUILD)
===
--- multilib-testing-x86_64/PKGBUILD(rev 0)
+++ multilib-testing-x86_64/PKGBUILD2021-08-19 21:52:09 UTC (rev 1003925)
@@ -0,0 +1,70 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Ionut Biru 
+# Contributor: Pierre Schmitz 
+# Contributor: Mikko Seppälä 
+
+pkgname=lib32-glib2
+pkgver=2.68.4
+pkgrel=1
+pkgdesc="Low level core library (32-bit)"
+url="https://wiki.gnome.org/Projects/GLib;
+license=(LGPL)
+arch=(x86_64)
+depends=(lib32-pcre lib32-libffi lib32-util-linux lib32-zlib glib2)
+makedepends=(gettext gtk-doc shared-mime-info python lib32-libelf git 
util-linux
+ meson lib32-dbus)
+checkdepends=(desktop-file-utils lib32-glib2)
+source=("git+https://gitlab.gnome.org/GNOME/glib.git?signed#tag=$pkgver;
+multilib.diff
+gio-querymodules-32.{hook,script})
+sha256sums=('SKIP'
+'dc8089b4680913243a2cc0bfcafaf7364ab444b7df65ee314963a64f3512739e'
+'2fe9543c97829300c25e6b45ed01fb63d3b699649fb2924b9a41443ccec8b946'
+'1c96fb5f09baf59987e4b97bf3af37ea8feedcc753b48c91ffc6bff080461f21')
+validpgpkeys=('923B7025EE03C1C59F42684CF0942E894B2EAFA0') # Philip Withnall 
(https://endlessos.org/) 
+
+pkgver() {
+  cd glib
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd glib
+
+  # Test suite workaround
+  git apply -3 ../multilib.diff
+}
+
+build() {
+  export CC="gcc -m32 -mstackrealign"
+  export CXX="g++ -m32 -mstackrealign"
+  export PKG_CONFIG="i686-pc-linux-gnu-pkg-config"
+
+  CFLAGS+=" -DG_DISABLE_CAST_CHECKS"
+  arch-meson glib build \
+-D glib_debug=disabled \
+-D selinux=disabled \
+--libdir=/usr/lib32
+  meson compile -C build
+}
+
+check() {
+  meson test -C build --no-suite flaky --no-suite slow --print-errorlogs
+}
+
+package() {
+  depends+=(libmount.so)
+  provides+=(libgio-2.0.so libglib-2.0.so libgmodule-2.0.so libgobject-2.0.so
+ libgthread-2.0.so)
+
+  meson install -C build --destdir "$pkgdir"
+
+  rm -r "$pkgdir"/usr/{share,include}
+  find "$pkgdir/usr/bin" -type f -not -name gio-querymodules -printf 'Removing 
%P\n' -delete
+  mv "$pkgdir"/usr/bin/gio-querymodules{,-32}
+
+  install -Dt "$pkgdir/usr/share/libalpm/hooks" -m644 *.hook
+  install -D gio-querymodules-32.script 
"$pkgdir/usr/share/libalpm/scripts/gio-querymodules-32"
+}
+
+# vim:set sw=2 et:

Copied: lib32-glib2/repos/multilib-testing-x86_64/gio-querymodules-32.hook 
(from rev 1003924, lib32-glib2/trunk/gio-querymodules-32.hook)
===
--- multilib-testing-x86_64/gio-querymodules-32.hook
(rev 0)
+++ multilib-testing-x86_64/gio-querymodules-32.hook2021-08-19 21:52:09 UTC 
(rev 1003925)
@@ -0,0 +1,12 @@
+[Trigger]
+Type = Path
+Operation = Install
+Operation = Upgrade
+Operation = Remove
+Target = usr/lib32/gio/modules/
+
+[Action]
+Description = Updating 32-bit GIO module cache...
+When = PostTransaction
+Exec = /usr/share/libalpm/scripts/gio-querymodules-32
+NeedsTargets

Copied: lib32-glib2/repos/multilib-testing-x86_64/gio-querymodules-32.script 
(from rev 1003924, lib32-glib2/trunk/gio-querymodules-32.script)
===
--- multilib-testing-x86_64/gio-querymodules-32.script  
(rev 0)
+++ multilib-testing-x86_64/gio-querymodules-32.script  2021-08-19 21:52:09 UTC 
(rev 1003925)
@@ -0,0 +1,7 @@
+#!/bin/bash
+
+while read -r d; do
+  [[ -d $d ]] || continue
+  gio-querymodules-32 "$d"
+  rmdir --ignore-fail-on-non-empty "$d"
+done

Copied: lib32-glib2/repos/multilib-testing-x86_64/multilib.diff (from rev 
1003924, lib32-glib2/trunk/multilib.diff)
===
--- multilib-testing-x86_64/multilib.diff   (rev 0)
+++ 

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

2021-08-19 Thread Jan Steffens via arch-commits
Date: Thursday, August 19, 2021 @ 21:51:35
  Author: heftig
Revision: 1003924

2.68.4-1

Modified:
  lib32-glib2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-19 21:50:04 UTC (rev 1003923)
+++ PKGBUILD2021-08-19 21:51:35 UTC (rev 1003924)
@@ -4,7 +4,7 @@
 # Contributor: Mikko Seppälä 
 
 pkgname=lib32-glib2
-pkgver=2.68.3
+pkgver=2.68.4
 pkgrel=1
 pkgdesc="Low level core library (32-bit)"
 url="https://wiki.gnome.org/Projects/GLib;



[arch-commits] Commit in kubernetes/repos/community-testing-x86_64 (38 files)

2021-08-19 Thread David Runge via arch-commits
Date: Thursday, August 19, 2021 @ 21:50:04
  Author: dvzrv
Revision: 1003923

archrelease: copy trunk to community-testing-x86_64

Added:
  kubernetes/repos/community-testing-x86_64/10-kubeadm-kubelet.conf
(from rev 1003922, kubernetes/trunk/10-kubeadm-kubelet.conf)
  kubernetes/repos/community-testing-x86_64/50-kubelet-sysctl.conf
(from rev 1003922, kubernetes/trunk/50-kubelet-sysctl.conf)
  kubernetes/repos/community-testing-x86_64/PKGBUILD
(from rev 1003922, kubernetes/trunk/PKGBUILD)
  kubernetes/repos/community-testing-x86_64/kube-apiserver.env
(from rev 1003922, kubernetes/trunk/kube-apiserver.env)
  kubernetes/repos/community-testing-x86_64/kube-apiserver.service
(from rev 1003922, kubernetes/trunk/kube-apiserver.service)
  kubernetes/repos/community-testing-x86_64/kube-controller-manager.env
(from rev 1003922, kubernetes/trunk/kube-controller-manager.env)
  kubernetes/repos/community-testing-x86_64/kube-controller-manager.service
(from rev 1003922, kubernetes/trunk/kube-controller-manager.service)
  kubernetes/repos/community-testing-x86_64/kube-proxy.env
(from rev 1003922, kubernetes/trunk/kube-proxy.env)
  kubernetes/repos/community-testing-x86_64/kube-proxy.service
(from rev 1003922, kubernetes/trunk/kube-proxy.service)
  kubernetes/repos/community-testing-x86_64/kube-scheduler.env
(from rev 1003922, kubernetes/trunk/kube-scheduler.env)
  kubernetes/repos/community-testing-x86_64/kube-scheduler.service
(from rev 1003922, kubernetes/trunk/kube-scheduler.service)
  kubernetes/repos/community-testing-x86_64/kubeadm.install
(from rev 1003922, kubernetes/trunk/kubeadm.install)
  kubernetes/repos/community-testing-x86_64/kubelet-modules.conf
(from rev 1003922, kubernetes/trunk/kubelet-modules.conf)
  kubernetes/repos/community-testing-x86_64/kubelet.env
(from rev 1003922, kubernetes/trunk/kubelet.env)
  kubernetes/repos/community-testing-x86_64/kubelet.install
(from rev 1003922, kubernetes/trunk/kubelet.install)
  kubernetes/repos/community-testing-x86_64/kubelet.service
(from rev 1003922, kubernetes/trunk/kubelet.service)
  kubernetes/repos/community-testing-x86_64/kubernetes-1.20.0-gotags.patch
(from rev 1003922, kubernetes/trunk/kubernetes-1.20.0-gotags.patch)
  kubernetes/repos/community-testing-x86_64/kubernetes-sysusers.conf
(from rev 1003922, kubernetes/trunk/kubernetes-sysusers.conf)
  kubernetes/repos/community-testing-x86_64/kubernetes-tmpfiles.conf
(from rev 1003922, kubernetes/trunk/kubernetes-tmpfiles.conf)
Deleted:
  kubernetes/repos/community-testing-x86_64/10-kubeadm-kubelet.conf
  kubernetes/repos/community-testing-x86_64/50-kubelet-sysctl.conf
  kubernetes/repos/community-testing-x86_64/PKGBUILD
  kubernetes/repos/community-testing-x86_64/kube-apiserver.env
  kubernetes/repos/community-testing-x86_64/kube-apiserver.service
  kubernetes/repos/community-testing-x86_64/kube-controller-manager.env
  kubernetes/repos/community-testing-x86_64/kube-controller-manager.service
  kubernetes/repos/community-testing-x86_64/kube-proxy.env
  kubernetes/repos/community-testing-x86_64/kube-proxy.service
  kubernetes/repos/community-testing-x86_64/kube-scheduler.env
  kubernetes/repos/community-testing-x86_64/kube-scheduler.service
  kubernetes/repos/community-testing-x86_64/kubeadm.install
  kubernetes/repos/community-testing-x86_64/kubelet-modules.conf
  kubernetes/repos/community-testing-x86_64/kubelet.env
  kubernetes/repos/community-testing-x86_64/kubelet.install
  kubernetes/repos/community-testing-x86_64/kubelet.service
  kubernetes/repos/community-testing-x86_64/kubernetes-1.20.0-gotags.patch
  kubernetes/repos/community-testing-x86_64/kubernetes-sysusers.conf
  kubernetes/repos/community-testing-x86_64/kubernetes-tmpfiles.conf

-+
 10-kubeadm-kubelet.conf |   20 -
 50-kubelet-sysctl.conf  |4 
 PKGBUILD|  460 +++---
 kube-apiserver.env  |   20 -
 kube-apiserver.service  |   32 +-
 kube-controller-manager.env |   22 -
 kube-controller-manager.service |   26 +-
 kube-proxy.env  |   18 -
 kube-proxy.service  |   26 +-
 kube-scheduler.env  |   20 -
 kube-scheduler.service  |   26 +-
 kubeadm.install |   28 +-
 kubelet-modules.conf|2 
 kubelet.env |   18 -
 kubelet.install |   36 +-
 kubelet.service |   40 +--
 kubernetes-1.20.0-gotags.patch  |   24 -
 kubernetes-sysusers.conf|2 
 kubernetes-tmpfiles.conf|2 
 19 files changed, 413 insertions(+), 413 deletions(-)

Deleted: 10-kubeadm-kubelet.conf
===
--- 10-kubeadm-kubelet.conf 2021-08-19 21:49:26 UTC (rev 1003922)
+++ 10-kubeadm-kubelet.conf 2021-08-19 21:50:04 UTC (rev 1003923)
@@ -1,10 +0,0 @@
-[Service]

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

2021-08-19 Thread David Runge via arch-commits
Date: Thursday, August 19, 2021 @ 21:49:26
  Author: dvzrv
Revision: 1003922

upgpkg: kubernetes 1.22.1-1: Upgrade to 1.22.1.

Modified:
  kubernetes/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-19 21:42:52 UTC (rev 1003921)
+++ PKGBUILD2021-08-19 21:49:26 UTC (rev 1003922)
@@ -3,7 +3,7 @@
 
 pkgbase=kubernetes
 pkgname=('kube-apiserver' 'kube-controller-manager' 'kube-proxy' 
'kube-scheduler' 'kubectl' 'kubelet' 'kubeadm')
-pkgver=1.22.0
+pkgver=1.22.1
 pkgrel=1
 pkgdesc="Production-Grade Container Scheduling and Management"
 arch=('x86_64')
@@ -30,7 +30,7 @@
 "kube-scheduler.env"
 "kube-scheduler.service"
 )
-sha512sums=('7ca7ba890e4ce2ea13d47e85901fa4d63916ae746ad45f2ac40b9388015dd0186e161959874202352cb13a3ee7cf73138fe43a9191a536f78810c3827ec69375'
+sha512sums=('97d5644cd06c2a092338bddc6b5e5b4c538ae8055b5d7c9ea011a8454b191714864ab624657e88aa1d6e8939d1526a69d763b0126249bfbb5e96f62ecf4290a3'
 
'a2c97738fb49c0e30eee44b6404af083bbaddbafb8a3fa92493802065f4ac06f0c09d50437a9fdda345e0365de984d9bc768fb9300a40c716e6dec53bd57b6de'
 
'5f7132636b6afe9f00dc450c58073c0829942fa44070e7ec5a2c227c485c83f076bdea081d207f926b44d02700be65bf19a61f5d8d1472edd480f980e6ffbc3a'
 
'ed5ba22b37eaa9f4950ff3b57d60dd7866fcd5b8bd5197eab3170470528e8d91379483d3eb724589e695184f9b0ed506ebaee73ecca0dc40afdb5f35e79d178a'
@@ -47,7 +47,7 @@
 
'dd4efa137462905f9e29a99d69b747ae35e58ba8152794bfa417325953dd5059bad96fabfabf73ce1ee2310dc4ab4d1b95c8d931d33b81c67addcb614a51be54'
 
'ba277f765959ddb8aa0dee5a86cd9df1f40fb3f6ea1001f24825dbf21bd9342981d13894301170431729f76e710f70c23481e4061c64be29517ff497490f1ef3'
 
'2c25c0e11a7b2d6d61e03f9afe7ba21f9497495ab02e85f2623ce8c71019fb8a1af16197ab3968d5da050c2188c3e67372aa43322ac91af84f7da61bf73596bc')
-b2sums=('958955dd0bf15e1094e1a7b580cbbf98c7ad7822e8d130900731e395d5b961a46fbc1c57bed57a2a6958b42e9a926d8c197cfc10f219a4cc7d7062963def7a81'
+b2sums=('f474963aafe63afec87ae113543aad1be000eb32df725254d28d44d1f4fa1bc7c0fac88d77ac58b9bf1dd67129e2c2d010e97368f5ba392bf3924dd8bfa3ebed'
 
'a84c41a2b2be6ab0f5f6c3ede13b28456deb7098421a6f1af0e72e53a9214efa30a59709c5b1e6c35031c4dfd15e786a691b69e592796d769cf057fb1d21379a'
 
'dbab30d7e1b566027fec9d6a95dd41ed8f64399c39aac07fb4513ce21050eeeb4a226adfd513f76921c305945dfa4a140602ede574dd5eb4cd287e0f2df21714'
 
'27a8dcbbe06fa7aea122fc87ca663710ae2179c995270d94e22c905422e2639f3c9c81eef6723467c76366062381d8bd65e84ef79f47fed7c240973a55f5cb0e'



[arch-commits] Commit in sslh/repos/community-x86_64 (15 files)

2021-08-19 Thread Sébastien Luttringer via arch-commits
Date: Thursday, August 19, 2021 @ 21:42:52
  Author: seblu
Revision: 1003921

archrelease: copy trunk to community-x86_64

Added:
  sslh/repos/community-x86_64/PKGBUILD
(from rev 1003920, sslh/trunk/PKGBUILD)
  sslh/repos/community-x86_64/sslh-fork.service
(from rev 1003920, sslh/trunk/sslh-fork.service)
  sslh/repos/community-x86_64/sslh-select.service
(from rev 1003920, sslh/trunk/sslh-select.service)
  sslh/repos/community-x86_64/sslh.cfg
(from rev 1003920, sslh/trunk/sslh.cfg)
  sslh/repos/community-x86_64/sslh.install
(from rev 1003920, sslh/trunk/sslh.install)
  sslh/repos/community-x86_64/sslh.service
(from rev 1003920, sslh/trunk/sslh.service)
  sslh/repos/community-x86_64/sslh.sysusers
(from rev 1003920, sslh/trunk/sslh.sysusers)
Deleted:
  sslh/repos/community-x86_64/PKGBUILD
  sslh/repos/community-x86_64/fix-libconfig.patch
  sslh/repos/community-x86_64/sslh-fork.service
  sslh/repos/community-x86_64/sslh-select.service
  sslh/repos/community-x86_64/sslh.cfg
  sslh/repos/community-x86_64/sslh.install
  sslh/repos/community-x86_64/sslh.service
  sslh/repos/community-x86_64/sslh.sysusers

-+
 PKGBUILD|  140 --
 fix-libconfig.patch |   11 ---
 sslh-fork.service   |   54 +--
 sslh-select.service |   54 +--
 sslh.cfg|   42 +++
 sslh.install|   54 +--
 sslh.service|   50 -
 sslh.sysusers   |2 
 8 files changed, 197 insertions(+), 210 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-19 21:42:44 UTC (rev 1003920)
+++ PKGBUILD2021-08-19 21:42:52 UTC (rev 1003921)
@@ -1,71 +0,0 @@
-# Maintainer: Sébastien "Seblu" Luttringer 
-# Contributor: Le_suisse 
-# Contributor: Jason Rodriguez 
-
-pkgname=sslh
-pkgver=1.21c
-pkgrel=2
-pkgdesc='SSL/SSH/OpenVPN/XMPP/tinc port multiplexer'
-arch=('x86_64')
-url='https://www.rutschle.net/tech/sslh/README.html'
-license=('GPL2')
-makedepends=('systemd')
-depends=('glibc' 'libcap' 'libconfig' 'pcre' 'systemd-libs')
-backup=('etc/sslh.cfg')
-install=$pkgname.install
-source=("https://www.rutschle.net/tech/sslh/$pkgname-v$pkgver.tar.gz"{,.asc}
-'sslh.cfg'
-'sslh.service'
-'sslh-select.service'
-'sslh-fork.service'
-'fix-libconfig.patch')
-validpgpkeys=('CDDDBADBEA4B72748E007D326C056F7AC7934136') # Yves Rutschle 

-sha256sums=('3bfe783726f82c1f5a4be630ddc494ebb08dbb69980662cd7ffdeb7bc9e1e706'
-'SKIP'
-'3feff7e2c096bc18d8f0073141c1017dccd4abbbc491fa16b55afd5c5ff6352c'
-'49ed1c88b0de079bc31a94e600b63edd7ea95b4aa9b5f533c15db1221d0892db'
-'5824ae86ced9142c37343367bd737661c2da826fba244cea7072685347be2250'
-'d41f7cb8a3a3d8fc11608bc552014f03177ac3cdd8c5c6157d7d1a557d91cacb'
-'eefab0803283120454a11c7e1850ae181062a96cbd40a0f9a17d421b74040e4c')
-
-prepare() {
-  cd $pkgname-v$pkgver
-  # apply patch from the source array (should be a pacman feature)
-  local src
-  for src in "${source[@]}"; do
-src="${src%%::*}"
-src="${src##*/}"
-[[ $src = *.patch ]] || continue
-echo "Applying patch $src..."
-patch -Np1 < "../$src"
-  done
-}
-
-build() {
-  cd $pkgname-v$pkgver
-  make VERSION=\"v$pkgver\" USELIBCAP=1 USESYSTEMD=1 all systemd-sslh-generator
-}
-
-package() {
-  # default arch config
-  install -Dm 644 sslh.cfg "$pkgdir/etc/sslh.cfg"
-  # manually install to have both ssl-fork and ssl-select
-  cd $pkgname-v$pkgver
-  install -Dm 755 sslh-fork "$pkgdir/usr/bin/sslh-fork"
-  install -Dm 755 sslh-select "$pkgdir/usr/bin/sslh-select"
-  ln -s sslh-fork "$pkgdir/usr/bin/sslh"
-  # install manpage
-  install -Dm 644 sslh.8.gz "$pkgdir/usr/share/man/man8/sslh.8.gz"
-  ln -s sslh.8.gz "$pkgdir/usr/share/man/man8/sslh-fork.8.gz"
-  ln -s sslh.8.gz "$pkgdir/usr/share/man/man8/sslh-select.8.gz"
-  # install examples files
-  install -Dm 644 basic.cfg "$pkgdir/usr/share/doc/$pkgname/basic.cfg"
-  install -Dm 644 example.cfg "$pkgdir/usr/share/doc/$pkgname/example.cfg"
-  # systemd
-  install -dm 755 "$pkgdir"/usr/lib/systemd/{system,system-generators}
-  install -Dm 755 systemd-sslh-generator 
"$pkgdir/usr/lib/systemd/system-generators/systemd-sslh-generator"
-  cd "$pkgdir"
-  install -Dm 644 "$srcdir"/sslh{,-fork,-select}.service usr/lib/systemd/system
-}
-
-# vim:set ts=2 sw=2 et:

Copied: sslh/repos/community-x86_64/PKGBUILD (from rev 1003920, 
sslh/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-19 21:42:52 UTC (rev 1003921)
@@ -0,0 +1,69 @@
+# Maintainer: Sébastien "Seblu" Luttringer
+# Contributor: Le_suisse 
+# Contributor: Jason Rodriguez 
+
+pkgname=sslh
+pkgver=1.22
+pkgrel=1
+pkgdesc='SSL/SSH/OpenVPN/XMPP/tinc port multiplexer'
+arch=('x86_64')

[arch-commits] Commit in sslh/trunk (PKGBUILD fix-libconfig.patch)

2021-08-19 Thread Sébastien Luttringer via arch-commits
Date: Thursday, August 19, 2021 @ 21:42:44
  Author: seblu
Revision: 1003920

upgpkg: sslh 1.22-1

Modified:
  sslh/trunk/PKGBUILD
Deleted:
  sslh/trunk/fix-libconfig.patch

-+
 PKGBUILD|   14 ++
 fix-libconfig.patch |   11 ---
 2 files changed, 6 insertions(+), 19 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-08-19 21:27:25 UTC (rev 1003919)
+++ PKGBUILD2021-08-19 21:42:44 UTC (rev 1003920)
@@ -1,10 +1,10 @@
-# Maintainer: Sébastien "Seblu" Luttringer 
+# Maintainer: Sébastien "Seblu" Luttringer
 # Contributor: Le_suisse 
 # Contributor: Jason Rodriguez 
 
 pkgname=sslh
-pkgver=1.21c
-pkgrel=2
+pkgver=1.22
+pkgrel=1
 pkgdesc='SSL/SSH/OpenVPN/XMPP/tinc port multiplexer'
 arch=('x86_64')
 url='https://www.rutschle.net/tech/sslh/README.html'
@@ -17,16 +17,14 @@
 'sslh.cfg'
 'sslh.service'
 'sslh-select.service'
-'sslh-fork.service'
-'fix-libconfig.patch')
+'sslh-fork.service')
 validpgpkeys=('CDDDBADBEA4B72748E007D326C056F7AC7934136') # Yves Rutschle 

-sha256sums=('3bfe783726f82c1f5a4be630ddc494ebb08dbb69980662cd7ffdeb7bc9e1e706'
+sha256sums=('50ea47f8a52e09855e4abcba00e2d6efa3b100faef4b7a066582dfb9bd043b6e'
 'SKIP'
 '3feff7e2c096bc18d8f0073141c1017dccd4abbbc491fa16b55afd5c5ff6352c'
 '49ed1c88b0de079bc31a94e600b63edd7ea95b4aa9b5f533c15db1221d0892db'
 '5824ae86ced9142c37343367bd737661c2da826fba244cea7072685347be2250'
-'d41f7cb8a3a3d8fc11608bc552014f03177ac3cdd8c5c6157d7d1a557d91cacb'
-'eefab0803283120454a11c7e1850ae181062a96cbd40a0f9a17d421b74040e4c')
+'d41f7cb8a3a3d8fc11608bc552014f03177ac3cdd8c5c6157d7d1a557d91cacb')
 
 prepare() {
   cd $pkgname-v$pkgver

Deleted: fix-libconfig.patch
===
--- fix-libconfig.patch 2021-08-19 21:27:25 UTC (rev 1003919)
+++ fix-libconfig.patch 2021-08-19 21:42:44 UTC (rev 1003920)
@@ -1,11 +0,0 @@
 a/sslh-conf.c  2020-07-30 09:45:50.0 +0200
-+++ b/sslh-conf.c  2021-07-01 02:11:39.589685985 +0200
-@@ -1599,7 +1599,7 @@
- }
- }
- 
--s = config_lookup(, "/");
-+s = config_root_setting();
- 
- res = read_block(s, cfg, table_sslhcfg, );
- if (!res) {



[arch-commits] Commit in bind/repos/extra-x86_64 (18 files)

2021-08-19 Thread Sébastien Luttringer via arch-commits
Date: Thursday, August 19, 2021 @ 21:37:27
  Author: seblu
Revision: 422380

archrelease: copy trunk to extra-x86_64

Added:
  bind/repos/extra-x86_64/127.0.0.zone
(from rev 422379, bind/trunk/127.0.0.zone)
  bind/repos/extra-x86_64/PKGBUILD
(from rev 422379, bind/trunk/PKGBUILD)
  bind/repos/extra-x86_64/bind.install
(from rev 422379, bind/trunk/bind.install)
  bind/repos/extra-x86_64/localhost.ip6.zone
(from rev 422379, bind/trunk/localhost.ip6.zone)
  bind/repos/extra-x86_64/localhost.zone
(from rev 422379, bind/trunk/localhost.zone)
  bind/repos/extra-x86_64/named.conf
(from rev 422379, bind/trunk/named.conf)
  bind/repos/extra-x86_64/named.service
(from rev 422379, bind/trunk/named.service)
  bind/repos/extra-x86_64/sysusers.conf
(from rev 422379, bind/trunk/sysusers.conf)
  bind/repos/extra-x86_64/tmpfiles.conf
(from rev 422379, bind/trunk/tmpfiles.conf)
Deleted:
  bind/repos/extra-x86_64/127.0.0.zone
  bind/repos/extra-x86_64/PKGBUILD
  bind/repos/extra-x86_64/bind.install
  bind/repos/extra-x86_64/localhost.ip6.zone
  bind/repos/extra-x86_64/localhost.zone
  bind/repos/extra-x86_64/named.conf
  bind/repos/extra-x86_64/named.service
  bind/repos/extra-x86_64/sysusers.conf
  bind/repos/extra-x86_64/tmpfiles.conf

+
 127.0.0.zone   |   20 ++--
 PKGBUILD   |  214 +--
 bind.install   |   20 ++--
 localhost.ip6.zone |   20 ++--
 localhost.zone |   22 ++---
 named.conf |  114 +--
 named.service  |   20 ++--
 sysusers.conf  |2 
 tmpfiles.conf  |2 
 9 files changed, 217 insertions(+), 217 deletions(-)

Deleted: 127.0.0.zone
===
--- 127.0.0.zone2021-08-19 21:37:19 UTC (rev 422379)
+++ 127.0.0.zone2021-08-19 21:37:27 UTC (rev 422380)
@@ -1,10 +0,0 @@
-@   1D IN SOA   localhost. root.localhost. (
-42; serial (mmdd##)
-3H; refresh
-15M   ; retry
-1W; expiry
-1D )  ; minimum ttl
-
-1D  IN  NS  localhost.
-
-1.0.0.127.in-addr.arpa. 1D  IN  PTR localhost.

Copied: bind/repos/extra-x86_64/127.0.0.zone (from rev 422379, 
bind/trunk/127.0.0.zone)
===
--- 127.0.0.zone(rev 0)
+++ 127.0.0.zone2021-08-19 21:37:27 UTC (rev 422380)
@@ -0,0 +1,10 @@
+@   1D IN SOA   localhost. root.localhost. (
+42; serial (mmdd##)
+3H; refresh
+15M   ; retry
+1W; expiry
+1D )  ; minimum ttl
+
+1D  IN  NS  localhost.
+
+1.0.0.127.in-addr.arpa. 1D  IN  PTR localhost.

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-19 21:37:19 UTC (rev 422379)
+++ PKGBUILD2021-08-19 21:37:27 UTC (rev 422380)
@@ -1,107 +0,0 @@
-# Maintainer: Sébastien Luttringer
-# Contributor: Gaetan Bisson 
-# Contributor: judd 
-# Contributor: Mario Vazquez 
-
-_pkgver=9.16.19
-pkgname=bind
-pkgver=${_pkgver//-/.}
-pkgrel=1
-pkgdesc='A complete, highly portable implementation of the DNS protocol'
-url='https://www.isc.org/software/bind/'
-license=('MPL2')
-arch=('x86_64')
-options=('!emptydirs')
-makedepends=('libcap' 'libxml2' 'zlib' 'krb5' 'e2fsprogs' 'openssl' 'readline'
-  'libidn2' 'dnssec-anchors' 'python' 'json-c' 'python-ply' 'lmdb' 'zlib' 'icu'
-  'xz' 'libmaxminddb' 'libnsl' 'libuv' 'python-sphinx')
-depends=('bash' 'dnssec-anchors' 'e2fsprogs' 'glibc' 'icu' 'libedit' 'json-c'
-  'krb5' 'libcap' 'libidn2' 'libmaxminddb' 'libnsl' 'libuv' 'libxml2' 'lmdb'
-  'openssl' 'python' 'python-ply' 'readline' 'xz' 'zlib')
-conflicts=('bind-tools' 'dnsutils')
-replaces=('bind-tools' 'dnsutils' 'host')
-provides=('bind-tools' 'dnsutils' 'dns-server')
-backup=('etc/named.conf'
-'var/named/127.0.0.zone'
-'var/named/localhost.zone'
-'var/named/localhost.ip6.zone')
-install=bind.install
-validpgpkeys=('7E1C91AC8030A5A59D1EFAB9750F3C87723E4012') #ISC Code Signing 
Key 2021 – 2022 (codes...@isc.org)
-source=("https://ftp.isc.org/isc/bind9/${_pkgver}/bind-${_pkgver}.tar.xz"{,.asc}
-'tmpfiles.conf'
-'sysusers.conf'
-'named.conf'
-'named.service'
-'localhost.zone'
-'localhost.ip6.zone'
-'127.0.0.zone')
-sha256sums=('20bf727559302c933475904847041916bb6c279680c170babc01a76998e80ad3'
-'SKIP'
-

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

2021-08-19 Thread Sébastien Luttringer via arch-commits
Date: Thursday, August 19, 2021 @ 21:37:19
  Author: seblu
Revision: 422379

upgpkg: bind 9.16.20-1

Modified:
  bind/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-19 20:56:38 UTC (rev 422378)
+++ PKGBUILD2021-08-19 21:37:19 UTC (rev 422379)
@@ -3,7 +3,7 @@
 # Contributor: judd 
 # Contributor: Mario Vazquez 
 
-_pkgver=9.16.19
+_pkgver=9.16.20
 pkgname=bind
 pkgver=${_pkgver//-/.}
 pkgrel=1
@@ -35,7 +35,7 @@
 'localhost.zone'
 'localhost.ip6.zone'
 '127.0.0.zone')
-sha256sums=('20bf727559302c933475904847041916bb6c279680c170babc01a76998e80ad3'
+sha256sums=('4d0d93c0d0b63080609e84625f24ff8777f8d164e78a75b1c19c334ce42d5b58'
 'SKIP'
 'f0423c4ee8495da487e07e9144bec1d25f46a0cd2dfa7cfd7a761ef15bfefc98'
 '7c0acefcfcc3ae093550caed7ec90fe84bec8f7477459ffa7e71dda76bcbdb2c'



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

2021-08-19 Thread David Runge via arch-commits
Date: Thursday, August 19, 2021 @ 21:27:25
  Author: dvzrv
Revision: 1003919

archrelease: copy trunk to community-staging-x86_64

Added:
  sonic-visualiser/repos/community-staging-x86_64/
  sonic-visualiser/repos/community-staging-x86_64/PKGBUILD
(from rev 1003918, sonic-visualiser/trunk/PKGBUILD)

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

Copied: sonic-visualiser/repos/community-staging-x86_64/PKGBUILD (from rev 
1003918, sonic-visualiser/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-08-19 21:27:25 UTC (rev 1003919)
@@ -0,0 +1,49 @@
+# Maintainer: David Runge 
+# Contributor: speps 
+# Contributor: Orivej Desh 
+
+pkgname=sonic-visualiser
+pkgver=4.3
+pkgrel=3
+pkgdesc="A viewer and analyser of music audio files."
+arch=('x86_64')
+url="https://www.sonicvisualiser.org/;
+license=('GPL2')
+groups=('pro-audio')
+depends=('bzip2' 'gcc-libs' 'glibc' 'hicolor-icon-theme' 'libglvnd'
+'libmad' 'libx11' 'opusfile' 'qt5-base' 'qt5-svg' 'speex')
+makedepends=('alsa-lib' 'capnproto' 'fftw' 'libfishsound' 'libid3tag' 'liblo'
+'liblrdf' 'liboggz' 'libpulse' 'libsamplerate' 'libsndfile' 'meson' 'portaudio'
+'rubberband' 'serd' 'sord')
+provides=('vamp-host')
+source=("${pkgname}-${pkgver}.tar.gz::https://bintray.com/${pkgname}/${pkgname}/download_file?file_path=${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('cbe0edee9f346545222e05156e4536710db932d6ec335687e91f2f4b24582e7f47703a3ecade87574ead8fa78dca821fd9ff2eb0d6e44c2b9c33c8d053fd738d')
+b2sums=('4c9bbfc751f94dfc0e8c93a8ba791b0a4bf949fe1f528a081da583ad720dcb25b3e6f84e31104f11ab5003b338b62a1ca1a9572bc9ec820d0a4269d25cbe0e04')
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  meson --prefix='/usr' \
+--buildtype plain \
+--wrap-mode nodownload \
+-D b_lto=true \
+-D b_pie=true \
+-Dintrospection=enabled \
+build
+  ninja -C build
+}
+
+package() {
+  depends+=('libasound.so' 'libcapnp.so' 'libfftw3.so' 'libfftw3f.so'
+  'libfishsound.so' 'libid3tag.so' 'libkj.so' 'liblo.so' 'liblrdf.so'
+  'liboggz.so' 'libportaudio.so' 'libpulse.so' 'librubberband.so'
+  'libsamplerate.so' 'libserd-0.so' 'libsndfile.so' 'libsord-0.so')
+  cd "${pkgname}-${pkgver}"
+  DESTDIR="${pkgdir}" meson install -C build
+  # samples
+  install -vDm 644 samples/* -t "${pkgdir}/usr/share/${pkgname}/samples"
+  # templates
+  install -vDm 644 templates/* -t "${pkgdir}/usr/share/${pkgname}/templates"
+  # docs
+  install -vDm 644 {CHANGELOG,CITATION,README{,_OSC}.md} \
+-t "${pkgdir}/usr/share/doc/${pkgname}"
+}



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

2021-08-19 Thread David Runge via arch-commits
Date: Thursday, August 19, 2021 @ 21:27:18
  Author: dvzrv
Revision: 1003918

upgpkg: sonic-visualiser 4.3-3: Rebuild against capnproto 0.9.0.

Modified:
  sonic-visualiser/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-19 21:17:34 UTC (rev 1003917)
+++ PKGBUILD2021-08-19 21:27:18 UTC (rev 1003918)
@@ -4,7 +4,7 @@
 
 pkgname=sonic-visualiser
 pkgver=4.3
-pkgrel=2
+pkgrel=3
 pkgdesc="A viewer and analyser of music audio files."
 arch=('x86_64')
 url="https://www.sonicvisualiser.org/;



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

2021-08-19 Thread David Runge via arch-commits
Date: Thursday, August 19, 2021 @ 21:17:34
  Author: dvzrv
Revision: 1003917

archrelease: copy trunk to community-staging-x86_64

Added:
  capnproto/repos/community-staging-x86_64/
  capnproto/repos/community-staging-x86_64/PKGBUILD
(from rev 1003916, capnproto/trunk/PKGBUILD)

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

Copied: capnproto/repos/community-staging-x86_64/PKGBUILD (from rev 1003916, 
capnproto/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-08-19 21:17:34 UTC (rev 1003917)
@@ -0,0 +1,40 @@
+# Maintainer: David Runge 
+# Contributors: Dave Reisner 
+#   Matthias Blaicher 
+#   Severen Redwood 
+
+pkgname=capnproto
+pkgver=0.9.0
+pkgrel=1
+pkgdesc="Cap'n Proto serialization/RPC system"
+arch=('x86_64')
+url='https://capnproto.org/'
+license=('MIT')
+depends=('gcc-libs' 'glibc' 'openssl' 'zlib')
+makedepends=('cmake')
+provides=('libcapnp.so' 'libcapnp-json.so' 'libcapnp-rpc.so' 'libcapnpc.so'
+'libkj-async.so' 'libkj-gzip.so' 'libkj-http.so' 'libkj-test.so' 'libkj-tls.so'
+'libkj.so')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/${pkgname}/${pkgname}/archive/v${pkgver}.tar.gz;)
+sha512sums=('d50d8bb733e84d94a37065eeab1695e0053d0199aa529f6616df296d644ee6004cc0e3f10974ff95e95355fa4b2d5cee2108d1e503c0ffc4333e67d15fbdb1bc')
+b2sums=('0fba946ee510322236b5f4e3b7c3dd23358a36f090cad527163c24e4d8575565b90bf457a112331afd84fb5a15684d1f31946432dc7ccbc35060bfcdd169e8e6')
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  cmake -DCMAKE_INSTALL_PREFIX=/usr \
+-DBUILD_SHARED_LIBS=ON \
+-Wno-dev \
+-B build \
+-S .
+  make VERBOSE=1 -C build
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install -C build
+  install -vDm 644 LICENSE \
+-t "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -vDm 644 {CONTRIBUTORS,README.md} \
+-t "${pkgdir}/usr/share/doc/${pkgname}"
+}
+# vim:set ts=2 sw=2 et:



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

2021-08-19 Thread David Runge via arch-commits
Date: Thursday, August 19, 2021 @ 21:17:25
  Author: dvzrv
Revision: 1003916

upgpkg: capnproto 0.9.0-1: Upgrade to 0.9.0.

Adhere to latest cmake packaging guidelines.
Add openssl to depends (required for libkj-tls.so).
Add libkj-tls.so to provides.

Modified:
  capnproto/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-19 21:13:30 UTC (rev 1003915)
+++ PKGBUILD2021-08-19 21:17:25 UTC (rev 1003916)
@@ -4,23 +4,26 @@
 #   Severen Redwood 
 
 pkgname=capnproto
-pkgver=0.8.0
+pkgver=0.9.0
 pkgrel=1
 pkgdesc="Cap'n Proto serialization/RPC system"
 arch=('x86_64')
 url='https://capnproto.org/'
 license=('MIT')
-depends=('gcc-libs' 'glibc' 'zlib')
+depends=('gcc-libs' 'glibc' 'openssl' 'zlib')
 makedepends=('cmake')
 provides=('libcapnp.so' 'libcapnp-json.so' 'libcapnp-rpc.so' 'libcapnpc.so'
-'libkj-async.so' 'libkj-gzip.so' 'libkj-http.so' 'libkj-test.so' 'libkj.so')
+'libkj-async.so' 'libkj-gzip.so' 'libkj-http.so' 'libkj-test.so' 'libkj-tls.so'
+'libkj.so')
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/${pkgname}/${pkgname}/archive/v${pkgver}.tar.gz;)
-sha512sums=('a3b87d47f4c160c3c72304539c3d2a6836488a50d1014c9f0eb95c112dc1e0f85b3158d26c248eff464205388ea61733c45ba10dc5441e5dd04064ba2c7970e6')
+sha512sums=('d50d8bb733e84d94a37065eeab1695e0053d0199aa529f6616df296d644ee6004cc0e3f10974ff95e95355fa4b2d5cee2108d1e503c0ffc4333e67d15fbdb1bc')
+b2sums=('0fba946ee510322236b5f4e3b7c3dd23358a36f090cad527163c24e4d8575565b90bf457a112331afd84fb5a15684d1f31946432dc7ccbc35060bfcdd169e8e6')
 
 build() {
   cd "${pkgname}-${pkgver}"
   cmake -DCMAKE_INSTALL_PREFIX=/usr \
 -DBUILD_SHARED_LIBS=ON \
+-Wno-dev \
 -B build \
 -S .
   make VERBOSE=1 -C build



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

2021-08-19 Thread David Runge via arch-commits
Date: Thursday, August 19, 2021 @ 21:13:30
  Author: dvzrv
Revision: 1003915

archrelease: copy trunk to community-testing-x86_64

Added:
  dnscrypt-proxy/repos/community-testing-x86_64/
  dnscrypt-proxy/repos/community-testing-x86_64/PKGBUILD
(from rev 1003914, dnscrypt-proxy/trunk/PKGBUILD)
  dnscrypt-proxy/repos/community-testing-x86_64/dnscrypt-proxy.install
(from rev 1003914, dnscrypt-proxy/trunk/dnscrypt-proxy.install)
  dnscrypt-proxy/repos/community-testing-x86_64/dnscrypt-proxy.service
(from rev 1003914, dnscrypt-proxy/trunk/dnscrypt-proxy.service)
  dnscrypt-proxy/repos/community-testing-x86_64/dnscrypt-proxy.socket
(from rev 1003914, dnscrypt-proxy/trunk/dnscrypt-proxy.socket)

+
 PKGBUILD   |   75 +++
 dnscrypt-proxy.install |9 +
 dnscrypt-proxy.service |   36 ++
 dnscrypt-proxy.socket  |   16 ++
 4 files changed, 136 insertions(+)

Copied: dnscrypt-proxy/repos/community-testing-x86_64/PKGBUILD (from rev 
1003914, dnscrypt-proxy/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2021-08-19 21:13:30 UTC (rev 1003915)
@@ -0,0 +1,75 @@
+# Maintainer: David Runge 
+# Contributor: Felix Yan 
+# Contributor: Techlive Zheng 
+# Contributor: peace4all 
+
+pkgname=dnscrypt-proxy
+pkgver=2.1.0
+pkgrel=1
+pkgdesc="A flexible DNS proxy, with support for encrypted DNS protocols"
+arch=('x86_64')
+url="https://github.com/DNSCrypt/dnscrypt-proxy;
+license=('ISC')
+depends=('glibc')
+makedepends=('git' 'go')
+optdepends=('python-urllib3: for generate-domains-blocklist')
+install="${pkgname}.install"
+backup=("etc/${pkgname}/${pkgname}.toml"
+"etc/${pkgname}/allowed-ips.txt"
+"etc/${pkgname}/allowed-names.txt"
+"etc/${pkgname}/blocked-ips.txt"
+"etc/${pkgname}/blocked-names.txt"
+"etc/${pkgname}/cloaking-rules.txt"
+"etc/${pkgname}/forwarding-rules.txt"
+)
+source=("git+https://github.com/dnscrypt/${pkgname}#tag=${pkgver}?signed;
+"${pkgname}.service"
+"${pkgname}.socket"
+
"${pkgname}-${pkgver}-configuration.patch::https://github.com/dvzrv/dnscrypt-proxy/commit/c3b021adcfc564f331ba531c35b4501adfee53d3.patch;)
+sha512sums=('SKIP'
+
'49a9e7ab55e3d5a61017ab2d3a9d8baa503a7737b3b23402d1685f3fda2b59c5e08810bb18be30b2f099da7fa8686ce1bb4052cdd705e9397fd40b663bef3f21'
+
'56a56e87032da9316b392b0613124b0743673041596c717005541ae9b3994c7fc16c02497ea773d321f45d8e0f9ea8fda00783062cef4d5c8277b5b6f7cb10d5'
+
'5153386b92ff3540c9e564fa9224a7300e31fe9d0e0a0dd1a262c389e8d115eac549cb863e822c727de52a28d8f2a7a31188d4c793899ae42809f55a0e299b63')
+validpgpkeys=('54A2B8892CC3D6A597B92B6C210627AABA709FE1') # Frank Denis 
(Jedi/Sector One) https://github.com/jedisct1/dnscrypt-proxy/wiki
+Wants=network-online.target nss-lookup.target
+Before=nss-lookup.target
+
+[Service]
+AmbientCapabilities=CAP_NET_BIND_SERVICE
+CacheDirectory=dnscrypt-proxy
+CapabilityBoundingSet=CAP_NET_BIND_SERVICE
+DynamicUser=yes
+ExecStart=/usr/bin/dnscrypt-proxy --config 
/etc/dnscrypt-proxy/dnscrypt-proxy.toml
+LockPersonality=yes
+LogsDirectory=dnscrypt-proxy
+MemoryDenyWriteExecute=true
+NonBlocking=true
+NoNewPrivileges=true
+PrivateDevices=true
+ProtectControlGroups=yes
+ProtectHome=yes
+ProtectHostname=yes
+ProtectKernelLogs=yes
+ProtectKernelModules=yes
+ProtectKernelTunables=yes
+ProtectSystem=strict
+RestrictAddressFamilies=AF_INET AF_INET6
+RestrictNamespaces=true
+RestrictRealtime=true
+RuntimeDirectory=dnscrypt-proxy
+StateDirectory=dnscrypt-proxy
+SystemCallArchitectures=native
+SystemCallFilter=@system-service @chown
+SystemCallFilter=~@resources @privileged
+
+[Install]
+WantedBy=multi-user.target

Copied: dnscrypt-proxy/repos/community-testing-x86_64/dnscrypt-proxy.socket 
(from rev 1003914, dnscrypt-proxy/trunk/dnscrypt-proxy.socket)
===
--- community-testing-x86_64/dnscrypt-proxy.socket  
(rev 0)
+++ community-testing-x86_64/dnscrypt-proxy.socket  2021-08-19 21:13:30 UTC 
(rev 1003915)
@@ -0,0 +1,16 @@
+[Unit]
+Description=DNSCrypt-proxy socket
+Documentation=https://github.com/jedisct1/dnscrypt-proxy/wiki
+Before=nss-lookup.target
+Wants=nss-lookup.target network-online.target
+
+[Socket]
+ListenStream=127.0.0.1:53
+ListenDatagram=127.0.0.1:53
+ListenStream=[::1]:53
+ListenDatagram=[::1]:53
+NoDelay=true
+DeferAcceptSec=1
+
+[Install]
+WantedBy=sockets.target



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

2021-08-19 Thread David Runge via arch-commits
Date: Thursday, August 19, 2021 @ 21:13:14
  Author: dvzrv
Revision: 1003914

upgpkg: dnscrypt-proxy 2.1.0-1: Upgrade to 2.1.0.

Backport patch for making the configuration file FHS compliant.

Modified:
  dnscrypt-proxy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-19 20:50:46 UTC (rev 1003913)
+++ PKGBUILD2021-08-19 21:13:14 UTC (rev 1003914)
@@ -4,8 +4,8 @@
 # Contributor: peace4all 
 
 pkgname=dnscrypt-proxy
-pkgver=2.0.45
-pkgrel=2
+pkgver=2.1.0
+pkgrel=1
 pkgdesc="A flexible DNS proxy, with support for encrypted DNS protocols"
 arch=('x86_64')
 url="https://github.com/DNSCrypt/dnscrypt-proxy;
@@ -25,11 +25,11 @@
 source=("git+https://github.com/dnscrypt/${pkgname}#tag=${pkgver}?signed;
 "${pkgname}.service"
 "${pkgname}.socket"
-
"${pkgname}-${pkgver}-configuration.patch::https://github.com/dvzrv/dnscrypt-proxy/commit/6dc7bcbcaf17bc56bb566f8b3b4fde12abc1d824.patch;)
+
"${pkgname}-${pkgver}-configuration.patch::https://github.com/dvzrv/dnscrypt-proxy/commit/c3b021adcfc564f331ba531c35b4501adfee53d3.patch;)
 sha512sums=('SKIP'
 
'49a9e7ab55e3d5a61017ab2d3a9d8baa503a7737b3b23402d1685f3fda2b59c5e08810bb18be30b2f099da7fa8686ce1bb4052cdd705e9397fd40b663bef3f21'
 
'56a56e87032da9316b392b0613124b0743673041596c717005541ae9b3994c7fc16c02497ea773d321f45d8e0f9ea8fda00783062cef4d5c8277b5b6f7cb10d5'
-
'980dd07cd68cf4b2ba41460d1946d1c71dc9e8e275556933fbc547961ba92b9e9d2f0409d3e2e97f285c049b1408d84d02a43036421874b6caf7e3be02f1f6c3')
+
'5153386b92ff3540c9e564fa9224a7300e31fe9d0e0a0dd1a262c389e8d115eac549cb863e822c727de52a28d8f2a7a31188d4c793899ae42809f55a0e299b63')
 validpgpkeys=('54A2B8892CC3D6A597B92B6C210627AABA709FE1') # Frank Denis 
(Jedi/Sector One) 

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

2021-08-19 Thread Jan Steffens via arch-commits
Date: Thursday, August 19, 2021 @ 20:56:38
  Author: heftig
Revision: 422378

2.68.4-1

Modified:
  glib2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-19 19:39:43 UTC (rev 422377)
+++ PKGBUILD2021-08-19 20:56:38 UTC (rev 422378)
@@ -3,7 +3,7 @@
 
 pkgbase=glib2
 pkgname=(glib2 glib2-docs)
-pkgver=2.68.3
+pkgver=2.68.4
 pkgrel=1
 pkgdesc="Low level core library"
 url="https://wiki.gnome.org/Projects/GLib;



[arch-commits] Commit in matrix-appservice-irc/repos/community-x86_64 (8 files)

2021-08-19 Thread David Runge via arch-commits
Date: Thursday, August 19, 2021 @ 20:50:46
  Author: dvzrv
Revision: 1003913

archrelease: copy trunk to community-x86_64

Added:
  matrix-appservice-irc/repos/community-x86_64/PKGBUILD
(from rev 1003912, matrix-appservice-irc/trunk/PKGBUILD)
  matrix-appservice-irc/repos/community-x86_64/matrix-appservice-irc.service
(from rev 1003912, 
matrix-appservice-irc/trunk/matrix-appservice-irc.service)
  matrix-appservice-irc/repos/community-x86_64/matrix-appservice-irc.sysusers
(from rev 1003912, 
matrix-appservice-irc/trunk/matrix-appservice-irc.sysusers)
  matrix-appservice-irc/repos/community-x86_64/matrix-appservice-irc.tmpfiles
(from rev 1003912, 
matrix-appservice-irc/trunk/matrix-appservice-irc.tmpfiles)
Deleted:
  matrix-appservice-irc/repos/community-x86_64/PKGBUILD
  matrix-appservice-irc/repos/community-x86_64/matrix-appservice-irc.service
  matrix-appservice-irc/repos/community-x86_64/matrix-appservice-irc.sysusers
  matrix-appservice-irc/repos/community-x86_64/matrix-appservice-irc.tmpfiles

+
 PKGBUILD   |  264 +++
 matrix-appservice-irc.service  |   66 -
 matrix-appservice-irc.sysusers |2 
 matrix-appservice-irc.tmpfiles |2 
 4 files changed, 167 insertions(+), 167 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-19 20:50:36 UTC (rev 1003912)
+++ PKGBUILD2021-08-19 20:50:46 UTC (rev 1003913)
@@ -1,132 +0,0 @@
-# Maintainer: David Runge 
-# Contributor: Bruno Pagani 
-
-pkgname=matrix-appservice-irc
-pkgver=0.29.0
-pkgrel=1
-pkgdesc="Node.js IRC bridge for Matrix"
-arch=('x86_64')
-url="https://github.com/matrix-org/matrix-appservice-irc;
-license=('Apache')
-depends=('gcc-libs' 'glibc' 'nodejs')
-makedepends=('git' 'npm' 'python')
-optdepends=('python-urllib3: for grant-ops-in-room.py, migrate-users.py, 
remove-idle-users.py and remove-user.py'
-'python-requests: for grant-ops-in-room.py, migrate-users.py, 
remove-idle-users.py and remove-user.py'
-'python-yaml: for grant-ops-in-room.py, migrate-users.py and 
remove-user.py')
-backup=("etc/${pkgname}/config.yaml"
-"etc/${pkgname}/provisioning.rules.yaml"
-"etc/${pkgname}/registration.yaml")
-source=("https://github.com/matrix-org/matrix-appservice-irc/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz;
-"${pkgname}.service"
-"${pkgname}.sysusers"
-"${pkgname}.tmpfiles")
-sha512sums=('c8e5d50e1bc57c2991354d7c1ff3c0b01e09ae2b987ef2339d26498bb87b50e4821e17bf75764ec48a6da98a056210b20fce588b5eaece2294632a12475653e6'
-
'f1d1351a554f68537c7fc5771dddc0267a1f19d214bef935faca7b161d611145e3c127c77ae4eefc10c002a2f2f7a8d90e353b0e526ab83a9666d7d457fc449c'
-
'f615e5da11be8d834d6f48f064a65a9b7aa129d255be7865a171522d5aed921eb549a33661ab2c4fff4625d2ca5a7f9c43be95c188e7a77bdde4062aa3983edd'
-
'60b7afdd68aaf2c8e47caf10efefb6c4dc54f40d187ad495a604786b30c00dac7e5c77a7b596d86c2a62a7cdbe3727e11f75494f86d26c9fc51ea7a1bf6ab7f0')
-b2sums=('8938ad6093d6166a168c1dace60e96066fce99efed8cecbd7cab75b8e897238a2ee97989c1d0651e288561cdda2b9c3c5852baedc3f4d4e063acc32fb8b206d8'
-
'6010949756e816ca0fe9f9d6d119ec2085f34ec214111c0d55b6f0f90f1fccca23431c6ac485d29bf6ec723a3e6fa04150316fef67ea554254e994176078487a'
-
'cbfe3cdb07707b79ae438936927f06ac4e92669b0b7dd35a9d228aae3cc821e3a50a2cc1627f7959147e329e617247f4002a267bc8630819946e8083a39b8895'
-
'2dbbf14f82d88418470f848a2d11c0feacb257026382513c2fa02ad7f605f47e4cc5e9bf05668da383a596bc81450e468288863cdbdde9f7c16b02561f0114a7')
-
-prepare() {
-  cd "${pkgname}-${pkgver}"
-  sed -e 
"s|./provisioning.rules.yaml|/etc/${pkgname}/provisioning.rules.yaml|" \
-  -i config.sample.yaml
-  touch registration.yaml
-}
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  # TODO: fix issues with full RELRO and PIE
-  # https://github.com/matrix-org/matrix-appservice-irc/issues/1133
-  npm install --cache "${srcdir}"/npm-cache
-}
-
-check() {
-  cd "${pkgname}-${pkgver}"
-  npm audit || echo "npm audit output might return non-zero"
-  npm test
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  # removing unneeded files and directories
-  find node_modules -type f \
-  \( \
- -iname '*Makefile*' -o \
- -iname '*appveyor.yml' -o \
- -iname '*.babelrc' -o \
- -iname '*.bak' -o \
- -iname '*bower.json' -o \
- -iname '*.c' -o \
- -iname '*.cc' -o \
- -iname '*.cpp' -o \
- -iname '*.md' -o \
- -iname '*.markdown' -o \
- -iname '*.rst' -o \
- -iname '*.nycrc' -o \
- -iname '*.npmignore' -o \
- -iname '*.editorconfig' -o \
- -iname '*.el' -o \
- -iname '*.eslintignore' -o \
- -iname '*.eslintrc*' -o \
- -iname '*.fimbullinter.yaml' -o \
- -iname '*.gitattributes' -o \
- -iname 

[arch-commits] Commit in matrix-appservice-irc/trunk (PKGBUILD)

2021-08-19 Thread David Runge via arch-commits
Date: Thursday, August 19, 2021 @ 20:50:36
  Author: dvzrv
Revision: 1003912

upgpkg: matrix-appservice-irc 0.30.0-1: Upgrade to 0.30.0.

Modified:
  matrix-appservice-irc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-19 20:49:47 UTC (rev 1003911)
+++ PKGBUILD2021-08-19 20:50:36 UTC (rev 1003912)
@@ -2,7 +2,7 @@
 # Contributor: Bruno Pagani 
 
 pkgname=matrix-appservice-irc
-pkgver=0.29.0
+pkgver=0.30.0
 pkgrel=1
 pkgdesc="Node.js IRC bridge for Matrix"
 arch=('x86_64')
@@ -20,11 +20,11 @@
 "${pkgname}.service"
 "${pkgname}.sysusers"
 "${pkgname}.tmpfiles")
-sha512sums=('c8e5d50e1bc57c2991354d7c1ff3c0b01e09ae2b987ef2339d26498bb87b50e4821e17bf75764ec48a6da98a056210b20fce588b5eaece2294632a12475653e6'
+sha512sums=('c224d10e618c33d0f2b64cc8311d2241302cd9426ed69bbad47ba9b994e3c36952372b0180cbdd2c7f3692d40613cae6c1827cdbe1be66161f1e737c9929d0d4'
 
'f1d1351a554f68537c7fc5771dddc0267a1f19d214bef935faca7b161d611145e3c127c77ae4eefc10c002a2f2f7a8d90e353b0e526ab83a9666d7d457fc449c'
 
'f615e5da11be8d834d6f48f064a65a9b7aa129d255be7865a171522d5aed921eb549a33661ab2c4fff4625d2ca5a7f9c43be95c188e7a77bdde4062aa3983edd'
 
'60b7afdd68aaf2c8e47caf10efefb6c4dc54f40d187ad495a604786b30c00dac7e5c77a7b596d86c2a62a7cdbe3727e11f75494f86d26c9fc51ea7a1bf6ab7f0')
-b2sums=('8938ad6093d6166a168c1dace60e96066fce99efed8cecbd7cab75b8e897238a2ee97989c1d0651e288561cdda2b9c3c5852baedc3f4d4e063acc32fb8b206d8'
+b2sums=('fc4434cfc3018aa405b66da3ba3ebaee91594f30030dbbf234d29763970afd474521eca12b90c7ea1020b2579beee45bc3405631daddc869bc840340a07c355f'
 
'6010949756e816ca0fe9f9d6d119ec2085f34ec214111c0d55b6f0f90f1fccca23431c6ac485d29bf6ec723a3e6fa04150316fef67ea554254e994176078487a'
 
'cbfe3cdb07707b79ae438936927f06ac4e92669b0b7dd35a9d228aae3cc821e3a50a2cc1627f7959147e329e617247f4002a267bc8630819946e8083a39b8895'
 
'2dbbf14f82d88418470f848a2d11c0feacb257026382513c2fa02ad7f605f47e4cc5e9bf05668da383a596bc81450e468288863cdbdde9f7c16b02561f0114a7')



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

2021-08-19 Thread David Runge via arch-commits
Date: Thursday, August 19, 2021 @ 20:49:47
  Author: dvzrv
Revision: 1003911

archrelease: copy trunk to community-any

Added:
  python-flufl-lock/repos/community-any/PKGBUILD
(from rev 1003910, python-flufl-lock/trunk/PKGBUILD)
Deleted:
  python-flufl-lock/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-19 20:49:38 UTC (rev 1003910)
+++ PKGBUILD2021-08-19 20:49:47 UTC (rev 1003911)
@@ -1,43 +0,0 @@
-# Maintainer: David Runge 
-
-_name=flufl.lock
-pkgname=python-flufl-lock
-pkgver=5.1
-pkgrel=1
-pkgdesc="NFS-safe file locking with timeouts for POSIX systems for Python"
-arch=('any')
-url="https://gitlab.com/warsaw/flufl.lock;
-license=('Apache')
-depends=('python-atpublic' 'python-psutil')
-makedepends=('python-setuptools')
-checkdepends=('python-pytest' 'python-sybil')
-replaces=('python-flufl.lock')
-source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz;)
-sha512sums=('fbfc28e4e34e47b92a5b4e6d1771bf2b53ee052947d2f05d3392c3db156c5d14632ad63e0ac5b2934b8dc00176f6ff5b5fe1ff87358056ab9d71c2bb7f2c0498')
-b2sums=('c5b5bbfb284945d2232e8183084e4f9b24518962e2b8bf229bfd10d2e0629f0d248daf8cae544cbf50ec24c57ff2744c3cae4a4de756bdbd11fe51e810ac2eb6')
-
-prepare() {
-  mv -v "${_name}-${pkgver}" "$pkgname-$pkgver"
-  cd "$pkgname-$pkgver"
-  # we don't use coverage with pytest
-  sed -s '/addopts/d' -i setup.cfg
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-  python setup.py build
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-  export PYTHONPATH="build:${PYTHONPATH}"
-  pytest -v
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  python setup.py install --skip-build \
---optimize=1 \
---root="${pkgdir}"
-  install -vDm 644 README.rst -t "${pkgdir}/usr/share/doc/${pkgname}"
-}

Copied: python-flufl-lock/repos/community-any/PKGBUILD (from rev 1003910, 
python-flufl-lock/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-19 20:49:47 UTC (rev 1003911)
@@ -0,0 +1,43 @@
+# Maintainer: David Runge 
+
+_name=flufl.lock
+pkgname=python-flufl-lock
+pkgver=6.0
+pkgrel=1
+pkgdesc="NFS-safe file locking with timeouts for POSIX systems for Python"
+arch=('any')
+url="https://gitlab.com/warsaw/flufl.lock;
+license=('Apache')
+depends=('python-atpublic' 'python-psutil')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest' 'python-sybil')
+replaces=('python-flufl.lock')
+source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz;)
+sha512sums=('cbd41f1dedb91fc120c3f3e20c15f25a39b0ce5b27a2c4fcedad301e91156d5291b35ff961c38a5a7d43c40fdfa2a879a2ba427f1b17994678fbba797e7a234b')
+b2sums=('98e259f04aac565271e7918223c1bc8abd528f91fd04490a519b482c0d12bbf954f0c678f89d990bc036df5000fb5587e1689d6fc0cd499ed7fe806a1e3125f5')
+
+prepare() {
+  mv -v "${_name}-${pkgver}" "$pkgname-$pkgver"
+  cd "$pkgname-$pkgver"
+  # we don't use coverage with pytest
+  sed -s '/addopts/d' -i setup.cfg
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  python setup.py build
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  export PYTHONPATH="build:${PYTHONPATH}"
+  pytest -v
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  python setup.py install --skip-build \
+--optimize=1 \
+--root="${pkgdir}"
+  install -vDm 644 README.rst -t "${pkgdir}/usr/share/doc/${pkgname}"
+}



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

2021-08-19 Thread David Runge via arch-commits
Date: Thursday, August 19, 2021 @ 20:49:38
  Author: dvzrv
Revision: 1003910

upgpkg: python-flufl-lock 6.0-1: Upgrade to 6.0.

Modified:
  python-flufl-lock/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-19 20:46:54 UTC (rev 1003909)
+++ PKGBUILD2021-08-19 20:49:38 UTC (rev 1003910)
@@ -2,7 +2,7 @@
 
 _name=flufl.lock
 pkgname=python-flufl-lock
-pkgver=5.1
+pkgver=6.0
 pkgrel=1
 pkgdesc="NFS-safe file locking with timeouts for POSIX systems for Python"
 arch=('any')
@@ -13,8 +13,8 @@
 checkdepends=('python-pytest' 'python-sybil')
 replaces=('python-flufl.lock')
 
source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz;)
-sha512sums=('fbfc28e4e34e47b92a5b4e6d1771bf2b53ee052947d2f05d3392c3db156c5d14632ad63e0ac5b2934b8dc00176f6ff5b5fe1ff87358056ab9d71c2bb7f2c0498')
-b2sums=('c5b5bbfb284945d2232e8183084e4f9b24518962e2b8bf229bfd10d2e0629f0d248daf8cae544cbf50ec24c57ff2744c3cae4a4de756bdbd11fe51e810ac2eb6')
+sha512sums=('cbd41f1dedb91fc120c3f3e20c15f25a39b0ce5b27a2c4fcedad301e91156d5291b35ff961c38a5a7d43c40fdfa2a879a2ba427f1b17994678fbba797e7a234b')
+b2sums=('98e259f04aac565271e7918223c1bc8abd528f91fd04490a519b482c0d12bbf954f0c678f89d990bc036df5000fb5587e1689d6fc0cd499ed7fe806a1e3125f5')
 
 prepare() {
   mv -v "${_name}-${pkgver}" "$pkgname-$pkgver"



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

2021-08-19 Thread David Runge via arch-commits
Date: Thursday, August 19, 2021 @ 20:46:54
  Author: dvzrv
Revision: 1003909

archrelease: copy trunk to community-any

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

--+
 PKGBUILD |  112 ++---
 1 file changed, 56 insertions(+), 56 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-19 20:46:46 UTC (rev 1003908)
+++ PKGBUILD2021-08-19 20:46:54 UTC (rev 1003909)
@@ -1,56 +0,0 @@
-# Maintainer: David Runge 
-
-_name=activesupport
-pkgname=ruby-activesupport
-pkgver=6.1.4
-pkgrel=1
-pkgdesc='A collection of utility classes and standard library extensions'
-arch=('any')
-url="https://github.com/rails/rails/tree/master/activesupport;
-license=('MIT')
-# bootstrap activesupport without i18n (circular dependency)
-depends=('ruby' 'ruby-concurrent' 'ruby-i18n' 'ruby-tzinfo' 'ruby-zeitwerk' 
'ruby-minitest')
-makedepends=('git' 'ruby-rake')
-# TODO: package ruby-dalli
-checkdepends=('ruby-minitest')
-options=(!emptydirs)
-source=("${pkgname}-${pkgver}::git+https://github.com/rails/rails#tag=v${pkgver}?signed;)
-sha512sums=('SKIP')
-validpgpkeys=(
-  '54FE550EA35E26D7C75362C1FC23B6D0F1EEE948'  # Rafael Mendonça França 

-  '4CE91B75A79828E86B1AA8BB953170BCB4FFAFC6'  # Aaron Patterson 

-)
-
-prepare() {
-  cd "${pkgname}-${pkgver}/activesupport"
-  # we don't do version pinning
-  sed -r 's|~>|>=|g' -i "${_name}.gemspec"
-}
-
-build() {
-  cd "$pkgname-$pkgver/activesupport"
-  gem build "${_name}.gemspec"
-}
-
-# bootstrap activesupport without tests (circular dependency on i18n)
-# unspecified dependency on ruby-dalli: 
https://github.com/rails/rails/issues/38134
-# check() {
-#   cd "$pkgname-$pkgver/activesupport"
-#   rake test
-# }
-
-package() {
-  cd "$pkgname-$pkgver/activesupport"
-  local _gemdir="$(gem env gemdir)"
-  gem install --ignore-dependencies \
-  --no-user-install \
-  -i "${pkgdir}/${_gemdir}" \
-  -n "${pkgdir}/usr/bin" \
-  ${_name}-${pkgver}.gem
-  install -vDm 644 MIT-LICENSE \
-"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  cd "${pkgdir}/${_gemdir}"
-  rm -rvf cache gems/${_name}-${pkgver}/{ext,lib/*/*.so} \
-extensions/*/*/${_name}-${pkgver}/{mkmf.log,gem_make.out} \
-build_info extensions
-}

Copied: ruby-activesupport/repos/community-any/PKGBUILD (from rev 1003908, 
ruby-activesupport/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-19 20:46:54 UTC (rev 1003909)
@@ -0,0 +1,56 @@
+# Maintainer: David Runge 
+
+_name=activesupport
+pkgname=ruby-activesupport
+pkgver=6.1.4.1
+pkgrel=1
+pkgdesc='A collection of utility classes and standard library extensions'
+arch=('any')
+url="https://github.com/rails/rails/tree/master/activesupport;
+license=('MIT')
+# bootstrap activesupport without i18n (circular dependency)
+depends=('ruby' 'ruby-concurrent' 'ruby-i18n' 'ruby-tzinfo' 'ruby-zeitwerk' 
'ruby-minitest')
+makedepends=('git' 'ruby-rake')
+# TODO: package ruby-dalli
+checkdepends=('ruby-minitest')
+options=(!emptydirs)
+source=("${pkgname}-${pkgver}::git+https://github.com/rails/rails#tag=v${pkgver}?signed;)
+sha512sums=('SKIP')
+validpgpkeys=(
+  '54FE550EA35E26D7C75362C1FC23B6D0F1EEE948'  # Rafael Mendonça França 

+  '4CE91B75A79828E86B1AA8BB953170BCB4FFAFC6'  # Aaron Patterson 

+)
+
+prepare() {
+  cd "${pkgname}-${pkgver}/activesupport"
+  # we don't do version pinning
+  sed -r 's|~>|>=|g' -i "${_name}.gemspec"
+}
+
+build() {
+  cd "$pkgname-$pkgver/activesupport"
+  gem build "${_name}.gemspec"
+}
+
+# bootstrap activesupport without tests (circular dependency on i18n)
+# unspecified dependency on ruby-dalli: 
https://github.com/rails/rails/issues/38134
+# check() {
+#   cd "$pkgname-$pkgver/activesupport"
+#   rake test
+# }
+
+package() {
+  cd "$pkgname-$pkgver/activesupport"
+  local _gemdir="$(gem env gemdir)"
+  gem install --ignore-dependencies \
+  --no-user-install \
+  -i "${pkgdir}/${_gemdir}" \
+  -n "${pkgdir}/usr/bin" \
+  ${_name}-${pkgver}.gem
+  install -vDm 644 MIT-LICENSE \
+"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  cd "${pkgdir}/${_gemdir}"
+  rm -rvf cache gems/${_name}-${pkgver}/{ext,lib/*/*.so} \
+extensions/*/*/${_name}-${pkgver}/{mkmf.log,gem_make.out} \
+build_info extensions
+}



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

2021-08-19 Thread David Runge via arch-commits
Date: Thursday, August 19, 2021 @ 20:46:46
  Author: dvzrv
Revision: 1003908

upgpkg: ruby-activesupport 6.1.4.1-1: Upgrade to 6.1.4.1.

Modified:
  ruby-activesupport/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-19 20:45:07 UTC (rev 1003907)
+++ PKGBUILD2021-08-19 20:46:46 UTC (rev 1003908)
@@ -2,7 +2,7 @@
 
 _name=activesupport
 pkgname=ruby-activesupport
-pkgver=6.1.4
+pkgver=6.1.4.1
 pkgrel=1
 pkgdesc='A collection of utility classes and standard library extensions'
 arch=('any')



[arch-commits] Commit in cacti/repos/community-any (10 files)

2021-08-19 Thread David Runge via arch-commits
Date: Thursday, August 19, 2021 @ 20:45:07
  Author: dvzrv
Revision: 1003907

archrelease: copy trunk to community-any

Added:
  cacti/repos/community-any/PKGBUILD
(from rev 1003906, cacti/trunk/PKGBUILD)
  cacti/repos/community-any/cacti.install
(from rev 1003906, cacti/trunk/cacti.install)
  cacti/repos/community-any/cacti.sysusers
(from rev 1003906, cacti/trunk/cacti.sysusers)
  cacti/repos/community-any/cacti.tmpfiles
(from rev 1003906, cacti/trunk/cacti.tmpfiles)
  cacti/repos/community-any/cacti.uwsgi
(from rev 1003906, cacti/trunk/cacti.uwsgi)
Deleted:
  cacti/repos/community-any/PKGBUILD
  cacti/repos/community-any/cacti.install
  cacti/repos/community-any/cacti.sysusers
  cacti/repos/community-any/cacti.tmpfiles
  cacti/repos/community-any/cacti.uwsgi

+
 PKGBUILD   |  332 +++
 cacti.install  |   18 +-
 cacti.sysusers |2 
 cacti.tmpfiles |   34 ++---
 cacti.uwsgi|   72 +--
 5 files changed, 229 insertions(+), 229 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-19 20:44:55 UTC (rev 1003906)
+++ PKGBUILD2021-08-19 20:45:07 UTC (rev 1003907)
@@ -1,166 +0,0 @@
-# Maintainer: David Runge 
-# Contributor: Sergej Pupykin 
-# Contributor: tuxbubling 
-
-pkgname=cacti
-pkgver=1.2.17
-pkgrel=1
-pkgdesc="Network graphing solution using RRDTool"
-arch=('any')
-url="https://www.cacti.net;
-license=('GPL2')
-depends=('php-gd' 'php-snmp' 'rrdtool' 'ttf-dejavu')
-optdepends=('mariadb: use local MySQL server'
-'perl: for scripts'
-'php-fpm: run in fastCGI process manager'
-'uwsgi-plugin-php: run as local application container')
-backup=('etc/webapps/cacti/.htaccess'
-'etc/webapps/cacti/config.php')
-source=("https://www.${pkgname}.net/downloads/${pkgname}-${pkgver}.tar.gz;
-"${pkgname}.uwsgi"
-"${pkgname}.sysusers"
-"${pkgname}.tmpfiles")
-install="${pkgname}.install"
-sha512sums=('94ae75b2494a91c536906c7bbeaa948d16c7ad96ed3a62c1eb21175f92c01787c6849960bbc791e04b3df46edbfd3cd787eb825bb423ce0814c0904edb2c915d'
-
'ba421785a3a86535dba210b5ac34ad059fac72b809a9027308d047a967de43aa204eda56e129b28f6400859427de123734b338c5d8cd3da1944893fa3ef33e48'
-
'847e2b791de44d0790a2fdb81c77c8af9a66da9d44500f3f8a8d1c0f406d3a20082cc8fef1c6afe4de93ad989d35c79c9809abe14693a9ac6ea74d4696e3b6c1'
-
'e833e411f74e3c32589ba83cb1b2f28ca9b35931626480ab7daa63420d47ecfc3061e6703323646b69e1d98536b6f3afdd36faa483fb13aac9b818af0c6e')
-b2sums=('e555fc99560d10e94181c38b50e6f839532fb3dc66ff688b36a7efd10c15304e7636c9b4b483763fcea751317bcb283bb2bd8f813d5759c98aed6bbf02fd256a'
-
'880cfc1a87abd95a624ffef6f1ae5ac416b4020ae40edc32355314bb33b5003b21ab8ed082b520d70b166739a1b056339cca7b6a6bb82167c14925ae3ca0d34f'
-
'2ec9956b690ab9244e31a58d295ab56b5d0df9fc9586c74edbd55c12d3383430b8a1a8a708d7d747abadb67eee42094562da510ddfc7797978c2683e7b86a252'
-
'0a532bbbd07b21da18ea21eec3f268510740069fb732e3d387f224b93f0539e3e968ba6332bf647ff62f2d98910abc33e35a3e82d335cf7d29a503609e22651f')
-
-prepare() {
-  # adding default .htaccess
-  echo "Require all denied" > "${pkgname}-htaccess"
-  cd "${pkgname}-${pkgver}"
-  # setting correct install path for spine
-  sed -e 's|/usr/local/spine/bin/spine|/usr/bin/spine|g' \
-  -i install/functions.php
-  # setting correct path for dejavu font
-  sed -e 's|/usr/share/fonts/dejavu/|/usr/share/fonts/TTF/|g' -i lib/rrd.php
-  # remove unneeded executable bits
-  find . -executable -type f -and -not -path "*scripts*" -exec chmod -c 644 {} 
\;
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  # webapp
-  install -vDm 640 include/config.php -t "${pkgdir}/etc/webapps/${pkgname}"
-  rm -v include/config.php
-  install -vDm 644 *.{php,sql} -t "${pkgdir}/usr/share/webapps/${pkgname}"
-  install -vDm 644 cli/{*.php,.htaccess} \
--t "${pkgdir}/usr/share/webapps/${pkgname}/cli"
-  install -vDm 644 docs/*.{css,html,sql} \
--t "${pkgdir}/usr/share/webapps/${pkgname}/docs"
-  install -vDm 644 docs/images/*.png \
--t "${pkgdir}/usr/share/webapps/${pkgname}/docs/images"
-  install -vDm 644 formats/*.{format,php} \
--t "${pkgdir}/usr/share/webapps/${pkgname}/formats"
-  install -vDm 644 images/*.{gif,ico,png,svg} \
--t "${pkgdir}/usr/share/webapps/${pkgname}/images"
-  install -vDm 644 include/{*.{php,js},cacti_version} \
--t "${pkgdir}/usr/share/webapps/${pkgname}/include"
-  install -vDm 644 include/content/{*.{html,php},README} \
--t "${pkgdir}/usr/share/webapps/${pkgname}/include/content"
-  install -vDm 644 include/fa/index.php \
--t "${pkgdir}/usr/share/webapps/${pkgname}/include/fa"
-  install -vDm 644 include/fa/css/*.{css,php} \
--t "${pkgdir}/usr/share/webapps/${pkgname}/include/fa/css"
-  install -vDm 644 include/fa/less/*.{less,php} \
--t 

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

2021-08-19 Thread David Runge via arch-commits
Date: Thursday, August 19, 2021 @ 20:44:55
  Author: dvzrv
Revision: 1003906

upgpkg: cacti 1.2.18-1: Upgrade to 1.2.18.

Modified:
  cacti/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-19 20:41:19 UTC (rev 1003905)
+++ PKGBUILD2021-08-19 20:44:55 UTC (rev 1003906)
@@ -3,7 +3,7 @@
 # Contributor: tuxbubling 
 
 pkgname=cacti
-pkgver=1.2.17
+pkgver=1.2.18
 pkgrel=1
 pkgdesc="Network graphing solution using RRDTool"
 arch=('any')
@@ -21,11 +21,11 @@
 "${pkgname}.sysusers"
 "${pkgname}.tmpfiles")
 install="${pkgname}.install"
-sha512sums=('94ae75b2494a91c536906c7bbeaa948d16c7ad96ed3a62c1eb21175f92c01787c6849960bbc791e04b3df46edbfd3cd787eb825bb423ce0814c0904edb2c915d'
+sha512sums=('fe8ef8964eb363f586e44721de253b3076af09241413fd5854656bc0372ce772c39d53d0d3ef091aaf41e8feb3e65a1460f2dd6e8f5900faff8eba0f24281566'
 
'ba421785a3a86535dba210b5ac34ad059fac72b809a9027308d047a967de43aa204eda56e129b28f6400859427de123734b338c5d8cd3da1944893fa3ef33e48'
 
'847e2b791de44d0790a2fdb81c77c8af9a66da9d44500f3f8a8d1c0f406d3a20082cc8fef1c6afe4de93ad989d35c79c9809abe14693a9ac6ea74d4696e3b6c1'
 
'e833e411f74e3c32589ba83cb1b2f28ca9b35931626480ab7daa63420d47ecfc3061e6703323646b69e1d98536b6f3afdd36faa483fb13aac9b818af0c6e')
-b2sums=('e555fc99560d10e94181c38b50e6f839532fb3dc66ff688b36a7efd10c15304e7636c9b4b483763fcea751317bcb283bb2bd8f813d5759c98aed6bbf02fd256a'
+b2sums=('64480c10ece12aa26fd8fca9f8ee183dcc0a0be88f2385e5cb5d2e27e05c9c956393d26038a20379a488107ca5dbebfddfd902c234c351caf5f694d4030c3ab6'
 
'880cfc1a87abd95a624ffef6f1ae5ac416b4020ae40edc32355314bb33b5003b21ab8ed082b520d70b166739a1b056339cca7b6a6bb82167c14925ae3ca0d34f'
 
'2ec9956b690ab9244e31a58d295ab56b5d0df9fc9586c74edbd55c12d3383430b8a1a8a708d7d747abadb67eee42094562da510ddfc7797978c2683e7b86a252'
 
'0a532bbbd07b21da18ea21eec3f268510740069fb732e3d387f224b93f0539e3e968ba6332bf647ff62f2d98910abc33e35a3e82d335cf7d29a503609e22651f')



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

2021-08-19 Thread David Runge via arch-commits
Date: Thursday, August 19, 2021 @ 20:41:19
  Author: dvzrv
Revision: 1003905

archrelease: copy trunk to community-x86_64

Added:
  carla/repos/community-x86_64/PKGBUILD
(from rev 1003904, carla/trunk/PKGBUILD)
Deleted:
  carla/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-19 20:41:12 UTC (rev 1003904)
+++ PKGBUILD2021-08-19 20:41:19 UTC (rev 1003905)
@@ -1,50 +0,0 @@
-# Maintainer: David Runge 
-# Contributor: Llewelyn Trahaearn 
-# Contributor: falkTX 
-
-_name=Carla
-pkgname=carla
-pkgver=2.3.2
-pkgrel=1
-pkgdesc="Audio Plugin Host"
-arch=('x86_64')
-url="https://kxstudio.linuxaudio.org/Applications:Carla;
-license=('GPL2')
-groups=('pro-audio')
-depends=('gcc-libs' 'glibc' 'libglvnd' 'libx11' 'python-pyqt5' 'python-pyliblo'
-'python-rdflib' 'qt5-base' 'qt5-svg')
-makedepends=('alsa-lib' 'file' 'fluidsynth' 'git' 'glib2' 'gtk2' 'gtk3'
-'libsndfile' 'liblo' 'libpulse' 'qt5-tools')
-optdepends=(
-  'lv2-host: for the LV2 plugin'
-  'vst-host: for the VST plugin'
-)
-provides=('dssi-host' 'ladspa-host' 'lv2-host' 'vst-host' 'vst3-host')
-source=("git+https://github.com/falkTX/${pkgname}#tag=v${pkgver}?signed;)
-sha512sums=('SKIP')
-b2sums=('SKIP')
-validpgpkeys=('62B11043D2F6EB6672D93103CDBAA37ABC74FBA0')  # falkTX 

-
-build() {
-  cd "${pkgname}"
-  make features
-  make
-}
-
-package() {
-  # libpulse is linked against in carla/libcarla_standalone2.so
-  # liblo is linked against in carla/libcarla_standalone2.so,
-  # carla/libcarla_native-plugin.so and the lv2 and vst plugins
-  depends+=('libasound.so' 'libfluidsynth.so' 'libgdk-3.so'
-  'libgdk-x11-2.0.so' 'libgobject-2.0.so' 'libglib-2.0.so' 'libgtk-3.so'
-  'libgtk-x11-2.0.so' 'liblo.so' 'libmagic.so' 'libpulse.so'
-  'libpulse-simple.so' 'libsndfile.so')
-
-  cd "${pkgname}"
-  make DEFAULT_QT=5 \
-   DESTDIR="${pkgdir}/" \
-   PREFIX=/usr \
-   install
-  install -vDm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}/"
-}
-# vim:set ts=2 sw=2 et:

Copied: carla/repos/community-x86_64/PKGBUILD (from rev 1003904, 
carla/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-19 20:41:19 UTC (rev 1003905)
@@ -0,0 +1,50 @@
+# Maintainer: David Runge 
+# Contributor: Llewelyn Trahaearn 
+# Contributor: falkTX 
+
+_name=Carla
+pkgname=carla
+pkgver=2.4.0
+pkgrel=1
+pkgdesc="Audio Plugin Host"
+arch=('x86_64')
+url="https://kxstudio.linuxaudio.org/Applications:Carla;
+license=('GPL2')
+groups=('pro-audio')
+depends=('gcc-libs' 'glibc' 'libglvnd' 'libx11' 'python-pyqt5' 'python-pyliblo'
+'python-rdflib' 'qt5-base' 'qt5-svg')
+makedepends=('alsa-lib' 'file' 'fluidsynth' 'git' 'glib2' 'gtk2' 'gtk3'
+'libsndfile' 'liblo' 'libpulse' 'qt5-tools')
+optdepends=(
+  'lv2-host: for the LV2 plugin'
+  'vst-host: for the VST plugin'
+)
+provides=('dssi-host' 'ladspa-host' 'lv2-host' 'vst-host' 'vst3-host')
+source=("git+https://github.com/falkTX/${pkgname}#tag=v${pkgver}?signed;)
+sha512sums=('SKIP')
+b2sums=('SKIP')
+validpgpkeys=('62B11043D2F6EB6672D93103CDBAA37ABC74FBA0')  # falkTX 

+
+build() {
+  cd "${pkgname}"
+  make features
+  make
+}
+
+package() {
+  # libpulse is linked against in carla/libcarla_standalone2.so
+  # liblo is linked against in carla/libcarla_standalone2.so,
+  # carla/libcarla_native-plugin.so and the lv2 and vst plugins
+  depends+=('libasound.so' 'libfluidsynth.so' 'libgdk-3.so'
+  'libgdk-x11-2.0.so' 'libgobject-2.0.so' 'libglib-2.0.so' 'libgtk-3.so'
+  'libgtk-x11-2.0.so' 'liblo.so' 'libmagic.so' 'libpulse.so'
+  'libpulse-simple.so' 'libsndfile.so')
+
+  cd "${pkgname}"
+  make DEFAULT_QT=5 \
+   DESTDIR="${pkgdir}/" \
+   PREFIX=/usr \
+   install
+  install -vDm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}/"
+}
+# vim:set ts=2 sw=2 et:



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

2021-08-19 Thread David Runge via arch-commits
Date: Thursday, August 19, 2021 @ 20:41:12
  Author: dvzrv
Revision: 1003904

upgpkg: carla 2.4.0-1: Upgrade to 2.4.0.

Modified:
  carla/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-19 20:39:28 UTC (rev 1003903)
+++ PKGBUILD2021-08-19 20:41:12 UTC (rev 1003904)
@@ -4,7 +4,7 @@
 
 _name=Carla
 pkgname=carla
-pkgver=2.3.2
+pkgver=2.4.0
 pkgrel=1
 pkgdesc="Audio Plugin Host"
 arch=('x86_64')



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

2021-08-19 Thread David Runge via arch-commits
Date: Thursday, August 19, 2021 @ 20:39:28
  Author: dvzrv
Revision: 1003903

archrelease: copy trunk to community-any

Added:
  nlohmann-json/repos/community-any/PKGBUILD
(from rev 1003902, nlohmann-json/trunk/PKGBUILD)
Deleted:
  nlohmann-json/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-19 20:39:20 UTC (rev 1003902)
+++ PKGBUILD2021-08-19 20:39:28 UTC (rev 1003903)
@@ -1,61 +0,0 @@
-# Maintainer: David Runge 
-
-pkgname=nlohmann-json
-# upstream doesn't use annotated tags
-_commit=db78ac1d7716f56fc9f1b030b715f872f93964e4 # v3.9.1
-pkgver=3.9.1
-pkgrel=4
-# tests are tracked in a separate repo
-_test_pkgver=3.0.0
-pkgdesc="JSON for Modern C++"
-arch=('any')
-url="https://github.com/nlohmann/json;
-license=('MIT')
-makedepends=('cmake' 'git')
-source=("${pkgname}::git+https://github.com/nlohmann/json#commit=${_commit}?signed;
-
"json_test_data-${_test_pkgver}.tar.gz::https://github.com/nlohmann/json_test_data/archive/v${_test_pkgver}.tar.gz;)
-sha512sums=('SKIP'
-
'd9af8419b837c592ec7519cd5772651c761078a9c43cf2a309cee55c323aee0df0c233fb58a07d5ee2e77492ac8b16398de234b387eae037a60e3c9ba5b08891')
-b2sums=('SKIP'
-
'f0a47b41805bf1426f612e9a82efea2a3e5b1c15740c1c531d859e60dc5daeb85209b4fe363fd8fb84e3bbf01a2578c74538ba3e769726494047979f5a4d468d')
-validpgpkeys=('797167AE41C0A6D9232E48457F3CEA63AE251B69') # Niels Lohmann 

-
-prepare() {
-  cp -av "${pkgname}" "${pkgname}-test"
-  mkdir -vp "${pkgname}-test/build"
-  mv -v "json_test_data-${_test_pkgver}/" 
"${pkgname}-test/build/json_test_data/"
-}
-
-build() {
-  cmake -DCMAKE_INSTALL_PREFIX='/usr' \
--DCMAKE_INSTALL_LIBDIR='/usr/lib' \
--DCMAKE_BUILD_TYPE='None' \
--DJSON_MultipleHeaders=ON \
--Wno-dev \
--B "$pkgname/build" \
--S "$pkgname"
-  make VERBOSE=1 -C "$pkgname/build"
-
-  cmake -DCMAKE_INSTALL_PREFIX='/usr' \
--DCMAKE_INSTALL_LIBDIR='/usr/lib' \
--DCMAKE_BUILD_TYPE='None' \
--DBUILD_TESTING=ON \
--DJSON_BuildTests=ON \
--DJSON_MultipleHeaders=ON \
--Wno-dev \
--B "$pkgname-test/build" \
--S "$pkgname-test"
-  make VERBOSE=1 -C "$pkgname-test/build"
-}
-
-check() {
-  make -k test -C "${pkgname}-test/build"
-}
-
-package() {
-  cd "${pkgname}"
-  make DESTDIR="${pkgdir}" install -C build
-  install -vDm 644 {CODE_OF_CONDUCT,README}.md \
--t "${pkgdir}/usr/share/doc/${pkgname}"
-  install -vDm 644 LICENSE.MIT -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}

Copied: nlohmann-json/repos/community-any/PKGBUILD (from rev 1003902, 
nlohmann-json/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-19 20:39:28 UTC (rev 1003903)
@@ -0,0 +1,61 @@
+# Maintainer: David Runge 
+
+pkgname=nlohmann-json
+# upstream doesn't use annotated tags
+_commit=f42a74b8f53cc308647123d49d33d1c8122e3f42 # v3.10.0
+pkgver=3.10.0
+pkgrel=1
+# tests are tracked in a separate repo
+_test_pkgver=3.0.0
+pkgdesc="JSON for Modern C++"
+arch=('any')
+url="https://github.com/nlohmann/json;
+license=('MIT')
+makedepends=('cmake' 'git')
+source=("${pkgname}::git+https://github.com/nlohmann/json#commit=${_commit}?signed;
+
"json_test_data-${_test_pkgver}.tar.gz::https://github.com/nlohmann/json_test_data/archive/v${_test_pkgver}.tar.gz;)
+sha512sums=('SKIP'
+
'd9af8419b837c592ec7519cd5772651c761078a9c43cf2a309cee55c323aee0df0c233fb58a07d5ee2e77492ac8b16398de234b387eae037a60e3c9ba5b08891')
+b2sums=('SKIP'
+
'f0a47b41805bf1426f612e9a82efea2a3e5b1c15740c1c531d859e60dc5daeb85209b4fe363fd8fb84e3bbf01a2578c74538ba3e769726494047979f5a4d468d')
+validpgpkeys=('797167AE41C0A6D9232E48457F3CEA63AE251B69') # Niels Lohmann 

+
+prepare() {
+  cp -av "${pkgname}" "${pkgname}-test"
+  mkdir -vp "${pkgname}-test/build"
+  mv -v "json_test_data-${_test_pkgver}/" 
"${pkgname}-test/build/json_test_data/"
+}
+
+build() {
+  cmake -DCMAKE_INSTALL_PREFIX='/usr' \
+-DCMAKE_INSTALL_LIBDIR='/usr/lib' \
+-DCMAKE_BUILD_TYPE='None' \
+-DJSON_MultipleHeaders=ON \
+-Wno-dev \
+-B "$pkgname/build" \
+-S "$pkgname"
+  make VERBOSE=1 -C "$pkgname/build"
+
+  cmake -DCMAKE_INSTALL_PREFIX='/usr' \
+-DCMAKE_INSTALL_LIBDIR='/usr/lib' \
+-DCMAKE_BUILD_TYPE='None' \
+-DBUILD_TESTING=ON \
+-DJSON_BuildTests=ON \
+-DJSON_MultipleHeaders=ON \
+-Wno-dev \
+-B "$pkgname-test/build" \
+-S "$pkgname-test"
+  make VERBOSE=1 -C "$pkgname-test/build"
+}
+
+check() {
+  make -k test -C "${pkgname}-test/build"
+}
+
+package() {
+  cd "${pkgname}"
+  make DESTDIR="${pkgdir}" install -C build
+  install -vDm 644 

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

2021-08-19 Thread David Runge via arch-commits
Date: Thursday, August 19, 2021 @ 20:39:20
  Author: dvzrv
Revision: 1003902

upgpkg: nlohmann-json 3.10.0-1: Upgrade to 3.10.0.

Modified:
  nlohmann-json/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-19 20:31:07 UTC (rev 1003901)
+++ PKGBUILD2021-08-19 20:39:20 UTC (rev 1003902)
@@ -2,9 +2,9 @@
 
 pkgname=nlohmann-json
 # upstream doesn't use annotated tags
-_commit=db78ac1d7716f56fc9f1b030b715f872f93964e4 # v3.9.1
-pkgver=3.9.1
-pkgrel=4
+_commit=f42a74b8f53cc308647123d49d33d1c8122e3f42 # v3.10.0
+pkgver=3.10.0
+pkgrel=1
 # tests are tracked in a separate repo
 _test_pkgver=3.0.0
 pkgdesc="JSON for Modern C++"



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

2021-08-19 Thread David Runge via arch-commits
Date: Thursday, August 19, 2021 @ 20:31:07
  Author: dvzrv
Revision: 1003901

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-19 20:31:00 UTC (rev 1003900)
+++ PKGBUILD2021-08-19 20:31:07 UTC (rev 1003901)
@@ -1,55 +0,0 @@
-# Maintainer: David Runge 
-
-_name=orjson
-pkgname=python-orjson
-pkgver=3.6.1
-pkgrel=1
-pkgdesc="Fast, correct Python JSON library supporting dataclasses and 
datetimes"
-arch=('x86_64')
-url="https://github.com/ijl/orjson;
-license=('Apache' 'MIT')
-depends=('python')
-makedepends=('maturin' 'python-pip' 'rustup')
-checkdepends=('python-arrow' 'python-pendulum' 'python-psutil' 'python-pytest'
-'python-pytz' 'python-xxhash')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/ijl/${_name}/archive/${pkgver}.tar.gz;)
-sha512sums=('972f2236975e338bf72566fee60d3cfa314e1ff68d1b70104a89e8f62e0fd030c5c08f51357604cf4cc4321f517483b845ce5a9fce27b001f4df3ba244307786')
-b2sums=('73c9d18f781a6d3ea22e24f3094675007ddb443c9bec7653138650aafadef72f1484163d1f438262594f9674497bee3b543d7274c053d2b53476fc614cd484cf')
-
-prepare() {
-  mv -v "${_name}-${pkgver}" "$pkgname-$pkgver"
-  cd "$pkgname-$pkgver"
-  rustup override set nightly-2021-08-04
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-  maturin build --release \
---strip \
---manylinux
-}
-
-check() {
-  local python_version=$(python -c 'import sys; print(".".join(map(str, 
sys.version_info[:2])))')
-  cd "$pkgname-$pkgver"
-  mkdir -vp testdir
-  export PIP_CONFIG_FILE=/dev/null
-  pip install --isolated \
-  --root="testdir" \
-  --ignore-installed \
-  --no-deps target/wheels/*.whl
-  export 
PYTHONPATH="testdir/usr/lib/python${python_version}/site-packages:${PYTHONPATH}"
-  pytest -v
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  export PIP_CONFIG_FILE='/dev/null'
-  pip install --isolated \
-  --root="$pkgdir" \
-  --ignore-installed \
-  --no-deps target/wheels/*.whl
-  install -vDm 644 {CHANGELOG,README}.md \
--t "${pkgdir}/usr/share/doc/${pkgname}"
-  install -vDm 644 LICENSE-* -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}

Copied: python-orjson/repos/community-x86_64/PKGBUILD (from rev 1003900, 
python-orjson/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-19 20:31:07 UTC (rev 1003901)
@@ -0,0 +1,53 @@
+# Maintainer: David Runge 
+
+_name=orjson
+pkgname=python-orjson
+pkgver=3.6.2
+pkgrel=1
+pkgdesc="Fast, correct Python JSON library supporting dataclasses and 
datetimes"
+arch=('x86_64')
+url="https://github.com/ijl/orjson;
+license=('Apache' 'MIT')
+depends=('python')
+makedepends=('maturin' 'python-pip' 'rust')
+checkdepends=('python-arrow' 'python-pendulum' 'python-psutil' 'python-pytest'
+'python-pytz' 'python-xxhash')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/ijl/${_name}/archive/${pkgver}.tar.gz;)
+sha512sums=('e543724ce2586f77d9554e9ae9657980076ad7e40054a35c5a59064d735be30d7af0caa940a9dd91bb5167e8df92e036c5c06c199d5099f7ae416cf76291d491')
+b2sums=('fd7d5efca3f60f940d9b6e0d275083d6dc7424d2e8b26fdf41b72f40ce0d877a2050c654a6df867d93c46a6bc25060174026f0844040b312df50fa502a356ec3')
+
+prepare() {
+  mv -v "${_name}-${pkgver}" "$pkgname-$pkgver"
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  maturin build --no-sdist \
+--release \
+--strip
+}
+
+check() {
+  local python_version=$(python -c 'import sys; print(".".join(map(str, 
sys.version_info[:2])))')
+  cd "$pkgname-$pkgver"
+  mkdir -vp testdir
+  export PIP_CONFIG_FILE=/dev/null
+  pip install --isolated \
+  --root="testdir" \
+  --ignore-installed \
+  --no-deps target/wheels/*.whl
+  export 
PYTHONPATH="testdir/usr/lib/python${python_version}/site-packages:${PYTHONPATH}"
+  pytest -v
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  export PIP_CONFIG_FILE='/dev/null'
+  pip install --isolated \
+  --root="$pkgdir" \
+  --ignore-installed \
+  --no-deps target/wheels/*.whl
+  install -vDm 644 {CHANGELOG,README}.md \
+-t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -vDm 644 LICENSE-* -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}



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

2021-08-19 Thread David Runge via arch-commits
Date: Thursday, August 19, 2021 @ 20:31:00
  Author: dvzrv
Revision: 1003900

upgpkg: python-orjson 3.6.2-1: Upgrade to 3.6.2.

Switch to using stable rust for building the wheel.

Modified:
  python-orjson/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-19 20:27:09 UTC (rev 1003899)
+++ PKGBUILD2021-08-19 20:31:00 UTC (rev 1003900)
@@ -2,7 +2,7 @@
 
 _name=orjson
 pkgname=python-orjson
-pkgver=3.6.1
+pkgver=3.6.2
 pkgrel=1
 pkgdesc="Fast, correct Python JSON library supporting dataclasses and 
datetimes"
 arch=('x86_64')
@@ -9,24 +9,22 @@
 url="https://github.com/ijl/orjson;
 license=('Apache' 'MIT')
 depends=('python')
-makedepends=('maturin' 'python-pip' 'rustup')
+makedepends=('maturin' 'python-pip' 'rust')
 checkdepends=('python-arrow' 'python-pendulum' 'python-psutil' 'python-pytest'
 'python-pytz' 'python-xxhash')
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/ijl/${_name}/archive/${pkgver}.tar.gz;)
-sha512sums=('972f2236975e338bf72566fee60d3cfa314e1ff68d1b70104a89e8f62e0fd030c5c08f51357604cf4cc4321f517483b845ce5a9fce27b001f4df3ba244307786')
-b2sums=('73c9d18f781a6d3ea22e24f3094675007ddb443c9bec7653138650aafadef72f1484163d1f438262594f9674497bee3b543d7274c053d2b53476fc614cd484cf')
+sha512sums=('e543724ce2586f77d9554e9ae9657980076ad7e40054a35c5a59064d735be30d7af0caa940a9dd91bb5167e8df92e036c5c06c199d5099f7ae416cf76291d491')
+b2sums=('fd7d5efca3f60f940d9b6e0d275083d6dc7424d2e8b26fdf41b72f40ce0d877a2050c654a6df867d93c46a6bc25060174026f0844040b312df50fa502a356ec3')
 
 prepare() {
   mv -v "${_name}-${pkgver}" "$pkgname-$pkgver"
-  cd "$pkgname-$pkgver"
-  rustup override set nightly-2021-08-04
 }
 
 build() {
   cd "$pkgname-$pkgver"
-  maturin build --release \
---strip \
---manylinux
+  maturin build --no-sdist \
+--release \
+--strip
 }
 
 check() {



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

2021-08-19 Thread David Runge via arch-commits
Date: Thursday, August 19, 2021 @ 20:27:09
  Author: dvzrv
Revision: 1003899

archrelease: copy trunk to community-x86_64

Added:
  wireplumber/repos/community-x86_64/PKGBUILD
(from rev 1003898, wireplumber/trunk/PKGBUILD)
Deleted:
  wireplumber/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-19 20:26:58 UTC (rev 1003898)
+++ PKGBUILD2021-08-19 20:27:09 UTC (rev 1003899)
@@ -1,55 +0,0 @@
-# Maintainer: David Runge 
-
-pkgbase=wireplumber
-pkgname=('wireplumber' 'wireplumber-docs')
-pkgver=0.4.1
-pkgrel=2
-pkgdesc="Session / policy manager implementation for PipeWire"
-arch=('x86_64')
-url="https://gitlab.freedesktop.org/pipewire/wireplumber;
-license=('MIT')
-makedepends=('cmake' 'cpptoml' 'doxygen' 'glib2' 'gobject-introspection'
-'hotdoc' 'lua' 'meson' 'pipewire' 'python-breathe' 'python-sphinx_rtd_theme'
-'python-sphinx' 'systemd')
-checkdepends=('pipewire-alsa' 'pipewire-jack' 'pipewire-pulse')
-source=("$pkgname-$pkgver.tar.gz::https://gitlab.freedesktop.org/pipewire/${pkgname}/-/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('bb652c6521557dd91df6cba2e5bf43d0b325206317238691ecf00ab55492c28f0f703f484b86f16ecea8f20a87af98929d873ce0191d4a57f6ddbc679855d780')
-b2sums=('7b565b45ea06109a59ab4e1bddf44531cb9d2d60bc14718ac20ca0b9ba8391e5b959e2fc93b3100bcda23fb6d56c40ef1a0e465c9bc083efa96f23883b1c0e43')
-
-build() {
-  cd "$pkgname-$pkgver"
-  arch-meson \
--Dsystem-lua=true \
--Dsystemd-system-service=true \
--Dsystemd-user-service=true \
-build
-  ninja -C build
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-  ninja -C build test || echo "Known to fail: 
https://gitlab.freedesktop.org/pipewire/wireplumber/-/issues/18;
-}
-
-package_wireplumber() {
-  depends=('gcc-libs' 'glibc' 'lua' 'libgio-2.0.so' 'libglib-2.0.so'
-  'libgmodule-2.0.so' 'libgobject-2.0.so' 'libpipewire-0.3.so')
-  provides=('libwireplumber-0.4.so')
-
-  cd "$pkgbase-$pkgver"
-  DESTDIR="${pkgdir}" meson install -C build
-  install -vDm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -vDm 644 {NEWS,README}.rst -t "${pkgdir}/usr/share/doc/${pkgname}"
-  # remove files provided by wireplumber-docs
-  rm -frv "${pkgdir}/usr/share/doc/${pkgname}/html"
-}
-
-package_wireplumber-docs() {
-  pkgdesc+=" (documentation)"
-
-  cd "$pkgbase-$pkgver"
-  DESTDIR="${pkgdir}" meson install -C build
-  install -vDm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-  # remove files provided by wireplumber
-  rm -frv "${pkgdir}/usr/"{bin,include,lib,share/{gir*,wireplumber}} 
"${pkgdir}/etc/"
-}

Copied: wireplumber/repos/community-x86_64/PKGBUILD (from rev 1003898, 
wireplumber/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-19 20:27:09 UTC (rev 1003899)
@@ -0,0 +1,55 @@
+# Maintainer: David Runge 
+
+pkgbase=wireplumber
+pkgname=('wireplumber' 'wireplumber-docs')
+pkgver=0.4.2
+pkgrel=1
+pkgdesc="Session / policy manager implementation for PipeWire"
+arch=('x86_64')
+url="https://gitlab.freedesktop.org/pipewire/wireplumber;
+license=('MIT')
+makedepends=('cmake' 'cpptoml' 'doxygen' 'glib2' 'gobject-introspection'
+'hotdoc' 'lua' 'meson' 'pipewire' 'python-breathe' 'python-sphinx_rtd_theme'
+'python-sphinx' 'systemd')
+checkdepends=('pipewire-alsa' 'pipewire-jack' 'pipewire-pulse')
+source=("$pkgname-$pkgver.tar.gz::https://gitlab.freedesktop.org/pipewire/${pkgname}/-/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('8ded43fba5de58068516558918d49c86be7d67330e8a14e735561fefadba5e27952d556987b7304dead52b4e2f72a7d9626da0170e768c4702dd164840b08e3c')
+b2sums=('4747ae405a824b019415188ff1a586d32fc2e97aba6777cd1e403aadf0e44458156d1f8b6dbc706b812a7ea8c873d0f506f2b42817d1bc5312874530edaf7234')
+
+build() {
+  cd "$pkgname-$pkgver"
+  arch-meson \
+-Dsystem-lua=true \
+-Dsystemd-system-service=true \
+-Dsystemd-user-service=true \
+build
+  ninja -C build
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  ninja -C build test || echo "Known to fail: 
https://gitlab.freedesktop.org/pipewire/wireplumber/-/issues/18;
+}
+
+package_wireplumber() {
+  depends=('gcc-libs' 'glibc' 'lua' 'libgio-2.0.so' 'libglib-2.0.so'
+  'libgmodule-2.0.so' 'libgobject-2.0.so' 'libpipewire-0.3.so')
+  provides=('libwireplumber-0.4.so')
+
+  cd "$pkgbase-$pkgver"
+  DESTDIR="${pkgdir}" meson install -C build
+  install -vDm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -vDm 644 {NEWS,README}.rst -t "${pkgdir}/usr/share/doc/${pkgname}"
+  # remove files provided by wireplumber-docs
+  rm -frv "${pkgdir}/usr/share/doc/${pkgname}/html"
+}
+
+package_wireplumber-docs() {
+  pkgdesc+=" (documentation)"
+
+  cd "$pkgbase-$pkgver"
+  DESTDIR="${pkgdir}" 

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

2021-08-19 Thread David Runge via arch-commits
Date: Thursday, August 19, 2021 @ 20:26:58
  Author: dvzrv
Revision: 1003898

upgpkg: wireplumber 0.4.2-1: Upgrade to 0.4.2.

Modified:
  wireplumber/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-19 20:20:00 UTC (rev 1003897)
+++ PKGBUILD2021-08-19 20:26:58 UTC (rev 1003898)
@@ -2,8 +2,8 @@
 
 pkgbase=wireplumber
 pkgname=('wireplumber' 'wireplumber-docs')
-pkgver=0.4.1
-pkgrel=2
+pkgver=0.4.2
+pkgrel=1
 pkgdesc="Session / policy manager implementation for PipeWire"
 arch=('x86_64')
 url="https://gitlab.freedesktop.org/pipewire/wireplumber;
@@ -13,8 +13,8 @@
 'python-sphinx' 'systemd')
 checkdepends=('pipewire-alsa' 'pipewire-jack' 'pipewire-pulse')
 
source=("$pkgname-$pkgver.tar.gz::https://gitlab.freedesktop.org/pipewire/${pkgname}/-/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('bb652c6521557dd91df6cba2e5bf43d0b325206317238691ecf00ab55492c28f0f703f484b86f16ecea8f20a87af98929d873ce0191d4a57f6ddbc679855d780')
-b2sums=('7b565b45ea06109a59ab4e1bddf44531cb9d2d60bc14718ac20ca0b9ba8391e5b959e2fc93b3100bcda23fb6d56c40ef1a0e465c9bc083efa96f23883b1c0e43')
+sha512sums=('8ded43fba5de58068516558918d49c86be7d67330e8a14e735561fefadba5e27952d556987b7304dead52b4e2f72a7d9626da0170e768c4702dd164840b08e3c')
+b2sums=('4747ae405a824b019415188ff1a586d32fc2e97aba6777cd1e403aadf0e44458156d1f8b6dbc706b812a7ea8c873d0f506f2b42817d1bc5312874530edaf7234')
 
 build() {
   cd "$pkgname-$pkgver"



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

2021-08-19 Thread David Runge via arch-commits
Date: Thursday, August 19, 2021 @ 20:20:00
  Author: dvzrv
Revision: 1003897

archrelease: copy trunk to community-any

Added:
  containers-common/repos/community-any/PKGBUILD
(from rev 1003896, containers-common/trunk/PKGBUILD)
  containers-common/repos/community-any/mounts.conf
(from rev 1003896, containers-common/trunk/mounts.conf)
Deleted:
  containers-common/repos/community-any/PKGBUILD
  containers-common/repos/community-any/mounts.conf

-+
 PKGBUILD|  260 +-
 mounts.conf |6 -
 2 files changed, 133 insertions(+), 133 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-19 20:19:52 UTC (rev 1003896)
+++ PKGBUILD2021-08-19 20:20:00 UTC (rev 1003897)
@@ -1,130 +0,0 @@
-# Maintainer: David Runge 
-
-pkgname=containers-common
-pkgver=0.43.1
-_image_pkgver=5.15.0
-_podman_pkgver=3.2.3
-_skopeo_pkgver=1.4.0
-_storage_pkgver=1.34.0
-pkgrel=1
-pkgdesc="Configuration files and manpages for containers"
-arch=('any')
-url="https://github.com/containers;
-license=('Apache')
-makedepends=('go-md2man')
-backup=(
-  'etc/containers/containers.conf'
-  'etc/containers/mounts.conf'
-  'etc/containers/policy.json'
-  'etc/containers/registries.conf'
-  'etc/containers/seccomp.json'
-  'etc/containers/storage.conf'
-)
-# configuration override directories need to exist
-options=('emptydirs')
-source=("common-${pkgver}.tar.gz::https://github.com/containers/common/archive/v${pkgver}.tar.gz;
-
"image-${_image_pkgver}.tar.gz::https://github.com/containers/image/archive/v${_image_pkgver}.tar.gz;
-
"podman-${_podman_pkgver}.tar.gz::https://github.com/containers/podman/archive/v${_podman_pkgver}.tar.gz;
-
"skopeo-${_skopeo_pkgver}.tar.gz::https://github.com/containers/skopeo/archive/v${_skopeo_pkgver}.tar.gz;
-
"storage-${_storage_pkgver}.tar.gz::https://github.com/containers/storage/archive/v${_storage_pkgver}.tar.gz;
-'mounts.conf'
-)
-sha512sums=('7e854b7fc5724f5ea7ffb691916cd6797f846466b1649eb026acd2a24dcf3c7275e639c7667e87cd40acb3f7acf1c59a8b7fec15d9d0e9b63fc173dfe97e5ee4'
-
'65acadc3863e2d21b56c7a60d12e57a78281c75af2bfe69cce861a28b18d4cfff06d4c637c196622e5863438afe05df883cd4c3c3233633c359952b2188c1058'
-
'e9df45b0f6afbcdce1f5ef0b2fa7dfc0f374699d0a080b4989c47bbff54d2e5a85d6eb899e17726948e8d233393454b4441d83c2be5a8068fa75c40e1dc1c2bf'
-
'2a21ed33ef39c700fc8247876d33ee7592129d8454eac09ee0a896d7c7c59ee02dd714c38bf4cab03c51b5060ea638ee0da6a2e6ed37f1846de296ce4c843076'
-
'1a7f62aab5f666db256942bfabc7fa6bcb608328ad0240141ff0c7f9894b921ac0db6476de7f97bc801c72e9dac4b1b24224525d1febe04c3559def0a0f9fa02'
-
'11fa515bbb0686d2b49c4fd2ab35348cb19f9c6780d6eb951a33b07ed7b7c72a676627f36e8c74e1a2d15e306d4537178f0e127fd3490f6131d078e56b46d5e1')
-b2sums=('c2038202dff38cf44afdfa778e88caab86c746d79e5f86ad5dabd6c573e4a62b6f1228788c61cf9b3bfd8711481b77364871581ba474aac33f4313f038c7c573'
-
'9b0449802b079bd7a0c0b98e34125b1d91e8ec5f6d49ed771ab03df62f151c5d3e72f9f805ad33bc7a799a7b04fa8101ed5a94c86dd7dc3cd638864df5bea1d9'
-
'544a2053618c1ff2f77604fdbb2291d45701b8a02b2aef50b67d34cde8bfd366fb4c283c8f918e5d70a0548cb9b7d80e554fb148313cda8dca5bc3081fb3c765'
-
'2150742ebf146d42b841e8e3f1b28e0c6875b10214fd323ce6915f6b776dca85e8cbf1fcd8477dd600cf4104fba2b2aca8358bbb091e3c9ff3a3e89ddbdc6cb7'
-
'1582c7510ef3b91ca4b36377f883031af715f7cb08fb047bbfcaa2b53b8e72e2450dd2d6be8ad4d4e2c1f42c9b099d0d42523a11cfe8df20252a67c9a5e29d29'
-
'2f4b0af3271103362a898e7fcc3ec05f06755902ad664ac3107bb8debb8b2ac0d50de311d5fc651279a817a56e3ff05864a7e77c0d8fc628ff7411bfb98c9b69')
-
-prepare() {
-  (
-cd "storage-${_storage_pkgver}"
-sed -r 's/(GOMD2MAN = ).*/\1 go-md2man/' -i docs/Makefile
-  )
-}
-
-build() {
-  (
-cd "common-${pkgver}/docs"
-for _man_page in *.md; do
-  go-md2man -in "$_man_page" -out "${_man_page//.md}"
-done
-  )
-  (
-cd "image-${_image_pkgver}/docs"
-mkdir -vp man5
-mv -v *.5.md man5/
-for _man_page in *.md; do
-  go-md2man -in "$_man_page" -out "${_man_page//.md}.1"
-done
-for _man_page in man5/*.md; do
-  go-md2man -in "$_man_page" -out "${_man_page//.md}"
-done
-  )
-  (
-cd "podman-${_podman_pkgver}"
-go-md2man -in docs/source/markdown/containers-mounts.conf.5.md \
-  -out containers-mounts.conf.5
-go-md2man -in pkg/hooks/docs/oci-hooks.5.md \
-  -out oci-hooks.5
-  )
-  (
-cd "storage-${_storage_pkgver}"
-make -C docs
-  )
-}
-
-package() {
-  # directories
-  install -vdm 755 "${pkgdir}/etc/containers/oci/hooks.d/"
-  install -vdm 755 "${pkgdir}/etc/containers/registries.conf.d/"
-  install -vdm 755 "${pkgdir}/usr/share/containers/oci/hooks.d/"
-  install -vdm 755 "${pkgdir}/var/lib/containers/"
-
-  # configs
-  install -vDm 644 mounts.conf -t "${pkgdir}/etc/containers/"

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

2021-08-19 Thread David Runge via arch-commits
Date: Thursday, August 19, 2021 @ 20:19:52
  Author: dvzrv
Revision: 1003896

upgpkg: containers-common 0.43.2-1: Upgrade to 0.43.2.

Upgrade image to 5.15.2.

Modified:
  containers-common/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-19 20:17:42 UTC (rev 1003895)
+++ PKGBUILD2021-08-19 20:19:52 UTC (rev 1003896)
@@ -1,8 +1,8 @@
 # Maintainer: David Runge 
 
 pkgname=containers-common
-pkgver=0.43.1
-_image_pkgver=5.15.0
+pkgver=0.43.2
+_image_pkgver=5.15.2
 _podman_pkgver=3.2.3
 _skopeo_pkgver=1.4.0
 _storage_pkgver=1.34.0
@@ -29,14 +29,14 @@
 
"storage-${_storage_pkgver}.tar.gz::https://github.com/containers/storage/archive/v${_storage_pkgver}.tar.gz;
 'mounts.conf'
 )
-sha512sums=('7e854b7fc5724f5ea7ffb691916cd6797f846466b1649eb026acd2a24dcf3c7275e639c7667e87cd40acb3f7acf1c59a8b7fec15d9d0e9b63fc173dfe97e5ee4'
-
'65acadc3863e2d21b56c7a60d12e57a78281c75af2bfe69cce861a28b18d4cfff06d4c637c196622e5863438afe05df883cd4c3c3233633c359952b2188c1058'
+sha512sums=('25658720a9b032b2588a96e489c1d1dcd985036716f2410fa8f071754d9780a95f244784dc2caf13c4f85d420d2a3068d839b6197c3fd24c073b57f912e4d5ab'
+
'239bf7d58f5126fcd1e721ecc5e14ab28284535348fc39fd9232a5cd2725a397f5e51287e22ac5e1e4f7fcf1b0159eecd0660da9a50d52d0cdbf9503bf39fb47'
 
'e9df45b0f6afbcdce1f5ef0b2fa7dfc0f374699d0a080b4989c47bbff54d2e5a85d6eb899e17726948e8d233393454b4441d83c2be5a8068fa75c40e1dc1c2bf'
 
'2a21ed33ef39c700fc8247876d33ee7592129d8454eac09ee0a896d7c7c59ee02dd714c38bf4cab03c51b5060ea638ee0da6a2e6ed37f1846de296ce4c843076'
 
'1a7f62aab5f666db256942bfabc7fa6bcb608328ad0240141ff0c7f9894b921ac0db6476de7f97bc801c72e9dac4b1b24224525d1febe04c3559def0a0f9fa02'
 
'11fa515bbb0686d2b49c4fd2ab35348cb19f9c6780d6eb951a33b07ed7b7c72a676627f36e8c74e1a2d15e306d4537178f0e127fd3490f6131d078e56b46d5e1')
-b2sums=('c2038202dff38cf44afdfa778e88caab86c746d79e5f86ad5dabd6c573e4a62b6f1228788c61cf9b3bfd8711481b77364871581ba474aac33f4313f038c7c573'
-
'9b0449802b079bd7a0c0b98e34125b1d91e8ec5f6d49ed771ab03df62f151c5d3e72f9f805ad33bc7a799a7b04fa8101ed5a94c86dd7dc3cd638864df5bea1d9'
+b2sums=('8f35d9ce203fc388e1cc9160e5f3481c24a05977272841bb04af2e75cbad67a0f47aeff856a4ee2cfc070e432d35bc74afcb07e582bd3bb470917e4dfecbf5da'
+
'f5725486b2a643c94d23455577ab9235e765d92b5b67950674eba962a36952a0856530bbdeb0cdbb54baae3eeb990148f1de8726f2c78937f3c3ba533f0f3978'
 
'544a2053618c1ff2f77604fdbb2291d45701b8a02b2aef50b67d34cde8bfd366fb4c283c8f918e5d70a0548cb9b7d80e554fb148313cda8dca5bc3081fb3c765'
 
'2150742ebf146d42b841e8e3f1b28e0c6875b10214fd323ce6915f6b776dca85e8cbf1fcd8477dd600cf4104fba2b2aca8358bbb091e3c9ff3a3e89ddbdc6cb7'
 
'1582c7510ef3b91ca4b36377f883031af715f7cb08fb047bbfcaa2b53b8e72e2450dd2d6be8ad4d4e2c1f42c9b099d0d42523a11cfe8df20252a67c9a5e29d29'



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

2021-08-19 Thread Orhun Parmaksiz via arch-commits
Date: Thursday, August 19, 2021 @ 20:17:42
  Author: orhun
Revision: 1003895

archrelease: copy trunk to community-x86_64

Added:
  wezterm/repos/community-x86_64/PKGBUILD
(from rev 1003894, wezterm/trunk/PKGBUILD)
Deleted:
  wezterm/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-19 20:17:29 UTC (rev 1003894)
+++ PKGBUILD2021-08-19 20:17:42 UTC (rev 1003895)
@@ -1,52 +0,0 @@
-# Maintainer:  Orhun Parmaksız 
-
-pkgname=wezterm
-_pkgver=20210502-154244-3f7122cb
-pkgver=20210502.154244.3f7122cb
-pkgrel=1
-pkgdesc="A GPU-accelerated cross-platform terminal emulator and multiplexer"
-arch=('x86_64')
-url="https://github.com/wez/wezterm;
-license=('MIT')
-depends=(
-  'fontconfig'
-  'hicolor-icon-theme'
-  'wayland'
-  'libx11'
-  'libxkbcommon-x11'
-  'xcb-util-keysyms'
-  'xcb-util-wm'
-  'xcb-util-image'
-  'openssl'
-)
-makedepends=('rust' 'cargo' 'cmake' 'git' 'pkgconf' 'python')
-source=("git+$url.git#tag=$_pkgver")
-sha256sums=('SKIP')
-
-prepare() {
-  cd "$pkgname"
-  git submodule update --init --recursive
-}
-
-build() {
-  cd "$pkgname"
-   cargo build --release --locked
-}
-
-check() {
-  cd "$pkgname"
-  cargo test --release --locked
-}
-
-package() {
-   cd "$pkgname"
-  install -Dm 755 "target/release/$pkgname" -t "$pkgdir/usr/bin"
-  install -Dm 755 "target/release/$pkgname-gui" -t "$pkgdir/usr/bin"
-  install -Dm 755 "target/release/$pkgname-mux-server" -t "$pkgdir/usr/bin"
-  install -Dm 755 "target/release/strip-ansi-escapes" -t "$pkgdir/usr/bin"
-  install -Dm 644 "assets/icon/terminal.png" 
"$pkgdir/usr/share/icons/hicolor/128x128/apps/org.wezfurlong.$pkgname.png"
-  install -Dm 644 "assets/$pkgname.desktop" 
"$pkgdir/usr/share/applications/org.wezfurlong.$pkgname.desktop"
-  install -Dm 644 "assets/$pkgname.appdata.xml" 
"$pkgdir/usr/share/metainfo/org.wezfurlong.$pkgname.appdata.xml"
-  install -Dm 644 LICENSE.md -t "$pkgdir/usr/share/licenses/$pkgname"
-  install -Dm 644 README.md -t "$pkgdir/usr/share/doc/$pkgname"
-}

Copied: wezterm/repos/community-x86_64/PKGBUILD (from rev 1003894, 
wezterm/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-19 20:17:42 UTC (rev 1003895)
@@ -0,0 +1,71 @@
+# Maintainer:  Orhun Parmaksız 
+
+pkgname=wezterm
+pkgver=20210814.124438.54e29167
+_gitcommit=54e29167ba25dd4b51bb4ceccfe92941b98d94e1
+pkgrel=1
+pkgdesc="A GPU-accelerated cross-platform terminal emulator and multiplexer"
+arch=('x86_64')
+url="https://github.com/wez/wezterm;
+license=('MIT')
+depends=(
+  'fontconfig'
+  'hicolor-icon-theme'
+  'wayland'
+  'libx11'
+  'libxkbcommon-x11'
+  'xcb-util-keysyms'
+  'xcb-util-wm'
+  'xcb-util-image'
+  'openssl'
+)
+makedepends=('rust' 'cargo' 'cmake' 'git' 'pkgconf' 'python')
+source=(
+  "${pkgname}::git+$url#commit=$_gitcommit"
+  "${pkgname}-freetype2::git+https://github.com/wez/freetype2.git;
+  "${pkgname}-zlib::git+https://github.com/madler/zlib.git;
+  "${pkgname}-harfbuzz::git+https://github.com/harfbuzz/harfbuzz.git;
+  "${pkgname}-libpng::git+https://github.com/glennrp/libpng.git;
+)
+sha256sums=('SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP')
+
+prepare() {
+  cd "$pkgname"
+  git submodule init
+
+  git config submodule."harfbuzz/harfbuzz".url "${srcdir}/${pkgname}"-harfbuzz
+  git config submodule."freetype/libpng".url "${srcdir}/${pkgname}"-libpng
+  git config submodule."deps/freetype/zlib".url "${srcdir}/${pkgname}"-zlib
+  git config submodule."freetype2".url "${srcdir}/${pkgname}"-freetype2
+
+  git submodule update --init --recursive
+  cargo fetch --locked
+}
+
+build() {
+  cd "$pkgname"
+   cargo build --frozen --release
+}
+
+check() {
+  cd "$pkgname"
+  cargo test --frozen
+}
+
+package() {
+   cd "$pkgname"
+  install -Dm 755 "target/release/$pkgname" -t "$pkgdir/usr/bin"
+  install -Dm 755 "target/release/$pkgname-gui" -t "$pkgdir/usr/bin"
+  install -Dm 755 "target/release/$pkgname-mux-server" -t "$pkgdir/usr/bin"
+  install -Dm 755 "target/release/strip-ansi-escapes" -t "$pkgdir/usr/bin"
+  install -Dm 644 "assets/icon/terminal.png" 
"$pkgdir/usr/share/icons/hicolor/128x128/apps/org.wezfurlong.$pkgname.png"
+  install -Dm 644 "assets/$pkgname.desktop" 
"$pkgdir/usr/share/applications/org.wezfurlong.$pkgname.desktop"
+  install -Dm 644 "assets/$pkgname.appdata.xml" 
"$pkgdir/usr/share/metainfo/org.wezfurlong.$pkgname.appdata.xml"
+  install -Dm 644 assets/shell-integration/* -t "$pkgdir/etc/profile.d"
+  install -Dm 644 LICENSE.md -t "$pkgdir/usr/share/licenses/$pkgname"
+  install -Dm 644 README.md -t "$pkgdir/usr/share/doc/$pkgname"
+}



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

2021-08-19 Thread Orhun Parmaksiz via arch-commits
Date: Thursday, August 19, 2021 @ 20:17:29
  Author: orhun
Revision: 1003894

upgpkg: wezterm 20210814.124438.54e29167-1: upstream release (also fixes 
FS#70894)

Modified:
  wezterm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-19 20:17:24 UTC (rev 1003893)
+++ PKGBUILD2021-08-19 20:17:29 UTC (rev 1003894)
@@ -1,8 +1,8 @@
 # Maintainer:  Orhun Parmaksız 
 
 pkgname=wezterm
-_pkgver=20210502-154244-3f7122cb
-pkgver=20210502.154244.3f7122cb
+pkgver=20210814.124438.54e29167
+_gitcommit=54e29167ba25dd4b51bb4ceccfe92941b98d94e1
 pkgrel=1
 pkgdesc="A GPU-accelerated cross-platform terminal emulator and multiplexer"
 arch=('x86_64')
@@ -20,22 +20,40 @@
   'openssl'
 )
 makedepends=('rust' 'cargo' 'cmake' 'git' 'pkgconf' 'python')
-source=("git+$url.git#tag=$_pkgver")
-sha256sums=('SKIP')
+source=(
+  "${pkgname}::git+$url#commit=$_gitcommit"
+  "${pkgname}-freetype2::git+https://github.com/wez/freetype2.git;
+  "${pkgname}-zlib::git+https://github.com/madler/zlib.git;
+  "${pkgname}-harfbuzz::git+https://github.com/harfbuzz/harfbuzz.git;
+  "${pkgname}-libpng::git+https://github.com/glennrp/libpng.git;
+)
+sha256sums=('SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP')
 
 prepare() {
   cd "$pkgname"
+  git submodule init
+
+  git config submodule."harfbuzz/harfbuzz".url "${srcdir}/${pkgname}"-harfbuzz
+  git config submodule."freetype/libpng".url "${srcdir}/${pkgname}"-libpng
+  git config submodule."deps/freetype/zlib".url "${srcdir}/${pkgname}"-zlib
+  git config submodule."freetype2".url "${srcdir}/${pkgname}"-freetype2
+
   git submodule update --init --recursive
+  cargo fetch --locked
 }
 
 build() {
   cd "$pkgname"
-   cargo build --release --locked
+   cargo build --frozen --release
 }
 
 check() {
   cd "$pkgname"
-  cargo test --release --locked
+  cargo test --frozen
 }
 
 package() {
@@ -47,6 +65,7 @@
   install -Dm 644 "assets/icon/terminal.png" 
"$pkgdir/usr/share/icons/hicolor/128x128/apps/org.wezfurlong.$pkgname.png"
   install -Dm 644 "assets/$pkgname.desktop" 
"$pkgdir/usr/share/applications/org.wezfurlong.$pkgname.desktop"
   install -Dm 644 "assets/$pkgname.appdata.xml" 
"$pkgdir/usr/share/metainfo/org.wezfurlong.$pkgname.appdata.xml"
+  install -Dm 644 assets/shell-integration/* -t "$pkgdir/etc/profile.d"
   install -Dm 644 LICENSE.md -t "$pkgdir/usr/share/licenses/$pkgname"
   install -Dm 644 README.md -t "$pkgdir/usr/share/doc/$pkgname"
 }



[arch-commits] Commit in perl-type-tiny/repos/community-any (PKGBUILD PKGBUILD)

2021-08-19 Thread Morten Linderud via arch-commits
Date: Thursday, August 19, 2021 @ 20:17:24
  Author: foxboron
Revision: 1003893

archrelease: copy trunk to community-any

Added:
  perl-type-tiny/repos/community-any/PKGBUILD
(from rev 1003892, perl-type-tiny/trunk/PKGBUILD)
Deleted:
  perl-type-tiny/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-19 20:17:16 UTC (rev 1003892)
+++ PKGBUILD2021-08-19 20:17:24 UTC (rev 1003893)
@@ -1,33 +0,0 @@
-# Maintainer: Morten Linderud 
-# Maintainer: Bruno Pagani 
-
-_pkg=Type-Tiny
-pkgname=perl-${_pkg,,}
-pkgver=1.012003
-pkgrel=2
-pkgdesc="Tiny, yet Moo(se)-compatible type constraint"
-arch=(any)
-url="https://metacpan.org/release/${_pkg};
-license=(PerlArtistic GPL)
-options=(!emptydirs)
-depends=(perl perl-exporter-tiny)
-checkdepends=(perl-test-simple)
-source=(https://cpan.metacpan.org/authors/id/T/TO/TOBYINK/${_pkg}-${pkgver}.tar.gz)
-sha512sums=('d7bd3c416e20a5a951606d05a2fb396a4058cb6f165b401c7662af3d21f416c26ac0df70eaa6d483db3fe2d78e8fb4f02cf5cf71ebc353a744e3195e77f6ea42')
-
-build() {
-cd ${_pkg}-${pkgver}
-export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps
-perl Makefile.PL
-make
-}
-
-check() {
-cd ${_pkg}-${pkgver}
-make test
-}
-
-package() {
-cd ${_pkg}-${pkgver}
-make INSTALLDIRS=vendor DESTDIR="${pkgdir}" install
-}

Copied: perl-type-tiny/repos/community-any/PKGBUILD (from rev 1003892, 
perl-type-tiny/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-19 20:17:24 UTC (rev 1003893)
@@ -0,0 +1,33 @@
+# Maintainer: Morten Linderud 
+# Maintainer: Bruno Pagani 
+
+_pkg=Type-Tiny
+pkgname=perl-${_pkg,,}
+pkgver=1.012004
+pkgrel=1
+pkgdesc="Tiny, yet Moo(se)-compatible type constraint"
+arch=(any)
+url="https://metacpan.org/release/${_pkg};
+license=(PerlArtistic GPL)
+options=(!emptydirs)
+depends=(perl perl-exporter-tiny)
+checkdepends=(perl-test-simple)
+source=(https://cpan.metacpan.org/authors/id/T/TO/TOBYINK/${_pkg}-${pkgver}.tar.gz)
+sha512sums=('26b861f1e9caad5717f14eb0a6c71010f0306b614292fdc5ee95041ebdd2035ac6cfd4a6a186943479de630f3ff14391467f5cec86bc4c08842cec30d2af')
+
+build() {
+cd ${_pkg}-${pkgver}
+export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps
+perl Makefile.PL
+make
+}
+
+check() {
+cd ${_pkg}-${pkgver}
+make test
+}
+
+package() {
+cd ${_pkg}-${pkgver}
+make INSTALLDIRS=vendor DESTDIR="${pkgdir}" install
+}



[arch-commits] Commit in perl-type-tiny/trunk (PKGBUILD)

2021-08-19 Thread Morten Linderud via arch-commits
Date: Thursday, August 19, 2021 @ 20:17:16
  Author: foxboron
Revision: 1003892

upgpkg: perl-type-tiny 1.012004-1

Modified:
  perl-type-tiny/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-19 20:15:17 UTC (rev 1003891)
+++ PKGBUILD2021-08-19 20:17:16 UTC (rev 1003892)
@@ -3,8 +3,8 @@
 
 _pkg=Type-Tiny
 pkgname=perl-${_pkg,,}
-pkgver=1.012003
-pkgrel=2
+pkgver=1.012004
+pkgrel=1
 pkgdesc="Tiny, yet Moo(se)-compatible type constraint"
 arch=(any)
 url="https://metacpan.org/release/${_pkg};
@@ -13,7 +13,7 @@
 depends=(perl perl-exporter-tiny)
 checkdepends=(perl-test-simple)
 
source=(https://cpan.metacpan.org/authors/id/T/TO/TOBYINK/${_pkg}-${pkgver}.tar.gz)
-sha512sums=('d7bd3c416e20a5a951606d05a2fb396a4058cb6f165b401c7662af3d21f416c26ac0df70eaa6d483db3fe2d78e8fb4f02cf5cf71ebc353a744e3195e77f6ea42')
+sha512sums=('26b861f1e9caad5717f14eb0a6c71010f0306b614292fdc5ee95041ebdd2035ac6cfd4a6a186943479de630f3ff14391467f5cec86bc4c08842cec30d2af')
 
 build() {
 cd ${_pkg}-${pkgver}



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

2021-08-19 Thread Morten Linderud via arch-commits
Date: Thursday, August 19, 2021 @ 20:15:17
  Author: foxboron
Revision: 1003891

archrelease: copy trunk to community-x86_64

Added:
  step-ca/repos/community-x86_64/PKGBUILD
(from rev 1003890, step-ca/trunk/PKGBUILD)
Deleted:
  step-ca/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-19 20:15:10 UTC (rev 1003890)
+++ PKGBUILD2021-08-19 20:15:17 UTC (rev 1003891)
@@ -1,38 +0,0 @@
-# Maintainer: Morten Linderud 
-
-pkgname=step-ca
-pkgver=0.16.0
-pkgrel=1
-pkgdesc="A private certificate authority (X.509 & SSH) & ACME server for 
secure automated certificate management, so you can use TLS everywhere & SSO 
for SSH."
-url="https://github.com/smallstep/certificates;
-arch=(x86_64)
-license=(Apache)
-depends=(glibc pcsclite)
-makedepends=(go)
-source=("$url/releases/download/v${pkgver}/step-ca_${pkgver}.tar.gz")
-sha512sums=('7ecb7e2904c151e1528062a6e493d9bcb69ee80feda323461cd712b992df453d9826af9b773012a65f1650c7a1c4bfb8df6622b3d979e9ccaeffb2fde6926c38')
-
-prepare(){
-  mkdir -p bin
-}
-
-build() {
-  BUILD_DATE="$(date --date="@${SOURCE_DATE_EPOCH:-$(date +%s)}" '+%Y-%m-%d 
%H:%M UTC')"
-  go build \
-  -trimpath \
-  -buildmode=pie \
-  -mod=readonly \
-  -modcacherw \
-  -ldflags "-linkmode external -extldflags \"${LDFLAGS}\" -X 
\"main.Version=${pkgver}\" -X \"main.BuildTime=${BUILD_DATE}\"" \
-  -o bin ./cmd/...
-}
-
-check() {
-  go test -v ./...
-}
-
-package() {
-  for bin in step-awskms-init  step-ca  step-cloudkms-init  step-yubikey-init; 
do
-install -Dm755 "bin/$bin" "$pkgdir/usr/bin/$bin"
-  done
-}

Copied: step-ca/repos/community-x86_64/PKGBUILD (from rev 1003890, 
step-ca/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-19 20:15:17 UTC (rev 1003891)
@@ -0,0 +1,38 @@
+# Maintainer: Morten Linderud 
+
+pkgname=step-ca
+pkgver=0.16.2
+pkgrel=1
+pkgdesc="A private certificate authority (X.509 & SSH) & ACME server for 
secure automated certificate management, so you can use TLS everywhere & SSO 
for SSH."
+url="https://github.com/smallstep/certificates;
+arch=(x86_64)
+license=(Apache)
+depends=(glibc pcsclite)
+makedepends=(go)
+source=("$url/releases/download/v${pkgver}/step-ca_${pkgver}.tar.gz")
+sha512sums=('8c4e89d078bd01d1eac3106ae9b24a449c1b8d0cbccc9f145a30bd38341983f436d1d849069d8978bff9190a59b6ae34b5d343d1d0ba279fdb5b074de38d5211')
+
+prepare(){
+  mkdir -p bin
+}
+
+build() {
+  BUILD_DATE="$(date --date="@${SOURCE_DATE_EPOCH:-$(date +%s)}" '+%Y-%m-%d 
%H:%M UTC')"
+  go build \
+  -trimpath \
+  -buildmode=pie \
+  -mod=readonly \
+  -modcacherw \
+  -ldflags "-linkmode external -extldflags \"${LDFLAGS}\" -X 
\"main.Version=${pkgver}\" -X \"main.BuildTime=${BUILD_DATE}\"" \
+  -o bin ./cmd/...
+}
+
+check() {
+  go test -v ./...
+}
+
+package() {
+  for bin in step-awskms-init  step-ca  step-cloudkms-init  step-yubikey-init; 
do
+install -Dm755 "bin/$bin" "$pkgdir/usr/bin/$bin"
+  done
+}



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

2021-08-19 Thread Morten Linderud via arch-commits
Date: Thursday, August 19, 2021 @ 20:15:10
  Author: foxboron
Revision: 1003890

upgpkg: step-ca 0.16.2-1

Modified:
  step-ca/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-19 20:03:57 UTC (rev 1003889)
+++ PKGBUILD2021-08-19 20:15:10 UTC (rev 1003890)
@@ -1,7 +1,7 @@
 # Maintainer: Morten Linderud 
 
 pkgname=step-ca
-pkgver=0.16.0
+pkgver=0.16.2
 pkgrel=1
 pkgdesc="A private certificate authority (X.509 & SSH) & ACME server for 
secure automated certificate management, so you can use TLS everywhere & SSO 
for SSH."
 url="https://github.com/smallstep/certificates;
@@ -10,7 +10,7 @@
 depends=(glibc pcsclite)
 makedepends=(go)
 source=("$url/releases/download/v${pkgver}/step-ca_${pkgver}.tar.gz")
-sha512sums=('7ecb7e2904c151e1528062a6e493d9bcb69ee80feda323461cd712b992df453d9826af9b773012a65f1650c7a1c4bfb8df6622b3d979e9ccaeffb2fde6926c38')
+sha512sums=('8c4e89d078bd01d1eac3106ae9b24a449c1b8d0cbccc9f145a30bd38341983f436d1d849069d8978bff9190a59b6ae34b5d343d1d0ba279fdb5b074de38d5211')
 
 prepare(){
   mkdir -p bin



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

2021-08-19 Thread Morten Linderud via arch-commits
Date: Thursday, August 19, 2021 @ 20:03:57
  Author: foxboron
Revision: 1003889

archrelease: copy trunk to community-x86_64

Added:
  buildah/repos/community-x86_64/PKGBUILD
(from rev 1003888, buildah/trunk/PKGBUILD)
Deleted:
  buildah/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-19 20:03:49 UTC (rev 1003888)
+++ PKGBUILD2021-08-19 20:03:57 UTC (rev 1003889)
@@ -1,37 +0,0 @@
-# Maintainer: Bartłomiej Piotrowski 
-# Maintainer: Morten Linderud 
-
-pkgname=buildah
-pkgver=1.22.0
-pkgrel=1
-pkgdesc="A tool which facilitates building OCI images"
-arch=(x86_64)
-url="https://github.com/containers/buildah;
-license=(Apache)
-depends=(crun skopeo slirp4netns)
-makedepends=(go git bash-bats btrfs-progs device-mapper gpgme libassuan
- bzip2 go-md2man runc skopeo systemd)
-_commit=e6ea308d6de1724a0ead3e08517a5e365461b275 #refs/tags/v1.21.4
-source=(git+https://github.com/containers/buildah.git#commit=$_commit)
-md5sums=('SKIP')
-
-pkgver() {
-  cd buildah
-  git describe --tags | sed 's/^[vV]//;s/-/+/g'
-}
-
-build() {
-  cd $pkgname
-  export GOFLAGS="-buildmode=pie -trimpath"
-  export CGO_LDFLAGS="${LDFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  make PREFIX=/usr BUILDTAGS="containers_image_ostree_stub seccomp"
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" PREFIX=usr install install.completions
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: buildah/repos/community-x86_64/PKGBUILD (from rev 1003888, 
buildah/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-19 20:03:57 UTC (rev 1003889)
@@ -0,0 +1,37 @@
+# Maintainer: Bartłomiej Piotrowski 
+# Maintainer: Morten Linderud 
+
+pkgname=buildah
+pkgver=1.22.1
+pkgrel=1
+pkgdesc="A tool which facilitates building OCI images"
+arch=(x86_64)
+url="https://github.com/containers/buildah;
+license=(Apache)
+depends=(crun skopeo slirp4netns)
+makedepends=(go git bash-bats btrfs-progs device-mapper gpgme libassuan
+ bzip2 go-md2man runc skopeo systemd)
+_commit=91c5541140ea6310be94e651455f4458aba8b018   #refs/tags/v1.22.1^{}
+source=(git+https://github.com/containers/buildah.git#commit=$_commit)
+md5sums=('SKIP')
+
+pkgver() {
+  cd buildah
+  git describe --tags | sed 's/^[vV]//;s/-/+/g'
+}
+
+build() {
+  cd $pkgname
+  export GOFLAGS="-buildmode=pie -trimpath"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  make PREFIX=/usr BUILDTAGS="containers_image_ostree_stub seccomp"
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" PREFIX=usr install install.completions
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}



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

2021-08-19 Thread Morten Linderud via arch-commits
Date: Thursday, August 19, 2021 @ 20:03:49
  Author: foxboron
Revision: 1003888

upgpkg: buildah 1.22.1-1

Modified:
  buildah/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-19 20:00:54 UTC (rev 1003887)
+++ PKGBUILD2021-08-19 20:03:49 UTC (rev 1003888)
@@ -2,7 +2,7 @@
 # Maintainer: Morten Linderud 
 
 pkgname=buildah
-pkgver=1.22.0
+pkgver=1.22.1
 pkgrel=1
 pkgdesc="A tool which facilitates building OCI images"
 arch=(x86_64)
@@ -11,7 +11,7 @@
 depends=(crun skopeo slirp4netns)
 makedepends=(go git bash-bats btrfs-progs device-mapper gpgme libassuan
  bzip2 go-md2man runc skopeo systemd)
-_commit=e6ea308d6de1724a0ead3e08517a5e365461b275 #refs/tags/v1.21.4
+_commit=91c5541140ea6310be94e651455f4458aba8b018   #refs/tags/v1.22.1^{}
 source=(git+https://github.com/containers/buildah.git#commit=$_commit)
 md5sums=('SKIP')
 



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

2021-08-19 Thread Morten Linderud via arch-commits
Date: Thursday, August 19, 2021 @ 20:00:54
  Author: foxboron
Revision: 1003887

archrelease: copy trunk to community-x86_64

Added:
  podman-dnsname/repos/community-x86_64/PKGBUILD
(from rev 1003886, podman-dnsname/trunk/PKGBUILD)
Deleted:
  podman-dnsname/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-19 20:00:46 UTC (rev 1003886)
+++ PKGBUILD2021-08-19 20:00:54 UTC (rev 1003887)
@@ -1,42 +0,0 @@
-# Maintainer: Morten Linderud 
-
-pkgname=podman-dnsname
-_pkgname=dnsname
-pkgver=1.2.0
-pkgrel=2
-pkgdesc="name resolution for containers"
-arch=("x86_64")
-url="https://github.com/containers/dnsname;
-license=("APACHE")
-makedepends=("git" "go")
-depends=("dnsmasq")
-_commit=3b29247c46d2811610ad57dd9fdae61157532a5b   #refs/tags/v1.2.0^{}
-source=("git+${url}.git#commit=${_commit}")
-validpgpkeys=("B7DBDCA456F7335E91F1C25CD3624C551D0515C4")
-sha256sums=('SKIP')
-
-pkgver() {
-cd ${_pkgname}
-git describe --tags | sed 's/^v//;s/-/+/g'
-}
-
-build() {
-  cd "${_pkgname}"
-  export CGO_LDFLAGS="${LDFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  export GOFLAGS="-buildmode=pie -ldflags=-linkmode=external -trimpath 
-mod=readonly -modcacherw"
-  make
-}
-
-# check() {
-#   cd "${_pkgname}"
-#   go test ./...
-# }
-
-package() {
-  cd "${_pkgname}"
-  make PREFIX="/usr" LIBEXECDIR="/usr/lib/cni" DESTDIR="${pkgdir}" install
-  install -vDm 755 "$pkgdir/usr/lib/cni/dnsname" -t "$pkgdir/opt/cni/bin/"
-}

Copied: podman-dnsname/repos/community-x86_64/PKGBUILD (from rev 1003886, 
podman-dnsname/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-19 20:00:54 UTC (rev 1003887)
@@ -0,0 +1,42 @@
+# Maintainer: Morten Linderud 
+
+pkgname=podman-dnsname
+_pkgname=dnsname
+pkgver=1.3.1
+pkgrel=1
+pkgdesc="name resolution for containers"
+arch=("x86_64")
+url="https://github.com/containers/dnsname;
+license=("APACHE")
+makedepends=("git" "go")
+depends=("dnsmasq")
+_commit=18822f9a4fb35d1349eb256f4cd2bfd372474d84   #refs/tags/v1.3.1^{}
+source=("git+${url}.git#commit=${_commit}")
+validpgpkeys=("B7DBDCA456F7335E91F1C25CD3624C551D0515C4")
+sha256sums=('SKIP')
+
+pkgver() {
+cd ${_pkgname}
+git describe --tags | sed 's/^v//;s/-/+/g'
+}
+
+build() {
+  cd "${_pkgname}"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export GOFLAGS="-buildmode=pie -ldflags=-linkmode=external -trimpath 
-mod=readonly -modcacherw"
+  make
+}
+
+# check() {
+#   cd "${_pkgname}"
+#   go test ./...
+# }
+
+package() {
+  cd "${_pkgname}"
+  make PREFIX="/usr" LIBEXECDIR="/usr/lib/cni" DESTDIR="${pkgdir}" install
+  install -vDm 755 "$pkgdir/usr/lib/cni/dnsname" -t "$pkgdir/opt/cni/bin/"
+}



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

2021-08-19 Thread Morten Linderud via arch-commits
Date: Thursday, August 19, 2021 @ 20:00:46
  Author: foxboron
Revision: 1003886

upgpkg: podman-dnsname 1.3.1-1

Modified:
  podman-dnsname/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-19 19:55:02 UTC (rev 1003885)
+++ PKGBUILD2021-08-19 20:00:46 UTC (rev 1003886)
@@ -2,8 +2,8 @@
 
 pkgname=podman-dnsname
 _pkgname=dnsname
-pkgver=1.2.0
-pkgrel=2
+pkgver=1.3.1
+pkgrel=1
 pkgdesc="name resolution for containers"
 arch=("x86_64")
 url="https://github.com/containers/dnsname;
@@ -10,7 +10,7 @@
 license=("APACHE")
 makedepends=("git" "go")
 depends=("dnsmasq")
-_commit=3b29247c46d2811610ad57dd9fdae61157532a5b   #refs/tags/v1.2.0^{}
+_commit=18822f9a4fb35d1349eb256f4cd2bfd372474d84   #refs/tags/v1.3.1^{}
 source=("git+${url}.git#commit=${_commit}")
 validpgpkeys=("B7DBDCA456F7335E91F1C25CD3624C551D0515C4")
 sha256sums=('SKIP')



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

2021-08-19 Thread Morten Linderud via arch-commits
Date: Thursday, August 19, 2021 @ 19:55:02
  Author: foxboron
Revision: 1003885

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-19 19:54:56 UTC (rev 1003884)
+++ PKGBUILD2021-08-19 19:55:02 UTC (rev 1003885)
@@ -1,26 +0,0 @@
-# Maintainer: Morten Linderud 
-# Contributor: Balló György 
-
-_pkgbase=send2trash
-pkgname=python-send2trash
-pkgver=1.7.1
-pkgrel=1
-pkgdesc="Send file to trash natively"
-arch=('any')
-url="https://github.com/hsoft/send2trash;
-license=('BSD')
-depends=('python')
-makedepends=('python' 'python-setuptools')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/hsoft/$_pkgbase/archive/$pkgver.tar.gz;)
-sha256sums=('8f2287b6f0e822cabc1e65023f444960e121adee69603287f858afd349981c12')
-
-build() {
-   cd $_pkgbase-$pkgver
-   python setup.py build
-}
-
-package() {
-   cd $_pkgbase-$pkgver
-   python setup.py install --root "$pkgdir" --optimize=1 --skip-build
-   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: python-send2trash/repos/community-any/PKGBUILD (from rev 1003884, 
python-send2trash/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-19 19:55:02 UTC (rev 1003885)
@@ -0,0 +1,26 @@
+# Maintainer: Morten Linderud 
+# Contributor: Balló György 
+
+_pkgbase=send2trash
+pkgname=python-send2trash
+pkgver=1.8.0
+pkgrel=1
+pkgdesc="Send file to trash natively"
+arch=('any')
+url="https://github.com/hsoft/send2trash;
+license=('BSD')
+depends=('python')
+makedepends=('python' 'python-setuptools')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/hsoft/$_pkgbase/archive/$pkgver.tar.gz;)
+sha256sums=('937b038abd9f1e7b8c5d7a116be5dc4663beb71df74dcccffe56cacf992c7a9c')
+
+build() {
+   cd $_pkgbase-$pkgver
+   python setup.py build
+}
+
+package() {
+   cd $_pkgbase-$pkgver
+   python setup.py install --root "$pkgdir" --optimize=1 --skip-build
+   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}



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

2021-08-19 Thread Morten Linderud via arch-commits
Date: Thursday, August 19, 2021 @ 19:54:56
  Author: foxboron
Revision: 1003884

upgpkg: python-send2trash 1.8.0-1

Modified:
  python-send2trash/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-19 19:54:24 UTC (rev 1003883)
+++ PKGBUILD2021-08-19 19:54:56 UTC (rev 1003884)
@@ -3,7 +3,7 @@
 
 _pkgbase=send2trash
 pkgname=python-send2trash
-pkgver=1.7.1
+pkgver=1.8.0
 pkgrel=1
 pkgdesc="Send file to trash natively"
 arch=('any')
@@ -12,7 +12,7 @@
 depends=('python')
 makedepends=('python' 'python-setuptools')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/hsoft/$_pkgbase/archive/$pkgver.tar.gz;)
-sha256sums=('8f2287b6f0e822cabc1e65023f444960e121adee69603287f858afd349981c12')
+sha256sums=('937b038abd9f1e7b8c5d7a116be5dc4663beb71df74dcccffe56cacf992c7a9c')
 
 build() {
cd $_pkgbase-$pkgver



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

2021-08-19 Thread David Runge via arch-commits
Date: Thursday, August 19, 2021 @ 19:54:24
  Author: dvzrv
Revision: 1003883

archrelease: copy trunk to community-x86_64

Added:
  xwax/repos/community-x86_64/PKGBUILD
(from rev 1003882, xwax/trunk/PKGBUILD)
Deleted:
  xwax/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-19 19:54:17 UTC (rev 1003882)
+++ PKGBUILD2021-08-19 19:54:24 UTC (rev 1003883)
@@ -1,36 +0,0 @@
-# Maintainer: Lukas Fleischer 
-# Contributor: David Runge 
-# Contributor: sputnick 
-
-pkgname=xwax
-pkgver=1.7
-pkgrel=2
-pkgdesc='Open-source vinyl emulation software for Linux.'
-arch=('x86_64')
-url='https://www.xwax.co.uk/'
-license=('GPL2')
-depends=('alsa-lib' 'glibc' 'libjack.so' 'sdl' 'sdl_ttf' 'ttf-dejavu')
-optdepends=('cdparanoia: for direct CD import'
-'faad: for AAC import'
-'ffmpeg: for various audio and video import'
-'flac: for FLAC import'
-'mpg123: for MP3 import'
-'sox: for live audio import'
-'vorbis-tools: for OGG import')
-source=("https://www.xwax.co.uk/releases/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('ab0fcaf32f1fd1d6b38323095524f1932a067a3d04d40e4b043993e360411fed0c4b78bb71662581b438cb1e3005bc21659db4521a6ec704994b2e8e1b7e62d4')
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  ./configure --prefix /usr \
-  --enable-alsa \
-  --enable-jack
-  make EXECDIR="/usr/lib/${pkgname}"
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" EXECDIR="/usr/lib/${pkgname}" install
-  install -vDm 644 {CHANGES,README} \
--t "${pkgdir}/usr/share/doc/${pkgname}"
-}

Copied: xwax/repos/community-x86_64/PKGBUILD (from rev 1003882, 
xwax/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-19 19:54:24 UTC (rev 1003883)
@@ -0,0 +1,40 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: David Runge 
+# Contributor: sputnick 
+
+pkgname=xwax
+pkgver=1.8
+pkgrel=1
+pkgdesc='Open-source vinyl emulation software for Linux.'
+arch=('x86_64')
+url='https://www.xwax.co.uk/'
+license=('GPL3')
+depends=('glibc' 'sdl' 'sdl_ttf' 'ttf-dejavu')
+makedepends=('alsa-lib' 'jack')
+optdepends=('cdparanoia: for direct CD import'
+'faad: for AAC import'
+'ffmpeg: for various audio and video import'
+'flac: for FLAC import'
+'mpg123: for MP3 import'
+'sox: for live audio import'
+'vorbis-tools: for OGG import')
+source=("https://www.xwax.co.uk/releases/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('db37a16ecc5437f9b085c17e5e645e04b76a18aa7f7d8e8448a2994435596394ea7f2b52a6734194be7cf0b705f0f8735c2c547f3f57525339c4dc671d9d')
+b2sums=('7fbde34e6c1a3508da6ea8230cec7d2663503882182e403bf9bbf2b7327248c1b2e38a21392615a359d30d4a65f558e55346f99bf8f89621a18bcf9e8cf09139')
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  ./configure --prefix /usr \
+  --enable-alsa \
+  --enable-jack
+  make EXECDIR="/usr/lib/${pkgname}"
+}
+
+package() {
+  depends+=('libasound.so' 'libjack.so')
+
+  cd "${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" EXECDIR="/usr/lib/${pkgname}" install
+  install -vDm 644 {CHANGES,README} \
+-t "${pkgdir}/usr/share/doc/${pkgname}"
+}



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

2021-08-19 Thread David Runge via arch-commits
Date: Thursday, August 19, 2021 @ 19:54:17
  Author: dvzrv
Revision: 1003882

upgpkg: xwax 1.8-1: Upgrade to 1.8.

Switch to upgraded GPL3 as license (upstream updated the license statement).
Add all available sodeps in package().

Modified:
  xwax/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-19 19:51:47 UTC (rev 1003881)
+++ PKGBUILD2021-08-19 19:54:17 UTC (rev 1003882)
@@ -3,13 +3,14 @@
 # Contributor: sputnick 
 
 pkgname=xwax
-pkgver=1.7
-pkgrel=2
+pkgver=1.8
+pkgrel=1
 pkgdesc='Open-source vinyl emulation software for Linux.'
 arch=('x86_64')
 url='https://www.xwax.co.uk/'
-license=('GPL2')
-depends=('alsa-lib' 'glibc' 'libjack.so' 'sdl' 'sdl_ttf' 'ttf-dejavu')
+license=('GPL3')
+depends=('glibc' 'sdl' 'sdl_ttf' 'ttf-dejavu')
+makedepends=('alsa-lib' 'jack')
 optdepends=('cdparanoia: for direct CD import'
 'faad: for AAC import'
 'ffmpeg: for various audio and video import'
@@ -18,7 +19,8 @@
 'sox: for live audio import'
 'vorbis-tools: for OGG import')
 source=("https://www.xwax.co.uk/releases/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('ab0fcaf32f1fd1d6b38323095524f1932a067a3d04d40e4b043993e360411fed0c4b78bb71662581b438cb1e3005bc21659db4521a6ec704994b2e8e1b7e62d4')
+sha512sums=('db37a16ecc5437f9b085c17e5e645e04b76a18aa7f7d8e8448a2994435596394ea7f2b52a6734194be7cf0b705f0f8735c2c547f3f57525339c4dc671d9d')
+b2sums=('7fbde34e6c1a3508da6ea8230cec7d2663503882182e403bf9bbf2b7327248c1b2e38a21392615a359d30d4a65f558e55346f99bf8f89621a18bcf9e8cf09139')
 
 build() {
   cd "${pkgname}-${pkgver}"
@@ -29,6 +31,8 @@
 }
 
 package() {
+  depends+=('libasound.so' 'libjack.so')
+
   cd "${pkgname}-${pkgver}"
   make DESTDIR="${pkgdir}" EXECDIR="/usr/lib/${pkgname}" install
   install -vDm 644 {CHANGES,README} \



[arch-commits] Commit in python-pandas-datareader/repos/community-any (2 files)

2021-08-19 Thread Morten Linderud via arch-commits
Date: Thursday, August 19, 2021 @ 19:51:47
  Author: foxboron
Revision: 1003881

archrelease: copy trunk to community-any

Added:
  python-pandas-datareader/repos/community-any/PKGBUILD
(from rev 1003880, python-pandas-datareader/trunk/PKGBUILD)
Deleted:
  python-pandas-datareader/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-19 19:51:39 UTC (rev 1003880)
+++ PKGBUILD2021-08-19 19:51:47 UTC (rev 1003881)
@@ -1,27 +0,0 @@
-# Maintainer: Andrzej Giniewicz 
-
-# TODO: move optional python-requests-cache
-
-pkgname=python-pandas-datareader
-pkgver=0.9.0
-pkgrel=2
-pkgdesc="Data readers extracted from the pandas codebase"
-arch=('any')
-url="https://github.com/pydata/pandas-datareader;
-license=('BSD')
-depends=('python-pandas' 'python-lxml' 'python-requests')
-makedepends=('python-setuptools')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/pydata/pandas-datareader/archive/v${pkgver}.tar.gz;)
-sha256sums=('f7de31b193fcf16bf4ec794beba28f371b8423a0edeef4433ec8a29c9eb028ca')
-
-build() {
-  cd "$srcdir"/pandas-datareader-${pkgver}
-  python setup.py build_ext --inplace
-  python setup.py build
-}
-
-package() {
-  cd "$srcdir"/pandas-datareader-${pkgver}
-  python setup.py install --skip-build --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE.md "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-pandas-datareader/repos/community-any/PKGBUILD (from rev 
1003880, python-pandas-datareader/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-19 19:51:47 UTC (rev 1003881)
@@ -0,0 +1,27 @@
+# Maintainer: Andrzej Giniewicz 
+
+# TODO: move optional python-requests-cache
+
+pkgname=python-pandas-datareader
+pkgver=0.10.0
+pkgrel=1
+pkgdesc="Data readers extracted from the pandas codebase"
+arch=('any')
+url="https://github.com/pydata/pandas-datareader;
+license=('BSD')
+depends=('python-pandas' 'python-lxml' 'python-requests')
+makedepends=('python-setuptools')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/pydata/pandas-datareader/archive/v${pkgver}.tar.gz;)
+sha256sums=('73385b23d42599c6f6f34966f0f22287acd8b775917d5694ae6df4adaf0d0add')
+
+build() {
+  cd "$srcdir"/pandas-datareader-${pkgver}
+  python setup.py build_ext --inplace
+  python setup.py build
+}
+
+package() {
+  cd "$srcdir"/pandas-datareader-${pkgver}
+  python setup.py install --skip-build --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE.md "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}



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

2021-08-19 Thread Morten Linderud via arch-commits
Date: Thursday, August 19, 2021 @ 19:51:39
  Author: foxboron
Revision: 1003880

upgpkg: python-pandas-datareader 0.10.0-1

Modified:
  python-pandas-datareader/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-19 19:50:26 UTC (rev 1003879)
+++ PKGBUILD2021-08-19 19:51:39 UTC (rev 1003880)
@@ -3,8 +3,8 @@
 # TODO: move optional python-requests-cache
 
 pkgname=python-pandas-datareader
-pkgver=0.9.0
-pkgrel=2
+pkgver=0.10.0
+pkgrel=1
 pkgdesc="Data readers extracted from the pandas codebase"
 arch=('any')
 url="https://github.com/pydata/pandas-datareader;
@@ -12,7 +12,7 @@
 depends=('python-pandas' 'python-lxml' 'python-requests')
 makedepends=('python-setuptools')
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/pydata/pandas-datareader/archive/v${pkgver}.tar.gz;)
-sha256sums=('f7de31b193fcf16bf4ec794beba28f371b8423a0edeef4433ec8a29c9eb028ca')
+sha256sums=('73385b23d42599c6f6f34966f0f22287acd8b775917d5694ae6df4adaf0d0add')
 
 build() {
   cd "$srcdir"/pandas-datareader-${pkgver}



[arch-commits] Commit in python-google-api-python-client/repos/community-any (2 files)

2021-08-19 Thread Morten Linderud via arch-commits
Date: Thursday, August 19, 2021 @ 19:50:26
  Author: foxboron
Revision: 1003879

archrelease: copy trunk to community-any

Added:
  python-google-api-python-client/repos/community-any/PKGBUILD
(from rev 1003878, python-google-api-python-client/trunk/PKGBUILD)
Deleted:
  python-google-api-python-client/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-19 19:50:19 UTC (rev 1003878)
+++ PKGBUILD2021-08-19 19:50:26 UTC (rev 1003879)
@@ -1,31 +0,0 @@
-# Maintainer: Andrzej Giniewicz 
-# Maintainer: Morten Linderud 
-# Contributor: shadyabhi 
-
-pkgname=python-google-api-python-client
-pkgver=2.10.0
-pkgrel=1
-pkgdesc="Google API Client Library for Python"
-arch=('any')
-url="https://github.com/google/google-api-python-client;
-license=('Apache')
-depends=('python-google-auth-httplib2' 'python-uritemplate' 
'python-google-api-core')
-optdepends=('python-oauth2client: optional backend')
-makedepends=('python-setuptools')
-source=("google-api-python-client-${pkgver}.tar.gz::https://github.com/google/google-api-python-client/archive/v${pkgver}.tar.gz;)
-sha256sums=('356ea0eb56f068cbbb5a5145067652f2bb36a1b0a624cb28ed936167bfeda327')
-
-build() {
-  cd "google-api-python-client-${pkgver}"
-  python setup.py build
-}
- 
-package() {
-  cd "google-api-python-client-$pkgver"
-  export PYTHONHASHSEED=0
-  python setup.py install --skip-build --root="$pkgdir" --optimize=1
-
-  # Workaround for FS#47243
-  _site_packages=`python -c "from distutils.sysconfig import get_python_lib; 
print(get_python_lib())"`
-  chmod -R a+r "$pkgdir$_site_packages"
-}

Copied: python-google-api-python-client/repos/community-any/PKGBUILD (from rev 
1003878, python-google-api-python-client/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-19 19:50:26 UTC (rev 1003879)
@@ -0,0 +1,31 @@
+# Maintainer: Andrzej Giniewicz 
+# Maintainer: Morten Linderud 
+# Contributor: shadyabhi 
+
+pkgname=python-google-api-python-client
+pkgver=2.17.0
+pkgrel=1
+pkgdesc="Google API Client Library for Python"
+arch=('any')
+url="https://github.com/google/google-api-python-client;
+license=('Apache')
+depends=('python-google-auth-httplib2' 'python-uritemplate' 
'python-google-api-core')
+optdepends=('python-oauth2client: optional backend')
+makedepends=('python-setuptools')
+source=("google-api-python-client-${pkgver}.tar.gz::https://github.com/google/google-api-python-client/archive/v${pkgver}.tar.gz;)
+sha256sums=('544830650a5c597319b3da1343e0f33d40069d044b17d946b1a8e94c43922603')
+
+build() {
+  cd "google-api-python-client-${pkgver}"
+  python setup.py build
+}
+ 
+package() {
+  cd "google-api-python-client-$pkgver"
+  export PYTHONHASHSEED=0
+  python setup.py install --skip-build --root="$pkgdir" --optimize=1
+
+  # Workaround for FS#47243
+  _site_packages=`python -c "from distutils.sysconfig import get_python_lib; 
print(get_python_lib())"`
+  chmod -R a+r "$pkgdir$_site_packages"
+}



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

2021-08-19 Thread Morten Linderud via arch-commits
Date: Thursday, August 19, 2021 @ 19:50:19
  Author: foxboron
Revision: 1003878

upgpkg: python-google-api-python-client 2.17.0-1

Modified:
  python-google-api-python-client/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-19 19:48:10 UTC (rev 1003877)
+++ PKGBUILD2021-08-19 19:50:19 UTC (rev 1003878)
@@ -3,7 +3,7 @@
 # Contributor: shadyabhi 
 
 pkgname=python-google-api-python-client
-pkgver=2.10.0
+pkgver=2.17.0
 pkgrel=1
 pkgdesc="Google API Client Library for Python"
 arch=('any')
@@ -13,7 +13,7 @@
 optdepends=('python-oauth2client: optional backend')
 makedepends=('python-setuptools')
 
source=("google-api-python-client-${pkgver}.tar.gz::https://github.com/google/google-api-python-client/archive/v${pkgver}.tar.gz;)
-sha256sums=('356ea0eb56f068cbbb5a5145067652f2bb36a1b0a624cb28ed936167bfeda327')
+sha256sums=('544830650a5c597319b3da1343e0f33d40069d044b17d946b1a8e94c43922603')
 
 build() {
   cd "google-api-python-client-${pkgver}"



[arch-commits] Commit in python-google-api-core/repos/community-any (2 files)

2021-08-19 Thread Morten Linderud via arch-commits
Date: Thursday, August 19, 2021 @ 19:48:10
  Author: foxboron
Revision: 1003877

archrelease: copy trunk to community-any

Added:
  python-google-api-core/repos/community-any/PKGBUILD
(from rev 1003876, python-google-api-core/trunk/PKGBUILD)
Deleted:
  python-google-api-core/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-19 19:48:02 UTC (rev 1003876)
+++ PKGBUILD2021-08-19 19:48:10 UTC (rev 1003877)
@@ -1,26 +0,0 @@
-# Maintainer: Andrzej Giniewicz 
-# Maintainer: Morten Linderud 
-# Contributor: Kaizhao Zhang 
-
-pkgname=python-google-api-core
-pkgver=1.30.0
-pkgrel=1
-pkgdesc="Google API client core library"
-arch=('any')
-url="https://github.com/googleapis/googleapis;
-license=('Apache')
-depends=('python-setuptools' 'python-pytz' 'python-requests' 
'python-googleapis-common-protos' 'python-google-auth')
-optdepends=('python-grpcio: for grpc support')
-source=("https://files.pythonhosted.org/packages/source/g/google-api-core/google-api-core-${pkgver}.tar.gz;)
-sha256sums=('0724d354d394b3d763bc10dfee05807813c5210f0bd9b8e2ddf6b6925603411c')
-
-build() {
-  cd "google-api-core-${pkgver}"
-  python setup.py build
-}
-
-package() {
-  cd "google-api-core-${pkgver}"
-  export PYTHONHASHSEED=0
-  python setup.py install --root="$pkgdir" --optimize=1
-}

Copied: python-google-api-core/repos/community-any/PKGBUILD (from rev 1003876, 
python-google-api-core/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-19 19:48:10 UTC (rev 1003877)
@@ -0,0 +1,26 @@
+# Maintainer: Andrzej Giniewicz 
+# Maintainer: Morten Linderud 
+# Contributor: Kaizhao Zhang 
+
+pkgname=python-google-api-core
+pkgver=2.0.0
+pkgrel=1
+pkgdesc="Google API client core library"
+arch=('any')
+url="https://github.com/googleapis/googleapis;
+license=('Apache')
+depends=('python-setuptools' 'python-pytz' 'python-requests' 
'python-googleapis-common-protos' 'python-google-auth')
+optdepends=('python-grpcio: for grpc support')
+source=("https://files.pythonhosted.org/packages/source/g/google-api-core/google-api-core-${pkgver}.tar.gz;)
+sha256sums=('bd9eb0709f4e10dd6fddb32fd0788a190b434426c258be6e00ef40da136d768d')
+
+build() {
+  cd "google-api-core-${pkgver}"
+  python setup.py build
+}
+
+package() {
+  cd "google-api-core-${pkgver}"
+  export PYTHONHASHSEED=0
+  python setup.py install --root="$pkgdir" --optimize=1
+}



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

2021-08-19 Thread Morten Linderud via arch-commits
Date: Thursday, August 19, 2021 @ 19:48:02
  Author: foxboron
Revision: 1003876

upgpkg: python-google-api-core 2.0.0-1

Modified:
  python-google-api-core/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-19 19:46:06 UTC (rev 1003875)
+++ PKGBUILD2021-08-19 19:48:02 UTC (rev 1003876)
@@ -3,7 +3,7 @@
 # Contributor: Kaizhao Zhang 
 
 pkgname=python-google-api-core
-pkgver=1.30.0
+pkgver=2.0.0
 pkgrel=1
 pkgdesc="Google API client core library"
 arch=('any')
@@ -12,7 +12,7 @@
 depends=('python-setuptools' 'python-pytz' 'python-requests' 
'python-googleapis-common-protos' 'python-google-auth')
 optdepends=('python-grpcio: for grpc support')
 
source=("https://files.pythonhosted.org/packages/source/g/google-api-core/google-api-core-${pkgver}.tar.gz;)
-sha256sums=('0724d354d394b3d763bc10dfee05807813c5210f0bd9b8e2ddf6b6925603411c')
+sha256sums=('bd9eb0709f4e10dd6fddb32fd0788a190b434426c258be6e00ef40da136d768d')
 
 build() {
   cd "google-api-core-${pkgver}"



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

2021-08-19 Thread Morten Linderud via arch-commits
Date: Thursday, August 19, 2021 @ 19:46:06
  Author: foxboron
Revision: 1003875

archrelease: copy trunk to community-x86_64

Added:
  cni-plugins/repos/community-x86_64/PKGBUILD
(from rev 1003874, cni-plugins/trunk/PKGBUILD)
Deleted:
  cni-plugins/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-19 19:45:58 UTC (rev 1003874)
+++ PKGBUILD2021-08-19 19:46:06 UTC (rev 1003875)
@@ -1,42 +0,0 @@
-# Maintainer: Bartłomiej Piotrowski 
-# Maintainer: Morten Linderud 
-# Contributor: David Runge 
-
-pkgname=cni-plugins
-pkgver=0.9.1
-pkgrel=4
-pkgdesc='Some standard networking plugins, maintained by the CNI team'
-arch=(x86_64)
-url="https://github.com/containernetworking/plugins;
-license=(Apache)
-depends=(glibc)
-makedepends=(go)
-options=('emptydirs')
-source=($pkgname-$pkgver.tar.gz::$url/archive/v${pkgver}.tar.gz)
-sha512sums=('24e8fcedbff2ae7a83aa96085b546b164de6a0884d593e3b5386e9d2de3c4d9a215db9e9405332020cc45c371709a32b600e263e4f8dee62c51adafdc0180f24')
-b2sums=('878f476e62f12020b39d33a79723fe246b34d80705d3a336573401743392adca9a57b196d6d191b4a6f281110f47ecbb1525aacd91cd488bea61c7aaed12a6ef')
-
-build() {
-  cd plugins-$pkgver
-  export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
-  export CGO_LDFLAGS="${LDFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  ./build_linux.sh
-}
-
-package() {
-  cd plugins-$pkgver
-  install -vDm755 bin/* -t "$pkgdir/usr/lib/cni/"
-  install -vdm755 "${pkgdir}/etc/cni/net.d/"
-  install -vDm644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname/"
-  install -dm755 "$pkgdir/opt/cni/bin"
-
-  install -vDm644 plugins/ipam/dhcp/systemd/* -t 
"$pkgdir/usr/lib/systemd/system/"
-
-  # Some CNI stuff would build their binaries into /usr/lib/cni with the
-  # old approach. This is unfortunate so we'll just symlink each binary
-  # instead.
-  install -vDm755 bin/* -t "$pkgdir/opt/cni/bin/"
-}

Copied: cni-plugins/repos/community-x86_64/PKGBUILD (from rev 1003874, 
cni-plugins/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-19 19:46:06 UTC (rev 1003875)
@@ -0,0 +1,42 @@
+# Maintainer: Morten Linderud 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: David Runge 
+
+pkgname=cni-plugins
+pkgver=1.0.0
+pkgrel=1
+pkgdesc='Some standard networking plugins, maintained by the CNI team'
+arch=(x86_64)
+url="https://github.com/containernetworking/plugins;
+license=(Apache)
+depends=(glibc)
+makedepends=(go)
+options=('emptydirs')
+source=($pkgname-$pkgver.tar.gz::$url/archive/v${pkgver}.tar.gz)
+sha512sums=('daf820bc0ce0278e0dd5782f29b5302c880ab6cbbe2dc0b043948ab2c8213e63374914fa85a74edcbc89d1632006a92bf7b1ba004defbd6a6df3dcecfdefdfb3')
+b2sums=('fc7aa5de40610ebe9dc821f3043a35018d693f9cc9d0e46899f0feca7e3a2d5e6eb95a9638484074ba56b8b56e41c5b85c0b2b12b63910afd0f349ee8041b734')
+
+build() {
+  cd plugins-$pkgver
+  export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  ./build_linux.sh
+}
+
+package() {
+  cd plugins-$pkgver
+  install -vDm755 bin/* -t "$pkgdir/usr/lib/cni/"
+  install -vdm755 "${pkgdir}/etc/cni/net.d/"
+  install -vDm644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname/"
+  install -dm755 "$pkgdir/opt/cni/bin"
+
+  install -vDm644 plugins/ipam/dhcp/systemd/* -t 
"$pkgdir/usr/lib/systemd/system/"
+
+  # Some CNI stuff would build their binaries into /usr/lib/cni with the
+  # old approach. This is unfortunate so we'll just symlink each binary
+  # instead.
+  install -vDm755 bin/* -t "$pkgdir/opt/cni/bin/"
+}



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

2021-08-19 Thread Morten Linderud via arch-commits
Date: Thursday, August 19, 2021 @ 19:45:58
  Author: foxboron
Revision: 1003874

upgpkg: cni-plugins 1.0.0-1

Modified:
  cni-plugins/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-19 19:43:49 UTC (rev 1003873)
+++ PKGBUILD2021-08-19 19:45:58 UTC (rev 1003874)
@@ -1,10 +1,10 @@
-# Maintainer: Bartłomiej Piotrowski 
 # Maintainer: Morten Linderud 
+# Contributor: Bartłomiej Piotrowski 
 # Contributor: David Runge 
 
 pkgname=cni-plugins
-pkgver=0.9.1
-pkgrel=4
+pkgver=1.0.0
+pkgrel=1
 pkgdesc='Some standard networking plugins, maintained by the CNI team'
 arch=(x86_64)
 url="https://github.com/containernetworking/plugins;
@@ -13,8 +13,8 @@
 makedepends=(go)
 options=('emptydirs')
 source=($pkgname-$pkgver.tar.gz::$url/archive/v${pkgver}.tar.gz)
-sha512sums=('24e8fcedbff2ae7a83aa96085b546b164de6a0884d593e3b5386e9d2de3c4d9a215db9e9405332020cc45c371709a32b600e263e4f8dee62c51adafdc0180f24')
-b2sums=('878f476e62f12020b39d33a79723fe246b34d80705d3a336573401743392adca9a57b196d6d191b4a6f281110f47ecbb1525aacd91cd488bea61c7aaed12a6ef')
+sha512sums=('daf820bc0ce0278e0dd5782f29b5302c880ab6cbbe2dc0b043948ab2c8213e63374914fa85a74edcbc89d1632006a92bf7b1ba004defbd6a6df3dcecfdefdfb3')
+b2sums=('fc7aa5de40610ebe9dc821f3043a35018d693f9cc9d0e46899f0feca7e3a2d5e6eb95a9638484074ba56b8b56e41c5b85c0b2b12b63910afd0f349ee8041b734')
 
 build() {
   cd plugins-$pkgver



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

2021-08-19 Thread Christian Rebischke via arch-commits
Date: Thursday, August 19, 2021 @ 19:43:49
  Author: shibumi
Revision: 1003873

archrelease: copy trunk to community-x86_64

Added:
  k9s/repos/community-x86_64/PKGBUILD
(from rev 1003872, k9s/trunk/PKGBUILD)
Deleted:
  k9s/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-19 19:43:43 UTC (rev 1003872)
+++ PKGBUILD2021-08-19 19:43:49 UTC (rev 1003873)
@@ -1,42 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Maintainer: Morten Linderud 
-
-pkgname=k9s
-pkgver=0.24.14
-pkgrel=1
-pkgdesc='TUI for managing Kubernetes clusters and pods'
-arch=(x86_64)
-url='https://github.com/derailed/k9s'
-license=(APACHE)
-makedepends=(git go)
-_commit=6e753b5aa63ee34d49fade16940d92714702ec55   #refs/tags/v0.24.14^{}
-source=("git+$url#commit=$_commit")
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/^v//;s/-/+/g'
-}
-
-build() {
-  cd $pkgname
-  export CGO_LDFLAGS="${LDFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
-  make VERSION=$pkgver build
-}
-
-check() {
-  make -C $pkgname test
-}
-
-package() {
-  cd $pkgname
-  install -Dm755 "execs/$pkgname" "$pkgdir/usr/bin/$pkgname"
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# getver: github.com/derailed/k9s/releases
-# vim: ts=2 sw=2 et:

Copied: k9s/repos/community-x86_64/PKGBUILD (from rev 1003872, 
k9s/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-19 19:43:49 UTC (rev 1003873)
@@ -0,0 +1,42 @@
+# Maintainer: Alexander F. Rødseth 
+# Maintainer: Morten Linderud 
+
+pkgname=k9s
+pkgver=0.24.15
+pkgrel=1
+pkgdesc='TUI for managing Kubernetes clusters and pods'
+arch=(x86_64)
+url='https://github.com/derailed/k9s'
+license=(APACHE)
+makedepends=(git go)
+_commit=8e41b76edf15f7eddc46cd75fd45d27a30dc9ebe
+source=("git+$url#commit=$_commit")
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^v//;s/-/+/g'
+}
+
+build() {
+  cd $pkgname
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
+  make VERSION=$pkgver build
+}
+
+check() {
+  make -C $pkgname test
+}
+
+package() {
+  cd $pkgname
+  install -Dm755 "execs/$pkgname" "$pkgdir/usr/bin/$pkgname"
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# getver: github.com/derailed/k9s/releases
+# vim: ts=2 sw=2 et:



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

2021-08-19 Thread Christian Rebischke via arch-commits
Date: Thursday, August 19, 2021 @ 19:43:43
  Author: shibumi
Revision: 1003872

upgpkg: k9s 0.24.15-1

Modified:
  k9s/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-19 19:43:26 UTC (rev 1003871)
+++ PKGBUILD2021-08-19 19:43:43 UTC (rev 1003872)
@@ -2,7 +2,7 @@
 # Maintainer: Morten Linderud 
 
 pkgname=k9s
-pkgver=0.24.14
+pkgver=0.24.15
 pkgrel=1
 pkgdesc='TUI for managing Kubernetes clusters and pods'
 arch=(x86_64)
@@ -9,7 +9,7 @@
 url='https://github.com/derailed/k9s'
 license=(APACHE)
 makedepends=(git go)
-_commit=6e753b5aa63ee34d49fade16940d92714702ec55   #refs/tags/v0.24.14^{}
+_commit=8e41b76edf15f7eddc46cd75fd45d27a30dc9ebe
 source=("git+$url#commit=$_commit")
 sha256sums=('SKIP')
 



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

2021-08-19 Thread Morten Linderud via arch-commits
Date: Thursday, August 19, 2021 @ 19:43:26
  Author: foxboron
Revision: 1003871

archrelease: copy trunk to community-x86_64

Added:
  staticcheck/repos/community-x86_64/PKGBUILD
(from rev 1003870, staticcheck/trunk/PKGBUILD)
Deleted:
  staticcheck/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-19 19:43:19 UTC (rev 1003870)
+++ PKGBUILD2021-08-19 19:43:26 UTC (rev 1003871)
@@ -1,40 +0,0 @@
-# Maintainer: Morten Linderud 
-
-pkgname=staticcheck
-pkgver=2021.1
-pkgrel=1
-pkgdesc="The advanced Go linter"
-arch=('x86_64')
-url="https://staticcheck.io;
-license=("MIT")
-depends=('glibc')
-makedepends=('go' 'git')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/dominikh/go-tools/archive/$pkgver.tar.gz;)
-sha256sums=('f06e3edca75bb9d1deb5b3dfa7c4bfd0eb85afa1098702131d291a25362966fb')
-
-prepare(){
-   cd "go-tools-$pkgver"
-   mkdir -p bin
-}
-
-build(){
-   cd "go-tools-$pkgver"
-   export CGO_LDFLAGS="${LDFLAGS}"
-   export CGO_CFLAGS="${CFLAGS}"
-   export CGO_CPPFLAGS="${CPPFLAGS}"
-   export CGO_CXXFLAGS="${CXXFLAGS}"
-   export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw 
-ldflags=-linkmode=external"
-   go build -o bin/staticcheck ./cmd/staticcheck
-}
-
-check(){
-   cd "go-tools-$pkgver"
-   GOROOT="/usr/lib/go" go test -v ./...
-}
-
-package(){
-   cd "go-tools-$pkgver"
-   install -p -Dm755 bin/staticcheck "${pkgdir}/usr/bin/staticcheck"
-   install -Dm644 "LICENSE"  
"${pkgdir}/usr/share/licenses/${pkgname}/LICENCE"
-   install -Dm644 "LICENSE-THIRD-PARTY"  
"${pkgdir}/usr/share/licenses/${pkgname}/LICENCE-THIRD-PARTY"
-}

Copied: staticcheck/repos/community-x86_64/PKGBUILD (from rev 1003870, 
staticcheck/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-19 19:43:26 UTC (rev 1003871)
@@ -0,0 +1,40 @@
+# Maintainer: Morten Linderud 
+
+pkgname=staticcheck
+pkgver=2021.1.1
+pkgrel=1
+pkgdesc="The advanced Go linter"
+arch=('x86_64')
+url="https://staticcheck.io;
+license=("MIT")
+depends=('glibc')
+makedepends=('go' 'git')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/dominikh/go-tools/archive/$pkgver.tar.gz;)
+sha256sums=('25e87964e818adf05c3654079a73adf91457a176a75f92bb282158d0a9994bfe')
+
+prepare(){
+   cd "go-tools-$pkgver"
+   mkdir -p bin
+}
+
+build(){
+   cd "go-tools-$pkgver"
+   export CGO_LDFLAGS="${LDFLAGS}"
+   export CGO_CFLAGS="${CFLAGS}"
+   export CGO_CPPFLAGS="${CPPFLAGS}"
+   export CGO_CXXFLAGS="${CXXFLAGS}"
+   export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw 
-ldflags=-linkmode=external"
+   go build -o bin/staticcheck ./cmd/staticcheck
+}
+
+check(){
+   cd "go-tools-$pkgver"
+   GOROOT="/usr/lib/go" go test -v ./...
+}
+
+package(){
+   cd "go-tools-$pkgver"
+   install -p -Dm755 bin/staticcheck "${pkgdir}/usr/bin/staticcheck"
+   install -Dm644 "LICENSE"  
"${pkgdir}/usr/share/licenses/${pkgname}/LICENCE"
+   install -Dm644 "LICENSE-THIRD-PARTY"  
"${pkgdir}/usr/share/licenses/${pkgname}/LICENCE-THIRD-PARTY"
+}



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

2021-08-19 Thread Morten Linderud via arch-commits
Date: Thursday, August 19, 2021 @ 19:43:19
  Author: foxboron
Revision: 1003870

upgpkg: staticcheck 2021.1.1-1

Modified:
  staticcheck/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-19 19:37:30 UTC (rev 1003869)
+++ PKGBUILD2021-08-19 19:43:19 UTC (rev 1003870)
@@ -1,7 +1,7 @@
 # Maintainer: Morten Linderud 
 
 pkgname=staticcheck
-pkgver=2021.1
+pkgver=2021.1.1
 pkgrel=1
 pkgdesc="The advanced Go linter"
 arch=('x86_64')
@@ -10,7 +10,7 @@
 depends=('glibc')
 makedepends=('go' 'git')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/dominikh/go-tools/archive/$pkgver.tar.gz;)
-sha256sums=('f06e3edca75bb9d1deb5b3dfa7c4bfd0eb85afa1098702131d291a25362966fb')
+sha256sums=('25e87964e818adf05c3654079a73adf91457a176a75f92bb282158d0a9994bfe')
 
 prepare(){
cd "go-tools-$pkgver"



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

2021-08-19 Thread David Runge via arch-commits
Date: Thursday, August 19, 2021 @ 19:39:43
  Author: dvzrv
Revision: 422377

archrelease: copy trunk to extra-x86_64

Added:
  gnu-efi/repos/extra-x86_64/PKGBUILD
(from rev 422376, gnu-efi/trunk/PKGBUILD)
  gnu-efi/repos/extra-x86_64/gnu-efi-3.0.12-ldflags.patch
(from rev 422376, gnu-efi/trunk/gnu-efi-3.0.12-ldflags.patch)
Deleted:
  gnu-efi/repos/extra-x86_64/PKGBUILD
  gnu-efi/repos/extra-x86_64/gnu-efi-3.0.12-ldflags.patch

--+
 PKGBUILD |   94 -
 gnu-efi-3.0.12-ldflags.patch |   24 +-
 2 files changed, 59 insertions(+), 59 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-19 19:39:36 UTC (rev 422376)
+++ PKGBUILD2021-08-19 19:39:43 UTC (rev 422377)
@@ -1,47 +0,0 @@
-# Maintainer: David Runge 
-
-pkgname=gnu-efi
-pkgver=3.0.13
-pkgrel=1
-pkgdesc="Develop EFI applications using the GNU toolchain and the EFI 
development environment"
-arch=('x86_64')
-url="https://sourceforge.net/projects/gnu-efi/;
-license=('BSD')
-conflicts=('gnu-efi-libs')
-provides=('gnu-efi-libs')
-replaces=('gnu-efi-libs')
-source=("https://download.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2;
-"${pkgname}-3.0.12-ldflags.patch")
-sha512sums=('cda0e7c04d4fa8431b93dc7caa36e0a5e1076470dcdeae25f8bd08949c5d387647fdd9ca3db6b551766857e2c24ce3c6d95869d5dc5154128a2d3540d410e1eb'
-
'7fd1c8d09ff870c33ae62887b657a7367f85a07f6709d33471ca13117a08e755853fd1e99db492d1db47444b95ae871078c4a913ed70aa7236e49349046e06b6')
-b2sums=('4b593587f73d7edc7aa2930fb3ea8ea9d9ad37a09b37166fc09e37762eb436edcf6b5c1abbaf46df0b09dfb5b7ebc776fb59cf36c800898ff5ea0a362bdf6c4f'
-
'c1633240ee6363c1df2ae5d7aab5a76a8fe93fd86a2c9a4973b8b30273e1512914c67c88483d0880cfca00df38b3b62fe9e1cd173b139b622ee83f0db835320f')
-
-prepare() {
-  cd "$pkgname-$pkgver"
-  # -Werror, not even once
-  sed -e 's/-Werror//g' -i Make.defaults
-  # insert LDFLFAGS into custom linker for apps
-  patch -Np1 -i "../${pkgname}-3.0.12-ldflags.patch"
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-  make
-  make -C lib
-  make -C gnuefi
-  make -C inc
-  # unset LDFLAGS for custom linker used in apps, as we have patched our
-  # LDFLAGS in manually in prepare()
-  LDFLAGS=""
-  make -C apps
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  make INSTALLROOT="$pkgdir/" PREFIX='/usr' install
-  install -vDm 644 apps/*.efi -t "${pkgdir}/usr/share/${pkgname}/apps/$CARCH"
-  install -vDm 644 README.efilib -t "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -vDm 644 {ChangeLog,README.{gnuefi,git,elilo}} \
--t "${pkgdir}/usr/share/doc/${pkgname}"
-}

Copied: gnu-efi/repos/extra-x86_64/PKGBUILD (from rev 422376, 
gnu-efi/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-19 19:39:43 UTC (rev 422377)
@@ -0,0 +1,47 @@
+# Maintainer: David Runge 
+
+pkgname=gnu-efi
+pkgver=3.0.14
+pkgrel=1
+pkgdesc="Develop EFI applications using the GNU toolchain and the EFI 
development environment"
+arch=('x86_64')
+url="https://sourceforge.net/projects/gnu-efi/;
+license=('BSD')
+conflicts=('gnu-efi-libs')
+provides=('gnu-efi-libs')
+replaces=('gnu-efi-libs')
+source=("https://download.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2;
+"${pkgname}-3.0.12-ldflags.patch")
+sha512sums=('37420ba3804e8547451a7b143a689ceb6af0557234fa7801efdeba3c2fc581a5354fe34cbaacb338d7b394d913e7274098ebf07026b7c1d50b2236d7f86c470c'
+
'7fd1c8d09ff870c33ae62887b657a7367f85a07f6709d33471ca13117a08e755853fd1e99db492d1db47444b95ae871078c4a913ed70aa7236e49349046e06b6')
+b2sums=('c7f9127d3bb7e5e2bc52f5fc7be3376ddc5076b262e5db5a30a997cf10bf10288da63ded64d11327fad09190a803ce26e82b32aea2d8525ee0d1e1a23ebadff2'
+
'c1633240ee6363c1df2ae5d7aab5a76a8fe93fd86a2c9a4973b8b30273e1512914c67c88483d0880cfca00df38b3b62fe9e1cd173b139b622ee83f0db835320f')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+  # -Werror, not even once
+  sed -e 's/-Werror//g' -i Make.defaults
+  # insert LDFLFAGS into custom linker for apps
+  patch -Np1 -i "../${pkgname}-3.0.12-ldflags.patch"
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  make
+  make -C lib
+  make -C gnuefi
+  make -C inc
+  # unset LDFLAGS for custom linker used in apps, as we have patched our
+  # LDFLAGS in manually in prepare()
+  LDFLAGS=""
+  make -C apps
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make INSTALLROOT="$pkgdir/" PREFIX='/usr' install
+  install -vDm 644 apps/*.efi -t "${pkgdir}/usr/share/${pkgname}/apps/$CARCH"
+  install -vDm 644 README.efilib -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -vDm 644 {ChangeLog,README.{gnuefi,git,elilo}} \
+-t "${pkgdir}/usr/share/doc/${pkgname}"
+}

Deleted: gnu-efi-3.0.12-ldflags.patch
===
--- gnu-efi-3.0.12-ldflags.patch2021-08-19 

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

2021-08-19 Thread David Runge via arch-commits
Date: Thursday, August 19, 2021 @ 19:39:36
  Author: dvzrv
Revision: 422376

upgpkg: gnu-efi 3.0.14-1: Upgrade to 3.0.14.

Modified:
  gnu-efi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-19 19:31:57 UTC (rev 422375)
+++ PKGBUILD2021-08-19 19:39:36 UTC (rev 422376)
@@ -1,7 +1,7 @@
 # Maintainer: David Runge 
 
 pkgname=gnu-efi
-pkgver=3.0.13
+pkgver=3.0.14
 pkgrel=1
 pkgdesc="Develop EFI applications using the GNU toolchain and the EFI 
development environment"
 arch=('x86_64')
@@ -12,9 +12,9 @@
 replaces=('gnu-efi-libs')
 
source=("https://download.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2;
 "${pkgname}-3.0.12-ldflags.patch")
-sha512sums=('cda0e7c04d4fa8431b93dc7caa36e0a5e1076470dcdeae25f8bd08949c5d387647fdd9ca3db6b551766857e2c24ce3c6d95869d5dc5154128a2d3540d410e1eb'
+sha512sums=('37420ba3804e8547451a7b143a689ceb6af0557234fa7801efdeba3c2fc581a5354fe34cbaacb338d7b394d913e7274098ebf07026b7c1d50b2236d7f86c470c'
 
'7fd1c8d09ff870c33ae62887b657a7367f85a07f6709d33471ca13117a08e755853fd1e99db492d1db47444b95ae871078c4a913ed70aa7236e49349046e06b6')
-b2sums=('4b593587f73d7edc7aa2930fb3ea8ea9d9ad37a09b37166fc09e37762eb436edcf6b5c1abbaf46df0b09dfb5b7ebc776fb59cf36c800898ff5ea0a362bdf6c4f'
+b2sums=('c7f9127d3bb7e5e2bc52f5fc7be3376ddc5076b262e5db5a30a997cf10bf10288da63ded64d11327fad09190a803ce26e82b32aea2d8525ee0d1e1a23ebadff2'
 
'c1633240ee6363c1df2ae5d7aab5a76a8fe93fd86a2c9a4973b8b30273e1512914c67c88483d0880cfca00df38b3b62fe9e1cd173b139b622ee83f0db835320f')
 
 prepare() {



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

2021-08-19 Thread Christian Rebischke via arch-commits
Date: Thursday, August 19, 2021 @ 19:37:30
  Author: shibumi
Revision: 1003869

archrelease: copy trunk to community-x86_64

Added:
  kompose/repos/community-x86_64/PKGBUILD
(from rev 1003868, kompose/trunk/PKGBUILD)
Deleted:
  kompose/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-19 19:37:22 UTC (rev 1003868)
+++ PKGBUILD2021-08-19 19:37:30 UTC (rev 1003869)
@@ -1,43 +0,0 @@
-# Maintainer: Christian Rebischke 
-
-pkgname=kompose
-pkgver=1.22.0
-pkgrel=3
-pkgdesc="Docker compose to Kubernetes transformation tool"
-arch=('x86_64')
-url="https://github.com/kubernetes/kompose;
-license=('Apache')
-makedepends=('go' 'git' 'jq') # git binary is needed for test scripts
-depends=('glibc')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/kubernetes/kompose/archive/v${pkgver}.tar.gz;)
-sha512sums=('09c2520b759dcc452f6d55b171d9c002ccdab96cf01cd9b67be33070c8b3faff0a189ca30731376386d214002e2c44ffe27715aa74039a8adbae946d2b03d1d0')
-
-prepare() {
-  export GOPATH="${srcdir}"
-  mkdir -p src/github.com/kubernetes "${GOPATH}/bin"
-  mv "${pkgname}-${pkgver}" "src/github.com/kubernetes/${pkgname}"
-  export PACKAGE_ROOT="${GOPATH}/src/github.com/kubernetes/${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 -v .
-  chmod +x ./kompose
-}
-
-# tests are failing right now due to a bug in script/cmd/cmd_test.go:28
-#check() {
-#  cd "${PACKAGE_ROOT}"
-#  go test -v ./...
-#}
-
-package() {
-  cd "${PACKAGE_ROOT}"
-  install -Dsm755 ./kompose "${pkgdir}/usr/bin/kompose"
-}

Copied: kompose/repos/community-x86_64/PKGBUILD (from rev 1003868, 
kompose/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-19 19:37:30 UTC (rev 1003869)
@@ -0,0 +1,43 @@
+# Maintainer: Christian Rebischke 
+
+pkgname=kompose
+pkgver=1.23.0
+pkgrel=1
+pkgdesc="Docker compose to Kubernetes transformation tool"
+arch=('x86_64')
+url="https://github.com/kubernetes/kompose;
+license=('Apache')
+makedepends=('go' 'git' 'jq') # git binary is needed for test scripts
+depends=('glibc')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/kubernetes/kompose/archive/v${pkgver}.tar.gz;)
+sha512sums=('e59bf2f6d0c5137b024a0cb719db93f61b42a04d9f8154757e0332b53d3d3a446a2497df91f82b55bca5f5bc4873b96823ea4cb1f686f51cbf14157c28ba7d02')
+
+prepare() {
+  export GOPATH="${srcdir}"
+  mkdir -p src/github.com/kubernetes "${GOPATH}/bin"
+  mv "${pkgname}-${pkgver}" "src/github.com/kubernetes/${pkgname}"
+  export PACKAGE_ROOT="${GOPATH}/src/github.com/kubernetes/${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 -v .
+  chmod +x ./kompose
+}
+
+# tests are failing right now due to a bug in script/cmd/cmd_test.go:28
+#check() {
+#  cd "${PACKAGE_ROOT}"
+#  go test -v ./...
+#}
+
+package() {
+  cd "${PACKAGE_ROOT}"
+  install -Dsm755 ./kompose "${pkgdir}/usr/bin/kompose"
+}



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

2021-08-19 Thread Christian Rebischke via arch-commits
Date: Thursday, August 19, 2021 @ 19:37:22
  Author: shibumi
Revision: 1003868

upgpkg: kompose 1.23.0-1

Modified:
  kompose/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-19 19:31:58 UTC (rev 1003867)
+++ PKGBUILD2021-08-19 19:37:22 UTC (rev 1003868)
@@ -1,8 +1,8 @@
 # Maintainer: Christian Rebischke 
 
 pkgname=kompose
-pkgver=1.22.0
-pkgrel=3
+pkgver=1.23.0
+pkgrel=1
 pkgdesc="Docker compose to Kubernetes transformation tool"
 arch=('x86_64')
 url="https://github.com/kubernetes/kompose;
@@ -10,7 +10,7 @@
 makedepends=('go' 'git' 'jq') # git binary is needed for test scripts
 depends=('glibc')
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/kubernetes/kompose/archive/v${pkgver}.tar.gz;)
-sha512sums=('09c2520b759dcc452f6d55b171d9c002ccdab96cf01cd9b67be33070c8b3faff0a189ca30731376386d214002e2c44ffe27715aa74039a8adbae946d2b03d1d0')
+sha512sums=('e59bf2f6d0c5137b024a0cb719db93f61b42a04d9f8154757e0332b53d3d3a446a2497df91f82b55bca5f5bc4873b96823ea4cb1f686f51cbf14157c28ba7d02')
 
 prepare() {
   export GOPATH="${srcdir}"



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

2021-08-19 Thread David Runge via arch-commits
Date: Thursday, August 19, 2021 @ 19:31:27
  Author: dvzrv
Revision: 1003866

archrelease: copy trunk to multilib-staging-x86_64

Added:
  lib32-libcap/repos/multilib-staging-x86_64/
  lib32-libcap/repos/multilib-staging-x86_64/PKGBUILD
(from rev 1003865, lib32-libcap/trunk/PKGBUILD)
  lib32-libcap/repos/multilib-staging-x86_64/libcap-2.53-makefile.patch
(from rev 1003865, lib32-libcap/trunk/libcap-2.53-makefile.patch)
  lib32-libcap/repos/multilib-staging-x86_64/libcap-2.53-progs_ldflags.patch
(from rev 1003865, lib32-libcap/trunk/libcap-2.53-progs_ldflags.patch)

-+
 PKGBUILD|   57 +
 libcap-2.53-makefile.patch  |   36 +
 libcap-2.53-progs_ldflags.patch |  101 ++
 3 files changed, 194 insertions(+)

Copied: lib32-libcap/repos/multilib-staging-x86_64/PKGBUILD (from rev 1003865, 
lib32-libcap/trunk/PKGBUILD)
===
--- multilib-staging-x86_64/PKGBUILD(rev 0)
+++ multilib-staging-x86_64/PKGBUILD2021-08-19 19:31:27 UTC (rev 1003866)
@@ -0,0 +1,57 @@
+# Maintainer: David Runge 
+# Contributor: Florian Pritz 
+# Contributor: Hugo Doria 
+
+_name=libcap
+pkgname=lib32-libcap
+pkgver=2.53
+pkgrel=1
+pkgdesc="POSIX 1003.1e capabilities (32-bit)"
+arch=('x86_64')
+url="https://sites.google.com/site/fullycapable/;
+license=('GPL2')
+depends=("libcap=${pkgver}" 'lib32-glibc' 'lib32-pam')
+makedepends=('linux-api-headers')
+provides=('libcap.so' 'libpsx.so')
+source=("https://kernel.org/pub/linux/libs/security/linux-privs/${_name}2/${_name}-$pkgver.tar."{xz,sign}
+"${_name}-2.53-makefile.patch"
+"${_name}-2.53-progs_ldflags.patch"
+)
+sha512sums=('d83ed9460658fa75a5c118d831534388ba92ddad59944088b0d81a64c86b67ed562c7be4c5a499065ec26b1baab34298da80c8d034b61759c7dd295c2455417c'
+'SKIP'
+
'0df64fd6dcd50fbbb13fea962b169e7946079e58a8f5adf61cf664b08d29832a2d0b39f50441e4cf4adbb5f4f2925df7364eefff16dcb35b71726fb8324413e7'
+
'eee1fa58b85f1a33b85dfcd6d6d3c56b5a1978d10d0af665a34163bfdefc448857d7eeaf41b06aa36d3dc9d1ef124edc653c0a55b477a820c274b96a890a19d2')
+b2sums=('10ebecc930d8491c65c7fcaa3f9ee6a45b6722d1d5be327a891e8bf4532ee8aa0ae664672c15e88bf0f328b4cd8f2e7ea685da44e903781ca7048dbe88c388c6'
+'SKIP'
+
'3105cd035b6b76727e6a634515b8cfa12051f9a78c9d9eba57203928cd52bafd29fd86f7a2234b686c21967952357ba54699e868fb8c1ad8dd4c489b914359d8'
+
'6383899d6fac08e00ce6a4234e3a35eb4adc3c64b64070785397c228c01201eec10dd5ad96d8c12e5a5ceeadab9e65ae516d60f9652a10894894848a5e70b7d7')
+validpgpkeys=('38A644698C69787344E954CE29EE848AE2CCF3F4') # Andrew G. Morgan 

+
+prepare() {
+  mv "${_name}-$pkgver" "$pkgname-$pkgver"
+  cd "$pkgname-$pkgver"
+  # SBINDIR is hardcoded to sbin. set to bin
+  # add CPPFLAGS
+  patch -Np1 -i ../"${_name}-2.53-makefile.patch"
+  # add back LDFLAGS, so that executables are built with them
+  patch -Np1 -i ../"${_name}-2.53-progs_ldflags.patch"
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  make KERNEL_HEADERS='/usr/include' CC="gcc -m32" lib='lib32' prefix='/usr' 
sbindir='bin'
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  make -k test CC="gcc -m32"
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" RAISE_SETFCAP='no' lib='lib32' prefix='/usr' 
sbindir='bin' install
+
+  # docs
+  install -vDm 644 {CHANGELOG,README} -t "${pkgdir}/usr/share/doc/${pkgname}/"
+  rm -r "${pkgdir}/usr/"{include,share/man,bin}
+}

Copied: lib32-libcap/repos/multilib-staging-x86_64/libcap-2.53-makefile.patch 
(from rev 1003865, lib32-libcap/trunk/libcap-2.53-makefile.patch)
===
--- multilib-staging-x86_64/libcap-2.53-makefile.patch  
(rev 0)
+++ multilib-staging-x86_64/libcap-2.53-makefile.patch  2021-08-19 19:31:27 UTC 
(rev 1003866)
@@ -0,0 +1,36 @@
+diff -ruN a/Make.Rules b/Make.Rules
+--- a/Make.Rules   2021-08-16 04:05:04.0 +0200
 b/Make.Rules   2021-08-18 17:50:42.028791561 +0200
+@@ -21,6 +21,14 @@
+ lib=$(shell ldd /usr/bin/ld|egrep "ld-linux|ld.so"|cut -d/ -f2)
+ endif
+ 
++ifndef sbin
++sbin=sbin
++endif
++
++ifdef sbindir
++sbin=$(sbindir)
++endif
++
+ ifdef prefix
+ exec_prefix=$(prefix)
+ lib_prefix=$(exec_prefix)
+@@ -37,7 +45,7 @@
+ # Target directories
+ 
+ MANDIR=$(man_prefix)/man
+-SBINDIR=$(exec_prefix)/sbin
++SBINDIR=$(exec_prefix)/$(sbin)
+ INCDIR=$(inc_prefix)/include
+ LIBDIR=$(lib_prefix)/$(lib)
+ PKGCONFIGDIR=$(LIBDIR)/pkgconfig
+@@ -79,7 +87,7 @@
+ 
+ SYSTEM_HEADERS = /usr/include
+ INCS=$(topdir)/libcap/include/sys/capability.h
+-CFLAGS += -Dlinux $(WARNINGS) $(DEBUG)
++CFLAGS += $(CPPFLAGS) -Dlinux $(WARNINGS) $(DEBUG)
+ INDENT := $(shell if [ -n "$$(which indent 2>/dev/null)" ]; then echo "| 
indent -kr" ; fi)
+ 
+ # SHARED tracks whether or not the SHARED libraries (libcap.so,

Copied: 

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

2021-08-19 Thread David Runge via arch-commits
Date: Thursday, August 19, 2021 @ 19:31:18
  Author: dvzrv
Revision: 1003865

upgpkg: lib32-libcap 2.53-1: Upgrade to 2.53.

As the fix for the executable pam module broke the use of LDFLAGS, add those
back.
Rework the use of CPPFLAGS and circumvention of hardcoding sbin, as those have
also been broken by the recent release.

Added:
  lib32-libcap/trunk/libcap-2.53-makefile.patch
  lib32-libcap/trunk/libcap-2.53-progs_ldflags.patch
Modified:
  lib32-libcap/trunk/PKGBUILD
Deleted:
  lib32-libcap/trunk/libcap-2.45-makefile.patch
  lib32-libcap/trunk/libcap-2.52-link_pam_cap.patch

-+
 PKGBUILD|   29 +-
 libcap-2.45-makefile.patch  |   21 ---
 libcap-2.52-link_pam_cap.patch  |   33 
 libcap-2.53-makefile.patch  |   36 +
 libcap-2.53-progs_ldflags.patch |  101 ++
 5 files changed, 151 insertions(+), 69 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-08-19 19:06:14 UTC (rev 1003864)
+++ PKGBUILD2021-08-19 19:31:18 UTC (rev 1003865)
@@ -4,7 +4,7 @@
 
 _name=libcap
 pkgname=lib32-libcap
-pkgver=2.52
+pkgver=2.53
 pkgrel=1
 pkgdesc="POSIX 1003.1e capabilities (32-bit)"
 arch=('x86_64')
@@ -14,17 +14,17 @@
 makedepends=('linux-api-headers')
 provides=('libcap.so' 'libpsx.so')
 
source=("https://kernel.org/pub/linux/libs/security/linux-privs/${_name}2/${_name}-$pkgver.tar."{xz,sign}
-"${_name}-2.45-makefile.patch"
-"${_name}-2.52-link_pam_cap.patch"
+"${_name}-2.53-makefile.patch"
+"${_name}-2.53-progs_ldflags.patch"
 )
-sha512sums=('95d9e0f81fd955c42a0f299163a4402f00e9e7a2b392dfbabe613abea4babba2730576e76c9b612665a0bb8bd88aa98bf28ea3eb5582b5c06cd1137594a59893'
+sha512sums=('d83ed9460658fa75a5c118d831534388ba92ddad59944088b0d81a64c86b67ed562c7be4c5a499065ec26b1baab34298da80c8d034b61759c7dd295c2455417c'
 'SKIP'
-
'4f613f83198dfccb8b79e1b2c8764657a85300cb166d633d86b87f46567d51fa9395387caf33e82a8718f19e9a1fc65c11e7b6f63c3c4cde1b2a27f70671ec07'
-
'52256a9d79a7beb8f82312e94032426201b45e105dc04274f4589c39003546e0b41c2d8b0a7c1a9a44a7560e25e1f1455ad0a89527fca172f97478935afeb1f3')
-b2sums=('0696ae00a485df019f5441efe1d71676ddf294f1116e7fc3f352ad0595f9d4830f2e4fac1f98353016de36a4866f9d018f53419970ccd114c6df0faa556bcea3'
+
'0df64fd6dcd50fbbb13fea962b169e7946079e58a8f5adf61cf664b08d29832a2d0b39f50441e4cf4adbb5f4f2925df7364eefff16dcb35b71726fb8324413e7'
+
'eee1fa58b85f1a33b85dfcd6d6d3c56b5a1978d10d0af665a34163bfdefc448857d7eeaf41b06aa36d3dc9d1ef124edc653c0a55b477a820c274b96a890a19d2')
+b2sums=('10ebecc930d8491c65c7fcaa3f9ee6a45b6722d1d5be327a891e8bf4532ee8aa0ae664672c15e88bf0f328b4cd8f2e7ea685da44e903781ca7048dbe88c388c6'
 'SKIP'
-
'6f50d5a03c3532e6e50506cd878b1c9ca5cee5f1758f9318d4cb5d1e319cbe5f31210ba46a81b1af30730e2329aed7921c11f1a468a596a3f210972ca0da9d64'
-
'b734ffa08cc91b69d3af7700b094c8803db65d6d72d9d0ff6e736e9b8cea8f65f63d452ddf4500e7d538b72bafee16d9f43b6231d316f914af724fdbb987a081')
+
'3105cd035b6b76727e6a634515b8cfa12051f9a78c9d9eba57203928cd52bafd29fd86f7a2234b686c21967952357ba54699e868fb8c1ad8dd4c489b914359d8'
+
'6383899d6fac08e00ce6a4234e3a35eb4adc3c64b64070785397c228c01201eec10dd5ad96d8c12e5a5ceeadab9e65ae516d60f9652a10894894848a5e70b7d7')
 validpgpkeys=('38A644698C69787344E954CE29EE848AE2CCF3F4') # Andrew G. Morgan 

 
 prepare() {
@@ -32,15 +32,14 @@
   cd "$pkgname-$pkgver"
   # SBINDIR is hardcoded to sbin. set to bin
   # add CPPFLAGS
-  patch -Np1 -i ../"${_name}-2.45-makefile.patch"
-  # fix issue with pam_cap.so not linking against libpam.so:
-  # https://bugzilla.kernel.org/show_bug.cgi?id=214023
-  patch -Np1 -i ../"${_name}-2.52-link_pam_cap.patch"
+  patch -Np1 -i ../"${_name}-2.53-makefile.patch"
+  # add back LDFLAGS, so that executables are built with them
+  patch -Np1 -i ../"${_name}-2.53-progs_ldflags.patch"
 }
 
 build() {
   cd "$pkgname-$pkgver"
-  make KERNEL_HEADERS='/usr/include' CC="gcc -m32" lib='lib32' prefix='/usr'
+  make KERNEL_HEADERS='/usr/include' CC="gcc -m32" lib='lib32' prefix='/usr' 
sbindir='bin'
 }
 
 check() {
@@ -50,7 +49,7 @@
 
 package() {
   cd "$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" RAISE_SETFCAP='no' lib='lib32' prefix='/usr' install
+  make DESTDIR="$pkgdir" RAISE_SETFCAP='no' lib='lib32' prefix='/usr' 
sbindir='bin' install
 
   # docs
   install -vDm 644 {CHANGELOG,README} -t "${pkgdir}/usr/share/doc/${pkgname}/"

Deleted: libcap-2.45-makefile.patch
===
--- libcap-2.45-makefile.patch  2021-08-19 19:06:14 UTC (rev 1003864)
+++ libcap-2.45-makefile.patch  2021-08-19 19:31:18 UTC (rev 1003865)
@@ -1,21 +0,0 @@
-diff -ruN a/Make.Rules b/Make.Rules
 a/Make.Rules   2020-11-03 02:38:59.0 +0100
-+++ b/Make.Rules   2020-11-06 16:55:10.149893784 

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

2021-08-19 Thread David Runge via arch-commits
Date: Thursday, August 19, 2021 @ 19:14:18
  Author: dvzrv
Revision: 422374

archrelease: copy trunk to staging-x86_64

Added:
  libcap/repos/staging-x86_64/
  libcap/repos/staging-x86_64/PKGBUILD
(from rev 422373, libcap/trunk/PKGBUILD)
  libcap/repos/staging-x86_64/libcap-2.53-makefile.patch
(from rev 422373, libcap/trunk/libcap-2.53-makefile.patch)
  libcap/repos/staging-x86_64/libcap-2.53-progs_ldflags.patch
(from rev 422373, libcap/trunk/libcap-2.53-progs_ldflags.patch)

-+
 PKGBUILD|   56 +
 libcap-2.53-makefile.patch  |   36 +
 libcap-2.53-progs_ldflags.patch |  101 ++
 3 files changed, 193 insertions(+)

Copied: libcap/repos/staging-x86_64/PKGBUILD (from rev 422373, 
libcap/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2021-08-19 19:14:18 UTC (rev 422374)
@@ -0,0 +1,56 @@
+# Maintainer:  David Runge 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Allan McRae 
+# Contributor: Hugo Doria 
+
+pkgname=libcap
+pkgver=2.53
+pkgrel=1
+pkgdesc='POSIX 1003.1e capabilities'
+arch=('x86_64')
+url="https://sites.google.com/site/fullycapable/;
+license=('GPL2')
+depends=('glibc' 'pam')
+makedepends=('linux-api-headers')
+provides=('libcap.so' 'libpsx.so')
+source=("https://kernel.org/pub/linux/libs/security/linux-privs/${pkgname}2/${pkgname}-$pkgver.tar."{xz,sign}
+"${pkgname}-2.53-makefile.patch"
+"${pkgname}-2.53-progs_ldflags.patch"
+)
+sha512sums=('d83ed9460658fa75a5c118d831534388ba92ddad59944088b0d81a64c86b67ed562c7be4c5a499065ec26b1baab34298da80c8d034b61759c7dd295c2455417c'
+'SKIP'
+
'0df64fd6dcd50fbbb13fea962b169e7946079e58a8f5adf61cf664b08d29832a2d0b39f50441e4cf4adbb5f4f2925df7364eefff16dcb35b71726fb8324413e7'
+
'eee1fa58b85f1a33b85dfcd6d6d3c56b5a1978d10d0af665a34163bfdefc448857d7eeaf41b06aa36d3dc9d1ef124edc653c0a55b477a820c274b96a890a19d2')
+b2sums=('10ebecc930d8491c65c7fcaa3f9ee6a45b6722d1d5be327a891e8bf4532ee8aa0ae664672c15e88bf0f328b4cd8f2e7ea685da44e903781ca7048dbe88c388c6'
+'SKIP'
+
'3105cd035b6b76727e6a634515b8cfa12051f9a78c9d9eba57203928cd52bafd29fd86f7a2234b686c21967952357ba54699e868fb8c1ad8dd4c489b914359d8'
+
'6383899d6fac08e00ce6a4234e3a35eb4adc3c64b64070785397c228c01201eec10dd5ad96d8c12e5a5ceeadab9e65ae516d60f9652a10894894848a5e70b7d7')
+validpgpkeys=(38A644698C69787344E954CE29EE848AE2CCF3F4) # Andrew G. Morgan 

+
+prepare() {
+  cd "$pkgname-$pkgver"
+  # SBINDIR is hardcoded to sbin. set to bin
+  # add CPPFLAGS
+  patch -Np1 -i ../"${pkgname}-2.53-makefile.patch"
+  # add back LDFLAGS, so that executables are built with them
+  patch -Np1 -i ../"${pkgname}-2.53-progs_ldflags.patch"
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  make KERNEL_HEADERS='/usr/include' lib='lib' prefix='/usr' sbindir='bin'
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  make -k test
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" RAISE_SETFCAP='no' lib='lib' prefix='/usr' 
sbindir='bin' install
+  # docs
+  install -vDm 644 {CHANGELOG,README} -t "${pkgdir}/usr/share/doc/${pkgname}/"
+  install -vDm 644 pam_cap/capability.conf \
+-t "$pkgdir/usr/share/doc/$pkgname/examples/"
+}

Copied: libcap/repos/staging-x86_64/libcap-2.53-makefile.patch (from rev 
422373, libcap/trunk/libcap-2.53-makefile.patch)
===
--- staging-x86_64/libcap-2.53-makefile.patch   (rev 0)
+++ staging-x86_64/libcap-2.53-makefile.patch   2021-08-19 19:14:18 UTC (rev 
422374)
@@ -0,0 +1,36 @@
+diff -ruN a/Make.Rules b/Make.Rules
+--- a/Make.Rules   2021-08-16 04:05:04.0 +0200
 b/Make.Rules   2021-08-18 17:50:42.028791561 +0200
+@@ -21,6 +21,14 @@
+ lib=$(shell ldd /usr/bin/ld|egrep "ld-linux|ld.so"|cut -d/ -f2)
+ endif
+ 
++ifndef sbin
++sbin=sbin
++endif
++
++ifdef sbindir
++sbin=$(sbindir)
++endif
++
+ ifdef prefix
+ exec_prefix=$(prefix)
+ lib_prefix=$(exec_prefix)
+@@ -37,7 +45,7 @@
+ # Target directories
+ 
+ MANDIR=$(man_prefix)/man
+-SBINDIR=$(exec_prefix)/sbin
++SBINDIR=$(exec_prefix)/$(sbin)
+ INCDIR=$(inc_prefix)/include
+ LIBDIR=$(lib_prefix)/$(lib)
+ PKGCONFIGDIR=$(LIBDIR)/pkgconfig
+@@ -79,7 +87,7 @@
+ 
+ SYSTEM_HEADERS = /usr/include
+ INCS=$(topdir)/libcap/include/sys/capability.h
+-CFLAGS += -Dlinux $(WARNINGS) $(DEBUG)
++CFLAGS += $(CPPFLAGS) -Dlinux $(WARNINGS) $(DEBUG)
+ INDENT := $(shell if [ -n "$$(which indent 2>/dev/null)" ]; then echo "| 
indent -kr" ; fi)
+ 
+ # SHARED tracks whether or not the SHARED libraries (libcap.so,

Copied: libcap/repos/staging-x86_64/libcap-2.53-progs_ldflags.patch (from rev 
422373, libcap/trunk/libcap-2.53-progs_ldflags.patch)
===
--- 

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

2021-08-19 Thread David Runge via arch-commits
Date: Thursday, August 19, 2021 @ 19:13:54
  Author: dvzrv
Revision: 422373

upgpkg: libcap 2.53-1: Upgrade to 2.53.

As the fix for the executable pam module broke the use of LDFLAGS, add those
back.
Rework the use of CPPFLAGS and circumvention of hardcoding sbin, as those have
also been broken by the recent release.

Added:
  libcap/trunk/libcap-2.53-makefile.patch
  libcap/trunk/libcap-2.53-progs_ldflags.patch
Modified:
  libcap/trunk/PKGBUILD
Deleted:
  libcap/trunk/libcap-2.45-makefile.patch
  libcap/trunk/libcap-2.52-link_pam_cap.patch

-+
 PKGBUILD|   29 +-
 libcap-2.45-makefile.patch  |   21 ---
 libcap-2.52-link_pam_cap.patch  |   33 
 libcap-2.53-makefile.patch  |   36 +
 libcap-2.53-progs_ldflags.patch |  101 ++
 5 files changed, 151 insertions(+), 69 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-08-19 18:28:15 UTC (rev 422372)
+++ PKGBUILD2021-08-19 19:13:54 UTC (rev 422373)
@@ -4,7 +4,7 @@
 # Contributor: Hugo Doria 
 
 pkgname=libcap
-pkgver=2.52
+pkgver=2.53
 pkgrel=1
 pkgdesc='POSIX 1003.1e capabilities'
 arch=('x86_64')
@@ -14,17 +14,17 @@
 makedepends=('linux-api-headers')
 provides=('libcap.so' 'libpsx.so')
 
source=("https://kernel.org/pub/linux/libs/security/linux-privs/${pkgname}2/${pkgname}-$pkgver.tar."{xz,sign}
-"${pkgname}-2.45-makefile.patch"
-"${pkgname}-2.52-link_pam_cap.patch"
+"${pkgname}-2.53-makefile.patch"
+"${pkgname}-2.53-progs_ldflags.patch"
 )
-sha512sums=('95d9e0f81fd955c42a0f299163a4402f00e9e7a2b392dfbabe613abea4babba2730576e76c9b612665a0bb8bd88aa98bf28ea3eb5582b5c06cd1137594a59893'
+sha512sums=('d83ed9460658fa75a5c118d831534388ba92ddad59944088b0d81a64c86b67ed562c7be4c5a499065ec26b1baab34298da80c8d034b61759c7dd295c2455417c'
 'SKIP'
-
'4f613f83198dfccb8b79e1b2c8764657a85300cb166d633d86b87f46567d51fa9395387caf33e82a8718f19e9a1fc65c11e7b6f63c3c4cde1b2a27f70671ec07'
-
'52256a9d79a7beb8f82312e94032426201b45e105dc04274f4589c39003546e0b41c2d8b0a7c1a9a44a7560e25e1f1455ad0a89527fca172f97478935afeb1f3')
-b2sums=('0696ae00a485df019f5441efe1d71676ddf294f1116e7fc3f352ad0595f9d4830f2e4fac1f98353016de36a4866f9d018f53419970ccd114c6df0faa556bcea3'
+
'0df64fd6dcd50fbbb13fea962b169e7946079e58a8f5adf61cf664b08d29832a2d0b39f50441e4cf4adbb5f4f2925df7364eefff16dcb35b71726fb8324413e7'
+
'eee1fa58b85f1a33b85dfcd6d6d3c56b5a1978d10d0af665a34163bfdefc448857d7eeaf41b06aa36d3dc9d1ef124edc653c0a55b477a820c274b96a890a19d2')
+b2sums=('10ebecc930d8491c65c7fcaa3f9ee6a45b6722d1d5be327a891e8bf4532ee8aa0ae664672c15e88bf0f328b4cd8f2e7ea685da44e903781ca7048dbe88c388c6'
 'SKIP'
-
'6f50d5a03c3532e6e50506cd878b1c9ca5cee5f1758f9318d4cb5d1e319cbe5f31210ba46a81b1af30730e2329aed7921c11f1a468a596a3f210972ca0da9d64'
-
'b734ffa08cc91b69d3af7700b094c8803db65d6d72d9d0ff6e736e9b8cea8f65f63d452ddf4500e7d538b72bafee16d9f43b6231d316f914af724fdbb987a081')
+
'3105cd035b6b76727e6a634515b8cfa12051f9a78c9d9eba57203928cd52bafd29fd86f7a2234b686c21967952357ba54699e868fb8c1ad8dd4c489b914359d8'
+
'6383899d6fac08e00ce6a4234e3a35eb4adc3c64b64070785397c228c01201eec10dd5ad96d8c12e5a5ceeadab9e65ae516d60f9652a10894894848a5e70b7d7')
 validpgpkeys=(38A644698C69787344E954CE29EE848AE2CCF3F4) # Andrew G. Morgan 

 
 prepare() {
@@ -31,15 +31,14 @@
   cd "$pkgname-$pkgver"
   # SBINDIR is hardcoded to sbin. set to bin
   # add CPPFLAGS
-  patch -Np1 -i ../"${pkgname}-2.45-makefile.patch"
-  # fix issue with pam_cap.so not linking against libpam.so:
-  # https://bugzilla.kernel.org/show_bug.cgi?id=214023
-  patch -Np1 -i ../"${pkgname}-2.52-link_pam_cap.patch"
+  patch -Np1 -i ../"${pkgname}-2.53-makefile.patch"
+  # add back LDFLAGS, so that executables are built with them
+  patch -Np1 -i ../"${pkgname}-2.53-progs_ldflags.patch"
 }
 
 build() {
   cd "$pkgname-$pkgver"
-  make KERNEL_HEADERS='/usr/include' lib='lib' prefix='/usr'
+  make KERNEL_HEADERS='/usr/include' lib='lib' prefix='/usr' sbindir='bin'
 }
 
 check() {
@@ -49,7 +48,7 @@
 
 package() {
   cd "$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" RAISE_SETFCAP='no' lib='lib' prefix='/usr' install
+  make DESTDIR="$pkgdir" RAISE_SETFCAP='no' lib='lib' prefix='/usr' 
sbindir='bin' install
   # docs
   install -vDm 644 {CHANGELOG,README} -t "${pkgdir}/usr/share/doc/${pkgname}/"
   install -vDm 644 pam_cap/capability.conf \

Deleted: libcap-2.45-makefile.patch
===
--- libcap-2.45-makefile.patch  2021-08-19 18:28:15 UTC (rev 422372)
+++ libcap-2.45-makefile.patch  2021-08-19 19:13:54 UTC (rev 422373)
@@ -1,21 +0,0 @@
-diff -ruN a/Make.Rules b/Make.Rules
 a/Make.Rules   2020-11-03 02:38:59.0 +0100
-+++ b/Make.Rules   2020-11-06 16:55:10.149893784 +0100
-@@ -37,7 

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

2021-08-19 Thread Sergej Pupykin via arch-commits
Date: Thursday, August 19, 2021 @ 19:06:14
  Author: spupykin
Revision: 1003864

archrelease: copy trunk to community-x86_64

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

---+
 PKGBUILD  |  110 +++-
 conf-smbnetfs |2 
 smbnetfs.install  |   38 ++---
 smbnetfs.service  |   28 ++---
 smbnetfs.sysusers |1 
 smbnetfs.tmpfiles |3 +
 6 files changed, 92 insertions(+), 90 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-19 19:05:57 UTC (rev 1003863)
+++ PKGBUILD2021-08-19 19:06:14 UTC (rev 1003864)
@@ -1,51 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Contributor: Sergej Pupykin 
-
-pkgname=smbnetfs
-pkgver=0.6.3
-pkgrel=1
-pkgdesc="small C program that mounts Microsoft network neighborhood in single 
directory."
-arch=('x86_64')
-url="http://smbnetfs.sourceforge.net/;
-license=('GPL')
-depends=('fuse2' 'smbclient')
-backup=('etc/smbnetfs/.smb/smb.conf'
-   'etc/smbnetfs/.smb/smbnetfs.conf'
-   'etc/smbnetfs/.smb/smbnetfs.auth'
-   'etc/smbnetfs/.smb/smbnetfs.host')
-install=smbnetfs.install
-options=(docs)
-source=(https://downloads.sourceforge.net/smbnetfs/$pkgname-$pkgver.tar.bz2
-   conf-smbnetfs
-   smbnetfs.service)
-sha256sums=('eac37b9769fbe9c3f4baf3eb64c61a6b59ad4f2aa05dfddcba5a1ac4adf4d560'
-'ca3b686c37fe77193e8df86efcaadb8fe809dfaa8cd62effde6b038af07ea226'
-'9a06d4d1ffec3c2dd9bff09fa92fb3e9c0aa9569be90a61bb51f04f852b2d741')
-
-prepare() {
-  cd "$srcdir"/$pkgname-$pkgver
-  sed -i '/xattr.h/d' src/function.c
-}
-
-build() {
-  cd "$srcdir"/$pkgname-$pkgver
-  sed -i 's|libsmbclient.h|samba-4.0/libsmbclient.h|g' \
-src/smb_conn_srv.c src/smb_conn_proto.h src/function.c src/main.c 
src/event.c
-  [ $NOEXTRACT -eq 1 ] || ./configure --prefix=/usr 
--docdir=/usr/share/doc/smbnetfs --with-gnome-keyring=no
-  make
-}
-
-package() {
-  cd "$srcdir"/$pkgname-$pkgver
-
-  make DESTDIR="$pkgdir" install
-
-  mv "$pkgdir"/usr/share/doc/smbnetfs* "$pkgdir"/usr/share/doc/smbnetfs
-
-  mkdir -p "$pkgdir"/etc/smbnetfs/.smb
-  install -m0644 "$srcdir"/$pkgname-$pkgver/conf/* "$pkgdir"/etc/smbnetfs/.smb/
-  install -Dm0644 "$srcdir"/$pkgname-$pkgver/README 
"$pkgdir"/usr/share/doc/smbnetfs/README
-  install -Dm0644 "$srcdir"/conf-smbnetfs "$pkgdir"/etc/conf.d/smbnetfs
-  install -Dm0644 "$srcdir"/smbnetfs.service 
"$pkgdir"/usr/lib/systemd/system/smbnetfs.service
-  touch "$pkgdir"/etc/smbnetfs/.smb/smb.conf
-}

Copied: smbnetfs/repos/community-x86_64/PKGBUILD (from rev 1003863, 
smbnetfs/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-19 19:06:14 UTC (rev 1003864)
@@ -0,0 +1,59 @@
+# Maintainer: Sergej Pupykin 
+# Contributor: Sergej Pupykin 
+
+pkgname=smbnetfs
+pkgver=0.6.3
+pkgrel=2
+pkgdesc="small C program that mounts Microsoft network neighborhood in single 
directory."
+arch=('x86_64')
+url="http://smbnetfs.sourceforge.net/;
+license=('GPL')
+depends=('fuse2' 'smbclient')
+backup=('etc/smbnetfs/.smb/smb.conf'
+   'etc/smbnetfs/.smb/smbnetfs.conf'
+   'etc/smbnetfs/.smb/smbnetfs.auth'
+   'etc/smbnetfs/.smb/smbnetfs.host')
+install=smbnetfs.install
+options=(docs)
+source=(https://downloads.sourceforge.net/smbnetfs/$pkgname-$pkgver.tar.bz2
+   conf-smbnetfs
+   smbnetfs.service
+   smbnetfs.sysusers
+  smbnetfs.tmpfiles)
+sha256sums=('eac37b9769fbe9c3f4baf3eb64c61a6b59ad4f2aa05dfddcba5a1ac4adf4d560'
+'ca3b686c37fe77193e8df86efcaadb8fe809dfaa8cd62effde6b038af07ea226'
+'f78368434d9abc56cd333ec157a7ad82a6fa54555e1f5b786e8294b394be0b7b'
+'142865e5292756498c644a7fd7bf00ebe689cb3c712e582fa0f10fac105b6ab1'
+'79f2119a03a638e28451e01bd858a633d12b39dc3632822057feb0caa26db1f7')
+
+prepare() {
+  cd "$srcdir"/$pkgname-$pkgver
+  sed -i '/xattr.h/d' src/function.c
+}
+
+build() {
+  cd "$srcdir"/$pkgname-$pkgver
+  sed -i 's|libsmbclient.h|samba-4.0/libsmbclient.h|g' \
+src/smb_conn_srv.c src/smb_conn_proto.h src/function.c src/main.c 

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

2021-08-19 Thread Sergej Pupykin via arch-commits
Date: Thursday, August 19, 2021 @ 19:05:57
  Author: spupykin
Revision: 1003863

upgpkg: smbnetfs 0.6.3-2
FS#71867 - [smbnetfs] gencache_init: Failed to create directory: //.cache/samba 
- Permission denied

Added:
  smbnetfs/trunk/smbnetfs.sysusers
  smbnetfs/trunk/smbnetfs.tmpfiles
Modified:
  smbnetfs/trunk/PKGBUILD
  smbnetfs/trunk/smbnetfs.install
  smbnetfs/trunk/smbnetfs.service

---+
 PKGBUILD  |   14 +++---
 smbnetfs.install  |   10 --
 smbnetfs.service  |4 ++--
 smbnetfs.sysusers |1 +
 smbnetfs.tmpfiles |3 +++
 5 files changed, 17 insertions(+), 15 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-08-19 18:54:05 UTC (rev 1003862)
+++ PKGBUILD2021-08-19 19:05:57 UTC (rev 1003863)
@@ -3,7 +3,7 @@
 
 pkgname=smbnetfs
 pkgver=0.6.3
-pkgrel=1
+pkgrel=2
 pkgdesc="small C program that mounts Microsoft network neighborhood in single 
directory."
 arch=('x86_64')
 url="http://smbnetfs.sourceforge.net/;
@@ -17,10 +17,14 @@
 options=(docs)
 source=(https://downloads.sourceforge.net/smbnetfs/$pkgname-$pkgver.tar.bz2
conf-smbnetfs
-   smbnetfs.service)
+   smbnetfs.service
+   smbnetfs.sysusers
+  smbnetfs.tmpfiles)
 sha256sums=('eac37b9769fbe9c3f4baf3eb64c61a6b59ad4f2aa05dfddcba5a1ac4adf4d560'
 'ca3b686c37fe77193e8df86efcaadb8fe809dfaa8cd62effde6b038af07ea226'
-'9a06d4d1ffec3c2dd9bff09fa92fb3e9c0aa9569be90a61bb51f04f852b2d741')
+'f78368434d9abc56cd333ec157a7ad82a6fa54555e1f5b786e8294b394be0b7b'
+'142865e5292756498c644a7fd7bf00ebe689cb3c712e582fa0f10fac105b6ab1'
+'79f2119a03a638e28451e01bd858a633d12b39dc3632822057feb0caa26db1f7')
 
 prepare() {
   cd "$srcdir"/$pkgname-$pkgver
@@ -43,6 +47,10 @@
   mv "$pkgdir"/usr/share/doc/smbnetfs* "$pkgdir"/usr/share/doc/smbnetfs
 
   mkdir -p "$pkgdir"/etc/smbnetfs/.smb
+  install -Dm644 "$srcdir/$pkgname.sysusers" \
+"$pkgdir/usr/lib/sysusers.d/$pkgname.conf"
+  install -Dm644 "$srcdir/$pkgname.tmpfiles" \
+"$pkgdir/usr/lib/tmpfiles.d/$pkgname.conf"
   install -m0644 "$srcdir"/$pkgname-$pkgver/conf/* "$pkgdir"/etc/smbnetfs/.smb/
   install -Dm0644 "$srcdir"/$pkgname-$pkgver/README 
"$pkgdir"/usr/share/doc/smbnetfs/README
   install -Dm0644 "$srcdir"/conf-smbnetfs "$pkgdir"/etc/conf.d/smbnetfs

Modified: smbnetfs.install
===
--- smbnetfs.install2021-08-19 18:54:05 UTC (rev 1003862)
+++ smbnetfs.install2021-08-19 19:05:57 UTC (rev 1003863)
@@ -1,11 +1,6 @@
 post_install() {
   echo "-- To use rc-script you should:"
   echo "--   * set user_allow_other option in /etc/fuse.conf"
-
-  chown -R nobody.nobody /etc/smbnetfs/.smb && \
-  mkdir -p /mnt/smbnet && \
-  chown nobody.nobody /mnt/smbnet && \
-  chmod 0777 /mnt/smbnet
 }
 
 pre_upgrade() {
@@ -16,9 +11,4 @@
 post_upgrade() {
   echo "-- You should set user_allow_other option in /etc/fuse.conf to use 
rc-script"
   echo "--   * set user_allow_other option in /etc/fuse.conf"
-
-  chown -R nobody.nobody /etc/smbnetfs/.smb && \
-  mkdir -p /mnt/smbnet && \
-  chown nobody.nobody /mnt/smbnet && \
-  chmod 0777 /mnt/smbnet
 }

Modified: smbnetfs.service
===
--- smbnetfs.service2021-08-19 18:54:05 UTC (rev 1003862)
+++ smbnetfs.service2021-08-19 19:05:57 UTC (rev 1003863)
@@ -4,9 +4,9 @@
 After=network-online.target
 
 [Service]
-Environment=HOME=/etc/smbnetfs SMBNETFS_MOUNT_POINT=/mnt/smbnet
+Environment=SMBNETFS_MOUNT_POINT=/mnt/smbnet
 EnvironmentFile=/etc/conf.d/smbnetfs
-User=nobody
+User=smbnetfs
 ExecStart=/usr/bin/smbnetfs -f -o allow_other $SMBNETFS_MOUNT_POINT
 ExecStop=/bin/fusermount -u $SMBNETFS_MOUNT_POINT
 

Added: smbnetfs.sysusers
===
--- smbnetfs.sysusers   (rev 0)
+++ smbnetfs.sysusers   2021-08-19 19:05:57 UTC (rev 1003863)
@@ -0,0 +1 @@
+u smbnetfs - "smbnetfs" /etc/smbnetfs

Added: smbnetfs.tmpfiles
===
--- smbnetfs.tmpfiles   (rev 0)
+++ smbnetfs.tmpfiles   2021-08-19 19:05:57 UTC (rev 1003863)
@@ -0,0 +1,3 @@
+d /etc/smbnetfs/.smb 0644 smbnetfs nobody
+d /etc/smbnetfs/.cache/samba 0644 smbnetfs nobody
+d /mnt/smbnet 0777 smbnetfs nobody



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

2021-08-19 Thread Massimiliano Torromeo via arch-commits
Date: Thursday, August 19, 2021 @ 18:54:05
  Author: mtorromeo
Revision: 1003862

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-19 18:53:52 UTC (rev 1003861)
+++ PKGBUILD2021-08-19 18:54:05 UTC (rev 1003862)
@@ -1,39 +0,0 @@
-# Maintainer: Levente Polyak 
-# Maintainer: Massimiliano Torromeo 
-
-pkgname=python-ujson
-_pkgname=ultrajson
-pkgver=4.0.2
-pkgrel=1
-pkgdesc="Ultra fast JSON encoder and decoder for Python"
-url="https://github.com/ultrajson/ultrajson;
-arch=('x86_64')
-license=('BSD')
-depends=('python')
-makedepends=('python-setuptools-scm' 'python-pip')
-checkdepends=('python-six' 'python-pytest')
-source=(https://github.com/ultrajson/ultrajson/archive/$pkgver/$pkgname-$pkgver.tar.gz)
-sha512sums=('8a33a1e26721d72ead950dcb5bbff7fa6775ee81b01348a6fe49f8307f09d0f818b7283110ed7838d6d35ee421fcd284d0a23d3a2c6faf93db1cf0aedbf1934d')
-b2sums=('1c7a0548659283eb936080d42b6d3a2c55c1547efc27ddcf827b54bfe8813052e3085e6d0680ce3f511e1675d8cb09572d8c11cab2c78bf93021a07fc5ab0cb8')
-
-export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
-
-build() {
-  cd ${_pkgname}-${pkgver}
-  python setup.py build
-}
-
-check() {
-  cd ${_pkgname}-${pkgver}
-  local PYTHONVERSION="$(python -c 'import sys; 
print("{}.{}".format(sys.version_info.major, sys.version_info.minor))')"
-  PYTHONPATH="build/lib.linux-${CARCH}-${PYTHONVERSION}" pytest
-}
-
-package() {
-  cd ${_pkgname}-${pkgver}
-  python setup.py install --skip-build -O1 --root="${pkgdir}"
-  install -Dm 644 LICENSE.txt -t "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -Dm 644 README.rst -t "${pkgdir}/usr/share/doc/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: python-ujson/repos/community-x86_64/PKGBUILD (from rev 1003861, 
python-ujson/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-19 18:54:05 UTC (rev 1003862)
@@ -0,0 +1,39 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Massimiliano Torromeo 
+
+pkgname=python-ujson
+_pkgname=ultrajson
+pkgver=4.1.0
+pkgrel=1
+pkgdesc="Ultra fast JSON encoder and decoder for Python"
+url="https://github.com/ultrajson/ultrajson;
+arch=('x86_64')
+license=('BSD')
+depends=('python')
+makedepends=('python-setuptools-scm' 'python-pip')
+checkdepends=('python-six' 'python-pytest')
+source=(https://github.com/ultrajson/ultrajson/archive/$pkgver/$pkgname-$pkgver.tar.gz)
+sha512sums=('0796b085695e85f2edb664e237b0aa8ba61789164a43555e484e034017d93f798cfd2933bf30bd18ce1ded936e3d52e7beb8507b85cf31b1ca3c8339864147c4')
+b2sums=('e36e5415ec85d7d16b1ff22681eb01fdd1a4c6905912ae6c0715f7d2b261a1ae7fa57109918bbe2ea2586c52acd9434e25005f1d201c75d5ed05b9c35ca608b7')
+
+export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
+
+build() {
+  cd ${_pkgname}-${pkgver}
+  python setup.py build
+}
+
+check() {
+  cd ${_pkgname}-${pkgver}
+  local PYTHONVERSION="$(python -c 'import sys; 
print("{}.{}".format(sys.version_info.major, sys.version_info.minor))')"
+  PYTHONPATH="build/lib.linux-${CARCH}-${PYTHONVERSION}" pytest
+}
+
+package() {
+  cd ${_pkgname}-${pkgver}
+  python setup.py install --skip-build -O1 --root="${pkgdir}"
+  install -Dm 644 LICENSE.txt -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -Dm 644 README.rst -t "${pkgdir}/usr/share/doc/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:



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

2021-08-19 Thread Massimiliano Torromeo via arch-commits
Date: Thursday, August 19, 2021 @ 18:53:52
  Author: mtorromeo
Revision: 1003861

upgpkg: python-ujson 4.1.0-1

Modified:
  python-ujson/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-19 18:41:04 UTC (rev 1003860)
+++ PKGBUILD2021-08-19 18:53:52 UTC (rev 1003861)
@@ -3,7 +3,7 @@
 
 pkgname=python-ujson
 _pkgname=ultrajson
-pkgver=4.0.2
+pkgver=4.1.0
 pkgrel=1
 pkgdesc="Ultra fast JSON encoder and decoder for Python"
 url="https://github.com/ultrajson/ultrajson;
@@ -13,8 +13,8 @@
 makedepends=('python-setuptools-scm' 'python-pip')
 checkdepends=('python-six' 'python-pytest')
 
source=(https://github.com/ultrajson/ultrajson/archive/$pkgver/$pkgname-$pkgver.tar.gz)
-sha512sums=('8a33a1e26721d72ead950dcb5bbff7fa6775ee81b01348a6fe49f8307f09d0f818b7283110ed7838d6d35ee421fcd284d0a23d3a2c6faf93db1cf0aedbf1934d')
-b2sums=('1c7a0548659283eb936080d42b6d3a2c55c1547efc27ddcf827b54bfe8813052e3085e6d0680ce3f511e1675d8cb09572d8c11cab2c78bf93021a07fc5ab0cb8')
+sha512sums=('0796b085695e85f2edb664e237b0aa8ba61789164a43555e484e034017d93f798cfd2933bf30bd18ce1ded936e3d52e7beb8507b85cf31b1ca3c8339864147c4')
+b2sums=('e36e5415ec85d7d16b1ff22681eb01fdd1a4c6905912ae6c0715f7d2b261a1ae7fa57109918bbe2ea2586c52acd9434e25005f1d201c75d5ed05b9c35ca608b7')
 
 export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
 



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

2021-08-19 Thread Felix Yan via arch-commits
Date: Thursday, August 19, 2021 @ 18:41:04
  Author: felixonmars
Revision: 1003860

archrelease: copy trunk to community-any

Added:
  npm/repos/community-any/PKGBUILD
(from rev 1003859, npm/trunk/PKGBUILD)
Deleted:
  npm/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-08-19 18:40:57 UTC (rev 1003859)
+++ PKGBUILD2021-08-19 18:41:04 UTC (rev 1003860)
@@ -1,64 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=npm
-pkgver=7.20.6
-pkgrel=1
-pkgdesc='A package manager for javascript'
-arch=('any')
-url='https://www.npmjs.com/'
-license=('custom:Artistic')
-depends=('nodejs' 'node-gyp' 'nodejs-nopt' 'semver')
-# libgl: TODO
-# libvips: for sharp (doc build) (disabled as current version of gatsby 
imports a broken sharp)
-# libxi: for cwebp (doc build)
-makedepends=('libgl' 'libxi' 'marked' 'marked-man' 'procps-ng' 'python')
-options=('!emptydirs')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/npm/cli/archive/v$pkgver.tar.gz;)
-sha512sums=('cf34153174ff5439273e83c47a5da0b9fe447e3ca28c6e299dcaaf1ce8beceb737264ed6b64222f6c1b526b1c496e680a83e733fbc42e66138ffb842e945d8df')
-
-prepare() {
-  cd cli-$pkgver
-  mkdir -p node_modules/.bin
-  ln -sf /usr/bin/marked{,-man} node_modules/.bin/
-
-  # Use local marked/marked-man
-  sed -i 's|node bin/npm-cli.js install marked|true |' Makefile
-
-  # Don't build twice
-  sed -i 's/install: all/install:/' Makefile
-
-  mkdir -p man/man1
-}
-
-build() {
-  cd cli-$pkgver
-  NODE_PATH=/usr/lib/node_modules make
-}
-
-package() {
-  cd cli-$pkgver
-  node bin/npm-cli.js install -g -f --prefix="$pkgdir/usr" $(node 
bin/npm-cli.js pack | tail -1)
-
-  # Non-deterministic race in npm gives 777 permissions to random directories.
-  # See https://github.com/npm/npm/issues/9359 for details.
-  chmod -R u=rwX,go=rX "$pkgdir"
-
-  # npm installs package.json owned by build user
-  # https://bugs.archlinux.org/task/63396
-  chown -R root:root "$pkgdir"
-
-  # Experimental dedup
-  _npmdir="$pkgdir"/usr/lib/node_modules/$pkgname
-  rm -r "$_npmdir"/node_modules/{,.bin/}semver
-  rm -r "$_npmdir"/node_modules/{,.bin/}node-gyp
-  rm -r "$_npmdir"/node_modules/{,.bin/}nopt
-  sed -i 
's|../../node_modules/node-gyp/bin/node-gyp.js|../../../node-gyp/bin/node-gyp.js|'
 \
-"$_npmdir"/bin/node-gyp-bin/node-gyp
-
-  install -dm755 "$pkgdir"/usr/share/bash-completion/completions
-  node "$srcdir"/cli-$pkgver/bin/npm-cli.js completion > 
"$pkgdir"/usr/share/bash-completion/completions/npm
-
-  mv "$pkgdir"/usr/lib/node_modules/npm/man "$pkgdir"/usr/share/
-
-  install -Dm644 "$srcdir"/cli-$pkgver/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: npm/repos/community-any/PKGBUILD (from rev 1003859, npm/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-08-19 18:41:04 UTC (rev 1003860)
@@ -0,0 +1,64 @@
+# Maintainer: Felix Yan 
+
+pkgname=npm
+pkgver=7.21.0
+pkgrel=1
+pkgdesc='A package manager for javascript'
+arch=('any')
+url='https://www.npmjs.com/'
+license=('custom:Artistic')
+depends=('nodejs' 'node-gyp' 'nodejs-nopt' 'semver')
+# libgl: TODO
+# libvips: for sharp (doc build) (disabled as current version of gatsby 
imports a broken sharp)
+# libxi: for cwebp (doc build)
+makedepends=('libgl' 'libxi' 'marked' 'marked-man' 'procps-ng' 'python')
+options=('!emptydirs')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/npm/cli/archive/v$pkgver.tar.gz;)
+sha512sums=('e56f2faf620583271ca43091476353b9763ea936022ac0b5f730a2f8210407171babdce2d896dc87f63133646d9f072d980351e364620c204dd14c1eb918921d')
+
+prepare() {
+  cd cli-$pkgver
+  mkdir -p node_modules/.bin
+  ln -sf /usr/bin/marked{,-man} node_modules/.bin/
+
+  # Use local marked/marked-man
+  sed -i 's|node bin/npm-cli.js install marked|true |' Makefile
+
+  # Don't build twice
+  sed -i 's/install: all/install:/' Makefile
+
+  mkdir -p man/man1
+}
+
+build() {
+  cd cli-$pkgver
+  NODE_PATH=/usr/lib/node_modules make
+}
+
+package() {
+  cd cli-$pkgver
+  node bin/npm-cli.js install -g -f --prefix="$pkgdir/usr" $(node 
bin/npm-cli.js pack | tail -1)
+
+  # Non-deterministic race in npm gives 777 permissions to random directories.
+  # See https://github.com/npm/npm/issues/9359 for details.
+  chmod -R u=rwX,go=rX "$pkgdir"
+
+  # npm installs package.json owned by build user
+  # https://bugs.archlinux.org/task/63396
+  chown -R root:root "$pkgdir"
+
+  # Experimental dedup
+  _npmdir="$pkgdir"/usr/lib/node_modules/$pkgname
+  rm -r "$_npmdir"/node_modules/{,.bin/}semver
+  rm -r "$_npmdir"/node_modules/{,.bin/}node-gyp
+  rm -r "$_npmdir"/node_modules/{,.bin/}nopt
+  sed -i 
's|../../node_modules/node-gyp/bin/node-gyp.js|../../../node-gyp/bin/node-gyp.js|'
 \
+

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

2021-08-19 Thread Felix Yan via arch-commits
Date: Thursday, August 19, 2021 @ 18:40:57
  Author: felixonmars
Revision: 1003859

upgpkg: npm 7.21.0-1

Modified:
  npm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-08-19 17:36:38 UTC (rev 1003858)
+++ PKGBUILD2021-08-19 18:40:57 UTC (rev 1003859)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=npm
-pkgver=7.20.6
+pkgver=7.21.0
 pkgrel=1
 pkgdesc='A package manager for javascript'
 arch=('any')
@@ -14,7 +14,7 @@
 makedepends=('libgl' 'libxi' 'marked' 'marked-man' 'procps-ng' 'python')
 options=('!emptydirs')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/npm/cli/archive/v$pkgver.tar.gz;)
-sha512sums=('cf34153174ff5439273e83c47a5da0b9fe447e3ca28c6e299dcaaf1ce8beceb737264ed6b64222f6c1b526b1c496e680a83e733fbc42e66138ffb842e945d8df')
+sha512sums=('e56f2faf620583271ca43091476353b9763ea936022ac0b5f730a2f8210407171babdce2d896dc87f63133646d9f072d980351e364620c204dd14c1eb918921d')
 
 prepare() {
   cd cli-$pkgver



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

2021-08-19 Thread Felix Yan via arch-commits
Date: Thursday, August 19, 2021 @ 18:28:15
  Author: felixonmars
Revision: 422372

archrelease: copy trunk to testing-x86_64

Added:
  libfbclient/repos/testing-x86_64/
  libfbclient/repos/testing-x86_64/LICENSE
(from rev 422371, libfbclient/trunk/LICENSE)
  libfbclient/repos/testing-x86_64/PKGBUILD
(from rev 422371, libfbclient/trunk/PKGBUILD)
  libfbclient/repos/testing-x86_64/shared-re2.patch
(from rev 422371, libfbclient/trunk/shared-re2.patch)
  libfbclient/repos/testing-x86_64/update-re2.patch
(from rev 422371, libfbclient/trunk/update-re2.patch)

--+
 LICENSE  |   44 
 PKGBUILD |   58 +
 shared-re2.patch |   27 
 update-re2.patch |   28 +
 4 files changed, 157 insertions(+)

Copied: libfbclient/repos/testing-x86_64/LICENSE (from rev 422371, 
libfbclient/trunk/LICENSE)
===
--- testing-x86_64/LICENSE  (rev 0)
+++ testing-x86_64/LICENSE  2021-08-19 18:28:15 UTC (rev 422372)
@@ -0,0 +1,44 @@
+
+LICENSES
+
+
+The applicable and approved licenses for the source files
+of the Firebird RDBMS project are:
+
+  1) InterBase Public License (IPL), version 1.0
+ http://bdn.borland.com/article/0,1410,30198,00.html
+
+  2) Initial Developer's Public License (IDPL), version 1.0
+ http://www.ibphoenix.com/main.nfs?a=ibphoenix=ibp_idpl
+
+The IPL is copyright of Borland Corp., the other licenses are copyright
+by the source code authors and contributors.
+
+
+USAGE RULES
+---
+
+1) The source code which was released under the IPL must keep this license.
+   All modifications / adaptations of this code are still subjects of the IPL.
+
+2) The files that are derived from the IPL covered code, must also keep
+   this license. It means that if any new file contains some code covered by
+   the IPL, then this file should be released under the IPL too.
+
+3) The new files developed by the members of the Firebird project should
+   be released under the IDPL.
+
+4) The new files contributed by people who are not members of the Firebird
+   project should follow the rule #3. If an author (initial developer) doesn't
+   specify the license to be used, the person who applies the contributed code
+   to the CVS tree (a committer) becomes responsible for the license assigned
+   to the contributed code.
+
+5) Every non-binary file that exists in the CVS tree, should have a header
+   section which describes the license this code is released under. If a file
+   contains no header, it means that this code is freeware and nobody owns the
+   appropriate copyrights.
+
+
+You may find the exhibits for the approved licenses in /doc/license directory
+of the CVS tree.

Copied: libfbclient/repos/testing-x86_64/PKGBUILD (from rev 422371, 
libfbclient/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2021-08-19 18:28:15 UTC (rev 422372)
@@ -0,0 +1,58 @@
+# Maintainer: Felix Yan 
+# Contributor: Carlier Laurent 
+# Contributor: Douglas Soares de Andrade 
+
+pkgname=libfbclient
+pkgver=4.0.0.2496
+pkgrel=1
+pkgdesc="Client library for Firebird"
+arch=('x86_64')
+url="https://www.firebirdsql.org/;
+license=('custom')
+depends=('gcc-libs' 'libtommath')
+makedepends=('editline' 'libtomcrypt' 're2' 'unzip')
+source=(https://github.com/FirebirdSQL/firebird/releases/download/v4.0.0/Firebird-$pkgver-0.tar.xz
+shared-re2.patch update-re2.patch
+LICENSE)
+sha512sums=('110f1e9b245631ba04fb1f3f3fe16209e432157615c5c23046a277f3e6a164a2142c6732e793d9cc6650d65239a0da8bf37a74329134bd006b7d2cb070812bd6'
+
'7d431b6662df6f35ddd4d850de646adc4e10f6963ab5b73595de3de9a4465b5e32d28cebb68934d83e105671505de171924c6ba6539bfa5b98d8be3d7f7fab7f'
+
'eb61d677461c80366d1458e9d98387f139f71fd0f49e3cf538a3656223d61470336d51afdd3d7929593ab8666ccbf95e11cb80275ba8d5588771592b0f70346c'
+
'1e4c24f60d2cdc1a89b52b45f778ed264ae14428a940b0509ca5c50182aed6149b7a6a546e7d08b0f264bafde81a210abe20db204c20db596f5fc2ec205ac37e')
+
+prepare() {
+  patch -d Firebird-$pkgver-0 -p1 < shared-re2.patch
+  patch -d Firebird-$pkgver-0 -p1 < update-re2.patch
+
+  # Ensure system libs are used
+  rm -r Firebird-$pkgver-0/extern/{editline,libtommath,libtomcrypt,zlib}
+}
+
+build() {
+  cd Firebird-$pkgver-0
+
+  ./configure --prefix=/usr \
+--without-fbsbin --without-fbconf --without-fbdoc --without-fbsample \
+--without-fbsample-db --without-fbintl --without-fbmisc --without-fbhelp \
+--without-fbsecure-db --with-fbmsg=/usr/share/firebird --without-fblog \
+--without-fbglock --without-fbplugins --without-fbtzdata 
--with-system-editline
+
+  make
+}
+
+package() {
+  cd Firebird-$pkgver-0
+
+  

[arch-commits] Commit in libfbclient/trunk (3 files)

2021-08-19 Thread Felix Yan via arch-commits
Date: Thursday, August 19, 2021 @ 18:28:04
  Author: felixonmars
Revision: 422371

upgpkg: libfbclient 4.0.0.2496-1

Added:
  libfbclient/trunk/shared-re2.patch
  libfbclient/trunk/update-re2.patch
Modified:
  libfbclient/trunk/PKGBUILD

--+
 PKGBUILD |   24 ++--
 shared-re2.patch |   27 +++
 update-re2.patch |   28 
 3 files changed, 73 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-08-19 17:19:00 UTC (rev 422370)
+++ PKGBUILD2021-08-19 18:28:04 UTC (rev 422371)
@@ -3,7 +3,7 @@
 # Contributor: Douglas Soares de Andrade 
 
 pkgname=libfbclient
-pkgver=3.0.7.33374
+pkgver=4.0.0.2496
 pkgrel=1
 pkgdesc="Client library for Firebird"
 arch=('x86_64')
@@ -10,19 +10,31 @@
 url="https://www.firebirdsql.org/;
 license=('custom')
 depends=('gcc-libs' 'libtommath')
-source=(https://github.com/FirebirdSQL/firebird/releases/download/R3_0_7/Firebird-$pkgver-0.tar.bz2
+makedepends=('editline' 'libtomcrypt' 're2' 'unzip')
+source=(https://github.com/FirebirdSQL/firebird/releases/download/v4.0.0/Firebird-$pkgver-0.tar.xz
+shared-re2.patch update-re2.patch
 LICENSE)
-sha512sums=('ee89cda6d9ace16419515689ed245fbd1bb0e2464bd2d50637e0f474a6aca2e5b86e874ce8bd9714431705a93c038d46de6be1806f0c37d236880a855e725943'
+sha512sums=('110f1e9b245631ba04fb1f3f3fe16209e432157615c5c23046a277f3e6a164a2142c6732e793d9cc6650d65239a0da8bf37a74329134bd006b7d2cb070812bd6'
+
'7d431b6662df6f35ddd4d850de646adc4e10f6963ab5b73595de3de9a4465b5e32d28cebb68934d83e105671505de171924c6ba6539bfa5b98d8be3d7f7fab7f'
+
'eb61d677461c80366d1458e9d98387f139f71fd0f49e3cf538a3656223d61470336d51afdd3d7929593ab8666ccbf95e11cb80275ba8d5588771592b0f70346c'
 
'1e4c24f60d2cdc1a89b52b45f778ed264ae14428a940b0509ca5c50182aed6149b7a6a546e7d08b0f264bafde81a210abe20db204c20db596f5fc2ec205ac37e')
 
+prepare() {
+  patch -d Firebird-$pkgver-0 -p1 < shared-re2.patch
+  patch -d Firebird-$pkgver-0 -p1 < update-re2.patch
+
+  # Ensure system libs are used
+  rm -r Firebird-$pkgver-0/extern/{editline,libtommath,libtomcrypt,zlib}
+}
+
 build() {
   cd Firebird-$pkgver-0
 
-  ./configure --prefix=/usr --without-fbudf \
+  ./configure --prefix=/usr \
 --without-fbsbin --without-fbconf --without-fbdoc --without-fbsample \
 --without-fbsample-db --without-fbintl --without-fbmisc --without-fbhelp \
 --without-fbsecure-db --with-fbmsg=/usr/share/firebird --without-fblog \
---without-fbglock --without-fbplugins
+--without-fbglock --without-fbplugins --without-fbtzdata 
--with-system-editline
 
   make
 }
@@ -33,7 +45,7 @@
   mkdir -p "$pkgdir"/usr/{bin,share/{firebird,licenses/$pkgname}}
 
   cp -R gen/Release/firebird/{lib,include} "$pkgdir"/usr
-  rm -f "$pkgdir"/usr/lib/libedit.a
+  rm -f "$pkgdir"/usr/lib/{libdecFloat.a,libedit.a}
 
   install -m644 gen/Release/firebird/*.msg "$pkgdir"/usr/share/firebird
   install -m755 gen/Release/firebird/bin/fb_config "$pkgdir"/usr/bin

Added: shared-re2.patch
===
--- shared-re2.patch(rev 0)
+++ shared-re2.patch2021-08-19 18:28:04 UTC (rev 422371)
@@ -0,0 +1,27 @@
+diff --git a/builds/posix/Makefile.in b/builds/posix/Makefile.in
+index c7d3336266..8ad766c1a4 100644
+--- a/builds/posix/Makefile.in
 b/builds/posix/Makefile.in
+@@ -170,9 +170,6 @@ external:
+   $(MAKE) -C $(ROOT)/extern/decNumber
+   ln -sf $(ROOT)/extern/decNumber/libdecFloat.a $(LIB)
+ 
+-  CXXFLAGS="-O3 -g -fPIC" $(MAKE) -C $(ROOT)/extern/re2
+-  ln -sf $(ROOT)/extern/re2/obj/libre2.a $(LIB)
+-
+ ifeq ($(TOMMATH_BUILD_FLG),Y)
+   CFLAGS="$(CFLAGS)" $(MAKE) -C $(ROOT)/extern/libtommath -f 
makefile.shared GCC=$(GCC)
+ 
+diff --git a/builds/posix/make.rules b/builds/posix/make.rules
+index 3afd891141..44e9e3754d 100644
+--- a/builds/posix/make.rules
 b/builds/posix/make.rules
+@@ -32,7 +32,7 @@
+ 
+ 
+ # Please don't use compiler/platform specific flags here - nmcc 02-Nov-2002
+-WFLAGS =-I$(SRC_ROOT)/include/gen -I$(SRC_ROOT)/include -I$(ROOT)/extern/re2 
$(CPPFLAGS) $(LTCSOURCE)
++WFLAGS =-I$(SRC_ROOT)/include/gen -I$(SRC_ROOT)/include $(CPPFLAGS) 
$(LTCSOURCE)
+ 
+ ifeq ($(TOMMATH_BUILD_FLG),Y)
+   WFLAGS += -I$(TOMMATH_INC)

Added: update-re2.patch
===
--- update-re2.patch(rev 0)
+++ update-re2.patch2021-08-19 18:28:04 UTC (rev 422371)
@@ -0,0 +1,28 @@
+commit 512319738fcf9819f375f20441f09a7b1dff5168
+Author: Adriano dos Santos Fernandes 
+Date:   Wed May 26 10:41:25 2021 -0300
+
+Replace removed RE2 method.
+
+diff --git a/src/common/SimilarToRegex.cpp b/src/common/SimilarToRegex.cpp
+index 3a62b245e3..0b6e533018 100644
+--- a/src/common/SimilarToRegex.cpp
 b/src/common/SimilarToRegex.cpp
+@@ 

  1   2   3   >