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

2022-05-06 Thread George Rawlinson via arch-commits
Date: Saturday, May 7, 2022 @ 05:15:04
  Author: grawlinson
Revision: 1196122

archrelease: copy trunk to community-testing-x86_64

Added:
  criu/repos/community-testing-x86_64/
  criu/repos/community-testing-x86_64/PKGBUILD
(from rev 1196121, criu/trunk/PKGBUILD)
  criu/repos/community-testing-x86_64/fix-amdgpu-install.patch
(from rev 1196121, criu/trunk/fix-amdgpu-install.patch)

--+
 PKGBUILD |   68 +
 fix-amdgpu-install.patch |   22 ++
 2 files changed, 90 insertions(+)

Copied: criu/repos/community-testing-x86_64/PKGBUILD (from rev 1196121, 
criu/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2022-05-07 05:15:04 UTC (rev 1196122)
@@ -0,0 +1,68 @@
+# Maintainer: George Rawlinson 
+# Contributor: Pavel Borzenkov 
+# Contributor: aksr 
+
+pkgname=criu
+pkgver=3.17
+pkgrel=1
+pkgdesc='Utilities to checkpoint and restore processes in userspace'
+arch=('x86_64')
+url='https://criu.org'
+license=('GPL2')
+depends=(
+  'libbsd'
+  'libnet'
+  'libnl'
+  'protobuf-c'
+  'python-protobuf'
+  'gnutls'
+  'nftables'
+)
+makedepends=(
+  'git'
+  'xmlto'
+  'asciidoc'
+)
+options=('!buildflags' '!lto')
+_commit='4f8f295e57e68740699479d12c1ad251e6dd859f'
+source=(
+  "$pkgname::git+https://github.com/checkpoint-restore/criu#commit=$_commit;
+  'fix-amdgpu-install.patch'
+)
+b2sums=('SKIP'
+
'4d5e7ed02257757f57c0f5c965ebbf3bf0ca5db85d15ac983b861aac8024513ff6f8f9b971bc4c9c0cbd26ee2797116dc3aacc7acf7e7fd04a0eeb7015dc2e83')
+
+pkgver() {
+  cd "$pkgname"
+
+  git describe --tags | sed 's/^v//'
+}
+
+prepare() {
+  cd "$pkgname"
+
+  patch -p1 -i ../fix-amdgpu-install.patch
+}
+
+build() {
+  cd "$pkgname"
+
+  make
+}
+
+package() {
+  cd "$pkgname"
+
+  make \
+DESTDIR="$pkgdir" \
+PREFIX=/usr \
+SBINDIR=/usr/bin \
+LIBDIR=/usr/lib \
+LIBEXECDIR=/usr/lib \
+install
+
+  # remove empty directories
+  rm -rf \
+"$pkgdir/usr/include/compel/common/asm" \
+"$pkgdir/var"
+}

Copied: criu/repos/community-testing-x86_64/fix-amdgpu-install.patch (from rev 
1196121, criu/trunk/fix-amdgpu-install.patch)
===
--- community-testing-x86_64/fix-amdgpu-install.patch   
(rev 0)
+++ community-testing-x86_64/fix-amdgpu-install.patch   2022-05-07 05:15:04 UTC 
(rev 1196122)
@@ -0,0 +1,22 @@
+--- a/plugins/amdgpu/Makefile
 b/plugins/amdgpu/Makefile
+@@ -50,16 +50,16 @@ clean: amdgpu_plugin_clean amdgpu_plugin_test_clean
+ mrproper: clean
+ 
+ install:
+-  $(Q) mkdir -p $(PLUGINDIR)
++  $(Q) mkdir -p $(DESTDIR)$(PLUGINDIR)
+ ifeq ($(CONFIG_AMDGPU),y)
+   $(E) "  INSTALL " $(PLUGIN_NAME)
+-  $(Q) install -m 644 $(PLUGIN_SOBJ) $(PLUGINDIR)
++  $(Q) install -m 644 $(PLUGIN_SOBJ) $(DESTDIR)$(PLUGINDIR)
+ endif
+ .PHONY: install
+ 
+ uninstall:
+ ifeq ($(CONFIG_AMDGPU),y)
+   $(E) " UNINSTALL" $(PLUGIN_NAME)
+-  $(Q) $(RM) $(PLUGINDIR)/$(PLUGIN_SOBJ)
++  $(Q) $(RM) $(DESTDIR)$(PLUGINDIR)/$(PLUGIN_SOBJ)
+ endif
+ .PHONY: uninstall



[arch-commits] Commit in criu/trunk (PKGBUILD fix-amdgpu-install.patch)

2022-05-06 Thread George Rawlinson via arch-commits
Date: Saturday, May 7, 2022 @ 05:14:27
  Author: grawlinson
Revision: 1196121

upgpkg: criu 3.17-1

* New upstream release.
* Switch source to git commit from github tarball.
* Fix failing `make install` due to unused functionality.

Added:
  criu/trunk/fix-amdgpu-install.patch
Modified:
  criu/trunk/PKGBUILD

--+
 PKGBUILD |   63 ++---
 fix-amdgpu-install.patch |   22 +++
 2 files changed, 70 insertions(+), 15 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-05-07 04:49:13 UTC (rev 1196120)
+++ PKGBUILD2022-05-07 05:14:27 UTC (rev 1196121)
@@ -3,27 +3,58 @@
 # Contributor: aksr 
 
 pkgname=criu
-pkgver=3.16.1
-pkgrel=4
-pkgdesc="Utilities to checkpoint and restore processes in userspace"
-url="http://criu.org;
+pkgver=3.17
+pkgrel=1
+pkgdesc='Utilities to checkpoint and restore processes in userspace'
+arch=('x86_64')
+url='https://criu.org'
 license=('GPL2')
-arch=('x86_64')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/checkpoint-restore/criu/archive/v$pkgver.tar.gz;)
-depends=('libbsd' 'libnet' 'libnl' 'protobuf-c' 'python-protobuf' 'gnutls' 
'nftables')
-makedepends=('xmlto' 'asciidoc')
+depends=(
+  'libbsd'
+  'libnet'
+  'libnl'
+  'protobuf-c'
+  'python-protobuf'
+  'gnutls'
+  'nftables'
+)
+makedepends=(
+  'git'
+  'xmlto'
+  'asciidoc'
+)
 options=('!buildflags' '!lto')
-sha512sums=('a558af41f1927a1b1d87f8d11163a5f3d2e4f83a74aba00619b45a6d464d5477a6a0aac3c1b9d9a17e3343a4bf21a3fd6b279b51fa0c347c86c307381a4d0739')
-b2sums=('45aa87ee00a18b91474e767dc0326cce6c0942af7771a0c5536751361c171c86ba2065c54587e82b51fd6d7ab116e659324369955086c5237cd7fd26b60d6ce6')
+_commit='4f8f295e57e68740699479d12c1ad251e6dd859f'
+source=(
+  "$pkgname::git+https://github.com/checkpoint-restore/criu#commit=$_commit;
+  'fix-amdgpu-install.patch'
+)
+b2sums=('SKIP'
+
'4d5e7ed02257757f57c0f5c965ebbf3bf0ca5db85d15ac983b861aac8024513ff6f8f9b971bc4c9c0cbd26ee2797116dc3aacc7acf7e7fd04a0eeb7015dc2e83')
 
+pkgver() {
+  cd "$pkgname"
+
+  git describe --tags | sed 's/^v//'
+}
+
+prepare() {
+  cd "$pkgname"
+
+  patch -p1 -i ../fix-amdgpu-install.patch
+}
+
 build() {
-  cd "$pkgname-$pkgver"
+  cd "$pkgname"
+
   make
 }
 
 package() {
-  cd "$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" \
+  cd "$pkgname"
+
+  make \
+DESTDIR="$pkgdir" \
 PREFIX=/usr \
 SBINDIR=/usr/bin \
 LIBDIR=/usr/lib \
@@ -30,6 +61,8 @@
 LIBEXECDIR=/usr/lib \
 install
 
-  # remove empty directory
-  rmdir "$pkgdir/usr/include/compel/common/asm"
+  # remove empty directories
+  rm -rf \
+"$pkgdir/usr/include/compel/common/asm" \
+"$pkgdir/var"
 }

Added: fix-amdgpu-install.patch
===
--- fix-amdgpu-install.patch(rev 0)
+++ fix-amdgpu-install.patch2022-05-07 05:14:27 UTC (rev 1196121)
@@ -0,0 +1,22 @@
+--- a/plugins/amdgpu/Makefile
 b/plugins/amdgpu/Makefile
+@@ -50,16 +50,16 @@ clean: amdgpu_plugin_clean amdgpu_plugin_test_clean
+ mrproper: clean
+ 
+ install:
+-  $(Q) mkdir -p $(PLUGINDIR)
++  $(Q) mkdir -p $(DESTDIR)$(PLUGINDIR)
+ ifeq ($(CONFIG_AMDGPU),y)
+   $(E) "  INSTALL " $(PLUGIN_NAME)
+-  $(Q) install -m 644 $(PLUGIN_SOBJ) $(PLUGINDIR)
++  $(Q) install -m 644 $(PLUGIN_SOBJ) $(DESTDIR)$(PLUGINDIR)
+ endif
+ .PHONY: install
+ 
+ uninstall:
+ ifeq ($(CONFIG_AMDGPU),y)
+   $(E) " UNINSTALL" $(PLUGIN_NAME)
+-  $(Q) $(RM) $(PLUGINDIR)/$(PLUGIN_SOBJ)
++  $(Q) $(RM) $(DESTDIR)$(PLUGINDIR)/$(PLUGIN_SOBJ)
+ endif
+ .PHONY: uninstall



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

2022-05-06 Thread George Rawlinson via arch-commits
Date: Saturday, May 7, 2022 @ 04:49:13
  Author: grawlinson
Revision: 1196120

archrelease: copy trunk to community-x86_64

Added:
  firecracker/repos/community-x86_64/PKGBUILD
(from rev 1196119, firecracker/trunk/PKGBUILD)
Deleted:
  firecracker/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-07 04:48:31 UTC (rev 1196119)
+++ PKGBUILD2022-05-07 04:49:13 UTC (rev 1196120)
@@ -1,67 +0,0 @@
-# Maintainer: George Rawlinson 
-
-pkgbase=firecracker
-pkgname=('firecracker' 'firecracker-docs')
-pkgver=1.0.0
-pkgrel=1
-pkgdesc="Secure and fast microVMs for serverless computing"
-arch=('x86_64')
-url="https://firecracker-microvm.github.io;
-license=('Apache')
-makedepends=('git' 'rust' 'rust-musl')
-options=('!lto')
-_commit='d3e98b9a4ae024de63f072c57015d8b7b0c1b061'
-source=("$pkgname::git+https://github.com/firecracker-microvm/firecracker.git#commit=$_commit;)
-b2sums=('SKIP')
-
-_cargo_target="$CARCH-unknown-linux-musl"
-
-pkgver() {
-  cd "$pkgbase"
-
-  git describe --tags | sed 's/^v//'
-}
-
-prepare() {
-  cd "$pkgbase"
-
-  # download dependencies
-  cargo fetch --locked --target="$_cargo_target"
-}
-
-build() {
-  cd "$pkgbase"
-
-  cargo build \
---package firecracker \
---package jailer \
---package seccompiler \
---release \
---frozen \
---all-features \
---target-dir=target \
---target="$_cargo_target"
-}
-
-check() {
-  cd "$pkgbase"
-
-  cargo test -p firecracker --frozen
-}
-
-package_firecracker() {
-  find "$pkgbase/target/$_cargo_target/release" \
--maxdepth 1 \
--executable \
--type f \
--exec install -vDm0755 -t "$pkgdir/usr/bin/" {} +
-}
-
-package_firecracker-docs() {
-  #arch=('any')
-  pkgdesc+=" (documentation)"
-
-  cd "$pkgbase"
-  install -vDm644 -t "$pkgdir/usr/share/doc/$pkgbase" *.md
-  cp -vr docs "$pkgdir/usr/share/doc/$pkgbase"
-}

Copied: firecracker/repos/community-x86_64/PKGBUILD (from rev 1196119, 
firecracker/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-07 04:49:13 UTC (rev 1196120)
@@ -0,0 +1,77 @@
+# Maintainer: George Rawlinson 
+
+pkgbase=firecracker
+pkgname=('firecracker' 'firecracker-docs')
+pkgver=1.1.0
+pkgrel=1
+pkgdesc='Secure and fast microVMs for serverless computing'
+arch=('x86_64')
+url='https://firecracker-microvm.github.io'
+license=('Apache' 'BSD')
+makedepends=('git' 'rust' 'clang')
+options=('!lto')
+_commit='77cfb9ceaa6a54e22a8259f50fb621ad1e39292b'
+source=("$pkgname::git+https://github.com/firecracker-microvm/firecracker.git#commit=$_commit;)
+b2sums=('SKIP')
+
+_cargo_target="$CARCH-unknown-linux-gnu"
+
+pkgver() {
+  cd "$pkgbase"
+
+  git describe --tags | sed 's/^v//'
+}
+
+prepare() {
+  cd "$pkgbase"
+
+  # download dependencies
+  cargo fetch --locked --target="$_cargo_target"
+}
+
+build() {
+  cd "$pkgbase"
+
+  cargo build \
+--package firecracker \
+--package jailer \
+--package seccompiler \
+--package rebase-snap \
+--release \
+--frozen \
+--all-features \
+--target-dir=target \
+--target="$_cargo_target"
+}
+
+package_firecracker() {
+  depends=('gcc-libs')
+
+  cd "$pkgbase"
+
+  # binaries
+  find "target/$_cargo_target/release" \
+-maxdepth 1 \
+-executable \
+-type f \
+-exec install -vDm755 -t "$pkgdir/usr/bin/" {} +
+
+  # licenses
+  install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" \
+LICENSE NOTICE THIRD-PARTY
+}
+
+package_firecracker-docs() {
+  #arch=('any')
+  pkgdesc+=" (documentation)"
+
+  cd "$pkgbase"
+
+  # documentation
+  install -vDm644 -t "$pkgdir/usr/share/doc/$pkgbase" ./*.md
+  cp -vr docs "$pkgdir/usr/share/doc/$pkgbase"
+
+  # licenses
+  install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" \
+LICENSE NOTICE THIRD-PARTY
+}



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

2022-05-06 Thread George Rawlinson via arch-commits
Date: Saturday, May 7, 2022 @ 04:48:31
  Author: grawlinson
Revision: 1196119

upgpkg: firecracker 1.1.0-1

* New upstream release.
* Switch libc to gnu from musl.
* Skip tests because they assume musl is installed.

Modified:
  firecracker/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-07 04:32:01 UTC (rev 1196118)
+++ PKGBUILD2022-05-07 04:48:31 UTC (rev 1196119)
@@ -2,19 +2,19 @@
 
 pkgbase=firecracker
 pkgname=('firecracker' 'firecracker-docs')
-pkgver=1.0.0
+pkgver=1.1.0
 pkgrel=1
-pkgdesc="Secure and fast microVMs for serverless computing"
+pkgdesc='Secure and fast microVMs for serverless computing'
 arch=('x86_64')
-url="https://firecracker-microvm.github.io;
-license=('Apache')
-makedepends=('git' 'rust' 'rust-musl')
+url='https://firecracker-microvm.github.io'
+license=('Apache' 'BSD')
+makedepends=('git' 'rust' 'clang')
 options=('!lto')
-_commit='d3e98b9a4ae024de63f072c57015d8b7b0c1b061'
+_commit='77cfb9ceaa6a54e22a8259f50fb621ad1e39292b'
 
source=("$pkgname::git+https://github.com/firecracker-microvm/firecracker.git#commit=$_commit;)
 b2sums=('SKIP')
 
-_cargo_target="$CARCH-unknown-linux-musl"
+_cargo_target="$CARCH-unknown-linux-gnu"
 
 pkgver() {
   cd "$pkgbase"
@@ -36,6 +36,7 @@
 --package firecracker \
 --package jailer \
 --package seccompiler \
+--package rebase-snap \
 --release \
 --frozen \
 --all-features \
@@ -43,18 +44,21 @@
 --target="$_cargo_target"
 }
 
-check() {
+package_firecracker() {
+  depends=('gcc-libs')
+
   cd "$pkgbase"
 
-  cargo test -p firecracker --frozen
-}
-
-package_firecracker() {
-  find "$pkgbase/target/$_cargo_target/release" \
+  # binaries
+  find "target/$_cargo_target/release" \
 -maxdepth 1 \
 -executable \
 -type f \
--exec install -vDm0755 -t "$pkgdir/usr/bin/" {} +
+-exec install -vDm755 -t "$pkgdir/usr/bin/" {} +
+
+  # licenses
+  install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" \
+LICENSE NOTICE THIRD-PARTY
 }
 
 package_firecracker-docs() {
@@ -62,6 +66,12 @@
   pkgdesc+=" (documentation)"
 
   cd "$pkgbase"
-  install -vDm644 -t "$pkgdir/usr/share/doc/$pkgbase" *.md
+
+  # documentation
+  install -vDm644 -t "$pkgdir/usr/share/doc/$pkgbase" ./*.md
   cp -vr docs "$pkgdir/usr/share/doc/$pkgbase"
+
+  # licenses
+  install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" \
+LICENSE NOTICE THIRD-PARTY
 }



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

2022-05-06 Thread Chih-Hsuan Yen via arch-commits
Date: Saturday, May 7, 2022 @ 04:32:01
  Author: yan12125
Revision: 1196118

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-07 04:31:45 UTC (rev 1196117)
+++ PKGBUILD2022-05-07 04:32:01 UTC (rev 1196118)
@@ -1,82 +0,0 @@
-# Maintainer: Chih-Hsuan Yen 
-# Contributor: Guillaume Horel 
-
-pkgname=python-moto
-_pkgname=moto
-# https://github.com/spulec/moto/blob/master/CHANGELOG.md
-pkgver=3.1.7
-pkgrel=1
-pkgdesc='Moto is a library to mock out the boto library.'
-arch=(any)
-url='https://github.com/spulec/moto'
-license=(Apache)
-# NOTE: Keep the order of dependencies matching setup.py
-# setup.py includes setuptools, which is a work around for missing 
dependencies in aws-xray-sdk [1].
-# I use the correct dependency in python-aws-xray-sdk, so python-setuptools is 
not needed here.
-# [1] https://github.com/spulec/moto/pull/4142
-depends=(python-boto3 python-botocore python-cryptography python-requests 
python-xmltodict
- python-werkzeug python-pytz python-dateutil python-responses
- # Below dependencies varied with Python versions
- python-jinja python-more-itertools)
-# See reqquirements-test.txt, excluding pytest-cov
-checkdepends=(python-pytest python-sure python-freezegun)
-# Below are optional dependencies. The order matches _dep_* items in upstream 
`setup.py`.
-# Note that _dep_python_jose_ecdsa_pin and _dep_idna are excluded as they are 
pins and
-# not used by moto.
-optdepends=(
-  'python-yaml: for apigatewayv2, cloudformation, s3 and ssm'
-  'python-jose: for apigateway and cognitoidp'
-  # SNS and SQS still uses docker indirectly, while upstream explicitly 
removes them
-  # https://github.com/spulec/moto/pull/4094
-  'python-docker: for awslambda, batch, cloudformation, dynamodb2 and 
dynamodbstreams'
-  'python-graphql-core: For appsync'
-  'python-jsondiff: for iotdata'
-  'python-aws-xray-sdk: for xray'
-  'python-cfn-lint: for cloudformation'
-  'python-sshpubkeys: for ec2 and efs'
-  'python-pyparsing: for glue'
-  'python-flask: for moto_server'
-  'python-flask-cors: for moto_server'
-)
-checkdepends+=(python-yaml python-jose python-docker python-graphql-core 
python-jsondiff python-aws-xray-sdk
-   python-cfn-lint python-sshpubkeys python-pyparsing python-flask 
python-flask-cors)
-source=("https://files.pythonhosted.org/packages/source/m/moto/moto-${pkgver}.tar.gz;)
-sha256sums=('20607a0fd0cf6530e05ffb623ca84d3f45d50bddbcec2a33705a0cf471e71289')
-
-prepare() {
-  cd $_pkgname-$pkgver
-
-  # AWS Lambda and Batch tests require docker/podman, while running 
docker/podman
-  # in systemd-nspawn containers appears impossible without special 
configurations -
-  # disable them altogether
-  sed -i '/markers\s*=/a \ \ \ \ needs_docker: marks test which require 
docker' setup.cfg
-  find tests \( -name '*.py' -a ! -name __init__.py \) -print0 | xargs -I % -0 
bash -c '
-sed -i -E "%" \
-  -e "/__future__/a import pytest" \
-  -e "s/^(\s*)(@mock_batch)$/\1\2\n\1...@pytest.mark.needs_docker/" \
-  -e "s/^(\s*)(@mock_lambda)$/\1\2\n\1...@pytest.mark.needs_docker/"
-grep __future__ "%" || sed -i "1i import pytest" "%"
-  '
-
-  # Remove upper bounds of dependencies
-  sed --in-place=.orig -r 's#,?<[0-9.]+,?##;s#==([0-9.]+)#>=\1#' setup.py
-  diff -u setup.py{.orig,} || true
-}
-
-build() {
-  cd $_pkgname-$pkgver
-
-  python setup.py build
-}
-
-check() {
-  cd $_pkgname-$pkgver
-
-  PYTHONDONTWRITEBYTECODE=1 TZ=UTC pytest tests -m 'not needs_docker'
-}
-
-package() {
-  cd $_pkgname-$pkgver
-
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}

Copied: python-moto/repos/community-any/PKGBUILD (from rev 1196117, 
python-moto/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-07 04:32:01 UTC (rev 1196118)
@@ -0,0 +1,82 @@
+# Maintainer: Chih-Hsuan Yen 
+# Contributor: Guillaume Horel 
+
+pkgname=python-moto
+_pkgname=moto
+# https://github.com/spulec/moto/blob/master/CHANGELOG.md
+pkgver=3.1.8
+pkgrel=1
+pkgdesc='Moto is a library to mock out the boto library.'
+arch=(any)
+url='https://github.com/spulec/moto'
+license=(Apache)
+# NOTE: Keep the order of dependencies matching setup.py
+# setup.py includes setuptools, which is a work around for missing 
dependencies in aws-xray-sdk [1].
+# I use the correct dependency in python-aws-xray-sdk, so python-setuptools is 
not needed here.
+# [1] https://github.com/spulec/moto/pull/4142
+depends=(python-boto3 python-botocore python-cryptography python-requests 

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

2022-05-06 Thread Chih-Hsuan Yen via arch-commits
Date: Saturday, May 7, 2022 @ 04:31:45
  Author: yan12125
Revision: 1196117

upgpkg: python-moto 3.1.8-1

Modified:
  python-moto/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-07 04:25:02 UTC (rev 1196116)
+++ PKGBUILD2022-05-07 04:31:45 UTC (rev 1196117)
@@ -4,7 +4,7 @@
 pkgname=python-moto
 _pkgname=moto
 # https://github.com/spulec/moto/blob/master/CHANGELOG.md
-pkgver=3.1.7
+pkgver=3.1.8
 pkgrel=1
 pkgdesc='Moto is a library to mock out the boto library.'
 arch=(any)
@@ -41,7 +41,7 @@
 checkdepends+=(python-yaml python-jose python-docker python-graphql-core 
python-jsondiff python-aws-xray-sdk
python-cfn-lint python-sshpubkeys python-pyparsing python-flask 
python-flask-cors)
 
source=("https://files.pythonhosted.org/packages/source/m/moto/moto-${pkgver}.tar.gz;)
-sha256sums=('20607a0fd0cf6530e05ffb623ca84d3f45d50bddbcec2a33705a0cf471e71289')
+sha256sums=('bde95005ec42a88448a98809397030f9e886387f469dcd2fcbc7f38d75858872')
 
 prepare() {
   cd $_pkgname-$pkgver



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

2022-05-06 Thread Alexander Epaneshnikov via arch-commits
Date: Saturday, May 7, 2022 @ 04:25:02
  Author: alex19ep
Revision: 1196116

archrelease: copy trunk to community-any

Added:
  repo/repos/community-any/PKGBUILD
(from rev 1196115, repo/trunk/PKGBUILD)
Deleted:
  repo/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-07 04:24:58 UTC (rev 1196115)
+++ PKGBUILD2022-05-07 04:25:02 UTC (rev 1196116)
@@ -1,21 +0,0 @@
-# Maintainer: Johannes Löthberg 
-# Maintainer: Alexander Epaneshnikov 
-
-pkgname=repo
-pkgver=2.24.1
-pkgrel=1
-pkgdesc="The Multiple Git Repository Tool from the Android Open Source Project"
-url="https://android.googlesource.com/tools/repo;
-arch=('any')
-license=("APACHE")
-depends=("git" "python")
-source=("git+https://android.googlesource.com/tools/repo.git#tag=v$pkgver?signed;)
-validpgpkeys=('8BB9AD793E8E6153AF0F9A4416530D5E920F5C65') # Repo Maintainer 

-sha256sums=('SKIP')
-
-package() {
-  cd repo
-  install -vDm755 repo "$pkgdir/usr/bin/repo"
-  install -vDm644 docs/manifest-format.md 
"$pkgdir/usr/share/doc/$pkgname/manifest-format.md"
-  install -vDm644 -t "$pkgdir/usr/share/man/man1" man/*
-}

Copied: repo/repos/community-any/PKGBUILD (from rev 1196115, 
repo/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-07 04:25:02 UTC (rev 1196116)
@@ -0,0 +1,21 @@
+# Maintainer: Johannes Löthberg 
+# Maintainer: Alexander Epaneshnikov 
+
+pkgname=repo
+pkgver=2.25
+pkgrel=1
+pkgdesc="The Multiple Git Repository Tool from the Android Open Source Project"
+url="https://android.googlesource.com/tools/repo;
+arch=('any')
+license=("APACHE")
+depends=("git" "python")
+source=("git+https://android.googlesource.com/tools/repo.git#tag=v$pkgver?signed;)
+validpgpkeys=('8BB9AD793E8E6153AF0F9A4416530D5E920F5C65') # Repo Maintainer 

+sha256sums=('SKIP')
+
+package() {
+  cd repo
+  install -vDm755 repo "$pkgdir/usr/bin/repo"
+  install -vDm644 docs/manifest-format.md 
"$pkgdir/usr/share/doc/$pkgname/manifest-format.md"
+  install -vDm644 -t "$pkgdir/usr/share/man/man1" man/*
+}



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

2022-05-06 Thread Alexander Epaneshnikov via arch-commits
Date: Saturday, May 7, 2022 @ 04:24:58
  Author: alex19ep
Revision: 1196115

upgpkg: repo 2.25-1 upstream release

Modified:
  repo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-07 04:22:56 UTC (rev 1196114)
+++ PKGBUILD2022-05-07 04:24:58 UTC (rev 1196115)
@@ -2,7 +2,7 @@
 # Maintainer: Alexander Epaneshnikov 
 
 pkgname=repo
-pkgver=2.24.1
+pkgver=2.25
 pkgrel=1
 pkgdesc="The Multiple Git Repository Tool from the Android Open Source Project"
 url="https://android.googlesource.com/tools/repo;



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

2022-05-06 Thread Alexander Epaneshnikov via arch-commits
Date: Saturday, May 7, 2022 @ 04:22:52
  Author: alex19ep
Revision: 1196113

upgpkg: python-canonicaljson 1.6.1-1 upstream release

Modified:
  python-canonicaljson/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-07 04:19:51 UTC (rev 1196112)
+++ PKGBUILD2022-05-07 04:22:52 UTC (rev 1196113)
@@ -3,7 +3,7 @@
 # Contributor: Ivan Shapovalov 
 
 pkgname=python-canonicaljson
-pkgver=1.6.0
+pkgver=1.6.1
 pkgrel=1
 pkgdesc='Canonical JSON'
 url='https://pypi.python.org/pypi/canonicaljson/'
@@ -12,8 +12,8 @@
 depends=('python' 'python-simplejson' 'python-frozendict')
 makedepends=('python-setuptools')
 
source=("python-canonicaljson-$pkgver.tar.gz::https://github.com/matrix-org/python-canonicaljson/archive/v${pkgver}.tar.gz;)
-sha512sums=('78a62a7a462ab76ebc360febe01ba54afe8d8904611ecae58aa6dd88d49454cb70a8e270ba50215400df2fb0d55ff7196bb181a6480df2ec8509b0ff87d72e48')
-b2sums=('71c12139120192036dac3c34306857af1236eea8de0a61957552b75440961de58c4fc3aa9f6e2b65ca3dbace86e06e23ac6eb3dc9af44c78a107747b5fbf384a')
+sha512sums=('ef0c6a06d287a00b3742804d800cc1c9edbb25278da0946b0f7920113f3329270d15e6904f7cb0d3dc8290102a4f8212828491c9b2b3c68abc85b197790ed8a1')
+b2sums=('d3789bf44dfd7e511d88693305cdb71f0b8ff3a2ee032c06e9992843c228856150c39611412624080613d5582f1b822dda84368047e158526bac4d28d626aa7a')
 
 build() {
cd python-canonicaljson-$pkgver



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

2022-05-06 Thread Alexander Epaneshnikov via arch-commits
Date: Saturday, May 7, 2022 @ 04:22:56
  Author: alex19ep
Revision: 1196114

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-07 04:22:52 UTC (rev 1196113)
+++ PKGBUILD2022-05-07 04:22:56 UTC (rev 1196114)
@@ -1,33 +0,0 @@
-# Maintainer: Johannes Löthberg 
-# Maintainer: Alexander Epaneshnikov 
-# Contributor: Ivan Shapovalov 
-
-pkgname=python-canonicaljson
-pkgver=1.6.0
-pkgrel=1
-pkgdesc='Canonical JSON'
-url='https://pypi.python.org/pypi/canonicaljson/'
-arch=('any')
-license=('Apache')
-depends=('python' 'python-simplejson' 'python-frozendict')
-makedepends=('python-setuptools')
-source=("python-canonicaljson-$pkgver.tar.gz::https://github.com/matrix-org/python-canonicaljson/archive/v${pkgver}.tar.gz;)
-sha512sums=('78a62a7a462ab76ebc360febe01ba54afe8d8904611ecae58aa6dd88d49454cb70a8e270ba50215400df2fb0d55ff7196bb181a6480df2ec8509b0ff87d72e48')
-b2sums=('71c12139120192036dac3c34306857af1236eea8de0a61957552b75440961de58c4fc3aa9f6e2b65ca3dbace86e06e23ac6eb3dc9af44c78a107747b5fbf384a')
-
-build() {
-   cd python-canonicaljson-$pkgver
-   python setup.py build
-}
-
-check() {
-   cd python-canonicaljson-$pkgver
-   python setup.py test
-}
-
-package() {
-   cd python-canonicaljson-$pkgver
-   python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}
-
-# vim: set ts=4 sw=4 tw=0 ft=PKGBUILD :

Copied: python-canonicaljson/repos/community-any/PKGBUILD (from rev 1196113, 
python-canonicaljson/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-07 04:22:56 UTC (rev 1196114)
@@ -0,0 +1,33 @@
+# Maintainer: Johannes Löthberg 
+# Maintainer: Alexander Epaneshnikov 
+# Contributor: Ivan Shapovalov 
+
+pkgname=python-canonicaljson
+pkgver=1.6.1
+pkgrel=1
+pkgdesc='Canonical JSON'
+url='https://pypi.python.org/pypi/canonicaljson/'
+arch=('any')
+license=('Apache')
+depends=('python' 'python-simplejson' 'python-frozendict')
+makedepends=('python-setuptools')
+source=("python-canonicaljson-$pkgver.tar.gz::https://github.com/matrix-org/python-canonicaljson/archive/v${pkgver}.tar.gz;)
+sha512sums=('ef0c6a06d287a00b3742804d800cc1c9edbb25278da0946b0f7920113f3329270d15e6904f7cb0d3dc8290102a4f8212828491c9b2b3c68abc85b197790ed8a1')
+b2sums=('d3789bf44dfd7e511d88693305cdb71f0b8ff3a2ee032c06e9992843c228856150c39611412624080613d5582f1b822dda84368047e158526bac4d28d626aa7a')
+
+build() {
+   cd python-canonicaljson-$pkgver
+   python setup.py build
+}
+
+check() {
+   cd python-canonicaljson-$pkgver
+   python setup.py test
+}
+
+package() {
+   cd python-canonicaljson-$pkgver
+   python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}
+
+# vim: set ts=4 sw=4 tw=0 ft=PKGBUILD :



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

2022-05-06 Thread Sergej Pupykin via arch-commits
Date: Saturday, May 7, 2022 @ 00:45:35
  Author: spupykin
Revision: 1196111

archrelease: copy trunk to community-x86_64

Added:
  ejabberd/repos/community-x86_64/PKGBUILD
(from rev 1196110, ejabberd/trunk/PKGBUILD)
  ejabberd/repos/community-x86_64/ejabberd.logrotate
(from rev 1196110, ejabberd/trunk/ejabberd.logrotate)
  ejabberd/repos/community-x86_64/print-deps.sh
(from rev 1196110, ejabberd/trunk/print-deps.sh)
  ejabberd/repos/community-x86_64/sysuser.conf
(from rev 1196110, ejabberd/trunk/sysuser.conf)
Deleted:
  ejabberd/repos/community-x86_64/PKGBUILD
  ejabberd/repos/community-x86_64/ejabberd.logrotate
  ejabberd/repos/community-x86_64/print-deps.sh
  ejabberd/repos/community-x86_64/sysuser.conf

+
 PKGBUILD   |  308 +--
 ejabberd.logrotate |   24 +--
 print-deps.sh  |   60 -
 sysuser.conf   |4 
 4 files changed, 199 insertions(+), 197 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-07 00:45:22 UTC (rev 1196110)
+++ PKGBUILD2022-05-07 00:45:35 UTC (rev 1196111)
@@ -1,153 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Contributor: Jeff 'codemac' Mickey 
-# Contributor: Alexander Rødseth 
-
-pkgname=ejabberd
-pkgver=22.05
-pkgrel=1
-pkgdesc="Jabber server written in Erlang"
-arch=('x86_64')
-url="https://www.ejabberd.im/;
-license=("GPL")
-depends=('expat' 'openssl' 'zlib' 'erlang-nox' 'pam' 'iproute2' 
'erlang-unixodbc'
-'libyaml' 'sqlite' 'gd')
-makedepends=('git' 'rebar' 'hevea' 'texlive-bin' 'texlive-core' 
'texlive-latexextra')
-optdepends=('gsfonts: for captcha'
-   'imagemagick: for captcha')
-backup=('etc/ejabberd/ejabberd.yml'
-   'etc/ejabberd/ejabberdctl.cfg'
-   'etc/logrotate.d/ejabberd')
-options=(emptydirs)
-source=("$pkgname-$pkgver.tar.gz::https://github.com/processone/ejabberd/archive/$pkgver.tar.gz;
-   
"base64url::git+https://github.com/dvv/base64url#commit=bf1360685da704c8453aba2268c4698c959d2ba4;
-   
"cache_tab::git+https://github.com/processone/cache_tab#commit=6da609074b855b904ab72e201c60f1a1e2c00b3f;
-   
"eimp::git+https://github.com/processone/eimp#commit=ec616de3762ce8498856b4fdadf8ba36045c6773;
-   
"ejabberd_po::git+https://github.com/processone/ejabberd-po#commit=9849703c3664e43452eae3245016a1c187f3edc4;
-   
"elixir::git+https://github.com/elixir-lang/elixir#commit=867da6f876c48279823a41a33030c95ef37379b2;
-   
"epam::git+https://github.com/processone/epam#commit=485aedb105c13c3c6763e5e5b86b9845cd4bec4a;
-   
"eredis::git+https://github.com/wooga/eredis#commit=9ad91f149310a7d002cb966f62b7e2c3330abb04;
-   
"esip::git+https://github.com/processone/esip#commit=f6231d9a62d841a35564ba11ba4d3c0cd82fd2a8;
-   
"ezlib::git+https://github.com/processone/ezlib#commit=af37eb27aa0614db8b89110a4b56806b7f3544c4;
-   
"fast_tls::git+https://github.com/processone/fast_tls#commit=ff20ea100f8f689b1b4d4ea141f99da9de96193a;
-   
"fast_xml::git+https://github.com/processone/fast_xml#commit=26d3247e7b7ff94a3bdcd30bad1193e2d86f511b;
-   
"fast_yaml::git+https://github.com/processone/fast_yaml#commit=b56ae418fcd9747a82946255bb89b0976a66b8d8;
-   
"idna::git+https://github.com/benoitc/erlang-idna#commit=6cff72747821110169ecfac871b0c69e5064afff;
-   
"jiffy::git+https://github.com/davisp/jiffy#commit=9ea1b35b6e60ba21dfd4adbd18e7916a831fd7d4;
-   
"jose::git+https://github.com/potatosalad/erlang-jose#commit=090a2ed054304ecc012d6c2d9d10d2a294d835b1;
-   
"luerl::git+https://github.com/rvirding/luerl#commit=836d08ad3287d73d9c91cb11a590de15a1761027;
-   
"mqtree::git+https://github.com/processone/mqtree#commit=b87975f2c46ea44f3ed0dd484ae248aeea0c5d1e;
-   
"p1_acme::git+https://github.com/processone/p1_acme#commit=76b71f376767da84c7d3628abaabf2ee061d0634;
-   
"p1_mysql::git+https://github.com/processone/p1_mysql#commit=16508b6e5b9fd9b2776314160809960f404c0007;
-   
"p1_oauth2::git+https://github.com/processone/p1_oauth2#commit=e1fbe216c9e0c1f85b44bf9750af608fcc2848d2;
-   
"p1_pgsql::git+https://github.com/processone/p1_pgsql#commit=899609c5ce68832abe27853e4e3178f970ab7575;
-   
"p1_utils::git+https://github.com/processone/p1_utils#commit=ba816751674ab7df46978345ec4c0c84c0b44b0d;
-   
"pkix::git+https://github.com/processone/pkix#commit=9655992dc39e91fc8f5e237eea95d74ec9c01891;
-   
"rebar_elixir_plugin::git+https://github.com/processone/rebar_elixir_plugin#commit=10614dfef5d10b7071f7181858149259e50159f6;
-   
"sqlite3::git+https://github.com/processone/erlang-sqlite3#commit=a68c21ff012142326584c7512a6084a1b61619cc;
-   
"stringprep::git+https://github.com/processone/stringprep#commit=63f66b6b280ca9a7b8a79dd6ae4e0358c2c53a29;
-   
"stun::git+https://github.com/processone/stun#commit=c1171a5377e885ce9e94fc39f7a2de2c631a2cbe;
-   

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

2022-05-06 Thread Sergej Pupykin via arch-commits
Date: Saturday, May 7, 2022 @ 00:45:22
  Author: spupykin
Revision: 1196110

upgpkg: ejabberd 22.05-1

Modified:
  ejabberd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-07 00:17:00 UTC (rev 1196109)
+++ PKGBUILD2022-05-07 00:45:22 UTC (rev 1196110)
@@ -118,6 +118,8 @@
 -e "s|Group=.*|Group=jabber|g" \
 -e "s|User=.*|User=jabber|g" \
 ejabberd.service
+  sed -i -e "s|$pkgdir||g" "$pkgdir"/usr/bin/ejabberdctl
+
   install -Dm0644 ejabberd.service 
"$pkgdir"/usr/lib/systemd/system/ejabberd.service
 
   install -Dm04750 deps/epam/priv/bin/epam 
"$pkgdir"/usr/lib/ejabberd-$pkgver/priv/bin/epam



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

2022-05-06 Thread Sergej Pupykin via arch-commits
Date: Saturday, May 7, 2022 @ 00:17:00
  Author: spupykin
Revision: 1196109

archrelease: copy trunk to community-x86_64

Added:
  ejabberd/repos/community-x86_64/PKGBUILD
(from rev 1196108, ejabberd/trunk/PKGBUILD)
  ejabberd/repos/community-x86_64/ejabberd.logrotate
(from rev 1196108, ejabberd/trunk/ejabberd.logrotate)
  ejabberd/repos/community-x86_64/print-deps.sh
(from rev 1196108, ejabberd/trunk/print-deps.sh)
  ejabberd/repos/community-x86_64/sysuser.conf
(from rev 1196108, ejabberd/trunk/sysuser.conf)
Deleted:
  ejabberd/repos/community-x86_64/PKGBUILD
  ejabberd/repos/community-x86_64/ejabberd.logrotate
  ejabberd/repos/community-x86_64/print-deps.sh
  ejabberd/repos/community-x86_64/sysuser.conf

+
 PKGBUILD   |  310 +--
 ejabberd.logrotate |   24 +--
 print-deps.sh  |   59 -
 sysuser.conf   |4 
 4 files changed, 197 insertions(+), 200 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-07 00:16:42 UTC (rev 1196108)
+++ PKGBUILD2022-05-07 00:17:00 UTC (rev 1196109)
@@ -1,157 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Contributor: Jeff 'codemac' Mickey 
-# Contributor: Alexander Rødseth 
-
-pkgname=ejabberd
-pkgver=21.12
-pkgrel=2
-pkgdesc="Jabber server written in Erlang"
-arch=('x86_64')
-url="https://www.ejabberd.im/;
-license=("GPL")
-depends=('expat' 'openssl' 'zlib' 'erlang-nox' 'pam' 'iproute2' 
'erlang-unixodbc'
-'libyaml' 'sqlite' 'gd')
-makedepends=('git' 'rebar' 'hevea' 'texlive-bin' 'texlive-core' 
'texlive-latexextra')
-optdepends=('gsfonts: for captcha'
-   'imagemagick: for captcha')
-backup=('etc/ejabberd/ejabberd.yml'
-   'etc/ejabberd/ejabberdctl.cfg'
-   'etc/logrotate.d/ejabberd')
-options=(emptydirs)
-source=("$pkgname-$pkgver.tar.gz::https://github.com/processone/ejabberd/archive/$pkgver.tar.gz;
-   
"base64url::git+https://github.com/dvv/base64url#commit=bf1360685da704c8453aba2268c4698c959d2ba4;
-   
"cache_tab::git+https://github.com/processone/cache_tab#commit=e740b2f0baae4673d6a5f15ebda5b172227614cb;
-   
"eimp::git+https://github.com/processone/eimp#commit=85364f0f62bc69cfc27d0c281a259e1fc599a284;
-   
"ejabberd_po::git+https://github.com/processone/ejabberd-po#commit=492ea14d3165d36f834d4b595295347a3b160961;
-   
"elixir::git+https://github.com/elixir-lang/elixir#commit=867da6f876c48279823a41a33030c95ef37379b2;
-   
"epam::git+https://github.com/processone/epam#commit=485aedb105c13c3c6763e5e5b86b9845cd4bec4a;
-   
"eredis::git+https://github.com/wooga/eredis#commit=9ad91f149310a7d002cb966f62b7e2c3330abb04;
-   
"esip::git+https://github.com/processone/esip#commit=d844041327567585ab38199a6aa53625dc65eb00;
-   
"ezlib::git+https://github.com/processone/ezlib#commit=5f073300621729df417f833159929554bd483736;
-   
"fast_tls::git+https://github.com/processone/fast_tls#commit=181c6e249e6dbe6c9885f1424b20df003301698f;
-   
"fast_xml::git+https://github.com/processone/fast_xml#commit=4e8d0ba4ea08d642acf63b25c65f89a6f632ea3b;
-   
"fast_yaml::git+https://github.com/processone/fast_yaml#commit=f4e92de652cb0bdd65de852e13cc628a403b11f8;
-   
"goldrush::git+https://github.com/DeadZen/goldrush.git#commit=8f1b715d36b650ec1e1f5612c00e28af6ab0de82;
-   
"idna::git+https://github.com/benoitc/erlang-idna#commit=6cff72747821110169ecfac871b0c69e5064afff;
-   
"jiffy::git+https://github.com/davisp/jiffy#commit=6dadc0cd22b06e2b1972ee8aba5708c478418926;
-   
"jose::git+https://github.com/potatosalad/erlang-jose#commit=090a2ed054304ecc012d6c2d9d10d2a294d835b1;
-   
"lager::git+https://github.com/erlang-lager/lager#commit=c5447d2d85a0d446d41a79bffe0a6a66bd50c901;
-   
"luerl::git+https://github.com/rvirding/luerl#commit=01fa43a1a5d68becfe07236a9a71505039474108;
-   
"mqtree::git+https://github.com/processone/mqtree#commit=f9c08ef7f0a66ebfc6706ac0df5c7d144605aa70;
-   
"p1_acme::git+https://github.com/processone/p1_acme#commit=552966f988b5050ff25fe11dedbc77a2c4fb6dd7;
-   
"p1_mysql::git+https://github.com/processone/p1_mysql#commit=16508b6e5b9fd9b2776314160809960f404c0007;
-   
"p1_oauth2::git+https://github.com/processone/p1_oauth2#commit=d696d6edeab5c666451dbccef8a89ca0b734938a;
-   
"p1_pgsql::git+https://github.com/processone/p1_pgsql#commit=4c42903f91cbb2840b8a5266e6e3b5cdc82b702e;
-   
"p1_utils::git+https://github.com/processone/p1_utils#commit=fc5947e59b91853764b46cdf593ddcaea0e4714d;
-   
"pkix::git+https://github.com/processone/pkix#commit=edc15ed8ce28028c43c3217c6d7a1fc64a3a8e23;
-   
"rebar_elixir_plugin::git+https://github.com/processone/rebar_elixir_plugin#commit=10614dfef5d10b7071f7181858149259e50159f6;
-   
"sqlite3::git+https://github.com/processone/erlang-sqlite3#commit=a68c21ff012142326584c7512a6084a1b61619cc;
-   

[arch-commits] Commit in ejabberd/trunk (PKGBUILD print-deps.sh)

2022-05-06 Thread Sergej Pupykin via arch-commits
Date: Saturday, May 7, 2022 @ 00:16:42
  Author: spupykin
Revision: 1196108

upgpkg: ejabberd 22.05-1

Modified:
  ejabberd/trunk/PKGBUILD
  ejabberd/trunk/print-deps.sh

---+
 PKGBUILD  |   52 
 print-deps.sh |3 ++-
 2 files changed, 26 insertions(+), 29 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-05-07 00:06:22 UTC (rev 1196107)
+++ PKGBUILD2022-05-07 00:16:42 UTC (rev 1196108)
@@ -3,8 +3,8 @@
 # Contributor: Alexander Rødseth 
 
 pkgname=ejabberd
-pkgver=21.12
-pkgrel=2
+pkgver=22.05
+pkgrel=1
 pkgdesc="Jabber server written in Erlang"
 arch=('x86_64')
 url="https://www.ejabberd.im/;
@@ -20,40 +20,38 @@
 options=(emptydirs)
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/processone/ejabberd/archive/$pkgver.tar.gz;

"base64url::git+https://github.com/dvv/base64url#commit=bf1360685da704c8453aba2268c4698c959d2ba4;
-   
"cache_tab::git+https://github.com/processone/cache_tab#commit=e740b2f0baae4673d6a5f15ebda5b172227614cb;
-   
"eimp::git+https://github.com/processone/eimp#commit=85364f0f62bc69cfc27d0c281a259e1fc599a284;
-   
"ejabberd_po::git+https://github.com/processone/ejabberd-po#commit=492ea14d3165d36f834d4b595295347a3b160961;
+   
"cache_tab::git+https://github.com/processone/cache_tab#commit=6da609074b855b904ab72e201c60f1a1e2c00b3f;
+   
"eimp::git+https://github.com/processone/eimp#commit=ec616de3762ce8498856b4fdadf8ba36045c6773;
+   
"ejabberd_po::git+https://github.com/processone/ejabberd-po#commit=9849703c3664e43452eae3245016a1c187f3edc4;

"elixir::git+https://github.com/elixir-lang/elixir#commit=867da6f876c48279823a41a33030c95ef37379b2;

"epam::git+https://github.com/processone/epam#commit=485aedb105c13c3c6763e5e5b86b9845cd4bec4a;

"eredis::git+https://github.com/wooga/eredis#commit=9ad91f149310a7d002cb966f62b7e2c3330abb04;
-   
"esip::git+https://github.com/processone/esip#commit=d844041327567585ab38199a6aa53625dc65eb00;
-   
"ezlib::git+https://github.com/processone/ezlib#commit=5f073300621729df417f833159929554bd483736;
-   
"fast_tls::git+https://github.com/processone/fast_tls#commit=181c6e249e6dbe6c9885f1424b20df003301698f;
-   
"fast_xml::git+https://github.com/processone/fast_xml#commit=4e8d0ba4ea08d642acf63b25c65f89a6f632ea3b;
-   
"fast_yaml::git+https://github.com/processone/fast_yaml#commit=f4e92de652cb0bdd65de852e13cc628a403b11f8;
-   
"goldrush::git+https://github.com/DeadZen/goldrush.git#commit=8f1b715d36b650ec1e1f5612c00e28af6ab0de82;
+   
"esip::git+https://github.com/processone/esip#commit=f6231d9a62d841a35564ba11ba4d3c0cd82fd2a8;
+   
"ezlib::git+https://github.com/processone/ezlib#commit=af37eb27aa0614db8b89110a4b56806b7f3544c4;
+   
"fast_tls::git+https://github.com/processone/fast_tls#commit=ff20ea100f8f689b1b4d4ea141f99da9de96193a;
+   
"fast_xml::git+https://github.com/processone/fast_xml#commit=26d3247e7b7ff94a3bdcd30bad1193e2d86f511b;
+   
"fast_yaml::git+https://github.com/processone/fast_yaml#commit=b56ae418fcd9747a82946255bb89b0976a66b8d8;

"idna::git+https://github.com/benoitc/erlang-idna#commit=6cff72747821110169ecfac871b0c69e5064afff;
-   
"jiffy::git+https://github.com/davisp/jiffy#commit=6dadc0cd22b06e2b1972ee8aba5708c478418926;
+   
"jiffy::git+https://github.com/davisp/jiffy#commit=9ea1b35b6e60ba21dfd4adbd18e7916a831fd7d4;

"jose::git+https://github.com/potatosalad/erlang-jose#commit=090a2ed054304ecc012d6c2d9d10d2a294d835b1;
-   
"lager::git+https://github.com/erlang-lager/lager#commit=c5447d2d85a0d446d41a79bffe0a6a66bd50c901;
-   
"luerl::git+https://github.com/rvirding/luerl#commit=01fa43a1a5d68becfe07236a9a71505039474108;
-   
"mqtree::git+https://github.com/processone/mqtree#commit=f9c08ef7f0a66ebfc6706ac0df5c7d144605aa70;
-   
"p1_acme::git+https://github.com/processone/p1_acme#commit=552966f988b5050ff25fe11dedbc77a2c4fb6dd7;
+   
"luerl::git+https://github.com/rvirding/luerl#commit=836d08ad3287d73d9c91cb11a590de15a1761027;
+   
"mqtree::git+https://github.com/processone/mqtree#commit=b87975f2c46ea44f3ed0dd484ae248aeea0c5d1e;
+   
"p1_acme::git+https://github.com/processone/p1_acme#commit=76b71f376767da84c7d3628abaabf2ee061d0634;

"p1_mysql::git+https://github.com/processone/p1_mysql#commit=16508b6e5b9fd9b2776314160809960f404c0007;
-   
"p1_oauth2::git+https://github.com/processone/p1_oauth2#commit=d696d6edeab5c666451dbccef8a89ca0b734938a;
-   
"p1_pgsql::git+https://github.com/processone/p1_pgsql#commit=4c42903f91cbb2840b8a5266e6e3b5cdc82b702e;
-   
"p1_utils::git+https://github.com/processone/p1_utils#commit=fc5947e59b91853764b46cdf593ddcaea0e4714d;
-   
"pkix::git+https://github.com/processone/pkix#commit=edc15ed8ce28028c43c3217c6d7a1fc64a3a8e23;
+   

[arch-commits] Commit in gitlab/repos/community-x86_64 (26 files)

2022-05-06 Thread Anatol Pomozov via arch-commits
Date: Saturday, May 7, 2022 @ 00:06:22
  Author: anatolik
Revision: 1196107

archrelease: copy trunk to community-x86_64

Added:
  gitlab/repos/community-x86_64/PKGBUILD
(from rev 1196106, gitlab/trunk/PKGBUILD)
  gitlab/repos/community-x86_64/configs.patch
(from rev 1196106, gitlab/trunk/configs.patch)
  gitlab/repos/community-x86_64/environment
(from rev 1196106, gitlab/trunk/environment)
  gitlab/repos/community-x86_64/fixes.patch
(from rev 1196106, gitlab/trunk/fixes.patch)
  gitlab/repos/community-x86_64/gitlab-backup.service
(from rev 1196106, gitlab/trunk/gitlab-backup.service)
  gitlab/repos/community-x86_64/gitlab-backup.timer
(from rev 1196106, gitlab/trunk/gitlab-backup.timer)
  gitlab/repos/community-x86_64/gitlab-mailroom.service
(from rev 1196106, gitlab/trunk/gitlab-mailroom.service)
  gitlab/repos/community-x86_64/gitlab-puma.service
(from rev 1196106, gitlab/trunk/gitlab-puma.service)
  gitlab/repos/community-x86_64/gitlab-sidekiq.service
(from rev 1196106, gitlab/trunk/gitlab-sidekiq.service)
  gitlab/repos/community-x86_64/gitlab.install
(from rev 1196106, gitlab/trunk/gitlab.install)
  gitlab/repos/community-x86_64/gitlab.logrotate
(from rev 1196106, gitlab/trunk/gitlab.logrotate)
  gitlab/repos/community-x86_64/gitlab.target
(from rev 1196106, gitlab/trunk/gitlab.target)
  gitlab/repos/community-x86_64/gitlab.tmpfiles.d
(from rev 1196106, gitlab/trunk/gitlab.tmpfiles.d)
Deleted:
  gitlab/repos/community-x86_64/PKGBUILD
  gitlab/repos/community-x86_64/configs.patch
  gitlab/repos/community-x86_64/environment
  gitlab/repos/community-x86_64/fixes.patch
  gitlab/repos/community-x86_64/gitlab-backup.service
  gitlab/repos/community-x86_64/gitlab-backup.timer
  gitlab/repos/community-x86_64/gitlab-mailroom.service
  gitlab/repos/community-x86_64/gitlab-puma.service
  gitlab/repos/community-x86_64/gitlab-sidekiq.service
  gitlab/repos/community-x86_64/gitlab.install
  gitlab/repos/community-x86_64/gitlab.logrotate
  gitlab/repos/community-x86_64/gitlab.target
  gitlab/repos/community-x86_64/gitlab.tmpfiles.d

-+
 PKGBUILD|  370 ++--
 configs.patch   |  604 +++---
 environment |6 
 fixes.patch |   40 +--
 gitlab-backup.service   |   38 +-
 gitlab-backup.timer |   20 -
 gitlab-mailroom.service |   42 +--
 gitlab-puma.service |   68 ++---
 gitlab-sidekiq.service  |   60 ++--
 gitlab.install  |   68 ++---
 gitlab.logrotate|   12 
 gitlab.target   |   14 -
 gitlab.tmpfiles.d   |2 
 13 files changed, 672 insertions(+), 672 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-07 00:05:18 UTC (rev 1196106)
+++ PKGBUILD2022-05-07 00:06:22 UTC (rev 1196107)
@@ -1,185 +0,0 @@
-# Maintainer: Anatol Pomozov 
-# Contributor: Sven-Hendrik Haase 
-# Contributor: Pavol (Lopo) Hluchy 
-# Contributor: Jonas Heinrich 
-# Contributor: Massimiliano Torromeo 
-# Contributor: Tobias Hunger 
-# Contributor: Stefan Tatschner 
-# Contributor: Caleb Maclennan 
-
-pkgname=gitlab
-pkgver=14.10.0
-pkgrel=1
-pkgdesc="Project management and code hosting application"
-arch=('x86_64')
-url="https://gitlab.com/gitlab-org/gitlab-foss;
-license=('MIT')
-options=(!buildflags)
-depends=('ruby2.7' 'git' 'gitlab-workhorse' 'gitlab-gitaly' 'openssh' 'redis' 
'libxslt' 'icu' 're2' 'http-parser' 'nodejs' 'openssl')
-makedepends=('cmake' 'postgresql' 'yarn' 'go' 'nodejs')
-optdepends=('postgresql: database backend'
-'python-docutils: reStructuredText markup language support'
-'smtp-server: mail server in order to receive mail notifications')
-backup=("etc/webapps/gitlab/database.yml"
-"etc/webapps/gitlab/gitlab.yml"
-"etc/webapps/gitlab/resque.yml"
-"etc/webapps/gitlab/puma.rb"
-"etc/webapps/gitlab/smtp_settings.rb"
-"etc/logrotate.d/gitlab")
-source=(git+https://gitlab.com/gitlab-org/gitlab-foss.git#tag=v$pkgver
-configs.patch
-fixes.patch
-environment
-gitlab-puma.service
-gitlab-sidekiq.service
-gitlab-backup.service
-gitlab-mailroom.service
-gitlab-backup.timer
-gitlab.target
-gitlab.tmpfiles.d
-gitlab.logrotate)
-install='gitlab.install'
-sha512sums=('SKIP'
-
'8de5f5a11a8b772d13e6c056e9150f253b6bb0ab21c7d3913c848571cfea2a5fb64f65511b4da1773c7a225efac66ea4010dedbbaec117bd6f43864a0960018a'
-
'3eb5058d6edc2d16f5558a3ee485ba796aa64fb4b9eb7595390322344b809fcb47a45be9d7fe36c822ac2724aeecb2905a0ea9a868a56349ac2bc5c8c9f070e3'
-
'5b1ca2958f03a5baf1c5576a1568072e8ed749e2d15745ecbcc4860d2dbd543f2f3ed077e8d87afac2670c9436b19fe498217b49916d56a4e31fb9811aeb9067'
-

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

2022-05-06 Thread Anatol Pomozov via arch-commits
Date: Saturday, May 7, 2022 @ 00:05:18
  Author: anatolik
Revision: 1196106

upgpkg: gitlab 14.10.2-1

Modified:
  gitlab/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-06 23:36:28 UTC (rev 1196105)
+++ PKGBUILD2022-05-07 00:05:18 UTC (rev 1196106)
@@ -8,7 +8,7 @@
 # Contributor: Caleb Maclennan 
 
 pkgname=gitlab
-pkgver=14.10.0
+pkgver=14.10.2
 pkgrel=1
 pkgdesc="Project management and code hosting application"
 arch=('x86_64')



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

2022-05-06 Thread Felix Yan via arch-commits
Date: Friday, May 6, 2022 @ 23:36:28
  Author: felixonmars
Revision: 1196105

archrelease: copy trunk to community-x86_64

Added:
  chafa/repos/community-x86_64/PKGBUILD
(from rev 1196104, chafa/trunk/PKGBUILD)
Deleted:
  chafa/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-06 23:36:16 UTC (rev 1196104)
+++ PKGBUILD2022-05-06 23:36:28 UTC (rev 1196105)
@@ -1,28 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=chafa
-pkgver=1.10.2
-pkgrel=1
-pkgdesc="Image-to-text converter supporting a wide range of symbols and 
palettes, transparency, animations, etc."
-arch=("x86_64")
-url="https://hpjansson.org/chafa/;
-depends=('imagemagick' 'libxslt')
-makedepends=('gtk-doc')
-license=("LGPL")
-source=(https://github.com/hpjansson/chafa/releases/download/$pkgver/chafa-$pkgver.tar.xz{,.asc})
-sha512sums=('eaa0a13b1915774f25ed9fe6d7f465e695644c79e96387b71671c43876dad5f703383a876ad4ea2b5a13b2391056224cfe38cecba31264698da37af80ad540b9'
-'SKIP')
-validpgpkeys=('C01EDE5BB0D91E26D003662EC76BB9FEEAD12EA7')  # Hans Petter 
Jansson
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./configure --prefix=/usr --enable-man
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  make DESTDIR="$pkgdir" install
-}

Copied: chafa/repos/community-x86_64/PKGBUILD (from rev 1196104, 
chafa/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-06 23:36:28 UTC (rev 1196105)
@@ -0,0 +1,28 @@
+# Maintainer: Felix Yan 
+
+pkgname=chafa
+pkgver=1.10.3
+pkgrel=1
+pkgdesc="Image-to-text converter supporting a wide range of symbols and 
palettes, transparency, animations, etc."
+arch=("x86_64")
+url="https://hpjansson.org/chafa/;
+depends=('imagemagick' 'libxslt')
+makedepends=('gtk-doc')
+license=("LGPL")
+source=(https://github.com/hpjansson/chafa/releases/download/$pkgver/chafa-$pkgver.tar.xz{,.asc})
+sha512sums=('29bcd5315a1c5bf08b214b9b58fabc64340e995a383b88e5f8245ba130b0506e4d13c34878d6cb32d1493fa1b8326520cbd176aeef22d932c72ede0430a38fda'
+'SKIP')
+validpgpkeys=('C01EDE5BB0D91E26D003662EC76BB9FEEAD12EA7')  # Hans Petter 
Jansson
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr --enable-man
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make DESTDIR="$pkgdir" install
+}



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

2022-05-06 Thread Felix Yan via arch-commits
Date: Friday, May 6, 2022 @ 23:36:16
  Author: felixonmars
Revision: 1196104

upgpkg: chafa 1.10.3-1

Modified:
  chafa/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-06 23:35:44 UTC (rev 1196103)
+++ PKGBUILD2022-05-06 23:36:16 UTC (rev 1196104)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=chafa
-pkgver=1.10.2
+pkgver=1.10.3
 pkgrel=1
 pkgdesc="Image-to-text converter supporting a wide range of symbols and 
palettes, transparency, animations, etc."
 arch=("x86_64")
@@ -10,7 +10,7 @@
 makedepends=('gtk-doc')
 license=("LGPL")
 
source=(https://github.com/hpjansson/chafa/releases/download/$pkgver/chafa-$pkgver.tar.xz{,.asc})
-sha512sums=('eaa0a13b1915774f25ed9fe6d7f465e695644c79e96387b71671c43876dad5f703383a876ad4ea2b5a13b2391056224cfe38cecba31264698da37af80ad540b9'
+sha512sums=('29bcd5315a1c5bf08b214b9b58fabc64340e995a383b88e5f8245ba130b0506e4d13c34878d6cb32d1493fa1b8326520cbd176aeef22d932c72ede0430a38fda'
 'SKIP')
 validpgpkeys=('C01EDE5BB0D91E26D003662EC76BB9FEEAD12EA7')  # Hans Petter 
Jansson
 



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

2022-05-06 Thread Felix Yan via arch-commits
Date: Friday, May 6, 2022 @ 23:35:44
  Author: felixonmars
Revision: 1196103

archrelease: copy trunk to community-any

Added:
  mill/repos/community-any/PKGBUILD
(from rev 1196102, mill/trunk/PKGBUILD)
Deleted:
  mill/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-06 23:35:38 UTC (rev 1196102)
+++ PKGBUILD2022-05-06 23:35:44 UTC (rev 1196103)
@@ -1,36 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Jiuyang Liu 
-# Contributor: Christian Krause ("wookietreiber") 

-# Contributor: Guillaume Raffin ("theelectronwill") 
-
-pkgname=mill
-pkgver=0.10.3
-pkgrel=1
-pkgdesc="Your shiny new Java/Scala build tool"
-arch=(any)
-url="https://www.lihaoyi.com/mill/index.html;
-license=('MIT')
-depends=('bash' 'java-environment')
-makedepends=('mill')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/lihaoyi/mill/archive/$pkgver.tar.gz;)
-sha512sums=('d0443be35b41f2afd77bc5a4a32be66f87dca05478305b0816c07a2c7d852d738318b3acdf14f8ae8702f3e3f52b13e70590700c96a9180e141b8edb37dee73d')
-
-prepare() {
-  cd mill-$pkgver
-  # workaround non-git build
-  sed -e "s/VcsVersion.vcsState().format()/\"$pkgver\"/" \
-  -e 's/VcsVersion.vcsState().lastTag.getOrElse//' \
-  -e "s/sys.error(\"No (last) git tag found. Your git history seems 
incomplete!\")/\"$pkgver\"/" \
-  -i build.sc
-}
-
-build() {
-  cd mill-$pkgver
-  mill -i all __.publishLocal assembly
-}
-
-package() {
-  cd mill-$pkgver
-  install -Dm755 out/assembly.dest/mill "$pkgdir"/usr/bin/mill
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/mill/LICENSE
-}

Copied: mill/repos/community-any/PKGBUILD (from rev 1196102, 
mill/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-06 23:35:44 UTC (rev 1196103)
@@ -0,0 +1,36 @@
+# Maintainer: Felix Yan 
+# Contributor: Jiuyang Liu 
+# Contributor: Christian Krause ("wookietreiber") 

+# Contributor: Guillaume Raffin ("theelectronwill") 
+
+pkgname=mill
+pkgver=0.10.4
+pkgrel=1
+pkgdesc="Your shiny new Java/Scala build tool"
+arch=(any)
+url="https://www.lihaoyi.com/mill/index.html;
+license=('MIT')
+depends=('bash' 'java-environment')
+makedepends=('mill')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/lihaoyi/mill/archive/$pkgver.tar.gz;)
+sha512sums=('1a96eb8d5eccde0215afbb5f88246013debc34e46df70283d015b8c625c92104bb55a158e81045e6afc3c251744a3f52af00e086043fc2813af3f72124b980bf')
+
+prepare() {
+  cd mill-$pkgver
+  # workaround non-git build
+  sed -e "s/VcsVersion.vcsState().format()/\"$pkgver\"/" \
+  -e 's/VcsVersion.vcsState().lastTag.getOrElse//' \
+  -e "s/sys.error(\"No (last) git tag found. Your git history seems 
incomplete!\")/\"$pkgver\"/" \
+  -i build.sc
+}
+
+build() {
+  cd mill-$pkgver
+  mill -i all __.publishLocal assembly
+}
+
+package() {
+  cd mill-$pkgver
+  install -Dm755 out/assembly.dest/mill "$pkgdir"/usr/bin/mill
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/mill/LICENSE
+}



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

2022-05-06 Thread Anatol Pomozov via arch-commits
Date: Friday, May 6, 2022 @ 23:35:38
  Author: anatolik
Revision: 1196102

archrelease: copy trunk to community-x86_64

Added:
  rocksdb/repos/community-x86_64/PKGBUILD
(from rev 1196100, rocksdb/trunk/PKGBUILD)
Deleted:
  rocksdb/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-06 23:35:32 UTC (rev 1196101)
+++ PKGBUILD2022-05-06 23:35:38 UTC (rev 1196102)
@@ -1,29 +0,0 @@
-# Maintainer: Anatol Pomozov
-# Contributor: László Várady 
-
-pkgname=rocksdb
-pkgver=7.0.4
-pkgrel=1
-pkgdesc='Embedded key-value store for fast storage'
-arch=(x86_64)
-url="https://rocksdb.org/;
-license=(GPL2 Apache)
-depends=(bzip2 jemalloc lz4 snappy zlib zstd tbb liburing)
-makedepends=(python)
-source=(rocksdb-$pkgver.tar.gz::https://github.com/facebook/rocksdb/archive/v$pkgver.tar.gz)
-sha256sums=('b1282e07a6b736c0d8c2a7ff69c5a53abbaac1ea6a8b3a07235370cb1f8eb160')
-
-build() {
-  cd rocksdb-$pkgver
-  PORTABLE=1 USE_RTTI=1 make shared_lib
-}
-
-check() {
-  cd rocksdb-$pkgver
-  # make check # fails due to https://github.com/facebook/rocksdb/issues/8974
-}
-
-package() {
-  cd rocksdb-$pkgver
-  make install-shared DESTDIR="$pkgdir" PREFIX=/usr
-}

Copied: rocksdb/repos/community-x86_64/PKGBUILD (from rev 1196100, 
rocksdb/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-06 23:35:38 UTC (rev 1196102)
@@ -0,0 +1,29 @@
+# Maintainer: Anatol Pomozov
+# Contributor: László Várady 
+
+pkgname=rocksdb
+pkgver=7.2.2
+pkgrel=1
+pkgdesc='Embedded key-value store for fast storage'
+arch=(x86_64)
+url="https://rocksdb.org/;
+license=(GPL2 Apache)
+depends=(bzip2 jemalloc lz4 snappy zlib zstd tbb liburing)
+makedepends=(python)
+source=(rocksdb-$pkgver.tar.gz::https://github.com/facebook/rocksdb/archive/v$pkgver.tar.gz)
+sha256sums=('c4ea6bd2e3ffe3f0f8921c699234d59108c9122d61b0ba2aa78358642a7b614e')
+
+build() {
+  cd rocksdb-$pkgver
+  PORTABLE=1 USE_RTTI=1 make shared_lib
+}
+
+check() {
+  cd rocksdb-$pkgver
+  # make check # fails due to https://github.com/facebook/rocksdb/issues/8974
+}
+
+package() {
+  cd rocksdb-$pkgver
+  make install-shared DESTDIR="$pkgdir" PREFIX=/usr
+}



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

2022-05-06 Thread Felix Yan via arch-commits
Date: Friday, May 6, 2022 @ 23:35:32
  Author: felixonmars
Revision: 1196101

upgpkg: mill 0.10.4-1

Modified:
  mill/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-06 23:35:19 UTC (rev 1196100)
+++ PKGBUILD2022-05-06 23:35:32 UTC (rev 1196101)
@@ -4,7 +4,7 @@
 # Contributor: Guillaume Raffin ("theelectronwill") 
 
 pkgname=mill
-pkgver=0.10.3
+pkgver=0.10.4
 pkgrel=1
 pkgdesc="Your shiny new Java/Scala build tool"
 arch=(any)
@@ -13,7 +13,7 @@
 depends=('bash' 'java-environment')
 makedepends=('mill')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/lihaoyi/mill/archive/$pkgver.tar.gz;)
-sha512sums=('d0443be35b41f2afd77bc5a4a32be66f87dca05478305b0816c07a2c7d852d738318b3acdf14f8ae8702f3e3f52b13e70590700c96a9180e141b8edb37dee73d')
+sha512sums=('1a96eb8d5eccde0215afbb5f88246013debc34e46df70283d015b8c625c92104bb55a158e81045e6afc3c251744a3f52af00e086043fc2813af3f72124b980bf')
 
 prepare() {
   cd mill-$pkgver



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

2022-05-06 Thread Anatol Pomozov via arch-commits
Date: Friday, May 6, 2022 @ 23:35:19
  Author: anatolik
Revision: 1196100

upgpkg: rocksdb 7.2.2-1

Modified:
  rocksdb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-06 23:30:39 UTC (rev 1196099)
+++ PKGBUILD2022-05-06 23:35:19 UTC (rev 1196100)
@@ -2,7 +2,7 @@
 # Contributor: László Várady 
 
 pkgname=rocksdb
-pkgver=7.0.4
+pkgver=7.2.2
 pkgrel=1
 pkgdesc='Embedded key-value store for fast storage'
 arch=(x86_64)
@@ -11,7 +11,7 @@
 depends=(bzip2 jemalloc lz4 snappy zlib zstd tbb liburing)
 makedepends=(python)
 
source=(rocksdb-$pkgver.tar.gz::https://github.com/facebook/rocksdb/archive/v$pkgver.tar.gz)
-sha256sums=('b1282e07a6b736c0d8c2a7ff69c5a53abbaac1ea6a8b3a07235370cb1f8eb160')
+sha256sums=('c4ea6bd2e3ffe3f0f8921c699234d59108c9122d61b0ba2aa78358642a7b614e')
 
 build() {
   cd rocksdb-$pkgver



[arch-commits] Commit in aarch64-linux-gnu-gcc/repos/community-x86_64 (2 files)

2022-05-06 Thread Anatol Pomozov via arch-commits
Date: Friday, May 6, 2022 @ 23:30:39
  Author: anatolik
Revision: 1196099

archrelease: copy trunk to community-x86_64

Added:
  aarch64-linux-gnu-gcc/repos/community-x86_64/PKGBUILD
(from rev 1196098, aarch64-linux-gnu-gcc/trunk/PKGBUILD)
Deleted:
  aarch64-linux-gnu-gcc/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-06 23:30:19 UTC (rev 1196098)
+++ PKGBUILD2022-05-06 23:30:39 UTC (rev 1196099)
@@ -1,99 +0,0 @@
-# Maintainer: Anatol Pomozov 
-# Maintainer: Eli Schwartz 
-
-_target=aarch64-linux-gnu
-pkgname=$_target-gcc
-pkgver=11.3.0
-pkgrel=1
-#_snapshot=8-20190111
-pkgdesc='The GNU Compiler Collection - cross compiler for ARM64 target'
-arch=(x86_64)
-url='https://gcc.gnu.org/'
-license=(GPL LGPL FDL)
-depends=($_target-binutils $_target-glibc libmpc zlib libisl zstd)
-makedepends=(gmp mpfr)
-options=(!emptydirs !strip staticlibs !lto)
-source=(https://ftp.gnu.org/gnu/gcc/gcc-$pkgver/gcc-$pkgver.tar.xz{,.sig})
-#https://gcc.gnu.org/pub/gcc/snapshots/$_snapshot/gcc-$_snapshot.tar.xz
-sha256sums=('b47cf2818691f5b1e21df2bb38c795fac2cfbd640ede2d0a5e1c89e338a3ac39'
-'SKIP')
-validpgpkeys=(D3A93CAD751C2AF4F8C7AD516C35B99309B5FA62  # Jakub Jelinek 

-  33C235A34C46AA3FFB293709A328C3A2C3C45C06  # Jakub Jelinek 

-  13975A70E63C361C73AE69EF6EEB81F8981C74C7) # Richard Guenther 

-
-if [ -n "$_snapshot" ]; then
-  _basedir=gcc-$_snapshot
-else
-  _basedir=gcc-$pkgver
-fi
-
-prepare() {
-  cd $_basedir
-
-  echo $pkgver > gcc/BASE-VER
-
-  # Do not run fixincludes
-  sed -i 's@\./fixinc\.sh@-c true@' gcc/Makefile.in
-
-  rm -rf "$srcdir"/gcc-build
-  mkdir "$srcdir"/gcc-build
-}
-
-build() {
-  cd gcc-build
-
-  # using -pipe causes spurious test-suite failures
-  # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48565
-  CFLAGS=${CFLAGS/-pipe/}
-  CXXFLAGS=${CXXFLAGS/-pipe/}
-
-  # Credits @allanmcrae
-  # 
https://github.com/allanmcrae/toolchain/blob/f18604d70c5933c31b51a320978711e4e6791cf1/gcc/PKGBUILD
-  # TODO: properly deal with the build issues resulting from this
-  CFLAGS=${CFLAGS/-Werror=format-security/}
-  CXXFLAGS=${CXXFLAGS/-Werror=format-security/}
-
-  "$srcdir"/$_basedir/configure \
-  --prefix=/usr \
-  --program-prefix=$_target- \
-  --with-local-prefix=/usr/$_target \
-  --with-sysroot=/usr/$_target \
-  --with-build-sysroot=/usr/$_target \
-  --with-native-system-header-dir=/include \
-  --libdir=/usr/lib --libexecdir=/usr/lib \
-  --target=$_target --host=$CHOST --build=$CHOST \
-  --disable-nls --enable-default-pie \
-  --enable-languages=c,c++,fortran \
-  --enable-shared --enable-threads=posix \
-  --with-system-zlib --with-isl --enable-__cxa_atexit \
-  --disable-libunwind-exceptions --enable-clocale=gnu \
-  --disable-libstdcxx-pch --disable-libssp \
-  --enable-gnu-unique-object --enable-linker-build-id \
-  --enable-lto --enable-plugin --enable-install-libiberty \
-  --with-linker-hash-style=gnu --enable-gnu-indirect-function \
-  --disable-multilib --disable-werror \
-  --enable-checking=release
-
-  make
-}
-
-package() {
-  cd gcc-build
-
-  make DESTDIR="$pkgdir" install-gcc 
install-target-{libgcc,libstdc++-v3,libgomp,libgfortran,libquadmath,libatomic}
-
-  # strip target binaries
-  find "$pkgdir"/usr/lib/gcc/$_target/ "$pkgdir"/usr/$_target/lib \
-   -type f -and \( -name \*.a -or -name \*.o \) \
-   -exec $_target-objcopy -R .comment -R .note -R .debug_info -R 
.debug_aranges \
-   -R .debug_pubnames -R .debug_pubtypes -R .debug_abbrev -R 
.debug_line \
-   -R .debug_str -R .debug_ranges -R .debug_loc '{}' \;
-
-  # strip host binaries
-  find "$pkgdir"/usr/bin/ "$pkgdir"/usr/lib/gcc/$_target/ -type f -and \( 
-executable \) -exec strip '{}' \;
-
-  # Remove files that conflict with host gcc package
-  rm -r "$pkgdir"/usr/share/man/man7
-  rm -r "$pkgdir"/usr/share/info
-  rm -r "$pkgdir"/usr/share/gcc-$pkgver
-}

Copied: aarch64-linux-gnu-gcc/repos/community-x86_64/PKGBUILD (from rev 
1196098, aarch64-linux-gnu-gcc/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-06 23:30:39 UTC (rev 1196099)
@@ -0,0 +1,99 @@
+# Maintainer: Anatol Pomozov 
+# Maintainer: Eli Schwartz 
+
+_target=aarch64-linux-gnu
+pkgname=$_target-gcc
+pkgver=12.1.0
+pkgrel=1
+#_snapshot=8-20190111
+pkgdesc='The GNU Compiler Collection - cross compiler for ARM64 target'
+arch=(x86_64)
+url='https://gcc.gnu.org/'
+license=(GPL LGPL FDL)
+depends=($_target-binutils $_target-glibc libmpc zlib libisl zstd)
+makedepends=(gmp mpfr)
+options=(!emptydirs !strip staticlibs !lto)

[arch-commits] Commit in aarch64-linux-gnu-gcc/trunk (PKGBUILD)

2022-05-06 Thread Anatol Pomozov via arch-commits
Date: Friday, May 6, 2022 @ 23:30:19
  Author: anatolik
Revision: 1196098

upgpkg: aarch64-linux-gnu-gcc 12.1.0-1

Modified:
  aarch64-linux-gnu-gcc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-06 23:29:37 UTC (rev 1196097)
+++ PKGBUILD2022-05-06 23:30:19 UTC (rev 1196098)
@@ -3,7 +3,7 @@
 
 _target=aarch64-linux-gnu
 pkgname=$_target-gcc
-pkgver=11.3.0
+pkgver=12.1.0
 pkgrel=1
 #_snapshot=8-20190111
 pkgdesc='The GNU Compiler Collection - cross compiler for ARM64 target'
@@ -15,7 +15,7 @@
 options=(!emptydirs !strip staticlibs !lto)
 source=(https://ftp.gnu.org/gnu/gcc/gcc-$pkgver/gcc-$pkgver.tar.xz{,.sig})
 #https://gcc.gnu.org/pub/gcc/snapshots/$_snapshot/gcc-$_snapshot.tar.xz
-sha256sums=('b47cf2818691f5b1e21df2bb38c795fac2cfbd640ede2d0a5e1c89e338a3ac39'
+sha256sums=('62fd634889f31c02b64af2c468f064b47ad1ca78411c45abe6ac4b5f8dd19c7b'
 'SKIP')
 validpgpkeys=(D3A93CAD751C2AF4F8C7AD516C35B99309B5FA62  # Jakub Jelinek 

   33C235A34C46AA3FFB293709A328C3A2C3C45C06  # Jakub Jelinek 




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

2022-05-06 Thread Levente Polyak via arch-commits
Date: Friday, May 6, 2022 @ 23:29:37
  Author: anthraxx
Revision: 1196097

archrelease: copy trunk to community-any

Added:
  vit/repos/community-any/PKGBUILD
(from rev 1196096, vit/trunk/PKGBUILD)
Deleted:
  vit/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-06 23:29:32 UTC (rev 1196096)
+++ PKGBUILD2022-05-06 23:29:37 UTC (rev 1196097)
@@ -1,36 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Ivan Sichmann Freitas 
-
-pkgname=vit
-pkgver=2.1.0
-pkgrel=2
-pkgdesc='Terminal interface for Taskwarrior with Vim key bindings and 
colorization'
-url='https://github.com/vit-project/vit'
-arch=('any')
-license=('MIT')
-depends=('task' 'python' 'python-pytz' 'python-tzlocal' 'python-urwid' 
'python-tasklib')
-makedepends=('python-setuptools')
-source=(${url}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha256sums=('56676651164fb71878a0c1e4bb369cfa336d46e6fd0de7e6167b57fca7eaf662')
-b2sums=('2d4242399c399808783a670b853b31586471bd12fad2f9109d760569239d1ebcc5ddead4eb6803300d803fcb34b73c3dd42c091d7a619357f26a7bb10801702c')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  python setup.py build
-}
-
-check() {
-  cd ${pkgname}-${pkgver}
-  # TODO: requires python-terminal
-  # ./run-tests.sh
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  python setup.py install --root="${pkgdir}" -O1 --skip-build
-  install -Dm 644 scripts/bash/vit.bash_completion 
"${pkgdir}/usr/share/bash-completion/completions/vit"
-  install -Dm 644 *.md -t "${pkgdir}/usr/share/doc/${pkgname}"
-  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: vit/repos/community-any/PKGBUILD (from rev 1196096, vit/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-06 23:29:37 UTC (rev 1196097)
@@ -0,0 +1,36 @@
+# Maintainer: Levente Polyak 
+# Contributor: Ivan Sichmann Freitas 
+
+pkgname=vit
+pkgver=2.2.0
+pkgrel=1
+pkgdesc='Terminal interface for Taskwarrior with Vim key bindings and 
colorization'
+url='https://github.com/vit-project/vit'
+arch=('any')
+license=('MIT')
+depends=('task' 'python' 'python-pytz' 'python-tzlocal' 'python-urwid' 
'python-tasklib')
+makedepends=('python-setuptools')
+source=(${url}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha256sums=('8506844f172d31ecba04c243467c8a5a631de8365f8307ba446ba97b5efe1d5d')
+b2sums=('ee7d483bb418cc7d83e33b8ae350ec21a1b3e015a0029e46a99cd6ffdb8dd01d3fffc054e95458da4deb615a2cc113fc464d90477d1179da024527809759718c')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  python setup.py build
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  # TODO: requires python-terminal
+  # ./run-tests.sh
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  python setup.py install --root="${pkgdir}" -O1 --skip-build
+  install -Dm 644 scripts/bash/vit.bash_completion 
"${pkgdir}/usr/share/bash-completion/completions/vit"
+  install -Dm 644 *.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:



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

2022-05-06 Thread Levente Polyak via arch-commits
Date: Friday, May 6, 2022 @ 23:29:32
  Author: anthraxx
Revision: 1196096

upgpkg: vit 2.2.0-1

Modified:
  vit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-06 23:23:12 UTC (rev 1196095)
+++ PKGBUILD2022-05-06 23:29:32 UTC (rev 1196096)
@@ -2,8 +2,8 @@
 # Contributor: Ivan Sichmann Freitas 
 
 pkgname=vit
-pkgver=2.1.0
-pkgrel=2
+pkgver=2.2.0
+pkgrel=1
 pkgdesc='Terminal interface for Taskwarrior with Vim key bindings and 
colorization'
 url='https://github.com/vit-project/vit'
 arch=('any')
@@ -11,8 +11,8 @@
 depends=('task' 'python' 'python-pytz' 'python-tzlocal' 'python-urwid' 
'python-tasklib')
 makedepends=('python-setuptools')
 source=(${url}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha256sums=('56676651164fb71878a0c1e4bb369cfa336d46e6fd0de7e6167b57fca7eaf662')
-b2sums=('2d4242399c399808783a670b853b31586471bd12fad2f9109d760569239d1ebcc5ddead4eb6803300d803fcb34b73c3dd42c091d7a619357f26a7bb10801702c')
+sha256sums=('8506844f172d31ecba04c243467c8a5a631de8365f8307ba446ba97b5efe1d5d')
+b2sums=('ee7d483bb418cc7d83e33b8ae350ec21a1b3e015a0029e46a99cd6ffdb8dd01d3fffc054e95458da4deb615a2cc113fc464d90477d1179da024527809759718c')
 
 build() {
   cd ${pkgname}-${pkgver}



[arch-commits] Commit in arm-none-eabi-gcc/repos/community-x86_64 (PKGBUILD PKGBUILD)

2022-05-06 Thread Anatol Pomozov via arch-commits
Date: Friday, May 6, 2022 @ 23:23:12
  Author: anatolik
Revision: 1196095

archrelease: copy trunk to community-x86_64

Added:
  arm-none-eabi-gcc/repos/community-x86_64/PKGBUILD
(from rev 1196094, arm-none-eabi-gcc/trunk/PKGBUILD)
Deleted:
  arm-none-eabi-gcc/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-06 23:22:49 UTC (rev 1196094)
+++ PKGBUILD2022-05-06 23:23:12 UTC (rev 1196095)
@@ -1,124 +0,0 @@
-# Maintainer: Anatol Pomozov 
-# Contributor: Martin Schmölzer 
-
-_target=arm-none-eabi
-pkgname=$_target-gcc
-pkgver=11.3.0
-pkgrel=1
-#_snapshot=8-20180427
-pkgdesc='The GNU Compiler Collection - cross compiler for ARM EABI 
(bare-metal) target'
-arch=(x86_64)
-url='https://gcc.gnu.org/'
-license=(GPL LGPL FDL)
-depends=($_target-binutils zlib libmpc libisl zstd)
-makedepends=(gmp mpfr $_target-newlib)
-optdepends=('arm-none-eabi-newlib: Standard C library optimized for embedded 
systems')
-options=(!emptydirs !strip !lto)
-source=(https://ftp.gnu.org/gnu/gcc/gcc-$pkgver/gcc-$pkgver.tar.xz{,.sig})
-#ftp://gcc.gnu.org/pub/gcc/snapshots/$_snapshot/gcc-$_snapshot.tar.xz
-sha256sums=('b47cf2818691f5b1e21df2bb38c795fac2cfbd640ede2d0a5e1c89e338a3ac39'
-'SKIP')
-validpgpkeys=(33C235A34C46AA3FFB293709A328C3A2C3C45C06  # Jakub Jelinek 

-  D3A93CAD751C2AF4F8C7AD516C35B99309B5FA62  # Jakub Jelinek 

-  13975A70E63C361C73AE69EF6EEB81F8981C74C7) # Richard Guenther 

-
-if [ -n "$_snapshot" ]; then
-  _basedir=gcc-$_snapshot
-else
-  _basedir=gcc-$pkgver
-fi
-
-prepare() {
-  cd $_basedir
-
-  echo $pkgver > gcc/BASE-VER
-
-  mkdir "$srcdir"/build-{gcc,gcc-nano}
-}
-
-_build_gcc() {
-  "$srcdir"/$_basedir/configure \
---target=$_target \
---prefix=/usr \
---with-sysroot=/usr/$_target \
---with-native-system-header-dir=/include \
---libexecdir=/usr/lib \
---enable-languages=c,c++ \
---enable-plugins \
---disable-decimal-float \
---disable-libffi \
---disable-libgomp \
---disable-libmudflap \
---disable-libquadmath \
---disable-libssp \
---disable-libstdcxx-pch \
---disable-nls \
---disable-shared \
---disable-threads \
---disable-tls \
---with-gnu-as \
---with-gnu-ld \
---with-system-zlib \
---with-newlib \
---with-headers=/usr/$_target/include \
---with-python-dir=share/gcc-arm-none-eabi \
---with-gmp \
---with-mpfr \
---with-mpc \
---with-isl \
---with-libelf \
---enable-gnu-indirect-function \
---with-host-libstdcxx='-static-libgcc -Wl,-Bstatic,-lstdc++,-Bdynamic -lm' 
\
---with-pkgversion='Arch Repository' \
---with-bugurl='https://bugs.archlinux.org/' \
---with-multilib-list=rmprofile
-
-  make INHIBIT_LIBC_CFLAGS='-DUSE_TM_CLONE_REGISTRY=0'
-}
-
-build() {
-  # Credits @allanmcrae
-  # 
https://github.com/allanmcrae/toolchain/blob/f18604d70c5933c31b51a320978711e4e6791cf1/gcc/PKGBUILD
-  # TODO: properly deal with the build issues resulting from this
-  CFLAGS=${CFLAGS/-Werror=format-security/}
-  CXXFLAGS=${CXXFLAGS/-Werror=format-security/}
-
-  cd "$srcdir"/build-gcc
-  export CFLAGS_FOR_TARGET='-g -Os -ffunction-sections -fdata-sections'
-  export CXXFLAGS_FOR_TARGET='-g -Os -ffunction-sections -fdata-sections'
-  _build_gcc
-
-  # Build libstdc++ without exceptions support (the 'nano' variant)
-  cd "$srcdir"/build-gcc-nano
-  export CFLAGS_FOR_TARGET='-g -Os -ffunction-sections -fdata-sections 
-fno-exceptions'
-  export CXXFLAGS_FOR_TARGET='-g -Os -ffunction-sections -fdata-sections 
-fno-exceptions'  
-  _build_gcc
-}
-
-package() {
-  cd "$srcdir"/build-gcc
-  make DESTDIR="$pkgdir" install -j1
-
-  cd "$srcdir"/build-gcc-nano
-  make DESTDIR="$pkgdir.nano" install -j1
-  # we need only libstdc nano files
-  multilibs=( $("$pkgdir"/usr/bin/$_target-gcc -print-multi-lib 2>/dev/null) )
-  for multilib in "${multilibs[@]}"; do
-dir="${multilib%%;*}"
-from_dir="$pkgdir".nano/usr/$_target/lib/"$dir"
-to_dir="$pkgdir"/usr/$_target/lib/"$dir"
-cp -f "$from_dir"/libstdc++.a "$to_dir"/libstdc++_nano.a
-cp -f "$from_dir"/libsupc++.a "$to_dir"/libsupc++_nano.a
-  done
-
-  # strip target binaries
-  find "$pkgdir"/usr/lib/gcc/$_target/$pkgver "$pkgdir"/usr/$_target/lib -type 
f -and \( -name \*.a -or -name \*.o \) -exec $_target-objcopy -R .comment -R 
.note -R .debug_info -R .debug_aranges -R .debug_pubnames -R .debug_pubtypes -R 
.debug_abbrev -R .debug_line -R .debug_str -R .debug_ranges -R .debug_loc '{}' 
\;
-
-  # strip host binaries
-  find "$pkgdir"/usr/bin/ "$pkgdir"/usr/lib/gcc/$_target/$pkgver -type f -and 
\( -executable \) -exec strip '{}' \;
-
-  # Remove files that conflict with host gcc package
-  rm -r "$pkgdir"/usr/share/man/man7
-  rm -r 

[arch-commits] Commit in arm-none-eabi-gcc/trunk (PKGBUILD)

2022-05-06 Thread Anatol Pomozov via arch-commits
Date: Friday, May 6, 2022 @ 23:22:49
  Author: anatolik
Revision: 1196094

upgpkg: arm-none-eabi-gcc 12.1.0-1

Modified:
  arm-none-eabi-gcc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-06 23:20:23 UTC (rev 1196093)
+++ PKGBUILD2022-05-06 23:22:49 UTC (rev 1196094)
@@ -3,7 +3,7 @@
 
 _target=arm-none-eabi
 pkgname=$_target-gcc
-pkgver=11.3.0
+pkgver=12.1.0
 pkgrel=1
 #_snapshot=8-20180427
 pkgdesc='The GNU Compiler Collection - cross compiler for ARM EABI 
(bare-metal) target'
@@ -16,7 +16,7 @@
 options=(!emptydirs !strip !lto)
 source=(https://ftp.gnu.org/gnu/gcc/gcc-$pkgver/gcc-$pkgver.tar.xz{,.sig})
 #ftp://gcc.gnu.org/pub/gcc/snapshots/$_snapshot/gcc-$_snapshot.tar.xz
-sha256sums=('b47cf2818691f5b1e21df2bb38c795fac2cfbd640ede2d0a5e1c89e338a3ac39'
+sha256sums=('62fd634889f31c02b64af2c468f064b47ad1ca78411c45abe6ac4b5f8dd19c7b'
 'SKIP')
 validpgpkeys=(33C235A34C46AA3FFB293709A328C3A2C3C45C06  # Jakub Jelinek 

   D3A93CAD751C2AF4F8C7AD516C35B99309B5FA62  # Jakub Jelinek 




[arch-commits] Commit in visualvm/repos/extra-x86_64 (6 files)

2022-05-06 Thread Levente Polyak via arch-commits
Date: Friday, May 6, 2022 @ 23:22:43
  Author: anthraxx
Revision: 444830

archrelease: copy trunk to extra-x86_64

Added:
  visualvm/repos/extra-x86_64/PKGBUILD
(from rev 444829, visualvm/trunk/PKGBUILD)
  visualvm/repos/extra-x86_64/icon.png
(from rev 444829, visualvm/trunk/icon.png)
  visualvm/repos/extra-x86_64/visualvm.desktop
(from rev 444829, visualvm/trunk/visualvm.desktop)
Deleted:
  visualvm/repos/extra-x86_64/PKGBUILD
  visualvm/repos/extra-x86_64/icon.png
  visualvm/repos/extra-x86_64/visualvm.desktop

--+
 PKGBUILD |  102 ++---
 visualvm.desktop |   16 
 2 files changed, 59 insertions(+), 59 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-06 23:22:37 UTC (rev 444829)
+++ PKGBUILD2022-05-06 23:22:43 UTC (rev 444830)
@@ -1,51 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Guillaume ALAUX 
-# Contributor: Kristof JOZSA 
-# Contributor: Andrius Semionovas 
-
-pkgname=visualvm
-pkgver=2.1
-_shortver=${pkgver//\./}
-pkgrel=1
-pkgdesc='Visual tool integrating several commandline JDK tools and lightweight 
profiling capabilities'
-url='https://visualvm.github.io/'
-arch=('x86_64')
-license=('custom:GPL')
-depends=('java-environment')
-source=(https://github.com/visualvm/visualvm.src/releases/download/${pkgver}/${pkgname}_${_shortver}.zip
-visualvm.desktop
-icon.png)
-sha256sums=('40803e02fdbc49c7db1a45bc577d78cea65aef9a38bfff402482500fdae2d072'
-'e820807e8d78446cf156a3947d97856e24865bb0d8c957e9ce2fed309c737441'
-'452fbd85c968ec7176c5894bc4106b7e25310314d44278d807510675b6a5c864')
-b2sums=('5176db3d6f6716c009201ece5e8e123341253d02062cbc66aa1f36cc002e5245e81c5a644ad6f49e438adcf183e82d2bbe4609a166bd8e251d3f49cf0b1663eb'
-
'ec51d5613e0b8103c5596b8549bfea2eb7cf6fe7792c790ef67007d469c3ddb0fb8990f9ea1aa575f412b62787c43225a583c2d6936393cbcb1938d396717e18'
-
'5f7659620de6b3d67716e700a5e8724e03cf3343c188a2d5c2470950c27c8e045209e87951971a969497b38f0dd5eff8a021e427367b838254040c6d25eb0b5d')
-
-package() {
-  cd ${pkgname}_${_shortver}
-
-  install -d "${pkgdir}/usr/share/${pkgname}"
-  cp -R bin platform visualvm "${pkgdir}/usr/share/${pkgname}"
-
-  install -d "${pkgdir}/etc/${pkgname}"
-  cp -R etc/* "${pkgdir}/etc/${pkgname}"
-  ln -s /etc/${pkgname} "${pkgdir}/usr/share/${pkgname}/etc"
-  # 'visualvm' shell script cannot even set his own variable 'visualvm_jdkhome'
-  sed -i \
--e 's|#visualvm_jdkhome="/path/to/jdk"|visualvm_jdkhome="${JAVA_HOME}"|' \
--e 
's|visualvm_default_options="|visualvm_default_options="-J-Dawt.useSystemAAFontSettings=on
 |' \
-  "${pkgdir}/etc/${pkgname}/visualvm.conf"
-
-  find "${pkgdir}"/usr/share/${pkgname} \( -name "*.exe" -o -name "*.dll" \) 
-delete
-
-  install -d "${pkgdir}/usr/bin"
-  ln -s /usr/share/${pkgname}/bin/visualvm "${pkgdir}/usr/bin/${pkgname}"
-
-  install -Dm 644 "${srcdir}/icon.png" -t "${pkgdir}/usr/share/${pkgname}"
-  install -Dm 644 "${srcdir}/visualvm.desktop" -t 
"${pkgdir}/usr/share/applications"
-
-  install -Dm 644 LICENSE.txt -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: visualvm/repos/extra-x86_64/PKGBUILD (from rev 444829, 
visualvm/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-06 23:22:43 UTC (rev 444830)
@@ -0,0 +1,51 @@
+# Maintainer: Levente Polyak 
+# Contributor: Guillaume ALAUX 
+# Contributor: Kristof JOZSA 
+# Contributor: Andrius Semionovas 
+
+pkgname=visualvm
+pkgver=2.1.3
+_shortver=${pkgver//\./}
+pkgrel=1
+pkgdesc='Visual tool integrating several commandline JDK tools and lightweight 
profiling capabilities'
+url='https://visualvm.github.io/'
+arch=('x86_64')
+license=('custom:GPL')
+depends=('java-environment')
+source=(https://github.com/visualvm/visualvm.src/releases/download/${pkgver}/${pkgname}_${_shortver}.zip
+visualvm.desktop
+icon.png)
+sha256sums=('3f3388bf61718defdde12d000e2ffd744399eb35fe58f9ee9fc2496901f5e73e'
+'e820807e8d78446cf156a3947d97856e24865bb0d8c957e9ce2fed309c737441'
+'452fbd85c968ec7176c5894bc4106b7e25310314d44278d807510675b6a5c864')
+b2sums=('1ce584c1f7568da1d3068b2b1dc35bf3a2ce3db80dfff261020470f994cc15d56c837124a071a6ff328b1985f1525ae32cf4d8de7ccde3f6a3d79d1498be7ae9'
+
'ec51d5613e0b8103c5596b8549bfea2eb7cf6fe7792c790ef67007d469c3ddb0fb8990f9ea1aa575f412b62787c43225a583c2d6936393cbcb1938d396717e18'
+
'5f7659620de6b3d67716e700a5e8724e03cf3343c188a2d5c2470950c27c8e045209e87951971a969497b38f0dd5eff8a021e427367b838254040c6d25eb0b5d')
+
+package() {
+  cd ${pkgname}_${_shortver}
+
+  install -d "${pkgdir}/usr/share/${pkgname}"
+  cp -R bin platform visualvm "${pkgdir}/usr/share/${pkgname}"
+
+  install -d "${pkgdir}/etc/${pkgname}"
+  cp -R etc/* 

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

2022-05-06 Thread Levente Polyak via arch-commits
Date: Friday, May 6, 2022 @ 23:22:37
  Author: anthraxx
Revision: 444829

upgpkg: visualvm 2.1.3-1

Modified:
  visualvm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-06 23:12:53 UTC (rev 444828)
+++ PKGBUILD2022-05-06 23:22:37 UTC (rev 444829)
@@ -4,7 +4,7 @@
 # Contributor: Andrius Semionovas 
 
 pkgname=visualvm
-pkgver=2.1
+pkgver=2.1.3
 _shortver=${pkgver//\./}
 pkgrel=1
 pkgdesc='Visual tool integrating several commandline JDK tools and lightweight 
profiling capabilities'
@@ -15,10 +15,10 @@
 
source=(https://github.com/visualvm/visualvm.src/releases/download/${pkgver}/${pkgname}_${_shortver}.zip
 visualvm.desktop
 icon.png)
-sha256sums=('40803e02fdbc49c7db1a45bc577d78cea65aef9a38bfff402482500fdae2d072'
+sha256sums=('3f3388bf61718defdde12d000e2ffd744399eb35fe58f9ee9fc2496901f5e73e'
 'e820807e8d78446cf156a3947d97856e24865bb0d8c957e9ce2fed309c737441'
 '452fbd85c968ec7176c5894bc4106b7e25310314d44278d807510675b6a5c864')
-b2sums=('5176db3d6f6716c009201ece5e8e123341253d02062cbc66aa1f36cc002e5245e81c5a644ad6f49e438adcf183e82d2bbe4609a166bd8e251d3f49cf0b1663eb'
+b2sums=('1ce584c1f7568da1d3068b2b1dc35bf3a2ce3db80dfff261020470f994cc15d56c837124a071a6ff328b1985f1525ae32cf4d8de7ccde3f6a3d79d1498be7ae9'
 
'ec51d5613e0b8103c5596b8549bfea2eb7cf6fe7792c790ef67007d469c3ddb0fb8990f9ea1aa575f412b62787c43225a583c2d6936393cbcb1938d396717e18'
 
'5f7659620de6b3d67716e700a5e8724e03cf3343c188a2d5c2470950c27c8e045209e87951971a969497b38f0dd5eff8a021e427367b838254040c6d25eb0b5d')
 



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

2022-05-06 Thread Levente Polyak via arch-commits
Date: Friday, May 6, 2022 @ 23:20:23
  Author: anthraxx
Revision: 1196093

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-06 23:20:18 UTC (rev 1196092)
+++ PKGBUILD2022-05-06 23:20:23 UTC (rev 1196093)
@@ -1,42 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: arch3y 
-
-_gitname=yara-python
-pkgname=python-yara
-pkgver=4.1.0
-_gitcommit=dc838e211e45442d219012099aaa63efa812c4be
-pkgrel=3
-pkgdesc='Tool aimed at helping malware researchers to identify and classify 
malware samples'
-url='https://github.com/VirusTotal/yara-python'
-arch=('x86_64')
-license=('Apache')
-depends=('python' 'yara' 'libyara.so' 'glibc')
-makedepends=('git' 'python-setuptools')
-source=(${pkgname}::git+"https://github.com/VirusTotal/${_gitname}#commit=${_gitcommit};)
-sha512sums=('SKIP')
-
-pkgver() {
-  cd ${pkgname}
-  git describe --tags --match 'v*' | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
-}
-
-build() {
-  cd ${pkgname}
-  python setup.py build --dynamic-linking
-}
-
-check() {
-  cd ${pkgname}
-  local PYTHONVERSION="$(python -c 'import sys; 
print("{}.{}".format(sys.version_info.major, sys.version_info.minor))')"
-  PYTHONPATH="build/lib.linux-${CARCH}-${PYTHONVERSION}" \
-python tests.py
-}
-
-package() {
-  cd ${pkgname}
-  python setup.py install --root="${pkgdir}" -O1 --skip-build
-  install -Dm 644 README.rst -t "${pkgdir}/usr/share/doc/${pkgname}"
-  ln -s /usr/share/doc/yara/docs "${pkgdir}/usr/share/doc/${pkgname}/docs"
-}
-
-# vim: ts=2 sw=2 et:

Copied: python-yara/repos/community-x86_64/PKGBUILD (from rev 1196092, 
python-yara/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-06 23:20:23 UTC (rev 1196093)
@@ -0,0 +1,42 @@
+# Maintainer: Levente Polyak 
+# Contributor: arch3y 
+
+_gitname=yara-python
+pkgname=python-yara
+pkgver=4.2.0
+_gitcommit=0a8659d68ba486286b6d5b7c7f48d171beb78e03
+pkgrel=1
+pkgdesc='Tool aimed at helping malware researchers to identify and classify 
malware samples'
+url='https://github.com/VirusTotal/yara-python'
+arch=('x86_64')
+license=('Apache')
+depends=('python' 'yara' 'libyara.so' 'glibc')
+makedepends=('git' 'python-setuptools')
+source=(${pkgname}::git+"https://github.com/VirusTotal/${_gitname}#commit=${_gitcommit};)
+sha512sums=('SKIP')
+
+pkgver() {
+  cd ${pkgname}
+  git describe --tags --match 'v*' | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
+}
+
+build() {
+  cd ${pkgname}
+  python setup.py build --dynamic-linking
+}
+
+check() {
+  cd ${pkgname}
+  local PYTHONVERSION="$(python -c 'import sys; 
print("{}.{}".format(sys.version_info.major, sys.version_info.minor))')"
+  PYTHONPATH="build/lib.linux-${CARCH}-${PYTHONVERSION}" \
+python tests.py
+}
+
+package() {
+  cd ${pkgname}
+  python setup.py install --root="${pkgdir}" -O1 --skip-build
+  install -Dm 644 README.rst -t "${pkgdir}/usr/share/doc/${pkgname}"
+  ln -s /usr/share/doc/yara/docs "${pkgdir}/usr/share/doc/${pkgname}/docs"
+}
+
+# vim: ts=2 sw=2 et:



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

2022-05-06 Thread Levente Polyak via arch-commits
Date: Friday, May 6, 2022 @ 23:20:18
  Author: anthraxx
Revision: 1196092

upgpkg: python-yara 4.2.0-1

Modified:
  python-yara/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-06 23:18:47 UTC (rev 1196091)
+++ PKGBUILD2022-05-06 23:20:18 UTC (rev 1196092)
@@ -3,9 +3,9 @@
 
 _gitname=yara-python
 pkgname=python-yara
-pkgver=4.1.0
-_gitcommit=dc838e211e45442d219012099aaa63efa812c4be
-pkgrel=3
+pkgver=4.2.0
+_gitcommit=0a8659d68ba486286b6d5b7c7f48d171beb78e03
+pkgrel=1
 pkgdesc='Tool aimed at helping malware researchers to identify and classify 
malware samples'
 url='https://github.com/VirusTotal/yara-python'
 arch=('x86_64')



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

2022-05-06 Thread Levente Polyak via arch-commits
Date: Friday, May 6, 2022 @ 23:18:47
  Author: anthraxx
Revision: 1196091

archrelease: copy trunk to community-testing-any

Added:
  rabbitmq/repos/community-testing-any/
  rabbitmq/repos/community-testing-any/PKGBUILD
(from rev 1196090, rabbitmq/trunk/PKGBUILD)
  rabbitmq/repos/community-testing-any/rabbitmq-customize-systemd-service.patch
(from rev 1196090, rabbitmq/trunk/rabbitmq-customize-systemd-service.patch)
  rabbitmq/repos/community-testing-any/rabbitmq-env.conf
(from rev 1196090, rabbitmq/trunk/rabbitmq-env.conf)
  rabbitmq/repos/community-testing-any/rabbitmq.install
(from rev 1196090, rabbitmq/trunk/rabbitmq.install)
  rabbitmq/repos/community-testing-any/rabbitmq.logrotate
(from rev 1196090, rabbitmq/trunk/rabbitmq.logrotate)
  rabbitmq/repos/community-testing-any/rabbitmq.sysusers
(from rev 1196090, rabbitmq/trunk/rabbitmq.sysusers)
  rabbitmq/repos/community-testing-any/rabbitmq.tmpfiles
(from rev 1196090, rabbitmq/trunk/rabbitmq.tmpfiles)

--+
 PKGBUILD |   89 +
 rabbitmq-customize-systemd-service.patch |   53 +
 rabbitmq-env.conf|3 
 rabbitmq.install |9 ++
 rabbitmq.logrotate   |6 +
 rabbitmq.sysusers|1 
 rabbitmq.tmpfiles|2 
 7 files changed, 163 insertions(+)

Copied: rabbitmq/repos/community-testing-any/PKGBUILD (from rev 1196090, 
rabbitmq/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2022-05-06 23:18:47 UTC (rev 1196091)
@@ -0,0 +1,89 @@
+# Maintainer: Levente Polyak 
+# Contributor: Marcello "mereghost" Rocha 
+# Contributor: Gianni Vialetto 
+# Contributor: Stefan J. Betz 
+# Contributor: p2k 
+# Contributor: Jonathan Liu 
+# Contributor: Christopher Grebs 
+# Contributor: mutantmonkey
+
+pkgbase=rabbitmq
+pkgname=(rabbitmq rabbitmqadmin)
+pkgver=3.10.0
+pkgrel=1
+pkgdesc='Highly reliable and performant enterprise messaging implementation of 
AMQP written in Erlang/OTP'
+url='https://rabbitmq.com'
+arch=('any')
+license=('MPL')
+makedepends=(
+  'zip' 'unzip' 'libxslt' 'xmlto' 'systemd' 'elixir' 'python' 
'python-simplejson' 'rsync'
+  'util-linux' 'inetutils' 'erlang-nox' 'socat'
+)
+options=('!makeflags')
+source=(https://github.com/rabbitmq/rabbitmq-server/releases/download/v${pkgver}/rabbitmq-server-${pkgver}.tar.xz{,.asc}
+rabbitmq-customize-systemd-service.patch
+rabbitmq-env.conf
+rabbitmq.sysusers
+rabbitmq.tmpfiles
+rabbitmq.logrotate)
+sha512sums=('ffccf973694bf75d2093974acdb8bc78a2cf1f2616b0f3810bf972a572f50f732d12adb3631028b5b5dde285ed286ffcf208a265c649f4d47225d4aed458fc3a'
+'SKIP'
+
'4859e67725dc8467b43102200bf47bdf69e3f3b700da859e861327e2f01491bfaeed8e32da4fc2415d8a127037420b768ef321a42d535f181cab56945f83d2c2'
+
'8b841e28fa0a1424dd9e57c0988e015f3cd4cccef0f73ccdb7c7b66d11ca62ba8ef3a59c7ca5e5f0c9c9d8003ac72bf53785985d98aae867961787003286e179'
+
'17d33e7104172bc265d97821fec58f1402ad3103f1ea4b1f6bbabcf0dd840685708a1bdc808b48c1a60726c5c0aa7b6479395afd9360d3116b812c143c432423'
+
'5cbef5497029ff227050c6f18c4fcc35b3922747408d01b7590f096253af82a8a8f16008efcc8ea21f970ce87244de62e2e375f65c49e407e53440eada5d7114'
+
'f2a6aaa38e575e7c947191a7c67add1434beb768c50acb16d5faa5dd83d390a9a5ec7c153487add4ac26de058a02bbb5c3a7d6377e91a1d0cbcca3c1d6797b02')
+validpgpkeys=('0A9AF2115F4687BD29803A206B73A36E6026DFCA') # RabbitMQ Release 
Signing Key 
+
+prepare() {
+  cd ${pkgbase}-server-${pkgver}
+  sed -E 's|^(SYS_PREFIX=).*$|\1""|' -i deps/rabbit/scripts/rabbitmq-defaults
+  sed -E 's|@RABBITMQ_USER@|rabbitmq|g' -i scripts/rabbitmq-script-wrapper
+  sed -E 's|@RABBITMQ_GROUP@|rabbitmq|g' -i scripts/rabbitmq-script-wrapper
+  sed -E 's|@STDOUT_STDERR_REDIRECTION@||g' -i scripts/rabbitmq-script-wrapper
+  sed -e "s|%%VSN%%|${pkgver}|" -i deps/rabbitmq_management/bin/rabbitmqadmin
+  patch -p1 < ../rabbitmq-customize-systemd-service.patch
+}
+
+build() {
+  cd ${pkgbase}-server-${pkgver}
+  make
+}
+
+package_rabbitmq() {
+  depends=('util-linux' 'inetutils' 'erlang-nox' 'socat')
+  optdepends=('rabbitmqadmin: CLI management tool'
+  'logrotate: rotate log files')
+  backup=('etc/rabbitmq/rabbitmq-env.conf')
+  install=rabbitmq.install
+  cd ${pkgbase}-server-${pkgver}
+  make DESTDIR="${pkgdir}" PREFIX=/usr RMQ_ROOTDIR=/usr/lib/rabbitmq \
+install install-man install-bin
+
+  # using script wrapper for better bin handling
+  local libdir="${pkgdir}/usr/lib/rabbitmq/lib/rabbitmq_server-${pkgver}"
+  install -d "${pkgdir}/usr/bin"
+  install -Dm 755 scripts/rabbitmq-script-wrapper -t 
"${pkgdir}/usr/lib/rabbitmq/bin"
+  for script in 

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

2022-05-06 Thread Levente Polyak via arch-commits
Date: Friday, May 6, 2022 @ 23:18:40
  Author: anthraxx
Revision: 1196090

upgpkg: rabbitmq 3.10.0-1

Modified:
  rabbitmq/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-06 22:39:05 UTC (rev 1196089)
+++ PKGBUILD2022-05-06 23:18:40 UTC (rev 1196090)
@@ -9,7 +9,7 @@
 
 pkgbase=rabbitmq
 pkgname=(rabbitmq rabbitmqadmin)
-pkgver=3.8.22
+pkgver=3.10.0
 pkgrel=1
 pkgdesc='Highly reliable and performant enterprise messaging implementation of 
AMQP written in Erlang/OTP'
 url='https://rabbitmq.com'
@@ -26,7 +26,7 @@
 rabbitmq.sysusers
 rabbitmq.tmpfiles
 rabbitmq.logrotate)
-sha512sums=('0852223e1202c1428cebcaf6830481a89f1cb061ab8d7cddef67403b53acafbcd662b72c92da9d7c4eeadf86356277a210007687b3e07876b7d21d1a6c14'
+sha512sums=('ffccf973694bf75d2093974acdb8bc78a2cf1f2616b0f3810bf972a572f50f732d12adb3631028b5b5dde285ed286ffcf208a265c649f4d47225d4aed458fc3a'
 'SKIP'
 
'4859e67725dc8467b43102200bf47bdf69e3f3b700da859e861327e2f01491bfaeed8e32da4fc2415d8a127037420b768ef321a42d535f181cab56945f83d2c2'
 
'8b841e28fa0a1424dd9e57c0988e015f3cd4cccef0f73ccdb7c7b66d11ca62ba8ef3a59c7ca5e5f0c9c9d8003ac72bf53785985d98aae867961787003286e179'



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

2022-05-06 Thread Levente Polyak via arch-commits
Date: Friday, May 6, 2022 @ 23:12:53
  Author: anthraxx
Revision: 444828

archrelease: copy trunk to extra-x86_64

Added:
  clamav/repos/extra-x86_64/PKGBUILD
(from rev 444827, clamav/trunk/PKGBUILD)
  clamav/repos/extra-x86_64/clamav.logrotate
(from rev 444827, clamav/trunk/clamav.logrotate)
  clamav/repos/extra-x86_64/clamav.sysusers
(from rev 444827, clamav/trunk/clamav.sysusers)
  clamav/repos/extra-x86_64/clamav.tmpfiles
(from rev 444827, clamav/trunk/clamav.tmpfiles)
Deleted:
  clamav/repos/extra-x86_64/PKGBUILD
  clamav/repos/extra-x86_64/clamav.logrotate
  clamav/repos/extra-x86_64/clamav.sysusers
  clamav/repos/extra-x86_64/clamav.tmpfiles

--+
 PKGBUILD |  172 ++---
 clamav.logrotate |   22 +++---
 clamav.sysusers  |2 
 clamav.tmpfiles  |6 -
 4 files changed, 101 insertions(+), 101 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-06 23:12:46 UTC (rev 444827)
+++ PKGBUILD2022-05-06 23:12:53 UTC (rev 444828)
@@ -1,86 +0,0 @@
-# Maintainer: Levente Polyak 
-# Maintainer: Giancarlo Razzolini 
-# Contributor: Dale Blount 
-# Contributor: Gregor Ibic 
-# Contributor: Gaetan Bisson 
-
-pkgname=clamav
-pkgver=0.104.2
-pkgrel=1
-pkgdesc='Anti-virus toolkit for Unix'
-url='https://www.clamav.net/'
-license=('GPL')
-arch=('x86_64')
-depends=('bzip2' 'libltdl' 'libxml2' 'curl' 'systemd-libs' 'pcre2' 'json-c' 
'libmspack'
- 'ncurses' libsystemd.so libncursesw.so libcurl.so libjson-c.so 
libbz2.so)
-makedepends=('libmilter' 'systemd' 'cmake' 'ninja' 'python')
-checkdepends=('check')
-backup=('etc/clamav/clamd.conf'
-'etc/clamav/freshclam.conf'
-'etc/clamav/clamav-milter.conf'
-'etc/logrotate.d/clamav')
-provides=(libclamav.so libclamunrar.so libclamunrar_iface.so)
-source=(https://www.clamav.net/downloads/production/${pkgname}-${pkgver}.tar.gz{,.sig}
-clamav.logrotate
-clamav.tmpfiles
-clamav.sysusers)
-sha512sums=('8c89a05dec6650677125177434cc49ec2298701525508cdda52358e8f98086d80892287f6267f8b7fda0aef2ca361616cb584c3059f3b066bfde65f7f1ba2df5'
-'SKIP'
-
'9cb168c1c16bb43c99900d7ef34456e3f3b593d4d1943c875a0306bc86fd3872cb78e9e1413dcba93579e01b96d466c9eea1975e24190193663b7986c4525d48'
-
'c5443634399bd87fe0d0192518538ffdb7296a8437b5b0160a0fbd58696b01285de3237e3feb552c0095c49e576832dec2e2b2107eef2be42424ed7edd13cd19'
-
'b984836f6c34d97b90d81fa5d17361a2e3f8c0cc709e3350a4d25cf088dc04f7bf2504359980c8be489c96b1b8798c60e6da533069d3378d49d4f50f929a2c90')
-validpgpkeys=('E34DB95B374B31570496CD3F609B024F2B3EDD07') # Talos (Talos, 
Cisco Systems Inc.) 
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-  sed -E 's|^(Example)$|#\1|' -i 
etc/{clamd,freshclam,clamav-milter}.conf.sample
-  sed -E 's|#(User) .+|\1 clamav|' -i 
etc/{clamd,freshclam,clamav-milter}.conf.sample
-  sed -E 's|#(LogFile) .+|\1 /var/log/clamav/clamd.log|' -i 
etc/clamd.conf.sample
-  sed -E 's|#(LogTime) .+|\1 yes|' -i etc/clamd.conf.sample 
etc/clamav-milter.conf.sample
-  sed -E 's|#(PidFile) .+|\1 /run/clamav/clamd.pid|' -i etc/clamd.conf.sample
-  sed -E 's|#(TemporaryDirectory) .+|\1 /tmp|' -i 
etc/{clamd,clamav-milter}.conf.sample
-  sed -E 's|#(LocalSocket) .+|\1 /run/clamav/clamd.ctl|' -i 
etc/clamd.conf.sample
-  sed -E 's|#(UpdateLogFile) .+|\1 /var/log/clamav/freshclam.log|' -i 
etc/freshclam.conf.sample
-  sed -E 's|#(DatabaseMirror) .+|\1 database.clamav.net|' -i 
etc/freshclam.conf.sample
-  sed -E 's|#(NotifyClamd) .+|\1 /etc/clamav/clamd.conf|' -i 
etc/freshclam.conf.sample
-  sed -E 's|#(PidFile) .+|\1 /run/clamav/freshclam.pid|' -i 
etc/freshclam.conf.sample
-  sed -E 's|#(LogFile) .+|\1 /var/log/clamav/clamav-milter.log|' -i 
etc/clamav-milter.conf.sample
-  sed -E 's|#(PidFile) .+|\1 /run/clamav/clamav-milter.pid|' -i 
etc/clamav-milter.conf.sample
-  sed -E 
"s|(\\[Unit\\])|\\1\\nWants=network-online.target\\nAfter=network-online.target|"
 -i freshclam/clamav-freshclam.service.in
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-  cmake \
--DCMAKE_BUILD_TYPE='None' \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_SBINDIR=bin \
--DAPP_CONFIG_DIRECTORY=/etc/clamav \
--DDATABASE_DIRECTORY=/var/lib/clamav \
--DENABLE_EXTERNAL_MSPACK=ON \
--Wno-dev \
--B build \
--G Ninja \
--S .
-  ninja -C build
-}
-
-check() {
-  cd ${pkgname}-${pkgver}
-  ninja -C build test
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  DESTDIR="${pkgdir}" ninja -C build install
-
-  mv "${pkgdir}"/etc/clamav/freshclam.conf{.sample,}
-  mv "${pkgdir}"/etc/clamav/clamd.conf{.sample,}
-  mv "${pkgdir}"/etc/clamav/clamav-milter.conf{.sample,}
-
-  install -Dm 644 ../clamav.sysusers "${pkgdir}"/usr/lib/sysusers.d/clamav.conf
-  install -Dm 644 ../clamav.tmpfiles "${pkgdir}"/usr/lib/tmpfiles.d/clamav.conf
-  install -Dm 644 ../clamav.logrotate 

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

2022-05-06 Thread Levente Polyak via arch-commits
Date: Friday, May 6, 2022 @ 23:12:46
  Author: anthraxx
Revision: 444827

upgpkg: clamav 0.105.0-1

Modified:
  clamav/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-06 22:08:55 UTC (rev 444826)
+++ PKGBUILD2022-05-06 23:12:46 UTC (rev 444827)
@@ -5,7 +5,7 @@
 # Contributor: Gaetan Bisson 
 
 pkgname=clamav
-pkgver=0.104.2
+pkgver=0.105.0
 pkgrel=1
 pkgdesc='Anti-virus toolkit for Unix'
 url='https://www.clamav.net/'
@@ -13,7 +13,7 @@
 arch=('x86_64')
 depends=('bzip2' 'libltdl' 'libxml2' 'curl' 'systemd-libs' 'pcre2' 'json-c' 
'libmspack'
  'ncurses' libsystemd.so libncursesw.so libcurl.so libjson-c.so 
libbz2.so)
-makedepends=('libmilter' 'systemd' 'cmake' 'ninja' 'python')
+makedepends=('libmilter' 'systemd' 'cmake' 'ninja' 'python' 'cargo')
 checkdepends=('check')
 backup=('etc/clamav/clamd.conf'
 'etc/clamav/freshclam.conf'
@@ -24,7 +24,7 @@
 clamav.logrotate
 clamav.tmpfiles
 clamav.sysusers)
-sha512sums=('8c89a05dec6650677125177434cc49ec2298701525508cdda52358e8f98086d80892287f6267f8b7fda0aef2ca361616cb584c3059f3b066bfde65f7f1ba2df5'
+sha512sums=('84e871942e67d0a96c4a95eee7e36e1094865a69fdfd590ad8acf4e4a772e1b60bd1f21f73f9c5ad9043a6624c4fece5bb66a976b2592e9b7babfa1e5a1ba453'
 'SKIP'
 
'9cb168c1c16bb43c99900d7ef34456e3f3b593d4d1943c875a0306bc86fd3872cb78e9e1413dcba93579e01b96d466c9eea1975e24190193663b7986c4525d48'
 
'c5443634399bd87fe0d0192518538ffdb7296a8437b5b0160a0fbd58696b01285de3237e3feb552c0095c49e576832dec2e2b2107eef2be42424ed7edd13cd19'



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

2022-05-06 Thread Levente Polyak via arch-commits
Date: Friday, May 6, 2022 @ 22:39:05
  Author: anthraxx
Revision: 1196089

archrelease: copy trunk to community-x86_64

Added:
  emptyepsilon/repos/community-x86_64/PKGBUILD
(from rev 1196088, emptyepsilon/trunk/PKGBUILD)
Deleted:
  emptyepsilon/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-06 22:38:59 UTC (rev 1196088)
+++ PKGBUILD2022-05-06 22:39:05 UTC (rev 1196089)
@@ -1,49 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Mewp 
-
-pkgname=emptyepsilon
-pkgver=2021.06.23
-pkgrel=1
-pkgdesc='Open source spaceship bridge simulator'
-url='https://github.com/daid/EmptyEpsilon'
-arch=('x86_64')
-license=('GPL2')
-depends=('sfml' 'libglvnd' 'glew' 'libx11' 'libxrandr' 'glibc' 'gcc-libs')
-makedepends=('git' 'cmake' 'mesa' 'python')
-source=("git+https://github.com/daid/EmptyEpsilon.git#tag=EE-${pkgver};
-"git+https://github.com/daid/SeriousProton.git#tag=EE-${pkgver};)
-sha512sums=('SKIP'
-'SKIP')
-
-prepare() {
-  # fix shader loading, should be upstreamed
-  sed 's|new Engine();|chdir(RESOURCE_BASE_DIR); new Engine();|' -i 
EmptyEpsilon/src/main.cpp
-}
-
-build() {
-  mkdir -p EmptyEpsilon/build
-  cd EmptyEpsilon/build
-  # add cppflags to use fortify
-  export CXXFLAGS="${CXXFLAGS} ${CPPFLAGS}"
-  # release type is important here to get optimisation flags
-  # defined in the project's cmake files
-  cmake -DSERIOUS_PROTON_DIR="${srcdir}/SeriousProton" \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DCPACK_PACKAGE_VERSION_MAJOR="$(echo ${pkgver} | cut -d. -f1)" \
--DCPACK_PACKAGE_VERSION_MINOR="$(echo ${pkgver} | cut -d. -f2)" \
--DCPACK_PACKAGE_VERSION_PATCH="$(echo ${pkgver} | cut -d. -f3)" \
--DOpenGL_GL_PREFERENCE=GLVND \
-..
-  make
-}
-
-package() {
-  cd EmptyEpsilon
-  make -C build DESTDIR="${pkgdir}" install
-  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/emptyepsilon"
-  mv "${pkgdir}"/usr/share/doc/EmptyEpsilon/script_reference.html 
"${pkgdir}/usr/share/doc/emptyepsilon"
-  rmdir "${pkgdir}"/usr/share/doc/EmptyEpsilon
-}
-
-# vim: ts=2 sw=2 et:

Copied: emptyepsilon/repos/community-x86_64/PKGBUILD (from rev 1196088, 
emptyepsilon/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-06 22:39:05 UTC (rev 1196089)
@@ -0,0 +1,49 @@
+# Maintainer: Levente Polyak 
+# Contributor: Mewp 
+
+pkgname=emptyepsilon
+pkgver=2022.03.16
+pkgrel=1
+pkgdesc='Open source spaceship bridge simulator'
+url='https://github.com/daid/EmptyEpsilon'
+arch=('x86_64')
+license=('GPL2')
+depends=('libglvnd' 'libx11' 'libxrandr' 'glibc' 'gcc-libs' 'sdl2')
+makedepends=('git' 'cmake' 'mesa' 'python')
+source=("git+https://github.com/daid/EmptyEpsilon.git#tag=EE-${pkgver};
+"git+https://github.com/daid/SeriousProton.git#tag=EE-${pkgver};)
+sha512sums=('SKIP'
+'SKIP')
+
+prepare() {
+  # fix shader loading, should be upstreamed
+  sed 's|new Engine();|chdir(RESOURCE_BASE_DIR); new Engine();|' -i 
EmptyEpsilon/src/main.cpp
+}
+
+build() {
+  mkdir -p EmptyEpsilon/build
+  cd EmptyEpsilon/build
+  # add cppflags to use fortify
+  export CXXFLAGS="${CXXFLAGS} ${CPPFLAGS}"
+  # release type is important here to get optimisation flags
+  # defined in the project's cmake files
+  cmake -DSERIOUS_PROTON_DIR="${srcdir}/SeriousProton" \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DCPACK_PACKAGE_VERSION_MAJOR="$(echo ${pkgver} | cut -d. -f1)" \
+-DCPACK_PACKAGE_VERSION_MINOR="$(echo ${pkgver} | cut -d. -f2)" \
+-DCPACK_PACKAGE_VERSION_PATCH="$(echo ${pkgver} | cut -d. -f3)" \
+-DOpenGL_GL_PREFERENCE=GLVND \
+..
+  make
+}
+
+package() {
+  cd EmptyEpsilon
+  make -C build DESTDIR="${pkgdir}" install
+  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/emptyepsilon"
+  mv "${pkgdir}"/usr/share/doc/EmptyEpsilon/script_reference.html 
"${pkgdir}/usr/share/doc/emptyepsilon"
+  rmdir "${pkgdir}"/usr/share/doc/EmptyEpsilon
+}
+
+# vim: ts=2 sw=2 et:



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

2022-05-06 Thread Levente Polyak via arch-commits
Date: Friday, May 6, 2022 @ 22:38:59
  Author: anthraxx
Revision: 1196088

upgpkg: emptyepsilon 2022.03.16-1

Modified:
  emptyepsilon/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-06 22:27:43 UTC (rev 1196087)
+++ PKGBUILD2022-05-06 22:38:59 UTC (rev 1196088)
@@ -2,13 +2,13 @@
 # Contributor: Mewp 
 
 pkgname=emptyepsilon
-pkgver=2021.06.23
+pkgver=2022.03.16
 pkgrel=1
 pkgdesc='Open source spaceship bridge simulator'
 url='https://github.com/daid/EmptyEpsilon'
 arch=('x86_64')
 license=('GPL2')
-depends=('sfml' 'libglvnd' 'glew' 'libx11' 'libxrandr' 'glibc' 'gcc-libs')
+depends=('libglvnd' 'libx11' 'libxrandr' 'glibc' 'gcc-libs' 'sdl2')
 makedepends=('git' 'cmake' 'mesa' 'python')
 source=("git+https://github.com/daid/EmptyEpsilon.git#tag=EE-${pkgver};
 "git+https://github.com/daid/SeriousProton.git#tag=EE-${pkgver};)



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

2022-05-06 Thread Anatol Pomozov via arch-commits
Date: Friday, May 6, 2022 @ 22:27:43
  Author: anatolik
Revision: 1196087

archrelease: copy trunk to community-x86_64

Added:
  avr-gcc/repos/community-x86_64/PKGBUILD
(from rev 1196086, avr-gcc/trunk/PKGBUILD)
Deleted:
  avr-gcc/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-06 22:27:23 UTC (rev 1196086)
+++ PKGBUILD2022-05-06 22:27:43 UTC (rev 1196087)
@@ -1,110 +0,0 @@
-# Maintainer: schuay 
-# Contributor: Brad Fanella 
-# Contributor: Corrado Primier 
-# Contributor: danst0 
-
-# Build order: avr-binutils -> avr-gcc -> avr-libc
-
-_target=avr
-pkgname=$_target-gcc
-pkgver=11.3.0
-pkgrel=1
-#_snapshot=7-20180125
-pkgdesc='The GNU AVR Compiler Collection'
-arch=(x86_64)
-license=(GPL LGPL FDL custom)
-url='http://gcc.gnu.org/'
-depends=($_target-binutils gcc-libs libmpc libisl zstd)
-optdepends=('avr-libc: Standard C library for Atmel AVR development')
-options=(!emptydirs !strip !lto)
-source=(https://ftp.gnu.org/gnu/gcc/gcc-$pkgver/gcc-$pkgver.tar.xz{,.sig}
-
#ftp://gcc.gnu.org/pub/gcc/snapshots/${_snapshot}/gcc-${_snapshot}.tar.xz
-   )
-sha256sums=('b47cf2818691f5b1e21df2bb38c795fac2cfbd640ede2d0a5e1c89e338a3ac39'
-'SKIP')
-validpgpkeys=(D3A93CAD751C2AF4F8C7AD516C35B99309B5FA62  # Jakub Jelinek 

-  33C235A34C46AA3FFB293709A328C3A2C3C45C06  # Jakub Jelinek 

-  13975A70E63C361C73AE69EF6EEB81F8981C74C7) # Richard Guenther 

-
-if [ -n "${_snapshot}" ]; then
-  _basedir=gcc-${_snapshot}
-else
-  _basedir=gcc-${pkgver}
-fi
-
-prepare() {
-cd ${_basedir}
-}
-
-build() {
-cd "${srcdir}"/${_basedir} 
-
-echo ${pkgver} > gcc/BASE-VER
-
-cd "${srcdir}"
-mkdir gcc-build && cd gcc-build
-
-export CFLAGS_FOR_TARGET='-O2 -pipe'
-export CXXFLAGS_FOR_TARGET='-O2 -pipe'
-
-# Credits @allanmcrae
-# 
https://github.com/allanmcrae/toolchain/blob/f18604d70c5933c31b51a320978711e4e6791cf1/gcc/PKGBUILD
-# TODO: properly deal with the build issues resulting from this
-CFLAGS=${CFLAGS/-Werror=format-security/}
-CXXFLAGS=${CXXFLAGS/-Werror=format-security/}
-
-# --disable-linker-build-id   https://bugs.archlinux.org/task/34902
-# --disable-__cxa_atexit   https://bugs.archlinux.org/task/50848
-"${srcdir}"/${_basedir}/configure \
---disable-install-libiberty \
---disable-libssp \
---disable-libstdcxx-pch \
---disable-libunwind-exceptions \
---disable-linker-build-id \
---disable-nls \
---disable-werror \
---disable-__cxa_atexit \
---enable-checking=release \
---enable-clocale=gnu \
---enable-gnu-unique-object \
---enable-gold \
---enable-languages=c,c++ \
---enable-ld=default \
---enable-lto \
---enable-plugin \
---enable-shared \
---infodir=/usr/share/info \
---libdir=/usr/lib \
---libexecdir=/usr/lib \
---mandir=/usr/share/man \
---prefix=/usr \
---target=$_target \
---with-as=/usr/bin/$_target-as \
---with-gnu-as \
---with-gnu-ld \
---with-ld=/usr/bin/$_target-ld \
---with-plugin-ld=ld.gold \
---with-system-zlib \
---with-isl \
---enable-gnu-indirect-function
-
-make
-}
-
-package() {
-cd "${srcdir}"/gcc-build
-
-make -j1 DESTDIR="${pkgdir}" install
-
-# Strip debug symbols from libraries; without this, the package size 
balloons to ~500MB.
-find "${pkgdir}"/usr/lib -type f -name "*.a" \
--exec /usr/bin/$_target-strip --strip-debug '{}' \;
-
-# Install Runtime Library Exception
-install -Dm644 "${srcdir}"/${_basedir}/COPYING.RUNTIME \
-"${pkgdir}"/usr/share/licenses/$_target-gcc/RUNTIME.LIBRARY.EXCEPTION
-
-rm -r "${pkgdir}"/usr/share/man/man7
-rm -r "${pkgdir}"/usr/share/info
-rm "${pkgdir}"/usr/lib/libcc1.*
-}

Copied: avr-gcc/repos/community-x86_64/PKGBUILD (from rev 1196086, 
avr-gcc/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-06 22:27:43 UTC (rev 1196087)
@@ -0,0 +1,110 @@
+# Maintainer: schuay 
+# Contributor: Brad Fanella 
+# Contributor: Corrado Primier 
+# Contributor: danst0 
+
+# Build order: avr-binutils -> avr-gcc -> avr-libc
+
+_target=avr
+pkgname=$_target-gcc
+pkgver=12.1.0
+pkgrel=1
+#_snapshot=7-20180125
+pkgdesc='The GNU AVR Compiler Collection'
+arch=(x86_64)
+license=(GPL LGPL FDL custom)

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

2022-05-06 Thread Anatol Pomozov via arch-commits
Date: Friday, May 6, 2022 @ 22:27:23
  Author: anatolik
Revision: 1196086

upgpkg: avr-gcc 12.1.0-1

Modified:
  avr-gcc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-06 22:20:05 UTC (rev 1196085)
+++ PKGBUILD2022-05-06 22:27:23 UTC (rev 1196086)
@@ -7,7 +7,7 @@
 
 _target=avr
 pkgname=$_target-gcc
-pkgver=11.3.0
+pkgver=12.1.0
 pkgrel=1
 #_snapshot=7-20180125
 pkgdesc='The GNU AVR Compiler Collection'
@@ -20,7 +20,7 @@
 source=(https://ftp.gnu.org/gnu/gcc/gcc-$pkgver/gcc-$pkgver.tar.xz{,.sig}
 
#ftp://gcc.gnu.org/pub/gcc/snapshots/${_snapshot}/gcc-${_snapshot}.tar.xz
)
-sha256sums=('b47cf2818691f5b1e21df2bb38c795fac2cfbd640ede2d0a5e1c89e338a3ac39'
+sha256sums=('62fd634889f31c02b64af2c468f064b47ad1ca78411c45abe6ac4b5f8dd19c7b'
 'SKIP')
 validpgpkeys=(D3A93CAD751C2AF4F8C7AD516C35B99309B5FA62  # Jakub Jelinek 

   33C235A34C46AA3FFB293709A328C3A2C3C45C06  # Jakub Jelinek 




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

2022-05-06 Thread Levente Polyak via arch-commits
Date: Friday, May 6, 2022 @ 22:20:05
  Author: anthraxx
Revision: 1196085

archrelease: copy trunk to community-any

Added:
  jadx/repos/community-any/PKGBUILD
(from rev 1196084, jadx/trunk/PKGBUILD)
Deleted:
  jadx/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-06 22:20:00 UTC (rev 1196084)
+++ PKGBUILD2022-05-06 22:20:05 UTC (rev 1196085)
@@ -1,41 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Nicolas Hureau 
-
-pkgname=jadx
-pkgver=1.3.4
-pkgrel=1
-pkgdesc='Command line and GUI tools to produce Java source code from Android 
Dex and APK files'
-url='https://github.com/skylot/jadx'
-arch=('any')
-license=('Apache')
-depends=('java-runtime=11' 'bash')
-makedepends=('java-environment=11' 'gradle')
-source=(https://github.com/skylot/${pkgname}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha512sums=('01e5f594bed618871ad4e4803ee197bf8835807291b16f7b78902ab24d941786a5c7296649044fb505d888e1dbe63a83db0f4e175eb92a27eca45b0eb76dd569')
-b2sums=('752d22505b08e85baa7aeab94c8d669e4a68349d15d1a205d7e2b3bb6bfdb823cea592731f684b894fbabf3cf0b82b95b06d4fa9e31b764e3bade785d404e919')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  gradle dist
-}
-
-check() {
-  cd ${pkgname}-${pkgver}
-  gradle test
-}
-
-package() {
-  cd ${pkgname}-${pkgver}/build/jadx
-
-  install -Dm 755 bin/{jadx,jadx-gui} -t 
"${pkgdir}/usr/share/java/${pkgname}/bin"
-  install -Dm 644 lib/* -t "${pkgdir}/usr/share/java/${pkgname}/lib"
-
-  install -d "${pkgdir}/usr/bin"
-  ln -s /usr/share/java/${pkgname}/bin/jadx "${pkgdir}/usr/bin/jadx"
-  ln -s /usr/share/java/${pkgname}/bin/jadx-gui "${pkgdir}/usr/bin/jadx-gui"
-
-  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -Dm 644 NOTICE README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: jadx/repos/community-any/PKGBUILD (from rev 1196084, 
jadx/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-06 22:20:05 UTC (rev 1196085)
@@ -0,0 +1,41 @@
+# Maintainer: Levente Polyak 
+# Contributor: Nicolas Hureau 
+
+pkgname=jadx
+pkgver=1.3.5
+pkgrel=1
+pkgdesc='Command line and GUI tools to produce Java source code from Android 
Dex and APK files'
+url='https://github.com/skylot/jadx'
+arch=('any')
+license=('Apache')
+depends=('java-runtime=11' 'bash')
+makedepends=('java-environment=11' 'gradle')
+source=(https://github.com/skylot/${pkgname}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('6b5e11c60122eefa1cf95dd45ba68622725acea7288c517ec32ed6c5fab40af238f5b7966264b9209402b5f9ee5f011873a1eea856764115418ff5d9b1025cc3')
+b2sums=('af1629083c2345c2531f7f6a2f35f510e7f8cdb8c7422881feb0bde2d7acf405a0e3562cd48cb049dadbf6037b9da469168250514ca3c5295d78968af6107cc6')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  gradle dist
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  gradle test
+}
+
+package() {
+  cd ${pkgname}-${pkgver}/build/jadx
+
+  install -Dm 755 bin/{jadx,jadx-gui} -t 
"${pkgdir}/usr/share/java/${pkgname}/bin"
+  install -Dm 644 lib/* -t "${pkgdir}/usr/share/java/${pkgname}/lib"
+
+  install -d "${pkgdir}/usr/bin"
+  ln -s /usr/share/java/${pkgname}/bin/jadx "${pkgdir}/usr/bin/jadx"
+  ln -s /usr/share/java/${pkgname}/bin/jadx-gui "${pkgdir}/usr/bin/jadx-gui"
+
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -Dm 644 NOTICE README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:



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

2022-05-06 Thread Levente Polyak via arch-commits
Date: Friday, May 6, 2022 @ 22:20:00
  Author: anthraxx
Revision: 1196084

upgpkg: jadx 1.3.5-1

Modified:
  jadx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-06 22:01:42 UTC (rev 1196083)
+++ PKGBUILD2022-05-06 22:20:00 UTC (rev 1196084)
@@ -2,7 +2,7 @@
 # Contributor: Nicolas Hureau 
 
 pkgname=jadx
-pkgver=1.3.4
+pkgver=1.3.5
 pkgrel=1
 pkgdesc='Command line and GUI tools to produce Java source code from Android 
Dex and APK files'
 url='https://github.com/skylot/jadx'
@@ -11,8 +11,8 @@
 depends=('java-runtime=11' 'bash')
 makedepends=('java-environment=11' 'gradle')
 
source=(https://github.com/skylot/${pkgname}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha512sums=('01e5f594bed618871ad4e4803ee197bf8835807291b16f7b78902ab24d941786a5c7296649044fb505d888e1dbe63a83db0f4e175eb92a27eca45b0eb76dd569')
-b2sums=('752d22505b08e85baa7aeab94c8d669e4a68349d15d1a205d7e2b3bb6bfdb823cea592731f684b894fbabf3cf0b82b95b06d4fa9e31b764e3bade785d404e919')
+sha512sums=('6b5e11c60122eefa1cf95dd45ba68622725acea7288c517ec32ed6c5fab40af238f5b7966264b9209402b5f9ee5f011873a1eea856764115418ff5d9b1025cc3')
+b2sums=('af1629083c2345c2531f7f6a2f35f510e7f8cdb8c7422881feb0bde2d7acf405a0e3562cd48cb049dadbf6037b9da469168250514ca3c5295d78968af6107cc6')
 
 build() {
   cd ${pkgname}-${pkgver}



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

2022-05-06 Thread Anatol Pomozov via arch-commits
Date: Friday, May 6, 2022 @ 22:08:55
  Author: anatolik
Revision: 444826

archrelease: copy trunk to testing-x86_64

Added:
  booster/repos/testing-x86_64/
  booster/repos/testing-x86_64/PKGBUILD
(from rev 444825, booster/trunk/PKGBUILD)

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

Copied: booster/repos/testing-x86_64/PKGBUILD (from rev 444825, 
booster/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2022-05-06 22:08:55 UTC (rev 444826)
@@ -0,0 +1,65 @@
+# Maintainer: Anatol Pomozov
+
+pkgname=booster
+pkgver=0.8
+pkgrel=1
+pkgdesc='Fast and secure initramfs generator'
+arch=(x86_64)
+url='https://github.com/anatol/booster'
+license=(MIT)
+depends=(bash)
+makedepends=(go ruby-ronn-ng)
+#checkdepends=(qemu-headless linux tang)
+optdepends=(
+  'busybox: to enable emergency shell at the boot time'
+  'yubikey-personalization: for clevis Yubikey challenge-response support'
+  'libfido2: for systemd-enroll with FIDO2'
+)
+backup=(etc/booster.yaml)
+provides=(initramfs)
+source=(booster-$pkgver.zip::https://github.com/anatol/booster/archive/$pkgver.zip)
+sha512sums=('41c189e59db9ed4ca654e2916843c51bcaa98a42b8cda355fa2ac8a806250b851dc460d150401b3a9c1ac79828f0dbb9d96bab796f8ba298c900360e593bf6a6')
+
+build() {
+  cd booster-$pkgver
+
+  cd generator
+  CGO_CPPFLAGS="${CPPFLAGS}" CGO_CFLAGS="${CFLAGS}" CGO_CXXFLAGS="${CXXFLAGS}" 
CGO_LDFLAGS="${LDFLAGS}" \
+go build -trimpath \
+  -buildmode=pie \
+  -mod=readonly \
+  -modcacherw \
+  -ldflags "-linkmode external -extldflags \"${LDFLAGS}\""
+
+  cd ../init
+  CGO_ENABLED=0 go build -trimpath -mod=readonly -modcacherw
+
+  cd ..
+  ronn docs/manpage.md
+}
+
+check() {
+  cd booster-$pkgver
+
+  # (cd init; go test)
+  # (cd generator; go test)
+
+  # arch chroot does not allow access to KVM
+  # TEST_DISABLE_KVM=1 go test -v # disable integration tests for now as it 
require a lot of time and space to build 10G images
+}
+
+package() {
+  cd booster-$pkgver
+  mkdir "$pkgdir/etc/"
+  touch "$pkgdir/etc/booster.yaml"
+  install -Dp -m755 generator/generator "$pkgdir/usr/bin/booster"
+  install -Dp -m644 docs/manpage.1 "$pkgdir/usr/share/man/man1/booster.1"
+  install -Dp -m755 init/init "$pkgdir/usr/lib/booster/init"
+  install -Dp -m755 packaging/arch/regenerate_images 
"$pkgdir/usr/lib/booster/regenerate_images"
+
+  install -Dp -m644 packaging/arch/90-booster-install.hook 
"$pkgdir/usr/share/libalpm/hooks/90-booster-install.hook"
+  install -Dp -m755 packaging/arch/booster-install 
"$pkgdir/usr/share/libalpm/scripts/booster-install"
+  install -Dp -m644 packaging/arch/60-booster-remove.hook 
"$pkgdir/usr/share/libalpm/hooks/60-booster-remove.hook"
+  install -Dp -m755 packaging/arch/booster-remove 
"$pkgdir/usr/share/libalpm/scripts/booster-remove"
+  install -Dp -m755 contrib/completion/bash 
"$pkgdir/usr/share/bash-completion/completions/booster"
+}



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

2022-05-06 Thread Anatol Pomozov via arch-commits
Date: Friday, May 6, 2022 @ 22:08:39
  Author: anatolik
Revision: 444825

upgpkg: booster 0.8-1

Announcement https://github.com/anatol/booster/discussions/150

Modified:
  booster/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-06 21:53:39 UTC (rev 444824)
+++ PKGBUILD2022-05-06 22:08:39 UTC (rev 444825)
@@ -1,8 +1,8 @@
 # Maintainer: Anatol Pomozov
 
 pkgname=booster
-pkgver=0.7
-pkgrel=3
+pkgver=0.8
+pkgrel=1
 pkgdesc='Fast and secure initramfs generator'
 arch=(x86_64)
 url='https://github.com/anatol/booster'
@@ -17,17 +17,9 @@
 )
 backup=(etc/booster.yaml)
 provides=(initramfs)
-source=(booster-$pkgver.zip::https://github.com/anatol/booster/archive/$pkgver.zip
-
firmware_xz.patch::https://github.com/anatol/booster/commit/7fcf91dfa4a346896f7faa8c4996c7251d0585eb.patch
-)
-sha512sums=('1ba3a25af4b11213809db015ca7279d6283851f0391e01c113522fb974f907f4ccf8d0eb7fbe5a508a16213acaac0a31c03f8fedbab6c432db77b53ecbcc98d5'
-
'1e54b1b3dbdfcee8157aa7bc9d9633354ea0d49f3b5cdb68f191bb009a9dec7825df69bc5ff24239d0852991a563ef64535798f340794fa2fe0ac6e029dee844')
+source=(booster-$pkgver.zip::https://github.com/anatol/booster/archive/$pkgver.zip)
+sha512sums=('41c189e59db9ed4ca654e2916843c51bcaa98a42b8cda355fa2ac8a806250b851dc460d150401b3a9c1ac79828f0dbb9d96bab796f8ba298c900360e593bf6a6')
 
-prepare() {
-  cd booster-$pkgver
-  patch -p1 < ../firmware_xz.patch # 
https://github.com/anatol/booster/issues/127
-}
-
 build() {
   cd booster-$pkgver
 
@@ -60,7 +52,7 @@
   cd booster-$pkgver
   mkdir "$pkgdir/etc/"
   touch "$pkgdir/etc/booster.yaml"
-  install -Dp -m755 generator/booster "$pkgdir/usr/bin/booster"
+  install -Dp -m755 generator/generator "$pkgdir/usr/bin/booster"
   install -Dp -m644 docs/manpage.1 "$pkgdir/usr/share/man/man1/booster.1"
   install -Dp -m755 init/init "$pkgdir/usr/lib/booster/init"
   install -Dp -m755 packaging/arch/regenerate_images 
"$pkgdir/usr/lib/booster/regenerate_images"
@@ -69,4 +61,5 @@
   install -Dp -m755 packaging/arch/booster-install 
"$pkgdir/usr/share/libalpm/scripts/booster-install"
   install -Dp -m644 packaging/arch/60-booster-remove.hook 
"$pkgdir/usr/share/libalpm/hooks/60-booster-remove.hook"
   install -Dp -m755 packaging/arch/booster-remove 
"$pkgdir/usr/share/libalpm/scripts/booster-remove"
+  install -Dp -m755 contrib/completion/bash 
"$pkgdir/usr/share/bash-completion/completions/booster"
 }



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

2022-05-06 Thread Sven-Hendrik Haase via arch-commits
Date: Friday, May 6, 2022 @ 22:01:42
  Author: svenstaro
Revision: 1196083

archrelease: copy trunk to community-x86_64

Added:
  broot/repos/community-x86_64/PKGBUILD
(from rev 1196082, broot/trunk/PKGBUILD)
Deleted:
  broot/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-06 22:01:36 UTC (rev 1196082)
+++ PKGBUILD2022-05-06 22:01:42 UTC (rev 1196083)
@@ -1,47 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Maintainer: Orhun Parmaksız 
-# Contributor: Adam Fontenot 
-# Contributor: Daniel M. Capella 
-
-pkgname=broot
-pkgver=1.11.1
-pkgrel=2
-pkgdesc='Fuzzy Search + tree + cd'
-arch=('x86_64')
-url=https://github.com/Canop/broot
-license=('MIT')
-depends=('gcc-libs' 'zlib' 'libgit2')
-makedepends=('rust')
-options=('!lto')
-source=("https://github.com/Canop/broot/archive/v$pkgver/$pkgname-v$pkgver.tar.gz;)
-sha256sums=('0cc09d5bcc5c6b80d6161c2ba234df0332c1dabd6c3c9f2f6ebe2f82b8eef5c3')
-
-prepare() {
-  cd $pkgname-$pkgver
-  cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
-}
-
-build() {
-  cd $pkgname-$pkgver
-  cargo build --release --frozen
-}
-
-check() {
-  cd $pkgname-$pkgver
-  cargo test --frozen
-}
-
-package() {
-  cd $pkgname-$pkgver
-  install -Dt "$pkgdir"/usr/bin target/release/$pkgname
-  sed -i "s/#version/$pkgver/" man/page
-  # Theoretically we could get the date from the CHANGELOG.md but it seems 
that the
-  # CHANGELOG.md entry for the current version isn't actually in the current 
release.
-  # changelog_date=$(sed -n "s/.*v$pkgver - \(.*\)$/\1/p" CHANGELOG.md)
-  sed -i "s/#date//" man/page
-  install -Dm644 man/page "$pkgdir/usr/share/man/man1/$pkgname.1"
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-  install -Dm644 resources/icons/vscode/vscode.ttf 
"$pkgdir/usr/share/fonts/TTF/vscode.ttf"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: broot/repos/community-x86_64/PKGBUILD (from rev 1196082, 
broot/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-06 22:01:42 UTC (rev 1196083)
@@ -0,0 +1,47 @@
+# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Orhun Parmaksız 
+# Contributor: Adam Fontenot 
+# Contributor: Daniel M. Capella 
+
+pkgname=broot
+pkgver=1.12.0
+pkgrel=1
+pkgdesc='Fuzzy Search + tree + cd'
+arch=('x86_64')
+url=https://github.com/Canop/broot
+license=('MIT')
+depends=('gcc-libs' 'zlib' 'libgit2')
+makedepends=('rust')
+options=('!lto')
+source=("https://github.com/Canop/broot/archive/v$pkgver/$pkgname-v$pkgver.tar.gz;)
+sha256sums=('94b5bc7fa79f379c2c23c23402e7a076495b4d23ca7d89e4631702dbff15fb82')
+
+prepare() {
+  cd $pkgname-$pkgver
+  cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
+}
+
+build() {
+  cd $pkgname-$pkgver
+  cargo build --release --frozen
+}
+
+check() {
+  cd $pkgname-$pkgver
+  cargo test --frozen
+}
+
+package() {
+  cd $pkgname-$pkgver
+  install -Dt "$pkgdir"/usr/bin target/release/$pkgname
+  sed -i "s/#version/$pkgver/" man/page
+  # Theoretically we could get the date from the CHANGELOG.md but it seems 
that the
+  # CHANGELOG.md entry for the current version isn't actually in the current 
release.
+  # changelog_date=$(sed -n "s/.*v$pkgver - \(.*\)$/\1/p" CHANGELOG.md)
+  sed -i "s/#date//" man/page
+  install -Dm644 man/page "$pkgdir/usr/share/man/man1/$pkgname.1"
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+  install -Dm644 resources/icons/vscode/vscode.ttf 
"$pkgdir/usr/share/fonts/TTF/vscode.ttf"
+}
+
+# vim:set ts=2 sw=2 et:



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

2022-05-06 Thread Sven-Hendrik Haase via arch-commits
Date: Friday, May 6, 2022 @ 22:01:36
  Author: svenstaro
Revision: 1196082

upgpkg: broot 1.12.0-1

Modified:
  broot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-06 22:01:28 UTC (rev 1196081)
+++ PKGBUILD2022-05-06 22:01:36 UTC (rev 1196082)
@@ -4,8 +4,8 @@
 # Contributor: Daniel M. Capella 
 
 pkgname=broot
-pkgver=1.11.1
-pkgrel=2
+pkgver=1.12.0
+pkgrel=1
 pkgdesc='Fuzzy Search + tree + cd'
 arch=('x86_64')
 url=https://github.com/Canop/broot
@@ -14,7 +14,7 @@
 makedepends=('rust')
 options=('!lto')
 
source=("https://github.com/Canop/broot/archive/v$pkgver/$pkgname-v$pkgver.tar.gz;)
-sha256sums=('0cc09d5bcc5c6b80d6161c2ba234df0332c1dabd6c3c9f2f6ebe2f82b8eef5c3')
+sha256sums=('94b5bc7fa79f379c2c23c23402e7a076495b4d23ca7d89e4631702dbff15fb82')
 
 prepare() {
   cd $pkgname-$pkgver



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

2022-05-06 Thread Levente Polyak via arch-commits
Date: Friday, May 6, 2022 @ 22:01:28
  Author: anthraxx
Revision: 1196081

archrelease: copy trunk to community-x86_64

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

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

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

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



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

2022-05-06 Thread Levente Polyak via arch-commits
Date: Friday, May 6, 2022 @ 22:01:23
  Author: anthraxx
Revision: 1196080

upgpkg: eksctl 0.96.0-1

Modified:
  eksctl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-06 21:55:45 UTC (rev 1196079)
+++ PKGBUILD2022-05-06 22:01:23 UTC (rev 1196080)
@@ -3,8 +3,8 @@
 # Contributor: Mike Williamson 
 
 pkgname=eksctl
-pkgver=0.91.0
-pkgrel=2
+pkgver=0.96.0
+pkgrel=1
 pkgdesc='Command line tool for creating clusters on Amazon EKS'
 url='https://github.com/weaveworks/eksctl'
 arch=('x86_64')
@@ -12,8 +12,8 @@
 depends=('kubectl' 'glibc')
 makedepends=('go')
 source=("${url}/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz")
-sha256sums=('472df88b19e6bd470fedd3a21205ef4da530700dda1d1e7e1a8f6bf8111e35bc')
-b2sums=('5038337e9463d7ef73c18b7589c743214643f5e6c143990eadfbac8fedc67c2e1f0c8dcab58f4dd12fbdd542868b2498b9d88f517617184ac380c09d93e06f80')
+sha256sums=('430312b4c3b3a0749f1b1daacf811f9783083447ff2646aea07ec1f37e9ad2cc')
+b2sums=('6b5129f0c7e36dea2ead34c9608e54b945d3c7d8c5fdcb22dc6218bc0c9d0b56401433f4a65eab48cbbe30dcd21ed073ceb9805d2bb43007ae2b5b358018573b')
 
 build() {
   cd ${pkgname}-${pkgver}



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

2022-05-06 Thread Levente Polyak via arch-commits
Date: Friday, May 6, 2022 @ 21:55:45
  Author: anthraxx
Revision: 1196079

archrelease: copy trunk to community-x86_64

Added:
  yara/repos/community-x86_64/PKGBUILD
(from rev 1196078, yara/trunk/PKGBUILD)
Deleted:
  yara/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-06 21:55:41 UTC (rev 1196078)
+++ PKGBUILD2022-05-06 21:55:45 UTC (rev 1196079)
@@ -1,40 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: bitwave 
-# Contributor: fnord0 
-
-pkgname=yara
-pkgver=4.1.3
-pkgrel=1
-pkgdesc='Tool aimed at helping malware researchers to identify and classify 
malware samples'
-url='https://github.com/VirusTotal/yara'
-arch=('x86_64')
-license=('BSD')
-depends=('openssl' 'file' libmagic.so)
-provides=('libyara.so')
-source=(https://github.com/VirusTotal/${pkgname}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha512sums=('1bfa1787c62dfd9a87fa8db5e8c2fa68f082ae66b16b5373bdcc6bc66b32016fcaffd4baa7e59a7c1f6d3426c972eca9cc22f70d475067d7557b1014a4ab65fc')
-b2sums=('abfdd5918abe3641056ccde3eebb754cbd66eff5569978d3b1aad5d925d62fcb96b1f7367d0d014dd165db8634418259667be3b2441f93e0848bfbd905ca32dd')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-  autoreconf -fiv
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure \
---prefix=/usr \
---with-crypto \
---enable-magic
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-  install -Dm 644 COPYING -t "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
-  cp -r docs "${pkgdir}/usr/share/doc/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: yara/repos/community-x86_64/PKGBUILD (from rev 1196078, 
yara/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-06 21:55:45 UTC (rev 1196079)
@@ -0,0 +1,40 @@
+# Maintainer: Levente Polyak 
+# Contributor: bitwave 
+# Contributor: fnord0 
+
+pkgname=yara
+pkgver=4.2.1
+pkgrel=1
+pkgdesc='Tool aimed at helping malware researchers to identify and classify 
malware samples'
+url='https://github.com/VirusTotal/yara'
+arch=('x86_64')
+license=('BSD')
+depends=('openssl' 'file' libmagic.so)
+provides=('libyara.so')
+source=(https://github.com/VirusTotal/${pkgname}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('036a35d713647b23998135da0d27c13a8876aa44e18e3c9dc99fa425273d7c4a953cbdc78f413f29e8bf818d84b340d0719e241d2a83b7165a16d97e952c45b0')
+b2sums=('dc290bf7fe85d468fd519e68a12d88097d817ca064a665397ba64768078a2d572b46e488eb48747ea1904207598b41a72a510b4b8e4e8601cf518cb6ab98c322')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  autoreconf -fiv
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure \
+--prefix=/usr \
+--with-crypto \
+--enable-magic
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -Dm 644 COPYING -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+  cp -r docs "${pkgdir}/usr/share/doc/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:



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

2022-05-06 Thread Levente Polyak via arch-commits
Date: Friday, May 6, 2022 @ 21:55:41
  Author: anthraxx
Revision: 1196078

upgpkg: yara 4.2.1-1

Modified:
  yara/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-06 21:49:04 UTC (rev 1196077)
+++ PKGBUILD2022-05-06 21:55:41 UTC (rev 1196078)
@@ -3,7 +3,7 @@
 # Contributor: fnord0 
 
 pkgname=yara
-pkgver=4.1.3
+pkgver=4.2.1
 pkgrel=1
 pkgdesc='Tool aimed at helping malware researchers to identify and classify 
malware samples'
 url='https://github.com/VirusTotal/yara'
@@ -12,8 +12,8 @@
 depends=('openssl' 'file' libmagic.so)
 provides=('libyara.so')
 
source=(https://github.com/VirusTotal/${pkgname}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha512sums=('1bfa1787c62dfd9a87fa8db5e8c2fa68f082ae66b16b5373bdcc6bc66b32016fcaffd4baa7e59a7c1f6d3426c972eca9cc22f70d475067d7557b1014a4ab65fc')
-b2sums=('abfdd5918abe3641056ccde3eebb754cbd66eff5569978d3b1aad5d925d62fcb96b1f7367d0d014dd165db8634418259667be3b2441f93e0848bfbd905ca32dd')
+sha512sums=('036a35d713647b23998135da0d27c13a8876aa44e18e3c9dc99fa425273d7c4a953cbdc78f413f29e8bf818d84b340d0719e241d2a83b7165a16d97e952c45b0')
+b2sums=('dc290bf7fe85d468fd519e68a12d88097d817ca064a665397ba64768078a2d572b46e488eb48747ea1904207598b41a72a510b4b8e4e8601cf518cb6ab98c322')
 
 prepare() {
   cd ${pkgname}-${pkgver}



[arch-commits] Commit in archboot-arm/repos/extra-any (4 files)

2022-05-06 Thread Tobias Powalowski via arch-commits
Date: Friday, May 6, 2022 @ 21:53:39
  Author: tpowa
Revision: 444824

archrelease: copy trunk to extra-any

Added:
  archboot-arm/repos/extra-any/PKGBUILD
(from rev 444823, archboot-arm/trunk/PKGBUILD)
  archboot-arm/repos/extra-any/archboot.install
(from rev 444823, archboot-arm/trunk/archboot.install)
Deleted:
  archboot-arm/repos/extra-any/PKGBUILD
  archboot-arm/repos/extra-any/archboot.install

--+
 PKGBUILD |  108 ++---
 archboot.install |   38 +-
 2 files changed, 73 insertions(+), 73 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-06 21:53:34 UTC (rev 444823)
+++ PKGBUILD2022-05-06 21:53:39 UTC (rev 444824)
@@ -1,54 +0,0 @@
-# Maintainer : Tobias Powalowski 
-
-pkgname=archboot-arm
-pkgver=2022.05
-pkgrel=32
-pkgdesc="Advanced, modular arch boot/install image creation utility with 
aarch64 depends"
-arch=(any)
-license=('GPL')
-url="https://wiki.archlinux.org/title/Archboot;
-depends=('mkinitcpio' 'pacman' 'wget' 'bash' 'coreutils' 'cryptsetup' 'dialog' 
'e2fsprogs' 'findutils' 'gawk' 'grep' 'iputils' 'jfsutils'
- 'less' 'lvm2' 'mdadm' 'kmod' 'nano' 'ncurses' 'net-tools' 
'gnu-netcat' 'procps-ng' 'psmisc' 'sed' 'snarf'
- 'tar' 'util-linux' 'bind' 'which' 'kbd' 'wireless_tools' 'xfsprogs' 
'hdparm' 'inetutils'
- 'openssh' 'hwdetect' 'shadow' 'bridge-utils' 'dosfstools' 'glibc' 
'linux' 'kexec-tools' 'ppp' 'rp-pppoe'
- 'pciutils' 'usbutils' 'vpnc' 'openvpn' 'b43-fwcutter' 
'wpa_supplicant' 'rsync' 'gzip' 'libarchive'
-'device-mapper' 'screen' 'elfutils' 'pam' 'cracklib' 'nfs-utils' 
'nfsidmap' 'readline' 'acl' 'attr' 'pcre' 'cpio'
-'fuse' 'libusb' 'vim' 'vi' 'lzo' 'lzop' 'libsasl' 'libldap' 'gpm' 
'libevent' 'gcc-libs' 'sdparm' 'licenses' 'pptpclient'
-'dhcpcd' 'openssl' 'dmraid' 'linux-atm' 'netctl' 'parted' 'tzdata' 
'ntp' 'libgcrypt' 'iw' 
-'libnl' 'iproute2' 'wireless-regdb' 'dhclient' 'mtools' 'fsarchiver' 
'xz' 'libtirpc' 'rpcbind' 'testdisk'
-'wipe' 'ddrescue' 'ifplugd' 'libgssglue' 'mkinitcpio-nfs-utils' 
'gptfdisk' 'nilfs-utils' 'btrfs-progs'
-'iana-etc' 'keyutils' 'libisoburn' 'file' 'curl'  'smartmontools' 
'dnsmasq' 'cifs-utils'
-'openconnect' 'libxml2' 'libproxy' 'tcpdump' 'nmap' 'lua' 'gnutls' 
'nettle' 'libtasn1' 'expat'
-'glib2' 'freetype2' 'libssh2' 'libedit' 'talloc' 'libjpeg-turbo' 
'dmidecode' 'gnupg' 'libksba' 'libassuan' 'pinentry'
-'gpgme' 'ldns' 'dnssec-anchors' 'hwdata' 'systemd' 'haveged' 'pambase' 
'traceroute' 'grub' 
-'systemd-sysvcompat' 'arch-install-scripts' 'zsh' 'gdbm' 
'grml-zsh-config' 'cpupower' 'wvdial' 'xl2tpd' 
-'usb_modeswitch' 'efibootmgr' 'f2fs-tools' 'efitools' 'efivar' 
'ethtool' 'exfatprogs' 
-'fuse3' 'flex' 'amd-ucode' 'cdrtools' 'nvme-cli' 'fatresize' 'iwd' 
'elinks' 'weechat' 'lshw' 'tmux'
-'sbsigntools' 'openresolv' 'mokutil' 'archboot-bootloader' 
'archinstall' 'sbctl' 'gpart')
-makedepends=('git')
-optdepends=('linux-firmware: for firmware inclusion on image file'
-'linux-firmware-marvell: for marvell firmware support'
-'sudo: for running the archboot build server')
-source=("git+https://gitlab.archlinux.org/tpowa/archboot.git#tag=${pkgver}-${pkgrel}?signed;)
-backup=('etc/archboot/defaults'
-   'etc/archboot/x86_64.conf'
-'etc/archboot/aarch64.conf'
-'etc/archboot/x86_64-latest.conf'
-'etc/archboot/aarch64-latest.conf'
-   'etc/archboot/x86_64-local.conf'
-'etc/archboot/aarch64-local.conf'
-'etc/archboot/presets/x86_64'
-'etc/archboot/presets/aarch64'
-'etc/archboot/presets/x86_64-latest'
-'etc/archboot/presets/aarch64-latest'
-   'etc/archboot/presets/x86_64-local'
-'etc/archboot/presets/aarch64-local')
-install=archboot.install
-sha256sums=('SKIP')
-validgpgkeys=('5B7E3FB71B7F10329A1C03AB771DF6627EDF681F' # Tobias Powalowski 

- )
-package()
-{
-  cd "$srcdir/archboot"
-  mv etc/ usr/ "$pkgdir/"
-}

Copied: archboot-arm/repos/extra-any/PKGBUILD (from rev 444823, 
archboot-arm/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-06 21:53:39 UTC (rev 444824)
@@ -0,0 +1,54 @@
+# Maintainer : Tobias Powalowski 
+
+pkgname=archboot-arm
+pkgver=2022.05
+pkgrel=33
+pkgdesc="Advanced, modular arch boot/install image creation utility with 
aarch64 depends"
+arch=(any)
+license=('GPL')
+url="https://wiki.archlinux.org/title/Archboot;
+depends=('mkinitcpio' 'pacman' 'wget' 'bash' 'coreutils' 'cryptsetup' 'dialog' 
'e2fsprogs' 'findutils' 'gawk' 'grep' 'iputils' 'jfsutils'
+ 'less' 'lvm2' 'mdadm' 'kmod' 'nano' 'ncurses' 'net-tools' 
'gnu-netcat' 'procps-ng' 'psmisc' 'sed' 'snarf'
+ 'tar' 'util-linux' 'bind' 

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

2022-05-06 Thread Tobias Powalowski via arch-commits
Date: Friday, May 6, 2022 @ 21:53:34
  Author: tpowa
Revision: 444823

upgpkg: archboot-arm 2022.05-33: bump to latest version

Modified:
  archboot-arm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-06 21:50:29 UTC (rev 444822)
+++ PKGBUILD2022-05-06 21:53:34 UTC (rev 444823)
@@ -2,7 +2,7 @@
 
 pkgname=archboot-arm
 pkgver=2022.05
-pkgrel=32
+pkgrel=33
 pkgdesc="Advanced, modular arch boot/install image creation utility with 
aarch64 depends"
 arch=(any)
 license=('GPL')



[arch-commits] Commit in archboot/repos/extra-any (4 files)

2022-05-06 Thread Tobias Powalowski via arch-commits
Date: Friday, May 6, 2022 @ 21:50:29
  Author: tpowa
Revision: 444822

archrelease: copy trunk to extra-any

Added:
  archboot/repos/extra-any/PKGBUILD
(from rev 444821, archboot/trunk/PKGBUILD)
  archboot/repos/extra-any/archboot.install
(from rev 444821, archboot/trunk/archboot.install)
Deleted:
  archboot/repos/extra-any/PKGBUILD
  archboot/repos/extra-any/archboot.install

--+
 PKGBUILD |  110 ++---
 archboot.install |   38 +-
 2 files changed, 74 insertions(+), 74 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-06 21:49:14 UTC (rev 444821)
+++ PKGBUILD2022-05-06 21:50:29 UTC (rev 444822)
@@ -1,55 +0,0 @@
-# Maintainer : Tobias Powalowski 
-
-pkgname=archboot
-pkgver=2022.05
-pkgrel=32
-pkgdesc="Advanced, modular arch boot/install image creation utility"
-arch=(any)
-license=('GPL')
-url="https://wiki.archlinux.org/title/Archboot;
-depends=('mkinitcpio' 'pacman' 'wget' 'bash' 'coreutils' 'cryptsetup' 'dialog' 
'e2fsprogs' 'findutils' 'gawk' 'grep' 'iputils' 'jfsutils'
- 'less' 'lvm2' 'mdadm' 'kmod' 'nano' 'ncurses' 'net-tools' 
'gnu-netcat' 'procps-ng' 'psmisc' 'sed' 'snarf'
- 'tar' 'util-linux' 'bind' 'which' 'kbd' 'wireless_tools' 'xfsprogs' 
'hdparm' 'inetutils'
- 'openssh' 'hwdetect' 'shadow' 'bridge-utils'  'dosfstools' 'glibc' 
'linux' 'kexec-tools' 'ppp' 'rp-pppoe'
- 'pciutils' 'usbutils' 'vpnc' 'openvpn' 'b43-fwcutter' 
'wpa_supplicant' 'rsync' 'gzip' 'libarchive'
-'device-mapper' 'screen' 'elfutils' 'pam' 'cracklib' 'nfs-utils' 
'nfsidmap' 'readline' 'acl' 'attr' 'pcre' 'cpio'
-'fuse' 'libusb' 'vi' 'vim' 'lzo' 'lzop' 'libsasl' 'libldap' 'gpm' 
'libevent' 'gcc-libs' 'sdparm' 'licenses' 'pptpclient' 'ipw2100-fw'
-'ipw2200-fw' 'dhcpcd' 'openssl' 'dmraid' 'linux-atm' 'netctl' 'parted' 
'tzdata' 'ntp' 'libgcrypt' 'iw' 
-'libnl' 'iproute2' 'wireless-regdb' 'dhclient' 'mtools' 'fsarchiver' 
'xz' 'libtirpc' 'rpcbind' 'testdisk'
-'wipe' 'ddrescue' 'ifplugd' 'libgssglue' 'mkinitcpio-nfs-utils' 
'gptfdisk' 'nilfs-utils' 'btrfs-progs'
-'iana-etc' 'keyutils' 'libisoburn' 'file' 'curl'  'smartmontools' 
'dnsmasq' 'cifs-utils'
-'openconnect' 'libxml2' 'libproxy' 'tcpdump' 'nmap' 'lua' 'gnutls' 
'nettle' 'libtasn1' 'expat'
-'glib2' 'freetype2' 'libssh2' 'libedit' 'talloc' 'libjpeg-turbo' 
'dmidecode' 'gnupg' 'libksba' 'libassuan' 'pinentry'
-'gpgme' 'ldns' 'dnssec-anchors' 'hwdata' 'systemd' 'archlinux-keyring' 
'haveged' 'pambase' 'chntpw' 'traceroute' 'grub' 
-'systemd-sysvcompat' 'intel-ucode' 'arch-install-scripts' 'zsh' 'gdbm' 
'grml-zsh-config' 'cpupower' 'wvdial' 'xl2tpd' 
-'usb_modeswitch' 'refind' 'efibootmgr' 'f2fs-tools' 'efitools' 
'efivar' 'ethtool' 'exfatprogs' 'broadcom-wl'
-'fuse3' 'flex' 'amd-ucode' 'edk2-shell' 'cdrtools' 'nvme-cli' 
'fatresize' 'iwd' 'elinks' 'weechat' 'lshw' 'tmux'
-'sbsigntools' 'openresolv' 'mokutil' 'archboot-bootloader' 
'archinstall' 'sbctl' 'gpart')
-makedepends=('git')
-optdepends=('linux-firmware: for firmware inclusion on image file'
-'linux-firmware-marvell: for marvell firmware support'
-'archboot-qemu-aarch64: for aarch64 image building on x86_64'
-'sudo: for running the archboot build server')
-source=("git+https://gitlab.archlinux.org/tpowa/archboot.git#tag=${pkgver}-${pkgrel}?signed;)
-backup=('etc/archboot/defaults'
-   'etc/archboot/x86_64.conf'
-'etc/archboot/aarch64.conf'
-'etc/archboot/x86_64-latest.conf'
-'etc/archboot/aarch64-latest.conf'
-'etc/archboot/x86_64-local.conf'
-   'etc/archboot/aarch64-local.conf'
-   'etc/archboot/presets/x86_64'
-'etc/archboot/presets/aarch64'
-'etc/archboot/presets/x86_64-latest'
-'etc/archboot/presets/aarch64-latest'
-   'etc/archboot/presets/x86_64-local'
-   'etc/archboot/presets/aarch64-local')
-install=archboot.install
-sha256sums=('SKIP')
-validgpgkeys=('5B7E3FB71B7F10329A1C03AB771DF6627EDF681F' # Tobias Powalowski 

- )
-package()
-{
-  cd "$srcdir/archboot"
-  mv etc/ usr/ "$pkgdir/"
-}

Copied: archboot/repos/extra-any/PKGBUILD (from rev 444821, 
archboot/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-06 21:50:29 UTC (rev 444822)
@@ -0,0 +1,55 @@
+# Maintainer : Tobias Powalowski 
+
+pkgname=archboot
+pkgver=2022.05
+pkgrel=33
+pkgdesc="Advanced, modular arch boot/install image creation utility"
+arch=(any)
+license=('GPL')
+url="https://wiki.archlinux.org/title/Archboot;
+depends=('mkinitcpio' 'pacman' 'wget' 'bash' 'coreutils' 'cryptsetup' 'dialog' 
'e2fsprogs' 'findutils' 'gawk' 'grep' 'iputils' 'jfsutils'
+ 'less' 'lvm2' 'mdadm' 'kmod' 'nano' 'ncurses' 

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

2022-05-06 Thread Tobias Powalowski via arch-commits
Date: Friday, May 6, 2022 @ 21:49:14
  Author: tpowa
Revision: 444821

upgpkg: archboot 2022.05-33: bump to latest version

Modified:
  archboot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-06 21:45:52 UTC (rev 444820)
+++ PKGBUILD2022-05-06 21:49:14 UTC (rev 444821)
@@ -2,7 +2,7 @@
 
 pkgname=archboot
 pkgver=2022.05
-pkgrel=32
+pkgrel=33
 pkgdesc="Advanced, modular arch boot/install image creation utility"
 arch=(any)
 license=('GPL')



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

2022-05-06 Thread Levente Polyak via arch-commits
Date: Friday, May 6, 2022 @ 21:49:04
  Author: anthraxx
Revision: 1196077

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-06 21:48:59 UTC (rev 1196076)
+++ PKGBUILD2022-05-06 21:49:04 UTC (rev 1196077)
@@ -1,39 +0,0 @@
-# Maintainer: Levente Polyak 
-
-pkgname=python-socketio
-pkgver=5.5.2
-pkgrel=1
-pkgdesc='Python implementation of the Socket.IO realtime server'
-url='https://github.com/miguelgrinberg/python-socketio'
-arch=('any')
-license=('MIT')
-depends=('python' 'python-six' 'python-engineio' 'python-bidict' 
'python-msgpack')
-makedepends=('python-setuptools' 'python-sphinx' 'python-tornado')
-optdepends=('python-tornado: tornado asyncio webserver')
-checkdepends=('python-pytest' 'python-mock')
-options=('!makeflags')
-source=(https://github.com/miguelgrinberg/python-socketio/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha512sums=('9cc7c51085b1568d7a4d8a9e8846323f3ec2ab7371ae996cd296109a82fd2a9b3c6a294bff55e30da5b8412dff91e3f0afffc09aac22d618fbf81c93a1628a86')
-b2sums=('7f0cae9758168463c01e6af3128cf32d630169a31b8abbb8cb1cf25b408826b87fe3a6c4b36a0bee56bb5035254226951e159826448dbd5fc0cb095a674c')
-
-build() {
-  cd ${pkgbase}-${pkgver}
-  python setup.py build
-  make -C docs man text SPHINXBUILD=sphinx-build
-}
-
-check() {
-  cd ${pkgbase}-${pkgver}
-  PYTHONPATH=build/lib python setup.py test
-}
-
-package() {
-  cd ${pkgbase}-${pkgver}
-  python setup.py install -O1 --root="${pkgdir}" --skip-build
-  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
-  install -Dm 644 docs/_build/text/index.txt 
"${pkgdir}/usr/share/doc/${pkgname}/DOCUMENTATION"
-  install -Dm 644 docs/_build/man/python-socketio.1 
"${pkgdir}/usr/share/man/man1/${pkgname}.1"
-}
-
-# vim: ts=2 sw=2 et:

Copied: python-socketio/repos/community-any/PKGBUILD (from rev 1196076, 
python-socketio/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-06 21:49:04 UTC (rev 1196077)
@@ -0,0 +1,39 @@
+# Maintainer: Levente Polyak 
+
+pkgname=python-socketio
+pkgver=5.6.0
+pkgrel=1
+pkgdesc='Python implementation of the Socket.IO realtime server'
+url='https://github.com/miguelgrinberg/python-socketio'
+arch=('any')
+license=('MIT')
+depends=('python' 'python-six' 'python-engineio' 'python-bidict' 
'python-msgpack')
+makedepends=('python-setuptools' 'python-sphinx' 'python-tornado')
+optdepends=('python-tornado: tornado asyncio webserver')
+checkdepends=('python-pytest' 'python-mock')
+options=('!makeflags')
+source=(https://github.com/miguelgrinberg/python-socketio/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('65512b5d81013b1af636dbf61ed27154796ce86d4a470ecb9a749e722aaf442030a88172cd9ce6600e5c1ebd7d838be8aa26fa5887f4252174020fc926d3a447')
+b2sums=('1642053479c527d3019be67113eb57a6237aec9b6e3e3b58d5d0a5d0c5f2a20090fa2cc94b98b6036a3c96b744ab05ab3abf133e88ab629ceb7ecf2f7fc53794')
+
+build() {
+  cd ${pkgbase}-${pkgver}
+  python setup.py build
+  make -C docs man text SPHINXBUILD=sphinx-build
+}
+
+check() {
+  cd ${pkgbase}-${pkgver}
+  PYTHONPATH=build/lib python setup.py test
+}
+
+package() {
+  cd ${pkgbase}-${pkgver}
+  python setup.py install -O1 --root="${pkgdir}" --skip-build
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 docs/_build/text/index.txt 
"${pkgdir}/usr/share/doc/${pkgname}/DOCUMENTATION"
+  install -Dm 644 docs/_build/man/python-socketio.1 
"${pkgdir}/usr/share/man/man1/${pkgname}.1"
+}
+
+# vim: ts=2 sw=2 et:



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

2022-05-06 Thread Levente Polyak via arch-commits
Date: Friday, May 6, 2022 @ 21:48:59
  Author: anthraxx
Revision: 1196076

upgpkg: python-socketio 5.6.0-1

Modified:
  python-socketio/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-06 21:48:19 UTC (rev 1196075)
+++ PKGBUILD2022-05-06 21:48:59 UTC (rev 1196076)
@@ -1,7 +1,7 @@
 # Maintainer: Levente Polyak 
 
 pkgname=python-socketio
-pkgver=5.5.2
+pkgver=5.6.0
 pkgrel=1
 pkgdesc='Python implementation of the Socket.IO realtime server'
 url='https://github.com/miguelgrinberg/python-socketio'
@@ -13,8 +13,8 @@
 checkdepends=('python-pytest' 'python-mock')
 options=('!makeflags')
 
source=(https://github.com/miguelgrinberg/python-socketio/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha512sums=('9cc7c51085b1568d7a4d8a9e8846323f3ec2ab7371ae996cd296109a82fd2a9b3c6a294bff55e30da5b8412dff91e3f0afffc09aac22d618fbf81c93a1628a86')
-b2sums=('7f0cae9758168463c01e6af3128cf32d630169a31b8abbb8cb1cf25b408826b87fe3a6c4b36a0bee56bb5035254226951e159826448dbd5fc0cb095a674c')
+sha512sums=('65512b5d81013b1af636dbf61ed27154796ce86d4a470ecb9a749e722aaf442030a88172cd9ce6600e5c1ebd7d838be8aa26fa5887f4252174020fc926d3a447')
+b2sums=('1642053479c527d3019be67113eb57a6237aec9b6e3e3b58d5d0a5d0c5f2a20090fa2cc94b98b6036a3c96b744ab05ab3abf133e88ab629ceb7ecf2f7fc53794')
 
 build() {
   cd ${pkgbase}-${pkgver}



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

2022-05-06 Thread Levente Polyak via arch-commits
Date: Friday, May 6, 2022 @ 21:48:19
  Author: anthraxx
Revision: 1196075

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-06 21:48:16 UTC (rev 1196074)
+++ PKGBUILD2022-05-06 21:48:19 UTC (rev 1196075)
@@ -1,42 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Sherlock Holo 
-# Contributor: user6553591 
-
-pkgname=python-websockets
-pkgver=10.2
-pkgrel=1
-pkgdesc='Python implementation of the WebSocket Protocol (RFC 6455)'
-url='https://github.com/aaugustin/websockets'
-arch=('x86_64')
-license=('BSD')
-depends=('python')
-makedepends=('python-setuptools' 'python-sphinx' 'python-sphinx-copybutton'
- 'python-sphinx-furo' 'python-sphinx-inline-tabs'
- 'python-sphinxcontrib-spelling' 'python-sphinxcontrib-trio'
- 'python-sphinxext-opengraph')
-source=(https://github.com/aaugustin/websockets/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha512sums=('b8c7fbe627e1c42b0d66e561aa9bcf15d6de07a9cccd203211e0e6af49762774e09f8c5f4523fe214731ae7a96ed4b63639c7ed66fee062cdda3e5fba350')
-b2sums=('2313bab904de3671f973191f1c43d275ede44c87811d82f22c6bd76145610ba5d4ba4d7a1b3a564bfc8c4a9b7921b2edc640af9304733e85deac1e728f0050f3')
-
-build() {
-  cd websockets-${pkgver}
-  python setup.py build
-  sphinx-build -b dirhtml docs docs/_build/html
-  sphinx-build -b man docs docs/_build/man
-}
-
-check() {
-  cd websockets-${pkgver}
-  python setup.py test
-}
-
-package() {
-  cd websockets-${pkgver}
-  python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
-  install -Dm 644 README.rst -t "${pkgdir}/usr/share/doc/${pkgname}"
-  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-  cp -rT docs/_build/html "${pkgdir}/usr/share/doc/${pkgname}"
-  install -Dm 644 docs/_build/man/websockets.1 
"${pkgdir}/usr/share/man/man1/${pkgname}.1"
-}
-
-# vim: ts=2 sw=2 et:

Copied: python-websockets/repos/community-x86_64/PKGBUILD (from rev 1196074, 
python-websockets/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-06 21:48:19 UTC (rev 1196075)
@@ -0,0 +1,42 @@
+# Maintainer: Levente Polyak 
+# Contributor: Sherlock Holo 
+# Contributor: user6553591 
+
+pkgname=python-websockets
+pkgver=10.3
+pkgrel=1
+pkgdesc='Python implementation of the WebSocket Protocol (RFC 6455)'
+url='https://github.com/aaugustin/websockets'
+arch=('x86_64')
+license=('BSD')
+depends=('python')
+makedepends=('python-setuptools' 'python-sphinx' 'python-sphinx-copybutton'
+ 'python-sphinx-furo' 'python-sphinx-inline-tabs'
+ 'python-sphinxcontrib-spelling' 'python-sphinxcontrib-trio'
+ 'python-sphinxext-opengraph')
+source=(https://github.com/aaugustin/websockets/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('75a11dd7605808954c5f59decda5b115db73de96ed4023d8d7ee3c9966551a9ded2d771f76b086c76f49b0787f19349dadcd9010eb5fea8eeddf3d9bba1c6cbb')
+b2sums=('db6075304613ff74ad5928a0c57e90a7d418ac0b9532adba4c6a17b3c3f1982cc94db8ac4c0da5f65343a915f3b2e7ccedce4e6d5d4960cb72fc93c3db6e041c')
+
+build() {
+  cd websockets-${pkgver}
+  python setup.py build
+  sphinx-build -b dirhtml docs docs/_build/html
+  sphinx-build -b man docs docs/_build/man
+}
+
+check() {
+  cd websockets-${pkgver}
+  python setup.py test
+}
+
+package() {
+  cd websockets-${pkgver}
+  python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+  install -Dm 644 README.rst -t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  cp -rT docs/_build/html "${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 docs/_build/man/websockets.1 
"${pkgdir}/usr/share/man/man1/${pkgname}.1"
+}
+
+# vim: ts=2 sw=2 et:



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

2022-05-06 Thread George Rawlinson via arch-commits
Date: Friday, May 6, 2022 @ 21:48:16
  Author: grawlinson
Revision: 1196074

archrelease: copy trunk to community-x86_64

Added:
  buildkit/repos/community-x86_64/PKGBUILD
(from rev 1196072, buildkit/trunk/PKGBUILD)
Deleted:
  buildkit/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-06 21:48:15 UTC (rev 1196073)
+++ PKGBUILD2022-05-06 21:48:16 UTC (rev 1196074)
@@ -1,73 +0,0 @@
-# Maintainer: George Rawlinson 
-# Contributor: Kenneth Endfinger 
-
-pkgname=buildkit
-pkgver=0.10.2
-pkgrel=1
-pkgdesc='A toolkit for converting source code to build artifacts in a 
repeatable manner'
-arch=('x86_64')
-url='https://github.com/moby/buildkit'
-license=('Apache')
-depends=('runc' 'containerd')
-makedepends=('git' 'go')
-options=('!lto')
-_commit='9d2c9b25145ff021f91374408be710938297ba24'
-source=("$pkgname::git+$url.git#commit=$_commit")
-b2sums=('SKIP')
-
-pkgver() {
-  cd "$pkgname"
-
-  # ignore docker tags
-  git describe --tags --exclude 'dockerfile*' | sed 's/^v//'
-}
-
-prepare() {
-  cd "$pkgname"
-
-  # fix paths in systemd unit files
-  sed -i 's:/usr/local:/usr:' \
-examples/systemd/{system,user}/*.service
-
-  # create directory for build output
-  mkdir build
-
-  # download dependencies
-  go mod download
-}
-
-build() {
-  cd "$pkgname"
-
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-
-  local package='github.com/moby/buildkit'
-
-  go build -v \
--trimpath \
--buildmode=pie \
--mod=readonly \
--modcacherw \
--ldflags "-linkmode external -extldflags ${LDFLAGS} \
--X ${package}/version.Version=$pkgver \
--X ${package}/version.Revision=$_commit" \
--o build \
-./cmd/...
-}
-
-package() {
-  cd "$pkgname"
-
-  # binaries
-  install -vDm755 -t "$pkgdir/usr/bin" build/*
-
-  # documentation
-  install -vDm644 -t "$pkgdir/usr/share/doc/$pkgname" README.md
-  cp -vrt "$pkgdir/usr/share/doc/$pkgname" docs
-
-  # systemd integration
-  install -vDm644 -t "$pkgdir/usr/lib/systemd/system" examples/systemd/system/*
-  install -vDm644 -t "$pkgdir/usr/lib/systemd/user" examples/systemd/user/*
-}

Copied: buildkit/repos/community-x86_64/PKGBUILD (from rev 1196072, 
buildkit/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-06 21:48:16 UTC (rev 1196074)
@@ -0,0 +1,73 @@
+# Maintainer: George Rawlinson 
+# Contributor: Kenneth Endfinger 
+
+pkgname=buildkit
+pkgver=0.10.3
+pkgrel=1
+pkgdesc='A toolkit for converting source code to build artifacts in a 
repeatable manner'
+arch=('x86_64')
+url='https://github.com/moby/buildkit'
+license=('Apache')
+depends=('runc' 'containerd')
+makedepends=('git' 'go')
+options=('!lto')
+_commit='c8d25d9a103b70dc300a4fd55e7e576472284e31'
+source=("$pkgname::git+$url.git#commit=$_commit")
+b2sums=('SKIP')
+
+pkgver() {
+  cd "$pkgname"
+
+  # ignore docker tags
+  git describe --tags --exclude 'dockerfile*' | sed 's/^v//'
+}
+
+prepare() {
+  cd "$pkgname"
+
+  # fix paths in systemd unit files
+  sed -i 's:/usr/local:/usr:' \
+examples/systemd/{system,user}/*.service
+
+  # create directory for build output
+  mkdir build
+
+  # download dependencies
+  go mod download
+}
+
+build() {
+  cd "$pkgname"
+
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+
+  local package='github.com/moby/buildkit'
+
+  go build -v \
+-trimpath \
+-buildmode=pie \
+-mod=readonly \
+-modcacherw \
+-ldflags "-linkmode external -extldflags ${LDFLAGS} \
+-X ${package}/version.Version=$pkgver \
+-X ${package}/version.Revision=$_commit" \
+-o build \
+./cmd/...
+}
+
+package() {
+  cd "$pkgname"
+
+  # binaries
+  install -vDm755 -t "$pkgdir/usr/bin" build/*
+
+  # documentation
+  install -vDm644 -t "$pkgdir/usr/share/doc/$pkgname" README.md
+  cp -vrt "$pkgdir/usr/share/doc/$pkgname" docs
+
+  # systemd integration
+  install -vDm644 -t "$pkgdir/usr/lib/systemd/system" examples/systemd/system/*
+  install -vDm644 -t "$pkgdir/usr/lib/systemd/user" examples/systemd/user/*
+}



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

2022-05-06 Thread Levente Polyak via arch-commits
Date: Friday, May 6, 2022 @ 21:48:15
  Author: anthraxx
Revision: 1196073

upgpkg: python-websockets 10.3-1

Modified:
  python-websockets/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-06 21:47:37 UTC (rev 1196072)
+++ PKGBUILD2022-05-06 21:48:15 UTC (rev 1196073)
@@ -3,7 +3,7 @@
 # Contributor: user6553591 
 
 pkgname=python-websockets
-pkgver=10.2
+pkgver=10.3
 pkgrel=1
 pkgdesc='Python implementation of the WebSocket Protocol (RFC 6455)'
 url='https://github.com/aaugustin/websockets'
@@ -15,8 +15,8 @@
  'python-sphinxcontrib-spelling' 'python-sphinxcontrib-trio'
  'python-sphinxext-opengraph')
 
source=(https://github.com/aaugustin/websockets/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha512sums=('b8c7fbe627e1c42b0d66e561aa9bcf15d6de07a9cccd203211e0e6af49762774e09f8c5f4523fe214731ae7a96ed4b63639c7ed66fee062cdda3e5fba350')
-b2sums=('2313bab904de3671f973191f1c43d275ede44c87811d82f22c6bd76145610ba5d4ba4d7a1b3a564bfc8c4a9b7921b2edc640af9304733e85deac1e728f0050f3')
+sha512sums=('75a11dd7605808954c5f59decda5b115db73de96ed4023d8d7ee3c9966551a9ded2d771f76b086c76f49b0787f19349dadcd9010eb5fea8eeddf3d9bba1c6cbb')
+b2sums=('db6075304613ff74ad5928a0c57e90a7d418ac0b9532adba4c6a17b3c3f1982cc94db8ac4c0da5f65343a915f3b2e7ccedce4e6d5d4960cb72fc93c3db6e041c')
 
 build() {
   cd websockets-${pkgver}



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

2022-05-06 Thread George Rawlinson via arch-commits
Date: Friday, May 6, 2022 @ 21:47:37
  Author: grawlinson
Revision: 1196072

upgpkg: buildkit 0.10.3-1

New upstream release.

Modified:
  buildkit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-06 21:46:32 UTC (rev 1196071)
+++ PKGBUILD2022-05-06 21:47:37 UTC (rev 1196072)
@@ -2,7 +2,7 @@
 # Contributor: Kenneth Endfinger 
 
 pkgname=buildkit
-pkgver=0.10.2
+pkgver=0.10.3
 pkgrel=1
 pkgdesc='A toolkit for converting source code to build artifacts in a 
repeatable manner'
 arch=('x86_64')
@@ -11,7 +11,7 @@
 depends=('runc' 'containerd')
 makedepends=('git' 'go')
 options=('!lto')
-_commit='9d2c9b25145ff021f91374408be710938297ba24'
+_commit='c8d25d9a103b70dc300a4fd55e7e576472284e31'
 source=("$pkgname::git+$url.git#commit=$_commit")
 b2sums=('SKIP')
 



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

2022-05-06 Thread Levente Polyak via arch-commits
Date: Friday, May 6, 2022 @ 21:46:32
  Author: anthraxx
Revision: 1196071

archrelease: copy trunk to community-any

Added:
  python-flask-compress/repos/community-any/PKGBUILD
(from rev 1196070, python-flask-compress/trunk/PKGBUILD)
Deleted:
  python-flask-compress/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-06 21:46:27 UTC (rev 1196070)
+++ PKGBUILD2022-05-06 21:46:32 UTC (rev 1196071)
@@ -1,35 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Cedric Girard 
-
-_pyname=Flask-Compress
-pkgname=python-flask-compress
-pkgver=1.11
-pkgrel=1
-pkgdesc='Compress responses in your Flask app'
-url='http://pypi.python.org/pypi/Flask-Compress/'
-arch=('any')
-license=('BSD')
-depends=('python' 'python-flask' 'python-brotli')
-makedepends=('python-setuptools' 'python-setuptools-scm' 'python-build' 
'python-installer' 'python-wheel')
-checkdepends=('python-pytest')
-source=(https://pypi.io/packages/source/${_pyname:0:1}/${_pyname}/${_pyname}-${pkgver}.tar.gz)
-sha256sums=('f569f32c446d6b25ca8e347d5003a0531811ef732678005b0036fc1c9eb1c21c')
-sha512sums=('dd2ceca37eee968527f2008e9356f0ab89f2df46e6d874eff38b93a2cf326c9d24433f0adc8dfe7a7b72599a33f8d173f330aefcd4eea8650923a0466959d7fb')
-
-build() {
-  cd ${_pyname}-${pkgver}
-  python -m build --wheel --no-isolation
-}
-
-check() {
-  cd ${_pyname}-${pkgver}
-  PYTHONPATH="build/lib" pytest
-}
-
-package() {
-  cd ${_pyname}-${pkgver}
-  python -m installer --destdir="$pkgdir" dist/*.whl
-  install -Dm 644 LICENSE.txt -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: python-flask-compress/repos/community-any/PKGBUILD (from rev 1196070, 
python-flask-compress/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-06 21:46:32 UTC (rev 1196071)
@@ -0,0 +1,35 @@
+# Maintainer: Levente Polyak 
+# Contributor: Cedric Girard 
+
+_pyname=Flask-Compress
+pkgname=python-flask-compress
+pkgver=1.12
+pkgrel=1
+pkgdesc='Compress responses in your Flask app'
+url='http://pypi.python.org/pypi/Flask-Compress/'
+arch=('any')
+license=('BSD')
+depends=('python' 'python-flask' 'python-brotli')
+makedepends=('python-setuptools' 'python-setuptools-scm' 'python-build' 
'python-installer' 'python-wheel')
+checkdepends=('python-pytest')
+source=(https://pypi.io/packages/source/${_pyname:0:1}/${_pyname}/${_pyname}-${pkgver}.tar.gz)
+sha256sums=('e2159499f39d618a4d56ba0484e7b58b57956b9a2c6d3510f095f5bb14b7afc5')
+sha512sums=('5712aff44379656e03f7b63fdef727721245cb9329e698a2e25aefca21a77202f5eb0c5f5828395647c694a5b417778a7b5db9eb592753a979d3994603a5')
+
+build() {
+  cd ${_pyname}-${pkgver}
+  python -m build --wheel --no-isolation
+}
+
+check() {
+  cd ${_pyname}-${pkgver}
+  PYTHONPATH="build/lib" pytest
+}
+
+package() {
+  cd ${_pyname}-${pkgver}
+  python -m installer --destdir="$pkgdir" dist/*.whl
+  install -Dm 644 LICENSE.txt -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:



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

2022-05-06 Thread Levente Polyak via arch-commits
Date: Friday, May 6, 2022 @ 21:46:27
  Author: anthraxx
Revision: 1196070

upgpkg: python-flask-compress 1.12-1

Modified:
  python-flask-compress/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-06 21:46:13 UTC (rev 1196069)
+++ PKGBUILD2022-05-06 21:46:27 UTC (rev 1196070)
@@ -3,7 +3,7 @@
 
 _pyname=Flask-Compress
 pkgname=python-flask-compress
-pkgver=1.11
+pkgver=1.12
 pkgrel=1
 pkgdesc='Compress responses in your Flask app'
 url='http://pypi.python.org/pypi/Flask-Compress/'
@@ -13,8 +13,8 @@
 makedepends=('python-setuptools' 'python-setuptools-scm' 'python-build' 
'python-installer' 'python-wheel')
 checkdepends=('python-pytest')
 
source=(https://pypi.io/packages/source/${_pyname:0:1}/${_pyname}/${_pyname}-${pkgver}.tar.gz)
-sha256sums=('f569f32c446d6b25ca8e347d5003a0531811ef732678005b0036fc1c9eb1c21c')
-sha512sums=('dd2ceca37eee968527f2008e9356f0ab89f2df46e6d874eff38b93a2cf326c9d24433f0adc8dfe7a7b72599a33f8d173f330aefcd4eea8650923a0466959d7fb')
+sha256sums=('e2159499f39d618a4d56ba0484e7b58b57956b9a2c6d3510f095f5bb14b7afc5')
+sha512sums=('5712aff44379656e03f7b63fdef727721245cb9329e698a2e25aefca21a77202f5eb0c5f5828395647c694a5b417778a7b5db9eb592753a979d3994603a5')
 
 build() {
   cd ${_pyname}-${pkgver}



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

2022-05-06 Thread Levente Polyak via arch-commits
Date: Friday, May 6, 2022 @ 21:46:13
  Author: anthraxx
Revision: 1196069

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-06 21:46:08 UTC (rev 1196068)
+++ PKGBUILD2022-05-06 21:46:13 UTC (rev 1196069)
@@ -1,44 +0,0 @@
-# Maintainer: Levente Polyak 
-
-pkgname=python-engineio
-pkgver=4.3.1
-pkgrel=1
-pkgdesc='Python implementation of the Engine.IO realtime server'
-url='https://github.com/miguelgrinberg/python-engineio'
-arch=('any')
-license=('MIT')
-depends=('python' 'python-six' 'python-urllib3' 'python-websocket-client' 
'python-websockets')
-optdepends=('python-eventlet: eventlet driver'
-'python-aiohttp: aiohttp driver'
-'python-tornado: tornado driver'
-'python-gevent: gevent driver'
-'python-gevent-websocket: gevent driver')
-makedepends=('python-setuptools' 'python-sphinx' 'python-six' 
'python-eventlet' 'python-aiohttp' 'python-tornado'
- 'python-urllib3' 'python-websocket-client' 'python-gevent' 
'python-gevent-websocket' 'python-websockets')
-checkdepends=('python-mock' 'python-pytest' 'python-pytest-runner')
-options=('!makeflags')
-source=(https://github.com/miguelgrinberg/python-engineio/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha512sums=('6e00134191ff39e3e2f3f8cd933562be8ee9db1512f6b7d3cc2d52283ee2ea329d942edcde0bbfdfed71348d96c62067c423d666ad32a789eab760b583fc75af')
-b2sums=('a5234a12ad4434e0793154569f4c3f7d3c416d6334acf6af6de03336861797a42d6930350944a4ed6cca089daaad731b209878b08c61b29a97793afbcea473ac')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  python setup.py build
-  make -C docs man text SPHINXBUILD=sphinx-build
-}
-
-check() {
-  cd ${pkgname}-${pkgver}
-  PYTHONPATH=build/lib python setup.py test
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  python setup.py install -O1 --root="${pkgdir}" --skip-build
-  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -Dm 644 README.rst -t "${pkgdir}/usr/share/doc/${pkgname}"
-  install -Dm 644 docs/_build/text/*.txt -t 
"${pkgdir}/usr/share/doc/${pkgname}"
-  install -Dm 644 docs/_build/man/python-engineio.1 
"${pkgdir}/usr/share/man/man1/${pkgname}.1"
-}
-
-# vim: ts=2 sw=2 et:

Copied: python-engineio/repos/community-any/PKGBUILD (from rev 1196068, 
python-engineio/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-06 21:46:13 UTC (rev 1196069)
@@ -0,0 +1,44 @@
+# Maintainer: Levente Polyak 
+
+pkgname=python-engineio
+pkgver=4.3.2
+pkgrel=1
+pkgdesc='Python implementation of the Engine.IO realtime server'
+url='https://github.com/miguelgrinberg/python-engineio'
+arch=('any')
+license=('MIT')
+depends=('python' 'python-six' 'python-urllib3' 'python-websocket-client' 
'python-websockets')
+optdepends=('python-eventlet: eventlet driver'
+'python-aiohttp: aiohttp driver'
+'python-tornado: tornado driver'
+'python-gevent: gevent driver'
+'python-gevent-websocket: gevent driver')
+makedepends=('python-setuptools' 'python-sphinx' 'python-six' 
'python-eventlet' 'python-aiohttp' 'python-tornado'
+ 'python-urllib3' 'python-websocket-client' 'python-gevent' 
'python-gevent-websocket' 'python-websockets')
+checkdepends=('python-mock' 'python-pytest' 'python-pytest-runner')
+options=('!makeflags')
+source=(https://github.com/miguelgrinberg/python-engineio/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('59933a0093167042a3873ba1561d2859359a5ad160f6b7b5c19478b1f73d1bd068779942c8bfc44dd5a8d9f155359571298b960bcd217aab341bdfec35bc5b28')
+b2sums=('87dece98d72b7b0384e3b9d57062a3eaa7aeb80ac3f2f685d50b8816e122398ffd54da1f4b99a90a1f535e2d0f0d282167a682de022373e6108f7e91f8689aa1')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  python setup.py build
+  make -C docs man text SPHINXBUILD=sphinx-build
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  PYTHONPATH=build/lib python setup.py test
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  python setup.py install -O1 --root="${pkgdir}" --skip-build
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -Dm 644 README.rst -t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 docs/_build/text/*.txt -t 
"${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 docs/_build/man/python-engineio.1 
"${pkgdir}/usr/share/man/man1/${pkgname}.1"
+}
+
+# vim: ts=2 sw=2 et:



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

2022-05-06 Thread Levente Polyak via arch-commits
Date: Friday, May 6, 2022 @ 21:46:08
  Author: anthraxx
Revision: 1196068

upgpkg: python-engineio 4.3.2-1

Modified:
  python-engineio/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-06 21:43:44 UTC (rev 1196067)
+++ PKGBUILD2022-05-06 21:46:08 UTC (rev 1196068)
@@ -1,7 +1,7 @@
 # Maintainer: Levente Polyak 
 
 pkgname=python-engineio
-pkgver=4.3.1
+pkgver=4.3.2
 pkgrel=1
 pkgdesc='Python implementation of the Engine.IO realtime server'
 url='https://github.com/miguelgrinberg/python-engineio'
@@ -18,8 +18,8 @@
 checkdepends=('python-mock' 'python-pytest' 'python-pytest-runner')
 options=('!makeflags')
 
source=(https://github.com/miguelgrinberg/python-engineio/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha512sums=('6e00134191ff39e3e2f3f8cd933562be8ee9db1512f6b7d3cc2d52283ee2ea329d942edcde0bbfdfed71348d96c62067c423d666ad32a789eab760b583fc75af')
-b2sums=('a5234a12ad4434e0793154569f4c3f7d3c416d6334acf6af6de03336861797a42d6930350944a4ed6cca089daaad731b209878b08c61b29a97793afbcea473ac')
+sha512sums=('59933a0093167042a3873ba1561d2859359a5ad160f6b7b5c19478b1f73d1bd068779942c8bfc44dd5a8d9f155359571298b960bcd217aab341bdfec35bc5b28')
+b2sums=('87dece98d72b7b0384e3b9d57062a3eaa7aeb80ac3f2f685d50b8816e122398ffd54da1f4b99a90a1f535e2d0f0d282167a682de022373e6108f7e91f8689aa1')
 
 build() {
   cd ${pkgname}-${pkgver}



[arch-commits] Commit in pgbouncer/repos/extra-x86_64 (12 files)

2022-05-06 Thread Levente Polyak via arch-commits
Date: Friday, May 6, 2022 @ 21:45:52
  Author: anthraxx
Revision: 444820

archrelease: copy trunk to extra-x86_64

Added:
  pgbouncer/repos/extra-x86_64/PKGBUILD
(from rev 444819, pgbouncer/trunk/PKGBUILD)
  pgbouncer/repos/extra-x86_64/pgbouncer.ini
(from rev 444819, pgbouncer/trunk/pgbouncer.ini)
  pgbouncer/repos/extra-x86_64/pgbouncer.logrotate
(from rev 444819, pgbouncer/trunk/pgbouncer.logrotate)
  pgbouncer/repos/extra-x86_64/pgbouncer.service
(from rev 444819, pgbouncer/trunk/pgbouncer.service)
  pgbouncer/repos/extra-x86_64/pgbouncer.sysusers
(from rev 444819, pgbouncer/trunk/pgbouncer.sysusers)
  pgbouncer/repos/extra-x86_64/pgbouncer.tmpfiles.conf
(from rev 444819, pgbouncer/trunk/pgbouncer.tmpfiles.conf)
Deleted:
  pgbouncer/repos/extra-x86_64/PKGBUILD
  pgbouncer/repos/extra-x86_64/pgbouncer.ini
  pgbouncer/repos/extra-x86_64/pgbouncer.logrotate
  pgbouncer/repos/extra-x86_64/pgbouncer.service
  pgbouncer/repos/extra-x86_64/pgbouncer.sysusers
  pgbouncer/repos/extra-x86_64/pgbouncer.tmpfiles.conf

-+
 PKGBUILD|  110 +++---
 pgbouncer.ini   |  104 +--
 pgbouncer.logrotate |   16 +++---
 pgbouncer.service   |   22 -
 pgbouncer.sysusers  |6 +-
 pgbouncer.tmpfiles.conf |8 +--
 6 files changed, 133 insertions(+), 133 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-06 21:45:44 UTC (rev 444819)
+++ PKGBUILD2022-05-06 21:45:52 UTC (rev 444820)
@@ -1,55 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Dan McGee 
-
-pkgname=pgbouncer
-pkgver=1.16.1
-pkgrel=1
-pkgdesc='Lightweight connection pooler for PostgreSQL'
-url='https://pgbouncer.github.io/'
-arch=('x86_64')
-license=('BSD')
-depends=('glibc' 'libevent' 'c-ares' 'libcares.so' 'systemd' 'pam' 'libpam.so' 
'openssl')
-makedepends=('asciidoc' 'xmlto')
-checkdepends=('postgresql-libs' 'postgresql')
-backup=('etc/pgbouncer/pgbouncer.ini'
-'etc/logrotate.d/pgbouncer')
-source=(https://pgbouncer.github.io/downloads/files/${pkgver}/pgbouncer-${pkgver}.tar.gz
-pgbouncer.ini
-pgbouncer.logrotate
-pgbouncer.service
-pgbouncer.tmpfiles.conf
-pgbouncer.sysusers)
-sha512sums=('9ecb7c7ae136d85e3da434094909df3a6ff06ce8586a1848c0c00914d87a877aecbb26ea30ad8230062160f3177621cc16deb4a490e9a2a649c8032dacb86341'
-
'39abc7b11c9d7a2593941b4d2a82db998ac1b1e3da131ae276da73c7afc4eda7b69bbfd0acd39f7bce20ecb911baf0adba341ff58dcab1a57e419708e7c8d26f'
-
'1dc86704fce211b23afe7962c947c7de80a15bef219928acbf486b915d80d44a6590fbc509fe650c97b694a508bcf95d2152663863f0c372323286e644c6d60a'
-
'2b4b7129eda54b34405aa4e15a4d37b2173b529ecae070e766f1dcebd0af8f6898ee1b665a60d5f633036a52662e89967f33caacf2841dad441960230ef7'
-
'0757205e5cb5f679bab00bdbed2c828a536239f380d537498bc893c77162e0978308a5f38fae4cb6470f18d6ed0fe4a3ce8f00e85aef89b14bcf6e2eab05a696'
-
'05551189022bd160ca0d64831d2559480ae2dcfe8a489aa4c22cc375c3def31d1169e48e17e6502ccd18237d79afef5bc4587f3cf14274c125eb71311d00503b')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure \
---prefix=/usr \
---disable-debug \
---with-pam
-  make
-}
-
-check() {
-  cd ${pkgname}-${pkgver}
-  make -C test check
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-  install -Dm 644 NEWS.md -t "${pkgdir}/usr/share/doc/${pkgname}"
-  install -Dm 644 COPYRIGHT -t "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -Dm 644 ../pgbouncer.ini "${pkgdir}/etc/pgbouncer/pgbouncer.ini"
-  install -Dm 644 ../pgbouncer.logrotate "${pkgdir}/etc/logrotate.d/pgbouncer"
-  install -Dm 644 ../pgbouncer.service 
"${pkgdir}/usr/lib/systemd/system/pgbouncer.service"
-  install -Dm 644 ../pgbouncer.tmpfiles.conf 
"${pkgdir}/usr/lib/tmpfiles.d/pgbouncer.conf"
-  install -Dm 644 ../pgbouncer.sysusers 
"${pkgdir}/usr/lib/sysusers.d/pgbouncer.conf"
-}
-
-# vim: ts=2 sw=2 et:

Copied: pgbouncer/repos/extra-x86_64/PKGBUILD (from rev 444819, 
pgbouncer/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-06 21:45:52 UTC (rev 444820)
@@ -0,0 +1,55 @@
+# Maintainer: Levente Polyak 
+# Contributor: Dan McGee 
+
+pkgname=pgbouncer
+pkgver=1.17.0
+pkgrel=1
+pkgdesc='Lightweight connection pooler for PostgreSQL'
+url='https://pgbouncer.github.io/'
+arch=('x86_64')
+license=('BSD')
+depends=('glibc' 'libevent' 'c-ares' 'libcares.so' 'systemd' 'pam' 'libpam.so' 
'openssl')
+makedepends=('asciidoc' 'xmlto')
+checkdepends=('postgresql-libs' 'postgresql')
+backup=('etc/pgbouncer/pgbouncer.ini'
+'etc/logrotate.d/pgbouncer')
+source=(https://pgbouncer.github.io/downloads/files/${pkgver}/pgbouncer-${pkgver}.tar.gz
+pgbouncer.ini
+

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

2022-05-06 Thread Levente Polyak via arch-commits
Date: Friday, May 6, 2022 @ 21:45:44
  Author: anthraxx
Revision: 444819

upgpkg: pgbouncer 1.17.0-1

Modified:
  pgbouncer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-06 21:41:48 UTC (rev 444818)
+++ PKGBUILD2022-05-06 21:45:44 UTC (rev 444819)
@@ -2,7 +2,7 @@
 # Contributor: Dan McGee 
 
 pkgname=pgbouncer
-pkgver=1.16.1
+pkgver=1.17.0
 pkgrel=1
 pkgdesc='Lightweight connection pooler for PostgreSQL'
 url='https://pgbouncer.github.io/'
@@ -19,7 +19,7 @@
 pgbouncer.service
 pgbouncer.tmpfiles.conf
 pgbouncer.sysusers)
-sha512sums=('9ecb7c7ae136d85e3da434094909df3a6ff06ce8586a1848c0c00914d87a877aecbb26ea30ad8230062160f3177621cc16deb4a490e9a2a649c8032dacb86341'
+sha512sums=('5913ce542f0f694f114db8a2f339e536fb2b5887efb160b7ce3c708ae3d638bee95943104eafb9fbc4fc225649bd5625da2ccf1b56489afe33ebf8aacac48863'
 
'39abc7b11c9d7a2593941b4d2a82db998ac1b1e3da131ae276da73c7afc4eda7b69bbfd0acd39f7bce20ecb911baf0adba341ff58dcab1a57e419708e7c8d26f'
 
'1dc86704fce211b23afe7962c947c7de80a15bef219928acbf486b915d80d44a6590fbc509fe650c97b694a508bcf95d2152663863f0c372323286e644c6d60a'
 
'2b4b7129eda54b34405aa4e15a4d37b2173b529ecae070e766f1dcebd0af8f6898ee1b665a60d5f633036a52662e89967f33caacf2841dad441960230ef7'



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

2022-05-06 Thread George Rawlinson via arch-commits
Date: Friday, May 6, 2022 @ 21:43:44
  Author: grawlinson
Revision: 1196067

archrelease: copy trunk to community-any

Added:
  sqlfluff/repos/community-any/PKGBUILD
(from rev 1196066, sqlfluff/trunk/PKGBUILD)
Deleted:
  sqlfluff/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-06 21:43:06 UTC (rev 1196066)
+++ PKGBUILD2022-05-06 21:43:44 UTC (rev 1196067)
@@ -1,79 +0,0 @@
-# Maintainer: George Rawlinson 
-# Contributor: Morteza NourelahiAlamdari 
-
-pkgname=sqlfluff
-pkgver=0.13.0
-pkgrel=1
-pkgdesc="A dialect-flexible and configurable SQL linter"
-arch=('any')
-url="https://www.sqlfluff.com;
-license=('MIT')
-depends=(
-  'python'
-  'python-appdirs'
-  'python-cached-property'
-  'python-chardet'
-  'python-click'
-  'python-colorama'
-  'python-diff-cover'
-  'python-jinja'
-  'python-oyaml'
-  'python-pathspec'
-  'python-pytest'
-  'python-regex'
-  'python-tblib'
-  'python-toml'
-  'python-tqdm'
-  'python-typing_extensions'
-)
-makedepends=(
-  'git'
-  'python-build'
-  'python-wheel'
-  'python-installer'
-)
-checkdepends=('python-hypothesis')
-_commit='6807ac8172eda5828c86c06641e3b45460cd6664'
-source=("$pkgname::git+https://github.com/sqlfluff/sqlfluff.git#commit=$_commit;)
-b2sums=('SKIP')
-
-pkgver() {
-  cd "$pkgname"
-
-  git describe --tags | sed 's/^v//'
-}
-
-build() {
-  cd "$pkgname"
-
-  python \
--m build \
---wheel \
---no-isolation
-}
-
-check() {
-  cd "$pkgname"
-
-  # skip failing tests for now
-  PYTHONPATH="$PWD/src:$PYTHONPATH" pytest \
---ignore test/core/plugin_test.py \
---ignore plugins/sqlfluff-templater-dbt \
---ignore plugins/sqlfluff-plugin-example \
---deselect 
test/test_testing.py::test_rules__test_helper_has_variable_introspection
-}
-
-package() {
-  cd "$pkgname"
-
-  python \
--m installer \
---destdir "$pkgdir" \
-dist/*.whl
-
-  # documentation
-  install -vDm644 -t "$pkgdir/usr/share/doc/$pkgname" README.md
-
-  # license
-  install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE.md
-}

Copied: sqlfluff/repos/community-any/PKGBUILD (from rev 1196066, 
sqlfluff/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-06 21:43:44 UTC (rev 1196067)
@@ -0,0 +1,79 @@
+# Maintainer: George Rawlinson 
+# Contributor: Morteza NourelahiAlamdari 
+
+pkgname=sqlfluff
+pkgver=0.13.1
+pkgrel=1
+pkgdesc='A dialect-flexible and configurable SQL linter'
+arch=('any')
+url='https://www.sqlfluff.com'
+license=('MIT')
+depends=(
+  'python'
+  'python-appdirs'
+  'python-cached-property'
+  'python-chardet'
+  'python-click'
+  'python-colorama'
+  'python-diff-cover'
+  'python-jinja'
+  'python-oyaml'
+  'python-pathspec'
+  'python-pytest'
+  'python-regex'
+  'python-tblib'
+  'python-toml'
+  'python-tqdm'
+  'python-typing_extensions'
+)
+makedepends=(
+  'git'
+  'python-build'
+  'python-wheel'
+  'python-installer'
+)
+checkdepends=('python-hypothesis')
+_commit='77e283044c2a7d83db22f9df818cea96f8d2e0cb'
+source=("$pkgname::git+https://github.com/sqlfluff/sqlfluff.git#commit=$_commit;)
+b2sums=('SKIP')
+
+pkgver() {
+  cd "$pkgname"
+
+  git describe --tags | sed 's/^v//'
+}
+
+build() {
+  cd "$pkgname"
+
+  python \
+-m build \
+--wheel \
+--no-isolation
+}
+
+check() {
+  cd "$pkgname"
+
+  # skip failing tests for now
+  PYTHONPATH="$PWD/src:$PYTHONPATH" pytest \
+--ignore test/core/plugin_test.py \
+--ignore plugins/sqlfluff-templater-dbt \
+--ignore plugins/sqlfluff-plugin-example \
+--deselect 
test/test_testing.py::test_rules__test_helper_has_variable_introspection
+}
+
+package() {
+  cd "$pkgname"
+
+  python \
+-m installer \
+--destdir "$pkgdir" \
+dist/*.whl
+
+  # documentation
+  install -vDm644 -t "$pkgdir/usr/share/doc/$pkgname" README.md
+
+  # license
+  install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE.md
+}



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

2022-05-06 Thread George Rawlinson via arch-commits
Date: Friday, May 6, 2022 @ 21:43:06
  Author: grawlinson
Revision: 1196066

upgpkg: sqlfluff 0.13.1-1

New upstream release.

Modified:
  sqlfluff/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-06 21:14:58 UTC (rev 1196065)
+++ PKGBUILD2022-05-06 21:43:06 UTC (rev 1196066)
@@ -2,11 +2,11 @@
 # Contributor: Morteza NourelahiAlamdari 
 
 pkgname=sqlfluff
-pkgver=0.13.0
+pkgver=0.13.1
 pkgrel=1
-pkgdesc="A dialect-flexible and configurable SQL linter"
+pkgdesc='A dialect-flexible and configurable SQL linter'
 arch=('any')
-url="https://www.sqlfluff.com;
+url='https://www.sqlfluff.com'
 license=('MIT')
 depends=(
   'python'
@@ -33,7 +33,7 @@
   'python-installer'
 )
 checkdepends=('python-hypothesis')
-_commit='6807ac8172eda5828c86c06641e3b45460cd6664'
+_commit='77e283044c2a7d83db22f9df818cea96f8d2e0cb'
 
source=("$pkgname::git+https://github.com/sqlfluff/sqlfluff.git#commit=$_commit;)
 b2sums=('SKIP')
 



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

2022-05-06 Thread Levente Polyak via arch-commits
Date: Friday, May 6, 2022 @ 21:41:48
  Author: anthraxx
Revision: 444818

archrelease: copy trunk to extra-x86_64

Added:
  openconnect/repos/extra-x86_64/PKGBUILD
(from rev 444817, openconnect/trunk/PKGBUILD)
Deleted:
  openconnect/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-06 21:41:44 UTC (rev 444817)
+++ PKGBUILD2022-05-06 21:41:48 UTC (rev 444818)
@@ -1,46 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Ionut Biru 
-# Contributor: Felix Yan 
-
-pkgname=openconnect
-pkgver=8.20
-pkgrel=2
-epoch=1
-pkgdesc='Open client for Cisco AnyConnect VPN'
-url='https://www.infradead.org/openconnect/'
-arch=('x86_64')
-license=('LGPL2.1')
-depends=('libxml2' 'gnutls' 'libproxy' 'vpnc' 'krb5' 'lz4' 'pcsclite'
- 'stoken' 'libstoken.so' 'tpm2-tss' 'libtss2-esys.so'
- 'libtss2-mu.so' 'libtss2-tctildr.so')
-makedepends=('intltool' 'python')
-optdepends=('python: tncc-wrapper')
-provides=('libopenconnect.so')
-options=('!emptydirs')
-source=(ftp://ftp.infradead.org/pub/openconnect/openconnect-${pkgver}.tar.gz{,.asc})
-sha256sums=('c1452384c6f796baee45d4e919ae1bfc281d6c88862e1f646a2cc513fc44e58b'
-'SKIP')
-validpgpkeys=('BE07D9FD54809AB2C4B0FF5F63762CDA67E2F359') # David Woodhouse 

-
-build() {
-  cd ${pkgname}-${pkgver}
-  PYTHON=/usr/bin/python \
-./configure \
---prefix=/usr \
---sbindir=/usr/bin \
---libexecdir=/usr/lib \
---disable-static
-  make
-}
-
-check() {
-  cd ${pkgname}-${pkgver}
-  make check
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-}
-
-# vim: ts=2 sw=2 et:

Copied: openconnect/repos/extra-x86_64/PKGBUILD (from rev 444817, 
openconnect/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-06 21:41:48 UTC (rev 444818)
@@ -0,0 +1,46 @@
+# Maintainer: Levente Polyak 
+# Contributor: Ionut Biru 
+# Contributor: Felix Yan 
+
+pkgname=openconnect
+pkgver=9.01
+pkgrel=1
+epoch=1
+pkgdesc='Open client for Cisco AnyConnect VPN'
+url='https://www.infradead.org/openconnect/'
+arch=('x86_64')
+license=('LGPL2.1')
+depends=('libxml2' 'gnutls' 'libproxy' 'vpnc' 'krb5' 'lz4' 'pcsclite'
+ 'stoken' 'libstoken.so' 'tpm2-tss' 'libtss2-esys.so'
+ 'libtss2-mu.so' 'libtss2-tctildr.so')
+makedepends=('intltool' 'python')
+optdepends=('python: tncc-wrapper')
+provides=('libopenconnect.so')
+options=('!emptydirs')
+source=(https://www.infradead.org/openconnect/download/openconnect-${pkgver}.tar.gz{,.asc})
+sha256sums=('b3d7faf830e9793299d6a41e81d84cd4a3e2789c148c9e598e4585010090e4c7'
+'SKIP')
+validpgpkeys=('BE07D9FD54809AB2C4B0FF5F63762CDA67E2F359') # David Woodhouse 

+
+build() {
+  cd ${pkgname}-${pkgver}
+  PYTHON=/usr/bin/python \
+./configure \
+--prefix=/usr \
+--sbindir=/usr/bin \
+--libexecdir=/usr/lib \
+--disable-static
+  make
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et:



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

2022-05-06 Thread Levente Polyak via arch-commits
Date: Friday, May 6, 2022 @ 21:41:44
  Author: anthraxx
Revision: 444817

upgpkg: openconnect 1:9.01-1

Modified:
  openconnect/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-06 21:39:31 UTC (rev 444816)
+++ PKGBUILD2022-05-06 21:41:44 UTC (rev 444817)
@@ -3,8 +3,8 @@
 # Contributor: Felix Yan 
 
 pkgname=openconnect
-pkgver=8.20
-pkgrel=2
+pkgver=9.01
+pkgrel=1
 epoch=1
 pkgdesc='Open client for Cisco AnyConnect VPN'
 url='https://www.infradead.org/openconnect/'
@@ -17,8 +17,8 @@
 optdepends=('python: tncc-wrapper')
 provides=('libopenconnect.so')
 options=('!emptydirs')
-source=(ftp://ftp.infradead.org/pub/openconnect/openconnect-${pkgver}.tar.gz{,.asc})
-sha256sums=('c1452384c6f796baee45d4e919ae1bfc281d6c88862e1f646a2cc513fc44e58b'
+source=(https://www.infradead.org/openconnect/download/openconnect-${pkgver}.tar.gz{,.asc})
+sha256sums=('b3d7faf830e9793299d6a41e81d84cd4a3e2789c148c9e598e4585010090e4c7'
 'SKIP')
 validpgpkeys=('BE07D9FD54809AB2C4B0FF5F63762CDA67E2F359') # David Woodhouse 

 



[arch-commits] Commit in vpnc/repos/extra-x86_64 (6 files)

2022-05-06 Thread Levente Polyak via arch-commits
Date: Friday, May 6, 2022 @ 21:39:31
  Author: anthraxx
Revision: 444816

archrelease: copy trunk to extra-x86_64

Added:
  vpnc/repos/extra-x86_64/PKGBUILD
(from rev 444815, vpnc/trunk/PKGBUILD)
  vpnc/repos/extra-x86_64/vpnc.conf
(from rev 444815, vpnc/trunk/vpnc.conf)
  vpnc/repos/extra-x86_64/vpnc@.service
(from rev 444815, vpnc/trunk/vpnc@.service)
Deleted:
  vpnc/repos/extra-x86_64/PKGBUILD
  vpnc/repos/extra-x86_64/vpnc.conf
  vpnc/repos/extra-x86_64/vpnc@.service

---+
 PKGBUILD  |  142 
 vpnc.conf |   34 ++---
 vpnc@.service |   24 -
 3 files changed, 100 insertions(+), 100 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-06 21:39:24 UTC (rev 444815)
+++ PKGBUILD2022-05-06 21:39:31 UTC (rev 444816)
@@ -1,71 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Dave Reisner 
-# Contributor: Thomas Baechler 
-
-pkgname=vpnc
-_vpnc_commit=249d8fcd0ac25b735638bbe31e86a591acd61348
-_vpncscripts_commit=92fe06f6589dcc21725c51b8f86051482bf3b1bd
-pkgver=0.5.3.r501.r196
-pkgrel=1
-epoch=1
-pkgdesc='VPN client for cisco3000 VPN Concentrators'
-url='https://github.com/streambinder/vpnc'
-arch=('x86_64')
-license=('GPL')
-depends=('libgcrypt' 'openssl' 'iproute2' 'which')
-optdepends=('perl: for pcf2vpnc')
-makedepends=('git')
-optdepends=('openresolv: Let vpnc manage resolv.conf')
-backup=('etc/vpnc/default.conf')
-source=("vpnc::git+https://github.com/streambinder/vpnc#commit=${_vpnc_commit};
-
"vpnc-scripts::git+https://gitlab.com/openconnect/vpnc-scripts.git#commit=${_vpncscripts_commit};
-git+https://github.com/streambinder/vpnc.wiki.git
-vpnc.conf
-vpnc@.service)
-sha512sums=('SKIP'
-'SKIP'
-'SKIP'
-
'ac70712192c01ff638a9badc5cff7105bee5c4fed5d3a3b728e9597661952d156041c82fe1e544e2bab602d193d4105d3689c79c46d964623f6ce38dd89f0ea7'
-
'cafcab676986c1a2e49441f01d61997f1c6b54bbb68661b9af007d4816f8e76eee6b7ac2dfab55b55965fa407e8331c663cf11aa79384c30b0c9049c1477b791')
-
-pkgver() {
-  cd ${pkgname}
-  printf "%s.r%s.r%s" "$(grep '^VERSION' Makefile|sed 's|VERSION := ||')" \
-"$(git -C ../vpnc rev-list --count HEAD)" \
-"$(git -C ../vpnc-scripts rev-list --count HEAD)"
-}
-
-prepare() {
-  cd ${pkgname}
-
-  git submodule init
-  git config submodule."src/doc".url "${srcdir}/vpnc.wiki"
-  git submodule update --recursive
-
-  # Build hybrid support
-  sed 's|^#OPENSSL|OPENSSL|g' -i Makefile
-  # fix resolvconf location for community/openresolv
-  sed 's|/sbin/resolvconf|/usr/bin/resolvconf|g' -i ../vpnc-scripts/vpnc-script
-  ln -sf ../../vpnc-scripts/vpnc-script src
-  ln -sf ../../vpnc.conf src
-}
-
-build() {
-  make -C ${pkgname}
-}
-
-check() {
-  make -C ${pkgname} test
-}
-
-package() {
-  cd ${pkgname}
-  install -d "${pkgdir}/usr/share/doc/${pkgname}"
-  make DESTDIR="${pkgdir}" PREFIX=/usr SBINDIR=/usr/bin install
-  install -Dm 755 ../vpnc-scripts/vpnc-script -t "${pkgdir}/etc/vpnc"
-  install -Dm 644 ../vpnc@.service -t "${pkgdir}/usr/lib/systemd/system"
-  install -Dm 644 .github/README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
-  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: vpnc/repos/extra-x86_64/PKGBUILD (from rev 444815, vpnc/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-06 21:39:31 UTC (rev 444816)
@@ -0,0 +1,71 @@
+# Maintainer: Levente Polyak 
+# Contributor: Dave Reisner 
+# Contributor: Thomas Baechler 
+
+pkgname=vpnc
+_vpnc_commit=b4c83bbd2f0ea1078477ea187f7e1476762ba788
+_vpncscripts_commit=43195c25fd6aaa4d50f42c2dc51e53cf1b0baeb0
+pkgver=0.5.3.r506.r204
+pkgrel=1
+epoch=1
+pkgdesc='VPN client for cisco3000 VPN Concentrators'
+url='https://github.com/streambinder/vpnc'
+arch=('x86_64')
+license=('GPL')
+depends=('libgcrypt' 'openssl' 'iproute2' 'which')
+optdepends=('perl: for pcf2vpnc')
+makedepends=('git')
+optdepends=('openresolv: Let vpnc manage resolv.conf')
+backup=('etc/vpnc/default.conf')
+source=("vpnc::git+https://github.com/streambinder/vpnc#commit=${_vpnc_commit};
+
"vpnc-scripts::git+https://gitlab.com/openconnect/vpnc-scripts.git#commit=${_vpncscripts_commit};
+git+https://github.com/streambinder/vpnc.wiki.git
+vpnc.conf
+vpnc@.service)
+sha512sums=('SKIP'
+'SKIP'
+'SKIP'
+
'ac70712192c01ff638a9badc5cff7105bee5c4fed5d3a3b728e9597661952d156041c82fe1e544e2bab602d193d4105d3689c79c46d964623f6ce38dd89f0ea7'
+
'cafcab676986c1a2e49441f01d61997f1c6b54bbb68661b9af007d4816f8e76eee6b7ac2dfab55b55965fa407e8331c663cf11aa79384c30b0c9049c1477b791')
+
+pkgver() {
+  cd ${pkgname}
+  printf "%s.r%s.r%s" "$(grep '^VERSION' Makefile|sed 's|VERSION := ||')" \
+"$(git -C 

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

2022-05-06 Thread Levente Polyak via arch-commits
Date: Friday, May 6, 2022 @ 21:39:24
  Author: anthraxx
Revision: 444815

upgpkg: vpnc 1:0.5.3.r506.r204-1

Modified:
  vpnc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-06 21:25:05 UTC (rev 444814)
+++ PKGBUILD2022-05-06 21:39:24 UTC (rev 444815)
@@ -3,9 +3,9 @@
 # Contributor: Thomas Baechler 
 
 pkgname=vpnc
-_vpnc_commit=249d8fcd0ac25b735638bbe31e86a591acd61348
-_vpncscripts_commit=92fe06f6589dcc21725c51b8f86051482bf3b1bd
-pkgver=0.5.3.r501.r196
+_vpnc_commit=b4c83bbd2f0ea1078477ea187f7e1476762ba788
+_vpncscripts_commit=43195c25fd6aaa4d50f42c2dc51e53cf1b0baeb0
+pkgver=0.5.3.r506.r204
 pkgrel=1
 epoch=1
 pkgdesc='VPN client for cisco3000 VPN Concentrators'



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

2022-05-06 Thread Antonio Rojas via arch-commits
Date: Friday, May 6, 2022 @ 21:14:58
  Author: arojas
Revision: 1196065

archrelease: copy trunk to community-any

Added:
  xsimd/repos/community-any/PKGBUILD
(from rev 1196064, xsimd/trunk/PKGBUILD)
Deleted:
  xsimd/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-06 21:14:47 UTC (rev 1196064)
+++ PKGBUILD2022-05-06 21:14:58 UTC (rev 1196065)
@@ -1,26 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Contributor: Alexander Susha 
-# Contributor: Fredrik Tegenfeldt 
-
-pkgname=xsimd
-pkgver=8.0.5
-pkgrel=1
-pkgdesc='QuantStack tools library - Multi-dimensional arrays with broadcasting 
and lazy computing'
-arch=(any)
-url='https://github.com/QuantStack/xsimd'
-license=(BSD)
-depends=()
-makedepends=(cmake gtest)
-source=(https://github.com/QuantStack/$pkgname/archive/$pkgver/$pkgname-$pkgver.tar.gz)
-sha512sums=('165ca307bcaccc226dd518562a9269aa9fc44c70fab299ea0827d7a0a9cf58ec493b381fcf2c4d9d1f6edfda8fa309643c63b17fb20d9de78a4be19eb70e30b3')
-
-build() {
-  cmake -B build -S $pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr
-  cmake --build build
-}
-
-package() {
-  DESTDIR="$pkgdir" cmake --install build
-  install -Dm644 $pkgname-$pkgver/LICENSE -t 
"$pkgdir"/usr/share/licenses/$pkgname
-}

Copied: xsimd/repos/community-any/PKGBUILD (from rev 1196064, 
xsimd/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-06 21:14:58 UTC (rev 1196065)
@@ -0,0 +1,26 @@
+# Maintainer: Antonio Rojas 
+# Contributor: Alexander Susha 
+# Contributor: Fredrik Tegenfeldt 
+
+pkgname=xsimd
+pkgver=8.1.0
+pkgrel=1
+pkgdesc='QuantStack tools library - Multi-dimensional arrays with broadcasting 
and lazy computing'
+arch=(any)
+url='https://github.com/QuantStack/xsimd'
+license=(BSD)
+depends=()
+makedepends=(cmake gtest)
+source=(https://github.com/QuantStack/$pkgname/archive/$pkgver/$pkgname-$pkgver.tar.gz)
+sha512sums=('539f7b565b45e8225c6476ca1becc8243a84ae7fb51b45a584231e7d36aee10a09d7d30fb87d89cb77813fb063a7b7617bcf01fdf996f59d99e8d474d2a044ee')
+
+build() {
+  cmake -B build -S $pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+  install -Dm644 $pkgname-$pkgver/LICENSE -t 
"$pkgdir"/usr/share/licenses/$pkgname
+}



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

2022-05-06 Thread Frederik Schwan via arch-commits
Date: Friday, May 6, 2022 @ 21:14:52
  Author: freswa
Revision: 444804

archrelease: copy trunk to staging-x86_64

Added:
  nvidia-lts/repos/staging-x86_64/
  nvidia-lts/repos/staging-x86_64/PKGBUILD
(from rev 444803, nvidia-lts/trunk/PKGBUILD)

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

Copied: nvidia-lts/repos/staging-x86_64/PKGBUILD (from rev 444803, 
nvidia-lts/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2022-05-06 21:14:52 UTC (rev 444804)
@@ -0,0 +1,33 @@
+# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Eric Bélanger 
+
+pkgname=nvidia-lts
+pkgver=510.68.02
+pkgrel=3
+epoch=1
+pkgdesc="NVIDIA drivers for linux-lts"
+arch=('x86_64')
+url="https://www.nvidia.com/;
+makedepends=('linux-lts-headers' "nvidia-dkms=$pkgver")
+provides=('NVIDIA-MODULE')
+license=('custom')
+options=('!strip')
+
+build() {
+_kernver=$(

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

2022-05-06 Thread Frederik Schwan via arch-commits
Date: Friday, May 6, 2022 @ 21:14:50
  Author: freswa
Revision: 444803

gcc-12.1.0 rebuild

Modified:
  nvidia-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-06 21:13:34 UTC (rev 444802)
+++ PKGBUILD2022-05-06 21:14:50 UTC (rev 444803)
@@ -3,7 +3,7 @@
 
 pkgname=nvidia-lts
 pkgver=510.68.02
-pkgrel=2
+pkgrel=3
 epoch=1
 pkgdesc="NVIDIA drivers for linux-lts"
 arch=('x86_64')



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

2022-05-06 Thread Antonio Rojas via arch-commits
Date: Friday, May 6, 2022 @ 21:14:47
  Author: arojas
Revision: 1196064

Update to 8.1.0

Modified:
  xsimd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-06 21:07:40 UTC (rev 1196063)
+++ PKGBUILD2022-05-06 21:14:47 UTC (rev 1196064)
@@ -3,7 +3,7 @@
 # Contributor: Fredrik Tegenfeldt 
 
 pkgname=xsimd
-pkgver=8.0.5
+pkgver=8.1.0
 pkgrel=1
 pkgdesc='QuantStack tools library - Multi-dimensional arrays with broadcasting 
and lazy computing'
 arch=(any)
@@ -12,7 +12,7 @@
 depends=()
 makedepends=(cmake gtest)
 
source=(https://github.com/QuantStack/$pkgname/archive/$pkgver/$pkgname-$pkgver.tar.gz)
-sha512sums=('165ca307bcaccc226dd518562a9269aa9fc44c70fab299ea0827d7a0a9cf58ec493b381fcf2c4d9d1f6edfda8fa309643c63b17fb20d9de78a4be19eb70e30b3')
+sha512sums=('539f7b565b45e8225c6476ca1becc8243a84ae7fb51b45a584231e7d36aee10a09d7d30fb87d89cb77813fb063a7b7617bcf01fdf996f59d99e8d474d2a044ee')
 
 build() {
   cmake -B build -S $pkgname-$pkgver \



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

2022-05-06 Thread Frederik Schwan via arch-commits
Date: Friday, May 6, 2022 @ 21:13:34
  Author: freswa
Revision: 444802

archrelease: copy trunk to staging-x86_64

Added:
  nvidia/repos/staging-x86_64/
  nvidia/repos/staging-x86_64/PKGBUILD
(from rev 444801, nvidia/trunk/PKGBUILD)

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

Copied: nvidia/repos/staging-x86_64/PKGBUILD (from rev 444801, 
nvidia/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2022-05-06 21:13:34 UTC (rev 444802)
@@ -0,0 +1,33 @@
+# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Felix Yan 
+# Contributor: Thomas Baechler 
+
+pkgname=nvidia
+pkgver=510.68.02
+pkgrel=2
+pkgdesc="NVIDIA drivers for linux"
+arch=('x86_64')
+url="https://www.nvidia.com/;
+makedepends=('linux-headers' "nvidia-dkms=$pkgver")
+provides=('NVIDIA-MODULE')
+license=('custom')
+options=('!strip')
+
+build() {
+_kernver=$(

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

2022-05-06 Thread Frederik Schwan via arch-commits
Date: Friday, May 6, 2022 @ 21:13:31
  Author: freswa
Revision: 444801

gcc-12.1.0 rebuild

Modified:
  nvidia/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-06 20:51:39 UTC (rev 444800)
+++ PKGBUILD2022-05-06 21:13:31 UTC (rev 444801)
@@ -4,7 +4,7 @@
 
 pkgname=nvidia
 pkgver=510.68.02
-pkgrel=1
+pkgrel=2
 pkgdesc="NVIDIA drivers for linux"
 arch=('x86_64')
 url="https://www.nvidia.com/;



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

2022-05-06 Thread Frederik Schwan via arch-commits
Date: Friday, May 6, 2022 @ 21:07:40
  Author: freswa
Revision: 1196063

archrelease: copy trunk to community-staging-x86_64

Added:
  netfilter-fullconenat/repos/community-staging-x86_64/
  netfilter-fullconenat/repos/community-staging-x86_64/PKGBUILD
(from rev 1196062, netfilter-fullconenat/trunk/PKGBUILD)
  netfilter-fullconenat/repos/community-staging-x86_64/linux-5.15.patch
(from rev 1196062, netfilter-fullconenat/trunk/linux-5.15.patch)

--+
 PKGBUILD |   46 +++
 linux-5.15.patch |   68 +
 2 files changed, 114 insertions(+)

Copied: netfilter-fullconenat/repos/community-staging-x86_64/PKGBUILD (from rev 
1196062, netfilter-fullconenat/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-05-06 21:07:40 UTC (rev 1196063)
@@ -0,0 +1,46 @@
+# Maintainer: Felix Yan 
+# Contributor: Edward Pacman 
+
+pkgname=netfilter-fullconenat
+pkgver=r73.0cf3b48
+pkgrel=200
+pkgdesc="A kernel module that turns MASQUERADE into full cone SNAT"
+arch=('x86_64')
+url="https://github.com/Chion82/netfilter-full-cone-nat;
+license=('GPL2')
+depends=("linux")
+makedepends=('linux-headers' 'git')
+_commit=0cf3b48fd7d2fa81d0297d1fff12bbd0580fc435  # master
+source=("${pkgname}::git+https://github.com/Chion82/netfilter-full-cone-nat#commit=${_commit};
+linux-5.15.patch)
+sha256sums=('SKIP'
+'d785622e80ed3348be133270ac974dd372e0d6d770f0da554edbcbf20e94d6a6')
+
+pkgver() {
+  cd ${pkgname}
+  ( set -o pipefail
+git describe --long 2>/dev/null | sed 's/\([^-]*-g\)/r\1/;s/-/./g' ||
+printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short 
HEAD)"
+  )
+}
+
+prepare() {
+  cd ${pkgname}
+  echo "obj-m = xt_FULLCONENAT.o" > Kbuild
+  patch -p1 -i ../linux-5.15.patch
+}
+
+build() {
+  cd ${pkgname}
+  make -C /usr/src/linux M=$PWD modules
+}
+
+package() {
+  local extradir=/usr/lib/modules/$(net, _event_notifier) == 0) {
+   ct_event_notifier_registered = 1;
+@@ -1252,6 +1255,11 @@ static int fullconenat_tg_check(const struct 
xt_tgchk_param *par)
+ } else {
+   printk("xt_FULLCONENAT: warning: failed to register a conntrack 
notifier. Disable active GC for mappings.\n");
+ }
++#else
++ct_event_notifier.ct_event = ct_event_cb;
++nf_conntrack_register_notifier(par->net, _event_notifier);
++pr_debug("xt_FULLCONENAT: fullconenat_tg_check(): ct_event_notifier 
registered\n");
++#endif
+ 
+   }
+ 
+@@ -1269,6 +1277,7 @@ static void fullconenat_tg_destroy(const struct 
xt_tgdtor_param *par)
+   pr_debug("xt_FULLCONENAT: fullconenat_tg_destroy(): tg_refer_count is now 
%d\n", tg_refer_count);
+ 
+   if (tg_refer_count == 0) {
++#if LINUX_VERSION_CODE < KERNEL_VERSION(5,15,0)
+ if (ct_event_notifier_registered) {
+   nf_conntrack_unregister_notifier(par->net, _event_notifier);
+   ct_event_notifier_registered = 0;
+@@ -1276,6 +1285,10 @@ static void fullconenat_tg_destroy(const struct 
xt_tgdtor_param *par)
+   pr_debug("xt_FULLCONENAT: fullconenat_tg_destroy(): ct_event_notifier 
unregistered\n");
+ 
+ }
++#else
++nf_conntrack_unregister_notifier(par->net);
++pr_debug("xt_FULLCONENAT: fullconenat_tg_destroy(): ct_event_notifier 
unregistered\n");
++#endif
+ nf_ct_netns_put(par->net, par->family);
+   }
+ 



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

2022-05-06 Thread Frederik Schwan via arch-commits
Date: Friday, May 6, 2022 @ 21:07:37
  Author: freswa
Revision: 1196062

gcc-12.1.0 rebuild

Modified:
  netfilter-fullconenat/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-06 21:05:42 UTC (rev 1196061)
+++ PKGBUILD2022-05-06 21:07:37 UTC (rev 1196062)
@@ -3,7 +3,7 @@
 
 pkgname=netfilter-fullconenat
 pkgver=r73.0cf3b48
-pkgrel=199
+pkgrel=200
 pkgdesc="A kernel module that turns MASQUERADE into full cone SNAT"
 arch=('x86_64')
 url="https://github.com/Chion82/netfilter-full-cone-nat;



[arch-commits] Commit in virtualbox-host-modules-arch/trunk (PKGBUILD)

2022-05-06 Thread Frederik Schwan via arch-commits
Date: Friday, May 6, 2022 @ 21:05:40
  Author: freswa
Revision: 1196060

gcc-12.1.0 rebuild

Modified:
  virtualbox-host-modules-arch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-06 21:05:09 UTC (rev 1196059)
+++ PKGBUILD2022-05-06 21:05:40 UTC (rev 1196060)
@@ -3,7 +3,7 @@
 
 pkgname='virtualbox-host-modules-arch'
 pkgver=6.1.34
-pkgrel=3
+pkgrel=4
 pkgdesc='Virtualbox host kernel modules for Arch Kernel'
 arch=('x86_64')
 url='https://virtualbox.org/'



[arch-commits] Commit in virtualbox-host-modules-arch/repos (2 files)

2022-05-06 Thread Frederik Schwan via arch-commits
Date: Friday, May 6, 2022 @ 21:05:42
  Author: freswa
Revision: 1196061

archrelease: copy trunk to community-staging-x86_64

Added:
  virtualbox-host-modules-arch/repos/community-staging-x86_64/
  virtualbox-host-modules-arch/repos/community-staging-x86_64/PKGBUILD
(from rev 1196060, virtualbox-host-modules-arch/trunk/PKGBUILD)

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

Copied: virtualbox-host-modules-arch/repos/community-staging-x86_64/PKGBUILD 
(from rev 1196060, virtualbox-host-modules-arch/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-05-06 21:05:42 UTC (rev 1196061)
@@ -0,0 +1,40 @@
+# Maintainer: Sébastien Luttringer
+# Contributor: Ionut Biru 
+
+pkgname='virtualbox-host-modules-arch'
+pkgver=6.1.34
+pkgrel=4
+pkgdesc='Virtualbox host kernel modules for Arch Kernel'
+arch=('x86_64')
+url='https://virtualbox.org/'
+license=('GPL')
+makedepends=('linux-headers' "virtualbox-host-dkms=$pkgver")
+replaces=('virtualbox-modules' 'virtualbox-host-modules')
+conflicts=('virtualbox-modules' 'virtualbox-host-modules'
+   'virtualbox-host-dkms')
+provides=('VIRTUALBOX-HOST-MODULES')
+
+build() {
+  _kernver="$(

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

2022-05-06 Thread Frederik Schwan via arch-commits
Date: Friday, May 6, 2022 @ 21:05:09
  Author: freswa
Revision: 1196059

archrelease: copy trunk to community-staging-x86_64

Added:
  vhba-module/repos/community-staging-x86_64/
  vhba-module/repos/community-staging-x86_64/PKGBUILD
(from rev 1196058, vhba-module/trunk/PKGBUILD)
  vhba-module/repos/community-staging-x86_64/dkms.conf
(from rev 1196058, vhba-module/trunk/dkms.conf)

---+
 PKGBUILD  |   49 +
 dkms.conf |9 +
 2 files changed, 58 insertions(+)

Copied: vhba-module/repos/community-staging-x86_64/PKGBUILD (from rev 1196058, 
vhba-module/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-05-06 21:05:09 UTC (rev 1196059)
@@ -0,0 +1,49 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Ray Rashif 
+# Contributor: Mateusz Herych 
+# Contributor: Charles Lindsay 
+
+pkgbase=vhba-module
+pkgname=(vhba-module vhba-module-dkms)
+pkgver=20211218
+pkgrel=31
+pkgdesc="Kernel module that emulates SCSI devices"
+url="https://cdemu.sourceforge.io/;
+arch=(x86_64)
+license=(GPL)
+makedepends=('linux-headers')
+source=("https://downloads.sourceforge.net/cdemu/$pkgbase-$pkgver.tar.xz;
+dkms.conf)
+sha256sums=('72c5a8c1c452805e4cef8cafefcecc2d25ce197ae4c67383082802e5adcd77b6'
+'8cab0ebb4fee72069d63616b0983f105b98d1261e72e9bef5509a6e60bc382a7')
+
+prepare() {
+  cd $pkgbase-$pkgver
+}
+
+build() {
+  cd $pkgbase-$pkgver
+  make KERNELRELEASE="$(

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

2022-05-06 Thread Frederik Schwan via arch-commits
Date: Friday, May 6, 2022 @ 21:05:07
  Author: freswa
Revision: 1196058

gcc-12.1.0 rebuild

Modified:
  vhba-module/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-06 21:04:41 UTC (rev 1196057)
+++ PKGBUILD2022-05-06 21:05:07 UTC (rev 1196058)
@@ -6,7 +6,7 @@
 pkgbase=vhba-module
 pkgname=(vhba-module vhba-module-dkms)
 pkgver=20211218
-pkgrel=30
+pkgrel=31
 pkgdesc="Kernel module that emulates SCSI devices"
 url="https://cdemu.sourceforge.io/;
 arch=(x86_64)



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

2022-05-06 Thread Frederik Schwan via arch-commits
Date: Friday, May 6, 2022 @ 21:04:41
  Author: freswa
Revision: 1196057

archrelease: copy trunk to community-staging-x86_64

Added:
  tp_smapi-lts/repos/community-staging-x86_64/
  tp_smapi-lts/repos/community-staging-x86_64/PKGBUILD
(from rev 1196056, tp_smapi-lts/trunk/PKGBUILD)

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

Copied: tp_smapi-lts/repos/community-staging-x86_64/PKGBUILD (from rev 1196056, 
tp_smapi-lts/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-05-06 21:04:41 UTC (rev 1196057)
@@ -0,0 +1,50 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: xduugu
+# Contributor: nh2
+# Contributor: Steven Davidovitz 
+# Contributor: Nick B 
+# Contributor: Christof Musik 
+# Contributor: Stefan Rupp 
+# Contributor: Ignas Anikevicius 
+
+pkgname=tp_smapi-lts
+pkgver=0.43
+pkgrel=234
+pkgdesc="Modules for ThinkPad's SMAPI functionality"
+arch=('x86_64')
+url='https://github.com/evgeni/tp_smapi'
+license=('GPL')
+makedepends=('linux-lts-headers' 'git')
+_commit=a63729ab30d85430048f65c37f29188ab484cd52  # tags/tp-smapi/0.43
+source=("git+https://github.com/evgeni/tp_smapi#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd tp_smapi
+  git describe --tags | sed 's/^tp-smapi\///;s/-/+/g'
+}
+
+build() {
+  cd tp_smapi
+
+  # https://bugs.archlinux.org/task/54975 (kernel has no 
_GLOBAL_OFFSET_TABLE_):
+  # Clear EXTRA_CFLAGS since it defaults to injecting CFLAGS and -fno-plt 
breaks the modules
+
+  make HDAPS=1 KVER="$(

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

2022-05-06 Thread Frederik Schwan via arch-commits
Date: Friday, May 6, 2022 @ 21:04:39
  Author: freswa
Revision: 1196056

gcc-12.1.0 rebuild

Modified:
  tp_smapi-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-06 21:04:07 UTC (rev 1196055)
+++ PKGBUILD2022-05-06 21:04:39 UTC (rev 1196056)
@@ -9,7 +9,7 @@
 
 pkgname=tp_smapi-lts
 pkgver=0.43
-pkgrel=233
+pkgrel=234
 pkgdesc="Modules for ThinkPad's SMAPI functionality"
 arch=('x86_64')
 url='https://github.com/evgeni/tp_smapi'



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

2022-05-06 Thread Frederik Schwan via arch-commits
Date: Friday, May 6, 2022 @ 21:04:07
  Author: freswa
Revision: 1196055

archrelease: copy trunk to community-staging-x86_64

Added:
  tp_smapi/repos/community-staging-x86_64/
  tp_smapi/repos/community-staging-x86_64/PKGBUILD
(from rev 1196054, tp_smapi/trunk/PKGBUILD)

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

Copied: tp_smapi/repos/community-staging-x86_64/PKGBUILD (from rev 1196054, 
tp_smapi/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-05-06 21:04:07 UTC (rev 1196055)
@@ -0,0 +1,48 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: xduugu
+# Contributor: nh2
+# Contributor: Steven Davidovitz 
+# Contributor: Nick B 
+# Contributor: Christof Musik 
+# Contributor: Stefan Rupp 
+# Contributor: Ignas Anikevicius 
+
+pkgname=tp_smapi
+pkgver=0.43
+pkgrel=389
+pkgdesc="Modules for ThinkPad's SMAPI functionality"
+arch=('x86_64')
+url='https://github.com/evgeni/tp_smapi'
+license=('GPL')
+makedepends=('linux-headers' 'git')
+_commit=a63729ab30d85430048f65c37f29188ab484cd52  # tags/tp-smapi/0.43
+source=("git+https://github.com/evgeni/tp_smapi#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^tp-smapi\///;s/-/+/g'
+}
+
+build() {
+  cd $pkgname
+
+  # https://bugs.archlinux.org/task/54975 (kernel has no 
_GLOBAL_OFFSET_TABLE_):
+  # Clear EXTRA_CFLAGS since it defaults to injecting CFLAGS and -fno-plt 
breaks the modules
+
+  make HDAPS=1 KVER="$(

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

2022-05-06 Thread Frederik Schwan via arch-commits
Date: Friday, May 6, 2022 @ 21:04:06
  Author: freswa
Revision: 1196054

gcc-12.1.0 rebuild

Modified:
  tp_smapi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-06 21:03:35 UTC (rev 1196053)
+++ PKGBUILD2022-05-06 21:04:06 UTC (rev 1196054)
@@ -9,7 +9,7 @@
 
 pkgname=tp_smapi
 pkgver=0.43
-pkgrel=388
+pkgrel=389
 pkgdesc="Modules for ThinkPad's SMAPI functionality"
 arch=('x86_64')
 url='https://github.com/evgeni/tp_smapi'



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

2022-05-06 Thread Frederik Schwan via arch-commits
Date: Friday, May 6, 2022 @ 21:03:35
  Author: freswa
Revision: 1196053

archrelease: copy trunk to community-staging-x86_64

Added:
  r8168-lts/repos/community-staging-x86_64/
  r8168-lts/repos/community-staging-x86_64/PKGBUILD
(from rev 1196052, r8168-lts/trunk/PKGBUILD)

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

Copied: r8168-lts/repos/community-staging-x86_64/PKGBUILD (from rev 1196052, 
r8168-lts/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-05-06 21:03:35 UTC (rev 1196053)
@@ -0,0 +1,43 @@
+# Maintainer: Massimiliano Torromeo 
+
+pkgname=r8168-lts
+pkgver=8.050.00
+pkgrel=2
+pkgdesc="A kernel module for Realtek 8168 network cards for linux-lts"
+url="http://www.realtek.com.tw;
+license=("GPL")
+arch=('x86_64')
+makedepends=('linux-lts-headers')
+source=(https://github.com/mtorromeo/r8168/archive/$pkgver/r8168-$pkgver.tar.gz
+
https://github.com/mtorromeo/r8168/releases/download/$pkgver/r8168-$pkgver.tar.gz.asc)
+sha256sums=('15b06890230d7c7b92635d981a6f07c4562b0b3eeb55f43b127bdfbb50dda5e1'
+'SKIP')
+validpgpkeys=('0CADAACF70F64C654E131B3111675C743429DDEF')
+
+build() {
+   cd "r8168-$pkgver"
+   # avoid using the Makefile directly -- it doesn't understand
+   # any kernel but the current.
+   make -C /usr/src/linux-lts M="$PWD/src" \
+   ENABLE_USE_FIRMWARE_FILE=y \
+   CONFIG_R8168_NAPI=y \
+   CONFIG_R8168_VLAN=y \
+   CONFIG_ASPM=y \
+   ENABLE_S5WOL=y \
+   ENABLE_EEE=y \
+   modules
+}
+
+package() {
+   depends=('glibc' 'linux-lts')
+
+   local 
extradir=/usr/lib/modules/$(

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

2022-05-06 Thread Frederik Schwan via arch-commits
Date: Friday, May 6, 2022 @ 21:03:33
  Author: freswa
Revision: 1196052

gcc-12.1.0 rebuild

Modified:
  r8168-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-06 21:02:53 UTC (rev 1196051)
+++ PKGBUILD2022-05-06 21:03:33 UTC (rev 1196052)
@@ -2,7 +2,7 @@
 
 pkgname=r8168-lts
 pkgver=8.050.00
-pkgrel=1
+pkgrel=2
 pkgdesc="A kernel module for Realtek 8168 network cards for linux-lts"
 url="http://www.realtek.com.tw;
 license=("GPL")



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

2022-05-06 Thread Frederik Schwan via arch-commits
Date: Friday, May 6, 2022 @ 21:02:53
  Author: freswa
Revision: 1196051

archrelease: copy trunk to community-staging-x86_64

Added:
  r8168/repos/community-staging-x86_64/
  r8168/repos/community-staging-x86_64/PKGBUILD
(from rev 1196050, r8168/trunk/PKGBUILD)

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

Copied: r8168/repos/community-staging-x86_64/PKGBUILD (from rev 1196050, 
r8168/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-05-06 21:02:53 UTC (rev 1196051)
@@ -0,0 +1,46 @@
+# Maintainer: Massimiliano Torromeo 
+# Contributor: Bob Fanger < bfanger(at)gmail >
+# Contributor: Filip , Det < nimetonmaili(at)gmail >
+
+pkgname=r8168
+pkgver=8.050.00
+pkgrel=2
+pkgdesc="A kernel module for Realtek 8168 network cards"
+url="http://www.realtek.com.tw;
+license=("GPL")
+arch=('x86_64')
+makedepends=('linux-headers')
+source=(https://github.com/mtorromeo/r8168/archive/$pkgver/$pkgname-$pkgver.tar.gz
+
https://github.com/mtorromeo/r8168/releases/download/$pkgver/$pkgname-$pkgver.tar.gz.asc)
+sha256sums=('15b06890230d7c7b92635d981a6f07c4562b0b3eeb55f43b127bdfbb50dda5e1'
+'SKIP')
+validpgpkeys=('0CADAACF70F64C654E131B3111675C743429DDEF') # Massimiliano 
Torromeo 
+
+build() {
+   cd "$pkgname-$pkgver"
+   # avoid using the Makefile directly -- it doesn't understand
+   # any kernel but the current.
+   make -C /usr/src/linux M="$PWD/src" \
+   ENABLE_USE_FIRMWARE_FILE=y \
+   CONFIG_R8168_NAPI=y \
+   CONFIG_R8168_VLAN=y \
+   CONFIG_ASPM=y \
+   ENABLE_S5WOL=y \
+   ENABLE_EEE=y \
+   modules
+}
+
+package() {
+   depends=('glibc' 'linux')
+
+   local extradir=/usr/lib/modules/$(

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

2022-05-06 Thread Frederik Schwan via arch-commits
Date: Friday, May 6, 2022 @ 21:02:50
  Author: freswa
Revision: 1196050

gcc-12.1.0 rebuild

Modified:
  r8168/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-06 21:02:14 UTC (rev 1196049)
+++ PKGBUILD2022-05-06 21:02:50 UTC (rev 1196050)
@@ -4,7 +4,7 @@
 
 pkgname=r8168
 pkgver=8.050.00
-pkgrel=1
+pkgrel=2
 pkgdesc="A kernel module for Realtek 8168 network cards"
 url="http://www.realtek.com.tw;
 license=("GPL")



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

2022-05-06 Thread Frederik Schwan via arch-commits
Date: Friday, May 6, 2022 @ 21:02:14
  Author: freswa
Revision: 1196049

archrelease: copy trunk to community-staging-x86_64

Added:
  deepin-anything-arch/repos/community-staging-x86_64/
  deepin-anything-arch/repos/community-staging-x86_64/PKGBUILD
(from rev 1196048, deepin-anything-arch/trunk/PKGBUILD)

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

Copied: deepin-anything-arch/repos/community-staging-x86_64/PKGBUILD (from rev 
1196048, deepin-anything-arch/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-05-06 21:02:14 UTC (rev 1196049)
@@ -0,0 +1,29 @@
+# Maintainer: Felix Yan 
+
+pkgname=deepin-anything-arch
+pkgver=5.0.9
+pkgrel=81
+pkgdesc="Deepin Anything file search tool, kernel module for Arch kernel"
+arch=('x86_64')
+url="https://github.com/linuxdeepin/deepin-anything;
+license=('GPL3')
+makedepends=('linux-headers')
+provides=('DEEPIN-ANYTHING-MODULE')
+replaces=('deepin-anything-module')
+source=("https://github.com/linuxdeepin/deepin-anything/archive/$pkgver/deepin-anything-$pkgver.tar.gz;)
+sha512sums=('d7038f900c7f6cf2af156ced0fab6bcd46bff347011acc34b5d355ae8f09efe3f323724b728fbfe9c8b961e238ceb7c81aaf45f2e446b5d9ce908e8c0a658c5b')
+
+build() {
+  cd deepin-anything-$pkgver
+  make -C kernelmod kdir=/usr/src/linux
+}
+
+package() {
+  depends=('linux')
+
+  cd deepin-anything-$pkgver
+  local extradir=/usr/lib/modules/$(

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

2022-05-06 Thread Frederik Schwan via arch-commits
Date: Friday, May 6, 2022 @ 21:02:12
  Author: freswa
Revision: 1196048

gcc-12.1.0 rebuild

Modified:
  deepin-anything-arch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-06 21:01:39 UTC (rev 1196047)
+++ PKGBUILD2022-05-06 21:02:12 UTC (rev 1196048)
@@ -2,7 +2,7 @@
 
 pkgname=deepin-anything-arch
 pkgver=5.0.9
-pkgrel=80
+pkgrel=81
 pkgdesc="Deepin Anything file search tool, kernel module for Arch kernel"
 arch=('x86_64')
 url="https://github.com/linuxdeepin/deepin-anything;



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

2022-05-06 Thread Frederik Schwan via arch-commits
Date: Friday, May 6, 2022 @ 21:01:39
  Author: freswa
Revision: 1196047

archrelease: copy trunk to community-staging-x86_64

Added:
  broadcom-wl/repos/community-staging-x86_64/
  broadcom-wl/repos/community-staging-x86_64/PKGBUILD
(from rev 1196046, broadcom-wl/trunk/PKGBUILD)

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

Copied: broadcom-wl/repos/community-staging-x86_64/PKGBUILD (from rev 1196046, 
broadcom-wl/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-05-06 21:01:39 UTC (rev 1196047)
@@ -0,0 +1,42 @@
+# Maintainer: Eli Schwartz 
+
+_module=broadcom-wl
+_kernelname=  # Build against stock -ARCH kernel
+#_kernelname=-custom  # Build against kernel with a different name
+pkgname=${_module}${_kernelname}
+pkgver=6.30.223.271
+pkgrel=381
+pkgdesc='Broadcom 802.11 Linux STA wireless driver'
+arch=('x86_64')
+url='https://www.broadcom.com/support/download-search/?pf=Wireless+LAN+Infrastructure'
+license=('custom')
+makedepends=("linux${_kernelname}-headers" "${_module}-dkms=${pkgver}")
+
+build() {
+_kernver=$(

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

2022-05-06 Thread Frederik Schwan via arch-commits
Date: Friday, May 6, 2022 @ 21:01:35
  Author: freswa
Revision: 1196046

gcc-12.1.0 rebuild

Modified:
  broadcom-wl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-06 21:00:53 UTC (rev 1196045)
+++ PKGBUILD2022-05-06 21:01:35 UTC (rev 1196046)
@@ -5,7 +5,7 @@
 #_kernelname=-custom  # Build against kernel with a different name
 pkgname=${_module}${_kernelname}
 pkgver=6.30.223.271
-pkgrel=380
+pkgrel=381
 pkgdesc='Broadcom 802.11 Linux STA wireless driver'
 arch=('x86_64')
 
url='https://www.broadcom.com/support/download-search/?pf=Wireless+LAN+Infrastructure'



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

2022-05-06 Thread Frederik Schwan via arch-commits
Date: Friday, May 6, 2022 @ 21:00:53
  Author: freswa
Revision: 1196045

archrelease: copy trunk to community-staging-x86_64

Added:
  bbswitch/repos/community-staging-x86_64/
  bbswitch/repos/community-staging-x86_64/0001-proc_ops-struct.patch
(from rev 1196044, bbswitch/trunk/0001-proc_ops-struct.patch)
  bbswitch/repos/community-staging-x86_64/0002-kernel-5.7.patch
(from rev 1196044, bbswitch/trunk/0002-kernel-5.7.patch)
  bbswitch/repos/community-staging-x86_64/PKGBUILD
(from rev 1196044, bbswitch/trunk/PKGBUILD)

+
 0001-proc_ops-struct.patch |   36 ++
 0002-kernel-5.7.patch  |   11 +
 PKGBUILD   |   50 +++
 3 files changed, 97 insertions(+)

Copied: bbswitch/repos/community-staging-x86_64/0001-proc_ops-struct.patch 
(from rev 1196044, bbswitch/trunk/0001-proc_ops-struct.patch)
===
--- community-staging-x86_64/0001-proc_ops-struct.patch 
(rev 0)
+++ community-staging-x86_64/0001-proc_ops-struct.patch 2022-05-06 21:00:53 UTC 
(rev 1196045)
@@ -0,0 +1,36 @@
+diff --unified --recursive --text bbswitch-0.8.orig/bbswitch.c 
bbswitch-0.8.new/bbswitch.c
+--- bbswitch-0.8.orig/bbswitch.c   2013-12-04 21:22:06.0 -0200
 bbswitch-0.8.new/bbswitch.c2020-04-01 12:02:35.518754892 -0300
+@@ -35,6 +35,7 @@
+ #include 
+ #include 
+ #include 
++#include 
+ 
+ #define BBSWITCH_VERSION "0.8"
+ 
+@@ -375,13 +376,23 @@
+ return 0;
+ }
+ 
++#if LINUX_VERSION_CODE >= KERNEL_VERSION(5, 6, 0)
++static struct proc_ops bbswitch_fops = {
++.proc_open   = bbswitch_proc_open,
++.proc_read   = seq_read,
++.proc_write  = bbswitch_proc_write,
++.proc_lseek = seq_lseek,
++.proc_release= single_release
++};
++#else
+ static struct file_operations bbswitch_fops = {
+ .open   = bbswitch_proc_open,
+ .read   = seq_read,
+ .write  = bbswitch_proc_write,
+ .llseek = seq_lseek,
+ .release= single_release
+-};
++ };
++#endif
+ 
+ static struct notifier_block nb = {
+ .notifier_call = _pm_handler

Copied: bbswitch/repos/community-staging-x86_64/0002-kernel-5.7.patch (from rev 
1196044, bbswitch/trunk/0002-kernel-5.7.patch)
===
--- community-staging-x86_64/0002-kernel-5.7.patch  
(rev 0)
+++ community-staging-x86_64/0002-kernel-5.7.patch  2022-05-06 21:00:53 UTC 
(rev 1196045)
@@ -0,0 +1,11 @@
+diff -u -r bbswitch-0.8/bbswitch.c bbswitch-0.8-5.7/bbswitch.c
+--- bbswitch-0.8/bbswitch.c2020-06-02 00:34:20.370571802 +
 bbswitch-0.8-5.7/bbswitch.c2020-06-02 00:35:18.161403639 +
+@@ -29,6 +29,7 @@
+ #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
+ 
+ #include 
++#include 
+ #include 
+ #include 
+ #include 

Copied: bbswitch/repos/community-staging-x86_64/PKGBUILD (from rev 1196044, 
bbswitch/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-05-06 21:00:53 UTC (rev 1196045)
@@ -0,0 +1,50 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: M0Rf30
+# Contributor: Samsagax 
+
+pkgbase=bbswitch
+pkgname=(bbswitch bbswitch-dkms)
+pkgver=0.8
+pkgrel=502
+pkgdesc="Kernel module allowing to switch dedicated graphics card on Optimus 
laptops"
+arch=('x86_64')
+url="http://github.com/Bumblebee-Project/bbswitch;
+license=('GPL')
+makedepends=('linux-headers')
+source=("${pkgbase}-${pkgver}.tar.gz::https://github.com/Bumblebee-Project/bbswitch/archive/v${pkgver}.tar.gz;
+0001-proc_ops-struct.patch 0002-kernel-5.7.patch)
+sha512sums=('11ab163931feb6c0e202d04c4552b848e999fedea9990390c26b28abdb4a69081ccfb5a22d1e390cc274f1c0cfc9adedc719c5fece14738b17aaa93e28865b7c'
+
'993a2895c37ea213c105be668f794af54838d8015d6f561ee6bc7ce65583425515931c83c2487ab97c14454105f233f089e8bdc90ea5ed9576be767335f57ad1'
+
'2eeae463b2f83e7744ff1a769cb6186389e026fc78668e836525dfd16a56abfae01cfb150c9bb46af74ec42e87ebea91636118fe0c773e7eaa7ea671b25d2e04')
+
+prepare() {
+  cd ${pkgbase}-${pkgver}
+  patch -Np1 < ../0001-proc_ops-struct.patch
+  patch -Np1 < ../0002-kernel-5.7.patch
+}
+
+build() {
+  cd ${pkgbase}-${pkgver}
+  make KDIR=/usr/src/linux
+}
+
+package_bbswitch() {
+  depends=('linux')
+
+  cd ${pkgbase}-${pkgver}
+  _extradir="/usr/lib/modules/$(

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

2022-05-06 Thread Frederik Schwan via arch-commits
Date: Friday, May 6, 2022 @ 21:00:49
  Author: freswa
Revision: 1196044

gcc-12.1.0 rebuild

Modified:
  bbswitch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-05-06 21:00:14 UTC (rev 1196043)
+++ PKGBUILD2022-05-06 21:00:49 UTC (rev 1196044)
@@ -5,7 +5,7 @@
 pkgbase=bbswitch
 pkgname=(bbswitch bbswitch-dkms)
 pkgver=0.8
-pkgrel=501
+pkgrel=502
 pkgdesc="Kernel module allowing to switch dedicated graphics card on Optimus 
laptops"
 arch=('x86_64')
 url="http://github.com/Bumblebee-Project/bbswitch;



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

2022-05-06 Thread George Rawlinson via arch-commits
Date: Friday, May 6, 2022 @ 21:00:14
  Author: grawlinson
Revision: 1196043

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-05-06 21:00:07 UTC (rev 1196042)
+++ PKGBUILD2022-05-06 21:00:14 UTC (rev 1196043)
@@ -1,38 +0,0 @@
-# Maintainer: Bartłomiej Piotrowski 
-# Maintainer: Morten Linderud 
-
-pkgname=buildah
-pkgver=1.25.1
-pkgrel=2
-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)
-options=(!lto)
-_commit=fcf94e3982b87702e91df4699ce535c2b548f6a4   #refs/tags/v1.25.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"
-}

Copied: buildah/repos/community-x86_64/PKGBUILD (from rev 1196040, 
buildah/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-05-06 21:00:14 UTC (rev 1196043)
@@ -0,0 +1,39 @@
+# Maintainer: Bartłomiej Piotrowski 
+# Maintainer: Morten Linderud 
+# Maintainer: George Rawlinson 
+
+pkgname=buildah
+pkgver=1.26.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)
+options=(!lto)
+_commit=6e2ec2eb0f2d6c7ac1abdfe7e6a81e2595ca4c2e   #refs/tags/v1.26.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 acpi_call-lts/repos (2 files)

2022-05-06 Thread Frederik Schwan via arch-commits
Date: Friday, May 6, 2022 @ 21:00:07
  Author: freswa
Revision: 1196042

archrelease: copy trunk to community-staging-x86_64

Added:
  acpi_call-lts/repos/community-staging-x86_64/
  acpi_call-lts/repos/community-staging-x86_64/PKGBUILD
(from rev 1196041, acpi_call-lts/trunk/PKGBUILD)

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

Copied: acpi_call-lts/repos/community-staging-x86_64/PKGBUILD (from rev 
1196041, acpi_call-lts/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-05-06 21:00:07 UTC (rev 1196042)
@@ -0,0 +1,68 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: mortzu 
+# Contributor: fnord0 
+
+pkgname=acpi_call-lts
+pkgver=1.2.2
+pkgrel=38
+pkgdesc='A linux kernel module that enables calls to ACPI methods through 
/proc/acpi/call'
+url='https://github.com/mkottman/acpi_call'
+arch=('x86_64')
+license=('GPL')
+makedepends=('linux-lts-headers' "acpi_call-dkms=$pkgver")
+conflicts=('acpi_call-dkms')
+provides=('acpi_call')
+
+build() {
+  _kernver=$(

  1   2   3   >