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

2021-05-07 Thread Sven-Hendrik Haase via arch-commits
Date: Saturday, May 8, 2021 @ 01:25:03
  Author: svenstaro
Revision: 928676

upgpkg: openshadinglanguage 1.11.13.0-4: Remove intel-tbb as deps (FS#70741)

Modified:
  openshadinglanguage/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-07 22:48:53 UTC (rev 928675)
+++ PKGBUILD2021-05-08 01:25:03 UTC (rev 928676)
@@ -1,12 +1,12 @@
 # Maintainer: Sven-Hendrik Haase 
 pkgname=openshadinglanguage
 pkgver=1.11.13.0
-pkgrel=3
+pkgrel=4
 pkgdesc="Advanced shading language for production GI renderers"
 arch=(x86_64)
 url="https://github.com/imageworks/OpenShadingLanguage;
 license=('custom')
-depends=('boost-libs' 'openimageio' 'imath' 'intel-tbb' 'freetype2' 'libpng'
+depends=('boost-libs' 'openimageio' 'imath' 'freetype2' 'libpng'
  'libtiff' 'zlib' 'ncurses' 'clang')
 makedepends=('boost' 'cmake' 'python' 'llvm' 'ninja')
 optdepends=('python: the Python module')


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

2021-05-07 Thread Sven-Hendrik Haase via arch-commits
Date: Saturday, May 8, 2021 @ 01:25:16
  Author: svenstaro
Revision: 928677

archrelease: copy trunk to community-x86_64

Added:
  
openshadinglanguage/repos/community-x86_64/0001-Allow-OSL-to-compile-with-LLVM-10.x-1128.patch
(from rev 928676, 
openshadinglanguage/trunk/0001-Allow-OSL-to-compile-with-LLVM-10.x-1128.patch)
  openshadinglanguage/repos/community-x86_64/PKGBUILD
(from rev 928676, openshadinglanguage/trunk/PKGBUILD)
Deleted:
  
openshadinglanguage/repos/community-x86_64/0001-Allow-OSL-to-compile-with-LLVM-10.x-1128.patch
  openshadinglanguage/repos/community-x86_64/PKGBUILD

-+
 0001-Allow-OSL-to-compile-with-LLVM-10.x-1128.patch |  170 +-
 PKGBUILD|   92 -
 2 files changed, 131 insertions(+), 131 deletions(-)

Deleted: 0001-Allow-OSL-to-compile-with-LLVM-10.x-1128.patch
===
--- 0001-Allow-OSL-to-compile-with-LLVM-10.x-1128.patch 2021-05-08 01:25:03 UTC 
(rev 928676)
+++ 0001-Allow-OSL-to-compile-with-LLVM-10.x-1128.patch 2021-05-08 01:25:16 UTC 
(rev 928677)
@@ -1,85 +0,0 @@
-From 2f9093ed2aedc008ba6e0a0b3ba0ff1839d73ac1 Mon Sep 17 00:00:00 2001
-From: Christopher Kulla 
-Date: Thu, 12 Mar 2020 13:16:19 -0700
-Subject: [PATCH] Allow OSL to compile with LLVM 10.x (#1128)
-

- src/liboslexec/backendllvm.cpp |  4 
- src/liboslexec/llvm_util.cpp   | 27 +--
- 2 files changed, 25 insertions(+), 6 deletions(-)
-
-diff --git a/src/liboslexec/backendllvm.cpp b/src/liboslexec/backendllvm.cpp
-index 263d8cab..93e091b0 100644
 a/src/liboslexec/backendllvm.cpp
-+++ b/src/liboslexec/backendllvm.cpp
-@@ -368,7 +368,11 @@ BackendLLVM::addCUDAVariable(const std::string& name, int 
size, int alignment,
- 
- ASSERT (g_var && "Unable to create GlobalVariable");
- 
-+#if OSL_LLVM_VERSION >= 100
-+g_var->setAlignment  (llvm::MaybeAlign(alignment));
-+#else
- g_var->setAlignment  (alignment);
-+#endif
- g_var->setLinkage(llvm::GlobalValue::ExternalLinkage);
- g_var->setVisibility (llvm::GlobalValue::DefaultVisibility);
- g_var->setInitializer(constant);
-diff --git a/src/liboslexec/llvm_util.cpp b/src/liboslexec/llvm_util.cpp
-index 8fa915fe..dde2f1e6 100644
 a/src/liboslexec/llvm_util.cpp
-+++ b/src/liboslexec/llvm_util.cpp
-@@ -1160,8 +1160,12 @@ LLVM_Util::op_return (llvm::Value *retval)
- void
- LLVM_Util::op_memset (llvm::Value *ptr, int val, int len, int align)
- {
--builder().CreateMemSet (ptr, builder().getInt8((unsigned char)val),
--uint64_t(len), (unsigned)align);
-+builder().CreateMemSet (ptr, builder().getInt8((unsigned char)val), 
uint64_t(len),
-+#if OSL_LLVM_VERSION >= 100
-+llvm::MaybeAlign(align));
-+#else
-+unsigned(align));
-+#endif
- }
- 
- 
-@@ -1169,8 +1173,12 @@ LLVM_Util::op_memset (llvm::Value *ptr, int val, int 
len, int align)
- void
- LLVM_Util::op_memset (llvm::Value *ptr, int val, llvm::Value *len, int align)
- {
--builder().CreateMemSet (ptr, builder().getInt8((unsigned char)val),
--len, (unsigned)align);
-+builder().CreateMemSet (ptr, builder().getInt8((unsigned char)val), len,
-+#if OSL_LLVM_VERSION >= 100
-+llvm::MaybeAlign(align));
-+#else
-+unsigned(align));
-+#endif
- }
- 
- 
-@@ -1187,7 +1195,10 @@ void
- LLVM_Util::op_memcpy (llvm::Value *dst, int dstalign,
-   llvm::Value *src, int srcalign, int len)
- {
--#if OSL_LLVM_VERSION >= 70
-+#if OSL_LLVM_VERSION >= 100
-+builder().CreateMemCpy (dst, llvm::MaybeAlign(dstalign), src, 
llvm::MaybeAlign(srcalign),
-+uint64_t(len));
-+#elif OSL_LLVM_VERSION >= 70
- builder().CreateMemCpy (dst, (unsigned)dstalign, src, (unsigned)srcalign,
- uint64_t(len));
- #else
-@@ -1588,7 +1599,11 @@ LLVM_Util::ptx_compile_group (llvm::Module* lib_module, 
const std::string& name,
- llvm::raw_svector_ostream assembly_stream (assembly);
- 
- // TODO: Make sure rounding modes, etc., are set correctly
--#if OSL_LLVM_VERSION >= 70
-+#if OSL_LLVM_VERSION >= 100
-+target_machine->addPassesToEmitFile (mod_pm, assembly_stream,
-+ nullptr,  // FIXME: Correct?
-+ llvm::CGFT_AssemblyFile);
-+#elif OSL_LLVM_VERSION >= 70
- target_machine->addPassesToEmitFile (mod_pm, assembly_stream,
-  nullptr,  // FIXME: Correct?
-  
llvm::TargetMachine::CGFT_AssemblyFile);

Copied: 
openshadinglanguage/repos/community-x86_64/0001-Allow-OSL-to-compile-with-LLVM-10.x-1128.patch
 (from rev 928676, 
openshadinglanguage/trunk/0001-Allow-OSL-to-compile-with-LLVM-10.x-1128.patch)
===
--- 

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

2021-05-07 Thread Maxim Baz via arch-commits
Date: Friday, May 7, 2021 @ 22:48:53
  Author: maximbaz
Revision: 928675

archrelease: copy trunk to community-x86_64

Added:
  croc/repos/community-x86_64/PKGBUILD
(from rev 928674, croc/trunk/PKGBUILD)
Deleted:
  croc/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-07 22:48:49 UTC (rev 928674)
+++ PKGBUILD2021-05-07 22:48:53 UTC (rev 928675)
@@ -1,36 +0,0 @@
-# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
-# Contributor: Mikuro Kagamine 
-
-pkgname=croc
-pkgver=9.1.1
-pkgrel=1
-pkgdesc='Easily and securely send things from one computer to another.'
-arch=('x86_64')
-url="https://github.com/schollz/${pkgname};
-license=('MIT')
-depends=('glibc')
-makedepends=('go')
-source=("${url}/releases/download/v${pkgver}/${pkgname}_${pkgver}_src.tar.gz")
-sha256sums=('8afe88b30c784c1015a81755e4dbd53b2354c5e53f0eb99464db891c416663e7')
-
-build() {
-cd "${pkgname}-${pkgver}"
-export CGO_CPPFLAGS="${CPPFLAGS}"
-export CGO_CFLAGS="${CFLAGS}"
-export CGO_CXXFLAGS="${CXXFLAGS}"
-export CGO_LDFLAGS="${LDFLAGS}"
-export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external 
-mod=vendor -modcacherw"
-go build
-}
-
-check() {
-cd "${pkgname}-${pkgver}"
-go test ./...
-}
-
-package() {
-cd "${pkgname}-${pkgver}"
-install -Dm755 -t "${pkgdir}/usr/bin/" "${pkgname}"
-install -Dm644 -t "${pkgdir}/usr/lib/systemd/system/" "${pkgname}.service"
-install -Dm644 -t "${pkgdir}/usr/share/licenses/${pkgname}/" LICENSE
-}

Copied: croc/repos/community-x86_64/PKGBUILD (from rev 928674, 
croc/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-07 22:48:53 UTC (rev 928675)
@@ -0,0 +1,36 @@
+# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
+# Contributor: Mikuro Kagamine 
+
+pkgname=croc
+pkgver=9.1.2
+pkgrel=1
+pkgdesc='Easily and securely send things from one computer to another.'
+arch=('x86_64')
+url="https://github.com/schollz/${pkgname};
+license=('MIT')
+depends=('glibc')
+makedepends=('go')
+source=("${url}/releases/download/v${pkgver}/${pkgname}_${pkgver}_src.tar.gz")
+sha256sums=('5e4e9153d5fe7a23a5b2b66a909766358aa81607907378a9e4752ca237d03bd8')
+
+build() {
+cd "${pkgname}-${pkgver}"
+export CGO_CPPFLAGS="${CPPFLAGS}"
+export CGO_CFLAGS="${CFLAGS}"
+export CGO_CXXFLAGS="${CXXFLAGS}"
+export CGO_LDFLAGS="${LDFLAGS}"
+export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external 
-mod=vendor -modcacherw"
+go build
+}
+
+check() {
+cd "${pkgname}-${pkgver}"
+go test ./...
+}
+
+package() {
+cd "${pkgname}-${pkgver}"
+install -Dm755 -t "${pkgdir}/usr/bin/" "${pkgname}"
+install -Dm644 -t "${pkgdir}/usr/lib/systemd/system/" "${pkgname}.service"
+install -Dm644 -t "${pkgdir}/usr/share/licenses/${pkgname}/" LICENSE
+}


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

2021-05-07 Thread Maxim Baz via arch-commits
Date: Friday, May 7, 2021 @ 22:48:49
  Author: maximbaz
Revision: 928674

upgpkg: croc 9.1.2-1

Modified:
  croc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-07 21:12:02 UTC (rev 928673)
+++ PKGBUILD2021-05-07 22:48:49 UTC (rev 928674)
@@ -2,7 +2,7 @@
 # Contributor: Mikuro Kagamine 
 
 pkgname=croc
-pkgver=9.1.1
+pkgver=9.1.2
 pkgrel=1
 pkgdesc='Easily and securely send things from one computer to another.'
 arch=('x86_64')
@@ -11,7 +11,7 @@
 depends=('glibc')
 makedepends=('go')
 source=("${url}/releases/download/v${pkgver}/${pkgname}_${pkgver}_src.tar.gz")
-sha256sums=('8afe88b30c784c1015a81755e4dbd53b2354c5e53f0eb99464db891c416663e7')
+sha256sums=('5e4e9153d5fe7a23a5b2b66a909766358aa81607907378a9e4752ca237d03bd8')
 
 build() {
 cd "${pkgname}-${pkgver}"


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

2021-05-07 Thread Christian Hesse via arch-commits
Date: Friday, May 7, 2021 @ 22:27:45
  Author: eworm
Revision: 414585

archrelease: copy trunk to testing-x86_64

Added:
  lvm2/repos/testing-x86_64/
  lvm2/repos/testing-x86_64/0001-pvscan-wait-for-udevd.patch
(from rev 414584, lvm2/trunk/0001-pvscan-wait-for-udevd.patch)
  lvm2/repos/testing-x86_64/11-dm-initramfs.rules
(from rev 414584, lvm2/trunk/11-dm-initramfs.rules)
  lvm2/repos/testing-x86_64/PKGBUILD
(from rev 414584, lvm2/trunk/PKGBUILD)
  lvm2/repos/testing-x86_64/lvm2_install
(from rev 414584, lvm2/trunk/lvm2_install)

--+
 0001-pvscan-wait-for-udevd.patch |   28 +++
 11-dm-initramfs.rules|3 
 PKGBUILD |  138 +
 lvm2_install |   51 +
 4 files changed, 220 insertions(+)

Copied: lvm2/repos/testing-x86_64/0001-pvscan-wait-for-udevd.patch (from rev 
414584, lvm2/trunk/0001-pvscan-wait-for-udevd.patch)
===
--- testing-x86_64/0001-pvscan-wait-for-udevd.patch 
(rev 0)
+++ testing-x86_64/0001-pvscan-wait-for-udevd.patch 2021-05-07 22:27:45 UTC 
(rev 414585)
@@ -0,0 +1,28 @@
+From 675d59e9e17a55f11699471896fd6f417ea1e07b Mon Sep 17 00:00:00 2001
+From: Christian Hesse 
+Date: Thu, 11 Feb 2021 12:01:48 +0100
+Subject: [PATCH 1/1] pvscan: wait for udevd
+
+Running the scan before udevd finished startup may result in failure.
+This has been reported for Arch Linux [0] and proper ordering fixes
+the issue.
+
+[0] https://bugs.archlinux.org/task/69611
+
+Signed-off-by: Christian Hesse 
+---
+ scripts/lvm2-pvscan.service.in | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/scripts/lvm2-pvscan.service.in b/scripts/lvm2-pvscan.service.in
+index 09753e8c9..7b4ace551 100644
+--- a/scripts/lvm2-pvscan.service.in
 b/scripts/lvm2-pvscan.service.in
+@@ -4,6 +4,7 @@ Documentation=man:pvscan(8)
+ DefaultDependencies=no
+ StartLimitIntervalSec=0
+ BindsTo=dev-block-%i.device
++After=systemd-udevd.service
+ Before=shutdown.target
+ Conflicts=shutdown.target
+ 

Copied: lvm2/repos/testing-x86_64/11-dm-initramfs.rules (from rev 414584, 
lvm2/trunk/11-dm-initramfs.rules)
===
--- testing-x86_64/11-dm-initramfs.rules(rev 0)
+++ testing-x86_64/11-dm-initramfs.rules2021-05-07 22:27:45 UTC (rev 
414585)
@@ -0,0 +1,3 @@
+# needed with new udev/mkinitcpio and as implemented in dracut:
+# 

+SUBSYSTEM=="block", KERNEL=="dm-[0-9]*", ACTION=="add|change", 
OPTIONS="db_persist"

Copied: lvm2/repos/testing-x86_64/PKGBUILD (from rev 414584, 
lvm2/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2021-05-07 22:27:45 UTC (rev 414585)
@@ -0,0 +1,138 @@
+# Maintainer: Eric Bélanger 
+# Maintainer: Thomas Bächler 
+
+pkgbase=lvm2
+pkgname=('lvm2' 'device-mapper')
+_tag='e6809e10a27865fbd6d67980a348946a2867182d' # git rev-parse v${pkgver//./_}
+pkgver=2.03.12
+pkgrel=1
+arch=('x86_64')
+url='https://sourceware.org/lvm2/'
+license=('GPL2' 'LGPL2.1')
+makedepends=('git' 'systemd' 'thin-provisioning-tools')
+validpgpkeys=('88437EF5C077BD113D3B7224228191C1567E2C17'  # Alasdair G Kergon 

+  'D501A478440AE2FD130A1BE8B9112431E509039F') # Marian Csontos 

+source=("git+https://sourceware.org/git/lvm2.git#tag=${_tag}?signed;
+'0001-pvscan-wait-for-udevd.patch'
+'lvm2_install'
+'11-dm-initramfs.rules')
+sha256sums=('SKIP'
+'69976608c4e8217f504c4ce964ab21cea722134cd9b3d0109283b3e2f3a33fbe'
+'1c06b4f9ea244b6d0824ab1ad8cc0336047238e33b6d14b61b8447e6f2243615'
+'e10f24b57582d6e2da71f7c80732a62e0ee2e3b867fe84591ccdb53e80fa92e0')
+
+_backports=(
+)
+
+prepare() {
+  cd lvm2/
+
+  patch -Np1 < ../0001-pvscan-wait-for-udevd.patch
+
+  local _c
+  for _c in "${_backports[@]}"; do
+git log --oneline -1 "${_c}"
+git show "${_c}" -- ':(exclude)WHATS_NEW' | git apply
+  done
+
+  # remove install section from systemd units that are enabled by default
+  sed -i -e '/^\[Install\]$/,$d' \
+scripts/dm_event_systemd_red_hat.socket.in \
+scripts/lvm2_lvmpolld_systemd_red_hat.socket.in \
+scripts/lvm2_monitoring_systemd_red_hat.service.in
+}
+
+build() {
+  local _CONFIGUREOPTS=(
+CONFIG_SHELL=/bin/bash
+--prefix=/usr
+--sbindir=/usr/bin
+--sysconfdir=/etc
+--localstatedir=/var
+--enable-cmdlib
+--enable-dmeventd
+--enable-lvmpolld
+--enable-pkgconfig
+--enable-readline
+--enable-udev_rules
+--enable-udev_sync
+--with-cache=internal
+--with-default-dm-run-dir=/run
+--with-default-locking-dir=/run/lock/lvm
+

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

2021-05-07 Thread Christian Hesse via arch-commits
Date: Friday, May 7, 2021 @ 22:27:36
  Author: eworm
Revision: 414584

upgpkg: lvm2 2.03.12-1: new upstream release

Modified:
  lvm2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-07 20:31:52 UTC (rev 414583)
+++ PKGBUILD2021-05-07 22:27:36 UTC (rev 414584)
@@ -3,8 +3,9 @@
 
 pkgbase=lvm2
 pkgname=('lvm2' 'device-mapper')
-pkgver=2.03.11
-pkgrel=5
+_tag='e6809e10a27865fbd6d67980a348946a2867182d' # git rev-parse v${pkgver//./_}
+pkgver=2.03.12
+pkgrel=1
 arch=('x86_64')
 url='https://sourceware.org/lvm2/'
 license=('GPL2' 'LGPL2.1')
@@ -11,7 +12,7 @@
 makedepends=('git' 'systemd' 'thin-provisioning-tools')
 validpgpkeys=('88437EF5C077BD113D3B7224228191C1567E2C17'  # Alasdair G Kergon 

   'D501A478440AE2FD130A1BE8B9112431E509039F') # Marian Csontos 

-source=("git+https://sourceware.org/git/lvm2.git#tag=v${pkgver//./_}?signed;
+source=("git+https://sourceware.org/git/lvm2.git#tag=${_tag}?signed;
 '0001-pvscan-wait-for-udevd.patch'
 'lvm2_install'
 '11-dm-initramfs.rules')


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

2021-05-07 Thread Orhun Parmaksiz via arch-commits
Date: Friday, May 7, 2021 @ 21:12:02
  Author: orhun
Revision: 928673

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-07 21:11:50 UTC (rev 928672)
+++ PKGBUILD2021-05-07 21:12:02 UTC (rev 928673)
@@ -1,34 +0,0 @@
-# Maintainer: Orhun Parmaksız 
-# Contributor: Vlad Frolov 
-
-pkgname=cargo-udeps
-pkgver=0.1.20
-pkgrel=1
-pkgdesc="Find unused dependencies in Cargo.toml"
-arch=('x86_64')
-url="https://github.com/est31/cargo-udeps;
-license=('MIT' 'Apache')
-depends=('curl')
-makedepends=('rust')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha256sums=('b6b42721663aa500470256a64cece67a5d4efb0f60509cd1850daa565af60032')
-
-build() {
-  cd "$pkgname-$pkgver"
-  cargo build --release --locked
-}
-
-# Tests require rustup nightly
-#check() {
-#  cd "$pkgname-$pkgver"
-#  cargo test --release --locked
-#}
-
-package() {
-  cd "$pkgname-$pkgver"
-  install -Dm 755 "target/release/$pkgname" -t "$pkgdir/usr/bin"
-  install -Dm 644 README.md -t "$pkgdir/usr/share/doc/$pkgname"
-  install -Dm 644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: cargo-udeps/repos/community-x86_64/PKGBUILD (from rev 928672, 
cargo-udeps/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-07 21:12:02 UTC (rev 928673)
@@ -0,0 +1,34 @@
+# Maintainer: Orhun Parmaksız 
+# Contributor: Vlad Frolov 
+
+pkgname=cargo-udeps
+pkgver=0.1.21
+pkgrel=1
+pkgdesc="Find unused dependencies in Cargo.toml"
+arch=('x86_64')
+url="https://github.com/est31/cargo-udeps;
+license=('MIT' 'Apache')
+depends=('curl')
+makedepends=('rust')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha256sums=('3db1dca38c63aee38bd204829feaee0aa8510f52cc8dbc1b49785fb6cd17b6ad')
+
+build() {
+  cd "$pkgname-$pkgver"
+  cargo build --release --locked
+}
+
+# Tests require rustup nightly
+#check() {
+#  cd "$pkgname-$pkgver"
+#  cargo test --release --locked
+#}
+
+package() {
+  cd "$pkgname-$pkgver"
+  install -Dm 755 "target/release/$pkgname" -t "$pkgdir/usr/bin"
+  install -Dm 644 README.md -t "$pkgdir/usr/share/doc/$pkgname"
+  install -Dm 644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"
+}
+
+# vim:set ts=2 sw=2 et:


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

2021-05-07 Thread Orhun Parmaksiz via arch-commits
Date: Friday, May 7, 2021 @ 21:11:50
  Author: orhun
Revision: 928672

upgpkg: cargo-udeps 0.1.21-1: upstream release

Modified:
  cargo-udeps/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-07 21:08:55 UTC (rev 928671)
+++ PKGBUILD2021-05-07 21:11:50 UTC (rev 928672)
@@ -2,7 +2,7 @@
 # Contributor: Vlad Frolov 
 
 pkgname=cargo-udeps
-pkgver=0.1.20
+pkgver=0.1.21
 pkgrel=1
 pkgdesc="Find unused dependencies in Cargo.toml"
 arch=('x86_64')
@@ -11,7 +11,7 @@
 depends=('curl')
 makedepends=('rust')
 source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha256sums=('b6b42721663aa500470256a64cece67a5d4efb0f60509cd1850daa565af60032')
+sha256sums=('3db1dca38c63aee38bd204829feaee0aa8510f52cc8dbc1b49785fb6cd17b6ad')
 
 build() {
   cd "$pkgname-$pkgver"


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

2021-05-07 Thread Orhun Parmaksiz via arch-commits
Date: Friday, May 7, 2021 @ 21:08:55
  Author: orhun
Revision: 928671

archrelease: copy trunk to community-x86_64

Added:
  tickrs/repos/community-x86_64/PKGBUILD
(from rev 928670, tickrs/trunk/PKGBUILD)
Deleted:
  tickrs/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-07 21:08:31 UTC (rev 928670)
+++ PKGBUILD2021-05-07 21:08:55 UTC (rev 928671)
@@ -1,30 +0,0 @@
-# Maintainer:  Orhun Parmaksız 
-
-pkgname=tickrs
-pkgver=0.14.4
-pkgrel=2
-pkgdesc="Realtime ticker data in your terminal"
-arch=('x86_64')
-url="https://github.com/tarkah/tickrs;
-license=('MIT')
-depends=('gcc-libs' 'zlib')
-makedepends=('rust')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha512sums=('efd0a918a51c5e868d2615f3126a90f91c1215f281d4d4872928e05fcc216c2b8b5b83a5f9704179cbe249c9452e08caa77c0c5447387843f4d410aaa52d4853')
-
-build() {
-  cd "$pkgname-$pkgver"
-  cargo build --release --locked
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-  cargo test --release --locked
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  install -Dm 755 "target/release/$pkgname" -t "$pkgdir/usr/bin"
-  install -Dm 644 README.md -t "$pkgdir/usr/share/doc/$pkgname"
-  install -Dm 644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"
-}

Copied: tickrs/repos/community-x86_64/PKGBUILD (from rev 928670, 
tickrs/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-07 21:08:55 UTC (rev 928671)
@@ -0,0 +1,30 @@
+# Maintainer:  Orhun Parmaksız 
+
+pkgname=tickrs
+pkgver=0.14.5
+pkgrel=1
+pkgdesc="Realtime ticker data in your terminal"
+arch=('x86_64')
+url="https://github.com/tarkah/tickrs;
+license=('MIT')
+depends=('gcc-libs' 'zlib')
+makedepends=('rust')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha512sums=('986579ba72dff767e9bcadece181a084b75f77cd3031ff22b7384ae55581225ed7fac73b2eaa57ab56c7549b5b879313bf8bef9b0a457c6d6e3feaef5ae3bccf')
+
+build() {
+  cd "$pkgname-$pkgver"
+  cargo build --release --locked
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  cargo test --release --locked
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  install -Dm 755 "target/release/$pkgname" -t "$pkgdir/usr/bin"
+  install -Dm 644 README.md -t "$pkgdir/usr/share/doc/$pkgname"
+  install -Dm 644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"
+}


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

2021-05-07 Thread Orhun Parmaksiz via arch-commits
Date: Friday, May 7, 2021 @ 21:08:31
  Author: orhun
Revision: 928670

upgpkg: tickrs 0.14.5-1: upstream release

Modified:
  tickrs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-07 21:07:02 UTC (rev 928669)
+++ PKGBUILD2021-05-07 21:08:31 UTC (rev 928670)
@@ -1,8 +1,8 @@
 # Maintainer:  Orhun Parmaksız 
 
 pkgname=tickrs
-pkgver=0.14.4
-pkgrel=2
+pkgver=0.14.5
+pkgrel=1
 pkgdesc="Realtime ticker data in your terminal"
 arch=('x86_64')
 url="https://github.com/tarkah/tickrs;
@@ -10,7 +10,7 @@
 depends=('gcc-libs' 'zlib')
 makedepends=('rust')
 source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha512sums=('efd0a918a51c5e868d2615f3126a90f91c1215f281d4d4872928e05fcc216c2b8b5b83a5f9704179cbe249c9452e08caa77c0c5447387843f4d410aaa52d4853')
+sha512sums=('986579ba72dff767e9bcadece181a084b75f77cd3031ff22b7384ae55581225ed7fac73b2eaa57ab56c7549b5b879313bf8bef9b0a457c6d6e3feaef5ae3bccf')
 
 build() {
   cd "$pkgname-$pkgver"


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

2021-05-07 Thread Orhun Parmaksiz via arch-commits
Date: Friday, May 7, 2021 @ 21:07:02
  Author: orhun
Revision: 928669

archrelease: copy trunk to community-x86_64

Added:
  taskwarrior-tui/repos/community-x86_64/PKGBUILD
(from rev 928668, taskwarrior-tui/trunk/PKGBUILD)
Deleted:
  taskwarrior-tui/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-07 21:06:10 UTC (rev 928668)
+++ PKGBUILD2021-05-07 21:07:02 UTC (rev 928669)
@@ -1,38 +0,0 @@
-# Maintainer: Orhun Parmaksız 
-
-pkgname=taskwarrior-tui
-pkgver=0.13.19
-pkgrel=1
-pkgdesc="A terminal user interface for taskwarrior"
-arch=('x86_64')
-url="https://github.com/kdheepak/taskwarrior-tui;
-license=('MIT')
-depends=('task')
-makedepends=('rust' 'git' 'pandoc')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz"
-"git+https://github.com/kdheepak/taskwarrior-testdata;)
-sha256sums=('45a173c5551fa2bc7de753e2e20272ed80c5212480e6c51c70f93c4dca519516'
-'SKIP')
-
-build() {
-  cd "$pkgname-$pkgver"
-  cargo build --release --locked --all-features
-  pandoc "docs/$pkgname.1.md" --standalone --to=man -o "docs/$pkgname.1"
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-  export TASKRC="../taskwarrior-testdata/.taskrc"
-  export TASKDATA="../taskwarrior-testdata/.task"
-  cargo test --release --locked --all-features
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  install -Dm 755 "target/release/$pkgname" -t "$pkgdir/usr/bin"
-  install -Dm 644 README.md -t "$pkgdir/usr/share/doc/$pkgname"
-  install -Dm 644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"
-  install -Dm 644 "docs/$pkgname.1" -t "$pkgdir/usr/share/man/man1"
-}
-
-# vim: ts=2 sw=2 et:

Copied: taskwarrior-tui/repos/community-x86_64/PKGBUILD (from rev 928668, 
taskwarrior-tui/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-07 21:07:02 UTC (rev 928669)
@@ -0,0 +1,38 @@
+# Maintainer: Orhun Parmaksız 
+
+pkgname=taskwarrior-tui
+pkgver=0.13.20
+pkgrel=1
+pkgdesc="A terminal user interface for taskwarrior"
+arch=('x86_64')
+url="https://github.com/kdheepak/taskwarrior-tui;
+license=('MIT')
+depends=('task')
+makedepends=('rust' 'git' 'pandoc')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz"
+"git+https://github.com/kdheepak/taskwarrior-testdata;)
+sha256sums=('7eee04736afd409e85bc94d7dd9e82da3ea76aa658a17a46d00f07268d931d82'
+'SKIP')
+
+build() {
+  cd "$pkgname-$pkgver"
+  cargo build --release --locked --all-features
+  pandoc "docs/$pkgname.1.md" --standalone --to=man -o "docs/$pkgname.1"
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  export TASKRC="../taskwarrior-testdata/.taskrc"
+  export TASKDATA="../taskwarrior-testdata/.task"
+  cargo test --release --locked --all-features
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  install -Dm 755 "target/release/$pkgname" -t "$pkgdir/usr/bin"
+  install -Dm 644 README.md -t "$pkgdir/usr/share/doc/$pkgname"
+  install -Dm 644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"
+  install -Dm 644 "docs/$pkgname.1" -t "$pkgdir/usr/share/man/man1"
+}
+
+# vim: ts=2 sw=2 et:


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

2021-05-07 Thread Orhun Parmaksiz via arch-commits
Date: Friday, May 7, 2021 @ 21:06:10
  Author: orhun
Revision: 928668

upgpkg: taskwarrior-tui 0.13.20-1: upstream release

Modified:
  taskwarrior-tui/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-07 20:23:24 UTC (rev 928667)
+++ PKGBUILD2021-05-07 21:06:10 UTC (rev 928668)
@@ -1,7 +1,7 @@
 # Maintainer: Orhun Parmaksız 
 
 pkgname=taskwarrior-tui
-pkgver=0.13.19
+pkgver=0.13.20
 pkgrel=1
 pkgdesc="A terminal user interface for taskwarrior"
 arch=('x86_64')
@@ -11,7 +11,7 @@
 makedepends=('rust' 'git' 'pandoc')
 source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz"
 "git+https://github.com/kdheepak/taskwarrior-testdata;)
-sha256sums=('45a173c5551fa2bc7de753e2e20272ed80c5212480e6c51c70f93c4dca519516'
+sha256sums=('7eee04736afd409e85bc94d7dd9e82da3ea76aa658a17a46d00f07268d931d82'
 'SKIP')
 
 build() {


[arch-commits] Commit in perl-libwww/repos/extra-any (PKGBUILD PKGBUILD)

2021-05-07 Thread Felix Yan via arch-commits
Date: Friday, May 7, 2021 @ 20:31:52
  Author: felixonmars
Revision: 414583

archrelease: copy trunk to extra-any

Added:
  perl-libwww/repos/extra-any/PKGBUILD
(from rev 414582, perl-libwww/trunk/PKGBUILD)
Deleted:
  perl-libwww/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-07 20:31:35 UTC (rev 414582)
+++ PKGBUILD2021-05-07 20:31:52 UTC (rev 414583)
@@ -1,34 +0,0 @@
-# Maintainer: Eric Bélanger 
-
-pkgname=perl-libwww
-pkgver=6.53
-pkgrel=1
-pkgdesc="The World-Wide Web library for Perl"
-arch=('any')
-url="https://metacpan.org/release/libwww-perl;
-license=('PerlArtistic' 'GPL')
-depends=('perl' 'perl-encode-locale' 'perl-file-listing'
- 'perl-html-parser' 'perl-http-cookies' 'perl-http-daemon'
- 'perl-http-date' 'perl-http-negotiate' 'perl-lwp-mediatypes'
- 'perl-net-http' 'perl-try-tiny' 'perl-uri' 'perl-www-robotrules')
-optdepends=('perl-lwp-protocol-https: for https:// url schemes')
-checkdepends=('perl-test-fatal' 'perl-test-needs' 'perl-test-requiresinternet')
-options=('!emptydirs')
-source=(https://cpan.metacpan.org/authors/id/O/OA/OALDERS/libwww-perl-$pkgver.tar.gz)
-sha512sums=('d45bba79bf2f3d49cf6b14591a58d04f551e0fe6bac32ec31018091590d5efe4313781605287dab22693bafa547dc916b010aafcc677a35a7c3a1154c8ff')
-
-build() {
-  cd libwww-perl-$pkgver
-  perl Makefile.PL --aliases INSTALLDIRS=vendor
-  make
-}
-
-check()  {
-  cd libwww-perl-$pkgver
-  make test
-}
-
-package() {
-  cd libwww-perl-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: perl-libwww/repos/extra-any/PKGBUILD (from rev 414582, 
perl-libwww/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-07 20:31:52 UTC (rev 414583)
@@ -0,0 +1,34 @@
+# Maintainer: Eric Bélanger 
+
+pkgname=perl-libwww
+pkgver=6.54
+pkgrel=1
+pkgdesc="The World-Wide Web library for Perl"
+arch=('any')
+url="https://metacpan.org/release/libwww-perl;
+license=('PerlArtistic' 'GPL')
+depends=('perl' 'perl-encode-locale' 'perl-file-listing'
+ 'perl-html-parser' 'perl-http-cookies' 'perl-http-daemon'
+ 'perl-http-date' 'perl-http-negotiate' 'perl-lwp-mediatypes'
+ 'perl-net-http' 'perl-try-tiny' 'perl-uri' 'perl-www-robotrules')
+optdepends=('perl-lwp-protocol-https: for https:// url schemes')
+checkdepends=('perl-test-fatal' 'perl-test-needs' 'perl-test-requiresinternet')
+options=('!emptydirs')
+source=(https://cpan.metacpan.org/authors/id/O/OA/OALDERS/libwww-perl-$pkgver.tar.gz)
+sha512sums=('5a0538ed99df706373e9dc69db14efd9a033120a51dd656e0b15974c5da9d91eef55b7ccecd459b096d5e7f469d8e5ec328ebb3f8f14a211f43c40c70c2fd0fc')
+
+build() {
+  cd libwww-perl-$pkgver
+  perl Makefile.PL --aliases INSTALLDIRS=vendor
+  make
+}
+
+check()  {
+  cd libwww-perl-$pkgver
+  make test
+}
+
+package() {
+  cd libwww-perl-$pkgver
+  make DESTDIR="$pkgdir" install
+}


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

2021-05-07 Thread Felix Yan via arch-commits
Date: Friday, May 7, 2021 @ 20:31:35
  Author: felixonmars
Revision: 414582

upgpkg: perl-libwww 6.54-1

Modified:
  perl-libwww/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-07 18:30:50 UTC (rev 414581)
+++ PKGBUILD2021-05-07 20:31:35 UTC (rev 414582)
@@ -1,7 +1,7 @@
 # Maintainer: Eric Bélanger 
 
 pkgname=perl-libwww
-pkgver=6.53
+pkgver=6.54
 pkgrel=1
 pkgdesc="The World-Wide Web library for Perl"
 arch=('any')
@@ -15,7 +15,7 @@
 checkdepends=('perl-test-fatal' 'perl-test-needs' 'perl-test-requiresinternet')
 options=('!emptydirs')
 
source=(https://cpan.metacpan.org/authors/id/O/OA/OALDERS/libwww-perl-$pkgver.tar.gz)
-sha512sums=('d45bba79bf2f3d49cf6b14591a58d04f551e0fe6bac32ec31018091590d5efe4313781605287dab22693bafa547dc916b010aafcc677a35a7c3a1154c8ff')
+sha512sums=('5a0538ed99df706373e9dc69db14efd9a033120a51dd656e0b15974c5da9d91eef55b7ccecd459b096d5e7f469d8e5ec328ebb3f8f14a211f43c40c70c2fd0fc')
 
 build() {
   cd libwww-perl-$pkgver


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

2021-05-07 Thread Felix Yan via arch-commits
Date: Friday, May 7, 2021 @ 20:23:24
  Author: felixonmars
Revision: 928667

archrelease: copy trunk to community-testing-x86_64

Added:
  python-greenlet/repos/community-testing-x86_64/
  python-greenlet/repos/community-testing-x86_64/PKGBUILD
(from rev 928666, python-greenlet/trunk/PKGBUILD)

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

Copied: python-greenlet/repos/community-testing-x86_64/PKGBUILD (from rev 
928666, python-greenlet/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2021-05-07 20:23:24 UTC (rev 928667)
@@ -0,0 +1,31 @@
+# Maintainer: Massimiliano Torromeo 
+# Maintainer: Felix Yan 
+# Contributor: Ralf Schmitt 
+
+pkgname=python-greenlet
+pkgver=1.1.0
+pkgrel=1
+pkgdesc="Lightweight in-process concurrent programming"
+license=("MIT")
+arch=('x86_64')
+url="https://pypi.org/project/greenlet/;
+depends=('python')
+makedepends=('python-setuptools')
+source=("https://files.pythonhosted.org/packages/source/g/greenlet/greenlet-${pkgver}.tar.gz;)
+sha512sums=('13547917860d9a19f2fab519380121805d8f7801ad47b1584003833a5de66eb703373c71e67b32f13b770d429bcee6856b35bc6fc8afb7be598c2bf509bede03')
+
+build() {
+   cd "$srcdir"/greenlet-$pkgver
+   python setup.py build
+}
+
+check() {
+cd "$srcdir"/greenlet-$pkgver
+PYTHONPATH="$PWD/build/lib.linux-$CARCH-3.9" python -m unittest discover 
-v greenlet.tests
+}
+
+package() {
+cd greenlet-$pkgver
+python setup.py install -O1 --root="$pkgdir"
+install -Dm0644 LICENSE.PSF 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE.PSF
+}


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

2021-05-07 Thread Felix Yan via arch-commits
Date: Friday, May 7, 2021 @ 20:23:10
  Author: felixonmars
Revision: 928666

upgpkg: python-greenlet 1.1.0-1

Modified:
  python-greenlet/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-07 19:54:26 UTC (rev 928665)
+++ PKGBUILD2021-05-07 20:23:10 UTC (rev 928666)
@@ -3,8 +3,8 @@
 # Contributor: Ralf Schmitt 
 
 pkgname=python-greenlet
-pkgver=1.0.0
-pkgrel=2
+pkgver=1.1.0
+pkgrel=1
 pkgdesc="Lightweight in-process concurrent programming"
 license=("MIT")
 arch=('x86_64')
@@ -12,7 +12,7 @@
 depends=('python')
 makedepends=('python-setuptools')
 
source=("https://files.pythonhosted.org/packages/source/g/greenlet/greenlet-${pkgver}.tar.gz;)
-sha512sums=('7b615792c340e0eb8ca61bd09bde48ed15110d97254910bd8598312e15adb7267ba795e9e6b52f0998db27d8413d2e1aa9e977511c0d09cd3a5583b37475f882')
+sha512sums=('13547917860d9a19f2fab519380121805d8f7801ad47b1584003833a5de66eb703373c71e67b32f13b770d429bcee6856b35bc6fc8afb7be598c2bf509bede03')
 
 build() {
cd "$srcdir"/greenlet-$pkgver


[arch-commits] Commit in zssh/repos/community-x86_64 (7 files)

2021-05-07 Thread Kpcyrd via arch-commits
Date: Friday, May 7, 2021 @ 19:54:26
  Author: kpcyrd
Revision: 928665

archrelease: copy trunk to community-x86_64

Added:
  zssh/repos/community-x86_64/PKGBUILD
(from rev 928664, zssh/trunk/PKGBUILD)
  zssh/repos/community-x86_64/fix_CPPsymlink.patch
(from rev 928664, zssh/trunk/fix_CPPsymlink.patch)
  zssh/repos/community-x86_64/fix_use_ptmx_on_arch.patch
(from rev 928664, zssh/trunk/fix_use_ptmx_on_arch.patch)
  zssh/repos/community-x86_64/source_date_epoch.patch
(from rev 928664, zssh/trunk/source_date_epoch.patch)
Deleted:
  zssh/repos/community-x86_64/PKGBUILD
  zssh/repos/community-x86_64/fix_CPPsymlink.patch
  zssh/repos/community-x86_64/fix_use_ptmx_on_arch.patch

+
 PKGBUILD   |   83 ++-
 fix_CPPsymlink.patch   |   20 +-
 fix_use_ptmx_on_arch.patch |   22 +--
 source_date_epoch.patch|   11 +
 4 files changed, 75 insertions(+), 61 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-07 19:54:03 UTC (rev 928664)
+++ PKGBUILD2021-05-07 19:54:26 UTC (rev 928665)
@@ -1,40 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Ross Eldridge 
-# Contributor: Ivo(sh) Musil 
-
-pkgname=zssh
-pkgver=1.5c
-pkgrel=12
-pkgdesc="SSH and Telnet client with ZMODEM file transfer capability"
-arch=("x86_64")
-license=("GPL")
-url="http://zssh.sourceforge.net/;
-depends=("readline")
-source=("https://downloads.sourceforge.net/project/zssh/zssh/1.5/$pkgname-$pkgver.tgz;
-'fix_use_ptmx_on_arch.patch'
-'fix_CPPsymlink.patch')
-sha512sums=('799ce3bbea5e94a800f61e6c38879746a579992396304861b7584b6bad967214b811b6bf9aecb36d9d60a15857377cb2fee80b495ad69778903fc45593efeebd'
-
'2d68216fe859d1bcf35e316cf9bf8ed105afb15e27ea00e5ca2e66e433aebf13834fb648e70b544a54a2a135fe65169c6839a67180eb66c724766f4a5ab33725'
-
'5e17325b65cd4f48bbb08d4c986ff5789a29d9657b3fb9828183ba489f231124371e37ef718d4793b52898ea1302f29ebad768866a2322f85a75ae8771ccd607')
-
-prepare() {
-  cd $pkgname-$pkgver
-
-  patch -p0 < "$srcdir"/fix_use_ptmx_on_arch.patch
-  patch -p0 < "$srcdir"/fix_CPPsymlink.patch
-
-  rm -r lrzsz-*
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --mandir='${exec_prefix}/share/man'
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  install -dm755 "$pkgdir"/usr/{bin,share/man/man1}
-  make exec_prefix="$pkgdir"/usr install
-  chmod a+r $pkgdir/usr/bin/*
-}

Copied: zssh/repos/community-x86_64/PKGBUILD (from rev 928664, 
zssh/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-07 19:54:26 UTC (rev 928665)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+# Contributor: Ross Eldridge 
+# Contributor: Ivo(sh) Musil 
+
+pkgname=zssh
+pkgver=1.5c
+pkgrel=13
+pkgdesc="SSH and Telnet client with ZMODEM file transfer capability"
+arch=("x86_64")
+license=("GPL")
+url="http://zssh.sourceforge.net/;
+depends=("readline")
+source=("https://downloads.sourceforge.net/project/zssh/zssh/1.5/$pkgname-$pkgver.tgz;
+'fix_use_ptmx_on_arch.patch'
+'fix_CPPsymlink.patch'
+'source_date_epoch.patch')
+sha512sums=('799ce3bbea5e94a800f61e6c38879746a579992396304861b7584b6bad967214b811b6bf9aecb36d9d60a15857377cb2fee80b495ad69778903fc45593efeebd'
+
'2d68216fe859d1bcf35e316cf9bf8ed105afb15e27ea00e5ca2e66e433aebf13834fb648e70b544a54a2a135fe65169c6839a67180eb66c724766f4a5ab33725'
+
'5e17325b65cd4f48bbb08d4c986ff5789a29d9657b3fb9828183ba489f231124371e37ef718d4793b52898ea1302f29ebad768866a2322f85a75ae8771ccd607'
+
'056028c3f6dc31886c9c0b20691e6ceefbf2a44b429ca68f98a73c1e0dc2e61cd183a4cca4de374a01daa86ecc7f55c477e85bd1d98a884b648de5d0180ee5b6')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  patch -p0 < "$srcdir"/fix_use_ptmx_on_arch.patch
+  patch -p0 < "$srcdir"/fix_CPPsymlink.patch
+  patch -p0 < "$srcdir"/source_date_epoch.patch
+
+  rm -r lrzsz-*
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --mandir='${exec_prefix}/share/man'
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  install -dm755 "$pkgdir"/usr/{bin,share/man/man1}
+  make exec_prefix="$pkgdir"/usr install
+  chmod a+r "$pkgdir"/usr/bin/*
+}

Deleted: fix_CPPsymlink.patch
===
--- fix_CPPsymlink.patch2021-05-07 19:54:03 UTC (rev 928664)
+++ fix_CPPsymlink.patch2021-05-07 19:54:26 UTC (rev 928665)
@@ -1,10 +0,0 @@
 configure  2014-08-17 15:11:40.382633891 +1000
-+++ ../fix/configure   2014-08-17 15:17:24.110722666 +1000
-@@ -52,6 +52,7 @@
- oldincludedir='/usr/include'
- infodir='${prefix}/info'
- mandir='${prefix}/man'
-+CPPFLAGS="$CPPFLAGS -O2"
- 
- # Initialize some other variables.
- subdirs=

Copied: zssh/repos/community-x86_64/fix_CPPsymlink.patch (from rev 928664, 

[arch-commits] Commit in zssh/trunk (PKGBUILD source_date_epoch.patch)

2021-05-07 Thread Kpcyrd via arch-commits
Date: Friday, May 7, 2021 @ 19:54:03
  Author: kpcyrd
Revision: 928664

upgpkg: zssh 1.5c-13 - use source date epoch for build date

Added:
  zssh/trunk/source_date_epoch.patch
Modified:
  zssh/trunk/PKGBUILD

-+
 PKGBUILD|9 ++---
 source_date_epoch.patch |   11 +++
 2 files changed, 17 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-05-07 19:19:18 UTC (rev 928663)
+++ PKGBUILD2021-05-07 19:54:03 UTC (rev 928664)
@@ -4,7 +4,7 @@
 
 pkgname=zssh
 pkgver=1.5c
-pkgrel=12
+pkgrel=13
 pkgdesc="SSH and Telnet client with ZMODEM file transfer capability"
 arch=("x86_64")
 license=("GPL")
@@ -12,10 +12,12 @@
 depends=("readline")
 
source=("https://downloads.sourceforge.net/project/zssh/zssh/1.5/$pkgname-$pkgver.tgz;
 'fix_use_ptmx_on_arch.patch'
-'fix_CPPsymlink.patch')
+'fix_CPPsymlink.patch'
+'source_date_epoch.patch')
 
sha512sums=('799ce3bbea5e94a800f61e6c38879746a579992396304861b7584b6bad967214b811b6bf9aecb36d9d60a15857377cb2fee80b495ad69778903fc45593efeebd'
 
'2d68216fe859d1bcf35e316cf9bf8ed105afb15e27ea00e5ca2e66e433aebf13834fb648e70b544a54a2a135fe65169c6839a67180eb66c724766f4a5ab33725'
-
'5e17325b65cd4f48bbb08d4c986ff5789a29d9657b3fb9828183ba489f231124371e37ef718d4793b52898ea1302f29ebad768866a2322f85a75ae8771ccd607')
+
'5e17325b65cd4f48bbb08d4c986ff5789a29d9657b3fb9828183ba489f231124371e37ef718d4793b52898ea1302f29ebad768866a2322f85a75ae8771ccd607'
+
'056028c3f6dc31886c9c0b20691e6ceefbf2a44b429ca68f98a73c1e0dc2e61cd183a4cca4de374a01daa86ecc7f55c477e85bd1d98a884b648de5d0180ee5b6')
 
 prepare() {
   cd $pkgname-$pkgver
@@ -22,6 +24,7 @@
 
   patch -p0 < "$srcdir"/fix_use_ptmx_on_arch.patch
   patch -p0 < "$srcdir"/fix_CPPsymlink.patch
+  patch -p0 < "$srcdir"/source_date_epoch.patch
 
   rm -r lrzsz-*
 }

Added: source_date_epoch.patch
===
--- source_date_epoch.patch (rev 0)
+++ source_date_epoch.patch 2021-05-07 19:54:03 UTC (rev 928664)
@@ -0,0 +1,11 @@
+--- Makefile.in
 Makefile.in
+@@ -125,7 +125,7 @@
+ 
+ 
+ version.h : force
+-  echo '#define ZSSH_VERSION "' `cat VERSION` ', built' `date` '"' > 
version.h
++  echo '#define ZSSH_VERSION "' `cat VERSION` ', built' `date -ud 
@$$SOURCE_DATE_EPOCH` '"' > version.h
+ 
+ fun.h : $(SRC)
+   protos -o fun.h $(SRC)


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

2021-05-07 Thread Morten Linderud via arch-commits
Date: Friday, May 7, 2021 @ 19:19:09
  Author: foxboron
Revision: 928662

upgpkg: tailscale 1.8.1-1

Modified:
  tailscale/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-07 18:48:07 UTC (rev 928661)
+++ PKGBUILD2021-05-07 19:19:09 UTC (rev 928662)
@@ -2,7 +2,7 @@
 # Contributor: David Anderson 
 
 pkgname=tailscale
-pkgver=1.8.0
+pkgver=1.8.1
 pkgrel=1
 pkgdesc="A mesh VPN that makes it easy to connect your devices, wherever they 
are."
 arch=("x86_64")
@@ -11,7 +11,7 @@
 makedepends=("git" "go")
 depends=("glibc")
 backup=("etc/default/tailscaled")
-_commit=e7899afbf606a508750a22147177b7b62313751a   #refs/tags/v1.8.0^{}
+_commit=fbfdcc56edb92066ef6dbaa1ae9d9bffa5455757   #refs/tags/v1.8.1^{}
 source=("git+https://github.com/tailscale/tailscale.git#commit=${_commit};)
 sha256sums=('SKIP')
 install="tailscale.install"


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

2021-05-07 Thread Morten Linderud via arch-commits
Date: Friday, May 7, 2021 @ 19:19:18
  Author: foxboron
Revision: 928663

archrelease: copy trunk to community-x86_64

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

---+
 PKGBUILD  |  118 ++--
 tailscale.install |   24 +-
 2 files changed, 71 insertions(+), 71 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-07 19:19:09 UTC (rev 928662)
+++ PKGBUILD2021-05-07 19:19:18 UTC (rev 928663)
@@ -1,59 +0,0 @@
-# Maintainer: Morten Linderud 
-# Contributor: David Anderson 
-
-pkgname=tailscale
-pkgver=1.8.0
-pkgrel=1
-pkgdesc="A mesh VPN that makes it easy to connect your devices, wherever they 
are."
-arch=("x86_64")
-url="https://tailscale.com;
-license=("MIT")
-makedepends=("git" "go")
-depends=("glibc")
-backup=("etc/default/tailscaled")
-_commit=e7899afbf606a508750a22147177b7b62313751a   #refs/tags/v1.8.0^{}
-source=("git+https://github.com/tailscale/tailscale.git#commit=${_commit};)
-sha256sums=('SKIP')
-install="tailscale.install"
-
-pkgver() {
-  cd "${pkgname}"
-  git describe --tags | sed 's/^[vV]//;s/-/+/g'
-}
-
-prepare() {
-cd "${pkgname}"
-go mod vendor
-}
-
-build() {
-cd "${pkgname}"
-eval "$(./version/version.sh)"
-export CGO_CPPFLAGS="${CPPFLAGS}"
-export CGO_CFLAGS="${CFLAGS}"
-export CGO_CXXFLAGS="${CXXFLAGS}"
-export CGO_LDFLAGS="${LDFLAGS}"
-export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
-GO_LDFLAGS="\
--linkmode=external \
--X tailscale.com/version.Long=${VERSION_LONG} \
--X tailscale.com/version.Short=${VERSION_SHORT} \
--X tailscale.com/version.GitCommit=${VERSION_GIT_HASH}"
-for cmd in ./cmd/tailscale ./cmd/tailscaled; do
-go build -v -tags xversion -ldflags "$GO_LDFLAGS" "$cmd"
-done
-}
-
-#TODO: Figure out why tests are failing
-# check() {
-# cd "${pkgname}"
-# go test $(go list ./... | grep -v tsdns_test)
-# }
-
-package() {
-cd "${pkgname}"
-install -Dm755 tailscale tailscaled -t "$pkgdir/usr/bin"
-install -Dm644 cmd/tailscaled/tailscaled.defaults 
"$pkgdir/etc/default/tailscaled"
-install -Dm644 cmd/tailscaled/tailscaled.service -t 
"$pkgdir/usr/lib/systemd/system"
-install -Dm644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"
-}

Copied: tailscale/repos/community-x86_64/PKGBUILD (from rev 928662, 
tailscale/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-07 19:19:18 UTC (rev 928663)
@@ -0,0 +1,59 @@
+# Maintainer: Morten Linderud 
+# Contributor: David Anderson 
+
+pkgname=tailscale
+pkgver=1.8.1
+pkgrel=1
+pkgdesc="A mesh VPN that makes it easy to connect your devices, wherever they 
are."
+arch=("x86_64")
+url="https://tailscale.com;
+license=("MIT")
+makedepends=("git" "go")
+depends=("glibc")
+backup=("etc/default/tailscaled")
+_commit=fbfdcc56edb92066ef6dbaa1ae9d9bffa5455757   #refs/tags/v1.8.1^{}
+source=("git+https://github.com/tailscale/tailscale.git#commit=${_commit};)
+sha256sums=('SKIP')
+install="tailscale.install"
+
+pkgver() {
+  cd "${pkgname}"
+  git describe --tags | sed 's/^[vV]//;s/-/+/g'
+}
+
+prepare() {
+cd "${pkgname}"
+go mod vendor
+}
+
+build() {
+cd "${pkgname}"
+eval "$(./version/version.sh)"
+export CGO_CPPFLAGS="${CPPFLAGS}"
+export CGO_CFLAGS="${CFLAGS}"
+export CGO_CXXFLAGS="${CXXFLAGS}"
+export CGO_LDFLAGS="${LDFLAGS}"
+export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
+GO_LDFLAGS="\
+-linkmode=external \
+-X tailscale.com/version.Long=${VERSION_LONG} \
+-X tailscale.com/version.Short=${VERSION_SHORT} \
+-X tailscale.com/version.GitCommit=${VERSION_GIT_HASH}"
+for cmd in ./cmd/tailscale ./cmd/tailscaled; do
+go build -v -tags xversion -ldflags "$GO_LDFLAGS" "$cmd"
+done
+}
+
+#TODO: Figure out why tests are failing
+# check() {
+# cd "${pkgname}"
+# go test $(go list ./... | grep -v tsdns_test)
+# }
+
+package() {
+cd "${pkgname}"
+install -Dm755 tailscale tailscaled -t "$pkgdir/usr/bin"
+install -Dm644 cmd/tailscaled/tailscaled.defaults 
"$pkgdir/etc/default/tailscaled"
+install -Dm644 cmd/tailscaled/tailscaled.service -t 
"$pkgdir/usr/lib/systemd/system"
+install -Dm644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"
+}

Deleted: tailscale.install
===
--- tailscale.install   2021-05-07 19:19:09 UTC (rev 928662)
+++ tailscale.install   2021-05-07 19:19:18 UTC (rev 928663)
@@ 

[arch-commits] Commit in python-networkx/repos/community-any (5 files)

2021-05-07 Thread Eli Schwartz via arch-commits
Date: Friday, May 7, 2021 @ 18:48:07
  Author: eschwartz
Revision: 928661

archrelease: copy trunk to community-any

Added:
  
python-networkx/repos/community-any/0001-Fix-StopIteration-handling-which-breaks-in-python-3..patch
(from rev 928660, 
python-networkx/trunk/0001-Fix-StopIteration-handling-which-breaks-in-python-3..patch)
  
python-networkx/repos/community-any/0001-Updated-decorator-requirement-for-4718.patch
(from rev 928660, 
python-networkx/trunk/0001-Updated-decorator-requirement-for-4718.patch)
  python-networkx/repos/community-any/PKGBUILD
(from rev 928660, python-networkx/trunk/PKGBUILD)
Deleted:
  
python-networkx/repos/community-any/0001-Fix-StopIteration-handling-which-breaks-in-python-3..patch
  python-networkx/repos/community-any/PKGBUILD

-+
 0001-Fix-StopIteration-handling-which-breaks-in-python-3..patch |  248 
+-
 0001-Updated-decorator-requirement-for-4718.patch   |   29 +
 PKGBUILD|   81 +--
 3 files changed, 198 insertions(+), 160 deletions(-)

Deleted: 0001-Fix-StopIteration-handling-which-breaks-in-python-3..patch
===
--- 0001-Fix-StopIteration-handling-which-breaks-in-python-3..patch 
2021-05-07 18:47:32 UTC (rev 928660)
+++ 0001-Fix-StopIteration-handling-which-breaks-in-python-3..patch 
2021-05-07 18:48:07 UTC (rev 928661)
@@ -1,124 +0,0 @@
-From 933d3241eb23d6857716810bedfaf56123111a6a Mon Sep 17 00:00:00 2001
-From: Dan Schult 
-Date: Sat, 7 Jul 2018 14:07:58 -0400
-Subject: [PATCH] Fix StopIteration handling which breaks in python 3.7
-
-See #3046

-
-rebase against stable release
-
- .../algorithms/connectivity/edge_augmentation.py | 12 +---
- networkx/algorithms/connectivity/edge_kcomponents.py |  2 +-
- networkx/algorithms/traversal/edgedfs.py |  2 +-
- networkx/generators/classic.py   |  2 ++
- networkx/readwrite/sparse6.py| 10 --
- 5 files changed, 21 insertions(+), 7 deletions(-)
-
-diff --git a/networkx/algorithms/connectivity/edge_augmentation.py 
b/networkx/algorithms/connectivity/edge_augmentation.py
-index cd8c748f..21512d7c 100644
 a/networkx/algorithms/connectivity/edge_augmentation.py
-+++ b/networkx/algorithms/connectivity/edge_augmentation.py
-@@ -813,7 +813,10 @@ def unconstrained_bridge_augmentation(G):
- A2 = [tuple(leafs)]
- else:
- # Choose an arbitrary non-leaf root
--root = next(n for n, d in T.degree() if d > 1)
-+try:
-+root = next(n for n, d in T.degree() if d > 1)
-+except StopIteration:  # no nodes found with degree > 1
-+return
- # order the leaves of C by (induced directed) preorder
- v2 = [n for n in nx.dfs_preorder_nodes(T, root) if T.degree(n) == 1]
- # connecting first half of the leafs in pre-order to the second
-@@ -954,7 +957,10 @@ def weighted_bridge_augmentation(G, avail, weight=None):
- # nx.least_common_ancestor on the reversed Tree.
- 
- # Pick an arbitrary leaf from C as the root
--root = next(n for n in C.nodes() if C.degree(n) == 1)
-+try:
-+root = next(n for n, d in C.degree() if d == 1)
-+except StopIteration:  # no nodes found with degree == 1
-+return
- # Root C into a tree TR by directing all edges away from the root
- # Note in their paper T directs edges towards the root
- TR = nx.dfs_tree(C, root)
-@@ -1230,7 +1236,7 @@ def greedy_k_edge_augmentation(G, k, avail=None, 
weight=None, seed=None):
- 
- done = is_k_edge_connected(G, k)
- if done:
--raise StopIteration()
-+return
- if avail is None:
- # all edges are available
- avail_uv = list(complement_edges(G))
-diff --git a/networkx/algorithms/connectivity/edge_kcomponents.py 
b/networkx/algorithms/connectivity/edge_kcomponents.py
-index 37bf61dc..f9b4364c 100644
 a/networkx/algorithms/connectivity/edge_kcomponents.py
-+++ b/networkx/algorithms/connectivity/edge_kcomponents.py
-@@ -573,7 +573,7 @@ def general_k_edge_subgraphs(G, k):
- if G.number_of_nodes() < k:
- for node in G.nodes():
- yield G.subgraph([node]).copy()
--raise StopIteration()
-+return
- 
- # Intermediate results
- R0 = {G.subgraph(cc).copy() for cc in find_ccs(G)}
-diff --git a/networkx/algorithms/traversal/edgedfs.py 
b/networkx/algorithms/traversal/edgedfs.py
-index 5434057d..b9d442b6 100644
 a/networkx/algorithms/traversal/edgedfs.py
-+++ b/networkx/algorithms/traversal/edgedfs.py
-@@ -152,7 +152,7 @@ def edge_dfs(G, source=None, orientation='original'):
- """
- nodes = list(G.nbunch_iter(source))
- if not nodes:
--raise StopIteration
-+return
- 
- kwds = {'data': False}
- if G.is_multigraph():
-diff --git 

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

2021-05-07 Thread Eli Schwartz via arch-commits
Date: Friday, May 7, 2021 @ 18:47:32
  Author: eschwartz
Revision: 928660

upgpkg: python-networkx 2.5.1-2: make compatible with latest packaged 
python-decorator

Added:
  python-networkx/trunk/0001-Updated-decorator-requirement-for-4718.patch
Modified:
  python-networkx/trunk/PKGBUILD

---+
 0001-Updated-decorator-requirement-for-4718.patch |   29 
 PKGBUILD  |   15 --
 2 files changed, 41 insertions(+), 3 deletions(-)

Added: 0001-Updated-decorator-requirement-for-4718.patch
===
--- 0001-Updated-decorator-requirement-for-4718.patch   
(rev 0)
+++ 0001-Updated-decorator-requirement-for-4718.patch   2021-05-07 18:47:32 UTC 
(rev 928660)
@@ -0,0 +1,29 @@
+From 2a472c4fab230394842f252abd033d9d3c69f0c0 Mon Sep 17 00:00:00 2001
+From: Eli Schwartz 
+Date: Fri, 7 May 2021 14:39:53 -0400
+Subject: [PATCH] Updated decorator requirement for #4718
+
+incompatible with decorator 5.0.0 through 5.0.6, fix pinned version
+by requiring >=5.0.7 (which we package) rather than 4.* which we don't
+
+See https://github.com/networkx/networkx/pull/4773
+---
+ setup.py | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/setup.py b/setup.py
+index eb1521d7..3cad13f3 100644
+--- a/setup.py
 b/setup.py
+@@ -124,7 +124,7 @@ package_data = {
+ "networkx.utils": ["tests/*.py"],
+ }
+ 
+-install_requires = ["decorator>=4.3,<5"]
++install_requires = ["decorator>=5.0.7"]
+ extras_require = {
+ "all": [
+ "numpy",
+-- 
+2.31.1
+

Modified: PKGBUILD
===
--- PKGBUILD2021-05-07 18:27:28 UTC (rev 928659)
+++ PKGBUILD2021-05-07 18:47:32 UTC (rev 928660)
@@ -3,7 +3,7 @@
 
 pkgname=python-networkx
 pkgver=2.5.1
-pkgrel=1
+pkgrel=2
 pkgdesc='Python package for the creation, manipulation, and study of the 
structure, dynamics, and functions of complex networks.'
 arch=('any')
 license=('BSD')
@@ -15,9 +15,18 @@
 'python-yaml: Required for YAML format reading and writing.')
 makedepends=('python-setuptools')
 checkdepends=('python-pytest-runner')
-source=("https://github.com/networkx/networkx/archive/networkx-$pkgver.tar.gz;)
-sha512sums=('0eb43aa9cedacb3e6dfa44703d300591ce5214e983d01e526f34105e0a565d49ef424c4c4232340b01b3e396a09ed44aee658bab0aa613edcba4d7b9b1aebe6a')
+source=("https://github.com/networkx/networkx/archive/networkx-$pkgver.tar.gz;
+"0001-Updated-decorator-requirement-for-4718.patch")
+sha512sums=('0eb43aa9cedacb3e6dfa44703d300591ce5214e983d01e526f34105e0a565d49ef424c4c4232340b01b3e396a09ed44aee658bab0aa613edcba4d7b9b1aebe6a'
+
'007e3dceb06f20ec7e2e492839e5d21d51966c6b6ae65d92140caebe97745b386ceebc8db6bdd4a8e27f807a7d158f42ddbaaeb2320e533567c19910ae1dd6e4')
 
+prepare() {
+  cd networkx-networkx-$pkgver
+
+  # https://github.com/networkx/networkx/pull/4773
+  patch -p1 -i ../0001-Updated-decorator-requirement-for-4718.patch
+}
+
 build() {
   cd networkx-networkx-$pkgver
   python setup.py build


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

2021-05-07 Thread Jelle van der Waa via arch-commits
Date: Friday, May 7, 2021 @ 18:30:45
  Author: jelle
Revision: 414580

Resign package

Barthalion left as Developer.

Modified:
  flatpak-builder/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-07 18:05:30 UTC (rev 414579)
+++ PKGBUILD2021-05-07 18:30:45 UTC (rev 414580)
@@ -2,7 +2,7 @@
 
 pkgname=flatpak-builder
 pkgver=1.0.11
-pkgrel=1
+pkgrel=2
 pkgdesc="Tool to build flatpaks from source"
 url="https://flatpak.org;
 arch=(x86_64)


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

2021-05-07 Thread Jelle van der Waa via arch-commits
Date: Friday, May 7, 2021 @ 18:30:50
  Author: jelle
Revision: 414581

archrelease: copy trunk to extra-x86_64

Added:
  flatpak-builder/repos/extra-x86_64/PKGBUILD
(from rev 414580, flatpak-builder/trunk/PKGBUILD)
Deleted:
  flatpak-builder/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-07 18:30:45 UTC (rev 414580)
+++ PKGBUILD2021-05-07 18:30:50 UTC (rev 414581)
@@ -1,64 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=flatpak-builder
-pkgver=1.0.11
-pkgrel=1
-pkgdesc="Tool to build flatpaks from source"
-url="https://flatpak.org;
-arch=(x86_64)
-license=(LGPL2.1)
-depends=(flatpak binutils elfutils unzip tar git bzr patch rpmextract cpio 
appstream-glib)
-makedepends=(intltool gobject-introspection git docbook-xsl xmlto libdwarf)
-checkdepends=(python2 valgrind)
-replaces=('flatpak<0.9.10')
-_commit=c270877985b33ffae189ffd231c9501218db03cc  # tags/1.0.11^0
-source=("git+https://github.com/flatpak/flatpak-builder#commit=$_commit;
-"git+https://gitlab.gnome.org/GNOME/libglnx.git;)
-sha256sums=('SKIP'
-'SKIP')
-
-prepare() {
-  cd $pkgname
-
-  git submodule init
-  git config --local submodule.libglnx.url "$srcdir/libglnx"
-  git submodule update
-
-  # https://github.com/flatpak/flatpak/issues/267
-  sed -i '/locale\/C\./d' tests/make-test-runtime.sh
-
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-build() {
-  cd $pkgname
-
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---localstatedir=/var \
---sbindir=/usr/bin \
---libexecdir=/usr/lib \
---disable-static \
---with-dwarf-header=/usr/include/libdwarf
-
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-check() {
-  cd $pkgname
-  # Xattr tests fail on tmpfs
-  make -k check || :
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-}

Copied: flatpak-builder/repos/extra-x86_64/PKGBUILD (from rev 414580, 
flatpak-builder/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-07 18:30:50 UTC (rev 414581)
@@ -0,0 +1,64 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=flatpak-builder
+pkgver=1.0.11
+pkgrel=2
+pkgdesc="Tool to build flatpaks from source"
+url="https://flatpak.org;
+arch=(x86_64)
+license=(LGPL2.1)
+depends=(flatpak binutils elfutils unzip tar git bzr patch rpmextract cpio 
appstream-glib)
+makedepends=(intltool gobject-introspection git docbook-xsl xmlto libdwarf)
+checkdepends=(python2 valgrind)
+replaces=('flatpak<0.9.10')
+_commit=c270877985b33ffae189ffd231c9501218db03cc  # tags/1.0.11^0
+source=("git+https://github.com/flatpak/flatpak-builder#commit=$_commit;
+"git+https://gitlab.gnome.org/GNOME/libglnx.git;)
+sha256sums=('SKIP'
+'SKIP')
+
+prepare() {
+  cd $pkgname
+
+  git submodule init
+  git config --local submodule.libglnx.url "$srcdir/libglnx"
+  git submodule update
+
+  # https://github.com/flatpak/flatpak/issues/267
+  sed -i '/locale\/C\./d' tests/make-test-runtime.sh
+
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+build() {
+  cd $pkgname
+
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--sbindir=/usr/bin \
+--libexecdir=/usr/lib \
+--disable-static \
+--with-dwarf-header=/usr/include/libdwarf
+
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+check() {
+  cd $pkgname
+  # Xattr tests fail on tmpfs
+  make -k check || :
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}


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

2021-05-07 Thread Jelle van der Waa via arch-commits
Date: Friday, May 7, 2021 @ 18:27:28
  Author: jelle
Revision: 928659

archrelease: copy trunk to community-x86_64

Added:
  pcurses/repos/community-x86_64/PKGBUILD
(from rev 928658, pcurses/trunk/PKGBUILD)
Deleted:
  pcurses/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-07 18:27:23 UTC (rev 928658)
+++ PKGBUILD2021-05-07 18:27:28 UTC (rev 928659)
@@ -1,29 +0,0 @@
-# Maintainer: schuay 
-
-pkgname=pcurses
-pkgver=5
-pkgrel=2
-pkgdesc='A curses package management tool using libalpm'
-arch=('x86_64')
-url="https://github.com/schuay/$pkgname;
-license=('GPL')
-depends=('ncurses' 'pacman')
-makedepends=('boost' 'cmake' 'git')
-source=("git://github.com/schuay/pcurses.git#tag=pcurses-$pkgver")
-md5sums=('SKIP')
-
-build() {
-  rm -rf "$srcdir/$pkgname-build"
-  mkdir "$srcdir/$pkgname-build"
-  cd "$srcdir/$pkgname-build"
-
-  cmake -DCMAKE_INSTALL_PREFIX=/usr "$srcdir/$pkgname"
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-build"
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: pcurses/repos/community-x86_64/PKGBUILD (from rev 928658, 
pcurses/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-07 18:27:28 UTC (rev 928659)
@@ -0,0 +1,29 @@
+# Maintainer: schuay 
+
+pkgname=pcurses
+pkgver=5
+pkgrel=3
+pkgdesc='A curses package management tool using libalpm'
+arch=('x86_64')
+url="https://github.com/schuay/$pkgname;
+license=('GPL')
+depends=('ncurses' 'pacman')
+makedepends=('boost' 'cmake' 'git')
+source=("git://github.com/schuay/pcurses.git#tag=pcurses-$pkgver")
+md5sums=('SKIP')
+
+build() {
+  rm -rf "$srcdir/$pkgname-build"
+  mkdir "$srcdir/$pkgname-build"
+  cd "$srcdir/$pkgname-build"
+
+  cmake -DCMAKE_INSTALL_PREFIX=/usr "$srcdir/$pkgname"
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-build"
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:


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

2021-05-07 Thread Jelle van der Waa via arch-commits
Date: Friday, May 7, 2021 @ 18:27:23
  Author: jelle
Revision: 928658

Resign package

Barthalion resigned as Developer

Modified:
  pcurses/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-07 18:22:39 UTC (rev 928657)
+++ PKGBUILD2021-05-07 18:27:23 UTC (rev 928658)
@@ -2,7 +2,7 @@
 
 pkgname=pcurses
 pkgver=5
-pkgrel=2
+pkgrel=3
 pkgdesc='A curses package management tool using libalpm'
 arch=('x86_64')
 url="https://github.com/schuay/$pkgname;


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

2021-05-07 Thread Jelle van der Waa via arch-commits
Date: Friday, May 7, 2021 @ 18:22:34
  Author: jelle
Revision: 928656

Resign repose

Barthalion resigned as developer

Modified:
  repose/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-07 18:13:32 UTC (rev 928655)
+++ PKGBUILD2021-05-07 18:22:34 UTC (rev 928656)
@@ -3,7 +3,7 @@
 
 pkgname=repose
 pkgver=7.1
-pkgrel=4
+pkgrel=5
 
 pkgdesc="Arch Linux repo building tool"
 url="https://github.com/vodik/repose;


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

2021-05-07 Thread Jelle van der Waa via arch-commits
Date: Friday, May 7, 2021 @ 18:22:39
  Author: jelle
Revision: 928657

archrelease: copy trunk to community-x86_64

Added:
  repose/repos/community-x86_64/PKGBUILD
(from rev 928656, repose/trunk/PKGBUILD)
Deleted:
  repose/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-07 18:22:34 UTC (rev 928656)
+++ PKGBUILD2021-05-07 18:22:39 UTC (rev 928657)
@@ -1,33 +0,0 @@
-# Maintainer: Johannes Löthberg 
-# Contributor: Simon Gomizelj 
-
-pkgname=repose
-pkgver=7.1
-pkgrel=4
-
-pkgdesc="Arch Linux repo building tool"
-url="https://github.com/vodik/repose;
-arch=('x86_64')
-license=('GPL')
-
-depends=('pacman' 'libarchive' 'gnupg')
-makedepends=('ragel')
-checkdepends=('python-pytest' 'python-cffi' 'python-pytest-xdist')
-
-source=("repose-$pkgver.tar.gz::https://github.com/vodik/repose/archive/$pkgver.tar.gz;)
-
-sha1sums=('0541bc62f19ce51bb048059f79d926bf59ddce5f')
-
-build() {
-  make -C repose-$pkgver
-}
-
-check() {
-  make -C repose-$pkgver tests
-}
-
-package() {
-  make -C repose-$pkgver DESTDIR="$pkgdir" install
-}
-
-# vim: ft=PKGBUILD et

Copied: repose/repos/community-x86_64/PKGBUILD (from rev 928656, 
repose/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-07 18:22:39 UTC (rev 928657)
@@ -0,0 +1,33 @@
+# Maintainer: Johannes Löthberg 
+# Contributor: Simon Gomizelj 
+
+pkgname=repose
+pkgver=7.1
+pkgrel=5
+
+pkgdesc="Arch Linux repo building tool"
+url="https://github.com/vodik/repose;
+arch=('x86_64')
+license=('GPL')
+
+depends=('pacman' 'libarchive' 'gnupg')
+makedepends=('ragel')
+checkdepends=('python-pytest' 'python-cffi' 'python-pytest-xdist')
+
+source=("repose-$pkgver.tar.gz::https://github.com/vodik/repose/archive/$pkgver.tar.gz;)
+
+sha1sums=('0541bc62f19ce51bb048059f79d926bf59ddce5f')
+
+build() {
+  make -C repose-$pkgver
+}
+
+check() {
+  make -C repose-$pkgver tests
+}
+
+package() {
+  make -C repose-$pkgver DESTDIR="$pkgdir" install
+}
+
+# vim: ft=PKGBUILD et


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

2021-05-07 Thread Jelle van der Waa via arch-commits
Date: Friday, May 7, 2021 @ 18:13:32
  Author: jelle
Revision: 928655

archrelease: copy trunk to community-any

Added:
  mythes-pl/repos/community-any/PKGBUILD
(from rev 928654, mythes-pl/trunk/PKGBUILD)
Deleted:
  mythes-pl/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-07 18:13:27 UTC (rev 928654)
+++ PKGBUILD2021-05-07 18:13:32 UTC (rev 928655)
@@ -1,27 +0,0 @@
-# Maintainer:  Bartłomiej Piotrowski 
-# Contributor: Maciej Sitarz 
-
-pkgname=mythes-pl
-epoch=1
-pkgver=0.8.67
-pkgrel=1
-pkgdesc='Polish thesaurus'
-arch=('any')
-url='https://dobryslownik.pl/pobierz/'
-license=('LGPL')
-optdepends=('libmythes: offers thesaurus library functions')
-source=(https://sources.archlinux.org/other/community/mythes-pl/pl-dict-latest-0.8.67.oxt)
-sha256sums=('1b3947ebecea662431f9b620f63a4fdaa3fc647677384fe5f5e69c11b95ef31c')
-
-package() {
-  install -dm755 "$pkgdir"/usr/share/mythes
-  install -m644 th_pl_PL_v2.* "$pkgdir"/usr/share/mythes
-
-  # symlinks
-  install -dm755 "$pkgdir"/usr/share/myspell/dicts
-  pushd "$pkgdir"/usr/share/myspell/dicts
-  for file in "$pkgdir"/usr/share/mythes/*; do
-ln -sv /usr/share/mythes/"$(basename $file)" .
-  done
-  popd
-}

Copied: mythes-pl/repos/community-any/PKGBUILD (from rev 928654, 
mythes-pl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-07 18:13:32 UTC (rev 928655)
@@ -0,0 +1,27 @@
+# Maintainer:  Bartłomiej Piotrowski 
+# Contributor: Maciej Sitarz 
+
+pkgname=mythes-pl
+epoch=1
+pkgver=0.8.67
+pkgrel=2
+pkgdesc='Polish thesaurus'
+arch=('any')
+url='https://dobryslownik.pl/pobierz/'
+license=('LGPL')
+optdepends=('libmythes: offers thesaurus library functions')
+source=(https://sources.archlinux.org/other/community/mythes-pl/pl-dict-latest-0.8.67.oxt)
+sha256sums=('1b3947ebecea662431f9b620f63a4fdaa3fc647677384fe5f5e69c11b95ef31c')
+
+package() {
+  install -dm755 "$pkgdir"/usr/share/mythes
+  install -m644 th_pl_PL_v2.* "$pkgdir"/usr/share/mythes
+
+  # symlinks
+  install -dm755 "$pkgdir"/usr/share/myspell/dicts
+  pushd "$pkgdir"/usr/share/myspell/dicts
+  for file in "$pkgdir"/usr/share/mythes/*; do
+ln -sv /usr/share/mythes/"$(basename $file)" .
+  done
+  popd
+}


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

2021-05-07 Thread Jelle van der Waa via arch-commits
Date: Friday, May 7, 2021 @ 18:13:27
  Author: jelle
Revision: 928654

Resign package

Barthalion resigned as developer

Modified:
  mythes-pl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-07 18:02:51 UTC (rev 928653)
+++ PKGBUILD2021-05-07 18:13:27 UTC (rev 928654)
@@ -4,7 +4,7 @@
 pkgname=mythes-pl
 epoch=1
 pkgver=0.8.67
-pkgrel=1
+pkgrel=2
 pkgdesc='Polish thesaurus'
 arch=('any')
 url='https://dobryslownik.pl/pobierz/'


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

2021-05-07 Thread Jelle van der Waa via arch-commits
Date: Friday, May 7, 2021 @ 18:05:30
  Author: jelle
Revision: 414579

archrelease: copy trunk to extra-any

Added:
  django/repos/extra-any/PKGBUILD
(from rev 414578, django/trunk/PKGBUILD)
Deleted:
  django/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-07 18:05:15 UTC (rev 414578)
+++ PKGBUILD2021-05-07 18:05:30 UTC (rev 414579)
@@ -1,50 +0,0 @@
-# Maintainer: Angel Velasquez 
-# Maintainer: Dan McGee 
-# Contributor: Shahar Weiss 
-
-pkgbase=django
-pkgname=('python-django')
-pkgver=3.2.1
-pkgrel=1
-pkgdesc="A high-level Python Web framework that encourages rapid development 
and clean design"
-arch=('any')
-license=('BSD')
-url="http://www.djangoproject.com/;
-checkdepends=('python-pytest' 'python-tblib')
-makedepends=('python' 'python-setuptools')
-depends=('python' 'python-setuptools' 'python-pytz' 'python-sqlparse' 
'python-asgiref')
-# TODO: package and add python-pymemcache 
https://docs.djangoproject.com/en/dev/topics/cache/
-optdepends=('python-psycopg2: for PostgreSQL backend'
-'python-argon2_cffi: for Argon2 password hashing support')
-source=("Django-$pkgver.tar.gz::https://www.djangoproject.com/download/$pkgver/tarball/;)
-sha512sums=('5f3f80047cdcb6c9a07ca0dc9d6d83d190c8c0215311f39e6e441384659c92e4fa42bf4677d297a4ba8520a0bfbd78c4b2ca13cf467c1e1220c0c6a3131ba444')
-
-build() {
-  cd "$srcdir/Django-$pkgver"
-  python setup.py build
-}
-
-package_python-django() {
-  cd "$srcdir/Django-$pkgver"
-
-  # fix reproducibility of .pyc files
-  export PYTHONHASHSEED=0
-
-  python setup.py install --root="$pkgdir" --optimize=1
-
-  ln -s django-admin.py "$pkgdir"/usr/bin/django-admin3.py
-  ln -s django-admin "$pkgdir"/usr/bin/django-admin3
-  install -Dm644 extras/django_bash_completion \
-"$pkgdir"/usr/share/bash-completion/completions/django-admin.py
-  ln -s django-admin.py \
-"$pkgdir"/usr/share/bash-completion/completions/django-admin
-  ln -s django-admin.py \
-"$pkgdir"/usr/share/bash-completion/completions/manage.py
-
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-check() {
-  cd "$srcdir/Django-$pkgver"
-  PYTHONPATH="$PWD" python tests/runtests.py || echo 'tests failed'
-}

Copied: django/repos/extra-any/PKGBUILD (from rev 414578, django/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-07 18:05:30 UTC (rev 414579)
@@ -0,0 +1,50 @@
+# Maintainer: Angel Velasquez 
+# Maintainer: Dan McGee 
+# Contributor: Shahar Weiss 
+
+pkgbase=django
+pkgname=('python-django')
+pkgver=3.2.2
+pkgrel=1
+pkgdesc="A high-level Python Web framework that encourages rapid development 
and clean design"
+arch=('any')
+license=('BSD')
+url="http://www.djangoproject.com/;
+checkdepends=('python-pytest' 'python-tblib')
+makedepends=('python' 'python-setuptools')
+depends=('python' 'python-setuptools' 'python-pytz' 'python-sqlparse' 
'python-asgiref')
+# TODO: package and add python-pymemcache 
https://docs.djangoproject.com/en/dev/topics/cache/
+optdepends=('python-psycopg2: for PostgreSQL backend'
+'python-argon2_cffi: for Argon2 password hashing support')
+source=("Django-$pkgver.tar.gz::https://www.djangoproject.com/download/$pkgver/tarball/;)
+sha512sums=('28d1d56cdf883f8fb5e438124be53dbefaa0045d1acf0b4b8b455a482422e2b88ffc5a3c8be2ee1b7d3c39fe29cfa854b44b438c3d43323483bd35e0d05f9e49')
+
+build() {
+  cd "$srcdir/Django-$pkgver"
+  python setup.py build
+}
+
+package_python-django() {
+  cd "$srcdir/Django-$pkgver"
+
+  # fix reproducibility of .pyc files
+  export PYTHONHASHSEED=0
+
+  python setup.py install --root="$pkgdir" --optimize=1
+
+  ln -s django-admin.py "$pkgdir"/usr/bin/django-admin3.py
+  ln -s django-admin "$pkgdir"/usr/bin/django-admin3
+  install -Dm644 extras/django_bash_completion \
+"$pkgdir"/usr/share/bash-completion/completions/django-admin.py
+  ln -s django-admin.py \
+"$pkgdir"/usr/share/bash-completion/completions/django-admin
+  ln -s django-admin.py \
+"$pkgdir"/usr/share/bash-completion/completions/manage.py
+
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+check() {
+  cd "$srcdir/Django-$pkgver"
+  PYTHONPATH="$PWD" python tests/runtests.py || echo 'tests failed'
+}


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

2021-05-07 Thread Jelle van der Waa via arch-commits
Date: Friday, May 7, 2021 @ 18:05:15
  Author: jelle
Revision: 414578

upgpkg: django 3.2.2-1

Modified:
  django/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-07 17:02:04 UTC (rev 414577)
+++ PKGBUILD2021-05-07 18:05:15 UTC (rev 414578)
@@ -4,7 +4,7 @@
 
 pkgbase=django
 pkgname=('python-django')
-pkgver=3.2.1
+pkgver=3.2.2
 pkgrel=1
 pkgdesc="A high-level Python Web framework that encourages rapid development 
and clean design"
 arch=('any')
@@ -17,7 +17,7 @@
 optdepends=('python-psycopg2: for PostgreSQL backend'
 'python-argon2_cffi: for Argon2 password hashing support')
 
source=("Django-$pkgver.tar.gz::https://www.djangoproject.com/download/$pkgver/tarball/;)
-sha512sums=('5f3f80047cdcb6c9a07ca0dc9d6d83d190c8c0215311f39e6e441384659c92e4fa42bf4677d297a4ba8520a0bfbd78c4b2ca13cf467c1e1220c0c6a3131ba444')
+sha512sums=('28d1d56cdf883f8fb5e438124be53dbefaa0045d1acf0b4b8b455a482422e2b88ffc5a3c8be2ee1b7d3c39fe29cfa854b44b438c3d43323483bd35e0d05f9e49')
 
 build() {
   cd "$srcdir/Django-$pkgver"


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

2021-05-07 Thread Jonas Witschel via arch-commits
Date: Friday, May 7, 2021 @ 18:02:51
  Author: diabonas
Revision: 928653

archrelease: copy trunk to community-any

Added:
  python-matrix-nio/repos/community-any/PKGBUILD
(from rev 928652, python-matrix-nio/trunk/PKGBUILD)
Deleted:
  python-matrix-nio/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-07 18:02:44 UTC (rev 928652)
+++ PKGBUILD2021-05-07 18:02:51 UTC (rev 928653)
@@ -1,44 +0,0 @@
-# Maintainer: Jonas Witschel 
-pkgname=python-matrix-nio
-pkgver=0.18.0
-_tag=35d2c5acbcd350ac3555b836097ad1ea9eccb545 # git rev-parse "$pkgver"
-pkgrel=1
-pkgdesc='Python Matrix client library, designed according to sans I/O 
principles'
-arch=('any')
-url='https://github.com/poljar/matrix-nio'
-license=('ISC')
-depends=('python' 'python-aiofiles' 'python-aiohttp' 'python-aiohttp-socks' 
'python-atomicwrites' 
- 'python-cachetools' 'python-future' 'python-h11' 'python-h2' 
'python-jsonschema' 'python-logbook' 
- 'python-olm' 'python-peewee' 'python-pycryptodome' 
'python-unpaddedbase64')
-makedepends=('git' 'python-dephell' 'python-setuptools')
-checkdepends=('python-aioresponses' 'python-faker' 'python-hpack' 
'python-hyperframe' 'python-hypothesis'
-  'python-pytest' 'python-pytest-aiohttp' 
'python-pytest-benchmark')
-source=("git+$url.git?signed#tag=$_tag")
-sha512sums=('SKIP')
-validpgpkeys=('689A3B5BC6560AB4C99A2A0581314DA807EF4E22') # Damir Jelić 
(poljar) 
-
-pkgver() {
-   cd "${pkgname#python-}"
-   git describe | sed 's/\([^-]*-\)g/r\1/;s/-/./g'
-}
-
-prepare() {
-   cd "${pkgname#python-}"
-   dephell deps convert --from pyproject.toml --to setup.py
-}
-
-build() {
-   cd "${pkgname#python-}"
-   python setup.py build
-}
-
-check() {
-   cd "${pkgname#python-}"
-   python -m pytest
-}
-
-package() {
-   cd "${pkgname#python-}"
-   python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-   install -Dm644 LICENSE.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: python-matrix-nio/repos/community-any/PKGBUILD (from rev 928652, 
python-matrix-nio/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-07 18:02:51 UTC (rev 928653)
@@ -0,0 +1,44 @@
+# Maintainer: Jonas Witschel 
+pkgname=python-matrix-nio
+pkgver=0.18.1
+_tag=e077b955a11e2e81cfd16fa29d222cbaacba11b1 # git rev-parse "$pkgver"
+pkgrel=1
+pkgdesc='Python Matrix client library, designed according to sans I/O 
principles'
+arch=('any')
+url='https://github.com/poljar/matrix-nio'
+license=('ISC')
+depends=('python' 'python-aiofiles' 'python-aiohttp' 'python-aiohttp-socks' 
'python-atomicwrites' 
+ 'python-cachetools' 'python-future' 'python-h11' 'python-h2' 
'python-jsonschema' 'python-logbook' 
+ 'python-olm' 'python-peewee' 'python-pycryptodome' 
'python-unpaddedbase64')
+makedepends=('git' 'python-dephell' 'python-setuptools')
+checkdepends=('python-aioresponses' 'python-faker' 'python-hpack' 
'python-hyperframe' 'python-hypothesis'
+  'python-pytest' 'python-pytest-aiohttp' 
'python-pytest-benchmark')
+source=("git+$url.git?signed#tag=$_tag")
+sha512sums=('SKIP')
+validpgpkeys=('689A3B5BC6560AB4C99A2A0581314DA807EF4E22') # Damir Jelić 
(poljar) 
+
+pkgver() {
+   cd "${pkgname#python-}"
+   git describe | sed 's/\([^-]*-\)g/r\1/;s/-/./g'
+}
+
+prepare() {
+   cd "${pkgname#python-}"
+   dephell deps convert --from pyproject.toml --to setup.py
+}
+
+build() {
+   cd "${pkgname#python-}"
+   python setup.py build
+}
+
+check() {
+   cd "${pkgname#python-}"
+   python -m pytest
+}
+
+package() {
+   cd "${pkgname#python-}"
+   python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+   install -Dm644 LICENSE.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2021-05-07 Thread Jonas Witschel via arch-commits
Date: Friday, May 7, 2021 @ 18:02:44
  Author: diabonas
Revision: 928652

upgpkg: python-matrix-nio 0.18.1-1: upstream release

Modified:
  python-matrix-nio/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-07 17:54:20 UTC (rev 928651)
+++ PKGBUILD2021-05-07 18:02:44 UTC (rev 928652)
@@ -1,7 +1,7 @@
 # Maintainer: Jonas Witschel 
 pkgname=python-matrix-nio
-pkgver=0.18.0
-_tag=35d2c5acbcd350ac3555b836097ad1ea9eccb545 # git rev-parse "$pkgver"
+pkgver=0.18.1
+_tag=e077b955a11e2e81cfd16fa29d222cbaacba11b1 # git rev-parse "$pkgver"
 pkgrel=1
 pkgdesc='Python Matrix client library, designed according to sans I/O 
principles'
 arch=('any')


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

2021-05-07 Thread Kpcyrd via arch-commits
Date: Friday, May 7, 2021 @ 17:54:20
  Author: kpcyrd
Revision: 928651

archrelease: copy trunk to community-x86_64

Added:
  vultr-cli/repos/community-x86_64/
  vultr-cli/repos/community-x86_64/PKGBUILD
(from rev 928650, vultr-cli/trunk/PKGBUILD)

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

Copied: vultr-cli/repos/community-x86_64/PKGBUILD (from rev 928650, 
vultr-cli/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2021-05-07 17:54:20 UTC (rev 928651)
@@ -0,0 +1,31 @@
+# Maintainer: kpcyrd 
+
+pkgname=vultr-cli
+pkgver=2.5.0
+pkgrel=2
+pkgdesc='Official command line tool for Vultr services'
+url='https://github.com/kpcyrd/sn0int'
+arch=('x86_64')
+license=('Apache')
+makedepends=('go')
+source=(https://github.com/vultr/${pkgname}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('3c4ed4a6a25168fe30436f8e651121d2011b6646c7e6cbec1baa1e6244df0dd2226fdc67206b73563a5ec3a2d7aa5360a9af67854940dad70b6a7161a5b7cfe3')
+b2sums=('4ce1b15becc56599cad87159f667c218ba85f9d7e43295047cf303392038a4c3ad8aa7b8c8554dfbce2e7f4933385f389c8744d1ba444a94387023c6f376d716')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  go build \
+-trimpath \
+-buildmode=pie \
+-mod=readonly \
+-modcacherw \
+-ldflags "-linkmode external -extldflags \"${LDFLAGS}\"" \
+.
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  install -Dm 755 vultr-cli -t "${pkgdir}/usr/bin"
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in (4 files)

2021-05-07 Thread Kpcyrd via arch-commits
Date: Friday, May 7, 2021 @ 17:50:52
  Author: kpcyrd
Revision: 928650

addpkg: vultr-cli 2.5.0-2

Added:
  vultr-cli/
  vultr-cli/repos/
  vultr-cli/trunk/
  vultr-cli/trunk/PKGBUILD

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

Added: vultr-cli/trunk/PKGBUILD
===
--- vultr-cli/trunk/PKGBUILD(rev 0)
+++ vultr-cli/trunk/PKGBUILD2021-05-07 17:50:52 UTC (rev 928650)
@@ -0,0 +1,31 @@
+# Maintainer: kpcyrd 
+
+pkgname=vultr-cli
+pkgver=2.5.0
+pkgrel=2
+pkgdesc='Official command line tool for Vultr services'
+url='https://github.com/kpcyrd/sn0int'
+arch=('x86_64')
+license=('Apache')
+makedepends=('go')
+source=(https://github.com/vultr/${pkgname}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('3c4ed4a6a25168fe30436f8e651121d2011b6646c7e6cbec1baa1e6244df0dd2226fdc67206b73563a5ec3a2d7aa5360a9af67854940dad70b6a7161a5b7cfe3')
+b2sums=('4ce1b15becc56599cad87159f667c218ba85f9d7e43295047cf303392038a4c3ad8aa7b8c8554dfbce2e7f4933385f389c8744d1ba444a94387023c6f376d716')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  go build \
+-trimpath \
+-buildmode=pie \
+-mod=readonly \
+-modcacherw \
+-ldflags "-linkmode external -extldflags \"${LDFLAGS}\"" \
+.
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  install -Dm 755 vultr-cli -t "${pkgdir}/usr/bin"
+}
+
+# vim: ts=2 sw=2 et:


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

2021-05-07 Thread Jonas Witschel via arch-commits
Date: Friday, May 7, 2021 @ 17:26:30
  Author: diabonas
Revision: 928649

archrelease: copy trunk to community-x86_64

Added:
  jose/repos/community-x86_64/PKGBUILD
(from rev 928648, jose/trunk/PKGBUILD)
Deleted:
  jose/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-07 17:26:23 UTC (rev 928648)
+++ PKGBUILD2021-05-07 17:26:30 UTC (rev 928649)
@@ -1,27 +0,0 @@
-# Maintainer: Jonas Witschel 
-pkgname=jose
-pkgver=10
-pkgrel=3
-pkgdesc='C-language implementation of Javascript Object Signing and Encryption'
-arch=('x86_64')
-url='https://github.com/latchset/jose'
-license=('APACHE')
-depends=('jansson' 'openssl' 'zlib')
-source=("$url/releases/download/v$pkgver/$pkgname-$pkgver.tar.bz2")
-sha512sums=('596f71bf7f3ab65164556d8353c07a09283e80ad06f8cbb7b1a9609fe3c95888c94c032ae8d719ed3f3b361cb87188f4683728e649d454056841b8ca47828b9d')
-
-build() {
-   cd "$pkgname-$pkgver"
-   ./configure --prefix=/usr
-   make
-}
-
-check() {
-   cd "$pkgname-$pkgver"
-   make check
-}
-
-package() {
-   cd "$pkgname-$pkgver"
-   make DESTDIR="$pkgdir" install
-}

Copied: jose/repos/community-x86_64/PKGBUILD (from rev 928648, 
jose/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-07 17:26:30 UTC (rev 928649)
@@ -0,0 +1,35 @@
+# Maintainer: Jonas Witschel 
+pkgname=jose
+pkgver=11
+_commit=145c41a4ec70c15f6f8aa12a915e16cb60f0991f # git rev-parse "v$pkgver^{}"
+pkgrel=1
+pkgdesc='C-language implementation of Javascript Object Signing and Encryption'
+arch=('x86_64')
+url='https://github.com/latchset/jose'
+license=('APACHE')
+depends=('jansson' 'openssl' 'zlib')
+makedepends=('git' 'asciidoc' 'meson')
+source=("git+$url.git?signed#commit=$_commit")
+sha512sums=('SKIP')
+validpgpkeys=('7CE2CB3D2AF59FE1EA22F551D0D219ED1F7E762C') # Sergio Correia 

+
+pkgver() {
+   cd "$pkgname"
+   git describe --tags | sed 's/^v//;s/\([^-]*-\)g/r\1/;s/-/./g'
+}
+
+build() {
+   cd "$pkgname"
+   meson --prefix=/usr --buildtype=plain build
+   meson compile -C build
+}
+
+check() {
+   cd "$pkgname"
+   meson test -C build
+}
+
+package() {
+   cd "$pkgname"
+   DESTDIR="$pkgdir" meson install -C build
+}


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

2021-05-07 Thread Jonas Witschel via arch-commits
Date: Friday, May 7, 2021 @ 17:26:23
  Author: diabonas
Revision: 928648

upgpkg: jose 11-1: upstream release

- Upstream switched the build system from Autotools to Meson.
- Build from signed Git commit, PGP key is the same as for Clevis and Tang.

Modified:
  jose/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-07 17:24:24 UTC (rev 928647)
+++ PKGBUILD2021-05-07 17:26:23 UTC (rev 928648)
@@ -1,27 +1,35 @@
 # Maintainer: Jonas Witschel 
 pkgname=jose
-pkgver=10
-pkgrel=3
+pkgver=11
+_commit=145c41a4ec70c15f6f8aa12a915e16cb60f0991f # git rev-parse "v$pkgver^{}"
+pkgrel=1
 pkgdesc='C-language implementation of Javascript Object Signing and Encryption'
 arch=('x86_64')
 url='https://github.com/latchset/jose'
 license=('APACHE')
 depends=('jansson' 'openssl' 'zlib')
-source=("$url/releases/download/v$pkgver/$pkgname-$pkgver.tar.bz2")
-sha512sums=('596f71bf7f3ab65164556d8353c07a09283e80ad06f8cbb7b1a9609fe3c95888c94c032ae8d719ed3f3b361cb87188f4683728e649d454056841b8ca47828b9d')
+makedepends=('git' 'asciidoc' 'meson')
+source=("git+$url.git?signed#commit=$_commit")
+sha512sums=('SKIP')
+validpgpkeys=('7CE2CB3D2AF59FE1EA22F551D0D219ED1F7E762C') # Sergio Correia 

 
+pkgver() {
+   cd "$pkgname"
+   git describe --tags | sed 's/^v//;s/\([^-]*-\)g/r\1/;s/-/./g'
+}
+
 build() {
-   cd "$pkgname-$pkgver"
-   ./configure --prefix=/usr
-   make
+   cd "$pkgname"
+   meson --prefix=/usr --buildtype=plain build
+   meson compile -C build
 }
 
 check() {
-   cd "$pkgname-$pkgver"
-   make check
+   cd "$pkgname"
+   meson test -C build
 }
 
 package() {
-   cd "$pkgname-$pkgver"
-   make DESTDIR="$pkgdir" install
+   cd "$pkgname"
+   DESTDIR="$pkgdir" meson install -C build
 }


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

2021-05-07 Thread David Runge via arch-commits
Date: Friday, May 7, 2021 @ 17:24:24
  Author: dvzrv
Revision: 928647

archrelease: copy trunk to community-any

Added:
  openapi-generator/repos/community-any/PKGBUILD
(from rev 928646, openapi-generator/trunk/PKGBUILD)
  openapi-generator/repos/community-any/openapi-generator.sh
(from rev 928646, openapi-generator/trunk/openapi-generator.sh)
Deleted:
  openapi-generator/repos/community-any/PKGBUILD
  openapi-generator/repos/community-any/openapi-generator.sh

--+
 PKGBUILD |   82 -
 openapi-generator.sh |8 ++--
 2 files changed, 45 insertions(+), 45 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-07 17:24:15 UTC (rev 928646)
+++ PKGBUILD2021-05-07 17:24:24 UTC (rev 928647)
@@ -1,41 +0,0 @@
-# Maintainer: David Runge 
-
-pkgname=openapi-generator
-pkgver=5.1.0
-pkgrel=1
-pkgdesc="Generation of API client libraries, server stubs, documentation and 
configuration"
-arch=('any')
-url="https://github.com/openapitools/openapi-generator/;
-license=('Apache')
-depends=('bash' 'java-runtime=8')
-makedepends=('maven' 'java-environment=8' 'strip-nondeterminism')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/OpenAPITools/${pkgname}/archive/v${pkgver}.tar.gz;
-"${pkgname}.sh")
-sha512sums=('87b8cc6aedb2865ca765495d7b352d5419784bcbadc97db05fe60afbab625c53be562c3e7ed567cdffccafab1ccbd0e2b048bcb1d10fa58c692ad19b6c55038a'
-
'0b81955e2da12182b70366c4d8ff48d970a0edee6242a13dc657879b2e1c15205a2bfa01cbef51dd86d90e1176569a211b704d30d19b529e15ead825a89a4e9c')
-b2sums=('3d1928e397715da639b335cb39ed2c3c31d46025241da60b173285582fff95a248943b82acd3d2a5076faed59446d38dc7f078372a9cf6653a4734cae31d6b71'
-
'd2f38df8fd23a32e95e9e09624283ca4927dce8cf6dbdbfc11547396ae2bd9c6c1ff65082447f1e30caba3654fd6e50558272d524242ca6727df7024729a1123')
-
-build() {
-  cd "$pkgname-$pkgver"
-  mvn clean install
-  # Timestamps in JAR files generated by Maven do not honour SOURCE_DATE_EPOCH
-  # (https://cwiki.apache.org/confluence/pages/viewpage.action?pageId=74682318)
-  strip-nondeterminism --timestamp "$SOURCE_DATE_EPOCH" \
-modules/openapi-generator/target/openapi-generator-${pkgver}.jar \
-modules/openapi-generator-cli/target/openapi-generator-cli.jar \
-modules/openapi-generator-core/target/openapi-generator-core-${pkgver}.jar 
\
-
modules/openapi-generator-maven-plugin/target/openapi-generator-maven-plugin-${pkgver}.jar
 \
-modules/openapi-generator-online/target/openapi-generator-online.jar
-
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  install -vDm 644  
modules/openapi-generator-cli/target/openapi-generator-cli.jar \
--t "${pkgdir}/usr/share/java/${pkgname}/"
-  install -vDm 755 "../${pkgname}.sh" "${pkgdir}/usr/bin/${pkgname}"
-  ln -svf "${pkgname}" "${pkgdir}/usr/bin/${pkgname}-cli"
-  install -vDm 644 scripts/openapi-generator-cli-completion.bash \
-"${pkgdir}/usr/share/bash/bash-completion/completions/openapi-generator"
-}

Copied: openapi-generator/repos/community-any/PKGBUILD (from rev 928646, 
openapi-generator/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-07 17:24:24 UTC (rev 928647)
@@ -0,0 +1,41 @@
+# Maintainer: David Runge 
+
+pkgname=openapi-generator
+pkgver=5.1.1
+pkgrel=1
+pkgdesc="Generation of API client libraries, server stubs, documentation and 
configuration"
+arch=('any')
+url="https://github.com/openapitools/openapi-generator/;
+license=('Apache')
+depends=('bash' 'java-runtime=8')
+makedepends=('maven' 'java-environment=8' 'strip-nondeterminism')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/OpenAPITools/${pkgname}/archive/v${pkgver}.tar.gz;
+"${pkgname}.sh")
+sha512sums=('3985aeae711c61604bfe934abcff0f606a74db47889afdf4e75eaf4497fe624882370ed0c870da668694083742b9c239f2297ea07366505aea49d1573e8fe9fe'
+
'0b81955e2da12182b70366c4d8ff48d970a0edee6242a13dc657879b2e1c15205a2bfa01cbef51dd86d90e1176569a211b704d30d19b529e15ead825a89a4e9c')
+b2sums=('2439e5e5f0198e2521e4675837d01db8e015582f298511d759d2d202cfe16b71d97df2792fc8adc715a48efceed75107ae6488bdfc3816595201fb6a8b1a5593'
+
'd2f38df8fd23a32e95e9e09624283ca4927dce8cf6dbdbfc11547396ae2bd9c6c1ff65082447f1e30caba3654fd6e50558272d524242ca6727df7024729a1123')
+
+build() {
+  cd "$pkgname-$pkgver"
+  mvn clean install
+  # Timestamps in JAR files generated by Maven do not honour SOURCE_DATE_EPOCH
+  # (https://cwiki.apache.org/confluence/pages/viewpage.action?pageId=74682318)
+  strip-nondeterminism --timestamp "$SOURCE_DATE_EPOCH" \
+modules/openapi-generator/target/openapi-generator-${pkgver}.jar \
+modules/openapi-generator-cli/target/openapi-generator-cli.jar \
+modules/openapi-generator-core/target/openapi-generator-core-${pkgver}.jar 
\
+

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

2021-05-07 Thread David Runge via arch-commits
Date: Friday, May 7, 2021 @ 17:24:15
  Author: dvzrv
Revision: 928646

upgpkg: openapi-generator 5.1.1-1: Upgrade to 5.1.1.

Modified:
  openapi-generator/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-07 17:22:39 UTC (rev 928645)
+++ PKGBUILD2021-05-07 17:24:15 UTC (rev 928646)
@@ -1,7 +1,7 @@
 # Maintainer: David Runge 
 
 pkgname=openapi-generator
-pkgver=5.1.0
+pkgver=5.1.1
 pkgrel=1
 pkgdesc="Generation of API client libraries, server stubs, documentation and 
configuration"
 arch=('any')
@@ -11,9 +11,9 @@
 makedepends=('maven' 'java-environment=8' 'strip-nondeterminism')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/OpenAPITools/${pkgname}/archive/v${pkgver}.tar.gz;
 "${pkgname}.sh")
-sha512sums=('87b8cc6aedb2865ca765495d7b352d5419784bcbadc97db05fe60afbab625c53be562c3e7ed567cdffccafab1ccbd0e2b048bcb1d10fa58c692ad19b6c55038a'
+sha512sums=('3985aeae711c61604bfe934abcff0f606a74db47889afdf4e75eaf4497fe624882370ed0c870da668694083742b9c239f2297ea07366505aea49d1573e8fe9fe'
 
'0b81955e2da12182b70366c4d8ff48d970a0edee6242a13dc657879b2e1c15205a2bfa01cbef51dd86d90e1176569a211b704d30d19b529e15ead825a89a4e9c')
-b2sums=('3d1928e397715da639b335cb39ed2c3c31d46025241da60b173285582fff95a248943b82acd3d2a5076faed59446d38dc7f078372a9cf6653a4734cae31d6b71'
+b2sums=('2439e5e5f0198e2521e4675837d01db8e015582f298511d759d2d202cfe16b71d97df2792fc8adc715a48efceed75107ae6488bdfc3816595201fb6a8b1a5593'
 
'd2f38df8fd23a32e95e9e09624283ca4927dce8cf6dbdbfc11547396ae2bd9c6c1ff65082447f1e30caba3654fd6e50558272d524242ca6727df7024729a1123')
 
 build() {


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

2021-05-07 Thread David Runge via arch-commits
Date: Friday, May 7, 2021 @ 17:22:39
  Author: dvzrv
Revision: 928645

archrelease: copy trunk to community-any

Added:
  cloud-init/repos/community-any/PKGBUILD
(from rev 928644, cloud-init/trunk/PKGBUILD)
  cloud-init/repos/community-any/fix-lib.patch
(from rev 928644, cloud-init/trunk/fix-lib.patch)
Deleted:
  cloud-init/repos/community-any/PKGBUILD
  cloud-init/repos/community-any/fix-lib.patch

---+
 PKGBUILD  |  139 
 fix-lib.patch |   22 
 2 files changed, 81 insertions(+), 80 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-07 17:22:29 UTC (rev 928644)
+++ PKGBUILD2021-05-07 17:22:39 UTC (rev 928645)
@@ -1,69 +0,0 @@
-# Maintainer: Christian Rebischke 
-# Contributor: David Runge 
-# Contributor:  kpcyrd 
-# Contributor: Jonathan Steel 
-# Contributor: Daniel Wallace 
-# Contributor: flaccid aka Chris Fordham 
-# Contributor: Sparadox 
-
-pkgname=cloud-init
-pkgver=21.1
-pkgrel=3
-pkgdesc="The standard for customising cloud instances"
-arch=('any')
-url="https://cloud-init.io;
-license=('GPL3')
-depends=('dhclient' 'netplan' 'python-configobj' 'inetutils'
-'python-jinja' 'python-jsonpatch' 'python-jsonschema' 'python-oauthlib'
-'python-requests' 'python-yaml' 'sudo' 'systemd')
-makedepends=('python' 'python-setuptools')
-checkdepends=('python-httpretty' 'python-prettytable' 'python-pytest')
-optdepends=('cloud-guest-utils')
-backup=('etc/cloud/cloud.cfg' 'etc/cloud/cloud.cfg.d/05_logging.cfg')
-source=("https://launchpad.net/${pkgname}/trunk/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz;
-'fix-lib.patch'
-)
-sha512sums=('893b1eacc343a0aad61e308819163e99cab93c6a15b47d30d0a7fb2aced03d6188cf69062117876009ebccf69ba1bd1e3145d7fd2988b5794e736c91196bea1d'
-
'6c435fbe1e0a7093b79f8bb3789b05a39afd1e43b7ff96f13e68c9ad16311cc58270b947bae574cfdc3d2e27c7258789880a101c9bdf2c3c141bcbedc47a8a4b')
-b2sums=('5ae1cbd427c195dd207a15804748cfa581bf736cbe06152d2055c715b44150294da40f5779a19b5ed51508cc98e294e6d607c25548a4f1452b67c08b3d79fad5'
-
'7c4b07a285e8f3e1e810622ba6cf4b007e89625018015d8fa471ed9f4453543dc1ada30824137e91326db016b55e746517f3c34913156e2e9f095645e7ace317')
-
-prepare() {
-  cd "${pkgname}-${pkgver}"
-  patch -Np1 -i "${srcdir}/fix-lib.patch"
-}
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  python setup.py build
-}
-
-check() {
-  cd "${pkgname}-${pkgver}"
-  export PYTHONPATH="build:${PYTHONPATH}"
-  # disable tests that try to use /etc/ca-certificates.conf
-  # additionally we are disabling a few tests that seem
-  # to fail on Arch Linux
-  pytest -v tests/unittests cloudinit \
- -k "not test_multiple_certs \
- and not test_single_cert_no_trailing_cr \
- and not test_single_cert_trailing_c \
- and not test_parse_add_new \
- and not test_parse_adjust \
- and not test_parse_no_adjust_shell \
- and not test_parse_no_change \
- and not test_parse_shell_vars \
- and not test_set_locale_sles \
- and not test_set_locale_sles \
- and not test_set_locale_sles_default \
- and not test_write_hostname_rhel \
- and not test_set_timezone_sles"
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  python setup.py install --skip-build \
---optimize=1 \
---init-system=systemd \
---root="${pkgdir}"
-}

Copied: cloud-init/repos/community-any/PKGBUILD (from rev 928644, 
cloud-init/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-07 17:22:39 UTC (rev 928645)
@@ -0,0 +1,70 @@
+# Maintainer: Christian Rebischke 
+# Contributor: David Runge 
+# Contributor:  kpcyrd 
+# Contributor: Jonathan Steel 
+# Contributor: Daniel Wallace 
+# Contributor: flaccid aka Chris Fordham 
+# Contributor: Sparadox 
+
+pkgname=cloud-init
+pkgver=21.2
+pkgrel=1
+pkgdesc="The standard for customising cloud instances"
+arch=('any')
+url="https://cloud-init.io;
+license=('GPL3')
+depends=('dhclient' 'netplan' 'python-configobj' 'python-jinja'
+'python-jsonpatch' 'python-jsonschema' 'python-oauthlib' 'python-requests'
+'python-yaml' 'sudo' 'systemd')
+makedepends=('python' 'python-setuptools')
+checkdepends=('python-httpretty' 'python-prettytable' 'python-pytest')
+optdepends=('cloud-guest-utils')
+backup=('etc/cloud/cloud.cfg' 'etc/cloud/cloud.cfg.d/05_logging.cfg')
+source=("https://launchpad.net/${pkgname}/trunk/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz;
+'fix-lib.patch'
+)
+sha512sums=('8cc24945efc6f16b3c64411c5e7e5b83582d337f1c3f546163d52c14a6177ff752e91ba1fec04b7ade800f921c2b79c04d032df62c2b4171930ca1fb74c49a7d'
+
'6c435fbe1e0a7093b79f8bb3789b05a39afd1e43b7ff96f13e68c9ad16311cc58270b947bae574cfdc3d2e27c7258789880a101c9bdf2c3c141bcbedc47a8a4b')

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

2021-05-07 Thread David Runge via arch-commits
Date: Friday, May 7, 2021 @ 17:22:29
  Author: dvzrv
Revision: 928644

upgpkg: cloud-init 21.2-1: Upgrade to 21.2.

Remove inetutils from depends, as hostnamectl is now used to set transient 
hostname.
Ignore further RHEL specific test that requires inetutils.

Modified:
  cloud-init/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-07 17:09:16 UTC (rev 928643)
+++ PKGBUILD2021-05-07 17:22:29 UTC (rev 928644)
@@ -7,15 +7,15 @@
 # Contributor: Sparadox 
 
 pkgname=cloud-init
-pkgver=21.1
-pkgrel=3
+pkgver=21.2
+pkgrel=1
 pkgdesc="The standard for customising cloud instances"
 arch=('any')
 url="https://cloud-init.io;
 license=('GPL3')
-depends=('dhclient' 'netplan' 'python-configobj' 'inetutils'
-'python-jinja' 'python-jsonpatch' 'python-jsonschema' 'python-oauthlib'
-'python-requests' 'python-yaml' 'sudo' 'systemd')
+depends=('dhclient' 'netplan' 'python-configobj' 'python-jinja'
+'python-jsonpatch' 'python-jsonschema' 'python-oauthlib' 'python-requests'
+'python-yaml' 'sudo' 'systemd')
 makedepends=('python' 'python-setuptools')
 checkdepends=('python-httpretty' 'python-prettytable' 'python-pytest')
 optdepends=('cloud-guest-utils')
@@ -23,9 +23,9 @@
 
source=("https://launchpad.net/${pkgname}/trunk/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz;
 'fix-lib.patch'
 )
-sha512sums=('893b1eacc343a0aad61e308819163e99cab93c6a15b47d30d0a7fb2aced03d6188cf69062117876009ebccf69ba1bd1e3145d7fd2988b5794e736c91196bea1d'
+sha512sums=('8cc24945efc6f16b3c64411c5e7e5b83582d337f1c3f546163d52c14a6177ff752e91ba1fec04b7ade800f921c2b79c04d032df62c2b4171930ca1fb74c49a7d'
 
'6c435fbe1e0a7093b79f8bb3789b05a39afd1e43b7ff96f13e68c9ad16311cc58270b947bae574cfdc3d2e27c7258789880a101c9bdf2c3c141bcbedc47a8a4b')
-b2sums=('5ae1cbd427c195dd207a15804748cfa581bf736cbe06152d2055c715b44150294da40f5779a19b5ed51508cc98e294e6d607c25548a4f1452b67c08b3d79fad5'
+b2sums=('74e07649a24fc85df54aafcd72797a05f0bdbcceb90fe90c6af7024da09e876780b67bb1d7963cd164d03e3151715944b1f3fd5709d3557ac341a09061409fcc'
 
'7c4b07a285e8f3e1e810622ba6cf4b007e89625018015d8fa471ed9f4453543dc1ada30824137e91326db016b55e746517f3c34913156e2e9f095645e7ace317')
 
 prepare() {
@@ -53,6 +53,7 @@
  and not test_parse_no_adjust_shell \
  and not test_parse_no_change \
  and not test_parse_shell_vars \
+ and not test_rhel_write_hostname_prefer_hostname \
  and not test_set_locale_sles \
  and not test_set_locale_sles \
  and not test_set_locale_sles_default \


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

2021-05-07 Thread Kpcyrd via arch-commits
Date: Friday, May 7, 2021 @ 17:09:16
  Author: kpcyrd
Revision: 928643

archrelease: copy trunk to community-x86_64

Added:
  doctl/repos/community-x86_64/PKGBUILD
(from rev 928642, doctl/trunk/PKGBUILD)
Deleted:
  doctl/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-07 17:08:46 UTC (rev 928642)
+++ PKGBUILD2021-05-07 17:09:16 UTC (rev 928643)
@@ -1,41 +0,0 @@
-# Maintainer: kpcyrd 
-# Contributor: NOGISAKA Sadata 
-# Contributor: Bennett Piater 
-
-pkgname=doctl
-pkgver=1.59.0
-pkgrel=1
-pkgdesc='The official command line interface for the DigitalOcean API'
-url='https://github.com/digitalocean/doctl'
-arch=('x86_64')
-license=('Apache')
-depends=('glibc')
-makedepends=('go')
-source=(https://github.com/digitalocean/${pkgname}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha512sums=('64ca08c0be0e70d82dccb295d1b84b48cc5a22e3a183a5048a20b3419a65f54bfaefb5be0480cbd3498967ee0166be75aa600a84202ad06ad09bfd801fb25297')
-b2sums=('b935cd0604e1b45b0788a88cf1207921993795abd8e842b9f15c1baddb6076574a6276c7dc0e15e6550c4139d2b574cf3363e21ee8f5aad0b09d2f58aae55342')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  go build \
--trimpath \
--buildmode=pie \
--mod=readonly \
--ldflags "-linkmode external -extldflags \"${LDFLAGS}\"" \
-./cmd/...
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  install -Dm 755 "${pkgname}" -t "${pkgdir}/usr/bin"
-
-  # setup completions
-  install -dm 755 "${pkgdir}/usr/share/bash-completion/completions" \
-  "${pkgdir}/usr/share/zsh/site-functions" \
- "${pkgdir}/usr/share/fish/vendor_completions.d"
-  "${pkgdir}/usr/bin/${pkgname}" completion bash > 
"${pkgdir}/usr/share/bash-completion/completions/${pkgname}"
-  "${pkgdir}/usr/bin/${pkgname}" completion zsh > 
"${pkgdir}/usr/share/zsh/site-functions/_${pkgname}"
-  "${pkgdir}/usr/bin/${pkgname}" completion fish > 
"${pkgdir}/usr/share/fish/vendor_completions.d/${pkgname}.fish"
-}
-
-# vim: ts=2 sw=2 et:

Copied: doctl/repos/community-x86_64/PKGBUILD (from rev 928642, 
doctl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-07 17:09:16 UTC (rev 928643)
@@ -0,0 +1,41 @@
+# Maintainer: kpcyrd 
+# Contributor: NOGISAKA Sadata 
+# Contributor: Bennett Piater 
+
+pkgname=doctl
+pkgver=1.60.0
+pkgrel=1
+pkgdesc='The official command line interface for the DigitalOcean API'
+url='https://github.com/digitalocean/doctl'
+arch=('x86_64')
+license=('Apache')
+depends=('glibc')
+makedepends=('go')
+source=(https://github.com/digitalocean/${pkgname}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('2dd27395d87926bb9d3c759c5324cd72b10fe9541e0a5dbee1fd9925952c5c54e11a873262c6520b79fa9ae8effab434896d4e8e27266d3941940d8d618f191d')
+b2sums=('5b49731f586e96533eb73e8bdfb21b18cbfa4ff9b005818e15ed04e0ba831be5c318997a4512c1b26f3a8b0f85990e04b3f99c0bfc69698f04813ca8a93db2d6')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  go build \
+-trimpath \
+-buildmode=pie \
+-mod=readonly \
+-ldflags "-linkmode external -extldflags \"${LDFLAGS}\"" \
+./cmd/...
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  install -Dm 755 "${pkgname}" -t "${pkgdir}/usr/bin"
+
+  # setup completions
+  install -dm 755 "${pkgdir}/usr/share/bash-completion/completions" \
+  "${pkgdir}/usr/share/zsh/site-functions" \
+ "${pkgdir}/usr/share/fish/vendor_completions.d"
+  "${pkgdir}/usr/bin/${pkgname}" completion bash > 
"${pkgdir}/usr/share/bash-completion/completions/${pkgname}"
+  "${pkgdir}/usr/bin/${pkgname}" completion zsh > 
"${pkgdir}/usr/share/zsh/site-functions/_${pkgname}"
+  "${pkgdir}/usr/bin/${pkgname}" completion fish > 
"${pkgdir}/usr/share/fish/vendor_completions.d/${pkgname}.fish"
+}
+
+# vim: ts=2 sw=2 et:


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

2021-05-07 Thread Kpcyrd via arch-commits
Date: Friday, May 7, 2021 @ 17:08:46
  Author: kpcyrd
Revision: 928642

upgpkg: doctl 1.60.0-1

Modified:
  doctl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-07 17:01:32 UTC (rev 928641)
+++ PKGBUILD2021-05-07 17:08:46 UTC (rev 928642)
@@ -3,7 +3,7 @@
 # Contributor: Bennett Piater 
 
 pkgname=doctl
-pkgver=1.59.0
+pkgver=1.60.0
 pkgrel=1
 pkgdesc='The official command line interface for the DigitalOcean API'
 url='https://github.com/digitalocean/doctl'
@@ -12,8 +12,8 @@
 depends=('glibc')
 makedepends=('go')
 
source=(https://github.com/digitalocean/${pkgname}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha512sums=('64ca08c0be0e70d82dccb295d1b84b48cc5a22e3a183a5048a20b3419a65f54bfaefb5be0480cbd3498967ee0166be75aa600a84202ad06ad09bfd801fb25297')
-b2sums=('b935cd0604e1b45b0788a88cf1207921993795abd8e842b9f15c1baddb6076574a6276c7dc0e15e6550c4139d2b574cf3363e21ee8f5aad0b09d2f58aae55342')
+sha512sums=('2dd27395d87926bb9d3c759c5324cd72b10fe9541e0a5dbee1fd9925952c5c54e11a873262c6520b79fa9ae8effab434896d4e8e27266d3941940d8d618f191d')
+b2sums=('5b49731f586e96533eb73e8bdfb21b18cbfa4ff9b005818e15ed04e0ba831be5c318997a4512c1b26f3a8b0f85990e04b3f99c0bfc69698f04813ca8a93db2d6')
 
 build() {
   cd ${pkgname}-${pkgver}


[arch-commits] Commit in systemd/repos/testing-x86_64 (42 files)

2021-05-07 Thread Christian Hesse via arch-commits
Date: Friday, May 7, 2021 @ 17:02:04
  Author: eworm
Revision: 414577

archrelease: copy trunk to testing-x86_64

Added:
  systemd/repos/testing-x86_64/0001-Use-Arch-Linux-device-access-groups.patch
(from rev 414576, 
systemd/trunk/0001-Use-Arch-Linux-device-access-groups.patch)
  
systemd/repos/testing-x86_64/0003-PARTIAL-REVERT-commit-tree-wide-replace-strverscmp-and-str_verscmp-with-strverscmp_improved.patch
(from rev 414576, 
systemd/trunk/0003-PARTIAL-REVERT-commit-tree-wide-replace-strverscmp-and-str_verscmp-with-strverscmp_improved.patch)
  systemd/repos/testing-x86_64/20-systemd-sysusers.hook
(from rev 414576, systemd/trunk/20-systemd-sysusers.hook)
  systemd/repos/testing-x86_64/30-systemd-binfmt.hook
(from rev 414576, systemd/trunk/30-systemd-binfmt.hook)
  systemd/repos/testing-x86_64/30-systemd-catalog.hook
(from rev 414576, systemd/trunk/30-systemd-catalog.hook)
  systemd/repos/testing-x86_64/30-systemd-daemon-reload.hook
(from rev 414576, systemd/trunk/30-systemd-daemon-reload.hook)
  systemd/repos/testing-x86_64/30-systemd-hwdb.hook
(from rev 414576, systemd/trunk/30-systemd-hwdb.hook)
  systemd/repos/testing-x86_64/30-systemd-sysctl.hook
(from rev 414576, systemd/trunk/30-systemd-sysctl.hook)
  systemd/repos/testing-x86_64/30-systemd-tmpfiles.hook
(from rev 414576, systemd/trunk/30-systemd-tmpfiles.hook)
  systemd/repos/testing-x86_64/30-systemd-udev-reload.hook
(from rev 414576, systemd/trunk/30-systemd-udev-reload.hook)
  systemd/repos/testing-x86_64/30-systemd-update.hook
(from rev 414576, systemd/trunk/30-systemd-update.hook)
  systemd/repos/testing-x86_64/PKGBUILD
(from rev 414576, systemd/trunk/PKGBUILD)
  systemd/repos/testing-x86_64/arch.conf
(from rev 414576, systemd/trunk/arch.conf)
  systemd/repos/testing-x86_64/initcpio-hook-udev
(from rev 414576, systemd/trunk/initcpio-hook-udev)
  systemd/repos/testing-x86_64/initcpio-install-systemd
(from rev 414576, systemd/trunk/initcpio-install-systemd)
  systemd/repos/testing-x86_64/initcpio-install-udev
(from rev 414576, systemd/trunk/initcpio-install-udev)
  systemd/repos/testing-x86_64/loader.conf
(from rev 414576, systemd/trunk/loader.conf)
  systemd/repos/testing-x86_64/splash-arch.bmp
(from rev 414576, systemd/trunk/splash-arch.bmp)
  systemd/repos/testing-x86_64/systemd-hook
(from rev 414576, systemd/trunk/systemd-hook)
  systemd/repos/testing-x86_64/systemd-user.pam
(from rev 414576, systemd/trunk/systemd-user.pam)
  systemd/repos/testing-x86_64/systemd.install
(from rev 414576, systemd/trunk/systemd.install)
Deleted:
  systemd/repos/testing-x86_64/0001-Use-Arch-Linux-device-access-groups.patch
  
systemd/repos/testing-x86_64/0003-PARTIAL-REVERT-commit-tree-wide-replace-strverscmp-and-str_verscmp-with-strverscmp_improved.patch
  systemd/repos/testing-x86_64/20-systemd-sysusers.hook
  systemd/repos/testing-x86_64/30-systemd-binfmt.hook
  systemd/repos/testing-x86_64/30-systemd-catalog.hook
  systemd/repos/testing-x86_64/30-systemd-daemon-reload.hook
  systemd/repos/testing-x86_64/30-systemd-hwdb.hook
  systemd/repos/testing-x86_64/30-systemd-sysctl.hook
  systemd/repos/testing-x86_64/30-systemd-tmpfiles.hook
  systemd/repos/testing-x86_64/30-systemd-udev-reload.hook
  systemd/repos/testing-x86_64/30-systemd-update.hook
  systemd/repos/testing-x86_64/PKGBUILD
  systemd/repos/testing-x86_64/arch.conf
  systemd/repos/testing-x86_64/initcpio-hook-udev
  systemd/repos/testing-x86_64/initcpio-install-systemd
  systemd/repos/testing-x86_64/initcpio-install-udev
  systemd/repos/testing-x86_64/loader.conf
  systemd/repos/testing-x86_64/splash-arch.bmp
  systemd/repos/testing-x86_64/systemd-hook
  systemd/repos/testing-x86_64/systemd-user.pam
  systemd/repos/testing-x86_64/systemd.install

+
 0001-Use-Arch-Linux-device-access-groups.patch 
|  144 +-
 
0003-PARTIAL-REVERT-commit-tree-wide-replace-strverscmp-and-str_verscmp-with-strverscmp_improved.patch
 |  156 +-
 20-systemd-sysusers.hook   
|   20 
 30-systemd-binfmt.hook 
|   20 
 30-systemd-catalog.hook
|   22 
 30-systemd-daemon-reload.hook  
|   22 
 30-systemd-hwdb.hook   
|   22 
 30-systemd-sysctl.hook 
|   20 
 30-systemd-tmpfiles.hook   
|   20 
 30-systemd-udev-reload.hook

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

2021-05-07 Thread Christian Hesse via arch-commits
Date: Friday, May 7, 2021 @ 17:01:55
  Author: eworm
Revision: 414576

upgpkg: systemd 248.2-1: new upstream release

Modified:
  systemd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-07 16:09:43 UTC (rev 414575)
+++ PKGBUILD2021-05-07 17:01:55 UTC (rev 414576)
@@ -4,8 +4,8 @@
 
 pkgbase=systemd
 pkgname=('systemd' 'systemd-libs' 'systemd-resolvconf' 'systemd-sysvcompat')
-_tag='6d996568a7816bf2651b3d8e67bcc1a4971dbe88' # git rev-parse v${_tag_name}
-_tag_name=248.1
+_tag='bc3ad898fc7b74e818c80fdb7b14a3b9c6d91475' # git rev-parse v${_tag_name}
+_tag_name=248.2
 pkgver="${_tag_name/-/}"
 pkgrel=1
 arch=('x86_64')


[arch-commits] Commit in lib32-systemd/repos/multilib-testing-x86_64 (2 files)

2021-05-07 Thread Christian Hesse via arch-commits
Date: Friday, May 7, 2021 @ 17:01:32
  Author: eworm
Revision: 928641

archrelease: copy trunk to multilib-testing-x86_64

Added:
  lib32-systemd/repos/multilib-testing-x86_64/PKGBUILD
(from rev 928640, lib32-systemd/trunk/PKGBUILD)
Deleted:
  lib32-systemd/repos/multilib-testing-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-07 17:01:25 UTC (rev 928640)
+++ PKGBUILD2021-05-07 17:01:32 UTC (rev 928641)
@@ -1,164 +0,0 @@
-# Maintainer: Christian Hesse 
-# Maintainer: Dave Reisner 
-# Maintainer: Tom Gundersen 
-
-pkgname=lib32-systemd
-_pkgbasename=systemd
-_tag='6d996568a7816bf2651b3d8e67bcc1a4971dbe88' # git rev-parse v${_tag_name}
-_tag_name=248.1
-pkgver="${_tag_name/-/}"
-pkgrel=1
-pkgdesc='system and service manager (32-bit)'
-arch=('x86_64')
-url='https://www.github.com/systemd/systemd'
-license=('GPL2' 'LGPL2.1')
-depends=('lib32-gcc-libs' 'lib32-libcap' 'lib32-libgcrypt' 'lib32-libxcrypt'
- 'lib32-xz' 'lib32-zstd' 'systemd')
-makedepends=('git' 'gperf' 'intltool' 'lib32-acl' 'lib32-bzip2'
- 'lib32-curl' 'lib32-dbus' 'lib32-gcc-libs' 'lib32-glib2'
- 'lib32-gnutls' 'lib32-libelf' 'lib32-libidn2' 'lib32-pcre2'
- 'libxslt' 'meson')
-options=('strip')
-validpgpkeys=('63CDA1E5D3FC22B998D20DD6327F26951A015CC4'  # Lennart Poettering 

-  '5C251B5FC54EB2F80F407AAAC54CA336CFEB557E') # Zbigniew 
Jędrzejewski-Szmek 
-source=("git+https://github.com/systemd/systemd-stable#tag=${_tag}?signed;
-"git+https://github.com/systemd/systemd#tag=v${_tag_name%.*}?signed;)
-sha512sums=('SKIP'
-'SKIP')
-
-_backports=(
-)
-
-_reverts=(
-)
-
-prepare() {
-  cd "$_pkgbasename-stable"
-
-  # add upstream repository for cherry-picking
-  git remote add -f upstream ../systemd
-
-  local _c
-  for _c in "${_backports[@]}"; do
-git cherry-pick -n "${_c}"
-  done
-  for _c in "${_reverts[@]}"; do
-git revert -n "${_c}"
-  done
-}
-
-build() {
-  export CC="gcc -m32"
-  export CXX="g++ -m32"
-  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
-
-  local _timeservers=({0..3}.arch.pool.ntp.org)
-  local _nameservers=(
-# We use these public name services, ordered by their
-# privacy policy (hopefully):
-#  * Cloudflare (https://1.1.1.1/)
-#  * Quad9 without filtering (https://www.quad9.net/)
-#  * Google (https://developers.google.com/speed/public-dns/)
-1.1.1.1
-9.9.9.10
-8.8.8.8
-2606:4700:4700::
-2620:fe::10
-2001:4860:4860::
-  )
- 
-  local _meson_options=(
---libexecdir   /usr/lib32
---libdir   /usr/lib32
-
--Dversion-tag="${pkgver}-${pkgrel}-arch"
--Dmode=release
-
-# features
--Daudit=false
--Dblkid=false
--Dgnu-efi=false
--Dima=false
--Dkmod=false
--Dlibcryptsetup=false
--Dlibidn2=true
--Dlibiptc=false
--Dlz4=false
--Dmicrohttpd=false
--Dpam=false
--Dpython=false
--Dseccomp=false
-
-# components
--Dutmp=false
--Dhibernate=false
--Dldconfig=false
--Dresolve=true
--Defi=false
--Dtpm=false
--Denvironment-d=false
--Dbinfmt=false
--Drepart=false
--Dcoredump=false
--Dpstore=false
--Doomd=false
--Dlogind=false
--Dhostnamed=false
--Dlocaled=false
--Dmachined=true
--Dportabled=false
--Dsysext=false
--Duserdb=false
--Dhomed=false
--Dnetworkd=false
--Dtimedated=false
--Dtimesyncd=false
--Dremote=false
--Dcreate-log-dirs=false
--Dnss-myhostname=true
--Dnss-mymachines=true
--Dnss-resolve=true
--Dnss-systemd=true
--Dfirstboot=false
--Drandomseed=false
--Dbacklight=false
--Dvconsole=false
--Dquotacheck=false
--Dsysusers=false
--Dtmpfiles=false
--Dimportd=false
--Dhwdb=false
--Drfkill=false
--Dxdg-autostart=false
--Dman=false
--Dhtml=false
--Dtranslations=false
-
--Ddbuspolicydir=/usr/share/dbus-1/system.d
--Ddefault-hierarchy=unified
--Ddefault-kill-user-processes=false
--Ddefault-locale=C
--Dfallback-hostname='archlinux'
--Dnologin-path=/usr/bin/nologin
--Dntp-servers="${_timeservers[*]}"
--Ddns-servers="${_nameservers[*]}"
--Drpmmacrosdir=no
--Dsysvinit-path=
--Dsysvrcnd-path=
-  )
-
-  arch-meson "$_pkgbasename-stable" build "${_meson_options[@]}"
-
-  ninja -C build
-}
-
-check() {
-  meson test -C build
-}
-
-package() {
-  DESTDIR="$pkgdir" ninja -C build install
-
-  rm -rf "${pkgdir}"/{etc,var}
-  rm -rf "${pkgdir}"/usr/{bin,include,lib,share}
-}

Copied: lib32-systemd/repos/multilib-testing-x86_64/PKGBUILD (from rev 928640, 
lib32-systemd/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)

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

2021-05-07 Thread Christian Hesse via arch-commits
Date: Friday, May 7, 2021 @ 17:01:25
  Author: eworm
Revision: 928640

upgpkg: lib32-systemd 248.2-1: new upstream release

Modified:
  lib32-systemd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-07 16:59:21 UTC (rev 928639)
+++ PKGBUILD2021-05-07 17:01:25 UTC (rev 928640)
@@ -4,8 +4,8 @@
 
 pkgname=lib32-systemd
 _pkgbasename=systemd
-_tag='6d996568a7816bf2651b3d8e67bcc1a4971dbe88' # git rev-parse v${_tag_name}
-_tag_name=248.1
+_tag='bc3ad898fc7b74e818c80fdb7b14a3b9c6d91475' # git rev-parse v${_tag_name}
+_tag_name=248.2
 pkgver="${_tag_name/-/}"
 pkgrel=1
 pkgdesc='system and service manager (32-bit)'


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

2021-05-07 Thread David Runge via arch-commits
Date: Friday, May 7, 2021 @ 16:59:21
  Author: dvzrv
Revision: 928639

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-07 16:59:12 UTC (rev 928638)
+++ PKGBUILD2021-05-07 16:59:21 UTC (rev 928639)
@@ -1,38 +0,0 @@
-# Maintainer: David Runge 
-
-_name=langdetect
-pkgname=python-langdetect
-pkgver=1.0.8
-pkgrel=3
-pkgdesc="Language detection library ported from Google's language-detection"
-arch=('any')
-url="https://github.com/Mimino666/langdetect;
-license=('Apache')
-depends=('python-six')
-makedepends=('python-setuptools')
-checkdepends=('python-pytest')
-source=("https://files.pythonhosted.org/packages/source/l/${_name}/${_name}-${pkgver}.tar.gz;)
-sha512sums=('beade4e33abd25364ead64c30b3631615526effa7788c50e0b2bfac454e7b69a33742780f838ddf5df5292dadf0449ea8f3a4197214d84a164cbecee76020a4d')
-
-prepare() {
-  mv -v "${_name}-${pkgver}" "${pkgname}-${pkgver}"
-}
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  python setup.py build
-}
-
-check() {
-  cd "${pkgname}-${pkgver}"
-  pytest -v
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  python setup.py install --skip-build \
---optimize=1 \
---prefix=/usr \
---root="${pkgdir}"
-  install -vDm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
-}

Copied: python-langdetect/repos/community-any/PKGBUILD (from rev 928638, 
python-langdetect/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-07 16:59:21 UTC (rev 928639)
@@ -0,0 +1,38 @@
+# Maintainer: David Runge 
+
+_name=langdetect
+pkgname=python-langdetect
+pkgver=1.0.9
+pkgrel=1
+pkgdesc="Language detection library ported from Google's language-detection"
+arch=('any')
+url="https://github.com/Mimino666/langdetect;
+license=('Apache')
+depends=('python-six')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest')
+source=("https://files.pythonhosted.org/packages/source/l/${_name}/${_name}-${pkgver}.tar.gz;)
+sha512sums=('7558d674c47b080c79e43a00a25d2c7f77188cf60bea2cecb3bebb803d75e1aa42b43c74bd26ea1b541f4cb927421908882cbec01a91f0913984217e71ccc8db')
+b2sums=('ea8a9c3f16a2987c080742473bff4f2c1503f53fb3c2b40b0b1d6212bb6133ea22dce7864ffcfb8968c3a46b157d45cb3e2cf6f84bdbed0266cc716a853b032c')
+
+prepare() {
+  mv -v "${_name}-${pkgver}" "${pkgname}-${pkgver}"
+}
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  python setup.py build
+}
+
+check() {
+  cd "${pkgname}-${pkgver}"
+  pytest -v
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  python setup.py install --skip-build \
+--optimize=1 \
+--root="${pkgdir}"
+  install -vDm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+}


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

2021-05-07 Thread David Runge via arch-commits
Date: Friday, May 7, 2021 @ 16:59:12
  Author: dvzrv
Revision: 928638

upgpkg: python-langdetect 1.0.9-1: Upgrade to 1.0.9.

Modified:
  python-langdetect/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-07 16:56:31 UTC (rev 928637)
+++ PKGBUILD2021-05-07 16:59:12 UTC (rev 928638)
@@ -2,8 +2,8 @@
 
 _name=langdetect
 pkgname=python-langdetect
-pkgver=1.0.8
-pkgrel=3
+pkgver=1.0.9
+pkgrel=1
 pkgdesc="Language detection library ported from Google's language-detection"
 arch=('any')
 url="https://github.com/Mimino666/langdetect;
@@ -12,7 +12,8 @@
 makedepends=('python-setuptools')
 checkdepends=('python-pytest')
 
source=("https://files.pythonhosted.org/packages/source/l/${_name}/${_name}-${pkgver}.tar.gz;)
-sha512sums=('beade4e33abd25364ead64c30b3631615526effa7788c50e0b2bfac454e7b69a33742780f838ddf5df5292dadf0449ea8f3a4197214d84a164cbecee76020a4d')
+sha512sums=('7558d674c47b080c79e43a00a25d2c7f77188cf60bea2cecb3bebb803d75e1aa42b43c74bd26ea1b541f4cb927421908882cbec01a91f0913984217e71ccc8db')
+b2sums=('ea8a9c3f16a2987c080742473bff4f2c1503f53fb3c2b40b0b1d6212bb6133ea22dce7864ffcfb8968c3a46b157d45cb3e2cf6f84bdbed0266cc716a853b032c')
 
 prepare() {
   mv -v "${_name}-${pkgver}" "${pkgname}-${pkgver}"
@@ -32,7 +33,6 @@
   cd "${pkgname}-${pkgver}"
   python setup.py install --skip-build \
 --optimize=1 \
---prefix=/usr \
 --root="${pkgdir}"
   install -vDm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
 }


[arch-commits] Commit in nextcloud-app-spreed/repos/community-any (PKGBUILD PKGBUILD)

2021-05-07 Thread David Runge via arch-commits
Date: Friday, May 7, 2021 @ 16:56:31
  Author: dvzrv
Revision: 928637

archrelease: copy trunk to community-any

Added:
  nextcloud-app-spreed/repos/community-any/PKGBUILD
(from rev 928636, nextcloud-app-spreed/trunk/PKGBUILD)
Deleted:
  nextcloud-app-spreed/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-07 16:56:22 UTC (rev 928636)
+++ PKGBUILD2021-05-07 16:56:31 UTC (rev 928637)
@@ -1,39 +0,0 @@
-# Maintainer: David Runge 
-
-_name=spreed
-pkgname=nextcloud-app-spreed
-pkgver=11.2.0
-pkgrel=1
-# epoch needed, because of fake semver:
-# https://github.com/nextcloud/spreed/issues/1685
-epoch=1
-pkgdesc="Video & audio-conferencing using WebRTC"
-arch=('any')
-url="https://apps.nextcloud.com/apps/spreed;
-license=('AGPL3')
-groups=('nextcloud-apps')
-depends=('nextcloud>=21' 'nextcloud<22')
-checkdepends=('ripgrep' 'yq')
-source=("https://github.com/nextcloud/${_name}/releases/download/v${pkgver}/${_name}-${pkgver}.tar.gz;)
-sha512sums=('bec92e4cd0bb39d94cab6a8f432b71b92a7cc1893b0366eda004baf82ef771ab328c0c67ca8e48141f32297b0982e69475a1f21567c52e27e9c2fa7968f40552')
-b2sums=('e64f8237f41382f129dde703ab28a35566c82ddf1491cc2fa717f1bebc45bcb2c0cd0b71ec34ae5424b9bd199713635356dc963ecf72b7f1764ceecac285c740')
-
-prepare() {
-  find ${_name} -type f -exec chmod 644 {} +
-  find ${_name} -type d -exec chmod 755 {} +
-}
-
-check() {
-  local _app_min_major_version="$(xq 
'.info.dependencies.nextcloud["@min-version"]' "${_name}/appinfo/info.xml"| sed 
's/"//g')"
-  local _app_max_major_version="$(xq 
'.info.dependencies.nextcloud["@max-version"]' "${_name}/appinfo/info.xml"| sed 
's/"//g')"
-  local _nextcloud_major_version="$(rg "OC_Version = " 
/usr/share/webapps/nextcloud/version.php |cut -d'(' -f2| cut -d ',' -f1)"
-  if [[ "$(vercmp "${_nextcloud_major_version}" "${_app_min_major_version}")" 
-lt 0 ]] || [[ "$(vercmp "${_nextcloud_major_version}" 
"${_app_max_major_version}")" -gt 0 ]] ; then
-printf "%s requires nextcloud >= %s/ nextcloud <= %s, but nextcloud %s is 
provided.\n" "$pkgname" "${_app_min_major_version}" "${_app_max_major_version}" 
"${_nextcloud_major_version}"
-exit 1
-  fi
-}
-
-package() {
-  install -vdm 755 "${pkgdir}/usr/share/webapps/nextcloud/apps/"
-  cp -av "${_name}" "${pkgdir}/usr/share/webapps/nextcloud/apps/"
-}

Copied: nextcloud-app-spreed/repos/community-any/PKGBUILD (from rev 928636, 
nextcloud-app-spreed/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-07 16:56:31 UTC (rev 928637)
@@ -0,0 +1,39 @@
+# Maintainer: David Runge 
+
+_name=spreed
+pkgname=nextcloud-app-spreed
+pkgver=11.2.1
+pkgrel=1
+# epoch needed, because of fake semver:
+# https://github.com/nextcloud/spreed/issues/1685
+epoch=1
+pkgdesc="Video & audio-conferencing using WebRTC"
+arch=('any')
+url="https://apps.nextcloud.com/apps/spreed;
+license=('AGPL3')
+groups=('nextcloud-apps')
+depends=('nextcloud>=21' 'nextcloud<22')
+checkdepends=('ripgrep' 'yq')
+source=("https://github.com/nextcloud/${_name}/releases/download/v${pkgver}/${_name}-${pkgver}.tar.gz;)
+sha512sums=('f21a2697984753837c720e040becc161a54a29dc0b5ac7099e3ecfe3e9da47d72d9d9f99673ff30ea43cd9e3f7dd8c68e7a1d0768a5cbc0e883090de09c6')
+b2sums=('2ed8927f94886083f67ddbb6dc6e438cc9329bef27fecf35ab4195e344fdb533984f7f63178e3da2ae76560d8d6aabb156ad49a11b21ce28b96f56126c4130c1')
+
+prepare() {
+  find ${_name} -type f -exec chmod 644 {} +
+  find ${_name} -type d -exec chmod 755 {} +
+}
+
+check() {
+  local _app_min_major_version="$(xq 
'.info.dependencies.nextcloud["@min-version"]' "${_name}/appinfo/info.xml"| sed 
's/"//g')"
+  local _app_max_major_version="$(xq 
'.info.dependencies.nextcloud["@max-version"]' "${_name}/appinfo/info.xml"| sed 
's/"//g')"
+  local _nextcloud_major_version="$(rg "OC_Version = " 
/usr/share/webapps/nextcloud/version.php |cut -d'(' -f2| cut -d ',' -f1)"
+  if [[ "$(vercmp "${_nextcloud_major_version}" "${_app_min_major_version}")" 
-lt 0 ]] || [[ "$(vercmp "${_nextcloud_major_version}" 
"${_app_max_major_version}")" -gt 0 ]] ; then
+printf "%s requires nextcloud >= %s/ nextcloud <= %s, but nextcloud %s is 
provided.\n" "$pkgname" "${_app_min_major_version}" "${_app_max_major_version}" 
"${_nextcloud_major_version}"
+exit 1
+  fi
+}
+
+package() {
+  install -vdm 755 "${pkgdir}/usr/share/webapps/nextcloud/apps/"
+  cp -av "${_name}" "${pkgdir}/usr/share/webapps/nextcloud/apps/"
+}


[arch-commits] Commit in nextcloud-app-spreed/trunk (PKGBUILD)

2021-05-07 Thread David Runge via arch-commits
Date: Friday, May 7, 2021 @ 16:56:22
  Author: dvzrv
Revision: 928636

upgpkg: nextcloud-app-spreed 1:11.2.1-1: Upgrade to 11.2.1.

Modified:
  nextcloud-app-spreed/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-07 16:55:02 UTC (rev 928635)
+++ PKGBUILD2021-05-07 16:56:22 UTC (rev 928636)
@@ -2,7 +2,7 @@
 
 _name=spreed
 pkgname=nextcloud-app-spreed
-pkgver=11.2.0
+pkgver=11.2.1
 pkgrel=1
 # epoch needed, because of fake semver:
 # https://github.com/nextcloud/spreed/issues/1685
@@ -15,8 +15,8 @@
 depends=('nextcloud>=21' 'nextcloud<22')
 checkdepends=('ripgrep' 'yq')
 
source=("https://github.com/nextcloud/${_name}/releases/download/v${pkgver}/${_name}-${pkgver}.tar.gz;)
-sha512sums=('bec92e4cd0bb39d94cab6a8f432b71b92a7cc1893b0366eda004baf82ef771ab328c0c67ca8e48141f32297b0982e69475a1f21567c52e27e9c2fa7968f40552')
-b2sums=('e64f8237f41382f129dde703ab28a35566c82ddf1491cc2fa717f1bebc45bcb2c0cd0b71ec34ae5424b9bd199713635356dc963ecf72b7f1764ceecac285c740')
+sha512sums=('f21a2697984753837c720e040becc161a54a29dc0b5ac7099e3ecfe3e9da47d72d9d9f99673ff30ea43cd9e3f7dd8c68e7a1d0768a5cbc0e883090de09c6')
+b2sums=('2ed8927f94886083f67ddbb6dc6e438cc9329bef27fecf35ab4195e344fdb533984f7f63178e3da2ae76560d8d6aabb156ad49a11b21ce28b96f56126c4130c1')
 
 prepare() {
   find ${_name} -type f -exec chmod 644 {} +


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

2021-05-07 Thread David Runge via arch-commits
Date: Friday, May 7, 2021 @ 16:55:02
  Author: dvzrv
Revision: 928635

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-07 16:54:52 UTC (rev 928634)
+++ PKGBUILD2021-05-07 16:55:02 UTC (rev 928635)
@@ -1,130 +0,0 @@
-# Maintainer: David Runge 
-
-pkgname=containers-common
-pkgver=0.37.1
-_image_pkgver=5.12.0
-_podman_pkgver=3.1.2
-_skopeo_pkgver=1.2.3
-_storage_pkgver=1.30.1
-pkgrel=2
-pkgdesc="Configuration files and manpages for containers"
-arch=('any')
-url="https://github.com/containers;
-license=('Apache')
-makedepends=('go-md2man')
-backup=(
-  'etc/containers/containers.conf'
-  'etc/containers/mounts.conf'
-  'etc/containers/policy.json'
-  'etc/containers/registries.conf'
-  'etc/containers/seccomp.json'
-  'etc/containers/storage.conf'
-)
-# configuration override directories need to exist
-options=('emptydirs')
-source=("common-${pkgver}.tar.gz::https://github.com/containers/common/archive/v${pkgver}.tar.gz;
-
"image-${_image_pkgver}.tar.gz::https://github.com/containers/image/archive/v${_image_pkgver}.tar.gz;
-
"podman-${_podman_pkgver}.tar.gz::https://github.com/containers/podman/archive/v${_podman_pkgver}.tar.gz;
-
"skopeo-${_skopeo_pkgver}.tar.gz::https://github.com/containers/skopeo/archive/v${_skopeo_pkgver}.tar.gz;
-
"storage-${_storage_pkgver}.tar.gz::https://github.com/containers/storage/archive/v${_storage_pkgver}.tar.gz;
-'mounts.conf'
-)
-sha512sums=('99e88cf44070aba93ac044c5f27a2d4ed3257360d78c71c43afda2071c21356182cbeaa205231cf121dcfe4687b726e025182ea6413ac6c8718fb3a95a191d5f'
-
'c690b1c4fd67754c41cc590279382a8f4228e3160db5ba482455b4c0ef4b6bd40ea92d0ca7662b2cc1504d82afdb33bdce8d60552ba3e216102ed34e1418d8c0'
-
'fdc26368f3cce6a11fe9adeae34a2f04396a554bb5f245e07fc98d1ce21dff66faba5549e9e0b94793d67768ff03fea2990e7a2759dd41ed2b72778431f5dd9d'
-
'06e3ddc17f45a7b145c44c58d67894d3fff809cd1521753027c703c44425241d4580096fd44d9156eae70336544110e2af95ab6f9d22deff88903c6e77bbe4d8'
-
'f9a78c20992eea9812f5589938086960bbcb169807a4004c3b3df3e143e2e4668e95cfdad0c59d7cd1d906be5cf0c619863ec4b306cfd6ff03bb1fd7be49b46b'
-
'11fa515bbb0686d2b49c4fd2ab35348cb19f9c6780d6eb951a33b07ed7b7c72a676627f36e8c74e1a2d15e306d4537178f0e127fd3490f6131d078e56b46d5e1')
-b2sums=('63ecd7ba7a3d17ee5e57d96b773c251020d47f1b79e7590d3f81c811e50cea4786bea15233ae463a44eac0357199db217f0a3f653ed9b20a5cee61394b70d64a'
-
'c90e13a400fd7de3d4d57e6e5490d36f47949aa2170f832cd22d34e663ede528fa85cc84c836d48301568657b78a8fafcea2c7ed475da179dc6f0507b8501523'
-
'8536f6856e436467541f7714e75d5055545e1514604d6541671894117e752609a9e791355c162ef8fcdbc0cbd992823ecab8a3ab760bab3a469d9768b6b008e4'
-
'3db447726d6a545f5225aa37a215da8a7893ea8beae08547bf93148d632a80863173b014949cc69cb033a2e68653738fe86d1c8758b12fc3c2c16ebb5582b203'
-
'e3cd50ec72ab850a0e49c7d9081eda9cdcd3fa91c44471605531e5c4bca74502120b536adb93ff83c45e2bb3400306bc1a9a6fa364a256a16f4962e8d0d1e76a'
-
'2f4b0af3271103362a898e7fcc3ec05f06755902ad664ac3107bb8debb8b2ac0d50de311d5fc651279a817a56e3ff05864a7e77c0d8fc628ff7411bfb98c9b69')
-
-prepare() {
-  (
-cd "storage-${_storage_pkgver}"
-sed -r 's/(GOMD2MAN = ).*/\1 go-md2man/' -i docs/Makefile
-  )
-}
-
-build() {
-  (
-cd "common-${pkgver}/docs"
-for _man_page in *.md; do
-  go-md2man -in "$_man_page" -out "${_man_page//.md}"
-done
-  )
-  (
-cd "image-${_image_pkgver}/docs"
-mkdir -vp man5
-mv -v *.5.md man5/
-for _man_page in *.md; do
-  go-md2man -in "$_man_page" -out "${_man_page//.md}.1"
-done
-for _man_page in man5/*.md; do
-  go-md2man -in "$_man_page" -out "${_man_page//.md}"
-done
-  )
-  (
-cd "podman-${_podman_pkgver}"
-go-md2man -in docs/source/markdown/containers-mounts.conf.5.md \
-  -out containers-mounts.conf.5
-go-md2man -in pkg/hooks/docs/oci-hooks.5.md \
-  -out oci-hooks.5
-  )
-  (
-cd "storage-${_storage_pkgver}"
-make -C docs
-  )
-}
-
-package() {
-  # directories
-  install -vdm 755 "${pkgdir}/etc/containers/oci/hooks.d/"
-  install -vdm 755 "${pkgdir}/etc/containers/registries.conf.d/"
-  install -vdm 755 "${pkgdir}/usr/share/containers/oci/hooks.d/"
-  install -vdm 755 "${pkgdir}/var/lib/containers/"
-
-  # configs
-  install -vDm 644 mounts.conf -t "${pkgdir}/etc/containers/"
-
-  (
-

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

2021-05-07 Thread David Runge via arch-commits
Date: Friday, May 7, 2021 @ 16:54:52
  Author: dvzrv
Revision: 928634

upgpkg: containers-common 0.38.0-2: Upgrade to 0.38.0.

Upgrade storage to 1.30.2.

Modified:
  containers-common/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-07 16:54:28 UTC (rev 928633)
+++ PKGBUILD2021-05-07 16:54:52 UTC (rev 928634)
@@ -1,11 +1,11 @@
 # Maintainer: David Runge 
 
 pkgname=containers-common
-pkgver=0.37.1
+pkgver=0.38.0
 _image_pkgver=5.12.0
 _podman_pkgver=3.1.2
 _skopeo_pkgver=1.2.3
-_storage_pkgver=1.30.1
+_storage_pkgver=1.30.2
 pkgrel=2
 pkgdesc="Configuration files and manpages for containers"
 arch=('any')
@@ -29,17 +29,17 @@
 
"storage-${_storage_pkgver}.tar.gz::https://github.com/containers/storage/archive/v${_storage_pkgver}.tar.gz;
 'mounts.conf'
 )
-sha512sums=('99e88cf44070aba93ac044c5f27a2d4ed3257360d78c71c43afda2071c21356182cbeaa205231cf121dcfe4687b726e025182ea6413ac6c8718fb3a95a191d5f'
+sha512sums=('41000f5bb30396025fb0bd061f72096d8d18999dfdebba804d5dd379483632811d7555e482c0f457a75e38904a59b6d436b0f537a443b273b540e7c6e8ab09d9'
 
'c690b1c4fd67754c41cc590279382a8f4228e3160db5ba482455b4c0ef4b6bd40ea92d0ca7662b2cc1504d82afdb33bdce8d60552ba3e216102ed34e1418d8c0'
 
'fdc26368f3cce6a11fe9adeae34a2f04396a554bb5f245e07fc98d1ce21dff66faba5549e9e0b94793d67768ff03fea2990e7a2759dd41ed2b72778431f5dd9d'
 
'06e3ddc17f45a7b145c44c58d67894d3fff809cd1521753027c703c44425241d4580096fd44d9156eae70336544110e2af95ab6f9d22deff88903c6e77bbe4d8'
-
'f9a78c20992eea9812f5589938086960bbcb169807a4004c3b3df3e143e2e4668e95cfdad0c59d7cd1d906be5cf0c619863ec4b306cfd6ff03bb1fd7be49b46b'
+
'88fbe0f868887039793fabb7f859ee578cd300571279eb06adbc1e3f194076e7085e8968d1a630eb3ab2f88e2b9f52526da41e18226bfa133f7c335263de6eab'
 
'11fa515bbb0686d2b49c4fd2ab35348cb19f9c6780d6eb951a33b07ed7b7c72a676627f36e8c74e1a2d15e306d4537178f0e127fd3490f6131d078e56b46d5e1')
-b2sums=('63ecd7ba7a3d17ee5e57d96b773c251020d47f1b79e7590d3f81c811e50cea4786bea15233ae463a44eac0357199db217f0a3f653ed9b20a5cee61394b70d64a'
+b2sums=('5253933e1899263004251371a173a45bd2c0c2a0f16324b997a90af3bf634e6484e0279cbc21b647b91a3a74966c53cffb0bb4d3f44ff2c6089bcafac6d13880'
 
'c90e13a400fd7de3d4d57e6e5490d36f47949aa2170f832cd22d34e663ede528fa85cc84c836d48301568657b78a8fafcea2c7ed475da179dc6f0507b8501523'
 
'8536f6856e436467541f7714e75d5055545e1514604d6541671894117e752609a9e791355c162ef8fcdbc0cbd992823ecab8a3ab760bab3a469d9768b6b008e4'
 
'3db447726d6a545f5225aa37a215da8a7893ea8beae08547bf93148d632a80863173b014949cc69cb033a2e68653738fe86d1c8758b12fc3c2c16ebb5582b203'
-
'e3cd50ec72ab850a0e49c7d9081eda9cdcd3fa91c44471605531e5c4bca74502120b536adb93ff83c45e2bb3400306bc1a9a6fa364a256a16f4962e8d0d1e76a'
+
'71e922626dd749b659c873e9f2b79228b777b96e84f259a998abdb048232a3e1033e7ee97a8144eaa1c35dee37f0813496f33964b5104347d7a5ad22fbecf845'
 
'2f4b0af3271103362a898e7fcc3ec05f06755902ad664ac3107bb8debb8b2ac0d50de311d5fc651279a817a56e3ff05864a7e77c0d8fc628ff7411bfb98c9b69')
 
 prepare() {


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

2021-05-07 Thread David Runge via arch-commits
Date: Friday, May 7, 2021 @ 16:54:28
  Author: dvzrv
Revision: 928633

archrelease: copy trunk to community-any

Added:
  nuitka/repos/community-any/PKGBUILD
(from rev 928632, nuitka/trunk/PKGBUILD)
Deleted:
  nuitka/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-07 16:54:20 UTC (rev 928632)
+++ PKGBUILD2021-05-07 16:54:28 UTC (rev 928633)
@@ -1,45 +0,0 @@
-# Maintainer: David Runge 
-# Contributor: Alexander F. Rødseth 
-# Contributor: Panagiotis Mavrogiorgos 
-
-_name=Nuitka
-pkgname=nuitka
-pkgver=0.6.14.4
-pkgrel=1
-pkgdesc='Python compiler with full language support and CPython compatibility'
-arch=('any')
-url='https://nuitka.net/'
-license=('Apache')
-depends=('python-appdirs' 'scons')
-makedepends=('python-setuptools')
-checkdepends=('ccache' 'fuse2' 'python-boto3' 'python-brotli' 'strace')
-optdepends=('ccache: for build caching'
-'chrpath: for building standalone executables')
-options=(!emptydirs)
-source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz;)
-sha512sums=('180a13cc4408a3bc3057b8cd4d637d6d5e14d7fe270b43b17d94233e7dbe08497bdc6beab27c940175f8707b7ebef9464ed514bda907f430b47b84ad00bfa948')
-b2sums=('8642e62210bc873034342cb40e6a910d2ac6169910c007a80b48a4e82531e1049931917313407912182999afd5d5bcbad5f0b4aa0113ce710098dcc1a58c3051')
-
-prepare() {
-  mv -v "${_name}-${pkgver}" "${pkgname}-${pkgver}"
-}
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  python setup.py build
-}
-
-check() {
-  cd "${pkgname}-${pkgver}"
-  # skip tests for other interpreters and those that require network access
-  ./tests/run-tests --no-other-python --skip-reflection-test 
--skip-other-cpython-tests --skip-onefile-tests
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  python setup.py install --skip-build \
-  --optimize=1 \
-  --root="${pkgdir}"
-  install -vDm 644 {Changelog,Developer_Manual,README}.rst \
--t "${pkgdir}/usr/share/doc/${pkgname}/"
-}

Copied: nuitka/repos/community-any/PKGBUILD (from rev 928632, 
nuitka/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-07 16:54:28 UTC (rev 928633)
@@ -0,0 +1,45 @@
+# Maintainer: David Runge 
+# Contributor: Alexander F. Rødseth 
+# Contributor: Panagiotis Mavrogiorgos 
+
+_name=Nuitka
+pkgname=nuitka
+pkgver=0.6.14.6
+pkgrel=1
+pkgdesc='Python compiler with full language support and CPython compatibility'
+arch=('any')
+url='https://nuitka.net/'
+license=('Apache')
+depends=('python-appdirs' 'scons')
+makedepends=('python-setuptools')
+checkdepends=('ccache' 'fuse2' 'python-boto3' 'python-brotli' 'strace')
+optdepends=('ccache: for build caching'
+'chrpath: for building standalone executables')
+options=(!emptydirs)
+source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz;)
+sha512sums=('9b3ed40f89e4f52b7ba5dd6bec2e02be9ac4ac1f38f824c9f5869b9b688ea33e4315b69a683b5bfd9cafb80cb745c8906d401ec5517d5c58d506854350d309f8')
+b2sums=('7fa61f0b8034820f7608239ee182c830131cd04d4bd738779b7c4036aa92afec4246d414fe82b0d4236fe1e696efa9b624d08e972822b867ef3c0dafa9e2cd7c')
+
+prepare() {
+  mv -v "${_name}-${pkgver}" "${pkgname}-${pkgver}"
+}
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  python setup.py build
+}
+
+check() {
+  cd "${pkgname}-${pkgver}"
+  # skip tests for other interpreters and those that require network access
+  ./tests/run-tests --no-other-python --skip-reflection-test 
--skip-other-cpython-tests --skip-onefile-tests
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  python setup.py install --skip-build \
+  --optimize=1 \
+  --root="${pkgdir}"
+  install -vDm 644 {Changelog,Developer_Manual,README}.rst \
+-t "${pkgdir}/usr/share/doc/${pkgname}/"
+}


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

2021-05-07 Thread David Runge via arch-commits
Date: Friday, May 7, 2021 @ 16:54:20
  Author: dvzrv
Revision: 928632

upgpkg: nuitka 0.6.14.6-1: Upgrade to 0.6.14.6.

Modified:
  nuitka/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-07 16:46:25 UTC (rev 928631)
+++ PKGBUILD2021-05-07 16:54:20 UTC (rev 928632)
@@ -4,7 +4,7 @@
 
 _name=Nuitka
 pkgname=nuitka
-pkgver=0.6.14.4
+pkgver=0.6.14.6
 pkgrel=1
 pkgdesc='Python compiler with full language support and CPython compatibility'
 arch=('any')
@@ -17,8 +17,8 @@
 'chrpath: for building standalone executables')
 options=(!emptydirs)
 
source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz;)
-sha512sums=('180a13cc4408a3bc3057b8cd4d637d6d5e14d7fe270b43b17d94233e7dbe08497bdc6beab27c940175f8707b7ebef9464ed514bda907f430b47b84ad00bfa948')
-b2sums=('8642e62210bc873034342cb40e6a910d2ac6169910c007a80b48a4e82531e1049931917313407912182999afd5d5bcbad5f0b4aa0113ce710098dcc1a58c3051')
+sha512sums=('9b3ed40f89e4f52b7ba5dd6bec2e02be9ac4ac1f38f824c9f5869b9b688ea33e4315b69a683b5bfd9cafb80cb745c8906d401ec5517d5c58d506854350d309f8')
+b2sums=('7fa61f0b8034820f7608239ee182c830131cd04d4bd738779b7c4036aa92afec4246d414fe82b0d4236fe1e696efa9b624d08e972822b867ef3c0dafa9e2cd7c')
 
 prepare() {
   mv -v "${_name}-${pkgver}" "${pkgname}-${pkgver}"


[arch-commits] Commit in nextcloud-app-news/repos/community-any (PKGBUILD PKGBUILD)

2021-05-07 Thread David Runge via arch-commits
Date: Friday, May 7, 2021 @ 16:46:25
  Author: dvzrv
Revision: 928631

archrelease: copy trunk to community-any

Added:
  nextcloud-app-news/repos/community-any/PKGBUILD
(from rev 928630, nextcloud-app-news/trunk/PKGBUILD)
Deleted:
  nextcloud-app-news/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-07 16:45:07 UTC (rev 928630)
+++ PKGBUILD2021-05-07 16:46:25 UTC (rev 928631)
@@ -1,31 +0,0 @@
-# Maintainer: David Runge 
-# Contributor: Jonas Heinrich 
-
-pkgname=nextcloud-app-news
-_name=news
-pkgver=15.4.2
-pkgrel=1
-pkgdesc="An RSS/Atom feed aggregator"
-arch=('any')
-url="https://github.com/nextcloud/news;
-license=('AGPL3')
-depends=('nextcloud>21' 'nextcloud<22')
-makedepends=('ripgrep' 'yq')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/nextcloud/${_name}/releases/download/${pkgver}/${_name}.tar.gz;)
-sha512sums=('be837c9f50a6e07818d01538b97f8e4bef3b9602b63f04fb0eb1fe8f33eba5f0c5c9090b1914b4086062ccbfcba007edbab77a5fc41ec5bb8122d0c77eb226a4')
-b2sums=('e869ba4685302db43b3909b60b5e15e327bbef44dcba9ca040b8f7f78b8b07e18c3465bcc9a8e0bdf5d85cdc8fefc36a871ad6277376a113f2f8ebfb0300c48d')
-
-check() {
-  local _app_min_major_version="$(xq 
'.info.dependencies.nextcloud["@min-version"]' "${_name}/appinfo/info.xml"| sed 
's/"//g')"
-  local _app_max_major_version="$(xq 
'.info.dependencies.nextcloud["@max-version"]' "${_name}/appinfo/info.xml"| sed 
's/"//g')"
-  local _nextcloud_major_version="$(rg "OC_Version = " 
/usr/share/webapps/nextcloud/version.php |cut -d'(' -f2| cut -d ',' -f1)"
-  if [[ "$(vercmp "${_nextcloud_major_version}" "${_app_min_major_version}")" 
-lt 0 ]] || [[ "$(vercmp "${_nextcloud_major_version}" 
"${_app_max_major_version}")" -gt 0 ]] ; then
-printf "%s requires nextcloud >= %s/ nextcloud <= %s, but nextcloud %s is 
provided.\n" "$pkgname" "${_app_min_major_version}" "${_app_max_major_version}" 
"${_nextcloud_major_version}"
-exit 1
-  fi
-}
-
-package() {
-  install -vdm 755 "${pkgdir}/usr/share/webapps/nextcloud/apps"
-  cp -av "${_name}" "${pkgdir}/usr/share/webapps/nextcloud/apps/"
-}

Copied: nextcloud-app-news/repos/community-any/PKGBUILD (from rev 928630, 
nextcloud-app-news/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-07 16:46:25 UTC (rev 928631)
@@ -0,0 +1,31 @@
+# Maintainer: David Runge 
+# Contributor: Jonas Heinrich 
+
+pkgname=nextcloud-app-news
+_name=news
+pkgver=15.4.3
+pkgrel=1
+pkgdesc="An RSS/Atom feed aggregator"
+arch=('any')
+url="https://github.com/nextcloud/news;
+license=('AGPL3')
+depends=('nextcloud>21' 'nextcloud<22')
+makedepends=('ripgrep' 'yq')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/nextcloud/${_name}/releases/download/${pkgver}/${_name}.tar.gz;)
+sha512sums=('40545903f23012417db981c0400fe9909cbbd3f7e595e891da85992e2eb97898f847369789827f88d49cddf3917d8285513556f5021339a699c423f50aa9f13b')
+b2sums=('fd1b662f2393d40644a53997764b803563c081ef2fe2c8fb37d0762073141cf700f888b1d169b5b959b7ff1f992c3a1914fa812c0c522818f37276a5fd8cc1dc')
+
+check() {
+  local _app_min_major_version="$(xq 
'.info.dependencies.nextcloud["@min-version"]' "${_name}/appinfo/info.xml"| sed 
's/"//g')"
+  local _app_max_major_version="$(xq 
'.info.dependencies.nextcloud["@max-version"]' "${_name}/appinfo/info.xml"| sed 
's/"//g')"
+  local _nextcloud_major_version="$(rg "OC_Version = " 
/usr/share/webapps/nextcloud/version.php |cut -d'(' -f2| cut -d ',' -f1)"
+  if [[ "$(vercmp "${_nextcloud_major_version}" "${_app_min_major_version}")" 
-lt 0 ]] || [[ "$(vercmp "${_nextcloud_major_version}" 
"${_app_max_major_version}")" -gt 0 ]] ; then
+printf "%s requires nextcloud >= %s/ nextcloud <= %s, but nextcloud %s is 
provided.\n" "$pkgname" "${_app_min_major_version}" "${_app_max_major_version}" 
"${_nextcloud_major_version}"
+exit 1
+  fi
+}
+
+package() {
+  install -vdm 755 "${pkgdir}/usr/share/webapps/nextcloud/apps"
+  cp -av "${_name}" "${pkgdir}/usr/share/webapps/nextcloud/apps/"
+}


[arch-commits] Commit in nextcloud-app-news/trunk (PKGBUILD)

2021-05-07 Thread David Runge via arch-commits
Date: Friday, May 7, 2021 @ 16:45:07
  Author: dvzrv
Revision: 928630

upgpkg: nextcloud-app-news 15.4.3-1: Upgrade to 15.4.3.

Modified:
  nextcloud-app-news/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-07 16:09:41 UTC (rev 928629)
+++ PKGBUILD2021-05-07 16:45:07 UTC (rev 928630)
@@ -3,7 +3,7 @@
 
 pkgname=nextcloud-app-news
 _name=news
-pkgver=15.4.2
+pkgver=15.4.3
 pkgrel=1
 pkgdesc="An RSS/Atom feed aggregator"
 arch=('any')
@@ -12,8 +12,8 @@
 depends=('nextcloud>21' 'nextcloud<22')
 makedepends=('ripgrep' 'yq')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/nextcloud/${_name}/releases/download/${pkgver}/${_name}.tar.gz;)
-sha512sums=('be837c9f50a6e07818d01538b97f8e4bef3b9602b63f04fb0eb1fe8f33eba5f0c5c9090b1914b4086062ccbfcba007edbab77a5fc41ec5bb8122d0c77eb226a4')
-b2sums=('e869ba4685302db43b3909b60b5e15e327bbef44dcba9ca040b8f7f78b8b07e18c3465bcc9a8e0bdf5d85cdc8fefc36a871ad6277376a113f2f8ebfb0300c48d')
+sha512sums=('40545903f23012417db981c0400fe9909cbbd3f7e595e891da85992e2eb97898f847369789827f88d49cddf3917d8285513556f5021339a699c423f50aa9f13b')
+b2sums=('fd1b662f2393d40644a53997764b803563c081ef2fe2c8fb37d0762073141cf700f888b1d169b5b959b7ff1f992c3a1914fa812c0c522818f37276a5fd8cc1dc')
 
 check() {
   local _app_min_major_version="$(xq 
'.info.dependencies.nextcloud["@min-version"]' "${_name}/appinfo/info.xml"| sed 
's/"//g')"


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

2021-05-07 Thread Jan Steffens via arch-commits
Date: Friday, May 7, 2021 @ 16:09:42
  Author: heftig
Revision: 414574

archrelease: copy trunk to testing-x86_64

Added:
  linux/repos/testing-x86_64/
  linux/repos/testing-x86_64/PKGBUILD
(from rev 414573, linux/trunk/PKGBUILD)
  linux/repos/testing-x86_64/config
(from rev 414573, linux/trunk/config)

--+
 PKGBUILD |  198 +
 config   |10472 +
 2 files changed, 10670 insertions(+)

The diff is longer than the limit of 200KB.
Use svn diff -r 414573:414574 to see the changes.


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

2021-05-07 Thread Jan Steffens via arch-commits
Date: Friday, May 7, 2021 @ 16:09:41
  Author: heftig
Revision: 928629

archrelease: copy trunk to community-testing-x86_64

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

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

Copied: deepin-anything-arch/repos/community-testing-x86_64/PKGBUILD (from rev 
928620, deepin-anything-arch/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2021-05-07 16:09:41 UTC (rev 928629)
@@ -0,0 +1,35 @@
+# Maintainer: Felix Yan 
+
+pkgname=deepin-anything-arch
+pkgver=5.0.7
+pkgrel=29
+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=('51e8488b4d0652d24afd1b5bd74e88140e2754354bfa85639c668479deca25e8163f3ffcf8bc1c6629d97d1cea24de89c65a76b8c9902745911fd0ed9b12b770')
+
+prepare() {
+  cd deepin-anything-$pkgver
+  # https://github.com/linuxdeepin/deepin-anything/issues/36
+  sed -i '454s/return;/return -1;/' kernelmod/vfs_kretprobes.c
+}
+
+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 netfilter-fullconenat/repos (4 files)

2021-05-07 Thread Jan Steffens via arch-commits
Date: Friday, May 7, 2021 @ 16:09:41
  Author: heftig
Revision: 928627

archrelease: copy trunk to community-testing-x86_64

Added:
  netfilter-fullconenat/repos/community-testing-x86_64/
  netfilter-fullconenat/repos/community-testing-x86_64/Kbuild
(from rev 928622, netfilter-fullconenat/trunk/Kbuild)
  netfilter-fullconenat/repos/community-testing-x86_64/PKGBUILD
(from rev 928622, netfilter-fullconenat/trunk/PKGBUILD)
  
netfilter-fullconenat/repos/community-testing-x86_64/netfilter-fullconenat.conf
(from rev 928622, netfilter-fullconenat/trunk/netfilter-fullconenat.conf)

+
 Kbuild |1 +
 PKGBUILD   |   41 +
 netfilter-fullconenat.conf |1 +
 3 files changed, 43 insertions(+)

Copied: netfilter-fullconenat/repos/community-testing-x86_64/Kbuild (from rev 
928622, netfilter-fullconenat/trunk/Kbuild)
===
--- community-testing-x86_64/Kbuild (rev 0)
+++ community-testing-x86_64/Kbuild 2021-05-07 16:09:41 UTC (rev 928627)
@@ -0,0 +1 @@
+obj-m = xt_FULLCONENAT.o

Copied: netfilter-fullconenat/repos/community-testing-x86_64/PKGBUILD (from rev 
928622, netfilter-fullconenat/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2021-05-07 16:09:41 UTC (rev 928627)
@@ -0,0 +1,41 @@
+# Maintainer: Felix Yan 
+# Contributor: Edward Pacman 
+
+pkgname=netfilter-fullconenat
+pkgver=r73.0cf3b48
+pkgrel=111
+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')
+source=("netfilter-fullconenat.conf" Kbuild
+
"${pkgname}::git+https://github.com/Chion82/netfilter-full-cone-nat.git;)
+sha256sums=('a17dfdf1fd046219daeacc60065e3a81c80c2eb2cfdf6d8068278c509577f571'
+'7ff12ad066a68c65f23fc7e01654ca459ce3458172e3dce30f42553fa44dd7c2'
+'SKIP')
+
+pkgver() {
+  cd "$srcdir/${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)"
+  )
+}
+
+build() {
+  cd $pkgname
+  ln -s ../Kbuild
+  make -C /usr/src/linux M=$PWD modules
+}
+
+package() {
+  # Install modules-load.conf
+  install -Dm644 netfilter-fullconenat.conf 
"${pkgdir}/usr/lib/modules-load.d/netfilter-fullconenat.conf"
+
+  install -Dt 
"${pkgdir}/usr/lib/modules/$(

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

2021-05-07 Thread Jan Steffens via arch-commits
Date: Friday, May 7, 2021 @ 16:09:41
  Author: heftig
Revision: 928628

archrelease: copy trunk to community-testing-x86_64

Added:
  vhba-module/repos/community-testing-x86_64/
  vhba-module/repos/community-testing-x86_64/60-vhba.rules
(from rev 928620, vhba-module/trunk/60-vhba.rules)
  vhba-module/repos/community-testing-x86_64/PKGBUILD
(from rev 928620, vhba-module/trunk/PKGBUILD)
  vhba-module/repos/community-testing-x86_64/dkms.conf
(from rev 928620, vhba-module/trunk/dkms.conf)

---+
 60-vhba.rules |1 +
 PKGBUILD  |   56 
 dkms.conf |9 +
 3 files changed, 66 insertions(+)

Copied: vhba-module/repos/community-testing-x86_64/60-vhba.rules (from rev 
928620, vhba-module/trunk/60-vhba.rules)
===
--- community-testing-x86_64/60-vhba.rules  (rev 0)
+++ community-testing-x86_64/60-vhba.rules  2021-05-07 16:09:41 UTC (rev 
928628)
@@ -0,0 +1 @@
+ACTION=="add", KERNEL=="vhba_ctl", NAME="vhba_ctl", MODE="0660", OWNER="root", 
GROUP="cdemu", TAG+="uaccess"

Copied: vhba-module/repos/community-testing-x86_64/PKGBUILD (from rev 928620, 
vhba-module/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2021-05-07 16:09:41 UTC (rev 928628)
@@ -0,0 +1,56 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Ray Rashif 
+# Contributor: Mateusz Herych 
+# Contributor: Charles Lindsay 
+
+pkgbase=vhba-module
+pkgname=(vhba-module vhba-module-dkms)
+pkgver=20210418
+pkgrel=5
+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;
+60-vhba.rules dkms.conf)
+sha256sums=('18bd82ae27721ad1612b3c31accd81898ae326370964385ca52a2a66b67a3f85'
+'3052cb1cadbdf4bfb0b588bb8ed80691940d8dd63dc5502943d597eaf9f40c3b'
+'8cab0ebb4fee72069d63616b0983f105b98d1261e72e9bef5509a6e60bc382a7')
+
+prepare() {
+  cd $pkgbase-$pkgver
+  sed -i 's/20190302/20190410/' Makefile  # Fixup VHBA_VERSION
+}
+
+build() {
+  cd $pkgbase-$pkgver
+  make KERNELRELEASE="$(

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

2021-05-07 Thread Jan Steffens via arch-commits
Date: Friday, May 7, 2021 @ 16:09:43
  Author: heftig
Revision: 414575

archrelease: copy trunk to testing-x86_64

Added:
  linux-zen/repos/testing-x86_64/
  linux-zen/repos/testing-x86_64/PKGBUILD
(from rev 414573, linux-zen/trunk/PKGBUILD)
  linux-zen/repos/testing-x86_64/config
(from rev 414573, linux-zen/trunk/config)

--+
 PKGBUILD |  198 +
 config   |10524 +
 2 files changed, 10722 insertions(+)

The diff is longer than the limit of 200KB.
Use svn diff -r 414574:414575 to see the changes.


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

2021-05-07 Thread Jan Steffens via arch-commits
Date: Friday, May 7, 2021 @ 16:09:40
  Author: heftig
Revision: 928625

archrelease: copy trunk to community-testing-x86_64

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

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

Copied: broadcom-wl/repos/community-testing-x86_64/PKGBUILD (from rev 928620, 
broadcom-wl/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2021-05-07 16:09:40 UTC (rev 928625)
@@ -0,0 +1,41 @@
+# 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=291
+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 bbswitch/repos (4 files)

2021-05-07 Thread Jan Steffens via arch-commits
Date: Friday, May 7, 2021 @ 16:09:40
  Author: heftig
Revision: 928626

archrelease: copy trunk to community-testing-x86_64

Added:
  bbswitch/repos/community-testing-x86_64/
  bbswitch/repos/community-testing-x86_64/0001-proc_ops-struct.patch
(from rev 928622, bbswitch/trunk/0001-proc_ops-struct.patch)
  bbswitch/repos/community-testing-x86_64/0002-kernel-5.7.patch
(from rev 928622, bbswitch/trunk/0002-kernel-5.7.patch)
  bbswitch/repos/community-testing-x86_64/PKGBUILD
(from rev 928623, 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-testing-x86_64/0001-proc_ops-struct.patch 
(from rev 928622, bbswitch/trunk/0001-proc_ops-struct.patch)
===
--- community-testing-x86_64/0001-proc_ops-struct.patch 
(rev 0)
+++ community-testing-x86_64/0001-proc_ops-struct.patch 2021-05-07 16:09:40 UTC 
(rev 928626)
@@ -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-testing-x86_64/0002-kernel-5.7.patch (from rev 
928622, bbswitch/trunk/0002-kernel-5.7.patch)
===
--- community-testing-x86_64/0002-kernel-5.7.patch  
(rev 0)
+++ community-testing-x86_64/0002-kernel-5.7.patch  2021-05-07 16:09:40 UTC 
(rev 928626)
@@ -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-testing-x86_64/PKGBUILD (from rev 928623, 
bbswitch/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2021-05-07 16:09:40 UTC (rev 928626)
@@ -0,0 +1,50 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: M0Rf30
+# Contributor: Samsagax 
+
+pkgbase=bbswitch
+pkgname=(bbswitch bbswitch-dkms)
+pkgver=0.8
+pkgrel=412
+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 tp_smapi/repos (2 files)

2021-05-07 Thread Jan Steffens via arch-commits
Date: Friday, May 7, 2021 @ 16:09:39
  Author: heftig
Revision: 928624

archrelease: copy trunk to community-testing-x86_64

Added:
  tp_smapi/repos/community-testing-x86_64/
  tp_smapi/repos/community-testing-x86_64/PKGBUILD
(from rev 928622, tp_smapi/trunk/PKGBUILD)

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

Copied: tp_smapi/repos/community-testing-x86_64/PKGBUILD (from rev 928622, 
tp_smapi/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2021-05-07 16:09:39 UTC (rev 928624)
@@ -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=299
+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 virtualbox-host-modules-arch/repos (2 files)

2021-05-07 Thread Jan Steffens via arch-commits
Date: Friday, May 7, 2021 @ 16:09:39
  Author: heftig
Revision: 928623

archrelease: copy trunk to community-testing-x86_64

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

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

Copied: virtualbox-host-modules-arch/repos/community-testing-x86_64/PKGBUILD 
(from rev 928620, virtualbox-host-modules-arch/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2021-05-07 16:09:39 UTC (rev 928623)
@@ -0,0 +1,39 @@
+# Maintainer: Sébastien Luttringer
+# Contributor: Ionut Biru 
+
+pkgname='virtualbox-host-modules-arch'
+pkgver=6.1.22
+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 nvidia/repos (testing-x86_64 testing-x86_64/PKGBUILD)

2021-05-07 Thread Jan Steffens via arch-commits
Date: Friday, May 7, 2021 @ 16:09:40
  Author: heftig
Revision: 414573

archrelease: copy trunk to testing-x86_64

Added:
  nvidia/repos/testing-x86_64/
  nvidia/repos/testing-x86_64/PKGBUILD
(from rev 414572, nvidia/trunk/PKGBUILD)

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

Copied: nvidia/repos/testing-x86_64/PKGBUILD (from rev 414572, 
nvidia/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2021-05-07 16:09:40 UTC (rev 414573)
@@ -0,0 +1,39 @@
+# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Felix Yan 
+# Contributor: Thomas Baechler 
+
+pkgname=nvidia
+pkgver=465.27
+pkgrel=5
+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 r8168/repos (2 files)

2021-05-07 Thread Jan Steffens via arch-commits
Date: Friday, May 7, 2021 @ 16:09:37
  Author: heftig
Revision: 928622

archrelease: copy trunk to community-testing-x86_64

Added:
  r8168/repos/community-testing-x86_64/
  r8168/repos/community-testing-x86_64/PKGBUILD
(from rev 928620, r8168/trunk/PKGBUILD)

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

Copied: r8168/repos/community-testing-x86_64/PKGBUILD (from rev 928620, 
r8168/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2021-05-07 16:09:37 UTC (rev 928622)
@@ -0,0 +1,38 @@
+# Maintainer: Massimiliano Torromeo 
+# Contributor: Bob Fanger < bfanger(at)gmail >
+# Contributor: Filip , Det < nimetonmaili(at)gmail >
+
+pkgname=r8168
+pkgver=8.048.03
+pkgrel=91
+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)
+sha256sums=('0f191c4dc2f2e1aef6789d34820305fae27690d20212f2ac12ded634eb786d8c')
+
+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" \
+   EXTRA_CFLAGS="-DCONFIG_R8168_NAPI -DCONFIG_R8168_VLAN 
-DCONFIG_ASPM -DENABLE_S5WOL -DENABLE_EEE" \
+   modules
+}
+
+package() {
+   depends=('glibc' 'linux')
+
+   local extradir=/usr/lib/modules/$(

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

2021-05-07 Thread Jan Steffens via arch-commits
Date: Friday, May 7, 2021 @ 16:09:36
  Author: heftig
Revision: 928621

archrelease: copy trunk to community-testing-x86_64

Added:
  acpi_call/repos/community-testing-x86_64/
  acpi_call/repos/community-testing-x86_64/PKGBUILD
(from rev 928620, acpi_call/trunk/PKGBUILD)

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

Copied: acpi_call/repos/community-testing-x86_64/PKGBUILD (from rev 928620, 
acpi_call/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2021-05-07 16:09:36 UTC (rev 928621)
@@ -0,0 +1,38 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: mortzu 
+# Contributor: fnord0 
+
+pkgname=acpi_call
+pkgver=1.2.1
+pkgrel=52
+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-headers' "acpi_call-dkms=$pkgver")
+conflicts=('acpi_call-dkms')
+
+build() {
+  _kernver=$(

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

2021-05-07 Thread Jan Steffens via arch-commits
Date: Friday, May 7, 2021 @ 16:08:51
  Author: heftig
Revision: 928620

5.0.7-29: linux 5.12.2.arch1-1

Modified:
  deepin-anything-arch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-07 16:08:48 UTC (rev 928619)
+++ PKGBUILD2021-05-07 16:08:51 UTC (rev 928620)
@@ -2,7 +2,7 @@
 
 pkgname=deepin-anything-arch
 pkgver=5.0.7
-pkgrel=28
+pkgrel=29
 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 virtualbox-host-modules-arch/trunk (PKGBUILD)

2021-05-07 Thread Jan Steffens via arch-commits
Date: Friday, May 7, 2021 @ 16:08:38
  Author: heftig
Revision: 928613

6.1.22-4: linux 5.12.2.arch1-1

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

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-07 16:08:37 UTC (rev 928612)
+++ PKGBUILD2021-05-07 16:08:38 UTC (rev 928613)
@@ -3,7 +3,7 @@
 
 pkgname='virtualbox-host-modules-arch'
 pkgver=6.1.22
-pkgrel=3
+pkgrel=4
 pkgdesc='Virtualbox host kernel modules for Arch Kernel'
 arch=('x86_64')
 url='https://virtualbox.org/'


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

2021-05-07 Thread Jan Steffens via arch-commits
Date: Friday, May 7, 2021 @ 16:08:44
  Author: heftig
Revision: 928616

0.8-412: linux 5.12.2.arch1-1

Modified:
  bbswitch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-07 16:08:41 UTC (rev 928615)
+++ PKGBUILD2021-05-07 16:08:44 UTC (rev 928616)
@@ -5,7 +5,7 @@
 pkgbase=bbswitch
 pkgname=(bbswitch bbswitch-dkms)
 pkgver=0.8
-pkgrel=411
+pkgrel=412
 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 broadcom-wl/trunk (PKGBUILD)

2021-05-07 Thread Jan Steffens via arch-commits
Date: Friday, May 7, 2021 @ 16:08:41
  Author: heftig
Revision: 928615

6.30.223.271-291: linux 5.12.2.arch1-1

Modified:
  broadcom-wl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-07 16:08:39 UTC (rev 928614)
+++ PKGBUILD2021-05-07 16:08:41 UTC (rev 928615)
@@ -5,7 +5,7 @@
 #_kernelname=-custom  # Build against kernel with a different name
 pkgname=${_module}${_kernelname}
 pkgver=6.30.223.271
-pkgrel=290
+pkgrel=291
 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 r8168/trunk (PKGBUILD)

2021-05-07 Thread Jan Steffens via arch-commits
Date: Friday, May 7, 2021 @ 16:08:45
  Author: heftig
Revision: 928617

8.048.03-91: linux 5.12.2.arch1-1

Modified:
  r8168/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-07 16:08:44 UTC (rev 928616)
+++ PKGBUILD2021-05-07 16:08:45 UTC (rev 928617)
@@ -4,7 +4,7 @@
 
 pkgname=r8168
 pkgver=8.048.03
-pkgrel=90
+pkgrel=91
 pkgdesc="A kernel module for Realtek 8168 network cards"
 url="http://www.realtek.com.tw;
 license=("GPL")


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

2021-05-07 Thread Jan Steffens via arch-commits
Date: Friday, May 7, 2021 @ 16:08:49
  Author: heftig
Revision: 414572

465.27-5: linux 5.12.2.arch1-1

Modified:
  nvidia/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-07 16:08:11 UTC (rev 414571)
+++ PKGBUILD2021-05-07 16:08:49 UTC (rev 414572)
@@ -4,7 +4,7 @@
 
 pkgname=nvidia
 pkgver=465.27
-pkgrel=4
+pkgrel=5
 pkgdesc="NVIDIA drivers for linux"
 arch=('x86_64')
 url="https://www.nvidia.com/;


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

2021-05-07 Thread Jan Steffens via arch-commits
Date: Friday, May 7, 2021 @ 16:08:48
  Author: heftig
Revision: 928619

1.2.1-52: linux 5.12.2.arch1-1

Modified:
  acpi_call/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-07 16:08:46 UTC (rev 928618)
+++ PKGBUILD2021-05-07 16:08:48 UTC (rev 928619)
@@ -4,7 +4,7 @@
 
 pkgname=acpi_call
 pkgver=1.2.1
-pkgrel=51
+pkgrel=52
 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')


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

2021-05-07 Thread Jan Steffens via arch-commits
Date: Friday, May 7, 2021 @ 16:08:46
  Author: heftig
Revision: 928618

20210418-5: linux 5.12.2.arch1-1

Modified:
  vhba-module/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-07 16:08:45 UTC (rev 928617)
+++ PKGBUILD2021-05-07 16:08:46 UTC (rev 928618)
@@ -6,7 +6,7 @@
 pkgbase=vhba-module
 pkgname=(vhba-module vhba-module-dkms)
 pkgver=20210418
-pkgrel=4
+pkgrel=5
 pkgdesc="Kernel module that emulates SCSI devices"
 url="https://cdemu.sourceforge.io/;
 arch=(x86_64)


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

2021-05-07 Thread Jan Steffens via arch-commits
Date: Friday, May 7, 2021 @ 16:08:39
  Author: heftig
Revision: 928614

0.43-299: linux 5.12.2.arch1-1

Modified:
  tp_smapi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-07 16:08:38 UTC (rev 928613)
+++ PKGBUILD2021-05-07 16:08:39 UTC (rev 928614)
@@ -9,7 +9,7 @@
 
 pkgname=tp_smapi
 pkgver=0.43
-pkgrel=298
+pkgrel=299
 pkgdesc="Modules for ThinkPad's SMAPI functionality"
 arch=('x86_64')
 url='https://github.com/evgeni/tp_smapi'


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

2021-05-07 Thread Jan Steffens via arch-commits
Date: Friday, May 7, 2021 @ 16:08:37
  Author: heftig
Revision: 928612

r73.0cf3b48-111: linux 5.12.2.arch1-1

Modified:
  netfilter-fullconenat/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-07 15:08:07 UTC (rev 928611)
+++ PKGBUILD2021-05-07 16:08:37 UTC (rev 928612)
@@ -3,7 +3,7 @@
 
 pkgname=netfilter-fullconenat
 pkgver=r73.0cf3b48
-pkgrel=110
+pkgrel=111
 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 linux/trunk (PKGBUILD config)

2021-05-07 Thread Jan Steffens via arch-commits
Date: Friday, May 7, 2021 @ 16:08:11
  Author: heftig
Revision: 414571

5.12.2.arch1-1

Modified:
  linux/trunk/PKGBUILD
  linux/trunk/config

--+
 PKGBUILD |4 ++--
 config   |2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-05-07 16:08:09 UTC (rev 414570)
+++ PKGBUILD2021-05-07 16:08:11 UTC (rev 414571)
@@ -1,7 +1,7 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgbase=linux
-pkgver=5.12.1.arch1
+pkgver=5.12.2.arch1
 pkgrel=1
 pkgdesc='Linux'
 _srctag=v${pkgver%.*}-${pkgver##*.}
@@ -25,7 +25,7 @@
   'A2FF3A36AAA56654109064AB19802F8B0D70FC30'  # Jan Alexander Steffens (heftig)
 )
 sha256sums=('SKIP'
-'7ade5f9f4b9f62c0fe4b593d25af2bd0ab72f77ef728bc3277ab7052b43fb18d')
+'6dde032690644a576fd36c4a7d3546d9cec0117dd3fb17cea6dc95e907ef9bef')
 
 export KBUILD_BUILD_HOST=archlinux
 export KBUILD_BUILD_USER=$pkgbase

Modified: config
===
--- config  2021-05-07 16:08:09 UTC (rev 414570)
+++ config  2021-05-07 16:08:11 UTC (rev 414571)
@@ -1,6 +1,6 @@
 #
 # Automatically generated file; DO NOT EDIT.
-# Linux/x86 5.12.1-arch1 Kernel Configuration
+# Linux/x86 5.12.2-arch1 Kernel Configuration
 #
 CONFIG_CC_VERSION_TEXT="gcc (GCC) 10.2.0"
 CONFIG_CC_IS_GCC=y


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

2021-05-07 Thread Jan Steffens via arch-commits
Date: Friday, May 7, 2021 @ 16:08:09
  Author: heftig
Revision: 414570

FS#70742: Enable MTD_NAND_ECC_*

Modified:
  linux/trunk/PKGBUILD
  linux/trunk/config

--+
 PKGBUILD |2 +-
 config   |6 --
 2 files changed, 5 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-05-07 16:07:27 UTC (rev 414569)
+++ PKGBUILD2021-05-07 16:08:09 UTC (rev 414570)
@@ -25,7 +25,7 @@
   'A2FF3A36AAA56654109064AB19802F8B0D70FC30'  # Jan Alexander Steffens (heftig)
 )
 sha256sums=('SKIP'
-'bcb8a47c2396af9a2afcd26d1200f9424d2af0fa6f6749d3c09417a919f5c60c')
+'7ade5f9f4b9f62c0fe4b593d25af2bd0ab72f77ef728bc3277ab7052b43fb18d')
 
 export KBUILD_BUILD_HOST=archlinux
 export KBUILD_BUILD_USER=$pkgbase

Modified: config
===
--- config  2021-05-07 16:07:27 UTC (rev 414569)
+++ config  2021-05-07 16:08:09 UTC (rev 414570)
@@ -2349,8 +2349,9 @@
 # ECC engine support
 #
 CONFIG_MTD_NAND_ECC=y
-# CONFIG_MTD_NAND_ECC_SW_HAMMING is not set
-# CONFIG_MTD_NAND_ECC_SW_BCH is not set
+CONFIG_MTD_NAND_ECC_SW_HAMMING=y
+CONFIG_MTD_NAND_ECC_SW_HAMMING_SMC=y
+CONFIG_MTD_NAND_ECC_SW_BCH=y
 # end of ECC engine support
 # end of NAND
 
@@ -10038,6 +10039,7 @@
 CONFIG_REED_SOLOMON=m
 CONFIG_REED_SOLOMON_ENC8=y
 CONFIG_REED_SOLOMON_DEC8=y
+CONFIG_BCH=m
 CONFIG_TEXTSEARCH=y
 CONFIG_TEXTSEARCH_KMP=m
 CONFIG_TEXTSEARCH_BM=m


[arch-commits] Commit in linux-zen/trunk (PKGBUILD config)

2021-05-07 Thread Jan Steffens via arch-commits
Date: Friday, May 7, 2021 @ 16:07:27
  Author: heftig
Revision: 414569

5.12.2.zen1-1

Modified:
  linux-zen/trunk/PKGBUILD
  linux-zen/trunk/config

--+
 PKGBUILD |4 ++--
 config   |8 +---
 2 files changed, 7 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-05-07 15:32:08 UTC (rev 414568)
+++ PKGBUILD2021-05-07 16:07:27 UTC (rev 414569)
@@ -1,7 +1,7 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgbase=linux-zen
-pkgver=5.12.1.zen2
+pkgver=5.12.2.zen1
 pkgrel=1
 pkgdesc='Linux ZEN'
 _srctag=v${pkgver%.*}-${pkgver##*.}
@@ -25,7 +25,7 @@
   'A2FF3A36AAA56654109064AB19802F8B0D70FC30'  # Jan Alexander Steffens (heftig)
 )
 sha256sums=('SKIP'
-'fe71a704462bf1e1fa346b6c20e75706dbb3c6e50d315f60bdbf90fdf1d733be')
+'0408723ea85631b2c4f83d671a965d7ac7042c481eaf7d464c97fcaaed66680b')
 
 export KBUILD_BUILD_HOST=archlinux
 export KBUILD_BUILD_USER=$pkgbase

Modified: config
===
--- config  2021-05-07 15:32:08 UTC (rev 414568)
+++ config  2021-05-07 16:07:27 UTC (rev 414569)
@@ -1,6 +1,6 @@
 #
 # Automatically generated file; DO NOT EDIT.
-# Linux/x86 5.12.1-zen1 Kernel Configuration
+# Linux/x86 5.12.2-zen1 Kernel Configuration
 #
 CONFIG_CC_VERSION_TEXT="gcc (GCC) 10.2.0"
 CONFIG_CC_IS_GCC=y
@@ -2394,8 +2394,9 @@
 # ECC engine support
 #
 CONFIG_MTD_NAND_ECC=y
-# CONFIG_MTD_NAND_ECC_SW_HAMMING is not set
-# CONFIG_MTD_NAND_ECC_SW_BCH is not set
+CONFIG_MTD_NAND_ECC_SW_HAMMING=y
+CONFIG_MTD_NAND_ECC_SW_HAMMING_SMC=y
+CONFIG_MTD_NAND_ECC_SW_BCH=y
 # end of ECC engine support
 # end of NAND
 
@@ -10090,6 +10091,7 @@
 CONFIG_REED_SOLOMON=m
 CONFIG_REED_SOLOMON_ENC8=y
 CONFIG_REED_SOLOMON_DEC8=y
+CONFIG_BCH=m
 CONFIG_TEXTSEARCH=y
 CONFIG_TEXTSEARCH_KMP=m
 CONFIG_TEXTSEARCH_BM=m


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

2021-05-07 Thread Christian Hesse via arch-commits
Date: Friday, May 7, 2021 @ 15:32:08
  Author: eworm
Revision: 414568

archrelease: copy trunk to testing-x86_64

Added:
  galera/repos/testing-x86_64/
  galera/repos/testing-x86_64/PKGBUILD
(from rev 414567, galera/trunk/PKGBUILD)

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

Copied: galera/repos/testing-x86_64/PKGBUILD (from rev 414567, 
galera/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2021-05-07 15:32:08 UTC (rev 414568)
@@ -0,0 +1,48 @@
+# Maintainer: Christian Hesse 
+# Contributor: Rustam Tsurik 
+# Contributor: Nico Suarez 
+
+pkgname=galera
+pkgver=26.4.8
+_mariadb_ver=10.5.10
+pkgrel=1
+pkgdesc='write set replication (WSREP) provider for MariaDB cluster'
+arch=('x86_64')
+license=('GPL2' 'custom:OpenSSL Linking Exception')
+depends=('mariadb' 'openssl')
+makedepends=('check' 'scons' 'boost')
+optdepends=('rsync: State Snapshot Transfers with rsync'
+'socat: State Snapshot Transfers with mariabackup')
+url='https://galeracluster.com/'
+options=('!libtool')
+validpgpkeys=('199369E5404BD5FC7D2FE43BCBCB082A1BB943DB') # MariaDB Package 
Signing Key 
+source=("https://rsync.osuosl.org/pub/mariadb/mariadb-${_mariadb_ver}/galera-${pkgver}/src/galera-${pkgver}.tar.gz"{,.asc})
+sha256sums=('4a12c7fdfee181bc90584f62535785181e4c7a6368747f1dd76561bbd1094009'
+'SKIP')
+
+prepare() {
+  cd "${pkgname}-${pkgver}"
+
+  sed -i '/^GALERA_VER/s/API + //' wsrep/tests/SConscript
+}
+
+build(){
+  cd "${pkgname}-${pkgver}"
+
+  scons system_asio=0
+}
+
+package(){
+  cd "${pkgname}-${pkgver}"
+
+  install -D -m0755 libgalera_smm.so 
"${pkgdir}"/usr/lib/galera/libgalera_smm.so
+  ln -s galera/libgalera_smm.so "${pkgdir}"/usr/lib/libgalera_smm.so
+
+  install -D -m0755 garb/garbd "${pkgdir}"/usr/bin/garbd
+
+  install -D -m0644 scripts/packages/README 
"${pkgdir}"/usr/share/doc/galera/README
+  install -D -m0644 scripts/packages/README-MySQL 
"${pkgdir}"/usr/share/doc/galera/README-MySQL
+  install -D -m0644 scripts/mysql/README 
"${pkgdir}"/usr/share/doc/galera/mysql/README
+  install -D -m0644 COPYING "${pkgdir}"/usr/share/doc/galera/COPYING
+}
+


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

2021-05-07 Thread Christian Hesse via arch-commits
Date: Friday, May 7, 2021 @ 15:32:05
  Author: eworm
Revision: 414567

upgpkg: galera 26.4.8-1: new upstream release, for mariadb 10.5.10-1

Modified:
  galera/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-07 14:49:02 UTC (rev 414566)
+++ PKGBUILD2021-05-07 15:32:05 UTC (rev 414567)
@@ -3,8 +3,8 @@
 # Contributor: Nico Suarez 
 
 pkgname=galera
-pkgver=26.4.7
-_mariadb_ver=10.5.9
+pkgver=26.4.8
+_mariadb_ver=10.5.10
 pkgrel=1
 pkgdesc='write set replication (WSREP) provider for MariaDB cluster'
 arch=('x86_64')
@@ -17,9 +17,15 @@
 options=('!libtool')
 validpgpkeys=('199369E5404BD5FC7D2FE43BCBCB082A1BB943DB') # MariaDB Package 
Signing Key 
 
source=("https://rsync.osuosl.org/pub/mariadb/mariadb-${_mariadb_ver}/galera-${pkgver}/src/galera-${pkgver}.tar.gz"{,.asc})
-sha256sums=('83235ac90c310c7d994561f77660ecc56f74bb8d6bd5c81f4d08da042b0e238b'
+sha256sums=('4a12c7fdfee181bc90584f62535785181e4c7a6368747f1dd76561bbd1094009'
 'SKIP')
 
+prepare() {
+  cd "${pkgname}-${pkgver}"
+
+  sed -i '/^GALERA_VER/s/API + //' wsrep/tests/SConscript
+}
+
 build(){
   cd "${pkgname}-${pkgver}"
 


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

2021-05-07 Thread Sébastien Luttringer via arch-commits
Date: Friday, May 7, 2021 @ 15:08:07
  Author: seblu
Revision: 928611

archrelease: copy trunk to community-x86_64

Added:
  lsscsi/repos/community-x86_64/PKGBUILD
(from rev 928610, lsscsi/trunk/PKGBUILD)
Deleted:
  lsscsi/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-07 15:08:01 UTC (rev 928610)
+++ PKGBUILD2021-05-07 15:08:07 UTC (rev 928611)
@@ -1,26 +0,0 @@
-# Maintainer: Sébastien Luttringer
-# Contributor: XAVeRY - los dot danielos at gmail dot com
-
-pkgname=lsscsi
-pkgver=0.31
-pkgrel=1
-pkgdesc='A tool that lists devices connected via SCSI and its transports'
-arch=('x86_64')
-url='http://sg.danny.cz/scsi/lsscsi.html'
-license=('GPL')
-depends=('sysfsutils')
-source=("http://sg.danny.cz/scsi/$pkgname-$pkgver.tgz;)
-sha256sums=('12bf1973014803c6fd6d547e7594a4c049f0eef3bf5d22190d4be29d7c09f3ca')
-
-build() {
-  cd $pkgname-*/
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-*/
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: lsscsi/repos/community-x86_64/PKGBUILD (from rev 928610, 
lsscsi/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-07 15:08:07 UTC (rev 928611)
@@ -0,0 +1,26 @@
+# Maintainer: Sébastien Luttringer
+# Contributor: XAVeRY - los dot danielos at gmail dot com
+
+pkgname=lsscsi
+pkgver=0.32
+pkgrel=1
+pkgdesc='A tool that lists devices connected via SCSI and its transports'
+arch=('x86_64')
+url='http://sg.danny.cz/scsi/lsscsi.html'
+license=('GPL')
+depends=('sysfsutils')
+source=("http://sg.danny.cz/scsi/$pkgname-$pkgver.tgz;)
+sha256sums=('0a800e9e94dca2ab702d65d72777ae8cae078e3d74d0bcbed64ba0849e8029a1')
+
+build() {
+  cd $pkgname-*/
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-*/
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:


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

2021-05-07 Thread Sébastien Luttringer via arch-commits
Date: Friday, May 7, 2021 @ 15:08:01
  Author: seblu
Revision: 928610

upgpkg: lsscsi 0.32-1

Modified:
  lsscsi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-07 14:16:31 UTC (rev 928609)
+++ PKGBUILD2021-05-07 15:08:01 UTC (rev 928610)
@@ -2,7 +2,7 @@
 # Contributor: XAVeRY - los dot danielos at gmail dot com
 
 pkgname=lsscsi
-pkgver=0.31
+pkgver=0.32
 pkgrel=1
 pkgdesc='A tool that lists devices connected via SCSI and its transports'
 arch=('x86_64')
@@ -10,7 +10,7 @@
 license=('GPL')
 depends=('sysfsutils')
 source=("http://sg.danny.cz/scsi/$pkgname-$pkgver.tgz;)
-sha256sums=('12bf1973014803c6fd6d547e7594a4c049f0eef3bf5d22190d4be29d7c09f3ca')
+sha256sums=('0a800e9e94dca2ab702d65d72777ae8cae078e3d74d0bcbed64ba0849e8029a1')
 
 build() {
   cd $pkgname-*/


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

2021-05-07 Thread Christian Hesse via arch-commits
Date: Friday, May 7, 2021 @ 14:49:02
  Author: eworm
Revision: 414566

archrelease: copy trunk to testing-x86_64

Added:
  mariadb/repos/testing-x86_64/
  mariadb/repos/testing-x86_64/0001-arch-specific.patch
(from rev 414565, mariadb/trunk/0001-arch-specific.patch)
  mariadb/repos/testing-x86_64/PKGBUILD
(from rev 414565, mariadb/trunk/PKGBUILD)
  mariadb/repos/testing-x86_64/mariadb.install
(from rev 414565, mariadb/trunk/mariadb.install)

--+
 0001-arch-specific.patch |   94 ++
 PKGBUILD |  223 +
 mariadb.install  |   15 +++
 3 files changed, 332 insertions(+)

Copied: mariadb/repos/testing-x86_64/0001-arch-specific.patch (from rev 414565, 
mariadb/trunk/0001-arch-specific.patch)
===
--- testing-x86_64/0001-arch-specific.patch (rev 0)
+++ testing-x86_64/0001-arch-specific.patch 2021-05-07 14:49:02 UTC (rev 
414566)
@@ -0,0 +1,94 @@
+From bf66e7d610de0d7d3651742342c01ed9ff93f363 Mon Sep 17 00:00:00 2001
+From: Christian Hesse 
+Date: Wed, 19 Feb 2020 13:10:17 +0100
+Subject: [PATCH 1/3] enable PrivateTmp for a little bit more security
+---
+ support-files/mariadb.service.in  | 2 +-
+ support-files/mari...@.service.in | 2 +-
+ 2 files changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/support-files/mariadb.service.in 
b/support-files/mariadb.service.in
+index e7665ed1219..a1fe69d61c4 100644
+--- a/support-files/mariadb.service.in
 b/support-files/mariadb.service.in
+@@ -129,7 +129,7 @@ UMask=007
+ 
+ # If you don't use the /tmp directory for SELECT ... OUTFILE and
+ # LOAD DATA INFILE you can enable PrivateTmp=true for a little more security.
+-PrivateTmp=false
++PrivateTmp=true
+ 
+ # Set an explicit Start and Stop timeout of 900 seconds (15 minutes!)
+ # this is the same value as used in SysV init scripts in the past
+diff --git a/support-files/mari...@.service.in 
b/support-files/mari...@.service.in
+index ffefc2f22d8..f8b0b8aad8d 100644
+--- a/support-files/mari...@.service.in
 b/support-files/mari...@.service.in
+@@ -241,7 +241,7 @@ UMask=007
+ 
+ # If you don't use the /tmp directory for SELECT ... OUTFILE and
+ # LOAD DATA INFILE you can enable PrivateTmp=true for a little more security.
+-PrivateTmp=false
++PrivateTmp=true
+ 
+ # Set an explicit Start and Stop timeout of 900 seconds (15 minutes!)
+ # this is the same value as used in SysV init scripts in the past
+
+From 00aab78891a19a14a92039fcc6a73e391a3bb471 Mon Sep 17 00:00:00 2001
+From: Christian Hesse 
+Date: Wed, 19 Feb 2020 13:10:46 +0100
+Subject: [PATCH 2/3] force preloading jemalloc for memory management
+---
+ support-files/mariadb.service.in  | 1 +
+ support-files/mari...@.service.in | 1 +
+ 2 files changed, 2 insertions(+)
+
+diff --git a/support-files/mariadb.service.in 
b/support-files/mariadb.service.in
+index a1fe69d61c4..9a2941ae917 100644
+--- a/support-files/mariadb.service.in
 b/support-files/mariadb.service.in
+@@ -159,6 +159,7 @@ LimitNOFILE=16364
+ # Library substitutions. previously [mysqld_safe] malloc-lib with explicit 
paths
+ # (in LD_LIBRARY_PATH) and library name (in LD_PRELOAD).
+ # Environment="LD_LIBRARY_PATH=/path1 /path2" "LD_PRELOAD=
++Environment="LD_PRELOAD=/usr/lib/libjemalloc.so"
+ 
+ # Flush caches. previously [mysqld_safe] flush-caches=1
+ # ExecStartPre=sync
+diff --git a/support-files/mari...@.service.in 
b/support-files/mari...@.service.in
+index f8b0b8aad8d..3309127330c 100644
+--- a/support-files/mari...@.service.in
 b/support-files/mari...@.service.in
+@@ -282,6 +282,7 @@ LimitNOFILE=16364
+ # Library substitutions. previously [mysqld_safe] malloc-lib with explicit 
paths
+ # (in LD_LIBRARY_PATH) and library name (in LD_PRELOAD).
+ # Environment="LD_LIBRARY_PATH=/path1 /path2" "LD_PRELOAD=
++Environment="LD_PRELOAD=/usr/lib/libjemalloc.so"
+ 
+ # Flush caches. previously [mysqld_safe] flush-caches=1
+ # ExecStartPre=sync
+
+From a78ff18c83a5eb2556d4f3716f13786dcd8395d2 Mon Sep 17 00:00:00 2001
+From: Christian Hesse 
+Date: Wed, 19 Feb 2020 13:11:31 +0100
+Subject: [PATCH 3/3] Make systemd-tmpfiles create MYSQL_DATADIR
+
+This is a no-op if the directory exists, but makes sure it is created by
+systemd-tmpfiles with proper permissions otherwise.
+
+This solves packaging issues when the user MYSQLD_USER is created by
+systemd-sysusers and uid is not known in advance.
+
+Also this now sets the No_COW attribute.
+---
+ support-files/tmpfiles.conf.in | 2 +
+ 1 file changed, 2 insertion(+)
+
+diff --git a/support-files/tmpfiles.conf.in b/support-files/tmpfiles.conf.in
+index 03d66abc0c7..3c89cb258c9 100644
+--- a/support-files/tmpfiles.conf.in
 b/support-files/tmpfiles.conf.in
+@@ -1 +1,3 @@
+ d @MYSQL_UNIX_DIR@ 0755 @MYSQLD_USER@ @MYSQLD_USER@ -
++d @MYSQL_DATADIR@ 0700 @MYSQLD_USER@ @MYSQLD_USER@ -
++h @MYSQL_DATADIR@ - - - - +C

Copied: 

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

2021-05-07 Thread Christian Hesse via arch-commits
Date: Friday, May 7, 2021 @ 14:48:52
  Author: eworm
Revision: 414565

upgpkg: mariadb 10.5.10-1: new upstream release

https://mariadb.com/kb/en/mdb-10510-rn/
https://mariadb.com/kb/en/mdb-10510-cl/

Modified:
  mariadb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-07 13:59:46 UTC (rev 414564)
+++ PKGBUILD2021-05-07 14:48:52 UTC (rev 414565)
@@ -4,7 +4,7 @@
 pkgbase=mariadb
 pkgname=('mariadb-libs' 'mariadb-clients' 'mariadb' 'mytop')
 pkgdesc='Fast SQL database server, derived from MySQL'
-pkgver=10.5.9
+pkgver=10.5.10
 pkgrel=1
 arch=('x86_64')
 license=('GPL')
@@ -19,7 +19,7 @@
 # https://mariadb.com/kb/en/library/mirror-sites-for-mariadb/
 
source=("https://rsync.osuosl.org/pub/mariadb/mariadb-${pkgver}/source/mariadb-${pkgver}.tar.gz"{,.asc}
 '0001-arch-specific.patch')
-sha256sums=('cf11c58d3b2e76f5d9f58949c56c03fc5e2a2c3cbbfd54a484c32350bf71545d'
+sha256sums=('a5ff32f9fcaaf26bf5cba94accc7b246d2d5eb75710d027e40122df6bac0babb'
 'SKIP'
 '3289efb3452d199aec872115f35da3f1d6fd4ce774615076690e9bc8afae1460')
 
@@ -116,6 +116,7 @@
 make -C "$dir" DESTDIR="$pkgdir" install
   done
 
+  ln -s mariadb_config "$pkgdir"/usr/bin/mariadb-config
   ln -s mariadb_config "$pkgdir"/usr/bin/mysql_config
   install -D -m0644 "$srcdir"/"$pkgbase-$pkgver"/man/mysql_config.1 
"$pkgdir"/usr/share/man/man1/mysql_config.1
 
@@ -193,8 +194,7 @@
   rm -r usr/lib/systemd/system/mariadb@bootstrap.service.d
 
   # provided by mariadb-libs
-  rm usr/bin/mariadb_config
-  rm usr/bin/mysql_config
+  rm usr/bin/{mariadb{_,-},mysql_}config
   rm -r usr/include/
   rm usr/share/man/man1/mysql_config.1
   rm -r usr/share/aclocal


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

2021-05-07 Thread Daniel Bermond via arch-commits
Date: Friday, May 7, 2021 @ 14:16:31
  Author: dbermond
Revision: 928609

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-07 14:16:04 UTC (rev 928608)
+++ PKGBUILD2021-05-07 14:16:31 UTC (rev 928609)
@@ -1,36 +0,0 @@
-# Maintainer : Daniel Bermond 
-# Maintainer : Santiago Torres-Arias 
-# Contributor: Simon Boulay 
-
-pkgname=python-breathe
-pkgver=4.29.2
-pkgrel=1
-pkgdesc="An extension to reStructuredText and Sphinx to be able to read and 
render Doxygen xml output"
-arch=('any')
-url="https://breathe.readthedocs.org/en/latest/;
-license=('BSD')
-depends=('python' 'python-sphinx' 'python-docutils' 'python-six')
-makedepends=('python-setuptools')
-checkdepends=('python-pytest')
-source=("https://github.com/michaeljones/breathe/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz;
-
"${pkgname}-${pkgver}.tar.gz.sig"::"https://github.com/michaeljones/breathe/releases/download/v${pkgver}/breathe-${pkgver}.tar.gz.sig;)
-sha512sums=('1a47a36f9ebb4c863dd3d06d19ae1dd18af3b9468561f2b2370f57da8573faf4489ee3f1c9aebc84d867a51a6a7032d1a57a3430b804c5dd5886a0fce4c0adfc'
-'SKIP')
-validpgpkeys=('8AED58021FEACDD5F27BA0E6A72F627716EA9D96') # Melvin Vermeeren 

-
-check() {
-  cd "breathe-${pkgver}"
-  PYTHONPATH="$PWD" make test
-}
-
-build() {
-  cd "breathe-${pkgver}"
-  python setup.py build
-}
-
-package_python-breathe() {
-  cd "breathe-${pkgver}"
-  PYTHONHASHSEED=0 python setup.py install --root="${pkgdir}" --skip-build 
--optimize=1
-
-  install -D -m644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}

Copied: python-breathe/repos/community-any/PKGBUILD (from rev 928608, 
python-breathe/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-07 14:16:31 UTC (rev 928609)
@@ -0,0 +1,36 @@
+# Maintainer : Daniel Bermond 
+# Maintainer : Santiago Torres-Arias 
+# Contributor: Simon Boulay 
+
+pkgname=python-breathe
+pkgver=4.30.0
+pkgrel=1
+pkgdesc="An extension to reStructuredText and Sphinx to be able to read and 
render Doxygen xml output"
+arch=('any')
+url="https://breathe.readthedocs.org/en/latest/;
+license=('BSD')
+depends=('python' 'python-sphinx' 'python-docutils' 'python-six')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest')
+source=("https://github.com/michaeljones/breathe/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz;
+
"${pkgname}-${pkgver}.tar.gz.sig"::"https://github.com/michaeljones/breathe/releases/download/v${pkgver}/breathe-${pkgver}.tar.gz.sig;)
+sha512sums=('fa09ee687a8e67fa480865a0d33affd9aa0ab48b0cb5b685731ec393045d8c9e1ae0622a1315f805449d712e99e6982ed229bb79314c69f69da0c705d075f7f9'
+'SKIP')
+validpgpkeys=('8AED58021FEACDD5F27BA0E6A72F627716EA9D96') # Melvin Vermeeren 

+
+check() {
+  cd "breathe-${pkgver}"
+  PYTHONPATH="$PWD" make test
+}
+
+build() {
+  cd "breathe-${pkgver}"
+  python setup.py build
+}
+
+package_python-breathe() {
+  cd "breathe-${pkgver}"
+  PYTHONHASHSEED=0 python setup.py install --root="${pkgdir}" --skip-build 
--optimize=1
+
+  install -D -m644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}


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

2021-05-07 Thread Daniel Bermond via arch-commits
Date: Friday, May 7, 2021 @ 14:16:04
  Author: dbermond
Revision: 928608

upgpkg: python-breathe 4.30.0-1

Modified:
  python-breathe/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-07 14:05:07 UTC (rev 928607)
+++ PKGBUILD2021-05-07 14:16:04 UTC (rev 928608)
@@ -3,7 +3,7 @@
 # Contributor: Simon Boulay 
 
 pkgname=python-breathe
-pkgver=4.29.2
+pkgver=4.30.0
 pkgrel=1
 pkgdesc="An extension to reStructuredText and Sphinx to be able to read and 
render Doxygen xml output"
 arch=('any')
@@ -14,7 +14,7 @@
 checkdepends=('python-pytest')
 
source=("https://github.com/michaeljones/breathe/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz;
 
"${pkgname}-${pkgver}.tar.gz.sig"::"https://github.com/michaeljones/breathe/releases/download/v${pkgver}/breathe-${pkgver}.tar.gz.sig;)
-sha512sums=('1a47a36f9ebb4c863dd3d06d19ae1dd18af3b9468561f2b2370f57da8573faf4489ee3f1c9aebc84d867a51a6a7032d1a57a3430b804c5dd5886a0fce4c0adfc'
+sha512sums=('fa09ee687a8e67fa480865a0d33affd9aa0ab48b0cb5b685731ec393045d8c9e1ae0622a1315f805449d712e99e6982ed229bb79314c69f69da0c705d075f7f9'
 'SKIP')
 validpgpkeys=('8AED58021FEACDD5F27BA0E6A72F627716EA9D96') # Melvin Vermeeren 

 


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

2021-05-07 Thread Alexander Rødseth via arch-commits
Date: Friday, May 7, 2021 @ 14:05:07
  Author: arodseth
Revision: 928607

archrelease: copy trunk to community-x86_64

Added:
  entityx/repos/community-x86_64/PKGBUILD
(from rev 928606, entityx/trunk/PKGBUILD)
Deleted:
  entityx/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-07 14:04:59 UTC (rev 928606)
+++ PKGBUILD2021-05-07 14:05:07 UTC (rev 928607)
@@ -1,41 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: Xentec 
-# Contributor: Scott Linder 
-
-pkgname=entityx
-pkgver=1.3.0
-pkgrel=1
-pkgdesc='Fast, type-safe C++ Entity-Component system'
-arch=('x86_64')
-url='https://github.com/alecthomas/entityx'
-license=('MIT')
-makedepends=('cmake' 'git' 'ninja')
-source=("git+$url#tag=$pkgver")
-md5sums=('SKIP')
-
-build() {
-  mkdir -p build
-  cd build
-  cmake "../$pkgname" \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DENTITYX_BUILD_SHARED=1 \
--DENTITYX_BUILD_TESTING=1 \
--Wno-dev \
--GNinja
-  ninja
-}
-
-check() {
-  ninja -C build test
-}
-
-package() {
-  DESTDIR="$pkgdir" ninja -C build install
-  install -Dm644 "$pkgname/COPYING" \
-"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-  install -Dm644 "$pkgname/cmake/FindEntityX.cmake" \
-"$pkgdir/usr/share/cmake-3.3/Modules/FindEntityX.cmake"
-}
-
-# vim: ts=2 sw=2 et:

Copied: entityx/repos/community-x86_64/PKGBUILD (from rev 928606, 
entityx/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-07 14:05:07 UTC (rev 928607)
@@ -0,0 +1,45 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: loqs
+# Contributor: Xentec 
+# Contributor: Scott Linder 
+
+pkgname=entityx
+pkgver=1.3.0
+pkgrel=2
+pkgdesc='Fast, type-safe C++ Entity-Component system'
+arch=(x86_64)
+url='https://github.com/alecthomas/entityx'
+license=(MIT)
+makedepends=(cmake git ninja)
+source=("git+$url#commit=6389b1f91598c99d85e56356fb57d9f4683071d8") # tag: 
1.3.0
+b2sums=(SKIP)
+
+prepare() {
+  cd $pkgname
+  git cherry-pick -n 015ae4ffb08d870d879b4ec5b71fdb261398b170
+}
+
+build() {
+  mkdir -p build
+  cd build
+  cmake ../$pkgname \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DENTITYX_BUILD_SHARED=1 \
+-DENTITYX_BUILD_TESTING=1 \
+-Wno-dev \
+-G Ninja
+  ninja
+}
+
+check() {
+  ninja -C build test
+}
+
+package() {
+  DESTDIR="$pkgdir" ninja -C build install
+  install -Dm644 $pkgname/COPYING \
+"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+  install -Dm644 $pkgname/cmake/FindEntityX.cmake \
+"$pkgdir/usr/share/cmake-3.3/Modules/FindEntityX.cmake"
+}


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

2021-05-07 Thread Alexander Rødseth via arch-commits
Date: Friday, May 7, 2021 @ 14:04:59
  Author: arodseth
Revision: 928606

FS#70617: apply a patch to make the package build from source again

Modified:
  entityx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-07 13:55:07 UTC (rev 928605)
+++ PKGBUILD2021-05-07 14:04:59 UTC (rev 928606)
@@ -1,28 +1,34 @@
 # Maintainer: Alexander F. Rødseth 
+# Contributor: loqs
 # Contributor: Xentec 
 # Contributor: Scott Linder 
 
 pkgname=entityx
 pkgver=1.3.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Fast, type-safe C++ Entity-Component system'
-arch=('x86_64')
+arch=(x86_64)
 url='https://github.com/alecthomas/entityx'
-license=('MIT')
-makedepends=('cmake' 'git' 'ninja')
-source=("git+$url#tag=$pkgver")
-md5sums=('SKIP')
+license=(MIT)
+makedepends=(cmake git ninja)
+source=("git+$url#commit=6389b1f91598c99d85e56356fb57d9f4683071d8") # tag: 
1.3.0
+b2sums=(SKIP)
 
+prepare() {
+  cd $pkgname
+  git cherry-pick -n 015ae4ffb08d870d879b4ec5b71fdb261398b170
+}
+
 build() {
   mkdir -p build
   cd build
-  cmake "../$pkgname" \
+  cmake ../$pkgname \
 -DCMAKE_INSTALL_PREFIX=/usr \
 -DCMAKE_BUILD_TYPE=Release \
 -DENTITYX_BUILD_SHARED=1 \
 -DENTITYX_BUILD_TESTING=1 \
 -Wno-dev \
--GNinja
+-G Ninja
   ninja
 }
 
@@ -32,10 +38,8 @@
 
 package() {
   DESTDIR="$pkgdir" ninja -C build install
-  install -Dm644 "$pkgname/COPYING" \
+  install -Dm644 $pkgname/COPYING \
 "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-  install -Dm644 "$pkgname/cmake/FindEntityX.cmake" \
+  install -Dm644 $pkgname/cmake/FindEntityX.cmake \
 "$pkgdir/usr/share/cmake-3.3/Modules/FindEntityX.cmake"
 }
-
-# vim: ts=2 sw=2 et:


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

2021-05-07 Thread Evangelos Foutras via arch-commits
Date: Friday, May 7, 2021 @ 13:59:46
  Author: foutrelis
Revision: 414564

archrelease: copy trunk to extra-x86_64

Added:
  thunar/repos/extra-x86_64/PKGBUILD
(from rev 414563, thunar/trunk/PKGBUILD)
Deleted:
  thunar/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-07 13:59:41 UTC (rev 414563)
+++ PKGBUILD2021-05-07 13:59:46 UTC (rev 414564)
@@ -1,47 +0,0 @@
-# Maintainer: Evangelos Foutras 
-# Contributor: Andrew Simmons 
-
-pkgname=thunar
-pkgver=4.16.7
-pkgrel=1
-pkgdesc="Modern file manager for Xfce"
-arch=('x86_64')
-url="https://docs.xfce.org/xfce/thunar/start;
-license=('GPL2' 'LGPL2.1')
-groups=('xfce4')
-depends=('desktop-file-utils' 'libexif' 'hicolor-icon-theme' 'libnotify'
- 'libgudev' 'exo' 'libxfce4util' 'libxfce4ui' 'libpng')
-makedepends=('intltool' 'gobject-introspection' 'xfce4-panel')
-optdepends=('gvfs: trash support, mounting with udisk and remote filesystems'
-'tumbler: thumbnail previews'
-'thunar-volman: removable device management'
-'thunar-archive-plugin: archive creation and extraction'
-'thunar-media-tags-plugin: view/edit ID3/OGG tags')
-source=(https://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
-sha256sums=('fb6ddd6728fcd66cdac8e049fff00ddad72c620b06ebc1546c2dd7c78bf08f62')
-
-prepare() {
-  cd "$srcdir/$pkgname-$pkgver"
-}
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---enable-gio-unix \
---enable-gudev \
---enable-notifications \
---enable-exif \
---enable-pcre \
---disable-debug
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: thunar/repos/extra-x86_64/PKGBUILD (from rev 414563, 
thunar/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-07 13:59:46 UTC (rev 414564)
@@ -0,0 +1,47 @@
+# Maintainer: Evangelos Foutras 
+# Contributor: Andrew Simmons 
+
+pkgname=thunar
+pkgver=4.16.8
+pkgrel=1
+pkgdesc="Modern file manager for Xfce"
+arch=('x86_64')
+url="https://docs.xfce.org/xfce/thunar/start;
+license=('GPL2' 'LGPL2.1')
+groups=('xfce4')
+depends=('desktop-file-utils' 'libexif' 'hicolor-icon-theme' 'libnotify'
+ 'libgudev' 'exo' 'libxfce4util' 'libxfce4ui' 'libpng')
+makedepends=('intltool' 'gobject-introspection' 'xfce4-panel')
+optdepends=('gvfs: trash support, mounting with udisk and remote filesystems'
+'tumbler: thumbnail previews'
+'thunar-volman: removable device management'
+'thunar-archive-plugin: archive creation and extraction'
+'thunar-media-tags-plugin: view/edit ID3/OGG tags')
+source=(https://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
+sha256sums=('038ca228d220cd0ba1b7b76465d8a51f2433ad1f74648d1d291daa0a24cb3195')
+
+prepare() {
+  cd "$srcdir/$pkgname-$pkgver"
+}
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--enable-gio-unix \
+--enable-gudev \
+--enable-notifications \
+--enable-exif \
+--enable-pcre \
+--disable-debug
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:


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

2021-05-07 Thread Evangelos Foutras via arch-commits
Date: Friday, May 7, 2021 @ 13:59:41
  Author: foutrelis
Revision: 414563

upgpkg: thunar 4.16.8-1: new upstream release

Modified:
  thunar/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-07 12:47:58 UTC (rev 414562)
+++ PKGBUILD2021-05-07 13:59:41 UTC (rev 414563)
@@ -2,7 +2,7 @@
 # Contributor: Andrew Simmons 
 
 pkgname=thunar
-pkgver=4.16.7
+pkgver=4.16.8
 pkgrel=1
 pkgdesc="Modern file manager for Xfce"
 arch=('x86_64')
@@ -18,7 +18,7 @@
 'thunar-archive-plugin: archive creation and extraction'
 'thunar-media-tags-plugin: view/edit ID3/OGG tags')
 
source=(https://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
-sha256sums=('fb6ddd6728fcd66cdac8e049fff00ddad72c620b06ebc1546c2dd7c78bf08f62')
+sha256sums=('038ca228d220cd0ba1b7b76465d8a51f2433ad1f74648d1d291daa0a24cb3195')
 
 prepare() {
   cd "$srcdir/$pkgname-$pkgver"


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

2021-05-07 Thread Alexander Rødseth via arch-commits
Date: Friday, May 7, 2021 @ 13:55:07
  Author: arodseth
Revision: 928605

archrelease: copy trunk to community-x86_64

Added:
  spike/repos/community-x86_64/PKGBUILD
(from rev 928604, spike/trunk/PKGBUILD)
Deleted:
  spike/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-07 13:55:01 UTC (rev 928604)
+++ PKGBUILD2021-05-07 13:55:07 UTC (rev 928605)
@@ -1,32 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: Paulo Matos 
-# Contributor: b4283 
-
-pkgname=spike
-pkgver=1.0.0
-pkgrel=1
-pkgdesc='Spike, a RISC-V ISA Simulator'
-arch=(x86_64)
-url='https://github.com/riscv/riscv-isa-sim'
-license=(BSD)
-groups=(risc-v)
-depends=(dtc)
-replaces=(fesvr)
-conflicts=(fesvr)
-makedepends=(git)
-source=("git+https://github.com/riscv/riscv-isa-sim#tag=v$pkgver;)
-md5sums=('SKIP')
-
-build() {
-  cd riscv-isa-sim
-  ./configure --prefix=/usr
-  make LDFLAGS="$LDFLAGS -s -w"
-}
-
-package() {
-  cd riscv-isa-sim
-  make DESTDIR="$pkgdir" install
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# vim: ts=2 sw=2 et:

Copied: spike/repos/community-x86_64/PKGBUILD (from rev 928604, 
spike/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-07 13:55:07 UTC (rev 928605)
@@ -0,0 +1,36 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: loqs
+# Contributor: Paulo Matos 
+# Contributor: b4283 
+
+pkgname=spike
+pkgver=1.0.0
+pkgrel=2
+pkgdesc='Spike, a RISC-V ISA Simulator'
+arch=(x86_64)
+url='https://github.com/riscv/riscv-isa-sim'
+license=(BSD)
+groups=(risc-v)
+depends=(dtc)
+replaces=(fesvr)
+conflicts=(fesvr)
+makedepends=(git)
+source=("git+https://github.com/riscv/riscv-isa-sim#commit=2710fe575e7e6a4e2418224f8d254d5ca31f6c0e;)
+b2sums=('SKIP')
+
+prepare() {
+  cd riscv-isa-sim
+  git cherry-pick -n b3855682c2d744c613d2ffd6b53e3f021ecea4f3
+}
+
+build() {
+  cd riscv-isa-sim
+  ./configure --prefix=/usr
+  make LDFLAGS="$LDFLAGS -s -w"
+}
+
+package() {
+  cd riscv-isa-sim
+  make DESTDIR="$pkgdir" install
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2021-05-07 Thread Alexander Rødseth via arch-commits
Date: Friday, May 7, 2021 @ 13:55:01
  Author: arodseth
Revision: 928604

FS#70600 - apply a patch to make spike build from source again

Modified:
  spike/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-07 13:23:21 UTC (rev 928603)
+++ PKGBUILD2021-05-07 13:55:01 UTC (rev 928604)
@@ -1,10 +1,11 @@
 # Maintainer: Alexander F. Rødseth 
+# Contributor: loqs
 # Contributor: Paulo Matos 
 # Contributor: b4283 
 
 pkgname=spike
 pkgver=1.0.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Spike, a RISC-V ISA Simulator'
 arch=(x86_64)
 url='https://github.com/riscv/riscv-isa-sim'
@@ -14,9 +15,14 @@
 replaces=(fesvr)
 conflicts=(fesvr)
 makedepends=(git)
-source=("git+https://github.com/riscv/riscv-isa-sim#tag=v$pkgver;)
-md5sums=('SKIP')
+source=("git+https://github.com/riscv/riscv-isa-sim#commit=2710fe575e7e6a4e2418224f8d254d5ca31f6c0e;)
+b2sums=('SKIP')
 
+prepare() {
+  cd riscv-isa-sim
+  git cherry-pick -n b3855682c2d744c613d2ffd6b53e3f021ecea4f3
+}
+
 build() {
   cd riscv-isa-sim
   ./configure --prefix=/usr
@@ -28,5 +34,3 @@
   make DESTDIR="$pkgdir" install
   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
 }
-
-# vim: ts=2 sw=2 et:


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

2021-05-07 Thread Maxime Gauduin via arch-commits
Date: Friday, May 7, 2021 @ 13:23:21
  Author: alucryd
Revision: 928603

archrelease: copy trunk to community-x86_64

Added:
  musescore/repos/community-x86_64/PKGBUILD
(from rev 928602, musescore/trunk/PKGBUILD)
Deleted:
  musescore/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-07 13:23:14 UTC (rev 928602)
+++ PKGBUILD2021-05-07 13:23:21 UTC (rev 928603)
@@ -1,65 +0,0 @@
-# Maintainer: Maxime Gauduin 
-# Contributor: Stefan Husmann 
-# Contributor: Cristian Maureira 
-# Contributor: Dr.Egg 
-
-pkgname=musescore
-pkgver=3.6.2
-pkgrel=1
-pkgdesc='Create, play and print beautiful sheet music'
-arch=(x86_64)
-url=https://musescore.org/
-license=(GPL)
-groups=(pro-audio)
-depends=(
-  alsa-lib
-  freetype2
-  libpulse
-  libsndfile
-  libvorbisfile.so
-  libportaudio.so
-  libportmidi.so
-  qt5-base
-  qt5-declarative
-  qt5-graphicaleffects
-  qt5-quickcontrols
-  qt5-quickcontrols2
-  qt5-svg
-  qt5-tools
-  qt5-webengine
-  qt5-xmlpatterns
-  zlib
-)
-makedepends=(
-  cmake
-  doxygen
-  git
-  lame
-  qt5-script
-  texlive-core
-)
-optdepends=('lame: MP3 export')
-_tag=3224f342d12f4af8ea782e929c49f5ce85f97da6
-source=(git+https://github.com/musescore/MuseScore.git#tag=${_tag})
-sha256sums=(SKIP)
-
-prepare() {
-  cd MuseScore
-  git cherry-pick -n 63d8b7ee90e9ec6604e334a3ebb12fced7fab36d
-  sed 's/option(BUILD_CRASH_REPORTER "Build with crash reporter" 
ON)/option(BUILD_CRASH_REPORTER "Build with crash reporter" OFF)/' -i 
CMakeLists.txt
-}
-
-pkgver() {
-  cd MuseScore
-  git describe --tags | sed 's/^v//'
-}
-
-build() {
-  make PREFIX=/usr NO_RPATH=TRUE USE_SYSTEM_FREETYPE=ON 
MUSESCORE_BUILD_CONFIG=release -C MuseScore revision release
-}
-
-package() {
-  make DESTDIR="${pkgdir}" UPDATE_CACHE=FALSE -C MuseScore/build.release 
install
-}
-
-# vim: ts=2 sw=2 et:

Copied: musescore/repos/community-x86_64/PKGBUILD (from rev 928602, 
musescore/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-05-07 13:23:21 UTC (rev 928603)
@@ -0,0 +1,77 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: Stefan Husmann 
+# Contributor: Cristian Maureira 
+# Contributor: Dr.Egg 
+
+pkgname=musescore
+pkgver=3.6.2
+pkgrel=2
+pkgdesc='Create, play and print beautiful sheet music'
+arch=(x86_64)
+url=https://musescore.org/
+license=(GPL)
+groups=(pro-audio)
+depends=(
+  alsa-lib
+  freetype2
+  libpulse
+  libsndfile
+  libvorbisfile.so
+  libportaudio.so
+  libportmidi.so
+  qt5-base
+  qt5-declarative
+  qt5-graphicaleffects
+  qt5-quickcontrols
+  qt5-quickcontrols2
+  qt5-svg
+  qt5-tools
+  qt5-webengine
+  qt5-xmlpatterns
+  zlib
+)
+makedepends=(
+  cmake
+  doxygen
+  git
+  lame
+  qt5-script
+  texlive-core
+)
+optdepends=('lame: MP3 export')
+_tag=3224f342d12f4af8ea782e929c49f5ce85f97da6
+source=(git+https://github.com/musescore/MuseScore.git#tag=${_tag})
+sha256sums=(SKIP)
+
+prepare() {
+  cd MuseScore
+  git cherry-pick -n 63d8b7ee90e9ec6604e334a3ebb12fced7fab36d
+}
+
+pkgver() {
+  cd MuseScore
+  git describe --tags | sed 's/^v//'
+}
+
+build() {
+  cmake -S MuseScore -B build \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_SKIP_RPATH=ON \
+-DBUILD_CRASH_REPORTER=OFF \
+-DBUILD_TELEMETRY_MODULE=OFF \
+-DBUILD_WEBENGINE=OFF \
+-DDOWNLOAD_SOUNDFONT=OFF \
+-DMUSESCORE_BUILD_CONFIG=release \
+-DMUSESCORE_REVISION=$(git rev-parse --short=7 HEAD) \
+-DPACKAGE_FILE_ASSOCIATION=ON \
+-DUSE_SYSTEM_FREETYPE=ON \
+-Wno-dev
+  make -j1 lrelease manpages -C build;
+  make -C build;
+}
+
+package() {
+  make DESTDIR="${pkgdir}" install -C build
+}
+
+# vim: ts=2 sw=2 et:


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

2021-05-07 Thread Maxime Gauduin via arch-commits
Date: Friday, May 7, 2021 @ 13:23:14
  Author: alucryd
Revision: 928602

musescore 3.6.2-2: disable telemetry and webengine

Modified:
  musescore/trunk/PKGBUILD  (contents, properties)

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

Modified: PKGBUILD
===
--- PKGBUILD2021-05-07 12:54:35 UTC (rev 928601)
+++ PKGBUILD2021-05-07 13:23:14 UTC (rev 928602)
@@ -5,7 +5,7 @@
 
 pkgname=musescore
 pkgver=3.6.2
-pkgrel=1
+pkgrel=2
 pkgdesc='Create, play and print beautiful sheet music'
 arch=(x86_64)
 url=https://musescore.org/
@@ -46,7 +46,6 @@
 prepare() {
   cd MuseScore
   git cherry-pick -n 63d8b7ee90e9ec6604e334a3ebb12fced7fab36d
-  sed 's/option(BUILD_CRASH_REPORTER "Build with crash reporter" 
ON)/option(BUILD_CRASH_REPORTER "Build with crash reporter" OFF)/' -i 
CMakeLists.txt
 }
 
 pkgver() {
@@ -55,11 +54,24 @@
 }
 
 build() {
-  make PREFIX=/usr NO_RPATH=TRUE USE_SYSTEM_FREETYPE=ON 
MUSESCORE_BUILD_CONFIG=release -C MuseScore revision release
+  cmake -S MuseScore -B build \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_SKIP_RPATH=ON \
+-DBUILD_CRASH_REPORTER=OFF \
+-DBUILD_TELEMETRY_MODULE=OFF \
+-DBUILD_WEBENGINE=OFF \
+-DDOWNLOAD_SOUNDFONT=OFF \
+-DMUSESCORE_BUILD_CONFIG=release \
+-DMUSESCORE_REVISION=$(git rev-parse --short=7 HEAD) \
+-DPACKAGE_FILE_ASSOCIATION=ON \
+-DUSE_SYSTEM_FREETYPE=ON \
+-Wno-dev
+  make -j1 lrelease manpages -C build;
+  make -C build;
 }
 
 package() {
-  make DESTDIR="${pkgdir}" UPDATE_CACHE=FALSE -C MuseScore/build.release 
install
+  make DESTDIR="${pkgdir}" install -C build
 }
 
 # vim: ts=2 sw=2 et:


Property changes on: musescore/trunk/PKGBUILD
___
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property


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

2021-05-07 Thread Andrew Crerar via arch-commits
Date: Friday, May 7, 2021 @ 12:54:35
  Author: andrewsc
Revision: 928601

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-05-07 12:54:09 UTC (rev 928600)
+++ PKGBUILD2021-05-07 12:54:35 UTC (rev 928601)
@@ -1,230 +0,0 @@
-# Maintainer: Andrew Crerar 
-
-pkgbase=firefox-developer-edition-i18n
-pkgver=89.0b8
-pkgrel=1
-pkgdesc="Language pack for Firefox Developer Edition"
-arch=('any')
-url="https://www.mozilla.com/;
-license=('MPL' 'GPL')
-
-_languages=(
-  'ach "Acholi"'
-  'af  "Afrikaans"'
-  'an  "Aragonese"'
-  'ar  "Arabic"'
-  'ast "Asturian"'
-  'az  "Azerbaijani"'
-  'be  "Belarusian"'
-  'bg  "Bulgarian"'
-  'bn  "Bengali"'
-  'br  "Breton"'
-  'bs  "Bosnian"'
-  'ca  "Catalan"'
-  'ca-valencia "Catalan (Valencian)"'
-  'cak "Maya Kaqchikel"'
-  'cs  "Czech"'
-  'cy  "Welsh"'
-  'da  "Danish"'
-  'de  "German"'
-  'dsb "Lower Sorbian"'
-  'el  "Greek"'
-  'en-CA   "English (Canada)"'
-  'en-GB   "English (British)"'
-  'en-US   "English (American)"'
-  'eo  "Esperanto"'
-  'es-AR   "Spanish (Argentina)"'
-  'es-CL   "Spanish (Chile)"'
-  'es-ES   "Spanish (Spain)"'
-  'es-MX   "Spanish (Mexico)"'
-  'et  "Estonian"'
-  'eu  "Basque"'
-  'fa  "Persian"'
-  'ff  "Fulah"'
-  'fi  "Finnish"'
-  'fr  "French"'
-  'fy-NL   "Frisian"'
-  'ga-IE   "Irish"'
-  'gd  "Gaelic (Scotland)"'
-  'gl  "Galician"'
-  'gn  "Guarani"'
-  'gu-IN   "Gujarati (India)"'
-  'he  "Hebrew"'
-  'hi-IN   "Hindi (India)"'
-  'hr  "Croatian"'
-  'hsb "Upper Sorbian"'
-  'hu  "Hungarian"'
-  'hy-AM   "Armenian"'
-  'ia  "Interlingua"'
-  'id  "Indonesian"'
-  'is  "Icelandic"'
-  'it  "Italian"'
-  'ja  "Japanese"'
-  'ka  "Georgian"'
-  'kab "Kabyle"'
-  'kk  "Kazakh"'
-  'km  "Khmer"'
-  'kn  "Kannada"'
-  'ko  "Korean"'
-  'lij "Ligurian"'
-  'lt  "Lithuanian"'
-  'lv  "Latvian"'
-  'mk  "Macedonian"'
-  'mr  "Marathi"'
-  'ms  "Malay"'
-  'my  "Burmese"'
-  'nb-NO   "Norwegian (Bokmål)"'
-  'ne-NP   "Nepali"'
-  'nl  "Dutch"'
-  'nn-NO   "Norwegian (Nynorsk)"'
-  'oc  "Occitan"'
-  'pa-IN   "Punjabi (India)"'
-  'pl  "Polish"'
-  'pt-BR   "Portuguese (Brazilian)"'
-  'pt-PT   "Portuguese (Portugal)"'
-  'rm  "Romansh"'
-  'ro  "Romanian"'
-  'ru  "Russian"'
-  'si  "Sinhala"'
-  'sk  "Slovak"'
-  'sl  "Slovenian"'
-  'son "Songhai"'
-  'sq  "Albanian"'
-  'sr  "Serbian"'
-  'sv-SE   "Swedish"'
-  'ta  "Tamil"'
-  'te  "Telugu"'
-  'th  "Thai"'
-  'tl  "Tagalog"'
-  'tr  "Turkish"'
-  'trs "Triqui"'
-  'uk  "Ukrainian"'
-  'ur  "Urdu"'
-  'uz  "Uzbek"'
-  'vi  "Vietnamese"'
-  'xh  "Xhosa"'
-  'zh-CN   "Chinese (Simplified)"'
-  'zh-TW   "Chinese (Traditional)"'
-)
-
-pkgname=()
-source=()
-_url=https://archive.mozilla.org/pub/firefox/releases/$pkgver/linux-x86_64/xpi
-
-for _lang in "${_languages[@]}"; do
-  _locale=${_lang%% *}
-  _pkgname=firefox-developer-edition-i18n-${_locale,,}
-
-  pkgname+=($_pkgname)
-  
source+=("firefox-developer-edition-i18n-$pkgver-$_locale.xpi::$_url/$_locale.xpi")
-  eval "package_$_pkgname() {
-_package $_lang
-  }"
-done
-
-# Don't extract anything
-noextract=(${source[@]%%::*})
-
-_package() {
-  pkgdesc="$2 language pack for Firefox Developer Edition"
-  depends=("firefox-developer-edition>=$pkgver")
-  install -Dm644 firefox-developer-edition-i18n-$pkgver-$1.xpi \
-
"$pkgdir/usr/lib/firefox-developer-edition/browser/extensions/langpack-$1...@firefox.mozilla.org.xpi"
-}
-
-sha512sums=('b2eccfdd00f59d29dbad299f024c8b877c7845e5c0f01ffd0162244f541a7c7948c67cdce9e4e849eba0174ab1b8083f97448f85ee57a276ec8f715eb01efdb6'
-
'76e994dc945985d2d630802435b4c5e123c6d801896d0effa3b7aa909c0ac37506276a81942f87f65837e8bcc23a6adda9311bba18acb0599b4232e7006a0acd'
-
'db06deeaf59dc020b17fc168bc5436816c68e03ff748c7be97a0dc2a21e40c1fd50c40cb1be80c9de0297e75f24187c554c9c66bbaeddb3efd41fb492599b218'
-

  1   2   >