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

2021-09-15 Thread Evangelos Foutras via arch-commits
Date: Thursday, September 16, 2021 @ 04:09:37
  Author: foutrelis
Revision: 424078

archrelease: copy trunk to testing-x86_64

Added:
  sudo/repos/testing-x86_64/
  sudo/repos/testing-x86_64/PKGBUILD
(from rev 424077, sudo/trunk/PKGBUILD)
  sudo/repos/testing-x86_64/append_defaults-boolean-flags.patch
(from rev 424077, sudo/trunk/append_defaults-boolean-flags.patch)
  sudo/repos/testing-x86_64/sudo.install
(from rev 424077, sudo/trunk/sudo.install)
  sudo/repos/testing-x86_64/sudo.pam
(from rev 424077, sudo/trunk/sudo.pam)
  sudo/repos/testing-x86_64/sudo_logsrvd.service
(from rev 424077, sudo/trunk/sudo_logsrvd.service)

-+
 PKGBUILD|   82 ++
 append_defaults-boolean-flags.patch |   48 +++
 sudo.install|9 +++
 sudo.pam|4 +
 sudo_logsrvd.service|   13 +
 5 files changed, 156 insertions(+)

Copied: sudo/repos/testing-x86_64/PKGBUILD (from rev 424077, 
sudo/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2021-09-16 04:09:37 UTC (rev 424078)
@@ -0,0 +1,82 @@
+# Maintainer: Evangelos Foutras 
+# Contributor: Allan McRae 
+# Contributor: Tom Newsom 
+
+pkgname=sudo
+_sudover=1.9.8
+pkgrel=2
+pkgver=${_sudover/p/.p}
+pkgdesc="Give certain users the ability to run some commands as root"
+arch=('x86_64')
+url="https://www.sudo.ws/sudo/;
+license=('custom')
+groups=('base-devel')
+depends=('glibc' 'openssl' 'pam' 'libldap' 'zlib')
+backup=('etc/pam.d/sudo'
+'etc/sudo.conf'
+'etc/sudo_logsrvd.conf'
+'etc/sudoers')
+install=$pkgname.install
+source=(https://www.sudo.ws/sudo/dist/$pkgname-$_sudover.tar.gz{,.sig}
+append_defaults-boolean-flags.patch
+sudo_logsrvd.service
+sudo.pam)
+sha256sums=('f1735de999804ea1af068fba6a82cb6674ea64c789813b29266fd3b16cb294e6'
+'SKIP'
+'36648e052a834275636bef75a00197e43cd1baaa07006cd3b426e99cc109b4b9'
+'8b91733b73171827c360a3e01f4692772b78e62ceca0cf0fd4b770aba35081a1'
+'d1738818070684a5d2c9b26224906aad69a4fea77aabd960fc2675aee2df1fa2')
+validpgpkeys=('59D1E9CCBA2B376704FDD35BA9F4C021CEA470FB')
+
+prepare() {
+  cd "$srcdir/$pkgname-$_sudover"
+  # https://bugs.archlinux.org/task/72146
+  patch -Np1 -i ../append_defaults-boolean-flags.patch
+}
+
+build() {
+  cd "$srcdir/$pkgname-$_sudover"
+
+  ./configure \
+--prefix=/usr \
+--sbindir=/usr/bin \
+--libexecdir=/usr/lib \
+--with-rundir=/run/sudo \
+--with-vardir=/var/db/sudo \
+--with-logfac=auth \
+--enable-tmpfiles.d \
+--with-pam \
+--with-sssd \
+--with-ldap \
+--with-ldap-conf-file=/etc/openldap/ldap.conf \
+--with-env-editor \
+--with-passprompt="[sudo] password for %p: " \
+--with-all-insults
+  make
+}
+
+check() {
+  cd "$srcdir/$pkgname-$_sudover"
+  make check
+}
+
+package() {
+  cd "$srcdir/$pkgname-$_sudover"
+  make DESTDIR="$pkgdir" install
+
+  # sudo_logsrvd service file (taken from sudo-logsrvd-1.9.0-1.el8.x86_64.rpm)
+  install -Dm644 -t "$pkgdir/usr/lib/systemd/system" ../sudo_logsrvd.service
+
+  # Remove sudoers.dist; not needed since pacman manages updates to sudoers
+  rm "$pkgdir/etc/sudoers.dist"
+
+  # Remove /run/sudo directory; we create it using systemd-tmpfiles
+  rmdir "$pkgdir/run/sudo"
+  rmdir "$pkgdir/run"
+
+  install -Dm644 "$srcdir/sudo.pam" "$pkgdir/etc/pam.d/sudo"
+
+  install -Dm644 doc/LICENSE "$pkgdir/usr/share/licenses/sudo/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: sudo/repos/testing-x86_64/append_defaults-boolean-flags.patch (from rev 
424077, sudo/trunk/append_defaults-boolean-flags.patch)
===
--- testing-x86_64/append_defaults-boolean-flags.patch  
(rev 0)
+++ testing-x86_64/append_defaults-boolean-flags.patch  2021-09-16 04:09:37 UTC 
(rev 424078)
@@ -0,0 +1,48 @@
+From d7cdf1e47c596c3fa6cffedd4904c67919389668 Mon Sep 17 00:00:00 2001
+From: "Todd C. Miller" 
+Date: Tue, 14 Sep 2021 08:02:37 -0600
+Subject: [PATCH] append_defaults() should not be passed a value for boolean
+ flags. The operation should simply be set to true/false. Also treat a NULL
+ file as coming from the front-end. Bug #993.
+
+---
+ plugins/sudoers/defaults.c | 3 +++
+ plugins/sudoers/policy.c   | 4 ++--
+ 2 files changed, 5 insertions(+), 2 deletions(-)
+
+diff --git a/plugins/sudoers/defaults.c b/plugins/sudoers/defaults.c
+index 5739b40e2..95e6fbd30 100644
+--- a/plugins/sudoers/defaults.c
 b/plugins/sudoers/defaults.c
+@@ -206,6 +206,9 @@ parse_default_entry(struct sudo_defs_types *def, const 
char *val, int op,
+ int rc;
+ debug_decl(parse_default_entry, SUDOERS_DEBUG_DEFAULTS);
+ 
++if (file == NULL)
++  

[arch-commits] Commit in sudo/trunk (PKGBUILD append_defaults-boolean-flags.patch)

2021-09-15 Thread Evangelos Foutras via arch-commits
Date: Thursday, September 16, 2021 @ 04:09:30
  Author: foutrelis
Revision: 424077

upgpkg: sudo 1.9.8-2: fix custom password prompt (FS#72146)

Added:
  sudo/trunk/append_defaults-boolean-flags.patch
Modified:
  sudo/trunk/PKGBUILD

-+
 PKGBUILD|6 +++-
 append_defaults-boolean-flags.patch |   48 ++
 2 files changed, 53 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-09-16 02:06:43 UTC (rev 424076)
+++ PKGBUILD2021-09-16 04:09:30 UTC (rev 424077)
@@ -4,7 +4,7 @@
 
 pkgname=sudo
 _sudover=1.9.8
-pkgrel=1
+pkgrel=2
 pkgver=${_sudover/p/.p}
 pkgdesc="Give certain users the ability to run some commands as root"
 arch=('x86_64')
@@ -18,10 +18,12 @@
 'etc/sudoers')
 install=$pkgname.install
 source=(https://www.sudo.ws/sudo/dist/$pkgname-$_sudover.tar.gz{,.sig}
+append_defaults-boolean-flags.patch
 sudo_logsrvd.service
 sudo.pam)
 sha256sums=('f1735de999804ea1af068fba6a82cb6674ea64c789813b29266fd3b16cb294e6'
 'SKIP'
+'36648e052a834275636bef75a00197e43cd1baaa07006cd3b426e99cc109b4b9'
 '8b91733b73171827c360a3e01f4692772b78e62ceca0cf0fd4b770aba35081a1'
 'd1738818070684a5d2c9b26224906aad69a4fea77aabd960fc2675aee2df1fa2')
 validpgpkeys=('59D1E9CCBA2B376704FDD35BA9F4C021CEA470FB')
@@ -28,6 +30,8 @@
 
 prepare() {
   cd "$srcdir/$pkgname-$_sudover"
+  # https://bugs.archlinux.org/task/72146
+  patch -Np1 -i ../append_defaults-boolean-flags.patch
 }
 
 build() {

Added: append_defaults-boolean-flags.patch
===
--- append_defaults-boolean-flags.patch (rev 0)
+++ append_defaults-boolean-flags.patch 2021-09-16 04:09:30 UTC (rev 424077)
@@ -0,0 +1,48 @@
+From d7cdf1e47c596c3fa6cffedd4904c67919389668 Mon Sep 17 00:00:00 2001
+From: "Todd C. Miller" 
+Date: Tue, 14 Sep 2021 08:02:37 -0600
+Subject: [PATCH] append_defaults() should not be passed a value for boolean
+ flags. The operation should simply be set to true/false. Also treat a NULL
+ file as coming from the front-end. Bug #993.
+
+---
+ plugins/sudoers/defaults.c | 3 +++
+ plugins/sudoers/policy.c   | 4 ++--
+ 2 files changed, 5 insertions(+), 2 deletions(-)
+
+diff --git a/plugins/sudoers/defaults.c b/plugins/sudoers/defaults.c
+index 5739b40e2..95e6fbd30 100644
+--- a/plugins/sudoers/defaults.c
 b/plugins/sudoers/defaults.c
+@@ -206,6 +206,9 @@ parse_default_entry(struct sudo_defs_types *def, const 
char *val, int op,
+ int rc;
+ debug_decl(parse_default_entry, SUDOERS_DEBUG_DEFAULTS);
+ 
++if (file == NULL)
++  file = "front-end";
++
+ sudo_debug_printf(SUDO_DEBUG_INFO, "%s: %s:%d:%d: %s=%s op=%d",
+   __func__, file, line, column, def->name, val ? val : "", op);
+ 
+diff --git a/plugins/sudoers/policy.c b/plugins/sudoers/policy.c
+index eb1ce43b7..c8c20735d 100644
+--- a/plugins/sudoers/policy.c
 b/plugins/sudoers/policy.c
+@@ -224,7 +224,7 @@ sudoers_policy_deserialize_info(void *v, struct 
defaults_list *defaults)
+   if (MATCHES(*cur, "prompt=")) {
+   /* Allow epmpty prompt. */
+   user_prompt = *cur + sizeof("prompt=") - 1;
+-  if (!append_default("passprompt_override", "true", true, NULL, 
defaults))
++  if (!append_default("passprompt_override", NULL, true, NULL, 
defaults))
+   goto oom;
+   continue;
+   }
+@@ -285,7 +285,7 @@ sudoers_policy_deserialize_info(void *v, struct 
defaults_list *defaults)
+   if (MATCHES(*cur, "login_class=")) {
+   CHECK(*cur, "login_class=");
+   login_class = *cur + sizeof("login_class=") - 1;
+-  if (!append_default("use_loginclass", "true", true, NULL, defaults))
++  if (!append_default("use_loginclass", NULL, true, NULL, defaults))
+   goto oom;
+   continue;
+   }



[arch-commits] Commit in arm-none-eabi-gdb/repos/community-x86_64 (4 files)

2021-09-15 Thread Anatol Pomozov via arch-commits
Date: Thursday, September 16, 2021 @ 02:13:43
  Author: anatolik
Revision: 1016135

archrelease: copy trunk to community-x86_64

Added:
  arm-none-eabi-gdb/repos/community-x86_64/PKGBUILD
(from rev 1016134, arm-none-eabi-gdb/trunk/PKGBUILD)
  arm-none-eabi-gdb/repos/community-x86_64/fix_python37.patch
(from rev 1016134, arm-none-eabi-gdb/trunk/fix_python37.patch)
Deleted:
  arm-none-eabi-gdb/repos/community-x86_64/PKGBUILD
  arm-none-eabi-gdb/repos/community-x86_64/fix_python37.patch

+
 PKGBUILD   |  110 +-
 fix_python37.patch |  132 +--
 2 files changed, 121 insertions(+), 121 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-09-16 02:13:21 UTC (rev 1016134)
+++ PKGBUILD2021-09-16 02:13:43 UTC (rev 1016135)
@@ -1,55 +0,0 @@
-# Maintainer: Anatol Pomozov 
-# Contributor: Martin Schmölzer 
-
-_target=arm-none-eabi
-pkgname=$_target-gdb
-pkgver=10.2
-pkgrel=2
-pkgdesc='The GNU Debugger for the ARM EABI (bare-metal) target'
-arch=(x86_64)
-url='https://www.gnu.org/software/gdb/'
-license=(GPL3)
-depends=(xz ncurses expat python guile gdb-common mpfr libelf source-highlight)
-optdepends=('stlink: for debugging over STLINK')
-options=(!emptydirs)
-source=(https://ftp.gnu.org/gnu/gdb/gdb-$pkgver.tar.xz{,.sig})
-sha256sums=('aaa1223d534c9b700a8bec952d9748ee1977513f178727e1bee520ee000b4f29'
-'SKIP')
-validpgpkeys=('F40ADB902B24264AA42E50BF92EDB04BFF325CF3') # Joel Brobecker 

-
-prepare() {
-  cd gdb-$pkgver
-  sed -i "/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/" libiberty/configure
-}
-
-build() {
-  cd gdb-$pkgver
-
-  mkdir -p build && cd build
-  ../configure \
---target=$_target \
---prefix=/usr \
---enable-languages=c,c++ \
---enable-multilib \
---enable-interwork \
---with-system-readline \
---disable-nls \
---enable-source-highlight \
---with-python=/usr/bin/python \
---with-guile=guile-2.2 \
---with-system-gdbinit=/etc/gdb/gdbinit
-
-  make
-}
-
-package() {
-  cd gdb-$pkgver/build
-
-  make -C gdb DESTDIR="$pkgdir" install
-
-  # Following files conflict with 'gdb'/'gdb-common' packages
-  rm -r "$pkgdir"/usr/include/gdb/
-  rm -r "$pkgdir"/usr/share/gdb/
-  rm -r "$pkgdir"/usr/share/info/
-  rm -r "$pkgdir"/usr/share/man/man5/
-}

Copied: arm-none-eabi-gdb/repos/community-x86_64/PKGBUILD (from rev 1016134, 
arm-none-eabi-gdb/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-09-16 02:13:43 UTC (rev 1016135)
@@ -0,0 +1,55 @@
+# Maintainer: Anatol Pomozov 
+# Contributor: Martin Schmölzer 
+
+_target=arm-none-eabi
+pkgname=$_target-gdb
+pkgver=11.1
+pkgrel=1
+pkgdesc='The GNU Debugger for the ARM EABI (bare-metal) target'
+arch=(x86_64)
+url='https://www.gnu.org/software/gdb/'
+license=(GPL3)
+depends=(xz ncurses expat python guile gdb-common mpfr libelf source-highlight)
+optdepends=('stlink: for debugging over STLINK')
+options=(!emptydirs)
+source=(https://ftp.gnu.org/gnu/gdb/gdb-$pkgver.tar.xz{,.sig})
+sha256sums=('cccfcc407b20d343fb320d4a9a2110776dd3165118ffd41f4b1b162340333f94'
+'SKIP')
+validpgpkeys=('F40ADB902B24264AA42E50BF92EDB04BFF325CF3') # Joel Brobecker 

+
+prepare() {
+  cd gdb-$pkgver
+  sed -i "/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/" libiberty/configure
+}
+
+build() {
+  cd gdb-$pkgver
+
+  mkdir -p build && cd build
+  ../configure \
+--target=$_target \
+--prefix=/usr \
+--enable-languages=c,c++ \
+--enable-multilib \
+--enable-interwork \
+--with-system-readline \
+--disable-nls \
+--enable-source-highlight \
+--with-python=/usr/bin/python \
+--with-guile=guile-2.2 \
+--with-system-gdbinit=/etc/gdb/gdbinit
+
+  make
+}
+
+package() {
+  cd gdb-$pkgver/build
+
+  make -C gdb DESTDIR="$pkgdir" install
+
+  # Following files conflict with 'gdb'/'gdb-common' packages
+  rm -r "$pkgdir"/usr/include/gdb/
+  rm -r "$pkgdir"/usr/share/gdb/
+  rm -r "$pkgdir"/usr/share/info/
+  rm -r "$pkgdir"/usr/share/man/man5/
+}

Deleted: fix_python37.patch
===
--- fix_python37.patch  2021-09-16 02:13:21 UTC (rev 1016134)
+++ fix_python37.patch  2021-09-16 02:13:43 UTC (rev 1016135)
@@ -1,66 +0,0 @@
-From aeab512851bf6ed623d1c6c4305b6ce05e51a10c Mon Sep 17 00:00:00 2001
-From: Paul Koning 
-Date: Fri, 8 Jun 2018 13:26:36 -0400
-Subject: [PATCH] Fix build issue with Python 3.7
-
-Originally reported in
-https://bugzilla.redhat.com/show_bug.cgi?id=1577396 -- gdb build fails
-with Python 3.7 due to references to a Python internal function whose
-declaration changed in 3.7.
-
-gdb/ChangeLog
-2018-06-08  Paul Koning  
-
-   PR gdb/23252
-
-   * python/python.c (do_start_initialization):
-   Avoid call to internal Python 

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

2021-09-15 Thread Anatol Pomozov via arch-commits
Date: Thursday, September 16, 2021 @ 02:13:21
  Author: anatolik
Revision: 1016134

upgpkg: arm-none-eabi-gdb 11.1-1

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

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-16 02:10:35 UTC (rev 1016133)
+++ PKGBUILD2021-09-16 02:13:21 UTC (rev 1016134)
@@ -3,8 +3,8 @@
 
 _target=arm-none-eabi
 pkgname=$_target-gdb
-pkgver=10.2
-pkgrel=2
+pkgver=11.1
+pkgrel=1
 pkgdesc='The GNU Debugger for the ARM EABI (bare-metal) target'
 arch=(x86_64)
 url='https://www.gnu.org/software/gdb/'
@@ -13,7 +13,7 @@
 optdepends=('stlink: for debugging over STLINK')
 options=(!emptydirs)
 source=(https://ftp.gnu.org/gnu/gdb/gdb-$pkgver.tar.xz{,.sig})
-sha256sums=('aaa1223d534c9b700a8bec952d9748ee1977513f178727e1bee520ee000b4f29'
+sha256sums=('cccfcc407b20d343fb320d4a9a2110776dd3165118ffd41f4b1b162340333f94'
 'SKIP')
 validpgpkeys=('F40ADB902B24264AA42E50BF92EDB04BFF325CF3') # Joel Brobecker 

 



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

2021-09-15 Thread Anatol Pomozov via arch-commits
Date: Thursday, September 16, 2021 @ 02:10:35
  Author: anatolik
Revision: 1016133

archrelease: copy trunk to community-x86_64

Added:
  avr-gdb/repos/community-x86_64/PKGBUILD
(from rev 1016132, avr-gdb/trunk/PKGBUILD)
  avr-gdb/repos/community-x86_64/fix_python37.patch
(from rev 1016132, avr-gdb/trunk/fix_python37.patch)
Deleted:
  avr-gdb/repos/community-x86_64/PKGBUILD
  avr-gdb/repos/community-x86_64/fix_python37.patch

+
 PKGBUILD   |  112 +--
 fix_python37.patch |  132 +--
 2 files changed, 122 insertions(+), 122 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-09-16 02:10:13 UTC (rev 1016132)
+++ PKGBUILD2021-09-16 02:10:35 UTC (rev 1016133)
@@ -1,56 +0,0 @@
-# Maintainer: schuay 
-# Contributor: Ivan Sichmann Freitas 
-# Contributor: Laszlo Papp 
-# Contributor: Gerardo Exequiel Pozzi 
-# Contributor: Vladimir Cerny 
-# Contributor: 4javier <4javieregATgmailDOTcom>
-
-_target=avr
-pkgname=$_target-gdb
-pkgver=10.2
-pkgrel=1
-pkgdesc='The GNU Debugger for AVR'
-arch=(x86_64)
-url='https://www.gnu.org/software/gdb/'
-license=(GPL3)
-depends=(xz ncurses expat python guile gdb-common mpfr libelf)
-options=(!emptydirs)
-source=(https://ftp.gnu.org/gnu/gdb/gdb-$pkgver.tar.xz{,.sig})
-sha256sums=('aaa1223d534c9b700a8bec952d9748ee1977513f178727e1bee520ee000b4f29'
-'SKIP')
-validpgpkeys=('F40ADB902B24264AA42E50BF92EDB04BFF325CF3') # Joel Brobecker 

-
-prepare() {
-  cd gdb-$pkgver
-  sed -i "/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/" libiberty/configure
-}
-
-build() {
-  cd gdb-$pkgver
-
-  mkdir -p build && cd build
-  ../configure \
---disable-nls \
---enable-languages=c,c++ \
---prefix=/usr \
---target=$_target \
---with-python=/usr/bin/python \
---with-guile=guile-2.2 \
---with-system-readline \
---with-system-gdbinit=/etc/gdb/gdbinit
-
-  make
-}
-
-package() {
-  cd gdb-$pkgver/build
-
-  make -C gdb DESTDIR="$pkgdir" install
-
-  # Following files conflict with 'gdb'/'gdb-common' packages
-  rm -r "$pkgdir"/usr/include/gdb/
-  rm -r "$pkgdir"/usr/share/gdb/
-  rm -r "$pkgdir"/usr/share/info/
-  rm -r "$pkgdir"/usr/share/man/man5/
-
-}

Copied: avr-gdb/repos/community-x86_64/PKGBUILD (from rev 1016132, 
avr-gdb/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-09-16 02:10:35 UTC (rev 1016133)
@@ -0,0 +1,56 @@
+# Maintainer: schuay 
+# Contributor: Ivan Sichmann Freitas 
+# Contributor: Laszlo Papp 
+# Contributor: Gerardo Exequiel Pozzi 
+# Contributor: Vladimir Cerny 
+# Contributor: 4javier <4javieregATgmailDOTcom>
+
+_target=avr
+pkgname=$_target-gdb
+pkgver=11.1
+pkgrel=1
+pkgdesc='The GNU Debugger for AVR'
+arch=(x86_64)
+url='https://www.gnu.org/software/gdb/'
+license=(GPL3)
+depends=(xz ncurses expat python guile gdb-common mpfr libelf)
+options=(!emptydirs)
+source=(https://ftp.gnu.org/gnu/gdb/gdb-$pkgver.tar.xz{,.sig})
+sha256sums=('cccfcc407b20d343fb320d4a9a2110776dd3165118ffd41f4b1b162340333f94'
+'SKIP')
+validpgpkeys=('F40ADB902B24264AA42E50BF92EDB04BFF325CF3') # Joel Brobecker 

+
+prepare() {
+  cd gdb-$pkgver
+  sed -i "/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/" libiberty/configure
+}
+
+build() {
+  cd gdb-$pkgver
+
+  mkdir -p build && cd build
+  ../configure \
+--disable-nls \
+--enable-languages=c,c++ \
+--prefix=/usr \
+--target=$_target \
+--with-python=/usr/bin/python \
+--with-guile=guile-2.2 \
+--with-system-readline \
+--with-system-gdbinit=/etc/gdb/gdbinit
+
+  make
+}
+
+package() {
+  cd gdb-$pkgver/build
+
+  make -C gdb DESTDIR="$pkgdir" install
+
+  # Following files conflict with 'gdb'/'gdb-common' packages
+  rm -r "$pkgdir"/usr/include/gdb/
+  rm -r "$pkgdir"/usr/share/gdb/
+  rm -r "$pkgdir"/usr/share/info/
+  rm -r "$pkgdir"/usr/share/man/man5/
+
+}

Deleted: fix_python37.patch
===
--- fix_python37.patch  2021-09-16 02:10:13 UTC (rev 1016132)
+++ fix_python37.patch  2021-09-16 02:10:35 UTC (rev 1016133)
@@ -1,66 +0,0 @@
-From aeab512851bf6ed623d1c6c4305b6ce05e51a10c Mon Sep 17 00:00:00 2001
-From: Paul Koning 
-Date: Fri, 8 Jun 2018 13:26:36 -0400
-Subject: [PATCH] Fix build issue with Python 3.7
-
-Originally reported in
-https://bugzilla.redhat.com/show_bug.cgi?id=1577396 -- gdb build fails
-with Python 3.7 due to references to a Python internal function whose
-declaration changed in 3.7.
-
-gdb/ChangeLog
-2018-06-08  Paul Koning  
-
-   PR gdb/23252
-
-   * python/python.c (do_start_initialization):
-   Avoid call to internal Python API.
-   (init__gdb_module): New function.

- gdb/ChangeLog   |  8 
- gdb/python/python.c | 18 +++---
- 2 files changed, 23 

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

2021-09-15 Thread Anatol Pomozov via arch-commits
Date: Thursday, September 16, 2021 @ 02:10:13
  Author: anatolik
Revision: 1016132

upgpkg: avr-gdb 11.1-1

Modified:
  avr-gdb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-16 02:07:45 UTC (rev 1016131)
+++ PKGBUILD2021-09-16 02:10:13 UTC (rev 1016132)
@@ -7,7 +7,7 @@
 
 _target=avr
 pkgname=$_target-gdb
-pkgver=10.2
+pkgver=11.1
 pkgrel=1
 pkgdesc='The GNU Debugger for AVR'
 arch=(x86_64)
@@ -16,7 +16,7 @@
 depends=(xz ncurses expat python guile gdb-common mpfr libelf)
 options=(!emptydirs)
 source=(https://ftp.gnu.org/gnu/gdb/gdb-$pkgver.tar.xz{,.sig})
-sha256sums=('aaa1223d534c9b700a8bec952d9748ee1977513f178727e1bee520ee000b4f29'
+sha256sums=('cccfcc407b20d343fb320d4a9a2110776dd3165118ffd41f4b1b162340333f94'
 'SKIP')
 validpgpkeys=('F40ADB902B24264AA42E50BF92EDB04BFF325CF3') # Joel Brobecker 

 



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

2021-09-15 Thread Anatol Pomozov via arch-commits
Date: Thursday, September 16, 2021 @ 02:07:45
  Author: anatolik
Revision: 1016131

archrelease: copy trunk to community-x86_64

Added:
  aarch64-linux-gnu-gdb/repos/community-x86_64/PKGBUILD
(from rev 1016130, aarch64-linux-gnu-gdb/trunk/PKGBUILD)
  aarch64-linux-gnu-gdb/repos/community-x86_64/fix_python37.patch
(from rev 1016130, aarch64-linux-gnu-gdb/trunk/fix_python37.patch)
Deleted:
  aarch64-linux-gnu-gdb/repos/community-x86_64/PKGBUILD
  aarch64-linux-gnu-gdb/repos/community-x86_64/fix_python37.patch

+
 PKGBUILD   |  108 -
 fix_python37.patch |  132 +--
 2 files changed, 120 insertions(+), 120 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-09-16 02:07:22 UTC (rev 1016130)
+++ PKGBUILD2021-09-16 02:07:45 UTC (rev 1016131)
@@ -1,54 +0,0 @@
-# Maintainer: Anatol Pomozov 
-
-_target=aarch64-linux-gnu
-pkgname=$_target-gdb
-pkgver=10.2
-pkgrel=1
-pkgdesc='The GNU Debugger for the ARM64 target'
-arch=(x86_64)
-url='https://www.gnu.org/software/gdb/'
-license=(GPL3)
-depends=(xz ncurses expat python guile gdb-common mpfr libelf source-highlight)
-options=(!emptydirs)
-source=(https://ftp.gnu.org/gnu/gdb/gdb-$pkgver.tar.xz{,.sig})
-validpgpkeys=('F40ADB902B24264AA42E50BF92EDB04BFF325CF3') # Joel Brobecker
-sha256sums=('aaa1223d534c9b700a8bec952d9748ee1977513f178727e1bee520ee000b4f29'
-'SKIP')
-validpgpkeys=('F40ADB902B24264AA42E50BF92EDB04BFF325CF3') # Joel Brobecker 

-
-prepare() {
-  cd gdb-$pkgver
-  sed -i "/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/" libiberty/configure
-}
-
-build() {
-  cd gdb-$pkgver
-
-  mkdir -p build && cd build
-  ../configure \
---target=$_target \
---prefix=/usr \
---enable-source-highlight \
---enable-languages=c,c++ \
---disable-multilib \
---enable-interwork \
---with-system-readline \
---disable-nls \
---with-python=/usr/bin/python \
---with-guile=guile-2.2 \
---with-system-gdbinit=/etc/gdb/gdbinit
-
-  make
-}
-
-package() {
-  cd gdb-$pkgver/build
-
-  make -C gdb DESTDIR="${pkgdir}" install
-
-  # Following files conflict with 'gdb'/'gdb-common' packages
-  rm -r "${pkgdir}"/usr/include/gdb/
-  rm -r "${pkgdir}"/usr/share/gdb/
-  rm -r "${pkgdir}"/usr/share/info/
-  rm -r "${pkgdir}"/usr/share/man/man5/
-}

Copied: aarch64-linux-gnu-gdb/repos/community-x86_64/PKGBUILD (from rev 
1016130, aarch64-linux-gnu-gdb/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-09-16 02:07:45 UTC (rev 1016131)
@@ -0,0 +1,54 @@
+# Maintainer: Anatol Pomozov 
+
+_target=aarch64-linux-gnu
+pkgname=$_target-gdb
+pkgver=11.1
+pkgrel=1
+pkgdesc='The GNU Debugger for the ARM64 target'
+arch=(x86_64)
+url='https://www.gnu.org/software/gdb/'
+license=(GPL3)
+depends=(xz ncurses expat python guile gdb-common mpfr libelf source-highlight)
+options=(!emptydirs)
+source=(https://ftp.gnu.org/gnu/gdb/gdb-$pkgver.tar.xz{,.sig})
+validpgpkeys=('F40ADB902B24264AA42E50BF92EDB04BFF325CF3') # Joel Brobecker
+sha256sums=('cccfcc407b20d343fb320d4a9a2110776dd3165118ffd41f4b1b162340333f94'
+'SKIP')
+validpgpkeys=('F40ADB902B24264AA42E50BF92EDB04BFF325CF3') # Joel Brobecker 

+
+prepare() {
+  cd gdb-$pkgver
+  sed -i "/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/" libiberty/configure
+}
+
+build() {
+  cd gdb-$pkgver
+
+  mkdir -p build && cd build
+  ../configure \
+--target=$_target \
+--prefix=/usr \
+--enable-source-highlight \
+--enable-languages=c,c++ \
+--disable-multilib \
+--enable-interwork \
+--with-system-readline \
+--disable-nls \
+--with-python=/usr/bin/python \
+--with-guile=guile-2.2 \
+--with-system-gdbinit=/etc/gdb/gdbinit
+
+  make
+}
+
+package() {
+  cd gdb-$pkgver/build
+
+  make -C gdb DESTDIR="${pkgdir}" install
+
+  # Following files conflict with 'gdb'/'gdb-common' packages
+  rm -r "${pkgdir}"/usr/include/gdb/
+  rm -r "${pkgdir}"/usr/share/gdb/
+  rm -r "${pkgdir}"/usr/share/info/
+  rm -r "${pkgdir}"/usr/share/man/man5/
+}

Deleted: fix_python37.patch
===
--- fix_python37.patch  2021-09-16 02:07:22 UTC (rev 1016130)
+++ fix_python37.patch  2021-09-16 02:07:45 UTC (rev 1016131)
@@ -1,66 +0,0 @@
-From aeab512851bf6ed623d1c6c4305b6ce05e51a10c Mon Sep 17 00:00:00 2001
-From: Paul Koning 
-Date: Fri, 8 Jun 2018 13:26:36 -0400
-Subject: [PATCH] Fix build issue with Python 3.7
-
-Originally reported in
-https://bugzilla.redhat.com/show_bug.cgi?id=1577396 -- gdb build fails
-with Python 3.7 due to references to a Python internal function whose
-declaration changed in 3.7.
-
-gdb/ChangeLog
-2018-06-08  Paul Koning  
-
-   PR gdb/23252
-
-   * python/python.c (do_start_initialization):
-   Avoid call to 

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

2021-09-15 Thread Anatol Pomozov via arch-commits
Date: Thursday, September 16, 2021 @ 02:07:22
  Author: anatolik
Revision: 1016130

upgpkg: aarch64-linux-gnu-gdb 11.1-1

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

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-16 02:04:22 UTC (rev 1016129)
+++ PKGBUILD2021-09-16 02:07:22 UTC (rev 1016130)
@@ -2,7 +2,7 @@
 
 _target=aarch64-linux-gnu
 pkgname=$_target-gdb
-pkgver=10.2
+pkgver=11.1
 pkgrel=1
 pkgdesc='The GNU Debugger for the ARM64 target'
 arch=(x86_64)
@@ -12,7 +12,7 @@
 options=(!emptydirs)
 source=(https://ftp.gnu.org/gnu/gdb/gdb-$pkgver.tar.xz{,.sig})
 validpgpkeys=('F40ADB902B24264AA42E50BF92EDB04BFF325CF3') # Joel Brobecker
-sha256sums=('aaa1223d534c9b700a8bec952d9748ee1977513f178727e1bee520ee000b4f29'
+sha256sums=('cccfcc407b20d343fb320d4a9a2110776dd3165118ffd41f4b1b162340333f94'
 'SKIP')
 validpgpkeys=('F40ADB902B24264AA42E50BF92EDB04BFF325CF3') # Joel Brobecker 

 



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

2021-09-15 Thread Anatol Pomozov via arch-commits
Date: Thursday, September 16, 2021 @ 02:04:22
  Author: anatolik
Revision: 1016129

archrelease: copy trunk to community-testing-x86_64

Added:
  bcc/repos/community-testing-x86_64/
  bcc/repos/community-testing-x86_64/PKGBUILD
(from rev 1016128, bcc/trunk/PKGBUILD)

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

Copied: bcc/repos/community-testing-x86_64/PKGBUILD (from rev 1016128, 
bcc/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2021-09-16 02:04:22 UTC (rev 1016129)
@@ -0,0 +1,87 @@
+# Maintainer: Anatol Pomozov 
+# Contributor: Gordian Edenhofer 
+# Contributor: Troy Engel 
+
+pkgbase=bcc
+pkgname=('bcc' 'bcc-tools' 'python-bcc')
+pkgver=0.22.0
+pkgrel=1
+pkgdesc='BPF Compiler Collection'
+arch=('x86_64')
+url='https://github.com/iovisor/bcc'
+license=('Apache')
+makedepends=('cmake' 'clang' 'llvm' 'flex' 'bison' 'python')
+checkdepends=('netperf' 'iperf')
+source=("bcc-$pkgver.tar.gz"::"https://github.com/iovisor/bcc/releases/download/v$pkgver/bcc-src-with-submodule.tar.gz;)
+sha512sums=('a522fdb11f7d45f7e85083d41a6fbf39b9dbbdad7de777532200ead1f1ce1e1e2450f027a22929d29c5531860141e73c897e5c0ac77b1e79c810e298b3c50afb')
+
+build() {
+  mkdir -p bcc/build
+  cd bcc/build
+
+  # The python version is irrelevant at this stage
+  cmake -DREVISION=$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=/usr/lib .. \
+-DENABLE_LLVM_SHARED=1   # FS#71163
+
+  make
+}
+
+package_bcc() {
+  pkgdesc='BPF Compiler Collection - C library and examples'
+  depends=('clang' 'libelf')
+  optdepends=('linux-headers: build modules against the Arch kernel'
+'linux-lts-headers: build modules against the LTS kernel'
+'linux-zen-headers: build modules against the ZEN kernel'
+'linux-hardened-headers: build modules against the HARDENED kernel'
+'bcc-tools: Python utilites using the BCC library'
+'python-bcc: Python 3 bindings for BCC')
+  provides=('bcc' 'libbcc')
+
+  cd bcc/build
+
+  # Install the kitchen sink
+  make DESTDIR="$pkgdir" install
+
+  # These go in a split package python*-bcc
+  rm -rf "$pkgdir"/usr/lib/python*
+
+  # These go in a split package bcc-tools
+  rm -rf "$pkgdir"/usr/share/bcc/{tools,man}
+}
+
+package_bcc-tools() {
+  pkgdesc='BPF Compiler Collection - Tools'
+  depends=('bcc' 'libedit' 'ethtool')
+  optdepends=(
+   'python-bcc: Python 3 bindings for BCC'
+'luajit: Lua bindings for BCC'
+  )
+
+  cd bcc/build
+
+  make -C tools DESTDIR="$pkgdir" install
+  make -C man DESTDIR="$pkgdir" install
+}
+
+package_python-bcc() {
+  pkgdesc='BPF Compiler Collection - Python 3 bindings'
+  depends=('bcc' 'python')
+  optdepends=(
+   'python-netaddr: Network address representation and manipulation'
+'python-pyroute2: Netlink and Linux network configuration'
+  )
+
+  cd bcc/build
+
+  # Force a quick python3 binding build (C library is already built)
+  cmake -DREVISION=$pkgver \
+-DPYTHON_CMD="python" \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=/usr/lib ..
+  make -C "src/python"
+
+  # Install just those bindings
+  make -C "src/python" DESTDIR="$pkgdir" install
+}



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

2021-09-15 Thread Anatol Pomozov via arch-commits
Date: Thursday, September 16, 2021 @ 02:04:05
  Author: anatolik
Revision: 1016128

upgpkg: bcc 0.22.0-1

Modified:
  bcc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-15 23:26:11 UTC (rev 1016127)
+++ PKGBUILD2021-09-16 02:04:05 UTC (rev 1016128)
@@ -4,7 +4,7 @@
 
 pkgbase=bcc
 pkgname=('bcc' 'bcc-tools' 'python-bcc')
-pkgver=0.21.0
+pkgver=0.22.0
 pkgrel=1
 pkgdesc='BPF Compiler Collection'
 arch=('x86_64')
@@ -13,7 +13,7 @@
 makedepends=('cmake' 'clang' 'llvm' 'flex' 'bison' 'python')
 checkdepends=('netperf' 'iperf')
 
source=("bcc-$pkgver.tar.gz"::"https://github.com/iovisor/bcc/releases/download/v$pkgver/bcc-src-with-submodule.tar.gz;)
-sha512sums=('7cfd9c03f9aa62b6438b463cb5c0ca11f4cd9c8b99bf08192b1d3480162054d4ee4164b4eef73d55ae1b7bc84a0c875a8553227527e9006c1f1ab6e852144540')
+sha512sums=('a522fdb11f7d45f7e85083d41a6fbf39b9dbbdad7de777532200ead1f1ce1e1e2450f027a22929d29c5531860141e73c897e5c0ac77b1e79c810e298b3c50afb')
 
 build() {
   mkdir -p bcc/build



[arch-commits] Commit in xdg-desktop-portal-gtk/repos (3 files)

2021-09-15 Thread Jan Steffens via arch-commits
Date: Thursday, September 16, 2021 @ 01:21:38
  Author: heftig
Revision: 424075

archrelease: copy trunk to testing-x86_64

Added:
  xdg-desktop-portal-gtk/repos/testing-x86_64/
  xdg-desktop-portal-gtk/repos/testing-x86_64/PKGBUILD
(from rev 424073, xdg-desktop-portal-gtk/trunk/PKGBUILD)
  xdg-desktop-portal-gtk/repos/testing-x86_64/build.diff
(from rev 424073, xdg-desktop-portal-gtk/trunk/build.diff)

+
 PKGBUILD   |   56 
 build.diff |   21 +
 2 files changed, 77 insertions(+)

Copied: xdg-desktop-portal-gtk/repos/testing-x86_64/PKGBUILD (from rev 424073, 
xdg-desktop-portal-gtk/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2021-09-16 01:21:38 UTC (rev 424075)
@@ -0,0 +1,56 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Patrick Griffis 
+
+pkgname=xdg-desktop-portal-gtk
+pkgver=1.10.0
+pkgrel=1
+pkgdesc="A GTK+ backend for xdg-desktop-portal"
+url="https://github.com/flatpak/xdg-desktop-portal-gtk;
+arch=(x86_64)
+license=(LGPL)
+depends=(gtk3 gnome-desktop gnome-keyring)
+makedepends=(xdg-desktop-portal python git)
+optdepends=("evince: Print preview")
+provides=(xdg-desktop-portal-impl)
+_commit=3a9ac80eb720d1ba8a2aecc2108f66b2f737f185  # tags/1.10.0^0
+source=("git+https://github.com/flatpak/xdg-desktop-portal-gtk#commit=$_commit;
+build.diff)
+sha256sums=('SKIP'
+'43cc8f25956d543166bbdf1413ed4fae067a380cecb7415db1422bdb846c5067')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^v//;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  
+  # Fix build
+  git apply -3 ../build.diff
+
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr --libexecdir=/usr/lib \
+--enable-wallpaper \
+--enable-screenshot \
+--enable-screencast \
+--enable-background \
+--enable-settings \
+--enable-appchooser
+  make 
+}
+
+check() {
+  cd $pkgname
+  make check
+}
+
+package() {
+  cd $pkgname
+  DESTDIR="$pkgdir" make install
+}

Copied: xdg-desktop-portal-gtk/repos/testing-x86_64/build.diff (from rev 
424073, xdg-desktop-portal-gtk/trunk/build.diff)
===
--- testing-x86_64/build.diff   (rev 0)
+++ testing-x86_64/build.diff   2021-09-16 01:21:38 UTC (rev 424075)
@@ -0,0 +1,21 @@
+diff --git i/po/hi.po w/po/hi.po
+index 14d97bf..5795e0e 100644
+--- i/po/hi.po
 w/po/hi.po
+@@ -309,14 +309,14 @@ msgstr "गतिविधियां"
+ #~ "Select an application to open “%s”. More applications are available in Software."
+ #~ msgstr ""
+-#~ "खोलने के लिए एक आवेदन का चयन करें "%s". अधिक एप्लिकेशन उपलब्ध हैं सॉफ्टवेयर।"
+ 
+ #~ msgid ""
+ #~ "Select an application. More applications are available in Software."
+ #~ msgstr ""
+-#~ "एक आवेदन का चयन करें। सॉफ्टवेयर।"
+ 
+ #~ msgid "Unable to find a suitable application."



[arch-commits] Commit in xdg-desktop-portal/repos (2 files)

2021-09-15 Thread Jan Steffens via arch-commits
Date: Thursday, September 16, 2021 @ 01:21:38
  Author: heftig
Revision: 424074

archrelease: copy trunk to testing-x86_64

Added:
  xdg-desktop-portal/repos/testing-x86_64/
  xdg-desktop-portal/repos/testing-x86_64/PKGBUILD
(from rev 424073, xdg-desktop-portal/trunk/PKGBUILD)

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

Copied: xdg-desktop-portal/repos/testing-x86_64/PKGBUILD (from rev 424073, 
xdg-desktop-portal/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2021-09-16 01:21:38 UTC (rev 424074)
@@ -0,0 +1,45 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Patrick Griffis 
+
+pkgname=xdg-desktop-portal
+pkgver=1.10.0
+pkgrel=1
+pkgdesc="Desktop integration portals for sandboxed apps"
+url="https://github.com/flatpak/xdg-desktop-portal;
+arch=(x86_64)
+license=(LGPL)
+depends=(glib2 pipewire fuse2 geoclue2)
+makedepends=(python xmlto docbook-xsl git flatpak libportal)
+checkdepends=(epiphany gedit gvfs)
+_commit=cafdbae4a0abf14b939b3bfd73c7d5e5cadfd899  # tags/1.10.0^0
+source=("git+https://github.com/flatpak/xdg-desktop-portal#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr --libexecdir=/usr/lib
+  make 
+}
+
+check() {
+  cd $pkgname
+  make check
+}
+
+package() {
+  depends+=(xdg-desktop-portal-impl)
+
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}



[arch-commits] Commit in xdg-desktop-portal-gtk/trunk (PKGBUILD build.diff)

2021-09-15 Thread Jan Steffens via arch-commits
Date: Thursday, September 16, 2021 @ 01:21:23
  Author: heftig
Revision: 424073

1.10.0-1

Added:
  xdg-desktop-portal-gtk/trunk/build.diff
Modified:
  xdg-desktop-portal-gtk/trunk/PKGBUILD

+
 PKGBUILD   |   22 +-
 build.diff |   21 +
 2 files changed, 38 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-09-16 01:08:33 UTC (rev 424072)
+++ PKGBUILD2021-09-16 01:21:23 UTC (rev 424073)
@@ -3,7 +3,7 @@
 # Contributor: Patrick Griffis 
 
 pkgname=xdg-desktop-portal-gtk
-pkgver=1.8.0
+pkgver=1.10.0
 pkgrel=1
 pkgdesc="A GTK+ backend for xdg-desktop-portal"
 url="https://github.com/flatpak/xdg-desktop-portal-gtk;
@@ -13,9 +13,11 @@
 makedepends=(xdg-desktop-portal python git)
 optdepends=("evince: Print preview")
 provides=(xdg-desktop-portal-impl)
-_commit=5e45e780eecacfe199ee9582cce4c54a27ce186f  # tags/1.8.0^0
-source=("git+https://github.com/flatpak/xdg-desktop-portal-gtk#commit=$_commit;)
-sha256sums=('SKIP')
+_commit=3a9ac80eb720d1ba8a2aecc2108f66b2f737f185  # tags/1.10.0^0
+source=("git+https://github.com/flatpak/xdg-desktop-portal-gtk#commit=$_commit;
+build.diff)
+sha256sums=('SKIP'
+'43cc8f25956d543166bbdf1413ed4fae067a380cecb7415db1422bdb846c5067')
 
 pkgver() {
   cd $pkgname
@@ -24,12 +26,22 @@
 
 prepare() {
   cd $pkgname
+  
+  # Fix build
+  git apply -3 ../build.diff
+
   NOCONFIGURE=1 ./autogen.sh
 }
 
 build() {
   cd $pkgname
-  ./configure --prefix=/usr --libexecdir=/usr/lib
+  ./configure --prefix=/usr --libexecdir=/usr/lib \
+--enable-wallpaper \
+--enable-screenshot \
+--enable-screencast \
+--enable-background \
+--enable-settings \
+--enable-appchooser
   make 
 }
 

Added: build.diff
===
--- build.diff  (rev 0)
+++ build.diff  2021-09-16 01:21:23 UTC (rev 424073)
@@ -0,0 +1,21 @@
+diff --git i/po/hi.po w/po/hi.po
+index 14d97bf..5795e0e 100644
+--- i/po/hi.po
 w/po/hi.po
+@@ -309,14 +309,14 @@ msgstr "गतिविधियां"
+ #~ "Select an application to open “%s”. More applications are available in Software."
+ #~ msgstr ""
+-#~ "खोलने के लिए एक आवेदन का चयन करें "%s". अधिक एप्लिकेशन उपलब्ध हैं सॉफ्टवेयर।"
+ 
+ #~ msgid ""
+ #~ "Select an application. More applications are available in Software."
+ #~ msgstr ""
+-#~ "एक आवेदन का चयन करें। सॉफ्टवेयर।"
+ 
+ #~ msgid "Unable to find a suitable application."



[arch-commits] Commit in xdg-desktop-portal/trunk (PKGBUILD)

2021-09-15 Thread Jan Steffens via arch-commits
Date: Thursday, September 16, 2021 @ 01:08:33
  Author: heftig
Revision: 424072

1.10.0-1

Modified:
  xdg-desktop-portal/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-15 22:27:47 UTC (rev 424071)
+++ PKGBUILD2021-09-16 01:08:33 UTC (rev 424072)
@@ -3,7 +3,7 @@
 # Contributor: Patrick Griffis 
 
 pkgname=xdg-desktop-portal
-pkgver=1.8.1
+pkgver=1.10.0
 pkgrel=1
 pkgdesc="Desktop integration portals for sandboxed apps"
 url="https://github.com/flatpak/xdg-desktop-portal;
@@ -12,7 +12,7 @@
 depends=(glib2 pipewire fuse2 geoclue2)
 makedepends=(python xmlto docbook-xsl git flatpak libportal)
 checkdepends=(epiphany gedit gvfs)
-_commit=5768e075090413f780b8905b0351bc5aa487b9f3
+_commit=cafdbae4a0abf14b939b3bfd73c7d5e5cadfd899  # tags/1.10.0^0
 source=("git+https://github.com/flatpak/xdg-desktop-portal#commit=$_commit;)
 sha256sums=('SKIP')
 
@@ -23,7 +23,6 @@
 
 prepare() {
   cd $pkgname
-
   NOCONFIGURE=1 ./autogen.sh
 }
 
@@ -40,6 +39,7 @@
 
 package() {
   depends+=(xdg-desktop-portal-impl)
+
   cd $pkgname
   make DESTDIR="$pkgdir" install
 }



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

2021-09-15 Thread Massimiliano Torromeo via arch-commits
Date: Wednesday, September 15, 2021 @ 23:26:11
  Author: mtorromeo
Revision: 1016127

archrelease: copy trunk to community-x86_64

Added:
  pcp/repos/community-x86_64/PKGBUILD
(from rev 1016126, pcp/trunk/PKGBUILD)
  pcp/repos/community-x86_64/pcp.install
(from rev 1016126, pcp/trunk/pcp.install)
  pcp/repos/community-x86_64/sysuser.conf
(from rev 1016126, pcp/trunk/sysuser.conf)
  pcp/repos/community-x86_64/tmpfile.conf
(from rev 1016126, pcp/trunk/tmpfile.conf)
Deleted:
  pcp/repos/community-x86_64/PKGBUILD
  pcp/repos/community-x86_64/pcp.install
  pcp/repos/community-x86_64/sysuser.conf
  pcp/repos/community-x86_64/tmpfile.conf

--+
 PKGBUILD |  388 -
 pcp.install  |   14 +-
 sysuser.conf |2 
 tmpfile.conf |   14 +-
 4 files changed, 209 insertions(+), 209 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-09-15 23:25:51 UTC (rev 1016126)
+++ PKGBUILD2021-09-15 23:26:11 UTC (rev 1016127)
@@ -1,194 +0,0 @@
-# Maintainer: Massimiliano Torromeo 
-# Contributor: Iwan Timmer 
-
-pkgbase=pcp
-pkgname=(pcp pcp-gui pcp-pmda-activemq pcp-pmda-bcc pcp-pmda-bind2 
pcp-pmda-bpftrace pcp-pmda-libvirt
- pcp-pmda-mysql pcp-pmda-nginx pcp-pmda-nutcracker pcp-pmda-openmetrics
- pcp-pmda-podman pcp-pmda-postgresql pcp-pmda-snmp)
-pkgver=5.3.2
-pkgrel=1
-arch=('x86_64')
-url="https://pcp.io;
-license=('LGPL')
-makedepends=('avahi' 'procps-ng' 'which' 'libuv'
- 'rsync'
- 'qt5-svg' # gui
- 'python-openpyxl' # pcp2xlsx
- 'python-jsonpointer' 'python-six' # json
- 'libvirt-python' # libvirt
- 'python-lxml' # libvirt
- 'python-requests' # influxdb
- 'bpftrace' 'python-bcc' # bcc
- 'perl-net-snmp' # snmp
- 'perl-libwww' # nginx, activemq, bind2
- 'perl-xml-libxml' # bind2
- 'perl-file-slurp' # bind2
- 'perl-yaml-libyaml' # nutcracker
- 'perl-json' # nutcracker
- 'perl-dbd-mysql' # mysql
- 'python-psycopg2' # postgresql
- 'libvarlink' # podman
-)
-source=("https://github.com/performancecopilot/pcp/archive/$pkgver/$pkgname-$pkgver.tar.gz;
-"sysuser.conf"
-"tmpfile.conf")
-sha256sums=('13cd8a34dadaf5484a3042e72700b0f6ea564a5b663eccc8e874f1edef5310a2'
-'3e21ef7925296f73c91fe85c8dba341ce00366163845dd8993e2813b0ad5e4a4'
-'0166ffea180527de5a48a8e8f145cc80860b93e8f44bc5f96836c3d1cb4b01a2')
-
-build() {
-  cd "$pkgbase-$pkgver"
-  ./configure \
---prefix=/usr \
---sbindir=/usr/bin \
---libexecdir=/usr/lib \
---sysconfdir=/etc \
---localstatedir=/var \
---with-rundir=/run/pcp \
---without-dstat-symlink \
---with-python=no
-  make
-
-  mkdir -p "$srcdir"/installskel
-  make DIST_ROOT="$srcdir/installskel" NO_CHOWN=true install_pcp
-  rm -rf "$srcdir"/installskel/{var/lib/pcp/testsuite,run,var/tmp}
-
-  echo -e /{etc/pcp,var/lib/pcp/config}/{pmchart,pmsnap} \
-/usr/share/applications/pmchart.desktop \
-/usr/lib/pcp/bin/pmsnap \
-/usr/bin/{pmchart,pmconfirm,pmdumptext,pmmessage,pmquery,pmtime} \
-/usr/share/bash-completion/completions/pmdumptext \
-| sed -r 's/ +/\n/g' > ../gui.list
-}
-
-_package_module() {
-  local module="$1"
-
-  for moddir in {etc/pcp,var/lib/pcp/config/pmlogconf} 
{var,usr}/lib/pcp/pmdas; do
-[ ! -e "$srcdir/installskel/$moddir/$module" ] && continue
-install -dm0755 "$pkgdir/$moddir"
-mv "$srcdir/installskel/$moddir/$module" "$pkgdir"/$moddir/
-  done
-
-  if [ -e "$srcdir/installskel/usr/share/man/man1/pmda$module.1.gz" ]; then
-install -dm0755 "$pkgdir/usr/share/man/man1/"
-mv "$srcdir/installskel/usr/share/man/man1/pmda$module.1.gz" 
"$pkgdir/usr/share/man/man1/"
-  fi
-}
-
-package_pcp() {
-  pkgdesc='System performance analysis toolkit'
-  depends=('python' 'perl' 'avahi' 'procps-ng' 'which' 'libuv' 'inetutils')
-  optdepends=('perl-xml-tokeparser: sar2pcp'
-  'perl-date-parse: sar2pcp'
-  'python-openpyxl: pcp2xlsx')
-  install=pcp.install
-
-  cd "$pkgbase-$pkgver"
-  rsync -vaHAX --exclude-from=../gui.list --exclude-from=<(echo 
/{etc/pcp,var/lib/pcp/config/pmlogconf,{usr,var}/lib/pcp/pmdas}/{activemq,bcc,bind2,bpftrace,libvirt,json,mysql,nginx,nutcracker,openmetrics,podman,postgresql,snmp}
 
/usr/share/man/man1/pmda{activemq,bcc,bind2,bpftrace,libvirt,json,mysql,nginx,nutcracker,openmetrics,podman,postgresql,snmp}.1.gz
 | sed -r 's/ +/\n/g') "$srcdir"/installskel/ "$pkgdir"/
-
-  install -D -m644 "$srcdir"/sysuser.conf "$pkgdir"/usr/lib/sysusers.d/pcp.conf
-  install -D -m644 "$srcdir"/tmpfile.conf "$pkgdir"/usr/lib/tmpfiles.d/pcp.conf
-}
-
-package_pcp-gui() {
-  pkgdesc='Visualization tools for the Performance Co-Pilot toolkit'
-  depends=('pcp' 'qt5-svg')
-
-  while read f; 

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

2021-09-15 Thread Massimiliano Torromeo via arch-commits
Date: Wednesday, September 15, 2021 @ 23:25:51
  Author: mtorromeo
Revision: 1016126

upgpkg: pcp 5.3.3-1

Modified:
  pcp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-15 23:03:32 UTC (rev 1016125)
+++ PKGBUILD2021-09-15 23:25:51 UTC (rev 1016126)
@@ -5,7 +5,7 @@
 pkgname=(pcp pcp-gui pcp-pmda-activemq pcp-pmda-bcc pcp-pmda-bind2 
pcp-pmda-bpftrace pcp-pmda-libvirt
  pcp-pmda-mysql pcp-pmda-nginx pcp-pmda-nutcracker pcp-pmda-openmetrics
  pcp-pmda-podman pcp-pmda-postgresql pcp-pmda-snmp)
-pkgver=5.3.2
+pkgver=5.3.3
 pkgrel=1
 arch=('x86_64')
 url="https://pcp.io;
@@ -32,7 +32,7 @@
 
source=("https://github.com/performancecopilot/pcp/archive/$pkgver/$pkgname-$pkgver.tar.gz;
 "sysuser.conf"
 "tmpfile.conf")
-sha256sums=('13cd8a34dadaf5484a3042e72700b0f6ea564a5b663eccc8e874f1edef5310a2'
+sha256sums=('a5cd3ad6aba184560cd7267fa8d9198f966e58dd60af29f1ff04390b1eed4b27'
 '3e21ef7925296f73c91fe85c8dba341ce00366163845dd8993e2813b0ad5e4a4'
 '0166ffea180527de5a48a8e8f145cc80860b93e8f44bc5f96836c3d1cb4b01a2')
 



[arch-commits] Commit in intellij-idea-community-edition/repos/community-x86_64 (10 files)

2021-09-15 Thread Levente Polyak via arch-commits
Date: Wednesday, September 15, 2021 @ 23:03:32
  Author: anthraxx
Revision: 1016125

archrelease: copy trunk to community-x86_64

Added:
  intellij-idea-community-edition/repos/community-x86_64/PKGBUILD
(from rev 1016124, intellij-idea-community-edition/trunk/PKGBUILD)
  intellij-idea-community-edition/repos/community-x86_64/idea.desktop
(from rev 1016124, intellij-idea-community-edition/trunk/idea.desktop)
  intellij-idea-community-edition/repos/community-x86_64/idea.sh
(from rev 1016124, intellij-idea-community-edition/trunk/idea.sh)
  
intellij-idea-community-edition/repos/community-x86_64/kotlin_dist_for_ide.patch
(from rev 1016124, 
intellij-idea-community-edition/trunk/kotlin_dist_for_ide.patch)
  intellij-idea-community-edition/repos/community-x86_64/skip_jps_build.patch
(from rev 1016124, 
intellij-idea-community-edition/trunk/skip_jps_build.patch)
Deleted:
  intellij-idea-community-edition/repos/community-x86_64/PKGBUILD
  intellij-idea-community-edition/repos/community-x86_64/idea.desktop
  intellij-idea-community-edition/repos/community-x86_64/idea.sh
  
intellij-idea-community-edition/repos/community-x86_64/kotlin_dist_for_ide.patch
  intellij-idea-community-edition/repos/community-x86_64/skip_jps_build.patch

---+
 PKGBUILD  |  174 ++--
 idea.desktop  |   22 ++---
 idea.sh   |   40 +-
 kotlin_dist_for_ide.patch |   20 ++---
 skip_jps_build.patch  |   44 +--
 5 files changed, 150 insertions(+), 150 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-09-15 23:03:24 UTC (rev 1016124)
+++ PKGBUILD2021-09-15 23:03:32 UTC (rev 1016125)
@@ -1,87 +0,0 @@
-# Maintainer: Lukas Jirkovsky 
-# Maintainer: Levente Polyak 
-# Maintainer: Maxime Gauduin 
-# Maintainer: Orhun Parmaksız 
-
-pkgname=intellij-idea-community-edition
-pkgver=2021.2.1
-_build=212.5080.55
-pkgrel=1
-epoch=4
-pkgdesc='IDE for Java, Groovy and other programming languages with advanced 
refactoring features'
-url='https://www.jetbrains.com/idea/'
-arch=('x86_64')
-license=('Apache')
-backup=('usr/share/idea/bin/idea.vmoptions'
-'usr/share/idea/bin/idea64.vmoptions')
-depends=('giflib' 'java-environment=11' 'python' 'sh' 'ttf-font' 
'libdbusmenu-glib' 'fontconfig' 'hicolor-icon-theme')
-makedepends=('ant' 'git' 'java-environment=8')
-optdepends=(
-  'lldb: lldb frontend integration'
-)
-source=("git+https://github.com/JetBrains/intellij-community.git#tag=idea/${_build};
-
idea-android::"git://git.jetbrains.org/idea/android.git#tag=idea/${_build}"
-
idea-adt-tools-base::"git://git.jetbrains.org/idea/adt-tools-base.git#commit=17e9c8b666cac0b974b1efc5e1e4c33404f72904"
-idea.desktop
-idea.sh
-kotlin_dist_for_ide.patch
-skip_jps_build.patch)
-sha256sums=('SKIP'
-'SKIP'
-'SKIP'
-'049c4326b6b784da0c698cf62262b591b20abb52e0dcf869f869c0c655f3ce93'
-'115f1091edb138a7a7b15980e8538b4dfd28054cfab38b844df6d918b1b881c5'
-'438be6cb2ee731f6f89ba56506e0fac8aac7136c7dc89d3b4f332351d60d7a1e'
-'b023d7621674f335c32790e25bddadcec483342835af24ab9a3b80d0afc16a0e')
-
-prepare() {
-  cd intellij-community
-
-  # build system doesn't like symlinks
-  mv "${srcdir}"/idea-android android
-  mv "${srcdir}"/idea-adt-tools-base android/tools-base
-
-  # https://youtrack.jetbrains.com/issue/KTIJ-19348
-  patch -p0 -i ../kotlin_dist_for_ide.patch
-
-  # https://youtrack.jetbrains.com/issue/IDEA-276102
-  # https://youtrack.jetbrains.com/issue/IDEA-25
-  patch -p0 -i ../skip_jps_build.patch
-
-  sed '/def targetOs =/c def targetOs = "linux"' -i 
build/dependencies/setupJbre.gradle
-  sed '/String targetOS/c   String targetOS = OS_LINUX' -i 
platform/build-scripts/groovy/org/jetbrains/intellij/build/BuildOptions.groovy
-  sed -E 's|(\1|' -i build.xml
-  sed -E 's/-Xmx[0-9]+m/-XX:-UseGCOverheadLimit -Didea.home.path=/' -i 
build.xml
-  echo ${_build} > build.txt
-}
-
-build() {
-  cd intellij-community
-  unset _JAVA_OPTIONS
-  export JAVA_HOME=/usr/lib/jvm/java-11-openjdk
-  export PATH="${JAVA_HOME}/bin:${PATH}"
-  export JDK_16_x64=/usr/lib/jvm/java-8-openjdk
-  export JDK_18_x64=/usr/lib/jvm/java-8-openjdk
-  ant -Dintellij.build.target.os=linux build
-  tar -xf out/idea-ce/artifacts/ideaIC-${_build}-no-jbr.tar.gz -C "${srcdir}"
-}
-
-package() {
-  cd idea-IC-${_build}
-
-  # workaround FS#40934
-  sed -i 's/lcd/on/' bin/*.vmoptions
-
-  rm -rf bin/fsnotifier-arm lib/libpty/linux/x86
-
-  install -dm 755 
"${pkgdir}"/usr/share/{licenses,pixmaps,idea,icons/hicolor/scalable/apps}
-  cp -dr --no-preserve='ownership' bin lib plugins redist 
"${pkgdir}"/usr/share/idea/
-  cp -dr --no-preserve='ownership' license "${pkgdir}"/usr/share/licenses/idea
-  ln -s /usr/share/idea/bin/idea.png "${pkgdir}"/usr/share/pixmaps/
-  ln -s 

[arch-commits] Commit in intellij-idea-community-edition/trunk (PKGBUILD)

2021-09-15 Thread Levente Polyak via arch-commits
Date: Wednesday, September 15, 2021 @ 23:03:24
  Author: anthraxx
Revision: 1016124

upgpkg: intellij-idea-community-edition 4:2021.2.2-1

Modified:
  intellij-idea-community-edition/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-15 22:39:33 UTC (rev 1016123)
+++ PKGBUILD2021-09-15 23:03:24 UTC (rev 1016124)
@@ -4,8 +4,8 @@
 # Maintainer: Orhun Parmaksız 
 
 pkgname=intellij-idea-community-edition
-pkgver=2021.2.1
-_build=212.5080.55
+pkgver=2021.2.2
+_build=212.5284.40
 pkgrel=1
 epoch=4
 pkgdesc='IDE for Java, Groovy and other programming languages with advanced 
refactoring features'



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

2021-09-15 Thread Konstantin Gizdov via arch-commits
Date: Wednesday, September 15, 2021 @ 22:39:33
  Author: kgizdov
Revision: 1016123

archrelease: copy trunk to community-any

Added:
  cascadia-code/repos/community-any/PKGBUILD
(from rev 1016122, cascadia-code/trunk/PKGBUILD)
Deleted:
  cascadia-code/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-09-15 22:39:27 UTC (rev 1016122)
+++ PKGBUILD2021-09-15 22:39:33 UTC (rev 1016123)
@@ -1,44 +0,0 @@
-# Maintainer: Konstantin Gizdov 
-# Contributor: Jerome Leclanche 
-
-pkgbase=cascadia-code
-pkgname=("ttf-${pkgbase}" "otf-${pkgbase}" "woff2-${pkgbase}")
-pkgver=2106.17
-pkgrel=1
-pkgdesc="A monospaced font by Microsoft that includes programming ligatures"
-arch=("any")
-url="https://github.com/microsoft/cascadia-code;
-license=("custom:OFL")
-source=(
-
"${pkgname}-${pkgver}-release.zip::https://github.com/microsoft/${pkgbase}/releases/download/v${pkgver}/CascadiaCode-${pkgver}.zip;
-
"${pkgname}-${pkgver}.tar.gz::https://github.com/microsoft/${pkgbase}/archive/v${pkgver}.tar.gz;
-)
-sha256sums=('22c030fec5e5c516580fd6e24b385c935baae2f6c110024aeba20240d533a68a'
-'c5f0e54905ff7bbc63a66ae3ee96c1d9732b4db2f4181399e97d1a643b4f1035')
-
-function prepare() {
-cd "${srcdir}/otf/static"
-cp ./*.otf ../
-}
-
-function _package() {
-cd "${srcdir}/"
-
-local ext="${1%%-*}"
-local installdir="${ext^^}"
-local fonts=("${srcdir}/${ext}"/*."${ext}")
-
-# Install fonts
-install -d "${pkgdir}/usr/share/fonts/${installdir}"
-local font
-for font in "${fonts[@]}"; do
-install -m644 "${font}" "${pkgdir}/usr/share/fonts/${installdir}"
-done
-
-# Install license
-install -Dm644 "${srcdir}/${pkgbase}-${pkgver}/LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-for _pkgname in ${pkgname[@]}; do
-eval "function package_$_pkgname() { _package $_pkgname; }"
-done

Copied: cascadia-code/repos/community-any/PKGBUILD (from rev 1016122, 
cascadia-code/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-09-15 22:39:33 UTC (rev 1016123)
@@ -0,0 +1,44 @@
+# Maintainer: Konstantin Gizdov 
+# Contributor: Jerome Leclanche 
+
+pkgbase=cascadia-code
+pkgname=("ttf-${pkgbase}" "otf-${pkgbase}" "woff2-${pkgbase}")
+pkgver=2108.26
+pkgrel=1
+pkgdesc="A monospaced font by Microsoft that includes programming ligatures"
+arch=("any")
+url="https://github.com/microsoft/cascadia-code;
+license=("custom:OFL")
+source=(
+
"${pkgname}-${pkgver}-release.zip::https://github.com/microsoft/${pkgbase}/releases/download/v${pkgver}/CascadiaCode-${pkgver}.zip;
+
"${pkgname}-${pkgver}.tar.gz::https://github.com/microsoft/${pkgbase}/archive/v${pkgver}.tar.gz;
+)
+sha256sums=('ea325ea078a7f96299226497d4ed3ea3c5951c9e1a1d36da8f3b839099909479'
+'2ee778c04d21cd3b7a9e609b4171d2f1c5d2cc287b5055bfc72c445eb810430d')
+
+function prepare() {
+cd "${srcdir}/otf/static"
+cp ./*.otf ../
+}
+
+function _package() {
+cd "${srcdir}/"
+
+local ext="${1%%-*}"
+local installdir="${ext^^}"
+local fonts=("${srcdir}/${ext}"/*."${ext}")
+
+# Install fonts
+install -d "${pkgdir}/usr/share/fonts/${installdir}"
+local font
+for font in "${fonts[@]}"; do
+install -m644 "${font}" "${pkgdir}/usr/share/fonts/${installdir}"
+done
+
+# Install license
+install -Dm644 "${srcdir}/${pkgbase}-${pkgver}/LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+for _pkgname in ${pkgname[@]}; do
+eval "function package_$_pkgname() { _package $_pkgname; }"
+done



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

2021-09-15 Thread Konstantin Gizdov via arch-commits
Date: Wednesday, September 15, 2021 @ 22:39:27
  Author: kgizdov
Revision: 1016122

upgpkg: cascadia-code 2108.26-1

Modified:
  cascadia-code/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-15 22:27:45 UTC (rev 1016121)
+++ PKGBUILD2021-09-15 22:39:27 UTC (rev 1016122)
@@ -3,7 +3,7 @@
 
 pkgbase=cascadia-code
 pkgname=("ttf-${pkgbase}" "otf-${pkgbase}" "woff2-${pkgbase}")
-pkgver=2106.17
+pkgver=2108.26
 pkgrel=1
 pkgdesc="A monospaced font by Microsoft that includes programming ligatures"
 arch=("any")
@@ -13,8 +13,8 @@
 
"${pkgname}-${pkgver}-release.zip::https://github.com/microsoft/${pkgbase}/releases/download/v${pkgver}/CascadiaCode-${pkgver}.zip;
 
"${pkgname}-${pkgver}.tar.gz::https://github.com/microsoft/${pkgbase}/archive/v${pkgver}.tar.gz;
 )
-sha256sums=('22c030fec5e5c516580fd6e24b385c935baae2f6c110024aeba20240d533a68a'
-'c5f0e54905ff7bbc63a66ae3ee96c1d9732b4db2f4181399e97d1a643b4f1035')
+sha256sums=('ea325ea078a7f96299226497d4ed3ea3c5951c9e1a1d36da8f3b839099909479'
+'2ee778c04d21cd3b7a9e609b4171d2f1c5d2cc287b5055bfc72c445eb810430d')
 
 function prepare() {
 cd "${srcdir}/otf/static"



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

2021-09-15 Thread Jan Steffens via arch-commits
Date: Wednesday, September 15, 2021 @ 22:27:44
  Author: heftig
Revision: 1016120

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 1016116, virtualbox-host-modules-arch/trunk/PKGBUILD)

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

Copied: virtualbox-host-modules-arch/repos/community-testing-x86_64/PKGBUILD 
(from rev 1016116, virtualbox-host-modules-arch/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2021-09-15 22:27:44 UTC (rev 1016120)
@@ -0,0 +1,40 @@
+# Maintainer: Sébastien Luttringer
+# Contributor: Ionut Biru 
+
+pkgname='virtualbox-host-modules-arch'
+pkgver=6.1.26
+pkgrel=13
+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 acpi_call/repos (2 files)

2021-09-15 Thread Jan Steffens via arch-commits
Date: Wednesday, September 15, 2021 @ 22:27:44
  Author: heftig
Revision: 1016119

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 1016116, acpi_call/trunk/PKGBUILD)

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

Copied: acpi_call/repos/community-testing-x86_64/PKGBUILD (from rev 1016116, 
acpi_call/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2021-09-15 22:27:44 UTC (rev 1016119)
@@ -0,0 +1,38 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: mortzu 
+# Contributor: fnord0 
+
+pkgname=acpi_call
+pkgver=1.2.1
+pkgrel=87
+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 linux/repos (3 files)

2021-09-15 Thread Jan Steffens via arch-commits
Date: Wednesday, September 15, 2021 @ 22:27:47
  Author: heftig
Revision: 424071

archrelease: copy trunk to testing-x86_64

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

--+
 PKGBUILD |  202 +
 config   |10623 +
 2 files changed, 10825 insertions(+)

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


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

2021-09-15 Thread Jan Steffens via arch-commits
Date: Wednesday, September 15, 2021 @ 22:27:47
  Author: heftig
Revision: 424070

archrelease: copy trunk to testing-x86_64

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

--+
 PKGBUILD |  202 +
 config   |10686 +
 2 files changed, 10888 insertions(+)

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


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

2021-09-15 Thread Jan Steffens via arch-commits
Date: Wednesday, September 15, 2021 @ 22:27:45
  Author: heftig
Revision: 1016121

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 1016118, bbswitch/trunk/0001-proc_ops-struct.patch)
  bbswitch/repos/community-testing-x86_64/0002-kernel-5.7.patch
(from rev 1016118, bbswitch/trunk/0002-kernel-5.7.patch)
  bbswitch/repos/community-testing-x86_64/PKGBUILD
(from rev 1016119, 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 1016118, 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-09-15 22:27:45 UTC 
(rev 1016121)
@@ -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 
1016118, 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-09-15 22:27:45 UTC 
(rev 1016121)
@@ -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 1016119, 
bbswitch/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2021-09-15 22:27:45 UTC (rev 1016121)
@@ -0,0 +1,50 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: M0Rf30
+# Contributor: Samsagax 
+
+pkgbase=bbswitch
+pkgname=(bbswitch bbswitch-dkms)
+pkgver=0.8
+pkgrel=446
+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 nvidia/repos (testing-x86_64 testing-x86_64/PKGBUILD)

2021-09-15 Thread Jan Steffens via arch-commits
Date: Wednesday, September 15, 2021 @ 22:27:45
  Author: heftig
Revision: 424069

archrelease: copy trunk to testing-x86_64

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

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

Copied: nvidia/repos/testing-x86_64/PKGBUILD (from rev 424068, 
nvidia/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2021-09-15 22:27:45 UTC (rev 424069)
@@ -0,0 +1,39 @@
+# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Felix Yan 
+# Contributor: Thomas Baechler 
+
+pkgname=nvidia
+pkgver=470.63.01
+pkgrel=9
+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 vhba-module/repos (4 files)

2021-09-15 Thread Jan Steffens via arch-commits
Date: Wednesday, September 15, 2021 @ 22:27:43
  Author: heftig
Revision: 1016116

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 1016112, vhba-module/trunk/60-vhba.rules)
  vhba-module/repos/community-testing-x86_64/PKGBUILD
(from rev 1016112, vhba-module/trunk/PKGBUILD)
  vhba-module/repos/community-testing-x86_64/dkms.conf
(from rev 1016112, 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 
1016112, vhba-module/trunk/60-vhba.rules)
===
--- community-testing-x86_64/60-vhba.rules  (rev 0)
+++ community-testing-x86_64/60-vhba.rules  2021-09-15 22:27:43 UTC (rev 
1016116)
@@ -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 1016112, 
vhba-module/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2021-09-15 22:27:43 UTC (rev 1016116)
@@ -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=39
+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 tp_smapi/repos (2 files)

2021-09-15 Thread Jan Steffens via arch-commits
Date: Wednesday, September 15, 2021 @ 22:27:43
  Author: heftig
Revision: 1016118

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 1016112, tp_smapi/trunk/PKGBUILD)

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

Copied: tp_smapi/repos/community-testing-x86_64/PKGBUILD (from rev 1016112, 
tp_smapi/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2021-09-15 22:27:43 UTC (rev 1016118)
@@ -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=333
+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 netfilter-fullconenat/repos (2 files)

2021-09-15 Thread Jan Steffens via arch-commits
Date: Wednesday, September 15, 2021 @ 22:27:42
  Author: heftig
Revision: 1016114

archrelease: copy trunk to community-testing-x86_64

Added:
  netfilter-fullconenat/repos/community-testing-x86_64/
  netfilter-fullconenat/repos/community-testing-x86_64/PKGBUILD
(from rev 1016112, netfilter-fullconenat/trunk/PKGBUILD)

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

Copied: netfilter-fullconenat/repos/community-testing-x86_64/PKGBUILD (from rev 
1016112, netfilter-fullconenat/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2021-09-15 22:27:42 UTC (rev 1016114)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+# Contributor: Edward Pacman 
+
+pkgname=netfilter-fullconenat
+pkgver=r73.0cf3b48
+pkgrel=145
+pkgdesc="A kernel module that turns MASQUERADE into full cone SNAT"
+arch=('x86_64')
+url="https://github.com/Chion82/netfilter-full-cone-nat;
+license=('GPL2')
+depends=("linux")
+makedepends=('linux-headers' 'git')
+_commit=0cf3b48fd7d2fa81d0297d1fff12bbd0580fc435  # master
+source=("${pkgname}::git+https://github.com/Chion82/netfilter-full-cone-nat#commit=${_commit};)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd ${pkgname}
+  ( set -o pipefail
+git describe --long 2>/dev/null | sed 's/\([^-]*-g\)/r\1/;s/-/./g' ||
+printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short 
HEAD)"
+  )
+}
+
+prepare() {
+  cd ${pkgname}
+  echo "obj-m = xt_FULLCONENAT.o" > Kbuild
+}
+
+build() {
+  cd ${pkgname}
+  make -C /usr/src/linux M=$PWD modules
+}
+
+package() {
+  local extradir=/usr/lib/modules/$(

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

2021-09-15 Thread Jan Steffens via arch-commits
Date: Wednesday, September 15, 2021 @ 22:27:43
  Author: heftig
Revision: 1016117

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 1016112, broadcom-wl/trunk/PKGBUILD)

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

Copied: broadcom-wl/repos/community-testing-x86_64/PKGBUILD (from rev 1016112, 
broadcom-wl/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2021-09-15 22:27:43 UTC (rev 1016117)
@@ -0,0 +1,42 @@
+# Maintainer: Eli Schwartz 
+
+_module=broadcom-wl
+_kernelname=  # Build against stock -ARCH kernel
+#_kernelname=-custom  # Build against kernel with a different name
+pkgname=${_module}${_kernelname}
+pkgver=6.30.223.271
+pkgrel=325
+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 r8168/repos (2 files)

2021-09-15 Thread Jan Steffens via arch-commits
Date: Wednesday, September 15, 2021 @ 22:27:42
  Author: heftig
Revision: 1016115

archrelease: copy trunk to community-testing-x86_64

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

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

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

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

2021-09-15 Thread Jan Steffens via arch-commits
Date: Wednesday, September 15, 2021 @ 22:27:41
  Author: heftig
Revision: 1016113

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 1016112, deepin-anything-arch/trunk/PKGBUILD)

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

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

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

2021-09-15 Thread Jan Steffens via arch-commits
Date: Wednesday, September 15, 2021 @ 22:27:09
  Author: heftig
Revision: 424068

5.14.4.zen2-1

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

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-15 22:25:03 UTC (rev 424067)
+++ PKGBUILD2021-09-15 22:27:09 UTC (rev 424068)
@@ -1,7 +1,7 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgbase=linux-zen
-pkgver=5.14.3.zen1
+pkgver=5.14.4.zen2
 pkgrel=1
 pkgdesc='Linux ZEN'
 _srctag=v${pkgver%.*}-${pkgver##*.}
@@ -26,7 +26,7 @@
   'C5ADB4F3FEBBCE27A3E54D7D9AE4078033F8024D'  # Steven Barrett 

 )
 sha256sums=('SKIP'
-'eaffec6fe4ff3a5600597e7f447dcb0b9cf7473f259d24a052fd1118f465abbc')
+'f7402d85e99186df17ba1671344603d2774af7f3590a71d588d5068c8729d86d')
 
 export KBUILD_BUILD_HOST=archlinux
 export KBUILD_BUILD_USER=$pkgbase

Modified: config
===
--- config  2021-09-15 22:25:03 UTC (rev 424067)
+++ config  2021-09-15 22:27:09 UTC (rev 424068)
@@ -1,6 +1,6 @@
 #
 # Automatically generated file; DO NOT EDIT.
-# Linux/x86 5.14.2-zen1 Kernel Configuration
+# Linux/x86 5.14.4-zen2 Kernel Configuration
 #
 CONFIG_CC_VERSION_TEXT="gcc (GCC) 11.1.0"
 CONFIG_CC_IS_GCC=y
@@ -24,7 +24,6 @@
 #
 # General setup
 #
-# CONFIG_SCHED_MUQSS is not set
 CONFIG_ZEN_INTERACTIVE=y
 CONFIG_INIT_ENV_ARG_LIMIT=32
 # CONFIG_COMPILE_TEST is not set
@@ -187,10 +186,14 @@
 #
 # Scheduler features
 #
+# CONFIG_SCHED_ALT is not set
 CONFIG_UCLAMP_TASK=y
 CONFIG_UCLAMP_BUCKETS_COUNT=5
 # end of Scheduler features
 
+CONFIG_CACULE_SCHED=y
+CONFIG_CACULE_RDB=y
+CONFIG_RDB_INTERVAL=19
 CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y
 CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y
 CONFIG_CC_HAS_INT128=y
@@ -454,8 +457,6 @@
 CONFIG_SCHED_SMT=y
 CONFIG_SCHED_MC=y
 CONFIG_SCHED_MC_PRIO=y
-CONFIG_RQ_NONE=y
-CONFIG_SHARERQ=0
 CONFIG_X86_LOCAL_APIC=y
 CONFIG_X86_IO_APIC=y
 CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS=y
@@ -527,6 +528,7 @@
 # CONFIG_HZ_250 is not set
 # CONFIG_HZ_300 is not set
 CONFIG_HZ_1000=y
+# CONFIG_HZ_2000 is not set
 CONFIG_HZ=1000
 CONFIG_SCHED_HRTICK=y
 CONFIG_KEXEC=y
@@ -1690,7 +1692,6 @@
 CONFIG_BRIDGE_MRP=y
 CONFIG_BRIDGE_CFM=y
 CONFIG_NET_DSA=m
-CONFIG_NET_DSA_TAG_8021Q=m
 CONFIG_NET_DSA_TAG_AR9331=m
 CONFIG_NET_DSA_TAG_BRCM_COMMON=m
 CONFIG_NET_DSA_TAG_BRCM=m



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

2021-09-15 Thread Jan Steffens via arch-commits
Date: Wednesday, September 15, 2021 @ 22:25:00
  Author: heftig
Revision: 1016110

20210418-39: linux 5.14.4.arch1-1

Modified:
  vhba-module/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-15 22:24:59 UTC (rev 1016109)
+++ PKGBUILD2021-09-15 22:25:00 UTC (rev 1016110)
@@ -6,7 +6,7 @@
 pkgbase=vhba-module
 pkgname=(vhba-module vhba-module-dkms)
 pkgver=20210418
-pkgrel=38
+pkgrel=39
 pkgdesc="Kernel module that emulates SCSI devices"
 url="https://cdemu.sourceforge.io/;
 arch=(x86_64)



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

2021-09-15 Thread Jan Steffens via arch-commits
Date: Wednesday, September 15, 2021 @ 22:25:03
  Author: heftig
Revision: 424067

470.63.01-9: linux 5.14.4.arch1-1

Modified:
  nvidia/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-15 22:24:27 UTC (rev 424066)
+++ PKGBUILD2021-09-15 22:25:03 UTC (rev 424067)
@@ -4,7 +4,7 @@
 
 pkgname=nvidia
 pkgver=470.63.01
-pkgrel=8
+pkgrel=9
 pkgdesc="NVIDIA drivers for linux"
 arch=('x86_64')
 url="https://www.nvidia.com/;



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

2021-09-15 Thread Jan Steffens via arch-commits
Date: Wednesday, September 15, 2021 @ 22:25:02
  Author: heftig
Revision: 1016111

1.2.1-87: linux 5.14.4.arch1-1

Modified:
  acpi_call/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-15 22:25:00 UTC (rev 1016110)
+++ PKGBUILD2021-09-15 22:25:02 UTC (rev 1016111)
@@ -4,7 +4,7 @@
 
 pkgname=acpi_call
 pkgver=1.2.1
-pkgrel=86
+pkgrel=87
 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 deepin-anything-arch/trunk (PKGBUILD)

2021-09-15 Thread Jan Steffens via arch-commits
Date: Wednesday, September 15, 2021 @ 22:25:04
  Author: heftig
Revision: 1016112

5.0.9-25: linux 5.14.4.arch1-1

Modified:
  deepin-anything-arch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-15 22:25:02 UTC (rev 1016111)
+++ PKGBUILD2021-09-15 22:25:04 UTC (rev 1016112)
@@ -2,7 +2,7 @@
 
 pkgname=deepin-anything-arch
 pkgver=5.0.9
-pkgrel=24
+pkgrel=25
 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 bbswitch/trunk (PKGBUILD)

2021-09-15 Thread Jan Steffens via arch-commits
Date: Wednesday, September 15, 2021 @ 22:24:58
  Author: heftig
Revision: 1016108

0.8-446: linux 5.14.4.arch1-1

Modified:
  bbswitch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-15 22:24:57 UTC (rev 1016107)
+++ PKGBUILD2021-09-15 22:24:58 UTC (rev 1016108)
@@ -5,7 +5,7 @@
 pkgbase=bbswitch
 pkgname=(bbswitch bbswitch-dkms)
 pkgver=0.8
-pkgrel=445
+pkgrel=446
 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 r8168/trunk (PKGBUILD)

2021-09-15 Thread Jan Steffens via arch-commits
Date: Wednesday, September 15, 2021 @ 22:24:59
  Author: heftig
Revision: 1016109

8.049.02-18: linux 5.14.4.arch1-1

Modified:
  r8168/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-15 22:24:58 UTC (rev 1016108)
+++ PKGBUILD2021-09-15 22:24:59 UTC (rev 1016109)
@@ -4,7 +4,7 @@
 
 pkgname=r8168
 pkgver=8.049.02
-pkgrel=17
+pkgrel=18
 pkgdesc="A kernel module for Realtek 8168 network cards"
 url="http://www.realtek.com.tw;
 license=("GPL")



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

2021-09-15 Thread Jan Steffens via arch-commits
Date: Wednesday, September 15, 2021 @ 22:24:57
  Author: heftig
Revision: 1016107

6.30.223.271-325: linux 5.14.4.arch1-1

Modified:
  broadcom-wl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-15 22:24:56 UTC (rev 1016106)
+++ PKGBUILD2021-09-15 22:24:57 UTC (rev 1016107)
@@ -5,7 +5,7 @@
 #_kernelname=-custom  # Build against kernel with a different name
 pkgname=${_module}${_kernelname}
 pkgver=6.30.223.271
-pkgrel=324
+pkgrel=325
 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 tp_smapi/trunk (PKGBUILD)

2021-09-15 Thread Jan Steffens via arch-commits
Date: Wednesday, September 15, 2021 @ 22:24:56
  Author: heftig
Revision: 1016106

0.43-333: linux 5.14.4.arch1-1

Modified:
  tp_smapi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-15 22:24:55 UTC (rev 1016105)
+++ PKGBUILD2021-09-15 22:24:56 UTC (rev 1016106)
@@ -9,7 +9,7 @@
 
 pkgname=tp_smapi
 pkgver=0.43
-pkgrel=332
+pkgrel=333
 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-09-15 Thread Jan Steffens via arch-commits
Date: Wednesday, September 15, 2021 @ 22:24:54
  Author: heftig
Revision: 1016104

r73.0cf3b48-145: linux 5.14.4.arch1-1

Modified:
  netfilter-fullconenat/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-15 22:14:30 UTC (rev 1016103)
+++ PKGBUILD2021-09-15 22:24:54 UTC (rev 1016104)
@@ -3,7 +3,7 @@
 
 pkgname=netfilter-fullconenat
 pkgver=r73.0cf3b48
-pkgrel=144
+pkgrel=145
 pkgdesc="A kernel module that turns MASQUERADE into full cone SNAT"
 arch=('x86_64')
 url="https://github.com/Chion82/netfilter-full-cone-nat;



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

2021-09-15 Thread Jan Steffens via arch-commits
Date: Wednesday, September 15, 2021 @ 22:24:55
  Author: heftig
Revision: 1016105

6.1.26-13: linux 5.14.4.arch1-1

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

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-15 22:24:54 UTC (rev 1016104)
+++ PKGBUILD2021-09-15 22:24:55 UTC (rev 1016105)
@@ -3,7 +3,7 @@
 
 pkgname='virtualbox-host-modules-arch'
 pkgver=6.1.26
-pkgrel=12
+pkgrel=13
 pkgdesc='Virtualbox host kernel modules for Arch Kernel'
 arch=('x86_64')
 url='https://virtualbox.org/'



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

2021-09-15 Thread Jan Steffens via arch-commits
Date: Wednesday, September 15, 2021 @ 22:24:27
  Author: heftig
Revision: 424066

5.14.4.arch1-1

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

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-15 21:57:22 UTC (rev 424065)
+++ PKGBUILD2021-09-15 22:24:27 UTC (rev 424066)
@@ -1,7 +1,7 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgbase=linux
-pkgver=5.14.3.arch1
+pkgver=5.14.4.arch1
 pkgrel=1
 pkgdesc='Linux'
 _srctag=v${pkgver%.*}-${pkgver##*.}
@@ -26,7 +26,7 @@
   'C7E7849466FE2358343588377258734B41C31549'  # David Runge 

 )
 sha256sums=('SKIP'
-'e2140782726c69db81dd5be0602479bb4e161772e83e77de1470c9ceea622ca4')
+'f98065a286a6d2dbb0e226867a6417e344aaa44ef6eac967707e1f09671be445')
 
 export KBUILD_BUILD_HOST=archlinux
 export KBUILD_BUILD_USER=$pkgbase

Modified: config
===
--- config  2021-09-15 21:57:22 UTC (rev 424065)
+++ config  2021-09-15 22:24:27 UTC (rev 424066)
@@ -1,6 +1,6 @@
 #
 # Automatically generated file; DO NOT EDIT.
-# Linux/x86 5.14.2-arch1 Kernel Configuration
+# Linux/x86 5.14.4-arch1 Kernel Configuration
 #
 CONFIG_CC_VERSION_TEXT="gcc (GCC) 11.1.0"
 CONFIG_CC_IS_GCC=y
@@ -1636,7 +1636,6 @@
 CONFIG_BRIDGE_MRP=y
 CONFIG_BRIDGE_CFM=y
 CONFIG_NET_DSA=m
-CONFIG_NET_DSA_TAG_8021Q=m
 CONFIG_NET_DSA_TAG_AR9331=m
 CONFIG_NET_DSA_TAG_BRCM_COMMON=m
 CONFIG_NET_DSA_TAG_BRCM=m



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

2021-09-15 Thread Christian Rebischke via arch-commits
Date: Wednesday, September 15, 2021 @ 22:14:30
  Author: shibumi
Revision: 1016103

archrelease: copy trunk to community-x86_64

Added:
  kubeone/repos/community-x86_64/PKGBUILD
(from rev 1016102, kubeone/trunk/PKGBUILD)
Deleted:
  kubeone/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-09-15 22:14:23 UTC (rev 1016102)
+++ PKGBUILD2021-09-15 22:14:30 UTC (rev 1016103)
@@ -1,66 +0,0 @@
-# Maintainer: Christian Rebischke 
-# Contributor: Loodse 
-
-pkgname=kubeone
-_pkgver=1.2.3
-pkgver="${_pkgver/-/}"
-# We check out the repo via git for retrieving necessary information
-# for `kubeone version`.
-_kubeone_commit="7e290081fe4bfe38f93ecf6d8fa68e53be469711"
-pkgrel=1
-pkgdesc="A lifecycle management tool for Highly-Available Kubernetes clusters"
-url="https://www.kubeone.io;
-arch=("x86_64")
-license=("Apache")
-makedepends=("go" "git")
-optdepends=("terraform: sourcing data about infrastructure and control plane 
nodes")
-source=("${pkgname}-${_pkgver}::git+https://github.com/kubermatic/kubeone#commit=${_kubeone_commit};)
-sha512sums=('SKIP')
-
-prepare() {
-  cd "${pkgname}-${_pkgver}"
-  sed -E 's/(CGO_ENABLED)=0/\1=1/g' -i Makefile
-  sed '/^export GOFLAGS/ s/$/ -modcacherw -buildmode=pie/' -i Makefile
-  sed '/^GOLDFLAGS?=/ s/=/= -linkmode=external /' -i Makefile
-
-}
-
-build() {
-  cd "${pkgname}-${_pkgver}"
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  export CGO_LDFLAGS="${LDFLAGS}"
-  make build
-}
-
-check() {
-  cd "${pkgname}-${_pkgver}"
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  export CGO_LDFLAGS="${LDFLAGS}"
-  make test
-}
-
-package() {
-  cd "${pkgname}-${_pkgver}"
-  install -Dm755 "dist/${pkgname}" "${pkgdir}/usr/bin/${pkgname}"
-
-  # move documentation
-  mkdir -p "${pkgdir}/usr/share/doc"
-  cp -avr docs "${pkgdir}/usr/share/doc/${pkgname}"
-  cp -avr examples "${pkgdir}/usr/share/doc/${pkgname}/examples"
-
-  # build man page
-  mkdir -p "${pkgdir}/usr/share/man/man1"
-  ./dist/"${pkgname}" document man -o "${pkgdir}/usr/share/man/man1"
-
-  # build bash completions
-  mkdir -p "${pkgdir}/usr/share/bash-completion/completions"
-  ./dist/"${pkgname}" completion bash > 
"${pkgdir}/usr/share/bash-completion/completions/${pkgname}"
-
-  # build zsh completions
-  mkdir -p "${pkgdir}/usr/share/zsh/site-functions"
-  ./dist/"${pkgname}" completion zsh > 
"${pkgdir}/usr/share/zsh/site-functions/_${pkgname}"
-}

Copied: kubeone/repos/community-x86_64/PKGBUILD (from rev 1016102, 
kubeone/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-09-15 22:14:30 UTC (rev 1016103)
@@ -0,0 +1,66 @@
+# Maintainer: Christian Rebischke 
+# Contributor: Loodse 
+
+pkgname=kubeone
+_pkgver=1.3.0
+pkgver="${_pkgver/-/}"
+# We check out the repo via git for retrieving necessary information
+# for `kubeone version`.
+_kubeone_commit="bfe6683334acdbb1a1d9cbbb2d5d5095f6f0111e"
+pkgrel=1
+pkgdesc="A lifecycle management tool for Highly-Available Kubernetes clusters"
+url="https://www.kubeone.io;
+arch=("x86_64")
+license=("Apache")
+makedepends=("go" "git")
+optdepends=("terraform: sourcing data about infrastructure and control plane 
nodes")
+source=("${pkgname}-${_pkgver}::git+https://github.com/kubermatic/kubeone#commit=${_kubeone_commit};)
+sha512sums=('SKIP')
+
+prepare() {
+  cd "${pkgname}-${_pkgver}"
+  sed -E 's/(CGO_ENABLED)=0/\1=1/g' -i Makefile
+  sed '/^export GOFLAGS/ s/$/ -modcacherw -buildmode=pie/' -i Makefile
+  sed '/^GOLDFLAGS?=/ s/=/= -linkmode=external /' -i Makefile
+
+}
+
+build() {
+  cd "${pkgname}-${_pkgver}"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  make build
+}
+
+check() {
+  cd "${pkgname}-${_pkgver}"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  make test
+}
+
+package() {
+  cd "${pkgname}-${_pkgver}"
+  install -Dm755 "dist/${pkgname}" "${pkgdir}/usr/bin/${pkgname}"
+
+  # move documentation
+  mkdir -p "${pkgdir}/usr/share/doc"
+  cp -avr docs "${pkgdir}/usr/share/doc/${pkgname}"
+  cp -avr examples "${pkgdir}/usr/share/doc/${pkgname}/examples"
+
+  # build man page
+  mkdir -p "${pkgdir}/usr/share/man/man1"
+  ./dist/"${pkgname}" document man -o "${pkgdir}/usr/share/man/man1"
+
+  # build bash completions
+  mkdir -p "${pkgdir}/usr/share/bash-completion/completions"
+  ./dist/"${pkgname}" completion bash > 
"${pkgdir}/usr/share/bash-completion/completions/${pkgname}"
+
+  # build zsh completions
+  mkdir -p 

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

2021-09-15 Thread Christian Rebischke via arch-commits
Date: Wednesday, September 15, 2021 @ 22:14:23
  Author: shibumi
Revision: 1016102

upgpkg: kubeone 1.3.0-1

Modified:
  kubeone/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-15 22:01:39 UTC (rev 1016101)
+++ PKGBUILD2021-09-15 22:14:23 UTC (rev 1016102)
@@ -2,11 +2,11 @@
 # Contributor: Loodse 
 
 pkgname=kubeone
-_pkgver=1.2.3
+_pkgver=1.3.0
 pkgver="${_pkgver/-/}"
 # We check out the repo via git for retrieving necessary information
 # for `kubeone version`.
-_kubeone_commit="7e290081fe4bfe38f93ecf6d8fa68e53be469711"
+_kubeone_commit="bfe6683334acdbb1a1d9cbbb2d5d5095f6f0111e"
 pkgrel=1
 pkgdesc="A lifecycle management tool for Highly-Available Kubernetes clusters"
 url="https://www.kubeone.io;



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

2021-09-15 Thread Massimiliano Torromeo via arch-commits
Date: Wednesday, September 15, 2021 @ 22:01:39
  Author: mtorromeo
Revision: 1016101

archrelease: copy trunk to community-x86_64

Added:
  jitterentropy/repos/community-x86_64/PKGBUILD
(from rev 1016100, jitterentropy/trunk/PKGBUILD)
Deleted:
  jitterentropy/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-09-15 22:01:24 UTC (rev 1016100)
+++ PKGBUILD2021-09-15 22:01:39 UTC (rev 1016101)
@@ -1,40 +0,0 @@
-# Maintainer: Massimiliano Torromeo 
-
-pkgname=jitterentropy
-_pkgname=$pkgname-library
-pkgver=3.2.0
-pkgrel=1
-pkgdesc='Hardware RNG based on CPU timing jitter'
-arch=('x86_64')
-url='https://www.chronox.de/jent.html'
-license=('BSD' 'GPL2')
-depends=('glibc')
-source=(https://www.chronox.de/jent/$_pkgname-$pkgver.tar.xz{,.asc})
-sha256sums=('dc8c93f4d56e87d53de42c1da98574f5e87f563f02549b86d659eb120f90910a'
-'SKIP')
-validpgpkeys=(3BCC43D4D2C87D1784B69EE4421EE936326AC15B)
-
-prepare() {
-  cd "$_pkgname-$pkgver"
-
-  # Disable man page compression on install
-  sed -e '/\tgzip .*\/man\// d' -i Makefile
-  # Let the package manager handle stripping
-  sed -e '/\tinstall.*-s / s/-s //g' -i Makefile
-}
-
-build() {
-  cd "$_pkgname-$pkgver"
-  LDFLAGS=-lpthread make jitterentropy
-}
-
-package() {
-  cd "$_pkgname-$pkgver"
-  install -dm755 "$pkgdir/usr/include"
-  make PREFIX=/usr DESTDIR="$pkgdir/" install
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-  install -Dm644 LICENSE.bsd "$pkgdir/usr/share/licenses/$pkgname/LICENSE.bsd"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: jitterentropy/repos/community-x86_64/PKGBUILD (from rev 1016100, 
jitterentropy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-09-15 22:01:39 UTC (rev 1016101)
@@ -0,0 +1,40 @@
+# Maintainer: Massimiliano Torromeo 
+
+pkgname=jitterentropy
+_pkgname=$pkgname-library
+pkgver=3.3.0
+pkgrel=1
+pkgdesc='Hardware RNG based on CPU timing jitter'
+arch=('x86_64')
+url='https://www.chronox.de/jent.html'
+license=('BSD' 'GPL2')
+depends=('glibc')
+source=(https://www.chronox.de/jent/$_pkgname-$pkgver.tar.xz{,.asc})
+sha256sums=('b0743fdc6044e95732cbd374e2e2b4cdd4eab2989d3784e8669147c0be83a9b9'
+'SKIP')
+validpgpkeys=(3BCC43D4D2C87D1784B69EE4421EE936326AC15B)
+
+prepare() {
+  cd "$_pkgname-$pkgver"
+
+  # Disable man page compression on install
+  sed -e '/\tgzip .*\/man\// d' -i Makefile
+  # Let the package manager handle stripping
+  sed -e '/\tinstall.*-s / s/-s //g' -i Makefile
+}
+
+build() {
+  cd "$_pkgname-$pkgver"
+  LDFLAGS=-lpthread make jitterentropy
+}
+
+package() {
+  cd "$_pkgname-$pkgver"
+  install -dm755 "$pkgdir/usr/include"
+  make PREFIX=/usr DESTDIR="$pkgdir/" install
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+  install -Dm644 LICENSE.bsd "$pkgdir/usr/share/licenses/$pkgname/LICENSE.bsd"
+}
+
+# vim:set ts=2 sw=2 et:



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

2021-09-15 Thread Massimiliano Torromeo via arch-commits
Date: Wednesday, September 15, 2021 @ 22:01:24
  Author: mtorromeo
Revision: 1016100

upgpkg: jitterentropy 3.3.0-1

Modified:
  jitterentropy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-15 21:53:57 UTC (rev 1016099)
+++ PKGBUILD2021-09-15 22:01:24 UTC (rev 1016100)
@@ -3,7 +3,7 @@
 
 pkgname=jitterentropy
 _pkgname=$pkgname-library
-pkgver=3.2.0
+pkgver=3.3.0
 pkgrel=1
 pkgdesc='Hardware RNG based on CPU timing jitter'
 arch=('x86_64')
@@ -11,7 +11,7 @@
 license=('BSD' 'GPL2')
 depends=('glibc')
 source=(https://www.chronox.de/jent/$_pkgname-$pkgver.tar.xz{,.asc})
-sha256sums=('dc8c93f4d56e87d53de42c1da98574f5e87f563f02549b86d659eb120f90910a'
+sha256sums=('b0743fdc6044e95732cbd374e2e2b4cdd4eab2989d3784e8669147c0be83a9b9'
 'SKIP')
 validpgpkeys=(3BCC43D4D2C87D1784B69EE4421EE936326AC15B)
 



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

2021-09-15 Thread Levente Polyak via arch-commits
Date: Wednesday, September 15, 2021 @ 21:57:22
  Author: anthraxx
Revision: 424065

archrelease: copy trunk to extra-x86_64

Added:
  vim/repos/extra-x86_64/PKGBUILD
(from rev 424064, vim/trunk/PKGBUILD)
  vim/repos/extra-x86_64/archlinux.vim
(from rev 424064, vim/trunk/archlinux.vim)
  vim/repos/extra-x86_64/vimdoc.hook
(from rev 424064, vim/trunk/vimdoc.hook)
  vim/repos/extra-x86_64/vimrc
(from rev 424064, vim/trunk/vimrc)
Deleted:
  vim/repos/extra-x86_64/PKGBUILD
  vim/repos/extra-x86_64/archlinux.vim
  vim/repos/extra-x86_64/vimdoc.hook
  vim/repos/extra-x86_64/vimrc

---+
 PKGBUILD  |  420 
 archlinux.vim |   92 ++--
 vimdoc.hook   |   22 +-
 vimrc |   36 ++--
 4 files changed, 285 insertions(+), 285 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-09-15 21:57:16 UTC (rev 424064)
+++ PKGBUILD2021-09-15 21:57:22 UTC (rev 424065)
@@ -1,210 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Anatol Pomozov 
-# Contributor: Thomas Dziedzic 
-# Contributor: Jan "heftig" Steffens 
-# Contributor: tobias [ tobias at archlinux org ]
-# Contributor: Daniel J Griffiths 
-# Contributor: Christian Hesse 
-# Contributor: Eli Schwartz 
-
-pkgbase=vim
-pkgname=('vim' 'gvim' 'vim-runtime')
-pkgver=8.2.3412
-_versiondir=82
-pkgrel=1
-pkgdesc='Vi Improved, a highly configurable, improved version of the vi text 
editor'
-url='https://www.vim.org'
-arch=('x86_64')
-license=('custom:vim')
-makedepends=('glibc' 'libgcrypt' 'gpm' 'python2' 'python' 'ruby' 'libxt' 
'gtk3' 'lua'
- 'gawk' 'tcl' 'pcre' 'zlib' 'libcanberra')
-source=(https://github.com/vim/vim/archive/v${pkgver}/${pkgbase}-${pkgver}.tar.gz
-vimrc
-archlinux.vim
-vimdoc.hook)
-sha256sums=('91f60e143860c6e7fc4d4b377c798de0cdbea98f3edd6035bf66694eeaa8bac8'
-'b16e85e457397ab2043a7ee0a3c84307c6b4eac157fd0b721694761f25b3ed5b'
-'cc3d931129854c298eb22e993ec14c2ad86cc1e70a08a64496f5e06559289972'
-'8e9656934d9d7793063230d15a689e10455e6db9b9fe73afa0f294792795d8ae')
-sha512sums=('170e76440c06548440c921129da52b806468b97708dc0487029ffcaa83b73af1d2e4662328d3a8bee7b27c173447015b4356a413dcfd39bf9c11323e3b42a148'
-
'4b5bed0813f22af9e158ea9aa56a4a9862dd786ba2d201f20159ccf652da6190164aaed0b6b7217d578f7b25c33a8adcc307bfcf3caa8d173a7ff29e2a00fee7'
-
'fe091d289d876f45319c898f6021ef86d6a238b540c225a279c46efc5c36fa7d868cd0cee73a111811c4be90df160f85340bb251be3a437727dbe5c699950363'
-
'a02ad0d66f300160911aeb81d8886c6c558436ac4ee3fcd161dd65c6b1e5d1f41b9005a7f5bb5ba68d57027fc1c8e43daabf055bd6207fb5a216a67f758df8d1')
-
-prepare() {
-  (cd vim-${pkgver}/src
-# define the place for the global (g)vimrc file (set to /etc/vimrc)
-sed -E 's|^.*(#define SYS_.*VIMRC_FILE.*").*$|\1|g' -i feature.h
-sed -E 's|^.*(#define VIMRC_FILE.*").*$|\1|g' -i feature.h
-autoconf
-  )
-  cp -a vim-${pkgver} gvim-${pkgver}
-}
-
-build() {
-  echo "Building vim..."
-  (cd vim-${pkgver}
-./configure \
-  --prefix=/usr \
-  --localstatedir=/var/lib/vim \
-  --with-features=huge \
-  --with-compiledby='Arch Linux' \
-  --enable-gpm \
-  --enable-acl \
-  --with-x=no \
-  --disable-gui \
-  --enable-multibyte \
-  --enable-cscope \
-  --enable-netbeans \
-  --enable-perlinterp=dynamic \
-  --enable-pythoninterp=dynamic \
-  --enable-python3interp=dynamic \
-  --enable-rubyinterp=dynamic \
-  --enable-luainterp=dynamic \
-  --enable-tclinterp=dynamic \
-  --disable-canberra
-make
-  )
-
-  echo "Building gvim..."
-  (cd gvim-${pkgver}
-./configure \
-  --prefix=/usr \
-  --localstatedir=/var/lib/vim \
-  --with-features=huge \
-  --with-compiledby='Arch Linux' \
-  --enable-gpm \
-  --enable-acl \
-  --with-x=yes \
-  --enable-gui=gtk3 \
-  --enable-multibyte \
-  --enable-cscope \
-  --enable-netbeans \
-  --enable-perlinterp=dynamic \
-  --enable-pythoninterp=dynamic \
-  --enable-python3interp=dynamic \
-  --enable-rubyinterp=dynamic \
-  --enable-luainterp=dynamic \
-  --enable-tclinterp=dynamic \
-  --enable-canberra
-make
-  )
-}
-
-check() {
-  cd vim-${pkgver}
-  TERM=xterm make -j1 test
-}
-
-package_vim-runtime() {
-  pkgdesc+=' (shared runtime)'
-  optdepends=('sh: support for some tools and macros'
-  'python: demoserver example tool'
-  'gawk: mve tools upport')
-  backup=('etc/vimrc')
-
-  cd vim-${pkgver}
-
-  make -j1 VIMRCLOC=/etc DESTDIR="${pkgdir}" install
-  # man and bin files belong to 'vim'
-  rm -r "${pkgdir}"/usr/share/man/ "${pkgdir}"/usr/bin/
-
-  # Don't forget logtalk.dict
-  install -Dm 644 runtime/ftplugin/logtalk.dict \
-"${pkgdir}"/usr/share/vim/vim${_versiondir}/ftplugin/logtalk.dict
-
-  # rc 

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

2021-09-15 Thread Levente Polyak via arch-commits
Date: Wednesday, September 15, 2021 @ 21:57:16
  Author: anthraxx
Revision: 424064

upgpkg: vim 8.2.3441-1

Modified:
  vim/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-15 21:53:57 UTC (rev 424063)
+++ PKGBUILD2021-09-15 21:57:16 UTC (rev 424064)
@@ -9,7 +9,7 @@
 
 pkgbase=vim
 pkgname=('vim' 'gvim' 'vim-runtime')
-pkgver=8.2.3412
+pkgver=8.2.3441
 _versiondir=82
 pkgrel=1
 pkgdesc='Vi Improved, a highly configurable, improved version of the vi text 
editor'
@@ -22,11 +22,11 @@
 vimrc
 archlinux.vim
 vimdoc.hook)
-sha256sums=('91f60e143860c6e7fc4d4b377c798de0cdbea98f3edd6035bf66694eeaa8bac8'
+sha256sums=('3db6c3af32b741c2e618358bbf002cffe9db2ab8d21f9ea277110fce54fec4d2'
 'b16e85e457397ab2043a7ee0a3c84307c6b4eac157fd0b721694761f25b3ed5b'
 'cc3d931129854c298eb22e993ec14c2ad86cc1e70a08a64496f5e06559289972'
 '8e9656934d9d7793063230d15a689e10455e6db9b9fe73afa0f294792795d8ae')
-sha512sums=('170e76440c06548440c921129da52b806468b97708dc0487029ffcaa83b73af1d2e4662328d3a8bee7b27c173447015b4356a413dcfd39bf9c11323e3b42a148'
+sha512sums=('1d85fdb2d6b50f0b786a8436d091a084b9ca0bb43c3cfbdeaa329b231b82ea790589b7bae6bdb6e60b2c12c97cc4178ab8e61677e0c1070c805021cfdbc34d5f'
 
'4b5bed0813f22af9e158ea9aa56a4a9862dd786ba2d201f20159ccf652da6190164aaed0b6b7217d578f7b25c33a8adcc307bfcf3caa8d173a7ff29e2a00fee7'
 
'fe091d289d876f45319c898f6021ef86d6a238b540c225a279c46efc5c36fa7d868cd0cee73a111811c4be90df160f85340bb251be3a437727dbe5c699950363'
 
'a02ad0d66f300160911aeb81d8886c6c558436ac4ee3fcd161dd65c6b1e5d1f41b9005a7f5bb5ba68d57027fc1c8e43daabf055bd6207fb5a216a67f758df8d1')



[arch-commits] Commit in lib32-libwebp/repos/multilib-x86_64 (PKGBUILD PKGBUILD)

2021-09-15 Thread Jan Steffens via arch-commits
Date: Wednesday, September 15, 2021 @ 21:53:57
  Author: heftig
Revision: 1016099

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-libwebp/repos/multilib-x86_64/PKGBUILD
(from rev 1016098, lib32-libwebp/trunk/PKGBUILD)
Deleted:
  lib32-libwebp/repos/multilib-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-09-15 21:53:48 UTC (rev 1016098)
+++ PKGBUILD2021-09-15 21:53:57 UTC (rev 1016099)
@@ -1,66 +0,0 @@
-# Maintainer: Maxime Gauduin 
-# Contributor: carstene1ns 
-# Contributor: Jan Alexander Steffens (heftig) 
-# Contributor: Alexander Rødseth 
-# Contributor: Jon Nordby 
-
-pkgname=lib32-libwebp
-pkgver=1.2.1
-pkgrel=1
-pkgdesc='WebP library'
-arch=('x86_64')
-url='https://developers.google.com/speed/webp/'
-license=('BSD')
-depends=('lib32-glibc' 'libwebp')
-makedepends=('git')
-provides=(libwebp{,decoder,demux,mux}.so)
-_commit=9ce5843dbabcfd3f7c39ec7ceba9cbeb213cbfdf  # tags/v1.2.1^0
-source=("git+https://chromium.googlesource.com/webm/libwebp#commit=${_commit};)
-sha256sums=('SKIP')
-validpgpkeys=('6B0E6B70976DE303EDF2F601F9C3D6BDB8232B5D') # WebP release 
signing key
-
-pkgver() {
-  cd libwebp
-  git describe --tags | sed 's/^v//;s/-/+/g'
-}
-
-prepare() {
-  cd libwebp
-
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd libwebp
-
-  export CC='gcc -m32'
-  export CXX='g++ -m32'
-  export PKG_CONFIG='i686-pc-linux-gnu-pkg-config'
-
-  ./configure \
---prefix='/usr' \
---libdir='/usr/lib32' \
---disable-static \
---enable-swap-16bit-csp \
---enable-experimental \
---enable-libwebp{mux,demux,decoder,extras}
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-check() {
-  cd libwebp
-  make check
-}
-
-package() {
-  cd libwebp
-
-  make DESTDIR="${pkgdir}" install
-  rm -rf "${pkgdir}"/usr/{bin,include,share}
-
-  install -dm 755 "${pkgdir}"/usr/share/licenses
-  ln -s libwebp "${pkgdir}"/usr/share/licenses/lib32-libwebp
-}
-
-# vim: ts=2 sw=2 et:

Copied: lib32-libwebp/repos/multilib-x86_64/PKGBUILD (from rev 1016098, 
lib32-libwebp/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-09-15 21:53:57 UTC (rev 1016099)
@@ -0,0 +1,53 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: carstene1ns 
+# Contributor: Jan Alexander Steffens (heftig) 
+# Contributor: Alexander Rødseth 
+# Contributor: Jon Nordby 
+
+pkgname=lib32-libwebp
+pkgver=1.2.1
+pkgrel=2
+pkgdesc='WebP library'
+arch=('x86_64')
+url='https://developers.google.com/speed/webp/'
+license=('BSD')
+depends=('lib32-glibc' 'libwebp')
+provides=(libwebp{,decoder,demux,mux}.so)
+source=(https://storage.googleapis.com/downloads.webmproject.org/releases/webp/libwebp-${pkgver}.tar.gz{,.asc})
+sha256sums=('808b98d2f5b84e9b27fdef6c5372dac769c3bda4502febbfa5031bd3c4d7d018'
+'SKIP')
+validpgpkeys=('6B0E6B70976DE303EDF2F601F9C3D6BDB8232B5D') # WebP release 
signing key
+
+build() {
+  cd libwebp-${pkgver}
+
+  export CC='gcc -m32'
+  export CXX='g++ -m32'
+  export PKG_CONFIG='i686-pc-linux-gnu-pkg-config'
+
+  ./configure \
+--prefix=/usr \
+--libdir=/usr/lib32 \
+--disable-static \
+--enable-swap-16bit-csp \
+--enable-libwebp{mux,demux,decoder,extras}
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+check() {
+  cd libwebp-${pkgver}
+  make check
+}
+
+package() {
+  cd libwebp-${pkgver}
+
+  make DESTDIR="${pkgdir}" install
+  rm -rf "${pkgdir}"/usr/{bin,include,share}
+
+  install -dm 755 "${pkgdir}"/usr/share/licenses
+  ln -s libwebp "${pkgdir}"/usr/share/licenses/lib32-libwebp
+}
+
+# vim: ts=2 sw=2 et:



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

2021-09-15 Thread Jan Steffens via arch-commits
Date: Wednesday, September 15, 2021 @ 21:53:57
  Author: heftig
Revision: 424063

archrelease: copy trunk to extra-x86_64

Added:
  libwebp/repos/extra-x86_64/PKGBUILD
(from rev 424062, libwebp/trunk/PKGBUILD)
Deleted:
  libwebp/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-09-15 21:53:50 UTC (rev 424062)
+++ PKGBUILD2021-09-15 21:53:57 UTC (rev 424063)
@@ -1,54 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Alexander Rødseth 
-# Contributor: Jon Nordby 
-
-pkgname=libwebp
-pkgver=1.2.1
-pkgrel=1
-pkgdesc="WebP library and conversion tools"
-arch=(x86_64)
-url="https://developers.google.com/speed/webp/;
-license=(BSD)
-depends=(libpng libjpeg libtiff giflib)
-makedepends=(freeglut mesa glu git)
-optdepends=('freeglut: vwebp viewer')
-provides=(libwebp{,decoder,demux,mux}.so)
-_commit=9ce5843dbabcfd3f7c39ec7ceba9cbeb213cbfdf  # tags/v1.2.1^0
-source=("git+https://chromium.googlesource.com/webm/libwebp#commit=$_commit;)
-sha256sums=('SKIP')
-validpgpkeys=('6B0E6B70976DE303EDF2F601F9C3D6BDB8232B5D') # WebP release 
signing key
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/^v//;s/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd $pkgname
-  ./configure \
---prefix=/usr \
---disable-static \
---enable-swap-16bit-csp \
---enable-experimental \
---enable-libwebp{mux,demux,decoder,extras}
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-check() {
-  cd $pkgname
-  make check
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 COPYING
-}
-
-# vim:set ts=2 sw=2 et:

Copied: libwebp/repos/extra-x86_64/PKGBUILD (from rev 424062, 
libwebp/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-09-15 21:53:57 UTC (rev 424063)
@@ -0,0 +1,45 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Alexander Rødseth 
+# Contributor: Jon Nordby 
+
+pkgname=libwebp
+pkgver=1.2.1
+pkgrel=2
+pkgdesc="WebP library and conversion tools"
+arch=(x86_64)
+url="https://developers.google.com/speed/webp/;
+license=(BSD)
+depends=(libpng libjpeg libtiff giflib)
+makedepends=(freeglut mesa glu)
+optdepends=('freeglut: vwebp viewer')
+provides=(libwebp{,decoder,demux,mux}.so)
+source=(https://storage.googleapis.com/downloads.webmproject.org/releases/webp/$pkgname-$pkgver.tar.gz{,.asc})
+sha256sums=('808b98d2f5b84e9b27fdef6c5372dac769c3bda4502febbfa5031bd3c4d7d018'
+'SKIP')
+validpgpkeys=('6B0E6B70976DE303EDF2F601F9C3D6BDB8232B5D') # WebP release 
signing key
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure \
+--prefix=/usr \
+--disable-static \
+--enable-swap-16bit-csp \
+--enable-libwebp{mux,demux,decoder,extras}
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make DESTDIR="$pkgdir" install
+
+  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 COPYING
+}
+
+# vim:set sw=2 et:



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

2021-09-15 Thread Jan Steffens via arch-commits
Date: Wednesday, September 15, 2021 @ 21:53:48
  Author: heftig
Revision: 1016098

1.2.1-2: FS#71837 use signed source

Modified:
  lib32-libwebp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-15 21:40:07 UTC (rev 1016097)
+++ PKGBUILD2021-09-15 21:53:48 UTC (rev 1016098)
@@ -6,32 +6,20 @@
 
 pkgname=lib32-libwebp
 pkgver=1.2.1
-pkgrel=1
+pkgrel=2
 pkgdesc='WebP library'
 arch=('x86_64')
 url='https://developers.google.com/speed/webp/'
 license=('BSD')
 depends=('lib32-glibc' 'libwebp')
-makedepends=('git')
 provides=(libwebp{,decoder,demux,mux}.so)
-_commit=9ce5843dbabcfd3f7c39ec7ceba9cbeb213cbfdf  # tags/v1.2.1^0
-source=("git+https://chromium.googlesource.com/webm/libwebp#commit=${_commit};)
-sha256sums=('SKIP')
+source=(https://storage.googleapis.com/downloads.webmproject.org/releases/webp/libwebp-${pkgver}.tar.gz{,.asc})
+sha256sums=('808b98d2f5b84e9b27fdef6c5372dac769c3bda4502febbfa5031bd3c4d7d018'
+'SKIP')
 validpgpkeys=('6B0E6B70976DE303EDF2F601F9C3D6BDB8232B5D') # WebP release 
signing key
 
-pkgver() {
-  cd libwebp
-  git describe --tags | sed 's/^v//;s/-/+/g'
-}
-
-prepare() {
-  cd libwebp
-
-  NOCONFIGURE=1 ./autogen.sh
-}
-
 build() {
-  cd libwebp
+  cd libwebp-${pkgver}
 
   export CC='gcc -m32'
   export CXX='g++ -m32'
@@ -38,11 +26,10 @@
   export PKG_CONFIG='i686-pc-linux-gnu-pkg-config'
 
   ./configure \
---prefix='/usr' \
---libdir='/usr/lib32' \
+--prefix=/usr \
+--libdir=/usr/lib32 \
 --disable-static \
 --enable-swap-16bit-csp \
---enable-experimental \
 --enable-libwebp{mux,demux,decoder,extras}
   sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
   make
@@ -49,12 +36,12 @@
 }
 
 check() {
-  cd libwebp
+  cd libwebp-${pkgver}
   make check
 }
 
 package() {
-  cd libwebp
+  cd libwebp-${pkgver}
 
   make DESTDIR="${pkgdir}" install
   rm -rf "${pkgdir}"/usr/{bin,include,share}



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

2021-09-15 Thread Jan Steffens via arch-commits
Date: Wednesday, September 15, 2021 @ 21:53:50
  Author: heftig
Revision: 424062

1.2.1-2: FS#71837 use signed source

Modified:
  libwebp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-15 20:27:25 UTC (rev 424061)
+++ PKGBUILD2021-09-15 21:53:50 UTC (rev 424062)
@@ -4,37 +4,26 @@
 
 pkgname=libwebp
 pkgver=1.2.1
-pkgrel=1
+pkgrel=2
 pkgdesc="WebP library and conversion tools"
 arch=(x86_64)
 url="https://developers.google.com/speed/webp/;
 license=(BSD)
 depends=(libpng libjpeg libtiff giflib)
-makedepends=(freeglut mesa glu git)
+makedepends=(freeglut mesa glu)
 optdepends=('freeglut: vwebp viewer')
 provides=(libwebp{,decoder,demux,mux}.so)
-_commit=9ce5843dbabcfd3f7c39ec7ceba9cbeb213cbfdf  # tags/v1.2.1^0
-source=("git+https://chromium.googlesource.com/webm/libwebp#commit=$_commit;)
-sha256sums=('SKIP')
+source=(https://storage.googleapis.com/downloads.webmproject.org/releases/webp/$pkgname-$pkgver.tar.gz{,.asc})
+sha256sums=('808b98d2f5b84e9b27fdef6c5372dac769c3bda4502febbfa5031bd3c4d7d018'
+'SKIP')
 validpgpkeys=('6B0E6B70976DE303EDF2F601F9C3D6BDB8232B5D') # WebP release 
signing key
 
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/^v//;s/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  NOCONFIGURE=1 ./autogen.sh
-}
-
 build() {
-  cd $pkgname
+  cd $pkgname-$pkgver
   ./configure \
 --prefix=/usr \
 --disable-static \
 --enable-swap-16bit-csp \
---enable-experimental \
 --enable-libwebp{mux,demux,decoder,extras}
   sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
   make
@@ -41,14 +30,16 @@
 }
 
 check() {
-  cd $pkgname
+  cd $pkgname-$pkgver
   make check
 }
 
 package() {
-  cd $pkgname
+  cd $pkgname-$pkgver
+
   make DESTDIR="$pkgdir" install
+
   install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 COPYING
 }
 
-# vim:set ts=2 sw=2 et:
+# vim:set sw=2 et:



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

2021-09-15 Thread Massimiliano Torromeo via arch-commits
Date: Wednesday, September 15, 2021 @ 21:40:07
  Author: mtorromeo
Revision: 1016097

archrelease: copy trunk to community-x86_64

Added:
  cockpit/repos/community-x86_64/PKGBUILD
(from rev 1016096, cockpit/trunk/PKGBUILD)
  cockpit/repos/community-x86_64/cockpit-ws.sysuser.conf
(from rev 1016096, cockpit/trunk/cockpit-ws.sysuser.conf)
  cockpit/repos/community-x86_64/cockpit-wsinstance.sysuser.conf
(from rev 1016096, cockpit/trunk/cockpit-wsinstance.sysuser.conf)
  cockpit/repos/community-x86_64/cockpit.pam
(from rev 1016096, cockpit/trunk/cockpit.pam)
Deleted:
  cockpit/repos/community-x86_64/PKGBUILD
  cockpit/repos/community-x86_64/cockpit-ws.sysuser.conf
  cockpit/repos/community-x86_64/cockpit-wsinstance.sysuser.conf
  cockpit/repos/community-x86_64/cockpit.pam

-+
 PKGBUILD|  206 +++---
 cockpit-ws.sysuser.conf |2 
 cockpit-wsinstance.sysuser.conf |2 
 cockpit.pam |   10 -
 4 files changed, 110 insertions(+), 110 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-09-15 21:39:49 UTC (rev 1016096)
+++ PKGBUILD2021-09-15 21:40:07 UTC (rev 1016097)
@@ -1,103 +0,0 @@
-# Maintainer: Massimiliano Torromeo 
-# Contributor: Iwan Timmer 
-# Contributor: Mark Constable 
-# Contributor: Anatol Pomozov 
-
-pkgbase=cockpit
-pkgname=(cockpit cockpit-pcp)
-pkgver=252
-pkgrel=1
-pkgdesc='A systemd web based user interface for Linux servers'
-arch=('x86_64')
-url='https://cockpit-project.org/'
-license=(LGPL)
-makedepends=(krb5 libssh accountsservice perl-json perl-locale-po json-glib 
glib-networking
- git intltool gtk-doc gobject-introspection networkmanager 
libgsystem xmlto npm pcp)
-source=("https://github.com/cockpit-project/cockpit/releases/download/$pkgver/cockpit-$pkgver.tar.xz;
-"cockpit.pam"
-"cockpit-ws.sysuser.conf"
-"cockpit-wsinstance.sysuser.conf")
-sha256sums=('7db7c91005d6c362440fb2035a87a3af377545b2310ecc5e27acb1077565'
-'a979e236681c6a06906937cf0f012e976347af5d6d7e7ae04a11acb01cc2689d'
-'1ad9dad75858264778bd94799b60c651f7cc1c7f7fa1c54622174303e639287a'
-'46ee8ecad7bc97ba588ab9471dde76e41c00daf40658902425626c3a1938b438')
-
-prepare() {
-  cd cockpit-$pkgver
-  # disable buggy package-lock check
-  sed -r '/^cmd_make_package_lock_json\b/ a exit 0' -i tools/node-modules
-}
-
-build() {
-  cd cockpit-$pkgver
-  ./configure \
---prefix=/usr \
---sbindir=/usr/bin \
---libexecdir=/usr/lib/$pkgname/ \
---sysconfdir=/etc \
---localstatedir=/var \
---disable-dependency-tracking \
---disable-silent-rules \
---with-cockpit-user=cockpit-ws \
---with-cockpit-ws-instance-user=cockpit-wsinstance
-  make all
-}
-
-package_cockpit() {
-  depends=(krb5 libssh accountsservice perl-json perl-locale-po json-glib 
glib-networking)
-  backup=('etc/pam.d/cockpit')
-  optdepends=("cockpit-pcp: reading performance metrics"
-  "cockpit-podman: user interface for managing podman containers"
-  "cockpit-machines: user interface for managing virtual machines"
-  "udisks2: manage hard disks"
-  "networkmanager: manage network connections"
-  "packagekit: manage packages")
-
-  cd cockpit-$pkgver
-  make DESTDIR="$pkgdir" install
-  rm -rf "$pkgdir"/usr/{src,lib/firewalld}
-  install -Dm644 "$srcdir"/cockpit.pam "$pkgdir"/etc/pam.d/cockpit
-  install -Dm644 "$srcdir"/cockpit-ws.sysuser.conf 
"$pkgdir"/usr/lib/sysusers.d/cockpit-ws.conf
-  install -Dm644 "$srcdir"/cockpit-wsinstance.sysuser.conf 
"$pkgdir"/usr/lib/sysusers.d/cockpit-wsinstance.conf
-
-  echo "z /usr/lib/cockpit/cockpit-session - - cockpit-wsinstance -" >> 
"$pkgdir"/usr/lib/tmpfiles.d/cockpit-tempfiles.conf
-
-  # remove unused plugins
-  rm -rf "$pkgdir"/usr/share/cockpit/{selinux,playground,sosreport} \
- 
"$pkgdir"/usr/share/metainfo/org.cockpit-project.cockpit-{selinux,sosreport}.metainfo.xml
-
-  # remove plugins packaged separately
-  rm -rf "$pkgdir"/usr/share/cockpit/pcp \
- "$pkgdir"/usr/lib/cockpit/cockpit-pcp \
- "$pkgdir"/var/lib/pcp
-}
-
-package_cockpit-pcp() {
-  pkgdesc='Cockpit support for reading PCP metrics and loading PCP archives'
-  depends=(cockpit pcp)
-
-  cd cockpit-$pkgver
-  make DESTDIR="$pkgdir"/tmp install
-
-  cd "$pkgdir"/tmp
-  bsdtar -cf - usr/share/cockpit/pcp usr/lib/cockpit/cockpit-pcp var/lib/pcp \
-| bsdtar -xf - -C "$pkgdir"
-  rm -rf "$pkgdir"/tmp
-}
-
-_do_package_component() {
-  _component="${pkgname#cockpit-}"
-
-  cd cockpit-$pkgver
-  make DESTDIR="$pkgdir"/tmp install
-
-  cd "$pkgdir"/tmp
-  bsdtar -cf - usr/share/cockpit/$_component \
-| bsdtar -xf - -C "$pkgdir"
-
-  [ -f usr/share/metainfo/org.cockpit-project.$pkgname.metainfo.xml ] && \
-install -Dm644 

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

2021-09-15 Thread Massimiliano Torromeo via arch-commits
Date: Wednesday, September 15, 2021 @ 21:39:49
  Author: mtorromeo
Revision: 1016096

upgpkg: cockpit 253-1

Modified:
  cockpit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-15 21:37:47 UTC (rev 1016095)
+++ PKGBUILD2021-09-15 21:39:49 UTC (rev 1016096)
@@ -5,7 +5,7 @@
 
 pkgbase=cockpit
 pkgname=(cockpit cockpit-pcp)
-pkgver=252
+pkgver=253
 pkgrel=1
 pkgdesc='A systemd web based user interface for Linux servers'
 arch=('x86_64')
@@ -17,7 +17,7 @@
 "cockpit.pam"
 "cockpit-ws.sysuser.conf"
 "cockpit-wsinstance.sysuser.conf")
-sha256sums=('7db7c91005d6c362440fb2035a87a3af377545b2310ecc5e27acb1077565'
+sha256sums=('449ca9812f64ac197ad9488a19a20a7e6fbbb40f0148bee4b1d7abeb8639d063'
 'a979e236681c6a06906937cf0f012e976347af5d6d7e7ae04a11acb01cc2689d'
 '1ad9dad75858264778bd94799b60c651f7cc1c7f7fa1c54622174303e639287a'
 '46ee8ecad7bc97ba588ab9471dde76e41c00daf40658902425626c3a1938b438')



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

2021-09-15 Thread Levente Polyak via arch-commits
Date: Wednesday, September 15, 2021 @ 21:37:47
  Author: anthraxx
Revision: 1016095

archrelease: copy trunk to community-x86_64

Added:
  hcxtools/repos/community-x86_64/PKGBUILD
(from rev 1016094, hcxtools/trunk/PKGBUILD)
Deleted:
  hcxtools/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-09-15 21:37:43 UTC (rev 1016094)
+++ PKGBUILD2021-09-15 21:37:47 UTC (rev 1016095)
@@ -1,29 +0,0 @@
-# Maintainer: Levente Polyak 
-
-pkgname=hcxtools
-pkgver=6.2.0
-pkgrel=1
-pkgdesc='Portable solution for capturing wlan traffic and conversion to 
hashcat and John the Ripper formats'
-url='https://github.com/ZerBea/hcxtools'
-arch=('x86_64')
-license=('MIT')
-depends=('curl' 'libcurl.so' 'libpcap' 'zlib' 'openssl')
-source=(https://github.com/ZerBea/hcxtools/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz
-
https://github.com/ZerBea/hcxtools/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz.asc)
-sha512sums=('c93b260ce9b660ce8eebaab38c4f858ead384328249b74c139959957ba1069236676ddc5138ee3d6e4dbcd7edc29786453693396e5274c9c380e91acf9285499'
-'SKIP')
-validpgpkeys=('5920CE1C567948AFD2C0A9B7375516A45DB88630') # ZeroBeat 

-
-build() {
-  cd ${pkgname}-${pkgver}
-  make PRODUCTION=1
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" PREFIX=/usr PRODUCTION=1 install
-  install -Dm 644 README.md changelog -t "${pkgdir}/usr/share/doc/${pkgname}"
-  install -Dm 644 license.txt -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: hcxtools/repos/community-x86_64/PKGBUILD (from rev 1016094, 
hcxtools/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-09-15 21:37:47 UTC (rev 1016095)
@@ -0,0 +1,29 @@
+# Maintainer: Levente Polyak 
+
+pkgname=hcxtools
+pkgver=6.2.4
+pkgrel=1
+pkgdesc='Portable solution for capturing wlan traffic and conversion to 
hashcat and John the Ripper formats'
+url='https://github.com/ZerBea/hcxtools'
+arch=('x86_64')
+license=('MIT')
+depends=('curl' 'libcurl.so' 'libpcap' 'zlib' 'openssl')
+source=(https://github.com/ZerBea/hcxtools/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz
+
https://github.com/ZerBea/hcxtools/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz.asc)
+sha512sums=('063def70f0761672aff621dc2a7fb744cf97a306a04522e7a1121de9c4512ce8ad55b4b29e5dbb53d07c7edf8b52f0d8409e161bd45e987af03e0361b7a8ae6e'
+'SKIP')
+validpgpkeys=('5920CE1C567948AFD2C0A9B7375516A45DB88630') # ZeroBeat 

+
+build() {
+  cd ${pkgname}-${pkgver}
+  make PRODUCTION=1
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" PREFIX=/usr PRODUCTION=1 install
+  install -Dm 644 README.md changelog -t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 license.txt -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:



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

2021-09-15 Thread Levente Polyak via arch-commits
Date: Wednesday, September 15, 2021 @ 21:37:43
  Author: anthraxx
Revision: 1016094

upgpkg: hcxtools 6.2.4-1

Modified:
  hcxtools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-15 21:37:25 UTC (rev 1016093)
+++ PKGBUILD2021-09-15 21:37:43 UTC (rev 1016094)
@@ -1,7 +1,7 @@
 # Maintainer: Levente Polyak 
 
 pkgname=hcxtools
-pkgver=6.2.0
+pkgver=6.2.4
 pkgrel=1
 pkgdesc='Portable solution for capturing wlan traffic and conversion to 
hashcat and John the Ripper formats'
 url='https://github.com/ZerBea/hcxtools'
@@ -10,7 +10,7 @@
 depends=('curl' 'libcurl.so' 'libpcap' 'zlib' 'openssl')
 
source=(https://github.com/ZerBea/hcxtools/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz
 
https://github.com/ZerBea/hcxtools/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz.asc)
-sha512sums=('c93b260ce9b660ce8eebaab38c4f858ead384328249b74c139959957ba1069236676ddc5138ee3d6e4dbcd7edc29786453693396e5274c9c380e91acf9285499'
+sha512sums=('063def70f0761672aff621dc2a7fb744cf97a306a04522e7a1121de9c4512ce8ad55b4b29e5dbb53d07c7edf8b52f0d8409e161bd45e987af03e0361b7a8ae6e'
 'SKIP')
 validpgpkeys=('5920CE1C567948AFD2C0A9B7375516A45DB88630') # ZeroBeat 

 



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

2021-09-15 Thread Levente Polyak via arch-commits
Date: Wednesday, September 15, 2021 @ 21:37:25
  Author: anthraxx
Revision: 1016093

archrelease: copy trunk to community-x86_64

Added:
  ccache/repos/community-x86_64/PKGBUILD
(from rev 1016092, ccache/trunk/PKGBUILD)
Deleted:
  ccache/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-09-15 21:37:21 UTC (rev 1016092)
+++ PKGBUILD2021-09-15 21:37:25 UTC (rev 1016093)
@@ -1,56 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Giovanni Scafora 
-# Contributor: Tom Newsom 
-
-pkgname=ccache
-pkgver=4.4
-pkgrel=1
-pkgdesc='Compiler cache that speeds up recompilation by caching previous 
compilations'
-url='https://ccache.dev/'
-arch=('x86_64')
-license=('GPL3')
-depends=('glibc' 'gcc-libs' 'hiredis' 'zstd' 'libzstd.so')
-makedepends=('cmake' 'asciidoctor' 'perl')
-source=(https://github.com/ccache/ccache/releases/download/v${pkgver}/ccache-${pkgver}.tar.xz{,.asc})
-validpgpkeys=('5A939A71A46792CF57866A51996DDA075594ADB8') # Joel Rosdahl 

-sha512sums=('a857d1aded9c352eabba9c0f31b43fd17ae91672dabdfc086851448867c9dff6ad6dd7ee60f8e39102d41b7d8cf7866c6bf104e0214e865de45e75a8df7626f0'
-'SKIP')
-b2sums=('6c4519d3cd93be49dfff09f22ada798894c9f4475395443e0dcfcf768178f1520cf26bc5c2e0ea22e06cc3ebd6ddaf930a2d1b517593a10c3253f7faa3131f43'
-'SKIP')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  cmake \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=None \
--Wno-dev \
--B build \
--S .
-  make VERBOSE=1 -C build
-}
-
-check() {
-  cd ${pkgname}-${pkgver}
-  make VERBOSE=1 check -C build
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-
-  make DESTDIR="${pkgdir}" install -C build
-  make DESTDIR="${pkgdir}" install -C build/doc
-
-  install -Dm 644 doc/*.md doc/*.adoc -t "${pkgdir}/usr/share/doc/${pkgname}"
-
-  install -d "${pkgdir}/usr/lib/ccache/bin"
-  local _prog
-  for _prog in gcc g++ c++; do
-ln -s /usr/bin/ccache "${pkgdir}/usr/lib/ccache/bin/$_prog"
-ln -s /usr/bin/ccache "${pkgdir}/usr/lib/ccache/bin/${CHOST}-$_prog"
-  done
-  for _prog in cc clang clang++; do
-ln -s /usr/bin/ccache "${pkgdir}/usr/lib/ccache/bin/$_prog"
-  done
-}
-
-# vim: ts=2 sw=2 et:

Copied: ccache/repos/community-x86_64/PKGBUILD (from rev 1016092, 
ccache/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-09-15 21:37:25 UTC (rev 1016093)
@@ -0,0 +1,56 @@
+# Maintainer: Levente Polyak 
+# Contributor: Giovanni Scafora 
+# Contributor: Tom Newsom 
+
+pkgname=ccache
+pkgver=4.4.1
+pkgrel=1
+pkgdesc='Compiler cache that speeds up recompilation by caching previous 
compilations'
+url='https://ccache.dev/'
+arch=('x86_64')
+license=('GPL3')
+depends=('glibc' 'gcc-libs' 'hiredis' 'zstd' 'libzstd.so')
+makedepends=('cmake' 'asciidoctor' 'perl')
+source=(https://github.com/ccache/ccache/releases/download/v${pkgver}/ccache-${pkgver}.tar.xz{,.asc})
+validpgpkeys=('5A939A71A46792CF57866A51996DDA075594ADB8') # Joel Rosdahl 

+sha512sums=('820c0b05d2b0209e8478c7409da0e27de8e9621c683aa0f147f9c025b8ac7bc3d06d6945d346143790168da79dfbd14b0ccfb284c7ac05c35f85b492be07d676'
+'SKIP')
+b2sums=('54fec9480c37c144667ae2dd969cabc1526a01312200b2b9b26ef1d5533836e2070d28e6a7fbc580f232b22dbd6f1a56a43494b8960d96c5a97d8f041e8f31ca'
+'SKIP')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  cmake \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=None \
+-Wno-dev \
+-B build \
+-S .
+  make VERBOSE=1 -C build
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  make VERBOSE=1 check -C build
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+
+  make DESTDIR="${pkgdir}" install -C build
+  make DESTDIR="${pkgdir}" install -C build/doc
+
+  install -Dm 644 doc/*.md doc/*.adoc -t "${pkgdir}/usr/share/doc/${pkgname}"
+
+  install -d "${pkgdir}/usr/lib/ccache/bin"
+  local _prog
+  for _prog in gcc g++ c++; do
+ln -s /usr/bin/ccache "${pkgdir}/usr/lib/ccache/bin/$_prog"
+ln -s /usr/bin/ccache "${pkgdir}/usr/lib/ccache/bin/${CHOST}-$_prog"
+  done
+  for _prog in cc clang clang++; do
+ln -s /usr/bin/ccache "${pkgdir}/usr/lib/ccache/bin/$_prog"
+  done
+}
+
+# vim: ts=2 sw=2 et:



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

2021-09-15 Thread Levente Polyak via arch-commits
Date: Wednesday, September 15, 2021 @ 21:37:21
  Author: anthraxx
Revision: 1016092

upgpkg: ccache 4.4.1-1

Modified:
  ccache/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-15 21:37:13 UTC (rev 1016091)
+++ PKGBUILD2021-09-15 21:37:21 UTC (rev 1016092)
@@ -3,7 +3,7 @@
 # Contributor: Tom Newsom 
 
 pkgname=ccache
-pkgver=4.4
+pkgver=4.4.1
 pkgrel=1
 pkgdesc='Compiler cache that speeds up recompilation by caching previous 
compilations'
 url='https://ccache.dev/'
@@ -13,9 +13,9 @@
 makedepends=('cmake' 'asciidoctor' 'perl')
 
source=(https://github.com/ccache/ccache/releases/download/v${pkgver}/ccache-${pkgver}.tar.xz{,.asc})
 validpgpkeys=('5A939A71A46792CF57866A51996DDA075594ADB8') # Joel Rosdahl 

-sha512sums=('a857d1aded9c352eabba9c0f31b43fd17ae91672dabdfc086851448867c9dff6ad6dd7ee60f8e39102d41b7d8cf7866c6bf104e0214e865de45e75a8df7626f0'
+sha512sums=('820c0b05d2b0209e8478c7409da0e27de8e9621c683aa0f147f9c025b8ac7bc3d06d6945d346143790168da79dfbd14b0ccfb284c7ac05c35f85b492be07d676'
 'SKIP')
-b2sums=('6c4519d3cd93be49dfff09f22ada798894c9f4475395443e0dcfcf768178f1520cf26bc5c2e0ea22e06cc3ebd6ddaf930a2d1b517593a10c3253f7faa3131f43'
+b2sums=('54fec9480c37c144667ae2dd969cabc1526a01312200b2b9b26ef1d5533836e2070d28e6a7fbc580f232b22dbd6f1a56a43494b8960d96c5a97d8f041e8f31ca'
 'SKIP')
 
 build() {



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

2021-09-15 Thread Levente Polyak via arch-commits
Date: Wednesday, September 15, 2021 @ 21:37:13
  Author: anthraxx
Revision: 1016091

archrelease: copy trunk to community-x86_64

Added:
  cobalt/repos/community-x86_64/PKGBUILD
(from rev 1016090, cobalt/trunk/PKGBUILD)
Deleted:
  cobalt/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-09-15 21:37:10 UTC (rev 1016090)
+++ PKGBUILD2021-09-15 21:37:13 UTC (rev 1016091)
@@ -1,33 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Stas Rudakou 
-
-pkgname=cobalt
-pkgver=0.16.5
-pkgrel=1
-pkgdesc='Static site generator written in Rust'
-url='https://cobalt-org.github.io/'
-arch=('x86_64')
-license=('MIT')
-depends=('openssl' 'libsass' 'glibc' 'gcc-libs')
-makedepends=('rust' 'cargo')
-source=(https://github.com/cobalt-org/cobalt.rs/archive/v${pkgver}/${pkgname}.rs-v${pkgver}.tar.gz)
-sha512sums=('8a160a6d7ede5d15bed053c835d26cc0430ade2ba9da99ce166684a490b2aeb6db32cdfdf2523d5b84b75c494d75b082f6fc61a74d989033a525604e82aafd10')
-b2sums=('aabe4e38b37e43d646581ad38ad075b712fd0b7269950c3b6f86d8a940abb8037441d8f52bfcceb2eb15602e14b5b0921600b144e5a5b71a7a26408feca7e421')
-
-build() {
-  cd ${pkgname}.rs-${pkgver}
-  cargo build --release --locked --features 'syntax-highlight sass'
-}
-
-check() {
-  cd ${pkgname}.rs-${pkgver}
-  cargo test --release --locked
-}
-
-package() {
-  cd ${pkgname}.rs-${pkgver}
-  install -Dm 755 target/release/cobalt -t "${pkgdir}/usr/bin"
-  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: cobalt/repos/community-x86_64/PKGBUILD (from rev 1016090, 
cobalt/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-09-15 21:37:13 UTC (rev 1016091)
@@ -0,0 +1,33 @@
+# Maintainer: Levente Polyak 
+# Contributor: Stas Rudakou 
+
+pkgname=cobalt
+pkgver=0.17.0
+pkgrel=1
+pkgdesc='Static site generator written in Rust'
+url='https://cobalt-org.github.io/'
+arch=('x86_64')
+license=('MIT')
+depends=('openssl' 'libsass' 'glibc' 'gcc-libs')
+makedepends=('rust' 'cargo')
+source=(https://github.com/cobalt-org/cobalt.rs/archive/v${pkgver}/${pkgname}.rs-v${pkgver}.tar.gz)
+sha512sums=('1779653a64168b3c29161eb3bf07f2635bd22fd58a63221cf144134608e52654ed92149dbd399ff96d310ce5f3048022e91eac4f20871fdd3d9b301a1e79920e')
+b2sums=('be3cf4915fd50de165198dc72906ab6190e8f1a40a9974f85480de118606a824f4cbbc0c279876b5e70c8de1db0f3c502decdfe48154d9051faa994104169b07')
+
+build() {
+  cd ${pkgname}.rs-${pkgver}
+  cargo build --release --locked --features 'syntax-highlight sass'
+}
+
+check() {
+  cd ${pkgname}.rs-${pkgver}
+  cargo test --release --locked
+}
+
+package() {
+  cd ${pkgname}.rs-${pkgver}
+  install -Dm 755 target/release/cobalt -t "${pkgdir}/usr/bin"
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:



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

2021-09-15 Thread Levente Polyak via arch-commits
Date: Wednesday, September 15, 2021 @ 21:37:10
  Author: anthraxx
Revision: 1016090

upgpkg: cobalt 0.17.0-1

Modified:
  cobalt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-15 21:37:07 UTC (rev 1016089)
+++ PKGBUILD2021-09-15 21:37:10 UTC (rev 1016090)
@@ -2,7 +2,7 @@
 # Contributor: Stas Rudakou 
 
 pkgname=cobalt
-pkgver=0.16.5
+pkgver=0.17.0
 pkgrel=1
 pkgdesc='Static site generator written in Rust'
 url='https://cobalt-org.github.io/'
@@ -11,8 +11,8 @@
 depends=('openssl' 'libsass' 'glibc' 'gcc-libs')
 makedepends=('rust' 'cargo')
 
source=(https://github.com/cobalt-org/cobalt.rs/archive/v${pkgver}/${pkgname}.rs-v${pkgver}.tar.gz)
-sha512sums=('8a160a6d7ede5d15bed053c835d26cc0430ade2ba9da99ce166684a490b2aeb6db32cdfdf2523d5b84b75c494d75b082f6fc61a74d989033a525604e82aafd10')
-b2sums=('aabe4e38b37e43d646581ad38ad075b712fd0b7269950c3b6f86d8a940abb8037441d8f52bfcceb2eb15602e14b5b0921600b144e5a5b71a7a26408feca7e421')
+sha512sums=('1779653a64168b3c29161eb3bf07f2635bd22fd58a63221cf144134608e52654ed92149dbd399ff96d310ce5f3048022e91eac4f20871fdd3d9b301a1e79920e')
+b2sums=('be3cf4915fd50de165198dc72906ab6190e8f1a40a9974f85480de118606a824f4cbbc0c279876b5e70c8de1db0f3c502decdfe48154d9051faa994104169b07')
 
 build() {
   cd ${pkgname}.rs-${pkgver}



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

2021-09-15 Thread Levente Polyak via arch-commits
Date: Wednesday, September 15, 2021 @ 21:37:07
  Author: anthraxx
Revision: 1016089

archrelease: copy trunk to community-x86_64

Added:
  hcxdumptool/repos/community-x86_64/PKGBUILD
(from rev 1016088, hcxdumptool/trunk/PKGBUILD)
Deleted:
  hcxdumptool/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-09-15 21:37:03 UTC (rev 1016088)
+++ PKGBUILD2021-09-15 21:37:07 UTC (rev 1016089)
@@ -1,31 +0,0 @@
-# Maintainer: Levente Polyak 
-
-pkgname=hcxdumptool
-pkgver=6.2.0
-pkgrel=1
-pkgdesc='Small tool to capture packets from wlan devices'
-url='https://github.com/ZerBea/hcxdumptool'
-arch=('x86_64')
-license=('MIT')
-depends=('glibc' 'openssl')
-source=(https://github.com/ZerBea/hcxdumptool/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz
-
https://github.com/ZerBea/hcxdumptool/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz.asc)
-sha512sums=('e657942197325f5a1c96f1244f6b5fa2e06c025ac82f69108f6fd13c31dc375e54c4f464e6c729652d105d83ff79fee747c862d9c1271da559b22c6112dfcefb'
-'SKIP')
-b2sums=('c1a86c800cb1d59d0041518b5fbd42b6f5c44e1a648780e6db3faf07326cab2302f81090c894a8483e6ae01e6c371c71f3810efb3c5110b135ccae3dac16adb4'
-'SKIP')
-validpgpkeys=('5920CE1C567948AFD2C0A9B7375516A45DB88630') # ZeroBeat 

-
-build() {
-  cd ${pkgname}-${pkgver}
-  make PRODUCTION=1
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" PREFIX=/usr PRODUCTION=1 install
-  install -Dm 644 README.md changelog -t "${pkgdir}/usr/share/doc/${pkgname}"
-  install -Dm 644 license.txt -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: hcxdumptool/repos/community-x86_64/PKGBUILD (from rev 1016088, 
hcxdumptool/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-09-15 21:37:07 UTC (rev 1016089)
@@ -0,0 +1,31 @@
+# Maintainer: Levente Polyak 
+
+pkgname=hcxdumptool
+pkgver=6.2.4
+pkgrel=1
+pkgdesc='Small tool to capture packets from wlan devices'
+url='https://github.com/ZerBea/hcxdumptool'
+arch=('x86_64')
+license=('MIT')
+depends=('glibc' 'openssl')
+source=(https://github.com/ZerBea/hcxdumptool/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz
+
https://github.com/ZerBea/hcxdumptool/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz.asc)
+sha512sums=('56e87397eb265a8b7c85d312b48c790aa38aacfa958fbfda18ae7c44bc6c42d330657200d07bf41c3d6a2574e49062b48702313a119c5141d58c9d5f8e20'
+'SKIP')
+b2sums=('7a2b10802e02966ebfb39a102ac0b91f753b03e93ab188e4f8a4ff9edb49de889afae308e3fa86270971f097129ac28245b5091374a2be9a470e553e871a22d8'
+'SKIP')
+validpgpkeys=('5920CE1C567948AFD2C0A9B7375516A45DB88630') # ZeroBeat 

+
+build() {
+  cd ${pkgname}-${pkgver}
+  make PRODUCTION=1
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" PREFIX=/usr PRODUCTION=1 install
+  install -Dm 644 README.md changelog -t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 license.txt -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:



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

2021-09-15 Thread Levente Polyak via arch-commits
Date: Wednesday, September 15, 2021 @ 21:37:03
  Author: anthraxx
Revision: 1016088

upgpkg: hcxdumptool 6.2.4-1

Modified:
  hcxdumptool/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-15 21:05:12 UTC (rev 1016087)
+++ PKGBUILD2021-09-15 21:37:03 UTC (rev 1016088)
@@ -1,7 +1,7 @@
 # Maintainer: Levente Polyak 
 
 pkgname=hcxdumptool
-pkgver=6.2.0
+pkgver=6.2.4
 pkgrel=1
 pkgdesc='Small tool to capture packets from wlan devices'
 url='https://github.com/ZerBea/hcxdumptool'
@@ -10,9 +10,9 @@
 depends=('glibc' 'openssl')
 
source=(https://github.com/ZerBea/hcxdumptool/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz
 
https://github.com/ZerBea/hcxdumptool/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz.asc)
-sha512sums=('e657942197325f5a1c96f1244f6b5fa2e06c025ac82f69108f6fd13c31dc375e54c4f464e6c729652d105d83ff79fee747c862d9c1271da559b22c6112dfcefb'
+sha512sums=('56e87397eb265a8b7c85d312b48c790aa38aacfa958fbfda18ae7c44bc6c42d330657200d07bf41c3d6a2574e49062b48702313a119c5141d58c9d5f8e20'
 'SKIP')
-b2sums=('c1a86c800cb1d59d0041518b5fbd42b6f5c44e1a648780e6db3faf07326cab2302f81090c894a8483e6ae01e6c371c71f3810efb3c5110b135ccae3dac16adb4'
+b2sums=('7a2b10802e02966ebfb39a102ac0b91f753b03e93ab188e4f8a4ff9edb49de889afae308e3fa86270971f097129ac28245b5091374a2be9a470e553e871a22d8'
 'SKIP')
 validpgpkeys=('5920CE1C567948AFD2C0A9B7375516A45DB88630') # ZeroBeat 

 



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

2021-09-15 Thread David Runge via arch-commits
Date: Wednesday, September 15, 2021 @ 21:05:12
  Author: dvzrv
Revision: 1016087

archrelease: copy trunk to community-any

Added:
  python-ansible-compat/repos/community-any/
  python-ansible-compat/repos/community-any/PKGBUILD
(from rev 1016086, python-ansible-compat/trunk/PKGBUILD)

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

Copied: python-ansible-compat/repos/community-any/PKGBUILD (from rev 1016086, 
python-ansible-compat/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2021-09-15 21:05:12 UTC (rev 1016087)
@@ -0,0 +1,41 @@
+# Maintainer: David Runge 
+
+_name=ansible-compat
+pkgname=python-ansible-compat
+pkgver=0.5.0
+pkgrel=1
+pkgdesc="Functions that help interacting with various versions of Ansible"
+arch=('any')
+url="https://github.com/ansible-community/ansible-compat;
+license=('MIT')
+depends=('python-subprocess-tee' 'python-yaml')
+makedepends=('python-setuptools-scm' 'python-setuptools-scm-git-archive')
+checkdepends=('ansible' 'python-flaky' 'python-pytest' 'python-pytest-mock')
+source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz;)
+sha256sums=('0730fbbb32710d19f4244a4cabad9c6b33b4b92ddf72aee353484e17543405f5')
+b2sums=('468dbcf20865225c76896dd8aad6f4b9a749b7a45d661484f89e2eaab4416b29f2e0ea0477b86ea52193165cd23180a79ebd5adac571e0b7d659096e84c27bcb')
+
+prepare() {
+  mv -v "${_name}-$pkgver" "$pkgname-$pkgver"
+  cd "$pkgname-$pkgver"
+  # we do not care about pytest options
+  sed -e '/addopts/d' -i pyproject.toml
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  python setup.py build
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  export PYTHONPATH="build/lib:${PYTHONPATH}"
+  pytest -v
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  python setup.py install --optimize=1 --root="${pkgdir}"
+  install -vDm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -vDm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}



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

2021-09-15 Thread David Runge via arch-commits
Date: Wednesday, September 15, 2021 @ 21:04:57
  Author: dvzrv
Revision: 1016086

archrelease: copy trunk to community-x86_64

Added:
  mosquitto/repos/community-x86_64/PKGBUILD
(from rev 1016085, mosquitto/trunk/PKGBUILD)
  mosquitto/repos/community-x86_64/mosquitto.service
(from rev 1016085, mosquitto/trunk/mosquitto.service)
  mosquitto/repos/community-x86_64/sysusers_mosquitto.conf
(from rev 1016085, mosquitto/trunk/sysusers_mosquitto.conf)
Deleted:
  mosquitto/repos/community-x86_64/PKGBUILD
  mosquitto/repos/community-x86_64/mosquitto.service
  mosquitto/repos/community-x86_64/sysusers_mosquitto.conf

-+
 PKGBUILD|   96 +++---
 mosquitto.service   |   36 -
 sysusers_mosquitto.conf |2 
 3 files changed, 67 insertions(+), 67 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-09-15 21:04:46 UTC (rev 1016085)
+++ PKGBUILD2021-09-15 21:04:57 UTC (rev 1016086)
@@ -1,48 +0,0 @@
-# Maintainer: Jelle van der Waa 
-# Contributor: Radek Podgorny 
-# Contributor: Dan Anderson 
-
-pkgname=mosquitto
-pkgver=2.0.11
-pkgrel=1
-pkgdesc="An Open Source MQTT Broker"
-arch=('x86_64')
-url="https://mosquitto.org/;
-depends=('openssl' 'c-ares' 'util-linux-libs' 'cjson')
-makedepends=('docbook-xsl' 'c-ares' 'libwebsockets')
-license=('BSD')
-source=(https://mosquitto.org/files/source/mosquitto-$pkgver.tar.gz{,.asc}
-"$pkgname.service"
-"sysusers_mosquitto.conf")
-backup=("etc/$pkgname/$pkgname.conf")
-sha512sums=('d0c7c52cb76c4711e54f841217529326d682c4decfc7a1bc96d872904e68df444ca3918fab7ba041b62f7b5420c89c631227b69a8eec51fd2e2dd480d8244710'
-'SKIP'
-
'7dd86bb454e6df45e609fc3cb53d3cae8cc1c36d459b1e23be9ab10c9770c7a406fbd34e47703b0db3056f4bc8550994666b8a398d4506f786bf274e4618b7e9'
-
'21848b890c2db258138795ec21a009e022b6a8369217eb31939f976ad434229dd9f61d33e8109ade7bc001e8668e9d42b59c1ab079753860417961e102356f0e')
-validpgpkeys=('A0D6EEA1DCAE49A635A3B2F0779B22DFB3E717B7')
-
-prepare() {
-  cd "$pkgname-$pkgver"
-  # FIX upstream by making SBINDIR=foo or use CMAKE
-  sed -i 's|/sbin|/bin|g' src/Makefile
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-  make WITH_WEBSOCKETS=yes
-}
-
-package() {
-  depends+=('libwebsockets.so')
-  cd "$pkgname-$pkgver"
-
-  make prefix=/usr DESTDIR="$pkgdir/" install
-
-  # Shipped in git.
-  install -Dm644 "$srcdir/$pkgname.service" 
"$pkgdir/usr/lib/systemd/system/$pkgname.service"
-  install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-
-  mv "$pkgdir/etc/$pkgname/$pkgname.conf.example" 
"$pkgdir/etc/$pkgname/$pkgname.conf"
-
-  install -D -m644 "${srcdir}"/sysusers_mosquitto.conf 
"${pkgdir}"/usr/lib/sysusers.d/mosquitto.conf
-}

Copied: mosquitto/repos/community-x86_64/PKGBUILD (from rev 1016085, 
mosquitto/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-09-15 21:04:57 UTC (rev 1016086)
@@ -0,0 +1,48 @@
+# Maintainer: Jelle van der Waa 
+# Contributor: Radek Podgorny 
+# Contributor: Dan Anderson 
+
+pkgname=mosquitto
+pkgver=2.0.12
+pkgrel=1
+pkgdesc="An Open Source MQTT Broker"
+arch=('x86_64')
+url="https://mosquitto.org/;
+depends=('openssl' 'c-ares' 'util-linux-libs' 'cjson')
+makedepends=('docbook-xsl' 'c-ares' 'libwebsockets')
+license=('BSD')
+source=(https://mosquitto.org/files/source/mosquitto-$pkgver.tar.gz{,.asc}
+"$pkgname.service"
+"sysusers_mosquitto.conf")
+backup=("etc/$pkgname/$pkgname.conf")
+sha512sums=('acf80980f124073fd2fdd99981bde840654fb40a6b6f1d6ef483e35880b45d029cfa9390a98753de6476f4ade068266cb4c6e3c753a0362c0309a5745ac4ebab'
+'SKIP'
+
'7dd86bb454e6df45e609fc3cb53d3cae8cc1c36d459b1e23be9ab10c9770c7a406fbd34e47703b0db3056f4bc8550994666b8a398d4506f786bf274e4618b7e9'
+
'21848b890c2db258138795ec21a009e022b6a8369217eb31939f976ad434229dd9f61d33e8109ade7bc001e8668e9d42b59c1ab079753860417961e102356f0e')
+validpgpkeys=('A0D6EEA1DCAE49A635A3B2F0779B22DFB3E717B7')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+  # FIX upstream by making SBINDIR=foo or use CMAKE
+  sed -i 's|/sbin|/bin|g' src/Makefile
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  make WITH_WEBSOCKETS=yes
+}
+
+package() {
+  depends+=('libwebsockets.so')
+  cd "$pkgname-$pkgver"
+
+  make prefix=/usr DESTDIR="$pkgdir/" install
+
+  # Shipped in git.
+  install -Dm644 "$srcdir/$pkgname.service" 
"$pkgdir/usr/lib/systemd/system/$pkgname.service"
+  install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+  mv "$pkgdir/etc/$pkgname/$pkgname.conf.example" 
"$pkgdir/etc/$pkgname/$pkgname.conf"
+
+  install -D -m644 "${srcdir}"/sysusers_mosquitto.conf 
"${pkgdir}"/usr/lib/sysusers.d/mosquitto.conf
+}

Deleted: mosquitto.service

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

2021-09-15 Thread David Runge via arch-commits
Date: Wednesday, September 15, 2021 @ 21:04:46
  Author: dvzrv
Revision: 1016085

upgpkg: mosquitto 2.0.12-1: Upgrade to 2.0.12.

Modified:
  mosquitto/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-15 21:02:40 UTC (rev 1016084)
+++ PKGBUILD2021-09-15 21:04:46 UTC (rev 1016085)
@@ -3,7 +3,7 @@
 # Contributor: Dan Anderson 
 
 pkgname=mosquitto
-pkgver=2.0.11
+pkgver=2.0.12
 pkgrel=1
 pkgdesc="An Open Source MQTT Broker"
 arch=('x86_64')
@@ -15,7 +15,7 @@
 "$pkgname.service"
 "sysusers_mosquitto.conf")
 backup=("etc/$pkgname/$pkgname.conf")
-sha512sums=('d0c7c52cb76c4711e54f841217529326d682c4decfc7a1bc96d872904e68df444ca3918fab7ba041b62f7b5420c89c631227b69a8eec51fd2e2dd480d8244710'
+sha512sums=('acf80980f124073fd2fdd99981bde840654fb40a6b6f1d6ef483e35880b45d029cfa9390a98753de6476f4ade068266cb4c6e3c753a0362c0309a5745ac4ebab'
 'SKIP'
 
'7dd86bb454e6df45e609fc3cb53d3cae8cc1c36d459b1e23be9ab10c9770c7a406fbd34e47703b0db3056f4bc8550994666b8a398d4506f786bf274e4618b7e9'
 
'21848b890c2db258138795ec21a009e022b6a8369217eb31939f976ad434229dd9f61d33e8109ade7bc001e8668e9d42b59c1ab079753860417961e102356f0e')



[arch-commits] Commit in (4 files)

2021-09-15 Thread David Runge via arch-commits
Date: Wednesday, September 15, 2021 @ 21:02:40
  Author: dvzrv
Revision: 1016084

Add python-ansible-compat 0.5.0 as new dependency for molecule-{docker,podman}.

Added:
  python-ansible-compat/
  python-ansible-compat/repos/
  python-ansible-compat/trunk/
  python-ansible-compat/trunk/PKGBUILD

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

Added: python-ansible-compat/trunk/PKGBUILD
===
--- python-ansible-compat/trunk/PKGBUILD(rev 0)
+++ python-ansible-compat/trunk/PKGBUILD2021-09-15 21:02:40 UTC (rev 
1016084)
@@ -0,0 +1,41 @@
+# Maintainer: David Runge 
+
+_name=ansible-compat
+pkgname=python-ansible-compat
+pkgver=0.5.0
+pkgrel=1
+pkgdesc="Functions that help interacting with various versions of Ansible"
+arch=('any')
+url="https://github.com/ansible-community/ansible-compat;
+license=('MIT')
+depends=('python-subprocess-tee' 'python-yaml')
+makedepends=('python-setuptools-scm' 'python-setuptools-scm-git-archive')
+checkdepends=('ansible' 'python-flaky' 'python-pytest' 'python-pytest-mock')
+source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz;)
+sha256sums=('0730fbbb32710d19f4244a4cabad9c6b33b4b92ddf72aee353484e17543405f5')
+b2sums=('468dbcf20865225c76896dd8aad6f4b9a749b7a45d661484f89e2eaab4416b29f2e0ea0477b86ea52193165cd23180a79ebd5adac571e0b7d659096e84c27bcb')
+
+prepare() {
+  mv -v "${_name}-$pkgver" "$pkgname-$pkgver"
+  cd "$pkgname-$pkgver"
+  # we do not care about pytest options
+  sed -e '/addopts/d' -i pyproject.toml
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  python setup.py build
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  export PYTHONPATH="build/lib:${PYTHONPATH}"
+  pytest -v
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  python setup.py install --optimize=1 --root="${pkgdir}"
+  install -vDm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -vDm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}



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

2021-09-15 Thread Felix Yan via arch-commits
Date: Wednesday, September 15, 2021 @ 21:00:36
  Author: felixonmars
Revision: 1016083

archrelease: copy trunk to community-x86_64

Added:
  clash/repos/community-x86_64/PKGBUILD
(from rev 1016082, clash/trunk/PKGBUILD)
  clash/repos/community-x86_64/clash@.service
(from rev 1016082, clash/trunk/clash@.service)
  clash/repos/community-x86_64/clash_user.service
(from rev 1016082, clash/trunk/clash_user.service)
Deleted:
  clash/repos/community-x86_64/PKGBUILD
  clash/repos/community-x86_64/clash@.service
  clash/repos/community-x86_64/clash_user.service

+
 PKGBUILD   |   86 +--
 clash@.service |   24 +++---
 clash_user.service |   22 ++---
 3 files changed, 66 insertions(+), 66 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-09-15 21:00:21 UTC (rev 1016082)
+++ PKGBUILD2021-09-15 21:00:36 UTC (rev 1016083)
@@ -1,43 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Ariel AxionL 
-# Contributor: Luke Yue 
-
-pkgname=clash
-pkgver=1.7.0
-pkgrel=1
-pkgdesc="A rule based proxy in Go"
-arch=('x86_64')
-url="https://github.com/Dreamacro/clash;
-license=('GPL3')
-makedepends=('go' 'git')
-depends=('glibc')
-source=("clash@.service"
-"clash_user.service"
-
"${pkgname}-${pkgver}.tar.gz::https://github.com/Dreamacro/clash/archive/v${pkgver}.tar.gz;)
-sha512sums=('5b53faea10bba16df98a74fcbffebb6c8b7f8c238999a147bb848b2c30732688813915fd6bc32f44ec6f90024ad29dbde059e70760c91ccea198dd05da52d077'
-
'3ae61e1c6f0213ea8c3113c62f27c704f04f657cda8c726c0e487194dd5c1ce36e448f6e22b61aeef65f4a1910a2df62a3798f0cba9bae10c8e80a7cb1cfb7b3'
-
'b3de7c2685fac59403bdd3bfcd2c9291a7dad6c9caa93780e3350cdb6b64d4e596358087d2b9819b1ae77ba37d7ce132be5e8f99f552edb56308c559379f8a8c')
-
-build() {
-export CGO_CPPFLAGS="${CPPFLAGS}"
-export CGO_CFLAGS="${CFLAGS}"
-export CGO_CXXFLAGS="${CXXFLAGS}"
-export CGO_LDFLAGS="${LDFLAGS}"
-export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
-
-cd "${pkgname}-${pkgver}"
-go build -trimpath -ldflags "-X 
github.com/Dreamacro/clash/constant.Version=${pkgver}" -mod=readonly
-}
-
-check() {
-cd "${pkgname}-${pkgver}"
-go test github.com/Dreamacro/clash/...
-}
-
-package() {
-cd "${srcdir}/${pkgname}-${pkgver}"
-install -Dm755 "clash" "${pkgdir}/usr/bin/clash"
-install -Dm644 "LICENSE" "${pkgdir}/usr/share/licenses/clash/LICENSE"
-install -Dm644 "${srcdir}/clash@.service" 
"${pkgdir}/usr/lib/systemd/system/clash@.service"
-install -Dm644 "${srcdir}/clash_user.service" 
"${pkgdir}/usr/lib/systemd/user/clash.service"
-}

Copied: clash/repos/community-x86_64/PKGBUILD (from rev 1016082, 
clash/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-09-15 21:00:36 UTC (rev 1016083)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+# Contributor: Ariel AxionL 
+# Contributor: Luke Yue 
+
+pkgname=clash
+pkgver=1.7.1
+pkgrel=1
+pkgdesc="A rule based proxy in Go"
+arch=('x86_64')
+url="https://github.com/Dreamacro/clash;
+license=('GPL3')
+makedepends=('go' 'git')
+depends=('glibc')
+source=("clash@.service"
+"clash_user.service"
+
"${pkgname}-${pkgver}.tar.gz::https://github.com/Dreamacro/clash/archive/v${pkgver}.tar.gz;)
+sha512sums=('5b53faea10bba16df98a74fcbffebb6c8b7f8c238999a147bb848b2c30732688813915fd6bc32f44ec6f90024ad29dbde059e70760c91ccea198dd05da52d077'
+
'3ae61e1c6f0213ea8c3113c62f27c704f04f657cda8c726c0e487194dd5c1ce36e448f6e22b61aeef65f4a1910a2df62a3798f0cba9bae10c8e80a7cb1cfb7b3'
+
'ffad6c6b75974666df46a316567e966bddd59961c8b5d325b6e1b4f0d8bf87f7e78d3ea63135e8d615978de3bd47255f55bf156f5d0c46b5ee36a36426313683')
+
+build() {
+export CGO_CPPFLAGS="${CPPFLAGS}"
+export CGO_CFLAGS="${CFLAGS}"
+export CGO_CXXFLAGS="${CXXFLAGS}"
+export CGO_LDFLAGS="${LDFLAGS}"
+export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
+
+cd "${pkgname}-${pkgver}"
+go build -trimpath -ldflags "-X 
github.com/Dreamacro/clash/constant.Version=${pkgver}" -mod=readonly
+}
+
+check() {
+cd "${pkgname}-${pkgver}"
+go test github.com/Dreamacro/clash/...
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+install -Dm755 "clash" "${pkgdir}/usr/bin/clash"
+install -Dm644 "LICENSE" "${pkgdir}/usr/share/licenses/clash/LICENSE"
+install -Dm644 "${srcdir}/clash@.service" 
"${pkgdir}/usr/lib/systemd/system/clash@.service"
+install -Dm644 "${srcdir}/clash_user.service" 
"${pkgdir}/usr/lib/systemd/user/clash.service"
+}

Deleted: clash@.service
===
--- clash@.service  2021-09-15 21:00:21 UTC (rev 1016082)
+++ clash@.service  2021-09-15 21:00:36 UTC (rev 1016083)
@@ -1,12 +0,0 @@

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

2021-09-15 Thread Felix Yan via arch-commits
Date: Wednesday, September 15, 2021 @ 21:00:21
  Author: felixonmars
Revision: 1016082

upgpkg: clash 1.7.1-1

Modified:
  clash/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-15 20:51:33 UTC (rev 1016081)
+++ PKGBUILD2021-09-15 21:00:21 UTC (rev 1016082)
@@ -3,7 +3,7 @@
 # Contributor: Luke Yue 
 
 pkgname=clash
-pkgver=1.7.0
+pkgver=1.7.1
 pkgrel=1
 pkgdesc="A rule based proxy in Go"
 arch=('x86_64')
@@ -16,7 +16,7 @@
 
"${pkgname}-${pkgver}.tar.gz::https://github.com/Dreamacro/clash/archive/v${pkgver}.tar.gz;)
 
sha512sums=('5b53faea10bba16df98a74fcbffebb6c8b7f8c238999a147bb848b2c30732688813915fd6bc32f44ec6f90024ad29dbde059e70760c91ccea198dd05da52d077'
 
'3ae61e1c6f0213ea8c3113c62f27c704f04f657cda8c726c0e487194dd5c1ce36e448f6e22b61aeef65f4a1910a2df62a3798f0cba9bae10c8e80a7cb1cfb7b3'
-
'b3de7c2685fac59403bdd3bfcd2c9291a7dad6c9caa93780e3350cdb6b64d4e596358087d2b9819b1ae77ba37d7ce132be5e8f99f552edb56308c559379f8a8c')
+
'ffad6c6b75974666df46a316567e966bddd59961c8b5d325b6e1b4f0d8bf87f7e78d3ea63135e8d615978de3bd47255f55bf156f5d0c46b5ee36a36426313683')
 
 build() {
 export CGO_CPPFLAGS="${CPPFLAGS}"



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

2021-09-15 Thread David Runge via arch-commits
Date: Wednesday, September 15, 2021 @ 20:51:33
  Author: dvzrv
Revision: 1016081

archrelease: copy trunk to community-any

Added:
  python-pytest-mock/repos/community-any/PKGBUILD
(from rev 1016080, python-pytest-mock/trunk/PKGBUILD)
Deleted:
  python-pytest-mock/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-09-15 20:51:25 UTC (rev 1016080)
+++ PKGBUILD2021-09-15 20:51:33 UTC (rev 1016081)
@@ -1,33 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=python-pytest-mock
-pkgver=3.1.1
-pkgrel=1
-pkgdesc="Thin-wrapper around the mock package for easier use with py.test"
-arch=('any')
-license=('LGPL3')
-url="https://github.com/pytest-dev/pytest-mock/;
-depends=('python-pytest')
-makedepends=('python-setuptools-scm')
-# TODO: figure out why they fail
-#checkdepends=('python-pytest-asyncio')
-source=("https://github.com/pytest-dev/pytest-mock/archive/v$pkgver/$pkgname-$pkgver.tar.gz;)
-sha512sums=('341ff1251b60a9f61f46f6ee5658337beee4ba903c7fc6b6ac9d1d6369316d70b25ce14fa57e928110bd42b9d0872cd34e5db47d51af4e2291580ac0f5c874ed')
-
-export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
-
-build() {
-  cd pytest-mock-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd pytest-mock-$pkgver
-  python setup.py egg_info
-  PYTHONPATH="$PWD:$PWD/src" pytest
-}
-
-package() {
-  cd pytest-mock-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-}

Copied: python-pytest-mock/repos/community-any/PKGBUILD (from rev 1016080, 
python-pytest-mock/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-09-15 20:51:33 UTC (rev 1016081)
@@ -0,0 +1,41 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-pytest-mock
+pkgver=3.6.1
+pkgrel=1
+pkgdesc="Thin-wrapper around the mock package for easier use with py.test"
+arch=('any')
+license=('LGPL3')
+url="https://github.com/pytest-dev/pytest-mock/;
+depends=('python-pytest')
+makedepends=('python-setuptools-scm')
+checkdepends=('python-pytest-asyncio')
+source=("https://github.com/pytest-dev/pytest-mock/archive/v$pkgver/$pkgname-$pkgver.tar.gz;)
+sha512sums=('0a227799af85e4703bef32cf7922573a69ec84fbe35b502b5b96a660a8baa42b9fb1ff8d93115461d23af0c1b18c45cdc67e4695a31713c6553ffc73053448ad')
+
+build() {
+  cd pytest-mock-$pkgver
+  export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
+  python setup.py build
+}
+
+check() {
+  cd pytest-mock-$pkgver
+  python setup.py egg_info
+  export PYTHONPATH="src:${PYTHONPATH}"
+  # disable all tests that require the plugin to be installed
+  pytest -v --assert=plain \
+-k "not test_used_with_session_scope \
+and not test_used_with_package_scope \
+and not test_used_with_module_scope \
+and not test_used_with_class_scope \
+and not test_monkeypatch_ini \
+and not test_monkeypatch_native \
+and not test_standalone_mock \
+and not test_plain_stopall"
+}
+
+package() {
+  cd pytest-mock-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+}



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

2021-09-15 Thread David Runge via arch-commits
Date: Wednesday, September 15, 2021 @ 20:51:25
  Author: dvzrv
Revision: 1016080

upgpkg: python-pytest-mock 3.6.1-1: Upgrade to 3.6.1.

Run all tests and disable those that seemingly require the plugin to be 
installed system-wide.

Modified:
  python-pytest-mock/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-15 20:42:58 UTC (rev 1016079)
+++ PKGBUILD2021-09-15 20:51:25 UTC (rev 1016080)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=python-pytest-mock
-pkgver=3.1.1
+pkgver=3.6.1
 pkgrel=1
 pkgdesc="Thin-wrapper around the mock package for easier use with py.test"
 arch=('any')
@@ -9,15 +9,13 @@
 url="https://github.com/pytest-dev/pytest-mock/;
 depends=('python-pytest')
 makedepends=('python-setuptools-scm')
-# TODO: figure out why they fail
-#checkdepends=('python-pytest-asyncio')
+checkdepends=('python-pytest-asyncio')
 
source=("https://github.com/pytest-dev/pytest-mock/archive/v$pkgver/$pkgname-$pkgver.tar.gz;)
-sha512sums=('341ff1251b60a9f61f46f6ee5658337beee4ba903c7fc6b6ac9d1d6369316d70b25ce14fa57e928110bd42b9d0872cd34e5db47d51af4e2291580ac0f5c874ed')
+sha512sums=('0a227799af85e4703bef32cf7922573a69ec84fbe35b502b5b96a660a8baa42b9fb1ff8d93115461d23af0c1b18c45cdc67e4695a31713c6553ffc73053448ad')
 
-export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
-
 build() {
   cd pytest-mock-$pkgver
+  export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
   python setup.py build
 }
 
@@ -24,7 +22,17 @@
 check() {
   cd pytest-mock-$pkgver
   python setup.py egg_info
-  PYTHONPATH="$PWD:$PWD/src" pytest
+  export PYTHONPATH="src:${PYTHONPATH}"
+  # disable all tests that require the plugin to be installed
+  pytest -v --assert=plain \
+-k "not test_used_with_session_scope \
+and not test_used_with_package_scope \
+and not test_used_with_module_scope \
+and not test_used_with_class_scope \
+and not test_monkeypatch_ini \
+and not test_monkeypatch_native \
+and not test_standalone_mock \
+and not test_plain_stopall"
 }
 
 package() {



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

2021-09-15 Thread Jelle van der Waa via arch-commits
Date: Wednesday, September 15, 2021 @ 20:42:58
  Author: jelle
Revision: 1016079

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-09-15 20:42:49 UTC (rev 1016078)
+++ PKGBUILD2021-09-15 20:42:58 UTC (rev 1016079)
@@ -1,45 +0,0 @@
-# Maintainer: Eli Schwartz 
-# Maintainer: Jelle van der Waa 
-# Contributor: Alexander F Rødseth 
-# Contributor: Chris Brannon 
-# Contributor: Douglas Soares de Andrade
-# Contributor: Roberto Alsina 
-
-_pkgname=mechanize
-pkgname=python-mechanize
-pkgver=0.4.5
-pkgrel=4
-epoch=1
-pkgdesc='Stateful programmatic web browsing in Python'
-arch=('any')
-url="https://github.com/python-mechanize/mechanize;
-license=('BSD')
-depends=('python-html5lib')
-makedepends=('python-setuptools')
-checkdepends=('python-zope-interface' 'python-twisted')
-optdepends=('python-html5-parser: faster parsing of HTML')
-source=("https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/${_pkgname}/${_pkgname}-${pkgver}.tar.gz"{,.asc})
-sha256sums=('6355c11141f6d4b54a17fc2106944806b5db2711e60b120d15d83db438c333fd'
-'SKIP')
-b2sums=('67951ad8295a32799768b3719525d45d502bc773c6f2a5e762e3dae97f309c8c265a2cb3efde95c9e8cb65e89dee6ad6ad8585685baa4e9ff1acfd146f115f6f'
-'SKIP')
-validpgpkeys=('3CE1780F78DD88DF45194FD706BC317B515ACE7C') # Kovid Goyal (New 
longer key) 
-
-build() {
-  cd "mechanize-$pkgver"
-
-  python setup.py build
-}
-
-check() {
-  cd "mechanize-$pkgver"
-
-  python setup.py test
-}
-
-package() {
-  cd "mechanize-$pkgver"
-
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: python-mechanize/repos/community-any/PKGBUILD (from rev 1016078, 
python-mechanize/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-09-15 20:42:58 UTC (rev 1016079)
@@ -0,0 +1,45 @@
+# Maintainer: Eli Schwartz 
+# Maintainer: Jelle van der Waa 
+# Contributor: Alexander F Rødseth 
+# Contributor: Chris Brannon 
+# Contributor: Douglas Soares de Andrade
+# Contributor: Roberto Alsina 
+
+_pkgname=mechanize
+pkgname=python-mechanize
+pkgver=0.4.6
+pkgrel=1
+epoch=1
+pkgdesc='Stateful programmatic web browsing in Python'
+arch=('any')
+url="https://github.com/python-mechanize/mechanize;
+license=('BSD')
+depends=('python-html5lib')
+makedepends=('python-setuptools')
+checkdepends=('python-zope-interface' 'python-twisted')
+optdepends=('python-html5-parser: faster parsing of HTML')
+source=("https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/${_pkgname}/${_pkgname}-${pkgver}.tar.gz"{,.asc})
+sha256sums=('d16cea241253b5eb6380bf8a46627cad91d1f2c3f93a33279a31ce276d6c5d44'
+'SKIP')
+b2sums=('0adc7e0bcbef93051412d0d22e9f426984e197791b43b007087d70d3b15d4fce2f4868e8ad520e8621d35890d6454bd9bfc0910dc5af3d640e2620de4f536e16'
+'SKIP')
+validpgpkeys=('3CE1780F78DD88DF45194FD706BC317B515ACE7C') # Kovid Goyal (New 
longer key) 
+
+build() {
+  cd "mechanize-$pkgver"
+
+  python setup.py build
+}
+
+check() {
+  cd "mechanize-$pkgver"
+
+  python setup.py test
+}
+
+package() {
+  cd "mechanize-$pkgver"
+
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}



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

2021-09-15 Thread Jelle van der Waa via arch-commits
Date: Wednesday, September 15, 2021 @ 20:42:49
  Author: jelle
Revision: 1016078

upgpkg: python-mechanize 1:0.4.6-1

Modified:
  python-mechanize/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-15 20:38:06 UTC (rev 1016077)
+++ PKGBUILD2021-09-15 20:42:49 UTC (rev 1016078)
@@ -7,8 +7,8 @@
 
 _pkgname=mechanize
 pkgname=python-mechanize
-pkgver=0.4.5
-pkgrel=4
+pkgver=0.4.6
+pkgrel=1
 epoch=1
 pkgdesc='Stateful programmatic web browsing in Python'
 arch=('any')
@@ -19,9 +19,9 @@
 checkdepends=('python-zope-interface' 'python-twisted')
 optdepends=('python-html5-parser: faster parsing of HTML')
 
source=("https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/${_pkgname}/${_pkgname}-${pkgver}.tar.gz"{,.asc})
-sha256sums=('6355c11141f6d4b54a17fc2106944806b5db2711e60b120d15d83db438c333fd'
+sha256sums=('d16cea241253b5eb6380bf8a46627cad91d1f2c3f93a33279a31ce276d6c5d44'
 'SKIP')
-b2sums=('67951ad8295a32799768b3719525d45d502bc773c6f2a5e762e3dae97f309c8c265a2cb3efde95c9e8cb65e89dee6ad6ad8585685baa4e9ff1acfd146f115f6f'
+b2sums=('0adc7e0bcbef93051412d0d22e9f426984e197791b43b007087d70d3b15d4fce2f4868e8ad520e8621d35890d6454bd9bfc0910dc5af3d640e2620de4f536e16'
 'SKIP')
 validpgpkeys=('3CE1780F78DD88DF45194FD706BC317B515ACE7C') # Kovid Goyal (New 
longer key) 
 



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

2021-09-15 Thread Felix Yan via arch-commits
Date: Wednesday, September 15, 2021 @ 20:38:06
  Author: felixonmars
Revision: 1016077

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-09-15 20:37:55 UTC (rev 1016076)
+++ PKGBUILD2021-09-15 20:38:06 UTC (rev 1016077)
@@ -1,45 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=python-openmdao
-pkgver=3.11.0
-pkgrel=1
-pkgdesc="An open-source high-performance computing platform"
-url="https://github.com/OpenMDAO/OpenMDAO;
-license=('Apache')
-arch=('any')
-depends=('python-networkx' 'python-numpy' 'python-pydoe2' 'python-pyparsing' 
'python-scipy'
- 'python-requests')
-optdepends=('python-matplotlib: for docs'
-'python-numpydoc: for docs'
-'python-redbaron: for docs'
-'python-sphinx: for docs'
-'python-tabulate: for docs and notebooks'
-'ipython: for docs and notebooks'
-'python-notebook: for notebooks'
-'python-bokeh: for visualization'
-'python-colorama: for visualization')
-checkdepends=('python-mpi4py' 'python-parameterized' 'python-numpydoc' 
'python-pycodestyle'
-  'python-pydocstyle' 'python-testflo' 'python-websockets' 
'python-pyppeteer'
-  'python-aiounittest')
-source=("https://github.com/OpenMDAO/OpenMDAO/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
-sha512sums=('d7b8f96a94898b7dba2d9faa63817aa38d888313de4fb052be8c25ed4f9c4f99797746ad19c06682cea433ead067b21d949471633293e842f7fc8ab0b68da5a0')
-
-prepare() {
-  cd OpenMDAO-$pkgver
-  sed -e 's/==/>=/' -i setup.py
-}
-
-build() {
-  cd OpenMDAO-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd OpenMDAO-$pkgver
-  PYTHONPATH="$PWD/build/lib" testflo -n 16 --timeout=120 openmdao || echo 
"Tests failed"
-}
-
-package() {
-  cd OpenMDAO-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-}

Copied: python-openmdao/repos/community-any/PKGBUILD (from rev 1016076, 
python-openmdao/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-09-15 20:38:06 UTC (rev 1016077)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-openmdao
+pkgver=3.12.0
+pkgrel=1
+pkgdesc="An open-source high-performance computing platform"
+url="https://github.com/OpenMDAO/OpenMDAO;
+license=('Apache')
+arch=('any')
+depends=('python-networkx' 'python-numpy' 'python-pydoe2' 'python-pyparsing' 
'python-scipy'
+ 'python-requests')
+optdepends=('python-matplotlib: for docs'
+'python-numpydoc: for docs'
+'python-redbaron: for docs'
+'python-sphinx: for docs'
+'python-tabulate: for docs and notebooks'
+'ipython: for docs and notebooks'
+'python-notebook: for notebooks'
+'python-bokeh: for visualization'
+'python-colorama: for visualization')
+checkdepends=('python-mpi4py' 'python-parameterized' 'python-numpydoc' 
'python-pycodestyle'
+  'python-pydocstyle' 'python-testflo' 'python-websockets' 
'python-pyppeteer'
+  'python-aiounittest')
+source=("https://github.com/OpenMDAO/OpenMDAO/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
+sha512sums=('a3c3e0f8a35bb4cbdfe30d7b7013ee95fd605516af6b61c9eb52184cb15ea57dd8f8bb0be1f8083ddceae05c5697cc70977f60361bbeb5716d5020bed3483696')
+
+prepare() {
+  cd OpenMDAO-$pkgver
+  sed -e 's/==/>=/' -i setup.py
+}
+
+build() {
+  cd OpenMDAO-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd OpenMDAO-$pkgver
+  PYTHONPATH="$PWD/build/lib" testflo -n 16 --timeout=120 openmdao || echo 
"Tests failed"
+}
+
+package() {
+  cd OpenMDAO-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+}



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

2021-09-15 Thread Felix Yan via arch-commits
Date: Wednesday, September 15, 2021 @ 20:37:55
  Author: felixonmars
Revision: 1016076

upgpkg: python-openmdao 3.12.0-1

Modified:
  python-openmdao/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-15 20:19:48 UTC (rev 1016075)
+++ PKGBUILD2021-09-15 20:37:55 UTC (rev 1016076)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=python-openmdao
-pkgver=3.11.0
+pkgver=3.12.0
 pkgrel=1
 pkgdesc="An open-source high-performance computing platform"
 url="https://github.com/OpenMDAO/OpenMDAO;
@@ -22,7 +22,7 @@
   'python-pydocstyle' 'python-testflo' 'python-websockets' 
'python-pyppeteer'
   'python-aiounittest')
 
source=("https://github.com/OpenMDAO/OpenMDAO/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
-sha512sums=('d7b8f96a94898b7dba2d9faa63817aa38d888313de4fb052be8c25ed4f9c4f99797746ad19c06682cea433ead067b21d949471633293e842f7fc8ab0b68da5a0')
+sha512sums=('a3c3e0f8a35bb4cbdfe30d7b7013ee95fd605516af6b61c9eb52184cb15ea57dd8f8bb0be1f8083ddceae05c5697cc70977f60361bbeb5716d5020bed3483696')
 
 prepare() {
   cd OpenMDAO-$pkgver



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

2021-09-15 Thread Christian Hesse via arch-commits
Date: Wednesday, September 15, 2021 @ 20:27:25
  Author: eworm
Revision: 424061

archrelease: copy trunk to testing-x86_64

Added:
  curl/repos/testing-x86_64/PKGBUILD
(from rev 424060, curl/trunk/PKGBUILD)
Deleted:
  curl/repos/testing-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-09-15 20:27:23 UTC (rev 424060)
+++ PKGBUILD2021-09-15 20:27:25 UTC (rev 424061)
@@ -1,52 +0,0 @@
-# Maintainer: Dave Reisner 
-# Contributor: Angel Velasquez 
-# Contributor: Eric Belanger 
-# Contributor: Lucien Immink 
-# Contributor: Daniel J Griffiths 
-
-pkgname=curl
-pkgver=7.79.0
-pkgrel=1
-pkgdesc="An URL retrieval utility and library"
-arch=('x86_64')
-url="https://curl.haxx.se;
-license=('MIT')
-depends=('ca-certificates' 'krb5' 'libssh2' 'libssh2.so' 'openssl' 'zlib'
- 'libpsl' 'libpsl.so' 'libnghttp2' 'libidn2' 'libidn2.so' 'zstd')
-provides=('libcurl.so')
-source=("https://curl.haxx.se/download/$pkgname-$pkgver.tar.gz"{,.asc})
-sha512sums=('6529645774bd2687535cfaec5949281f305c2910da3bd4de22713ab370fde0d05c416579b46aef7eaaf5f73d882e96b8268b80b6802b978f9c54b0a837420dad'
-'SKIP')
-validpgpkeys=('27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2') # Daniel Stenberg
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  ./configure \
---prefix=/usr \
---mandir=/usr/share/man \
---disable-ldap \
---disable-ldaps \
---disable-manual \
---enable-ipv6 \
---enable-versioned-symbols \
---enable-threaded-resolver \
---with-gssapi \
---with-libssh2 \
---with-openssl \
---with-random=/dev/urandom \
---with-ca-bundle=/etc/ssl/certs/ca-certificates.crt
-
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-
-  make DESTDIR="$pkgdir" install
-  make DESTDIR="$pkgdir" install -C scripts
-
-  # license
-  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 COPYING
-}

Copied: curl/repos/testing-x86_64/PKGBUILD (from rev 424060, 
curl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-09-15 20:27:25 UTC (rev 424061)
@@ -0,0 +1,53 @@
+# Maintainer: Dave Reisner 
+# Contributor: Angel Velasquez 
+# Contributor: Eric Belanger 
+# Contributor: Lucien Immink 
+# Contributor: Daniel J Griffiths 
+
+pkgname=curl
+pkgver=7.79.0
+pkgrel=2
+pkgdesc="An URL retrieval utility and library"
+arch=('x86_64')
+url="https://curl.haxx.se;
+license=('MIT')
+depends=('ca-certificates' 'brotli' 'libbrotlidec.so' 'krb5' 
'libgssapi_krb5.so'
+ 'libidn2' 'libidn2.so' 'libnghttp2' 'libpsl' 'libpsl.so' 'libssh2' 
'libssh2.so'
+ 'openssl' 'zlib' 'zstd' 'libzstd.so')
+provides=('libcurl.so')
+source=("https://curl.haxx.se/download/$pkgname-$pkgver.tar.gz"{,.asc})
+sha512sums=('6529645774bd2687535cfaec5949281f305c2910da3bd4de22713ab370fde0d05c416579b46aef7eaaf5f73d882e96b8268b80b6802b978f9c54b0a837420dad'
+'SKIP')
+validpgpkeys=('27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2') # Daniel Stenberg
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure \
+--prefix=/usr \
+--mandir=/usr/share/man \
+--disable-ldap \
+--disable-ldaps \
+--disable-manual \
+--enable-ipv6 \
+--enable-versioned-symbols \
+--enable-threaded-resolver \
+--with-gssapi \
+--with-libssh2 \
+--with-openssl \
+--with-random=/dev/urandom \
+--with-ca-bundle=/etc/ssl/certs/ca-certificates.crt
+
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+  make DESTDIR="$pkgdir" install -C scripts
+
+  # license
+  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 COPYING
+}



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

2021-09-15 Thread Christian Hesse via arch-commits
Date: Wednesday, September 15, 2021 @ 20:27:23
  Author: eworm
Revision: 424060

upgpkg: curl 7.79.0-2: build with brotli...

... and update dependencies.

Modified:
  curl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-15 20:20:08 UTC (rev 424059)
+++ PKGBUILD2021-09-15 20:27:23 UTC (rev 424060)
@@ -6,13 +6,14 @@
 
 pkgname=curl
 pkgver=7.79.0
-pkgrel=1
+pkgrel=2
 pkgdesc="An URL retrieval utility and library"
 arch=('x86_64')
 url="https://curl.haxx.se;
 license=('MIT')
-depends=('ca-certificates' 'krb5' 'libssh2' 'libssh2.so' 'openssl' 'zlib'
- 'libpsl' 'libpsl.so' 'libnghttp2' 'libidn2' 'libidn2.so' 'zstd')
+depends=('ca-certificates' 'brotli' 'libbrotlidec.so' 'krb5' 
'libgssapi_krb5.so'
+ 'libidn2' 'libidn2.so' 'libnghttp2' 'libpsl' 'libpsl.so' 'libssh2' 
'libssh2.so'
+ 'openssl' 'zlib' 'zstd' 'libzstd.so')
 provides=('libcurl.so')
 source=("https://curl.haxx.se/download/$pkgname-$pkgver.tar.gz"{,.asc})
 
sha512sums=('6529645774bd2687535cfaec5949281f305c2910da3bd4de22713ab370fde0d05c416579b46aef7eaaf5f73d882e96b8268b80b6802b978f9c54b0a837420dad'



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

2021-09-15 Thread Felix Yan via arch-commits
Date: Wednesday, September 15, 2021 @ 20:20:08
  Author: felixonmars
Revision: 424059

archrelease: copy trunk to testing-x86_64

Added:
  java-openjfx/repos/testing-x86_64/
  java-openjfx/repos/testing-x86_64/PKGBUILD
(from rev 424058, java-openjfx/trunk/PKGBUILD)
  java-openjfx/repos/testing-x86_64/gradle.properties
(from rev 424058, java-openjfx/trunk/gradle.properties)
  java-openjfx/repos/testing-x86_64/java-openjfx-flags.patch
(from rev 424058, java-openjfx/trunk/java-openjfx-flags.patch)
  
java-openjfx/repos/testing-x86_64/java-openjfx-gstreamer-lite-gcc10-compat.patch
(from rev 424058, 
java-openjfx/trunk/java-openjfx-gstreamer-lite-gcc10-compat.patch)
  java-openjfx/repos/testing-x86_64/java-openjfx-no-xlocale.patch
(from rev 424058, java-openjfx/trunk/java-openjfx-no-xlocale.patch)

+
 PKGBUILD   |  130 
 gradle.properties  |3 
 java-openjfx-flags.patch   |  234 +++
 java-openjfx-gstreamer-lite-gcc10-compat.patch |   11 +
 java-openjfx-no-xlocale.patch  |   16 +
 5 files changed, 394 insertions(+)

Copied: java-openjfx/repos/testing-x86_64/PKGBUILD (from rev 424058, 
java-openjfx/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2021-09-15 20:20:08 UTC (rev 424059)
@@ -0,0 +1,130 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Maxime Gauduin 
+# Contributor: Guillaume Alaux 
+# Contributor: William Gathoye 
+# Contributor: Emanuel Couto 
+# Contributor: Richard Jackson 
+# Contributor: Tinx 
+# Contributor: Jens Kapitza 
+# Contributor: Olli 
+
+pkgbase=java-openjfx
+pkgname=(
+  java-openjfx
+  java-openjfx-doc
+  java-openjfx-src
+)
+_majorver=17
+_minorver=0
+_securityver=0
+_patchver=1
+_updatever=1
+pkgver=${_majorver}.${_minorver}.${_securityver}.${_patchver}.u${_updatever}
+#pkgver=${_majorver}.u${_updatever}
+pkgrel=1
+pkgdesc="Java OpenJFX ${_majorver} client application platform (open-source 
implementation of JavaFX)"
+arch=(x86_64)
+url=https://wiki.openjdk.java.net/display/OpenJFX/Main
+license=(custom)
+makedepends=(
+  alsa-lib
+  ant
+  cairo
+  cmake
+  ffmpeg
+  freetype2
+  gradle
+  gdk-pixbuf2
+  glib2
+  gperf
+  gtk2
+  gtk3
+  java-environment-openjdk=11
+  libgl
+  libx11
+  libxtst
+  pango
+  python
+  qt5-base
+  ruby
+  unzip
+  webkit2gtk
+  zip
+)
+source=(
+  
${pkgbase}-${pkgver//.u/+}::https://github.com/openjdk/jfx/archive/${pkgver//.u/+}/jfx-${pkgver//.u/+}.tar.gz
+  gradle.properties
+  java-openjfx-flags.patch
+  java-openjfx-no-xlocale.patch
+  java-openjfx-gstreamer-lite-gcc10-compat.patch
+)
+sha256sums=('7398a87b1c1b593a2610ef84dd8b0fc31fc9a87dc5185ea4d1ef71b560920a5d'
+'2622aa35d733cc69f4421f1cd053bf425e89f93141cb52c9f016a9b425fc0cb6'
+'26a11b7f9bdba382de16fea691d01de270e79b055f765f7475294dd69605604c'
+'220c63396561867a6d07ae81b6390160d8f91502587e4873998e3b7a83793a1c'
+'d7f9db86854b1cb8ab973c2ff255e51a637b9c24af30144182202d33f01a9434')
+
+prepare() {
+  cd jfx-${pkgver//.u/-}
+
+  ln -sf ../gradle.properties .
+  patch -Np1 -i ../java-openjfx-flags.patch
+  patch -Np1 -i ../java-openjfx-no-xlocale.patch
+  patch -Np1 -i ../java-openjfx-gstreamer-lite-gcc10-compat.patch
+  sed 's|, "-Werror"||g' -i buildSrc/linux.gradle
+}
+
+build() {
+  cd jfx-${pkgver//.u/-}
+
+  gradle zips
+}
+
+package_java-openjfx() {
+  depends=(
+alsa-lib
+cairo
+ffmpeg
+gdk-pixbuf2
+glib2
+gtk2
+gtk3
+java-runtime-openjdk=${_majorver}
+libavcodec.so
+libavformat.so
+libfreetype.so
+libgl
+libx11
+libxtst
+pango
+qt5-base
+ruby
+unzip
+webkit2gtk
+  )
+
+  cd jfx-${pkgver//.u/-}
+
+  install -dm 755  
"${pkgdir}"/usr/{lib/jvm/java-${_majorver}-openjdk,share/licenses}
+  cp -dr --no-preserve=ownership build/sdk/lib 
"${pkgdir}"/usr/lib/jvm/java-${_majorver}-openjdk/
+  cp -dr --no-preserve=ownership build/jmods 
"${pkgdir}"/usr/lib/jvm/java-${_majorver}-openjdk/
+  cp -dr --no-preserve=ownership build/sdk/legal 
"${pkgdir}"/usr/share/licenses/java-openjfx
+}
+
+package_java-openjfx-doc() {
+  cd jfx-${pkgver//.u/-}
+
+  install -dm 755 "${pkgdir}"/usr/share/{doc,licenses}
+  cp -dr --no-preserve=ownership build/javadoc 
"${pkgdir}"/usr/share/doc/java-openjfx
+  ln -s java-openjfx "${pkgdir}"/usr/share/licenses/java-openjfx-doc
+}
+
+package_java-openjfx-src() {
+  cd jfx-${pkgver//.u/-}
+
+  install -dm 755  
"${pkgdir}"/usr/{lib/jvm/java-${_majorver}-openjdk,share/licenses}
+  install -m 644 build/sdk/src.zip 
"${pkgdir}"/usr/lib/jvm/java-${_majorver}-openjdk/javafx-src.zip
+  ln -s java-openjfx "${pkgdir}"/usr/share/licenses/java-openjfx-src
+}
+
+# vim: ts=2 sw=2 et:

Copied: 

[arch-commits] Commit in java-openjfx/trunk (PKGBUILD java-openjfx-flags.patch)

2021-09-15 Thread Felix Yan via arch-commits
Date: Wednesday, September 15, 2021 @ 20:19:50
  Author: felixonmars
Revision: 424058

upgpkg: java-openjfx 17.0.0.1.u1-1

Modified:
  java-openjfx/trunk/PKGBUILD
  java-openjfx/trunk/java-openjfx-flags.patch

--+
 PKGBUILD |   20 +---
 java-openjfx-flags.patch |   28 ++--
 2 files changed, 27 insertions(+), 21 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-09-15 20:00:34 UTC (rev 424057)
+++ PKGBUILD2021-09-15 20:19:50 UTC (rev 424058)
@@ -14,12 +14,13 @@
   java-openjfx-doc
   java-openjfx-src
 )
-_majorver=16
+_majorver=17
 _minorver=0
 _securityver=0
-_updatever=8
-#pkgver=${_majorver}.${_minorver}.${_securityver}.u${_updatever}
-pkgver=${_majorver}.u${_updatever}
+_patchver=1
+_updatever=1
+pkgver=${_majorver}.${_minorver}.${_securityver}.${_patchver}.u${_updatever}
+#pkgver=${_majorver}.u${_updatever}
 pkgrel=1
 pkgdesc="Java OpenJFX ${_majorver} client application platform (open-source 
implementation of JavaFX)"
 arch=(x86_64)
@@ -53,15 +54,13 @@
 source=(
   
${pkgbase}-${pkgver//.u/+}::https://github.com/openjdk/jfx/archive/${pkgver//.u/+}/jfx-${pkgver//.u/+}.tar.gz
   gradle.properties
-  https://services.gradle.org/distributions/gradle-6.3-bin.zip
   java-openjfx-flags.patch
   java-openjfx-no-xlocale.patch
   java-openjfx-gstreamer-lite-gcc10-compat.patch
 )
-sha256sums=('0cde9b8ce0902c71810f904ff58f48daedd98d8c958fd6fbcb7c2a65877f411a'
+sha256sums=('7398a87b1c1b593a2610ef84dd8b0fc31fc9a87dc5185ea4d1ef71b560920a5d'
 '2622aa35d733cc69f4421f1cd053bf425e89f93141cb52c9f016a9b425fc0cb6'
-'038794feef1f4745c6347107b6726279d1c824f3fc634b60f86ace1e9fbd1768'
-'af52cd9fb252770b6886eef2720ca4b6c582f3719f8a28128c498681b457233c'
+'26a11b7f9bdba382de16fea691d01de270e79b055f765f7475294dd69605604c'
 '220c63396561867a6d07ae81b6390160d8f91502587e4873998e3b7a83793a1c'
 'd7f9db86854b1cb8ab973c2ff255e51a637b9c24af30144182202d33f01a9434')
 
@@ -78,7 +77,7 @@
 build() {
   cd jfx-${pkgver//.u/-}
 
-  ../gradle-6.3/bin/gradle zips
+  gradle zips
 }
 
 package_java-openjfx() {
@@ -108,7 +107,6 @@
 
   install -dm 755  
"${pkgdir}"/usr/{lib/jvm/java-${_majorver}-openjdk,share/licenses}
   cp -dr --no-preserve=ownership build/sdk/lib 
"${pkgdir}"/usr/lib/jvm/java-${_majorver}-openjdk/
-  rm "${pkgdir}"/usr/lib/jvm/java-${_majorver}-openjdk/lib/src.zip
   cp -dr --no-preserve=ownership build/jmods 
"${pkgdir}"/usr/lib/jvm/java-${_majorver}-openjdk/
   cp -dr --no-preserve=ownership build/sdk/legal 
"${pkgdir}"/usr/share/licenses/java-openjfx
 }
@@ -125,7 +123,7 @@
   cd jfx-${pkgver//.u/-}
 
   install -dm 755  
"${pkgdir}"/usr/{lib/jvm/java-${_majorver}-openjdk,share/licenses}
-  install -m 644 build/sdk/lib/src.zip 
"${pkgdir}"/usr/lib/jvm/java-${_majorver}-openjdk/javafx-src.zip
+  install -m 644 build/sdk/src.zip 
"${pkgdir}"/usr/lib/jvm/java-${_majorver}-openjdk/javafx-src.zip
   ln -s java-openjfx "${pkgdir}"/usr/share/licenses/java-openjfx-src
 }
 

Modified: java-openjfx-flags.patch
===
--- java-openjfx-flags.patch2021-09-15 20:00:34 UTC (rev 424057)
+++ java-openjfx-flags.patch2021-09-15 20:19:50 UTC (rev 424058)
@@ -37,8 +37,8 @@
  linkFlags += "-g"
 @@ -294,7 +299,7 @@ LINUX.iio.nativeSource = [
  LINUX.iio.compiler = compiler
- LINUX.iio.ccFlags = [ccFlags].flatten()
- LINUX.iio.linker = linker
+ LINUX.iio.ccFlags = [cFlags, "-fvisibility=hidden"].flatten()
+ LINUX.iio.linker = IS_STATIC_BUILD ? "ld" : linker
 -LINUX.iio.linkFlags = [linkFlags].flatten()
 +LINUX.iio.linkFlags = [linkFlags, "-ljpeg"].flatten()
  LINUX.iio.lib = "javafx_iio"
@@ -57,19 +57,23 @@
   -Wformat\
   -Wextra \
   -Wformat-security   \
-@@ -29,13 +29,8 @@ CFLAGS = -fPIC   \
+@@ -29,17 +29,13 @@ CFLAGS = -fPIC   \
   -DLINUX \
   -DGST_DISABLE_LOADSAVE  \
   -DGSTREAMER_LITE \
 - -ffunction-sections -fdata-sections
--
++ -ffunction-sections -fdata-sections \
++ ${CFLAGS}
+
+ ifneq ($(ARCH), aarch64)
+ CFLAGS += -msse2
+ endif
+
 -ifeq ($(BUILD_TYPE), Release)
 -CFLAGS += -Os
 -else
 -CFLAGS += -g -Wall
 -endif
-+ -ffunction-sections -fdata-sections \
-+ ${CFLAGS}
  
  PACKAGES_INCLUDES := $(shell pkg-config --cflags glib-2.0)
  PACKAGES_LIBS := $(shell pkg-config --libs glib-2.0 gobject-2.0)
@@ -101,12 +105,18 @@
   -Wformat\
   -Wextra \
   -Wformat-security   \
-@@ -30,14 +30,8 @@ CFLAGS = -fPIC   \
+@@ -30,18 +30,13 @@ CFLAGS = -fPIC   \
   -DGST_DISABLE_LOADSAVE  \
   -DGST_DISABLE_GST_DEBUG \
   -DGSTREAMER_LITE \
 - 

[arch-commits] Commit in pycharm-community-edition/trunk (PKGBUILD)

2021-09-15 Thread Orhun Parmaksiz via arch-commits
Date: Wednesday, September 15, 2021 @ 20:19:32
  Author: orhun
Revision: 1016074

upgpkg: pycharm-community-edition 2021.2.2-1: upstream release

Modified:
  pycharm-community-edition/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-15 19:42:53 UTC (rev 1016073)
+++ PKGBUILD2021-09-15 20:19:32 UTC (rev 1016074)
@@ -4,9 +4,9 @@
 # Contributor: David Keogh 
 
 pkgname=pycharm-community-edition
-pkgver=2021.2.1
-_build=212.5080.64
-_gitcommit=e4baf6c4f00cdbeb02492f13f6048d2c4a5e7a34
+pkgver=2021.2.2
+_build=212.5284.44
+_gitcommit=f3337ede11680b745f513943772150ee781a51c0
 pkgrel=1
 pkgdesc='Python IDE for Professional Developers'
 arch=(x86_64)



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

2021-09-15 Thread Levente Polyak via arch-commits
Date: Wednesday, September 15, 2021 @ 20:00:34
  Author: anthraxx
Revision: 424057

archrelease: copy trunk to extra-x86_64

Added:
  linux-hardened/repos/extra-x86_64/PKGBUILD
(from rev 424056, linux-hardened/trunk/PKGBUILD)
  linux-hardened/repos/extra-x86_64/config
(from rev 424056, linux-hardened/trunk/config)
Deleted:
  linux-hardened/repos/extra-x86_64/PKGBUILD
  linux-hardened/repos/extra-x86_64/config

--+
 PKGBUILD |  412 -
 config   |20686 ++---
 2 files changed, 10549 insertions(+), 10549 deletions(-)

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


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

2021-09-15 Thread Levente Polyak via arch-commits
Date: Wednesday, September 15, 2021 @ 20:00:29
  Author: anthraxx
Revision: 424056

upgpkg: linux-hardened 5.13.17.hardened1-1

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

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-15 19:46:05 UTC (rev 424055)
+++ PKGBUILD2021-09-15 20:00:29 UTC (rev 424056)
@@ -4,7 +4,7 @@
 # Contributor: Thomas Baechler 
 
 pkgbase=linux-hardened
-pkgver=5.13.16.hardened1
+pkgver=5.13.17.hardened1
 pkgrel=1
 pkgdesc='Security-Hardened Linux'
 url='https://github.com/anthraxx/linux-hardened'
@@ -27,11 +27,11 @@
   '647F28654894E3BD457199BE38DBBDC86092693E'  # Greg Kroah-Hartman
   'E240B57E2C4630BA768E2F26FC1B547C8D8172C8'  # Levente Polyak
 )
-sha256sums=('495989174c16ae15817798f9e0722dfd782d7d2c78283b519ecc60f2d87e51d2'
+sha256sums=('4ae70d23ed53bad6d53a3a159d235b8696595466f221986025f4a0ce111b0a1b'
 'SKIP'
-'40b73aa242a5627fde575052de390929bb09ad797407858012155043fa5b6862'
+'e20a684952c7e29a67f38908e556a00a55f62d9f28abc6de8d77096f4761f8a2'
 'SKIP'
-'b1a60f72ae3bfd71ae848fc0cbaaff326ebc88d0b200c7906c953cf5a2418e91')
+'5862830ed0bd4d771b28eeff3738172ef4740108a0b8e064a80fb577fccd94af')
 
 export KBUILD_BUILD_HOST=archlinux
 export KBUILD_BUILD_USER=$pkgbase

Modified: config
===
--- config  2021-09-15 19:46:05 UTC (rev 424055)
+++ config  2021-09-15 20:00:29 UTC (rev 424056)
@@ -1,6 +1,6 @@
 #
 # Automatically generated file; DO NOT EDIT.
-# Linux/x86 5.13.16-hardened1 Kernel Configuration
+# Linux/x86 5.13.17-hardened1 Kernel Configuration
 #
 CONFIG_CC_VERSION_TEXT="gcc (GCC) 11.1.0"
 CONFIG_CC_IS_GCC=y



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

2021-09-15 Thread David Runge via arch-commits
Date: Wednesday, September 15, 2021 @ 19:28:22
  Author: dvzrv
Revision: 1016072

archrelease: copy trunk to community-any

Added:
  python-pytest-xprocess/repos/community-any/PKGBUILD
(from rev 1016071, python-pytest-xprocess/trunk/PKGBUILD)
Deleted:
  python-pytest-xprocess/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-09-15 19:28:14 UTC (rev 1016071)
+++ PKGBUILD2021-09-15 19:28:22 UTC (rev 1016072)
@@ -1,36 +0,0 @@
-# Maintainer: David Runge 
-# Contributor: Hugo Osvaldo Barrera 
-# Contributor: Neil Santos 
-
-_name=pytest-xprocess
-pkgname=python-pytest-xprocess
-pkgver=0.16.0
-pkgrel=1
-pkgdesc='Pytest plugin to manage external processes across test runs.'
-arch=('any')
-url="https://github.com/pytest-dev/pytest-xprocess;
-license=('MIT')
-depends=('python-psutil' 'python-pytest' 'python-setuptools')
-source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz;)
-sha512sums=('3cf5d05c6693ebddc91fb2ad62eacd5b8f231e78ee82908b20268367649d6d73f0c1fbbf93a31f97feabe8bddf02cb176b2ffb9f6de4387b46cd0b97ad3c3eea')
-
-build() {
-  cd "${_name}-${pkgver}"
-  python setup.py build
-}
-
-check() {
-  cd "${_name}-${pkgver}"
-  export PYTHONPATH="."
-  py.test
-}
-
-package() {
-  cd "${_name}-${pkgver}"
-  python setup.py install --skip-build \
---optimize=1 \
---prefix=/usr \
---root="${pkgdir}"
-  install -vDm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -vDm 644 {CHANGELOG,README}.rst -t "${pkgdir}/usr/share/${pkgname}"
-}

Copied: python-pytest-xprocess/repos/community-any/PKGBUILD (from rev 1016071, 
python-pytest-xprocess/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-09-15 19:28:22 UTC (rev 1016072)
@@ -0,0 +1,35 @@
+# Maintainer: David Runge 
+# Contributor: Hugo Osvaldo Barrera 
+# Contributor: Neil Santos 
+
+_name=pytest-xprocess
+pkgname=python-pytest-xprocess
+pkgver=0.18.1
+pkgrel=1
+pkgdesc='Pytest plugin to manage external processes across test runs.'
+arch=('any')
+url="https://github.com/pytest-dev/pytest-xprocess;
+license=('MIT')
+depends=('python-psutil' 'python-pytest')
+makedepends=('python-setuptools-scm')
+source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz;)
+sha512sums=('f19cba9954e4b2363db13b7dba373f5e50cfca6f43d6455f271bff4d01dcc2a3b15c13a47076dbeed34feffee856a8271df4837edab413e964a848cbb6228e7e')
+b2sums=('9772fff488414406f487add01fba9ee2e10e12965d5b289b8c17cffb5a6566aaea0653ca1b390e6b4c70d79ce3698b0ce8122ed919f9778cb8cf3f7488cffc8d')
+
+build() {
+  cd "${_name}-${pkgver}"
+  python setup.py build
+}
+
+check() {
+  cd "${_name}-${pkgver}"
+  export PYTHONPATH="build:${PYTHONPATH}"
+  pytest -v -k "not test_interruption_cleanup and not 
test_interruption_does_not_cleanup"
+}
+
+package() {
+  cd "${_name}-${pkgver}"
+  python setup.py install --optimize=1 --root="${pkgdir}"
+  install -vDm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -vDm 644 {CHANGELOG,README}.rst -t "${pkgdir}/usr/share/${pkgname}"
+}



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

2021-09-15 Thread David Runge via arch-commits
Date: Wednesday, September 15, 2021 @ 19:28:14
  Author: dvzrv
Revision: 1016071

upgpkg: python-pytest-xprocess 0.18.1-1: Upgrade to 0.18.1.

Modified:
  python-pytest-xprocess/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-15 19:00:59 UTC (rev 1016070)
+++ PKGBUILD2021-09-15 19:28:14 UTC (rev 1016071)
@@ -1,18 +1,20 @@
-# Maintainer: David Runge 
+# Maintainer: David Runge 
 # Contributor: Hugo Osvaldo Barrera 
 # Contributor: Neil Santos 
 
 _name=pytest-xprocess
 pkgname=python-pytest-xprocess
-pkgver=0.16.0
+pkgver=0.18.1
 pkgrel=1
 pkgdesc='Pytest plugin to manage external processes across test runs.'
 arch=('any')
 url="https://github.com/pytest-dev/pytest-xprocess;
 license=('MIT')
-depends=('python-psutil' 'python-pytest' 'python-setuptools')
+depends=('python-psutil' 'python-pytest')
+makedepends=('python-setuptools-scm')
 
source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz;)
-sha512sums=('3cf5d05c6693ebddc91fb2ad62eacd5b8f231e78ee82908b20268367649d6d73f0c1fbbf93a31f97feabe8bddf02cb176b2ffb9f6de4387b46cd0b97ad3c3eea')
+sha512sums=('f19cba9954e4b2363db13b7dba373f5e50cfca6f43d6455f271bff4d01dcc2a3b15c13a47076dbeed34feffee856a8271df4837edab413e964a848cbb6228e7e')
+b2sums=('9772fff488414406f487add01fba9ee2e10e12965d5b289b8c17cffb5a6566aaea0653ca1b390e6b4c70d79ce3698b0ce8122ed919f9778cb8cf3f7488cffc8d')
 
 build() {
   cd "${_name}-${pkgver}"
@@ -21,16 +23,13 @@
 
 check() {
   cd "${_name}-${pkgver}"
-  export PYTHONPATH="."
-  py.test
+  export PYTHONPATH="build:${PYTHONPATH}"
+  pytest -v -k "not test_interruption_cleanup and not 
test_interruption_does_not_cleanup"
 }
 
 package() {
   cd "${_name}-${pkgver}"
-  python setup.py install --skip-build \
---optimize=1 \
---prefix=/usr \
---root="${pkgdir}"
+  python setup.py install --optimize=1 --root="${pkgdir}"
   install -vDm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
   install -vDm 644 {CHANGELOG,README}.rst -t "${pkgdir}/usr/share/${pkgname}"
 }



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

2021-09-15 Thread David Runge via arch-commits
Date: Wednesday, September 15, 2021 @ 19:00:59
  Author: dvzrv
Revision: 1016070

archrelease: copy trunk to community-x86_64

Added:
  giada/repos/community-x86_64/PKGBUILD
(from rev 1016069, giada/trunk/PKGBUILD)
  giada/repos/community-x86_64/giada-0.17.2-devendor_nlohmann_json.patch
(from rev 1016069, giada/trunk/giada-0.17.2-devendor_nlohmann_json.patch)
Deleted:
  giada/repos/community-x86_64/PKGBUILD
  giada/repos/community-x86_64/giada-0.17.2-devendor_nlohmann_json.patch

---+
 PKGBUILD  |  143 +---
 giada-0.17.2-devendor_nlohmann_json.patch |  110 ++---
 2 files changed, 126 insertions(+), 127 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-09-15 19:00:50 UTC (rev 1016069)
+++ PKGBUILD2021-09-15 19:00:59 UTC (rev 1016070)
@@ -1,72 +0,0 @@
-# Maintainer: David Runge 
-
-pkgname=giada
-pkgver=0.18.1
-pkgrel=1
-pkgdesc="A free, minimal, hardcore audio tool for DJs, live performers and 
electronic musicians"
-arch=('x86_64')
-url="https://www.giadamusic.com/;
-license=('GPL3')
-groups=('pro-audio')
-depends=('gcc-libs' 'glibc' 'hicolor-icon-theme' 'libx11' 'libxcursor' 'libxft'
-'libxinerama' 'libxpm')
-# upstream vendors a hacked rtaudio :(
-makedepends=('alsa-lib' 'catch2' 'cmake' 'fltk' 'gendesk' 'imagemagick' 'jack'
-'libpulse' 'libsamplerate' 'libsndfile' 'libxrandr' 'nlohmann-json' 'rtmidi')
-checkdepends=('xorg-server-xvfb')
-provides=('vst3-host')
-source=("https://www.giadamusic.com/data/${pkgname}-${pkgver}-src.tar.gz;
-"$pkgname-0.17.2-devendor_nlohmann_json.patch")
-sha512sums=('2213babe015537754ef02575f2c67162baa4e12dfded784675377c3a5f4de3815656257feae2797c6a22ebbb4c2c9f83a551c6d0a149d3ce291c6c696b9b00e7'
-
'b9d952c0816dd2b81dadff24521b19f305ca5ddeb1964dd81ce93e6f63b25dbf291c07e528cc2836f268a095bf9920786331a615230416f44a9014ff581a0bce')
-b2sums=('e6137270c89ac5bbf239c74a73f31a95e175d0fc69be01c880f27c1ccf4c39cdd74375b35ca77a4100643ca049cdb3ff9fa983d566e3350a620f450e865a15bb'
-
'a482f356969c5d184a1eb0945477040cc7c5d1447fee0159cc5d2da05faea0bd696123b0559bdced148b301181f93726a515df24a814dbd08d207e2959f31305')
-
-prepare() {
-  mv -v "$pkgname-$pkgver-src" "$pkgname-$pkgver"
-  cd "$pkgname-$pkgver"
-  # XDG desktop file
-  gendesk -n \
-  --pkgname ${pkgname} \
-  --pkgdesc "${pkgdesc}" \
-  --name Giada \
-  --categories "AudioVideo;Audio;Midi;Sequencer"
-
-  # devendor nlohmann-json
-  patch -Np1 -i ../"$pkgname-0.17.2-devendor_nlohmann_json.patch"
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-  cmake -DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE='None' \
--DWITH_VST3=ON \
--W no-dev \
--B build \
--S .
-  cmake -DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE='None' \
--DWITH_VST3=ON \
--DWITH_TESTS=ON \
--W no-dev \
--B build-test \
--S .
-  make VERBOSE=1 -C build
-  make VERBOSE=1 -C build-test
-}
-
-check(){
-  cd "$pkgname-$pkgver"
-  xvfb-run ./build-test/giada --run-tests
-}
-
-package() {
-  depends+=('libasound.so' 'libfltk.so' 'libfreetype.so' 'libjack.so'
-  'libpulse.so' 'libpulse-simple.so' 'librtmidi.so' 'libsamplerate.so'
-  'libsndfile.so')
-  cd "$pkgname-$pkgver"
-  make DESTDIR="$pkgdir/" install -C build
-  # docs
-  install -vDm 644 {ChangeLog,README.md} \
--t "${pkgdir}/usr/share/doc/${pkgname}"
-}

Copied: giada/repos/community-x86_64/PKGBUILD (from rev 1016069, 
giada/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-09-15 19:00:59 UTC (rev 1016070)
@@ -0,0 +1,71 @@
+# Maintainer: David Runge 
+
+pkgname=giada
+pkgver=0.18.2
+pkgrel=1
+pkgdesc="A free, minimal, hardcore audio tool for DJs, live performers and 
electronic musicians"
+arch=('x86_64')
+url="https://www.giadamusic.com/;
+license=('GPL3')
+groups=('pro-audio')
+depends=('gcc-libs' 'glibc' 'hicolor-icon-theme' 'libx11' 'libxcursor' 'libxft'
+'libxinerama' 'libxpm')
+# upstream vendors a hacked rtaudio :(
+makedepends=('alsa-lib' 'catch2' 'cmake' 'fltk' 'gendesk' 'imagemagick' 'jack'
+'libpulse' 'libsamplerate' 'libsndfile' 'libxrandr' 'nlohmann-json' 'rtmidi')
+checkdepends=('xorg-server-xvfb')
+provides=('vst3-host')
+source=("https://www.giadamusic.com/data/${pkgname}-v${pkgver}-src.tar.gz;
+"$pkgname-0.17.2-devendor_nlohmann_json.patch")
+sha512sums=('205b27ecbc8c2fef87908a6f0c2c532c1199fba94e4c65d7ba48c07d022c50b30c180a58860b117977e0089ad26e19adee645a06ce42586a8f7ef2ad93166d23'
+
'b9d952c0816dd2b81dadff24521b19f305ca5ddeb1964dd81ce93e6f63b25dbf291c07e528cc2836f268a095bf9920786331a615230416f44a9014ff581a0bce')

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

2021-09-15 Thread David Runge via arch-commits
Date: Wednesday, September 15, 2021 @ 19:00:50
  Author: dvzrv
Revision: 1016069

upgpkg: giada 0.18.2-1: Upgrade to 0.18.2.

Remove unneeded sodep on libfltk.so

Modified:
  giada/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-15 19:00:20 UTC (rev 1016068)
+++ PKGBUILD2021-09-15 19:00:50 UTC (rev 1016069)
@@ -1,7 +1,7 @@
 # Maintainer: David Runge 
 
 pkgname=giada
-pkgver=0.18.1
+pkgver=0.18.2
 pkgrel=1
 pkgdesc="A free, minimal, hardcore audio tool for DJs, live performers and 
electronic musicians"
 arch=('x86_64')
@@ -15,11 +15,11 @@
 'libpulse' 'libsamplerate' 'libsndfile' 'libxrandr' 'nlohmann-json' 'rtmidi')
 checkdepends=('xorg-server-xvfb')
 provides=('vst3-host')
-source=("https://www.giadamusic.com/data/${pkgname}-${pkgver}-src.tar.gz;
+source=("https://www.giadamusic.com/data/${pkgname}-v${pkgver}-src.tar.gz;
 "$pkgname-0.17.2-devendor_nlohmann_json.patch")
-sha512sums=('2213babe015537754ef02575f2c67162baa4e12dfded784675377c3a5f4de3815656257feae2797c6a22ebbb4c2c9f83a551c6d0a149d3ce291c6c696b9b00e7'
+sha512sums=('205b27ecbc8c2fef87908a6f0c2c532c1199fba94e4c65d7ba48c07d022c50b30c180a58860b117977e0089ad26e19adee645a06ce42586a8f7ef2ad93166d23'
 
'b9d952c0816dd2b81dadff24521b19f305ca5ddeb1964dd81ce93e6f63b25dbf291c07e528cc2836f268a095bf9920786331a615230416f44a9014ff581a0bce')
-b2sums=('e6137270c89ac5bbf239c74a73f31a95e175d0fc69be01c880f27c1ccf4c39cdd74375b35ca77a4100643ca049cdb3ff9fa983d566e3350a620f450e865a15bb'
+b2sums=('0a59f68ae2641d7e62d98fc18d7ec9cf18164cf7510f0a3c9558f419ee19b39bcedf7fdc1349dbda055d8d36c8f8d61d31cfe363bccb511996af9ba5c3f0691c'
 
'a482f356969c5d184a1eb0945477040cc7c5d1447fee0159cc5d2da05faea0bd696123b0559bdced148b301181f93726a515df24a814dbd08d207e2959f31305')
 
 prepare() {
@@ -61,9 +61,8 @@
 }
 
 package() {
-  depends+=('libasound.so' 'libfltk.so' 'libfreetype.so' 'libjack.so'
-  'libpulse.so' 'libpulse-simple.so' 'librtmidi.so' 'libsamplerate.so'
-  'libsndfile.so')
+  depends+=('libasound.so' 'libfreetype.so' 'libjack.so' 'libpulse.so'
+  'libpulse-simple.so' 'librtmidi.so' 'libsamplerate.so' 'libsndfile.so')
   cd "$pkgname-$pkgver"
   make DESTDIR="$pkgdir/" install -C build
   # docs



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

2021-09-15 Thread Orhun Parmaksiz via arch-commits
Date: Wednesday, September 15, 2021 @ 18:49:22
  Author: orhun
Revision: 1016061

archrelease: copy trunk to community-x86_64

Added:
  pueue/repos/community-x86_64/PKGBUILD
(from rev 1016060, pueue/trunk/PKGBUILD)
Deleted:
  pueue/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-09-15 18:49:11 UTC (rev 1016060)
+++ PKGBUILD2021-09-15 18:49:22 UTC (rev 1016061)
@@ -1,51 +0,0 @@
-# Maintainer: Orhun Parmaksız 
-# Contributor: Arne Beer 
-
-pkgname=pueue
-pkgver=1.0.2
-pkgrel=1
-pkgdesc="A command scheduler for shells"
-arch=('x86_64')
-url="https://github.com/nukesor/pueue;
-license=('MIT')
-depends=('gcc-libs')
-makedepends=('rust')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha256sums=('51e2a1b3bd2f265daea36b3150e9e7a6c20e075773219f61fe52bdd44fd1ccd3')
-
-prepare() {
-  cd "$pkgname-$pkgver"
-  cargo fetch --locked
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-  cargo build --release --frozen
-  ./build_completions.sh
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-  cargo test --frozen
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-
-  # Install binaries
-  install -Dm755 "target/release/pueue" "$pkgdir/usr/bin/pueue"
-  install -Dm755 "target/release/pueued" "$pkgdir/usr/bin/pueued"
-
-  # Place systemd user service
-  install -Dm644 "utils/pueued.service" 
"$pkgdir/usr/lib/systemd/user/pueued.service"
-
-  # Install shell completions file
-  install -Dm644 "utils/completions/_pueue" 
"$pkgdir/usr/share/zsh/site-functions/_pueue"
-  install -Dm644 "utils/completions/pueue.bash" 
"$pkgdir/usr/share/bash-completion/completions/pueue.bash"
-  install -Dm644 "utils/completions/pueue.fish" 
"$pkgdir/usr/share/fish/completions/pueue.fish"
-
-  # Install License
-  install -Dm644 "LICENSE" "$pkgdir/usr/share/licenses/pueue/LICENSE"
-}
-
-# vim: ts=2 sw=2 et:

Copied: pueue/repos/community-x86_64/PKGBUILD (from rev 1016060, 
pueue/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-09-15 18:49:22 UTC (rev 1016061)
@@ -0,0 +1,51 @@
+# Maintainer: Orhun Parmaksız 
+# Contributor: Arne Beer 
+
+pkgname=pueue
+pkgver=1.0.3
+pkgrel=1
+pkgdesc="A command scheduler for shells"
+arch=('x86_64')
+url="https://github.com/nukesor/pueue;
+license=('MIT')
+depends=('gcc-libs')
+makedepends=('rust')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha256sums=('eb20da7425fab406ea33322aa6b248c350eca631b8e23f2fc2ee80c1505e439e')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+  cargo fetch --locked
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  cargo build --release --frozen
+  ./build_completions.sh
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  cargo test --frozen
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  # Install binaries
+  install -Dm755 "target/release/pueue" "$pkgdir/usr/bin/pueue"
+  install -Dm755 "target/release/pueued" "$pkgdir/usr/bin/pueued"
+
+  # Place systemd user service
+  install -Dm644 "utils/pueued.service" 
"$pkgdir/usr/lib/systemd/user/pueued.service"
+
+  # Install shell completions file
+  install -Dm644 "utils/completions/_pueue" 
"$pkgdir/usr/share/zsh/site-functions/_pueue"
+  install -Dm644 "utils/completions/pueue.bash" 
"$pkgdir/usr/share/bash-completion/completions/pueue.bash"
+  install -Dm644 "utils/completions/pueue.fish" 
"$pkgdir/usr/share/fish/completions/pueue.fish"
+
+  # Install License
+  install -Dm644 "LICENSE" "$pkgdir/usr/share/licenses/pueue/LICENSE"
+}
+
+# vim: ts=2 sw=2 et:



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

2021-09-15 Thread Orhun Parmaksiz via arch-commits
Date: Wednesday, September 15, 2021 @ 18:49:11
  Author: orhun
Revision: 1016060

upgpkg: pueue 1.0.3-1: upstream release

Modified:
  pueue/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-15 18:23:41 UTC (rev 1016059)
+++ PKGBUILD2021-09-15 18:49:11 UTC (rev 1016060)
@@ -2,7 +2,7 @@
 # Contributor: Arne Beer 
 
 pkgname=pueue
-pkgver=1.0.2
+pkgver=1.0.3
 pkgrel=1
 pkgdesc="A command scheduler for shells"
 arch=('x86_64')
@@ -11,7 +11,7 @@
 depends=('gcc-libs')
 makedepends=('rust')
 source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha256sums=('51e2a1b3bd2f265daea36b3150e9e7a6c20e075773219f61fe52bdd44fd1ccd3')
+sha256sums=('eb20da7425fab406ea33322aa6b248c350eca631b8e23f2fc2ee80c1505e439e')
 
 prepare() {
   cd "$pkgname-$pkgver"



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

2021-09-15 Thread David Runge via arch-commits
Date: Wednesday, September 15, 2021 @ 18:45:43
  Author: dvzrv
Revision: 424050

archrelease: copy trunk to extra-x86_64

Added:
  fftw/repos/extra-x86_64/PKGBUILD
(from rev 424049, fftw/trunk/PKGBUILD)
Deleted:
  fftw/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |  273 ++---
 1 file changed, 137 insertions(+), 136 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-09-15 18:45:35 UTC (rev 424049)
+++ PKGBUILD2021-09-15 18:45:43 UTC (rev 424050)
@@ -1,136 +0,0 @@
-# Maintainer: Ronald van Haren 
-# Contributor: David Runge 
-# Contributor: damir 
-
-pkgname=fftw
-pkgver=3.3.9
-pkgrel=1
-pkgdesc="A library for computing the discrete Fourier transform (DFT)"
-arch=('x86_64')
-license=('GPL2')
-url="http://www.fftw.org/;
-depends=('bash' 'gcc-libs' 'glibc' 'openmpi')
-makedepends=('gcc-fortran')
-provides=('libfftw3q_threads.so' 'libfftw3q_omp.so' 'libfftw3q.so'
-'libfftw3l_threads.so' 'libfftw3l_omp.so' 'libfftw3l_mpi.so' 'libfftw3l.so'
-'libfftw3f_threads.so' 'libfftw3f_omp.so' 'libfftw3f_mpi.so' 'libfftw3f.so'
-'libfftw3_threads.so' 'libfftw3_omp.so' 'libfftw3_mpi.so' 'libfftw3.so')
-source=("http://www.fftw.org/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('52ebc2a33063a41fd478f6ea2acbf3b511867f736591d273dd57f9dfca5d3e0b0c73157921b3a36f1a7cfd741a8a6bde0fd80de578040ae730ea168b5ba466cf')
-b2sums=('6ea6966f3c5056102e6c3e4628b072c7e9832e3250b292808ed934b3a82515fd77658cbaff50d7b1268fb8c9444b10e39b22d100b7c31ea2452f3cee59c9f280')
-
-prepare() {
-  cp -av "${pkgname}-${pkgver}" "${pkgname}-${pkgver}-double"
-  cp -av "${pkgname}-${pkgver}" "${pkgname}-${pkgver}-long-double"
-  cp -av "${pkgname}-${pkgver}" "${pkgname}-${pkgver}-quad"
-}
-
-build() {
-  export F77='gfortran'
-  # use upstream default CFLAGS while keeping our -march/-mtune
-  CFLAGS+=" -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing 
-ffast-math"
-  # default configure call
-  _default_configure="./configure --prefix=/usr --enable-shared 
--enable-threads --enable-mpi --enable-openmp"
-
-  # configure single precision
-  (
-cd "${pkgname}-${pkgver}"
-${_default_configure} --enable-sse --enable-avx --enable-single
-# NOTE: fix overlinking
-sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  )
-
-  # configure double precision
-  (
-cd "${pkgname}-${pkgver}-double"
-${_default_configure} --enable-sse2 --enable-avx
-# NOTE: fix overlinking
-sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  )
-
-  # configure long-double precission
-  (
-cd "${pkgname}-${pkgver}-long-double"
-${_default_configure} --enable-long-double
-# NOTE: fix overlinking
-sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  )
-
-  # configure quad precision
-  (
-cd "${pkgname}-${pkgver}-quad"
-${_default_configure} --disable-mpi --enable-quad-precision
-# NOTE: fix overlinking
-sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  )
-
-  make -C "${pkgname}-${pkgver}"
-  make -C "${pkgname}-${pkgver}-double"
-  make -C "${pkgname}-${pkgver}-long-double"
-  make -C "${pkgname}-${pkgver}-quad"
-
-# NOTE: cmake setup still missing MPI integration and needs patch for 
libquadmath
-#  _default_options=(
-#-DCMAKE_INSTALL_PREFIX=/usr
-#-DCMAKE_BUILD_TYPE='None'
-#-DBUILD_SHARED_LIBS=ON
-#-DENABLE_THREADS=ON
-#-DENABLE_OPENMP=ON
-#-Wno-dev
-#  )
-#
-#  cmake "${_default_options[@]}" \
-#-DENABLE_SSE2=ON \
-#-DENABLE_AVX=ON \
-#-B "${pkgname}-${pkgver}/build" \
-#-S "${pkgname}-${pkgver}"
-#  make VERBOSE=1 -C "${pkgname}-${pkgver}/build"
-#
-#  cmake "${_default_options[@]}" \
-#-DENABLE_FLOAT=ON \
-#-DENABLE_SSE=ON \
-#-DENABLE_AVX=ON \
-#-B "${pkgname}-${pkgver}/build-float" \
-#-S "${pkgname}-${pkgver}"
-#  make VERBOSE=1 -C "${pkgname}-${pkgver}/build-float"
-#
-#  cmake "${_default_options[@]}" \
-#-DENABLE_LONG_DOUBLE=ON \
-#-B "${pkgname}-${pkgver}/build-long-double" \
-#-S "${pkgname}-${pkgver}"
-#  make VERBOSE=1 -C "${pkgname}-${pkgver}/build-long-double"
-#
-#  cmake "${_default_options[@]}" \
-#-DENABLE_QUAD_PRECISION=ON \
-#-B "${pkgname}-${pkgver}/build-quad" \
-#-S "${pkgname}-${pkgver}"
-#  make VERBOSE=1 -C "${pkgname}-${pkgver}/build-quad"
-}
-
-check() {
-  make check -C "${pkgname}-${pkgver}"
-  make check -C "${pkgname}-${pkgver}-double"
-  make check -C "${pkgname}-${pkgver}-long-double"
-  make check -C "${pkgname}-${pkgver}-quad"
-
-#  cd "${pkgname}-${pkgver}"
-#  make VERBOSE=1 -C build test
-#  make VERBOSE=1 -C build-float test
-#  make VERBOSE=1 -C build-long-double test
-#  make VERBOSE=1 -C build-quad test
-}
-
-package() {
-  make DESTDIR="${pkgdir}" install -C "${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install -C "${pkgname}-${pkgver}-double"
-  make 

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

2021-09-15 Thread David Runge via arch-commits
Date: Wednesday, September 15, 2021 @ 18:45:35
  Author: dvzrv
Revision: 424049

upgpkg: fftw 3.3.10-1: Upgrade to 3.3.10.

Modified:
  fftw/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-15 18:35:37 UTC (rev 424048)
+++ PKGBUILD2021-09-15 18:45:35 UTC (rev 424049)
@@ -1,9 +1,10 @@
+# Maintainer: David Runge 
 # Maintainer: Ronald van Haren 
 # Contributor: David Runge 
 # Contributor: damir 
 
 pkgname=fftw
-pkgver=3.3.9
+pkgver=3.3.10
 pkgrel=1
 pkgdesc="A library for computing the discrete Fourier transform (DFT)"
 arch=('x86_64')
@@ -16,8 +17,8 @@
 'libfftw3f_threads.so' 'libfftw3f_omp.so' 'libfftw3f_mpi.so' 'libfftw3f.so'
 'libfftw3_threads.so' 'libfftw3_omp.so' 'libfftw3_mpi.so' 'libfftw3.so')
 source=("http://www.fftw.org/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('52ebc2a33063a41fd478f6ea2acbf3b511867f736591d273dd57f9dfca5d3e0b0c73157921b3a36f1a7cfd741a8a6bde0fd80de578040ae730ea168b5ba466cf')
-b2sums=('6ea6966f3c5056102e6c3e4628b072c7e9832e3250b292808ed934b3a82515fd77658cbaff50d7b1268fb8c9444b10e39b22d100b7c31ea2452f3cee59c9f280')
+sha512sums=('2d34b5ccac7b08740dbdacc6ebe451d8a34cf9d9bfec85a5e776e87adf94abfd803c222412d8e10fbaa4ed46f504aa87180396af1b108666cde4314a55610b40')
+b2sums=('3663872bd95a01d2c79af185f53918e1d1a9c91c620082402772c07f25b9b77d4920a78dc686fac6b51aa961b8d62b7e2cef3f3031e096bed40ced80b59b29d5')
 
 prepare() {
   cp -av "${pkgname}-${pkgver}" "${pkgname}-${pkgver}-double"



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

2021-09-15 Thread Felix Yan via arch-commits
Date: Wednesday, September 15, 2021 @ 18:35:37
  Author: felixonmars
Revision: 424048

archrelease: copy trunk to testing-x86_64

Added:
  java-openjdk/repos/testing-x86_64/
  java-openjdk/repos/testing-x86_64/PKGBUILD
(from rev 424047, java-openjdk/trunk/PKGBUILD)
  java-openjdk/repos/testing-x86_64/freedesktop-java.desktop
(from rev 424047, java-openjdk/trunk/freedesktop-java.desktop)
  java-openjdk/repos/testing-x86_64/freedesktop-jconsole.desktop
(from rev 424047, java-openjdk/trunk/freedesktop-jconsole.desktop)
  java-openjdk/repos/testing-x86_64/freedesktop-jshell.desktop
(from rev 424047, java-openjdk/trunk/freedesktop-jshell.desktop)
  java-openjdk/repos/testing-x86_64/install_jdk-openjdk.sh
(from rev 424047, java-openjdk/trunk/install_jdk-openjdk.sh)
  java-openjdk/repos/testing-x86_64/install_jre-openjdk-headless.sh
(from rev 424047, java-openjdk/trunk/install_jre-openjdk-headless.sh)
  java-openjdk/repos/testing-x86_64/install_jre-openjdk.sh
(from rev 424047, java-openjdk/trunk/install_jre-openjdk.sh)

-+
 PKGBUILD|  278 ++
 freedesktop-java.desktop|   12 +
 freedesktop-jconsole.desktop|   11 +
 freedesktop-jshell.desktop  |9 +
 install_jdk-openjdk.sh  |   50 ++
 install_jre-openjdk-headless.sh |   48 ++
 install_jre-openjdk.sh  |   35 
 7 files changed, 443 insertions(+)

Copied: java-openjdk/repos/testing-x86_64/PKGBUILD (from rev 424047, 
java-openjdk/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2021-09-15 18:35:37 UTC (rev 424048)
@@ -0,0 +1,278 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Guillaume ALAUX 
+
+# TODO add test, see about packaging jtreg and using it here
+
+pkgbase=java-openjdk
+pkgname=('jre-openjdk-headless' 'jre-openjdk' 'jdk-openjdk' 'openjdk-src' 
'openjdk-doc')
+_majorver=17
+_minorver=0
+_securityver=0
+_updatever=35
+pkgrel=1
+#pkgver=${_majorver}.${_minorver}.${_securityver}.u${_updatever}
+pkgver=${_majorver}.u${_updatever}
+#_git_tag=jdk-${_majorver}.${_minorver}.${_securityver}+${_updatever}
+_git_tag=jdk-${_majorver}+${_updatever}
+arch=('x86_64')
+url='https://openjdk.java.net/'
+license=('custom')
+makedepends=('java-environment>=11' 'cpio' 'unzip' 'zip' 'libelf' 'libcups' 
'libx11'
+ 'libxrender' 'libxtst' 'libxt' 'libxext' 'libxrandr' 'alsa-lib' 
'pandoc'
+ 'graphviz' 'freetype2' 'libjpeg-turbo' 'giflib' 'libpng' 'lcms2'
+ 'libnet' 'bash' 'harfbuzz' 'gcc-libs' 'glibc')
+source=(https://github.com/openjdk/jdk${_majorver}u/archive/${_git_tag}.tar.gz
+freedesktop-java.desktop
+freedesktop-jconsole.desktop
+freedesktop-jshell.desktop)
+sha256sums=('30f18c49c004880ede19498c45e91bbef83fb3419aba7abd583bf03a670ea53b'
+'85c4742764590783160af74587a47269e6797fbdf17ec485c7644bd239adf61d'
+'abac1ab09a33a3654378bc69be5a7cf075263ab3ae9efec1eb25cf388e711bb7'
+'e7cce0ecf868f656d8dc2eb25ab82ab665526a0a28aba20f02632dd29962dac3')
+
+case "${CARCH}" in
+  x86_64) _JARCH='x86_64';;
+  i686)   _JARCH='x86';;
+esac
+
+_jvmdir=/usr/lib/jvm/java-${_majorver}-openjdk
+_jdkdir=jdk${_majorver}u-${_git_tag//+/-}
+_imgdir=${_jdkdir}/build/linux-${_JARCH}-server-release/images
+
+_nonheadless=(lib/libawt_xawt.{so,debuginfo}
+  lib/libjawt.{so,debuginfo}
+  lib/libjsound.{so,debuginfo}
+  lib/libsplashscreen.{so,debuginfo})
+
+build() {
+  cd ${_jdkdir}
+
+  NUM_PROC_OPT=''
+  MAKEFLAG_J=$(echo ${MAKEFLAGS} | sed -En 's/.*-j([0-9]+).*/\1/p')
+  if [ -n "${MAKEFLAG_J}" ]; then
+# 
http://hg.openjdk.java.net/jdk10/jdk10/file/85e6cb013b98/make/InitSupport.gmk#l105
+echo "Removing '-j${MAKEFLAG_J}' from MAKEFLAGS to prevent build fail. 
Passing it directly to ./configure."
+export MAKEFLAGS=${MAKEFLAGS/-j${MAKEFLAG_J}/}
+NUM_PROC_OPT="--with-num-cores=${MAKEFLAG_J}"
+  fi
+
+  # Avoid optimization of HotSpot to be lowered from O3 to O2
+  local _CFLAGS="${CFLAGS//-O2/-O3} ${CPPFLAGS} -fcommon"
+  local _CXXFLAGS="${CXXFLAGS//-O2/-O3} ${CPPFLAGS} -fcommon"
+  local _LDFLAGS=${LDFLAGS}
+  if [[ ${CARCH} = i686 ]]; then
+echo "Removing '-fno-plt' from CFLAGS and CXXFLAGS to prevent build fail 
with this architecture"
+_CFLAGS=${CFLAGS/-fno-plt/}
+_CXXFLAGS=${CXXFLAGS/-fno-plt/}
+  fi
+
+  # CFLAGS, CXXFLAGS and LDFLAGS are ignored as shown by a warning
+  # in the output of ./configure unless used like such:
+  #  --with-extra-cflags="${CFLAGS}"
+  #  --with-extra-cxxflags="${CXXFLAGS}"
+  #  --with-extra-ldflags="${LDFLAGS}"
+  # See also paragraph "Configure Control Variables from 
"jdk${_majorver}-${_git_tag}/common/doc/building.md
+  unset CFLAGS
+  unset CXXFLAGS
+  unset LDFLAGS
+
+  bash configure \
+

[arch-commits] Commit in java-openjdk/trunk (7 files)

2021-09-15 Thread Felix Yan via arch-commits
Date: Wednesday, September 15, 2021 @ 18:35:14
  Author: felixonmars
Revision: 424047

upgpkg: java-openjdk 17.u35-1

Modified:
  java-openjdk/trunk/PKGBUILD
  java-openjdk/trunk/freedesktop-java.desktop
  java-openjdk/trunk/freedesktop-jconsole.desktop
  java-openjdk/trunk/freedesktop-jshell.desktop
  java-openjdk/trunk/install_jdk-openjdk.sh
  java-openjdk/trunk/install_jre-openjdk-headless.sh
  java-openjdk/trunk/install_jre-openjdk.sh

-+
 PKGBUILD|   20 +++-
 freedesktop-java.desktop|   12 ++--
 freedesktop-jconsole.desktop|   12 ++--
 freedesktop-jshell.desktop  |8 
 install_jdk-openjdk.sh  |2 +-
 install_jre-openjdk-headless.sh |2 +-
 install_jre-openjdk.sh  |2 +-
 7 files changed, 30 insertions(+), 28 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-09-15 18:17:38 UTC (rev 424046)
+++ PKGBUILD2021-09-15 18:35:14 UTC (rev 424047)
@@ -5,13 +5,15 @@
 
 pkgbase=java-openjdk
 pkgname=('jre-openjdk-headless' 'jre-openjdk' 'jdk-openjdk' 'openjdk-src' 
'openjdk-doc')
-_majorver=16
+_majorver=17
 _minorver=0
-_securityver=2
-_updatever=7
+_securityver=0
+_updatever=35
 pkgrel=1
-pkgver=${_majorver}.${_minorver}.${_securityver}.u${_updatever}
-_git_tag=jdk-${_majorver}.${_minorver}.${_securityver}+${_updatever}
+#pkgver=${_majorver}.${_minorver}.${_securityver}.u${_updatever}
+pkgver=${_majorver}.u${_updatever}
+#_git_tag=jdk-${_majorver}.${_minorver}.${_securityver}+${_updatever}
+_git_tag=jdk-${_majorver}+${_updatever}
 arch=('x86_64')
 url='https://openjdk.java.net/'
 license=('custom')
@@ -23,10 +25,10 @@
 freedesktop-java.desktop
 freedesktop-jconsole.desktop
 freedesktop-jshell.desktop)
-sha256sums=('b4a0e71e41a11175e8a7c1dba86ed5b0aa878413158c8d48813db1b64ac9536c'
-'11150daae08fff25309dcc060c07cd056181644d2b563c22668b98e306e8f2db'
-'c0673d680cc728af88bec89275f0a8e2199d52e48b5c5b0aa2d921bedbc2e12f'
-'0cdf3dc10a64c5e589e655276189422b60a6b3294539164a6f29123d6b2046c7')
+sha256sums=('30f18c49c004880ede19498c45e91bbef83fb3419aba7abd583bf03a670ea53b'
+'85c4742764590783160af74587a47269e6797fbdf17ec485c7644bd239adf61d'
+'abac1ab09a33a3654378bc69be5a7cf075263ab3ae9efec1eb25cf388e711bb7'
+'e7cce0ecf868f656d8dc2eb25ab82ab665526a0a28aba20f02632dd29962dac3')
 
 case "${CARCH}" in
   x86_64) _JARCH='x86_64';;

Modified: freedesktop-java.desktop
===
--- freedesktop-java.desktop2021-09-15 18:17:38 UTC (rev 424046)
+++ freedesktop-java.desktop2021-09-15 18:35:14 UTC (rev 424047)
@@ -1,12 +1,12 @@
 [Desktop Entry]
-Name=OpenJDK Java 16 Runtime
-Name[fi]=OpenJDK Java 16 - ajonaikainen ympäristö
-Comment=OpenJDK Java 16 Runtime
-Comment[fi]=OpenJDK Java 16 - ajonaikainen ympäristö
+Name=OpenJDK Java 17 Runtime
+Name[fi]=OpenJDK Java 17 - ajonaikainen ympäristö
+Comment=OpenJDK Java 17 Runtime
+Comment[fi]=OpenJDK Java 17 - ajonaikainen ympäristö
 Keywords=java;runtime
-Exec=/usr/lib/jvm/java-16-openjdk/bin/java -jar
+Exec=/usr/lib/jvm/java-17-openjdk/bin/java -jar
 Terminal=false
 Type=Application
-Icon=java16-openjdk
+Icon=java17-openjdk
 MimeType=application/x-java-archive;application/java-archive;application/x-jar;
 NoDisplay=true

Modified: freedesktop-jconsole.desktop
===
--- freedesktop-jconsole.desktop2021-09-15 18:17:38 UTC (rev 424046)
+++ freedesktop-jconsole.desktop2021-09-15 18:35:14 UTC (rev 424047)
@@ -1,11 +1,11 @@
 [Desktop Entry]
-Name=OpenJDK Java 16 Console
-Name[fi]=OpenJDK Java 16 - konsoli
-Comment=OpenJDK Java 16 Monitoring & Management Console
-Comment[fi]=OpenJDK Java 16 - valvonta- ja hallintakonsoli
+Name=OpenJDK Java 17 Console
+Name[fi]=OpenJDK Java 17 - konsoli
+Comment=OpenJDK Java 17 Monitoring & Management Console
+Comment[fi]=OpenJDK Java 17 - valvonta- ja hallintakonsoli
 Keywords=java;console;monitoring
-Exec=/usr/lib/jvm/java-16-openjdk/bin/jconsole
+Exec=/usr/lib/jvm/java-17-openjdk/bin/jconsole
 Terminal=false
 Type=Application
-Icon=java16-openjdk
+Icon=java17-openjdk
 Categories=Application;System;

Modified: freedesktop-jshell.desktop
===
--- freedesktop-jshell.desktop  2021-09-15 18:17:38 UTC (rev 424046)
+++ freedesktop-jshell.desktop  2021-09-15 18:35:14 UTC (rev 424047)
@@ -1,9 +1,9 @@
 [Desktop Entry]
-Name=OpenJDK Java 16 Shell
-Comment=OpenJDK Java 16 Shell
+Name=OpenJDK Java 17 Shell
+Comment=OpenJDK Java 17 Shell
 Keywords=java;shell
-Exec=/usr/lib/jvm/java-16-openjdk/bin/jshell
+Exec=/usr/lib/jvm/java-17-openjdk/bin/jshell
 Terminal=true
 Type=Application
-Icon=java16-openjdk
+Icon=java17-openjdk
 Categories=Application;System;

Modified: 

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

2021-09-15 Thread Anatol Pomozov via arch-commits
Date: Wednesday, September 15, 2021 @ 18:23:41
  Author: anatolik
Revision: 1016059

archrelease: copy trunk to community-x86_64

Added:
  osquery/repos/community-x86_64/PKGBUILD
(from rev 1016058, osquery/trunk/PKGBUILD)
Deleted:
  osquery/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-09-15 18:23:22 UTC (rev 1016058)
+++ PKGBUILD2021-09-15 18:23:41 UTC (rev 1016059)
@@ -1,51 +0,0 @@
-# Maintainer: Anatol Pomozov
-
-pkgname=osquery
-pkgver=4.6.0
-pkgrel=7
-pkgdesc='SQL powered operating system instrumentation, monitoring, and 
analytics'
-arch=(x86_64)
-url='https://osquery.io'
-license=(Apache GPL2)
-depends=(augeas boost-libs gflags google-glog aws-sdk-cpp librdkafka rocksdb 
gtest device-mapper rpm-tools dpkg pacman libelfin lldpd rapidjson sleuthkit 
ssdeep thrift yara lmdb iptables)
-makedepends=(cmake python boost linenoise-ng ninja)
-options=(!strip)
-# patched version of smartools that we need to build statically to avoid 
collision with the upstream version
-_smartmontools_commit=6afcf545d2ab86d13a3ecb9f656aa81622031f2a
-_patched_osquery_commit=4.6.0-archlinux-1
-source=(osquery-$pkgver.zip::https://github.com/osquery/osquery/archive/$pkgver.zip
-   
smartmontools-$_smartmontools_commit.zip::https://github.com/osquery/third-party-smartmontools/archive/$_smartmontools_commit.zip
-   
devendorize.patch::https://github.com/anatol/osquery/compare/$pkgver...$_patched_osquery_commit.patch
-   
tls_crash.patch::https://github.com/osquery/osquery/commit/d69380cb7713dd5f7f48849a028a7723e7a619bf.patch)
-sha256sums=('59dc5fce0f09133e17b8e4a5d2497ef3efd6c01243abf32564cf9ba1caa7fc44'
-'191848bf04ca6fe14a9634bdcff6f6e851aa59526f1f3fb168ad7c8c6d9b1d00'
-'833dbba19f278cc11de55f7e855fa3996b30f13faa8058d6fed1267758c075b2'
-'02b61783880147b914088f2a75c086ac5adc3e4646287d03c36b7ad5d267977b')
-
-prepare() {
-  cd osquery-$pkgver
-  patch -p1 < ../devendorize.patch
-  patch -p1 < ../tls_crash.patch
-
-  rm -rf libraries/cmake/source/smartmontools/src
-  ln -sf `pwd`/../third-party-smartmontools-$_smartmontools_commit 
libraries/cmake/source/smartmontools/src
-}
-
-build() {
-  cd osquery-$pkgver
-
-  # disable ebpfpub dependency as https://github.com/trailofbits/ebpfpub is 
not in community repo yet
-  cmake -DCMAKE_BUILD_TYPE=Release -DOSQUERY_STATIC_BUILD=OFF 
-DCMAKE_INSTALL_PREFIX=/usr -DOSQUERY_VERSION=$pkgver \
-  -DOSQUERY_IGNORE_CMAKE_MAX_VERSION_CHECK=TRUE \
-  -DOSQUERY_BUILD_BPF=OFF \
-  -G Ninja -S . -B build
-  ninja -C build
-}
-
-package() {
-  cd osquery-$pkgver
-
-  DESTDIR="${pkgdir}" ninja -C build install
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-  rm -r "$pkgdir/etc/init.d/"
-}

Copied: osquery/repos/community-x86_64/PKGBUILD (from rev 1016058, 
osquery/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-09-15 18:23:41 UTC (rev 1016059)
@@ -0,0 +1,51 @@
+# Maintainer: Anatol Pomozov
+
+pkgname=osquery
+pkgver=4.6.0
+pkgrel=8
+pkgdesc='SQL powered operating system instrumentation, monitoring, and 
analytics'
+arch=(x86_64)
+url='https://osquery.io'
+license=(Apache GPL2)
+depends=(augeas boost-libs gflags google-glog aws-sdk-cpp librdkafka rocksdb 
gtest device-mapper rpm-tools dpkg pacman libelfin lldpd rapidjson sleuthkit 
ssdeep thrift yara lmdb iptables)
+makedepends=(cmake python boost linenoise-ng ninja)
+options=(!strip)
+# patched version of smartools that we need to build statically to avoid 
collision with the upstream version
+_smartmontools_commit=6afcf545d2ab86d13a3ecb9f656aa81622031f2a
+_patched_osquery_commit=4.6.0-archlinux-1
+source=(osquery-$pkgver.zip::https://github.com/osquery/osquery/archive/$pkgver.zip
+   
smartmontools-$_smartmontools_commit.zip::https://github.com/osquery/third-party-smartmontools/archive/$_smartmontools_commit.zip
+   
devendorize.patch::https://github.com/anatol/osquery/compare/$pkgver...$_patched_osquery_commit.patch
+   
tls_crash.patch::https://github.com/osquery/osquery/commit/d69380cb7713dd5f7f48849a028a7723e7a619bf.patch)
+sha256sums=('59dc5fce0f09133e17b8e4a5d2497ef3efd6c01243abf32564cf9ba1caa7fc44'
+'191848bf04ca6fe14a9634bdcff6f6e851aa59526f1f3fb168ad7c8c6d9b1d00'
+'833dbba19f278cc11de55f7e855fa3996b30f13faa8058d6fed1267758c075b2'
+'02b61783880147b914088f2a75c086ac5adc3e4646287d03c36b7ad5d267977b')
+
+prepare() {
+  cd osquery-$pkgver
+  patch -p1 < ../devendorize.patch
+  patch -p1 < ../tls_crash.patch
+
+  rm -rf libraries/cmake/source/smartmontools/src
+  ln -sf `pwd`/../third-party-smartmontools-$_smartmontools_commit 
libraries/cmake/source/smartmontools/src
+}

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

2021-09-15 Thread Anatol Pomozov via arch-commits
Date: Wednesday, September 15, 2021 @ 18:23:22
  Author: anatolik
Revision: 1016058

upgpkg: osquery 4.6.0-8: thrift 0.15 rebuild

Modified:
  osquery/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-15 18:19:55 UTC (rev 1016057)
+++ PKGBUILD2021-09-15 18:23:22 UTC (rev 1016058)
@@ -2,7 +2,7 @@
 
 pkgname=osquery
 pkgver=4.6.0
-pkgrel=7
+pkgrel=8
 pkgdesc='SQL powered operating system instrumentation, monitoring, and 
analytics'
 arch=(x86_64)
 url='https://osquery.io'



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

2021-09-15 Thread Andreas Radke via arch-commits
Date: Wednesday, September 15, 2021 @ 18:19:55
  Author: andyrtr
Revision: 1016057

archrelease: copy trunk to community-testing-x86_64

Added:
  iwd/repos/community-testing-x86_64/
  iwd/repos/community-testing-x86_64/ChangeLog
(from rev 1016056, iwd/trunk/ChangeLog)
  iwd/repos/community-testing-x86_64/PKGBUILD
(from rev 1016056, iwd/trunk/PKGBUILD)
  iwd/repos/community-testing-x86_64/iwd.install
(from rev 1016056, iwd/trunk/iwd.install)

-+
 ChangeLog   |  213 ++
 PKGBUILD|   51 +
 iwd.install |6 +
 3 files changed, 270 insertions(+)

Copied: iwd/repos/community-testing-x86_64/ChangeLog (from rev 1016056, 
iwd/trunk/ChangeLog)
===
--- community-testing-x86_64/ChangeLog  (rev 0)
+++ community-testing-x86_64/ChangeLog  2021-09-15 18:19:55 UTC (rev 1016057)
@@ -0,0 +1,213 @@
+ver 1.9:
+   Fix issue with WPA3 connections in transition mode.
+   Fix issue with handling roaming attempt failures.
+   Add support for radio management work queue.
+   Add support P2P service manager interface.
+   Add support for WiFi Display client API.
+
+ver 1.8:
+   Fix issue with handling FT AKMs when not supported.
+   Fix issue with handling FILS and RSNE in authenticate.
+   Fix issue with handling auto-connection and quick scan.
+   Fix issue with sending multiple scan requests.
+   Add support for P2P feature and API.
+
+ver 1.7:
+   Fix issue with APs that send IGTK falsely in big endian.
+   Fix issue with setting linkmode & operstate for open networks.
+
+ver 1.6:
+   Fix issue with handling missing AP stop events.
+   Fix issue with handling out-of-order disconnect events.
+   Fix issue with handling missing auth/assoc support.
+   Fix issue with handling omitted EAP-TLS-CACert.
+   Fix issue with handling OWE PTK derivation.
+   Add support for internal frame exchange API.
+   Add support for MAC randomization and override.
+   Add support for per-network MAC addresses.
+
+ver 1.5:
+   Fix issue with handling missing NEW_WIPHY events.
+   Fix issue with interface creation and NEW_WIPHY events.
+   Fix issue with handling LastConnectedTime property change.
+   Fix issue with PEAPv0 interoperability with Windows.
+
+ver 1.4:
+   Fix issue with handling Crypto-Binding and invalid MACs.
+   Fix issue with handling change station error results.
+   Fix issue with handling DNS resolving installations.
+
+ver 1.3:
+   Fix issue with handling EAP-GTC and password requests.
+   Fix issue with handling Crypto-Binding TLV for PEAPv0.
+   Fix issue with handling key installation and PEAP Phase 2.
+   Fix issue with handling externally triggered scan requests.
+   Fix issue with handling RCPI calculation for RRM requests.
+
+ver 1.2:
+   Fix issue with handling scan requests while connecting.
+   Fix issue with handling scan duration for RRM requests.
+   Fix issue with handling parent TSF value for RRM requests.
+
+ver 1.1:
+   Fix issue with simple configuration support checks.
+   Fix issue with handling TLS tunnel and PEAPv0.
+   Add support for radio resource management.
+
+ver 1.0:
+   Add support for stable D-Bus interfaces.
+   Add support for network configuration documentation.
+
+ver 0.23:
+   Fix issue with strict certificate chain checks.
+   Fix issue with parsing RSNE_ADVANCE information.
+   Fix issue with parsing RSN information for WPA1.
+   Fix issue with logic error in scan frequency validation.
+   Fix issue with integer overflow and authentication frames.
+   Add support for installing various manual pages.
+
+ver 0.22:
+   Fix issue with hotplug and device capability detection.
+   Add support for IPv6 network configuration handling.
+   Add support for embedding certificates in profiles.
+
+ver 0.21:
+   Fix issue with cleartext ACK and tunneled EAP-Success.
+   Fix issue with setting bits in extended capabilities.
+   Fix issue with WPA-1 information element parsing.
+   Add support for handling QoS Map IE and frames.
+   Add support for STATE_DIRECTORY environment.
+   Add support for CONFIGURATION_DIRECTORY environment.
+
+ver 0.20:
+   Add support for adding Extended Capabilities bits.
+   Add support for ServerDomainMask configuration option.
+
+ver 0.19:
+   Add support for Hotspot 2.0 functionality.
+   Add support for FILS Fast Transition feature.
+   Add support for network configuration handling.
+   Add support for resolution services framework.
+
+ver 0.18:
+   Fix issue with handling stale scan results.
+   Fix issue with handling OWE group renegotiation.
+   Fix issue with handshake failures on FT-PSK.
+   Add support for FILS (Fast Initial Link 

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

2021-09-15 Thread Andreas Radke via arch-commits
Date: Wednesday, September 15, 2021 @ 18:19:49
  Author: andyrtr
Revision: 1016056

upgpkg: iwd 1.18-1: upstream update 1.18

Modified:
  iwd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-15 18:11:55 UTC (rev 1016055)
+++ PKGBUILD2021-09-15 18:19:49 UTC (rev 1016056)
@@ -3,7 +3,7 @@
 # Contributor: AndyRTR 
 
 pkgname=iwd
-pkgver=1.17
+pkgver=1.18
 pkgrel=1
 pkgdesc='Internet Wireless Daemon'
 arch=('x86_64')
@@ -13,7 +13,7 @@
 makedepends=('python-docutils' 'dbus' 'systemd')
 
source=("https://www.kernel.org/pub/linux/network/wireless/iwd-${pkgver}.tar"{.xz,.sign})
 # https://mirrors.edge.kernel.org/pub/linux/network/wireless/sha256sums.asc
-sha256sums=('6f946f823b0dc3205e4e72becf8ad1915448d194f5b10d8003e4c8c5a18e4ef7'
+sha256sums=('0225ab81579f027e0fcbf255517f432fcf355d14f3645c36813c71a441dfab55'
 'SKIP')
 validpgpkeys=('E932D120BC2AEC444E558F0106CA9F5D1DCF2659')
 changelog=ChangeLog



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

2021-09-15 Thread Andreas Radke via arch-commits
Date: Wednesday, September 15, 2021 @ 18:17:38
  Author: andyrtr
Revision: 424046

archrelease: copy trunk to testing-x86_64

Added:
  ell/repos/testing-x86_64/
  ell/repos/testing-x86_64/PKGBUILD
(from rev 424045, ell/trunk/PKGBUILD)

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

Copied: ell/repos/testing-x86_64/PKGBUILD (from rev 424045, ell/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2021-09-15 18:17:38 UTC (rev 424046)
@@ -0,0 +1,34 @@
+# Maintainer: AndyRTR 
+# Contributor: Jameson Pugh 
+
+pkgname=ell
+pkgver=0.44
+pkgrel=1
+pkgdesc="Embedded Linux library"
+arch=(x86_64)
+url="https://01.org/ell;
+#url="https://git.kernel.org/pub/scm/libs/ell/ell.git/;
+license=('LGPL2.1')
+depends=('glibc')
+checkdepends=('dbus')
+# https://mirrors.edge.kernel.org/pub/linux/libs/ell/sha256sums.asc
+source=(https://mirrors.edge.kernel.org/pub/linux/libs/$pkgname/$pkgname-$pkgver.tar.{xz,sign})
+sha256sums=('41a6f8fa4d285b52cb7a5a87bda3e7370ecaac02d94aaa7ec1a23f0480b8bc3f'
+'SKIP')
+validpgpkeys=('E932D120BC2AEC444E558F0106CA9F5D1DCF2659') # "Marcel Holtmann 
"
+
+build() {
+  cd "$pkgname-$pkgver"
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  make -k check
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir/" install
+}



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

2021-09-15 Thread Andreas Radke via arch-commits
Date: Wednesday, September 15, 2021 @ 18:17:28
  Author: andyrtr
Revision: 424045

upgpkg: ell 0.44-1: upstream update 0.44

Modified:
  ell/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-09-15 17:24:11 UTC (rev 424044)
+++ PKGBUILD2021-09-15 18:17:28 UTC (rev 424045)
@@ -2,7 +2,7 @@
 # Contributor: Jameson Pugh 
 
 pkgname=ell
-pkgver=0.43
+pkgver=0.44
 pkgrel=1
 pkgdesc="Embedded Linux library"
 arch=(x86_64)
@@ -13,7 +13,7 @@
 checkdepends=('dbus')
 # https://mirrors.edge.kernel.org/pub/linux/libs/ell/sha256sums.asc
 
source=(https://mirrors.edge.kernel.org/pub/linux/libs/$pkgname/$pkgname-$pkgver.tar.{xz,sign})
-sha256sums=('b6c75895ad64bf78f5b5c464de871048d02f9403be518084e0d64b58f508c9fc'
+sha256sums=('41a6f8fa4d285b52cb7a5a87bda3e7370ecaac02d94aaa7ec1a23f0480b8bc3f'
 'SKIP')
 validpgpkeys=('E932D120BC2AEC444E558F0106CA9F5D1DCF2659') # "Marcel Holtmann 
"
 



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

2021-09-15 Thread David Runge via arch-commits
Date: Wednesday, September 15, 2021 @ 18:11:55
  Author: dvzrv
Revision: 1016055

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-09-15 18:11:47 UTC (rev 1016054)
+++ PKGBUILD2021-09-15 18:11:55 UTC (rev 1016055)
@@ -1,46 +0,0 @@
-# Maintainer: David Runge 
-# Contributor: Jonas Heinrich 
-
-pkgname=nextcloud-app-deck
-_name=deck
-pkgver=1.5.2
-pkgrel=1
-# upstream doesn't adhere to semver:
-# https://github.com/nextcloud/deck/issues/1197
-epoch=1
-pkgdesc="Kanban style organization tool aimed at personal planning and project 
organization"
-arch=('any')
-url="https://github.com/nextcloud/deck;
-license=('AGPL3')
-groups=('nextcloud-apps')
-makedepends=('nextcloud' 'ripgrep' 'yq')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/nextcloud-releases/${_name}/releases/download/v${pkgver}/${_name}.tar.gz;)
-sha512sums=('1164216e9a5ebdce7ce6f979f91f0bad635720ca1f7930fe7df173d5b0e55f22eb48f3cc178261b80dd596770eff3402ed4b3b2ae1e59d55712b93d5ff6f41b5')
-b2sums=('527f16d8a3ea6e32e7133ab11c1455214a915d8e46471e24287d82de3a06f976b0b032288dc2a079016a814696ed0b21aeb7f0d5c3eca3d757e6e55e9b54f465')
-
-_get_nextcloud_versions() {
-  _app_min_major_version="$(xq '.info.dependencies.nextcloud["@min-version"]' 
"${_name}/appinfo/info.xml"| sed 's/"//g')"
-  _app_max_major_version="$(xq '.info.dependencies.nextcloud["@max-version"]' 
"${_name}/appinfo/info.xml"| sed 's/"//g')"
-  _app_max_major_version=$(expr ${_app_max_major_version} + 1)
-}
-
-check() {
-  local _app_min_major_version
-  local _app_max_major_version
-  _get_nextcloud_versions
-
-  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() {
-  _get_nextcloud_versions
-
-  depends=("nextcloud>=${_app_min_major_version}" 
"nextcloud<${_app_max_major_version}")
-
-  install -vdm 755 "${pkgdir}/usr/share/webapps/nextcloud/apps/"
-  cp -av "${_name}" "${pkgdir}/usr/share/webapps/nextcloud/apps/"
-}

Copied: nextcloud-app-deck/repos/community-any/PKGBUILD (from rev 1016054, 
nextcloud-app-deck/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-09-15 18:11:55 UTC (rev 1016055)
@@ -0,0 +1,46 @@
+# Maintainer: David Runge 
+# Contributor: Jonas Heinrich 
+
+pkgname=nextcloud-app-deck
+_name=deck
+pkgver=1.5.3
+pkgrel=1
+# upstream doesn't adhere to semver:
+# https://github.com/nextcloud/deck/issues/1197
+epoch=1
+pkgdesc="Kanban style organization tool aimed at personal planning and project 
organization"
+arch=('any')
+url="https://github.com/nextcloud/deck;
+license=('AGPL3')
+groups=('nextcloud-apps')
+makedepends=('nextcloud' 'ripgrep' 'yq')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/nextcloud-releases/${_name}/releases/download/v${pkgver}/${_name}.tar.gz;)
+sha512sums=('7923ab7e88a96f66c1a7877b65f80e9062df2c6203a133bde1c060a88a829613b05ad8ada4c77a8077df70795354c61f02cc63b45f1e7bb7871a9e3d62d13fe8')
+b2sums=('7f950b7b414570eb73537ae9e56ccb3c6947c49e6a8f198cff7062f047a173c00d4df2e3375d347f450f70ea090d059afa25e798ce33d1a2cf7d8343d12242a4')
+
+_get_nextcloud_versions() {
+  _app_min_major_version="$(xq '.info.dependencies.nextcloud["@min-version"]' 
"${_name}/appinfo/info.xml"| sed 's/"//g')"
+  _app_max_major_version="$(xq '.info.dependencies.nextcloud["@max-version"]' 
"${_name}/appinfo/info.xml"| sed 's/"//g')"
+  _app_max_major_version=$(expr ${_app_max_major_version} + 1)
+}
+
+check() {
+  local _app_min_major_version
+  local _app_max_major_version
+  _get_nextcloud_versions
+
+  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() {
+  _get_nextcloud_versions
+
+  

  1   2   3   4   5   6   7   8   >