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

2020-09-09 Thread Jan Steffens via arch-commits
Date: Thursday, September 10, 2020 @ 01:50:21
  Author: heftig
Revision: 395674

1.1.0-3: Fix library in pkg-config file (used by GStreamer)

Modified:
  zxing-cpp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-10 00:27:45 UTC (rev 395673)
+++ PKGBUILD2020-09-10 01:50:21 UTC (rev 395674)
@@ -3,7 +3,7 @@
 
 pkgname=zxing-cpp
 pkgver=1.1.0
-pkgrel=2
+pkgrel=3
 pkgdesc="A C++ library to decode QRCode"
 arch=(x86_64)
 url="https://github.com/nu-book/zxing-cpp;
@@ -16,8 +16,12 @@
 prepare() {
   cd $pkgname-$pkgver
 
-  # Fix version in pkg-config file
-  sed -i 's/@VERSION@/@PROJECT_VERSION@/g' zxing.pc.in
+  # Fix pkg-config file
+  # 
https://github.com/nu-book/zxing-cpp/commit/877b6db1613ddae58e570801920f089c0f64b97f
+  # https://github.com/nu-book/zxing-cpp/issues/156
+  sed -e 's/@VERSION@/@PROJECT_VERSION@/' \
+  -e 's/@TARGET_ZXING@/ZXing/' \
+  -i zxing.pc.in
 }
 
 build() {


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

2020-09-09 Thread Jan Steffens via arch-commits
Date: Thursday, September 10, 2020 @ 01:50:35
  Author: heftig
Revision: 395675

archrelease: copy trunk to extra-x86_64

Added:
  zxing-cpp/repos/extra-x86_64/PKGBUILD
(from rev 395674, zxing-cpp/trunk/PKGBUILD)
Deleted:
  zxing-cpp/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-10 01:50:21 UTC (rev 395674)
+++ PKGBUILD2020-09-10 01:50:35 UTC (rev 395675)
@@ -1,33 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Maintainer: Maxime Arthaud 
-
-pkgname=zxing-cpp
-pkgver=1.1.0
-pkgrel=2
-pkgdesc="A C++ library to decode QRCode"
-arch=(x86_64)
-url="https://github.com/nu-book/zxing-cpp;
-license=(Apache)
-depends=(gcc-libs)
-makedepends=(cmake)
-source=($pkgname-$pkgver.tar.gz::"https://github.com/nu-book/zxing-cpp/archive/v$pkgver.tar.gz;)
-sha256sums=('283574a817a6efdb38e4f0480fb7697e9b1f90b55d6b16e92e1a2d2af9c43506')
-
-prepare() {
-  cd $pkgname-$pkgver
-
-  # Fix version in pkg-config file
-  sed -i 's/@VERSION@/@PROJECT_VERSION@/g' zxing.pc.in
-}
-
-build() {
-  cmake -B build -S $pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=None \
--DBUILD_EXAMPLES=OFF
-  cmake --build build
-}
-
-package() {
-  DESTDIR="$pkgdir" cmake --install build
-}

Copied: zxing-cpp/repos/extra-x86_64/PKGBUILD (from rev 395674, 
zxing-cpp/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-10 01:50:35 UTC (rev 395675)
@@ -0,0 +1,37 @@
+# Maintainer: Antonio Rojas 
+# Maintainer: Maxime Arthaud 
+
+pkgname=zxing-cpp
+pkgver=1.1.0
+pkgrel=3
+pkgdesc="A C++ library to decode QRCode"
+arch=(x86_64)
+url="https://github.com/nu-book/zxing-cpp;
+license=(Apache)
+depends=(gcc-libs)
+makedepends=(cmake)
+source=($pkgname-$pkgver.tar.gz::"https://github.com/nu-book/zxing-cpp/archive/v$pkgver.tar.gz;)
+sha256sums=('283574a817a6efdb38e4f0480fb7697e9b1f90b55d6b16e92e1a2d2af9c43506')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  # Fix pkg-config file
+  # 
https://github.com/nu-book/zxing-cpp/commit/877b6db1613ddae58e570801920f089c0f64b97f
+  # https://github.com/nu-book/zxing-cpp/issues/156
+  sed -e 's/@VERSION@/@PROJECT_VERSION@/' \
+  -e 's/@TARGET_ZXING@/ZXing/' \
+  -i zxing.pc.in
+}
+
+build() {
+  cmake -B build -S $pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=None \
+-DBUILD_EXAMPLES=OFF
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+}


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

2020-09-09 Thread Jan Steffens via arch-commits
Date: Thursday, September 10, 2020 @ 00:27:24
  Author: heftig
Revision: 395671

1.1.0-2: Fix version in pkg-config file (used by GStreamer)

Modified:
  zxing-cpp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-10 00:27:16 UTC (rev 395670)
+++ PKGBUILD2020-09-10 00:27:24 UTC (rev 395671)
@@ -3,7 +3,7 @@
 
 pkgname=zxing-cpp
 pkgver=1.1.0
-pkgrel=1
+pkgrel=2
 pkgdesc="A C++ library to decode QRCode"
 arch=(x86_64)
 url="https://github.com/nu-book/zxing-cpp;
@@ -13,6 +13,13 @@
 
source=($pkgname-$pkgver.tar.gz::"https://github.com/nu-book/zxing-cpp/archive/v$pkgver.tar.gz;)
 sha256sums=('283574a817a6efdb38e4f0480fb7697e9b1f90b55d6b16e92e1a2d2af9c43506')
 
+prepare() {
+  cd $pkgname-$pkgver
+
+  # Fix version in pkg-config file
+  sed -i 's/@VERSION@/@PROJECT_VERSION@/g' zxing.pc.in
+}
+
 build() {
   cmake -B build -S $pkgname-$pkgver \
 -DCMAKE_INSTALL_PREFIX=/usr \


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

2020-09-09 Thread Jan Steffens via arch-commits
Date: Thursday, September 10, 2020 @ 00:27:16
  Author: heftig
Revision: 395670

0.4.3-3: Add pkg-config file that matches name (used by GStreamer)

Modified:
  wildmidi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-09 23:19:20 UTC (rev 395669)
+++ PKGBUILD2020-09-10 00:27:16 UTC (rev 395670)
@@ -4,7 +4,7 @@
 
 pkgname=wildmidi
 pkgver=0.4.3
-pkgrel=2
+pkgrel=3
 pkgdesc='Open Source MIDI Synthesizer'
 arch=('x86_64')
 url="https://www.mindwerks.net/projects/wildmidi/;
@@ -27,4 +27,5 @@
 package() {
   cd build
   make DESTDIR="${pkgdir}" install
+  ln -s wildmidi.pc "$pkgdir/usr/lib/pkgconfig/WildMIDI.pc"
 }


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

2020-09-09 Thread Jan Steffens via arch-commits
Date: Thursday, September 10, 2020 @ 00:27:43
  Author: heftig
Revision: 395672

archrelease: copy trunk to extra-x86_64

Added:
  wildmidi/repos/extra-x86_64/PKGBUILD
(from rev 395671, wildmidi/trunk/PKGBUILD)
Deleted:
  wildmidi/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-10 00:27:24 UTC (rev 395671)
+++ PKGBUILD2020-09-10 00:27:43 UTC (rev 395672)
@@ -1,30 +0,0 @@
-# Maintainer: Jan de Groot 
-# Contributor: Jaroslav Lichtblau 
-# Contributor: Panagiotis Papadopoulos
-
-pkgname=wildmidi
-pkgver=0.4.3
-pkgrel=2
-pkgdesc='Open Source MIDI Synthesizer'
-arch=('x86_64')
-url="https://www.mindwerks.net/projects/wildmidi/;
-license=('LGPL3')
-depends=('alsa-lib')
-makedepends=('cmake')
-source=(https://github.com/psi29a/wildmidi/archive/wildmidi-${pkgver}.tar.gz)
-sha256sums=('498e5a96455bb4b91b37188ad6dcb070824e92c44f5ed452b90adbaec8eef3c5')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake -D CMAKE_INSTALL_PREFIX=/usr ../$pkgname-$pkgname-$pkgver
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: wildmidi/repos/extra-x86_64/PKGBUILD (from rev 395671, 
wildmidi/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-10 00:27:43 UTC (rev 395672)
@@ -0,0 +1,31 @@
+# Maintainer: Jan de Groot 
+# Contributor: Jaroslav Lichtblau 
+# Contributor: Panagiotis Papadopoulos
+
+pkgname=wildmidi
+pkgver=0.4.3
+pkgrel=3
+pkgdesc='Open Source MIDI Synthesizer'
+arch=('x86_64')
+url="https://www.mindwerks.net/projects/wildmidi/;
+license=('LGPL3')
+depends=('alsa-lib')
+makedepends=('cmake')
+source=(https://github.com/psi29a/wildmidi/archive/wildmidi-${pkgver}.tar.gz)
+sha256sums=('498e5a96455bb4b91b37188ad6dcb070824e92c44f5ed452b90adbaec8eef3c5')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake -D CMAKE_INSTALL_PREFIX=/usr ../$pkgname-$pkgname-$pkgver
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+  ln -s wildmidi.pc "$pkgdir/usr/lib/pkgconfig/WildMIDI.pc"
+}


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

2020-09-09 Thread Jan Steffens via arch-commits
Date: Thursday, September 10, 2020 @ 00:27:45
  Author: heftig
Revision: 395673

archrelease: copy trunk to extra-x86_64

Added:
  zxing-cpp/repos/extra-x86_64/PKGBUILD
(from rev 395671, zxing-cpp/trunk/PKGBUILD)
Deleted:
  zxing-cpp/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-10 00:27:43 UTC (rev 395672)
+++ PKGBUILD2020-09-10 00:27:45 UTC (rev 395673)
@@ -1,26 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Maintainer: Maxime Arthaud 
-
-pkgname=zxing-cpp
-pkgver=1.1.0
-pkgrel=1
-pkgdesc="A C++ library to decode QRCode"
-arch=(x86_64)
-url="https://github.com/nu-book/zxing-cpp;
-license=(Apache)
-depends=(gcc-libs)
-makedepends=(cmake)
-source=($pkgname-$pkgver.tar.gz::"https://github.com/nu-book/zxing-cpp/archive/v$pkgver.tar.gz;)
-sha256sums=('283574a817a6efdb38e4f0480fb7697e9b1f90b55d6b16e92e1a2d2af9c43506')
-
-build() {
-  cmake -B build -S $pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=None \
--DBUILD_EXAMPLES=OFF
-  cmake --build build
-}
-
-package() {
-  DESTDIR="$pkgdir" cmake --install build
-}

Copied: zxing-cpp/repos/extra-x86_64/PKGBUILD (from rev 395671, 
zxing-cpp/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-10 00:27:45 UTC (rev 395673)
@@ -0,0 +1,33 @@
+# Maintainer: Antonio Rojas 
+# Maintainer: Maxime Arthaud 
+
+pkgname=zxing-cpp
+pkgver=1.1.0
+pkgrel=2
+pkgdesc="A C++ library to decode QRCode"
+arch=(x86_64)
+url="https://github.com/nu-book/zxing-cpp;
+license=(Apache)
+depends=(gcc-libs)
+makedepends=(cmake)
+source=($pkgname-$pkgver.tar.gz::"https://github.com/nu-book/zxing-cpp/archive/v$pkgver.tar.gz;)
+sha256sums=('283574a817a6efdb38e4f0480fb7697e9b1f90b55d6b16e92e1a2d2af9c43506')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  # Fix version in pkg-config file
+  sed -i 's/@VERSION@/@PROJECT_VERSION@/g' zxing.pc.in
+}
+
+build() {
+  cmake -B build -S $pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=None \
+-DBUILD_EXAMPLES=OFF
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+}


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

2020-09-09 Thread Christian Hesse via arch-commits
Date: Wednesday, September 9, 2020 @ 23:19:18
  Author: eworm
Revision: 395668

upgpkg: easy-rsa 3.0.8-1: new upstream release

Modified:
  easy-rsa/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-09 21:43:31 UTC (rev 395667)
+++ PKGBUILD2020-09-09 23:19:18 UTC (rev 395668)
@@ -1,7 +1,7 @@
 # Maintainer: Thomas Bächler 
 
 pkgname=easy-rsa
-pkgver=3.0.7
+pkgver=3.0.8
 pkgrel=1
 pkgdesc='Simple shell based CA utility'
 arch=('any')
@@ -15,7 +15,7 @@
'6F4056821152F03B6B24F2FCF8489F839D7367F3') # Eric Crist 

 
source=("https://github.com/OpenVPN/easy-rsa/releases/download/v${pkgver}/EasyRSA-${pkgver}.tgz"{,.sig}
 '0001-fix-paths.patch')
-sha256sums=('157d2e8c115c3ad070c1b2641a4c9191e06a32a8e50971847a718251eeb510a8'
+sha256sums=('cae114c212a5be4d89f2253d36c70ab94f68d295f24e8b6711c2cab0fabf7e18'
 'SKIP'
 '097c0d4980698004b11cc5e4cf12229d1f4a498fd1bd5d0442f4bec2cf7b11ea')
 


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

2020-09-09 Thread Christian Hesse via arch-commits
Date: Wednesday, September 9, 2020 @ 23:19:20
  Author: eworm
Revision: 395669

archrelease: copy trunk to testing-any

Added:
  easy-rsa/repos/testing-any/
  easy-rsa/repos/testing-any/0001-fix-paths.patch
(from rev 395668, easy-rsa/trunk/0001-fix-paths.patch)
  easy-rsa/repos/testing-any/PKGBUILD
(from rev 395668, easy-rsa/trunk/PKGBUILD)

--+
 0001-fix-paths.patch |   29 +
 PKGBUILD |   47 +++
 2 files changed, 76 insertions(+)

Copied: easy-rsa/repos/testing-any/0001-fix-paths.patch (from rev 395668, 
easy-rsa/trunk/0001-fix-paths.patch)
===
--- testing-any/0001-fix-paths.patch(rev 0)
+++ testing-any/0001-fix-paths.patch2020-09-09 23:19:20 UTC (rev 395669)
@@ -0,0 +1,29 @@
+From 49facdddb343cefb0cb85bcc7eb52fa01db1f377 Mon Sep 17 00:00:00 2001
+From: Christian Hesse 
+Date: Thu, 28 Sep 2017 11:08:39 +0200
+Subject: [PATCH 1/1] fix paths
+
+We have the easyrsa executable in /usr/bin/ - so use use current working
+directory, not executable path.
+
+Signed-off-by: Christian Hesse 
+---
+ easyrsa | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/easyrsa b/easyrsa
+index 11d2357..c665ab7 100755
+--- a/easyrsa
 b/easyrsa
+@@ -1660,9 +1660,9 @@ Note: using Easy-RSA configuration from: $vars"
+   fi
+   
+   # Set defaults, preferring existing env-vars if present
+-  set_var EASYRSA "$prog_dir"
++  set_var EASYRSA "$PWD"
+   set_var EASYRSA_OPENSSL openssl
+-  set_var EASYRSA_PKI "$PWD/pki"
++  set_var EASYRSA_PKI "$EASYRSA/pki"
+   set_var EASYRSA_DN  cn_only
+   set_var EASYRSA_REQ_COUNTRY "US"
+   set_var EASYRSA_REQ_PROVINCE"California"

Copied: easy-rsa/repos/testing-any/PKGBUILD (from rev 395668, 
easy-rsa/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2020-09-09 23:19:20 UTC (rev 395669)
@@ -0,0 +1,47 @@
+# Maintainer: Thomas Bächler 
+
+pkgname=easy-rsa
+pkgver=3.0.8
+pkgrel=1
+pkgdesc='Simple shell based CA utility'
+arch=('any')
+url='https://github.com/OpenVPN/easy-rsa'
+depends=('openssl' 'sh')
+license=('custom')
+backup=('etc/easy-rsa/openssl-easyrsa.cnf'
+   'etc/easy-rsa/vars')
+validpgpkeys=(
+   '65FF3F24AA08E882CB444C94D731D97A606FD463'  # Josh Cepek 

+   '6F4056821152F03B6B24F2FCF8489F839D7367F3') # Eric Crist 

+source=("https://github.com/OpenVPN/easy-rsa/releases/download/v${pkgver}/EasyRSA-${pkgver}.tgz"{,.sig}
+'0001-fix-paths.patch')
+sha256sums=('cae114c212a5be4d89f2253d36c70ab94f68d295f24e8b6711c2cab0fabf7e18'
+'SKIP'
+'097c0d4980698004b11cc5e4cf12229d1f4a498fd1bd5d0442f4bec2cf7b11ea')
+
+prepare() {
+   cd EasyRSA-${pkgver}/
+
+   # fix output of help command, we have it in PATH
+   sed -i 's|./easyrsa|easyrsa|' easyrsa
+
+   # fix paths
+   patch -Np1 < "${srcdir}"/0001-fix-paths.patch
+}
+
+package() {
+   cd EasyRSA-${pkgver}/
+
+   install -D -m0755 easyrsa "${pkgdir}"/usr/bin/easyrsa
+
+   install -D -m0644 openssl-easyrsa.cnf 
"${pkgdir}"/etc/easy-rsa/openssl-easyrsa.cnf
+   install -D -m0644 vars.example "${pkgdir}"/etc/easy-rsa/vars
+   install -d -m0755 "${pkgdir}"/etc/easy-rsa/x509-types/
+   install -m0644 x509-types/* "${pkgdir}"/etc/easy-rsa/x509-types/
+
+   install -d -m0755  "${pkgdir}"/usr/share/doc/easy-rsa/
+   install -m0644 doc/* ChangeLog "${pkgdir}"/usr/share/doc/easy-rsa/
+
+   install -D -m0644 COPYING.md 
"${pkgdir}"/usr/share/licenses/easy-rsa/COPYING
+}
+


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

2020-09-09 Thread Sergej Pupykin via arch-commits
Date: Wednesday, September 9, 2020 @ 23:12:03
  Author: spupykin
Revision: 701678

upgpkg: prosody 1:0.11.6-1

Modified:
  prosody/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-09 23:11:54 UTC (rev 701677)
+++ PKGBUILD2020-09-09 23:12:03 UTC (rev 701678)
@@ -8,7 +8,7 @@
 pkgname=prosody
 epoch=1
 pkgrel=1
-pkgver=0.11.5
+pkgver=0.11.6
 pkgdesc="Lightweight and extensible Jabber/XMPP server written in Lua"
 arch=('x86_64')
 url="https://prosody.im/;
@@ -23,13 +23,14 @@
 install=prosody.install
 backup=('etc/prosody/prosody.cfg.lua')
 validpgpkeys=('32A9EDDE3609931EB98CEAC315907E8E7BDD6BFE'
- '3E52119EF853C59678DBBF6BADED9A77B67AD329')
+ '3E52119EF853C59678DBBF6BADED9A77B67AD329'
+ 'C01A477A8F69E6E57F5C54CDE7AB958013F1F1D5')
 source=("https://prosody.im/downloads/source/prosody-$pkgver.tar.gz"{,.asc}
 'prosody.tmpfile.d'
 'prosody.logrotated'
 'sysuser.conf'
 'prosody.service')
-sha256sums=('55f8bd65d5d2af61cc739bd6164e4207011e0d2d260cde583071c90d8d85408b'
+sha256sums=('cda1db631c5f91f8439c66c9204dbf3bc41efd65313f7f5d3c88121ff9141755'
 'SKIP'
 '0753bd9260f1cfdce6e18e01a61e320b396acfe9fca8ccf3250653bfa6af997e'
 '5a2466b73bd069fb73be97a4e23b24e4c8dd1adb7db871cb8f5ab4094c1f967f'


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

2020-09-09 Thread Sergej Pupykin via arch-commits
Date: Wednesday, September 9, 2020 @ 23:12:38
  Author: spupykin
Revision: 701681

archrelease: copy trunk to community-x86_64

Added:
  tigervnc/repos/community-x86_64/PKGBUILD
(from rev 701680, tigervnc/trunk/PKGBUILD)
  tigervnc/repos/community-x86_64/vncserver.service
(from rev 701680, tigervnc/trunk/vncserver.service)
  tigervnc/repos/community-x86_64/vncviewer.desktop
(from rev 701680, tigervnc/trunk/vncviewer.desktop)
Deleted:
  tigervnc/repos/community-x86_64/PKGBUILD
  tigervnc/repos/community-x86_64/vncserver.service
  tigervnc/repos/community-x86_64/vncviewer.desktop

---+
 PKGBUILD  |  132 ++--
 vncserver.service |   58 +++---
 vncviewer.desktop |   18 +++
 3 files changed, 104 insertions(+), 104 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-09 23:12:28 UTC (rev 701680)
+++ PKGBUILD2020-09-09 23:12:38 UTC (rev 701681)
@@ -1,66 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Maintainer: Uroš Vampl 
-
-pkgname=tigervnc
-pkgver=1.10.1
-pkgrel=2
-_xorgver=1.20.6
-pkgdesc="Suite of VNC servers and clients. Based on the VNC 4 branch of 
TightVNC."
-arch=('x86_64')
-url="http://www.tigervnc.org;
-license=('GPL')
-depends=('fltk' 'pam' 'gnutls' 'libjpeg-turbo' 'libxtst' 'pixman'
-'xorg-xauth' 'xorg-xsetroot' 'xkeyboard-config' 'xorg-xkbcomp'
-'libgl' 'libgcrypt' 'perl' 'libxdamage' 'libxfont2' 'libdrm')
-makedepends=('cmake' 'nasm' 'xorg-font-util' 'xorg-util-macros'
-'xtrans' 'xorgproto'
-'mesa' 'imagemagick' 'java-environment=8')
-optdepends=('mesa: for OpenGL functionality in Xvnc')
-conflicts=('tightvnc')
-source=($pkgname-$pkgver.tar.gz::https://github.com/TigerVNC/tigervnc/archive/v${pkgver}.tar.gz
-   
ftp://ftp.freedesktop.org/pub/xorg/individual/xserver/xorg-server-${_xorgver}.tar.bz2
-   vncserver.service
-   vncviewer.desktop)
-sha256sums=('19fcc80d7d35dd58115262e53cac87d8903180261d94c2a6b0c19224f50b58c4'
-'6316146304e6e8a36d5904987ae2917b5d5b195dc9fc63d67f7aca137e5a51d1'
-'80f8fc7598d05e645ae73bc3371bbdededf07136a9f024ce6ebbfe469335b16e'
-'2ada7da1a926d78f11d2dd8ec376ac5877d2ce2bbb57a99526c13d8fcae6ddd7')
-
-prepare() {
-  cd "$srcdir"/${pkgname}-${pkgver}
-  cd unix/xserver
-  cp -r "$srcdir"/xorg-server-${_xorgver}/* .
-  patch -Np1 -i ../xserver120.patch
-}
-
-build() {
-  cd "$srcdir"/${pkgname}-${pkgver}
-
-  cmake -G "Unix Makefiles" \
--DCMAKE_INSTALL_PREFIX=/usr \
--DBUILD_JAVA=TRUE
-  make
-
-  cd unix/xserver
-  autoreconf -fiv
-  CFLAGS="$CFLAGS -I/usr/include/libdrm" ./configure --prefix=/usr \
-   --disable-static --without-dtrace \
-   --disable-xorg --disable-xnest --disable-xvfb --disable-dmx \
-   --disable-xwin --disable-xephyr --disable-kdrive --disable-xwayland \
-   --disable-config-hal --disable-config-udev --with-pic \
-   --disable-unit-tests --disable-devel-docs --disable-selective-werror \
-   --disable-dri --enable-dri2 --enable-dri3 --enable-glx
-  make
-}
-
-package() {
-  cd "$srcdir"/${pkgname}-${pkgver}
-  make DESTDIR="$pkgdir" install
-  install -Dm0644 java/VncViewer.jar 
"${pkgdir}"/usr/share/vnc/classes/VncViewer.jar
-  cd unix/xserver/hw/vnc
-  make DESTDIR="$pkgdir" install
-  install -Dm0644 
"$srcdir"/${pkgname}-${pkgver}/contrib/systemd/user/vncserver@.service \
-"$pkgdir"/usr/lib/systemd/user/vncserver@.service
-  install -Dm0644 "$srcdir"/vncserver.service 
"$pkgdir"/usr/lib/systemd/system/vncserver.service
-  install -Dm0644 "$srcdir"/vncviewer.desktop 
"$pkgdir"/usr/share/applications/vncviewer.desktop
-}

Copied: tigervnc/repos/community-x86_64/PKGBUILD (from rev 701680, 
tigervnc/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-09 23:12:38 UTC (rev 701681)
@@ -0,0 +1,66 @@
+# Maintainer: Sergej Pupykin 
+# Maintainer: Uroš Vampl 
+
+pkgname=tigervnc
+pkgver=1.11.0
+pkgrel=1
+_xorgver=1.20.8
+pkgdesc="Suite of VNC servers and clients. Based on the VNC 4 branch of 
TightVNC."
+arch=('x86_64')
+url="http://www.tigervnc.org;
+license=('GPL')
+depends=('fltk' 'pam' 'gnutls' 'libjpeg-turbo' 'libxtst' 'pixman'
+'xorg-xauth' 'xorg-xsetroot' 'xkeyboard-config' 'xorg-xkbcomp'
+'libgl' 'libgcrypt' 'perl' 'libxdamage' 'libxfont2' 'libdrm')
+makedepends=('cmake' 'nasm' 'xorg-font-util' 'xorg-util-macros'
+'xtrans' 'xorgproto'
+'mesa' 'imagemagick' 'java-environment=8')
+optdepends=('mesa: for OpenGL functionality in Xvnc')
+conflicts=('tightvnc')
+source=($pkgname-$pkgver.tar.gz::https://github.com/TigerVNC/tigervnc/archive/v${pkgver}.tar.gz
+   
ftp://ftp.freedesktop.org/pub/xorg/individual/xserver/xorg-server-${_xorgver}.tar.bz2
+   vncserver.service
+   vncviewer.desktop)

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

2020-09-09 Thread Sergej Pupykin via arch-commits
Date: Wednesday, September 9, 2020 @ 23:12:28
  Author: spupykin
Revision: 701680

upgpkg: tigervnc 1.11.0-1

Modified:
  tigervnc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-09 23:12:17 UTC (rev 701679)
+++ PKGBUILD2020-09-09 23:12:28 UTC (rev 701680)
@@ -2,9 +2,9 @@
 # Maintainer: Uroš Vampl 
 
 pkgname=tigervnc
-pkgver=1.10.1
-pkgrel=2
-_xorgver=1.20.6
+pkgver=1.11.0
+pkgrel=1
+_xorgver=1.20.8
 pkgdesc="Suite of VNC servers and clients. Based on the VNC 4 branch of 
TightVNC."
 arch=('x86_64')
 url="http://www.tigervnc.org;
@@ -21,8 +21,8 @@

ftp://ftp.freedesktop.org/pub/xorg/individual/xserver/xorg-server-${_xorgver}.tar.bz2
vncserver.service
vncviewer.desktop)
-sha256sums=('19fcc80d7d35dd58115262e53cac87d8903180261d94c2a6b0c19224f50b58c4'
-'6316146304e6e8a36d5904987ae2917b5d5b195dc9fc63d67f7aca137e5a51d1'
+sha256sums=('3648eca472a92a4e8fe55b27cd397b1bf16bad0b24a3a1988661f44553f5e2c3'
+'d17b646bee4ba0fb7850c1cc55b18e3e8513ed5c02bdf38da7e107f84e2d0146'
 '80f8fc7598d05e645ae73bc3371bbdededf07136a9f024ce6ebbfe469335b16e'
 '2ada7da1a926d78f11d2dd8ec376ac5877d2ce2bbb57a99526c13d8fcae6ddd7')
 
@@ -59,7 +59,7 @@
   install -Dm0644 java/VncViewer.jar 
"${pkgdir}"/usr/share/vnc/classes/VncViewer.jar
   cd unix/xserver/hw/vnc
   make DESTDIR="$pkgdir" install
-  install -Dm0644 
"$srcdir"/${pkgname}-${pkgver}/contrib/systemd/user/vncserver@.service \
+  install -Dm0644 
"$srcdir"/${pkgname}-${pkgver}/unix/vncserver/vncserver@.service \
 "$pkgdir"/usr/lib/systemd/user/vncserver@.service
   install -Dm0644 "$srcdir"/vncserver.service 
"$pkgdir"/usr/lib/systemd/system/vncserver.service
   install -Dm0644 "$srcdir"/vncviewer.desktop 
"$pkgdir"/usr/share/applications/vncviewer.desktop


[arch-commits] Commit in prosody/repos/community-x86_64 (12 files)

2020-09-09 Thread Sergej Pupykin via arch-commits
Date: Wednesday, September 9, 2020 @ 23:12:17
  Author: spupykin
Revision: 701679

archrelease: copy trunk to community-x86_64

Added:
  prosody/repos/community-x86_64/PKGBUILD
(from rev 701678, prosody/trunk/PKGBUILD)
  prosody/repos/community-x86_64/prosody.install
(from rev 701678, prosody/trunk/prosody.install)
  prosody/repos/community-x86_64/prosody.logrotated
(from rev 701678, prosody/trunk/prosody.logrotated)
  prosody/repos/community-x86_64/prosody.service
(from rev 701678, prosody/trunk/prosody.service)
  prosody/repos/community-x86_64/prosody.tmpfile.d
(from rev 701678, prosody/trunk/prosody.tmpfile.d)
  prosody/repos/community-x86_64/sysuser.conf
(from rev 701678, prosody/trunk/sysuser.conf)
Deleted:
  prosody/repos/community-x86_64/PKGBUILD
  prosody/repos/community-x86_64/prosody.install
  prosody/repos/community-x86_64/prosody.logrotated
  prosody/repos/community-x86_64/prosody.service
  prosody/repos/community-x86_64/prosody.tmpfile.d
  prosody/repos/community-x86_64/sysuser.conf

+
 PKGBUILD   |  177 +--
 prosody.install|   46 ++---
 prosody.logrotated |   18 ++---
 prosody.service|   30 
 prosody.tmpfile.d  |4 -
 sysuser.conf   |6 -
 6 files changed, 141 insertions(+), 140 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-09 23:12:03 UTC (rev 701678)
+++ PKGBUILD2020-09-09 23:12:17 UTC (rev 701679)
@@ -1,88 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Old Maintainer: Dwayne Bent 
-# Old Maintainer: Tilman Vatteroth 
-# Contributor: Paul-Sebastian Manole 
-# Contributor: Timothée Ravier 
-# Contributor: Christoph Stahl 
-
-pkgname=prosody
-epoch=1
-pkgrel=1
-pkgver=0.11.5
-pkgdesc="Lightweight and extensible Jabber/XMPP server written in Lua"
-arch=('x86_64')
-url="https://prosody.im/;
-license=('MIT')
-depends=('lua52' 'lua52-socket' 'lua52-expat' 'lua52-filesystem' 'libidn'
- 'openssl')
-conflicts=('prosody')
-provides=('prosody')
-optdepends=('lua52-sec: TLS encryption support'
-#  'lua52-event: libevent support'
-   'lua52-dbi: SQL storage support')
-install=prosody.install
-backup=('etc/prosody/prosody.cfg.lua')
-validpgpkeys=('32A9EDDE3609931EB98CEAC315907E8E7BDD6BFE'
- '3E52119EF853C59678DBBF6BADED9A77B67AD329')
-source=("https://prosody.im/downloads/source/prosody-$pkgver.tar.gz"{,.asc}
-'prosody.tmpfile.d'
-'prosody.logrotated'
-'sysuser.conf'
-'prosody.service')
-sha256sums=('55f8bd65d5d2af61cc739bd6164e4207011e0d2d260cde583071c90d8d85408b'
-'SKIP'
-'0753bd9260f1cfdce6e18e01a61e320b396acfe9fca8ccf3250653bfa6af997e'
-'5a2466b73bd069fb73be97a4e23b24e4c8dd1adb7db871cb8f5ab4094c1f967f'
-'e5c30ffbb066f0ed375b3313490c535d8c9df018726f6cecf9e3ddfd2e48'
-'ea34a3802e9a6b181cc1039eda48538fc9335c432223b225a8801d9d636f268c')
-
-prepare() {
-  cd prosody-$pkgver
-
-  # disable logging to output and activate syslog
-  sed -i s/"info = "/"-- info = "/g prosody.cfg.lua.dist
-  sed -i s/"error = "/"-- error = "/g prosody.cfg.lua.dist
-  sed -i s/"--\ \"\*syslog\"\;"/"\"*syslog\"\;"/g prosody.cfg.lua.dist
-
-  # add pidfile and daemonize
-  # daemonize is important for systemd!
-  mv prosody.cfg.lua.dist prosody.cfg.lua.old
-
-  echo --Important for systemd >> prosody.cfg.lua.dist
-  echo -- daemonize is important for systemd. if you set this to false the 
systemd startup will freeze. >> prosody.cfg.lua.dist
-  echo daemonize = true >> prosody.cfg.lua.dist
-  echo 'pidfile = "/run/prosody/prosody.pid"'>> prosody.cfg.lua.dist
-  echo "" >> prosody.cfg.lua.dist
-  cat prosody.cfg.lua.old >> prosody.cfg.lua.dist
-  rm prosody.cfg.lua.old
-
-  #sed -i 's|sock, err = socket.udp();|sock, err = (socket.udp4 or 
socket.udp)();|g' net/dns.lua
-}
-
-build() {
-  cd prosody-$pkgver
-  ./configure --ostype=linux --prefix=/usr --sysconfdir=/etc/prosody \
---datadir=/var/lib/prosody --with-lua-include=/usr/include/lua5.2 \
---cflags="${CFLAGS} -fPIC -Wall -Wextra -D_GNU_SOURCE" \
---ldflags="${LDFLAGS} -shared" --no-example-certs \
---runwith=lua5.2
-  make
-}
-
-package() {
-  cd prosody-$pkgver
-  make DESTDIR="${pkgdir}" install
-  make DESTDIR="${pkgdir}" install -C tools/migration
-
-  install -Dm 0644 "$srcdir"/prosody.tmpfile.d 
"${pkgdir}"/usr/lib/tmpfiles.d/prosody.conf
-  install -Dm 0644 "$srcdir"/prosody.service 
"${pkgdir}"/usr/lib/systemd/system/prosody.service
-  install -Dm644 "$srcdir"/sysuser.conf 
"$pkgdir"/usr/lib/sysusers.d/prosody.conf
-
-  for i in tools/*.lua; do
-install -Dm 0644 ${i} "${pkgdir}"/usr/share/prosody/${i}
-  done
-
-  install -Dm 0644 COPYING "${pkgdir}"/usr/share/licenses/prosody/COPYING
-  install -Dm 0644 "$srcdir"/prosody.logrotated 
"${pkgdir}"/etc/logrotate.d/prosody
-  rm "${pkgdir}"/etc/prosody/certs/*
-}

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

2020-09-09 Thread Sergej Pupykin via arch-commits
Date: Wednesday, September 9, 2020 @ 23:11:43
  Author: spupykin
Revision: 701676

upgpkg: nextcloud 19.0.3-1

Modified:
  nextcloud/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-09 23:11:37 UTC (rev 701675)
+++ PKGBUILD2020-09-09 23:11:43 UTC (rev 701676)
@@ -1,7 +1,7 @@
 # Maintainer: Sergej Pupykin 
 
 pkgname=nextcloud
-pkgver=19.0.2
+pkgver=19.0.3
 pkgrel=1
 pkgdesc="A cloud server to store your files centrally on a hardware controlled 
by you"
 arch=('any')
@@ -25,7 +25,7 @@
 
source=("https://download.nextcloud.com/server/releases/nextcloud-${pkgver}.tar.bz2"{,.asc}
 'apache.example.conf'
 'nextcloud.hook')
-sha256sums=('8152f385fdb0645114e0043aaf07b0de046fbaf205fa6d6bf530d22db86c66a5'
+sha256sums=('fc503985e8aa4ed795d882e35679e0e1b7670181768e7820307222d8b4658969'
 'SKIP'
 '30a8ad62b0dc9523ca7f0387b1f0483d196c1e011ec7e3a5b98e7d33c721d4bf'
 'd084cd6423c03f98087884b3c7b81f9510d1bea6c518860b64787a7f976cf0d3')


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

2020-09-09 Thread Sergej Pupykin via arch-commits
Date: Wednesday, September 9, 2020 @ 23:11:37
  Author: spupykin
Revision: 701675

archrelease: copy trunk to community-x86_64

Added:
  mcabber/repos/community-x86_64/PKGBUILD
(from rev 701674, mcabber/trunk/PKGBUILD)
Deleted:
  mcabber/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-09 23:11:26 UTC (rev 701674)
+++ PKGBUILD2020-09-09 23:11:37 UTC (rev 701675)
@@ -1,35 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Maintainer: Thorsten Töpper 
-# Contributor:  3ED 
-
-pkgname=mcabber
-pkgver=1.1.0
-pkgrel=3
-pkgdesc="A small Jabber console client, includes features: SSL, PGP, MUC, UTF8"
-arch=('x86_64')
-url="https://www.lilotux.net/~mikael/mcabber/;
-license=('GPL')
-depends=('ncurses' 'glib2' 'loudmouth' 'gpgme' 'libotr' 'aspell')
-makedepends=('pkg-config')
-validpgpkeys=('EACADFF156849BC89653139E3C2900DEACB7FC95')
-source=(https://www.lilotux.net/~mikael/mcabber/files/$pkgname-${pkgver/_/-}.tar.bz2{,.asc})
-sha256sums=('04fc2c22c36da75cf4b761b5deccd074a19836368f38ab9d03c1e5708b41f0bd'
-'SKIP')
-
-build() {
-  cd "${srcdir}"/$pkgname-${pkgver/_/-}
-  CFLAGS+=' -fcommon' # 
https://wiki.gentoo.org/wiki/Gcc_10_porting_notes/fno_common
-  ./configure --prefix=/usr --enable-hgcset \
-  --mandir=/usr/share/man \
-  --enable-aspell --enable-otr
-  make
-}
-
-package() {
-  cd "${srcdir}"/$pkgname-${pkgver/_/-}
-
-  make DESTDIR="${pkgdir}" install
-  mkdir -p "${pkgdir}"/usr/share/mcabber/example
-  cp -a "${srcdir}"/$pkgname-${pkgver/_/-}/mcabberrc.example \
-   "${pkgdir}"/usr/share/mcabber/example/mcabberrc
-}

Copied: mcabber/repos/community-x86_64/PKGBUILD (from rev 701674, 
mcabber/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-09 23:11:37 UTC (rev 701675)
@@ -0,0 +1,35 @@
+# Maintainer: Sergej Pupykin 
+# Maintainer: Thorsten Töpper 
+# Contributor:  3ED 
+
+pkgname=mcabber
+pkgver=1.1.1
+pkgrel=1
+pkgdesc="A small Jabber console client, includes features: SSL, PGP, MUC, UTF8"
+arch=('x86_64')
+url="https://www.lilotux.net/~mikael/mcabber/;
+license=('GPL')
+depends=('ncurses' 'glib2' 'loudmouth' 'gpgme' 'libotr' 'aspell')
+makedepends=('pkg-config')
+validpgpkeys=('EACADFF156849BC89653139E3C2900DEACB7FC95')
+source=(https://www.lilotux.net/~mikael/mcabber/files/$pkgname-${pkgver/_/-}.tar.bz2{,.asc})
+sha256sums=('d789ceb33eaa78967c172241e941d43f91300ee0235a33f826f3df6f1163f959'
+'SKIP')
+
+build() {
+  cd "${srcdir}"/$pkgname-${pkgver/_/-}
+  CFLAGS+=' -fcommon' # 
https://wiki.gentoo.org/wiki/Gcc_10_porting_notes/fno_common
+  ./configure --prefix=/usr --enable-hgcset \
+  --mandir=/usr/share/man \
+  --enable-aspell --enable-otr
+  make
+}
+
+package() {
+  cd "${srcdir}"/$pkgname-${pkgver/_/-}
+
+  make DESTDIR="${pkgdir}" install
+  mkdir -p "${pkgdir}"/usr/share/mcabber/example
+  cp -a "${srcdir}"/$pkgname-${pkgver/_/-}/mcabberrc.example \
+   "${pkgdir}"/usr/share/mcabber/example/mcabberrc
+}


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

2020-09-09 Thread Sergej Pupykin via arch-commits
Date: Wednesday, September 9, 2020 @ 23:11:54
  Author: spupykin
Revision: 701677

archrelease: copy trunk to community-any

Added:
  nextcloud/repos/community-any/PKGBUILD
(from rev 701676, nextcloud/trunk/PKGBUILD)
  nextcloud/repos/community-any/apache.example.conf
(from rev 701676, nextcloud/trunk/apache.example.conf)
  nextcloud/repos/community-any/nextcloud.hook
(from rev 701676, nextcloud/trunk/nextcloud.hook)
Deleted:
  nextcloud/repos/community-any/PKGBUILD
  nextcloud/repos/community-any/apache.example.conf
  nextcloud/repos/community-any/nextcloud.hook

-+
 PKGBUILD|  114 +-
 apache.example.conf |   34 +++---
 nextcloud.hook  |   26 +--
 3 files changed, 87 insertions(+), 87 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-09 23:11:43 UTC (rev 701676)
+++ PKGBUILD2020-09-09 23:11:54 UTC (rev 701677)
@@ -1,57 +0,0 @@
-# Maintainer: Sergej Pupykin 
-
-pkgname=nextcloud
-pkgver=19.0.2
-pkgrel=1
-pkgdesc="A cloud server to store your files centrally on a hardware controlled 
by you"
-arch=('any')
-url="https://nextcloud.com;
-license=('AGPL')
-depends=()
-optdepends=('php-apache: to use the Apache web server'
-'php-sqlite: to use the SQLite database backend'
-'php-pgsql: to use the PostgreSQL database backend'
-'php-ldap: LDAP authentication'
-'php-intl'
-'php-apcu'
-'mariadb: to use the MySQL database backend'
-'smbclient: to mount SAMBA shares'
-'php-mcrypt'
-'ffmpeg: file preview'
-'libreoffice: file preview')
-options=('!strip')
-backup=('etc/webapps/nextcloud/apache.example.conf')
-validpgpkeys=('28806A878AE423A28372792ED75899B9A724937A')
-source=("https://download.nextcloud.com/server/releases/nextcloud-${pkgver}.tar.bz2"{,.asc}
-'apache.example.conf'
-'nextcloud.hook')
-sha256sums=('8152f385fdb0645114e0043aaf07b0de046fbaf205fa6d6bf530d22db86c66a5'
-'SKIP'
-'30a8ad62b0dc9523ca7f0387b1f0483d196c1e011ec7e3a5b98e7d33c721d4bf'
-'d084cd6423c03f98087884b3c7b81f9510d1bea6c518860b64787a7f976cf0d3')
-
-package() {
-depends=('php>=7.4.0' 'php<7.5.0' 'php-gd')
-
-# install project
-install -d "$pkgdir"/usr/share/webapps/
-cp -R "$srcdir"/${pkgname} "$pkgdir"/usr/share/webapps/.
-
-# install apache config file
-install -d  "$pkgdir"/etc/webapps/${pkgname}
-install -m 644 "$srcdir"/apache.example.conf  
"$pkgdir"/etc/webapps/${pkgname}
-
-# move config to /etc
-install -d  "$pkgdir"/etc/webapps/${pkgname}
-mv "$pkgdir"/usr/share/webapps/${pkgname}/config 
"$pkgdir"/etc/webapps/${pkgname}/config
-chown -R http:http "$pkgdir"/etc/webapps/${pkgname}
-ln -s /etc/webapps/${pkgname}/config 
"$pkgdir"/usr/share/webapps/${pkgname}/config
-chown -R root:http "$pkgdir"/usr/share/webapps/${pkgname}
-
-find "$pkgdir"/usr/share/webapps/${pkgname} -type f -exec chmod 0644 {} \;
-find "$pkgdir"/usr/share/webapps/${pkgname} -type d -exec chmod 0755 {} \;
-
-chmod a+x "$pkgdir"/usr/share/webapps/${pkgname}/occ
-
-#install -Dm0644 "$srcdir"/nextcloud.hook 
"$pkgdir"/usr/share/libalpm/hooks/nextcloud.hook
-}

Copied: nextcloud/repos/community-any/PKGBUILD (from rev 701676, 
nextcloud/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-09 23:11:54 UTC (rev 701677)
@@ -0,0 +1,57 @@
+# Maintainer: Sergej Pupykin 
+
+pkgname=nextcloud
+pkgver=19.0.3
+pkgrel=1
+pkgdesc="A cloud server to store your files centrally on a hardware controlled 
by you"
+arch=('any')
+url="https://nextcloud.com;
+license=('AGPL')
+depends=()
+optdepends=('php-apache: to use the Apache web server'
+'php-sqlite: to use the SQLite database backend'
+'php-pgsql: to use the PostgreSQL database backend'
+'php-ldap: LDAP authentication'
+'php-intl'
+'php-apcu'
+'mariadb: to use the MySQL database backend'
+'smbclient: to mount SAMBA shares'
+'php-mcrypt'
+'ffmpeg: file preview'
+'libreoffice: file preview')
+options=('!strip')
+backup=('etc/webapps/nextcloud/apache.example.conf')
+validpgpkeys=('28806A878AE423A28372792ED75899B9A724937A')
+source=("https://download.nextcloud.com/server/releases/nextcloud-${pkgver}.tar.bz2"{,.asc}
+'apache.example.conf'
+'nextcloud.hook')
+sha256sums=('fc503985e8aa4ed795d882e35679e0e1b7670181768e7820307222d8b4658969'
+'SKIP'
+'30a8ad62b0dc9523ca7f0387b1f0483d196c1e011ec7e3a5b98e7d33c721d4bf'
+'d084cd6423c03f98087884b3c7b81f9510d1bea6c518860b64787a7f976cf0d3')
+
+package() {
+depends=('php>=7.4.0' 'php<7.5.0' 'php-gd')
+
+

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

2020-09-09 Thread Sergej Pupykin via arch-commits
Date: Wednesday, September 9, 2020 @ 23:11:26
  Author: spupykin
Revision: 701674

upgpkg: mcabber 1.1.1-1

Modified:
  mcabber/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-09 21:16:34 UTC (rev 701673)
+++ PKGBUILD2020-09-09 23:11:26 UTC (rev 701674)
@@ -3,8 +3,8 @@
 # Contributor:  3ED 
 
 pkgname=mcabber
-pkgver=1.1.0
-pkgrel=3
+pkgver=1.1.1
+pkgrel=1
 pkgdesc="A small Jabber console client, includes features: SSL, PGP, MUC, UTF8"
 arch=('x86_64')
 url="https://www.lilotux.net/~mikael/mcabber/;
@@ -13,7 +13,7 @@
 makedepends=('pkg-config')
 validpgpkeys=('EACADFF156849BC89653139E3C2900DEACB7FC95')
 
source=(https://www.lilotux.net/~mikael/mcabber/files/$pkgname-${pkgver/_/-}.tar.bz2{,.asc})
-sha256sums=('04fc2c22c36da75cf4b761b5deccd074a19836368f38ab9d03c1e5708b41f0bd'
+sha256sums=('d789ceb33eaa78967c172241e941d43f91300ee0235a33f826f3df6f1163f959'
 'SKIP')
 
 build() {


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

2020-09-09 Thread Christian Hesse via arch-commits
Date: Wednesday, September 9, 2020 @ 21:43:24
  Author: eworm
Revision: 395666

upgpkg: fping 5.0-1: new upstream release

Modified:
  fping/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-09 20:30:29 UTC (rev 395665)
+++ PKGBUILD2020-09-09 21:43:24 UTC (rev 395666)
@@ -3,7 +3,7 @@
 # Contributor: Tom Newsom 
 
 pkgname=fping
-pkgver=4.4
+pkgver=5.0
 pkgrel=1
 pkgdesc='Utility to ping multiple hosts at once'
 url='https://www.fping.org/'
@@ -12,9 +12,9 @@
 depends=('glibc')
 install=${pkgname}.install
 source=(https://www.fping.org/dist/${pkgname}-${pkgver}.tar.gz{,.asc})
-sha512sums=('8c9ff78edee10ce8e02a0d6189d4a2d91cc60954740c15730f8f1a17d037ee9f565828fa0dcd47a06f2746328063125704d467939d6280b44d5ac98a65e5acd0'
+sha512sums=('c843f7bb7c4e3289c4dd9eb8ae2ab93a363316caac9187f79580a3d2505df179f2e0ae9e0a791c74bfc9e17c476874f8e122dfa6ad74930498c4e02d0de3'
 'SKIP')
-b2sums=('ddf84d5576170f0279e1d801fbb4afe491c698e5fba3ef4ac6fe25b2dc9b72605c23b6d33559d04170a885ed9ab423cbc1b853110dba93d5d250b6008b0c2a3e'
+b2sums=('6dbb6708ecb55c1f1281bcd9e298475a1ad3a21aa81d8488b61cb39ad07d1d7285247a3c39883cbaae0b1a0e4403b6340ea7ec43411b81546f0e8eeefb02ef88'
 'SKIP')
 validpgpkeys=('8D1E89B8FBA920A5A609F2615A11A22BC5A1F734') # David Schweikert 

 


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

2020-09-09 Thread Christian Hesse via arch-commits
Date: Wednesday, September 9, 2020 @ 21:43:31
  Author: eworm
Revision: 395667

archrelease: copy trunk to testing-x86_64

Added:
  fping/repos/testing-x86_64/
  fping/repos/testing-x86_64/PKGBUILD
(from rev 395666, fping/trunk/PKGBUILD)
  fping/repos/testing-x86_64/fping.install
(from rev 395666, fping/trunk/fping.install)

---+
 PKGBUILD  |   38 ++
 fping.install |9 +
 2 files changed, 47 insertions(+)

Copied: fping/repos/testing-x86_64/PKGBUILD (from rev 395666, 
fping/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-09-09 21:43:31 UTC (rev 395667)
@@ -0,0 +1,38 @@
+# Maintainer: Levente Polyak 
+# Contributor: Giovanni Scafora 
+# Contributor: Tom Newsom 
+
+pkgname=fping
+pkgver=5.0
+pkgrel=1
+pkgdesc='Utility to ping multiple hosts at once'
+url='https://www.fping.org/'
+arch=('x86_64')
+license=('custom')
+depends=('glibc')
+install=${pkgname}.install
+source=(https://www.fping.org/dist/${pkgname}-${pkgver}.tar.gz{,.asc})
+sha512sums=('c843f7bb7c4e3289c4dd9eb8ae2ab93a363316caac9187f79580a3d2505df179f2e0ae9e0a791c74bfc9e17c476874f8e122dfa6ad74930498c4e02d0de3'
+'SKIP')
+b2sums=('6dbb6708ecb55c1f1281bcd9e298475a1ad3a21aa81d8488b61cb39ad07d1d7285247a3c39883cbaae0b1a0e4403b6340ea7ec43411b81546f0e8eeefb02ef88'
+'SKIP')
+validpgpkeys=('8D1E89B8FBA920A5A609F2615A11A22BC5A1F734') # David Schweikert 

+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure \
+--prefix=/usr \
+--sbindir=/usr/bin \
+--mandir=/usr/share/man \
+--enable-ipv4 \
+--enable-ipv6
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -Dm 644 COPYING -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:

Copied: fping/repos/testing-x86_64/fping.install (from rev 395666, 
fping/trunk/fping.install)
===
--- testing-x86_64/fping.install(rev 0)
+++ testing-x86_64/fping.install2020-09-09 21:43:31 UTC (rev 395667)
@@ -0,0 +1,9 @@
+post_install() {
+  setcap cap_net_raw=ep usr/bin/fping  2>/dev/null || chmod +s usr/bin/fping
+}
+
+post_upgrade() {
+  post_install "$1"
+}
+
+# vim:set ts=2 sw=2 et:


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

2020-09-09 Thread Felix Yan via arch-commits
Date: Wednesday, September 9, 2020 @ 21:16:25
  Author: felixonmars
Revision: 701672

upgpkg: haskell-splitmix 0.1.0.1-12: rebuild with mwc-random 0.15.0.1

Modified:
  haskell-splitmix/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-09 21:15:38 UTC (rev 701671)
+++ PKGBUILD2020-09-09 21:16:25 UTC (rev 701672)
@@ -3,7 +3,7 @@
 _hkgname=splitmix
 pkgname=haskell-splitmix
 pkgver=0.1.0.1
-pkgrel=11
+pkgrel=12
 pkgdesc="Fast Splittable PRNG"
 url="https://github.com/phadej/splitmix;
 license=('BSD')


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

2020-09-09 Thread Felix Yan via arch-commits
Date: Wednesday, September 9, 2020 @ 21:16:34
  Author: felixonmars
Revision: 701673

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-splitmix/repos/community-staging-x86_64/
  haskell-splitmix/repos/community-staging-x86_64/PKGBUILD
(from rev 701672, haskell-splitmix/trunk/PKGBUILD)

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

Copied: haskell-splitmix/repos/community-staging-x86_64/PKGBUILD (from rev 
701672, haskell-splitmix/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-09-09 21:16:34 UTC (rev 701673)
@@ -0,0 +1,50 @@
+# Maintainer: Felix Yan 
+
+_hkgname=splitmix
+pkgname=haskell-splitmix
+pkgver=0.1.0.1
+pkgrel=12
+pkgdesc="Fast Splittable PRNG"
+url="https://github.com/phadej/splitmix;
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs')
+makedepends=('ghc' 'haskell-async' 'haskell-base-compat' 
'haskell-base-compat-batteries'
+ 'haskell-hunit' 'haskell-math-functions' 'haskell-test-framework'
+ 'haskell-test-framework-hunit' 'haskell-tf-random' 
'haskell-vector')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('488742d696a8770c3055a1711aeedc36ff39f2f544ee676842e6f64833e467b48f2231c46a3b82200e2a4e0a1b935d57f51902c03d68a1c0a50d6576b6d0e359')
+
+build() {
+cd $_hkgname-$pkgver
+
+if (( CHECKFUNC )); then
+_opts=('--enable-tests')
+else
+_opts=('--disable-tests')
+fi
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname "${_opts[@]}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


[arch-commits] Commit in haskell-math-functions/repos (2 files)

2020-09-09 Thread Felix Yan via arch-commits
Date: Wednesday, September 9, 2020 @ 21:15:38
  Author: felixonmars
Revision: 701671

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-math-functions/repos/community-staging-x86_64/
  haskell-math-functions/repos/community-staging-x86_64/PKGBUILD
(from rev 701670, haskell-math-functions/trunk/PKGBUILD)

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

Copied: haskell-math-functions/repos/community-staging-x86_64/PKGBUILD (from 
rev 701670, haskell-math-functions/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-09-09 21:15:38 UTC (rev 701671)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=math-functions
+pkgname=haskell-math-functions
+pkgver=0.3.4.1
+pkgrel=13
+pkgdesc="Special functions and Chebyshev polynomials"
+url="https://github.com/bos/math-functions;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-data-default-class' "haskell-primitive" 
"haskell-vector")
+makedepends=('ghc' 'haskell-erf' 'haskell-quickcheck' 'haskell-tasty' 
'haskell-tasty-hunit'
+ 'haskell-tasty-quickcheck' 'haskell-vector-th-unbox')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('e87a50f10e1afc08acc3900983dcfe85eb46563260c0b52a73ac44c9d83b903dbf3cd59ba0b96f8d4dafc3ff5bb70fb47d04cb8a7a2aec42545096d4a86c2d34')
+
+build() {
+cd $_hkgname-$pkgver
+ 
+if (( CHECKFUNC )); then
+_opts=('--enable-tests')
+else
+_opts=('--disable-tests')
+fi
+   
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname "${_opts[@]}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-system-expm1
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


[arch-commits] Commit in haskell-math-functions/trunk (PKGBUILD)

2020-09-09 Thread Felix Yan via arch-commits
Date: Wednesday, September 9, 2020 @ 21:15:29
  Author: felixonmars
Revision: 701670

upgpkg: haskell-math-functions 0.3.4.1-13: rebuild with mwc-random 0.15.0.1

Modified:
  haskell-math-functions/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-09 21:14:35 UTC (rev 701669)
+++ PKGBUILD2020-09-09 21:15:29 UTC (rev 701670)
@@ -4,7 +4,7 @@
 _hkgname=math-functions
 pkgname=haskell-math-functions
 pkgver=0.3.4.1
-pkgrel=12
+pkgrel=13
 pkgdesc="Special functions and Chebyshev polynomials"
 url="https://github.com/bos/math-functions;
 license=("BSD")


[arch-commits] Commit in haskell-vector-th-unbox/repos (2 files)

2020-09-09 Thread Felix Yan via arch-commits
Date: Wednesday, September 9, 2020 @ 21:14:35
  Author: felixonmars
Revision: 701669

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-vector-th-unbox/repos/community-staging-x86_64/
  haskell-vector-th-unbox/repos/community-staging-x86_64/PKGBUILD
(from rev 701668, haskell-vector-th-unbox/trunk/PKGBUILD)

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

Copied: haskell-vector-th-unbox/repos/community-staging-x86_64/PKGBUILD (from 
rev 701668, haskell-vector-th-unbox/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-09-09 21:14:35 UTC (rev 701669)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=vector-th-unbox
+pkgname=haskell-vector-th-unbox
+pkgver=0.2.1.7
+pkgrel=41
+pkgdesc="Deriver for Data.Vector.Unboxed using Template Haskell"
+url="https://hackage.haskell.org/package/${_hkgname};
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-vector")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('fa65c32eace3ad93f0df69830eca0334519bbdbb2bbdc511db6e6abffe48c78870fef131dc34451873775a037634a87f0cd0d06dc1c4bc9404af2a86d7593ae1')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i 's/< *2.16/<3/;s/< *4.14/<5/' $_hkgname.cabal
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


[arch-commits] Commit in haskell-vector-th-unbox/trunk (PKGBUILD)

2020-09-09 Thread Felix Yan via arch-commits
Date: Wednesday, September 9, 2020 @ 21:14:27
  Author: felixonmars
Revision: 701668

upgpkg: haskell-vector-th-unbox 0.2.1.7-41: rebuild with mwc-random 0.15.0.1

Modified:
  haskell-vector-th-unbox/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-09 21:13:51 UTC (rev 701667)
+++ PKGBUILD2020-09-09 21:14:27 UTC (rev 701668)
@@ -4,7 +4,7 @@
 _hkgname=vector-th-unbox
 pkgname=haskell-vector-th-unbox
 pkgver=0.2.1.7
-pkgrel=40
+pkgrel=41
 pkgdesc="Deriver for Data.Vector.Unboxed using Template Haskell"
 url="https://hackage.haskell.org/package/${_hkgname};
 license=("BSD")


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

2020-09-09 Thread Morten Linderud via arch-commits
Date: Wednesday, September 9, 2020 @ 21:13:42
  Author: foxboron
Revision: 701666

upgpkg: go 2:1.15.2-1

Modified:
  go/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-09 20:41:28 UTC (rev 701665)
+++ PKGBUILD2020-09-09 21:13:42 UTC (rev 701666)
@@ -13,7 +13,7 @@
 
 pkgname=go
 epoch=2
-pkgver=1.15.1
+pkgver=1.15.2
 pkgrel=1
 pkgdesc='Core compiler tools for the Go programming language'
 arch=(x86_64)
@@ -25,7 +25,7 @@
 options=(!strip staticlibs)
 source=(https://storage.googleapis.com/golang/go$pkgver.src.tar.gz{,.asc})
 validpgpkeys=('EB4C1BFD4F042F6DDDCCEC917721F63BD38B4796')
-sha256sums=('d3743752a421881b5cc007c76b4b68becc3ad053e61275567edab1c99e154d30'
+sha256sums=('28bf9d0bcde251011caae230a4a05d917b172ea203f2a62f2c2f9533589d4b4d'
 'SKIP')
 
 build() {


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

2020-09-09 Thread Morten Linderud via arch-commits
Date: Wednesday, September 9, 2020 @ 21:13:51
  Author: foxboron
Revision: 701667

archrelease: copy trunk to community-x86_64

Added:
  go/repos/community-x86_64/PKGBUILD
(from rev 701666, go/trunk/PKGBUILD)
Deleted:
  go/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  166 ++---
 1 file changed, 83 insertions(+), 83 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-09 21:13:42 UTC (rev 701666)
+++ PKGBUILD2020-09-09 21:13:51 UTC (rev 701667)
@@ -1,83 +0,0 @@
-# Maintainer: Morten Linderud 
-# Maintainer: Bartłomiej Piotrowski 
-# Contributor: Alexander F. Rødseth 
-# Contributor: Pierre Neidhardt 
-# Contributor: Vesa Kaihlavirta 
-# Contributor: Rémy Oudompheng 
-# Contributor: Andres Perera 
-# Contributor: Matthew Bauer 
-# Contributor: Christian Himpel 
-# Contributor: Mike Rosset 
-# Contributor: Daniel YC Lin 
-# Contributor: John Luebs 
-
-pkgname=go
-epoch=2
-pkgver=1.15.1
-pkgrel=1
-pkgdesc='Core compiler tools for the Go programming language'
-arch=(x86_64)
-url='https://golang.org/'
-license=(BSD)
-makedepends=(git go perl)
-replaces=(go-pie)
-provides=(go-pie)
-options=(!strip staticlibs)
-source=(https://storage.googleapis.com/golang/go$pkgver.src.tar.gz{,.asc})
-validpgpkeys=('EB4C1BFD4F042F6DDDCCEC917721F63BD38B4796')
-sha256sums=('d3743752a421881b5cc007c76b4b68becc3ad053e61275567edab1c99e154d30'
-'SKIP')
-
-build() {
-  export GOARCH=amd64
-  export GOROOT_FINAL=/usr/lib/go
-  export GOROOT_BOOTSTRAP=/usr/lib/go
-  export GOPATH="$srcdir/"
-  export GOROOT="$srcdir/$pkgname"
-  export GOBIN="$GOROOT/bin"
-
-  cd "$pkgname/src"
-  ./make.bash --no-clean -v
-
-  PATH="$GOBIN:$PATH" go install -v -race std
-  PATH="$GOBIN:$PATH" go install -v -buildmode=shared std
-}
-
-check() {
-  export GOARCH=amd64
-  export GOROOT_FINAL=/usr/lib/go
-  export GOROOT_BOOTSTRAP=/usr/lib/go
-  export GOROOT="$srcdir/$pkgname"
-  export GOBIN="$GOROOT/bin"
-  export PATH="$srcdir/$pkgname/bin:$PATH"
-  export GO_TEST_TIMEOUT_SCALE=2
-
-  cd $pkgname/src
-  rm os/signal/signal_cgo_test.go  # TODO: There is a bug somewhere.
-   # Should only affect containers
-   # so lets just say No.
-  ./run.bash --no-rebuild -v -v -v -k
-}
-
-package() {
-  cd "$pkgname"
-
-  install -d "$pkgdir/usr/bin" "$pkgdir/usr/lib/go" "$pkgdir/usr/share/doc/go"
-  cp -a bin pkg src lib misc api test "$pkgdir/usr/lib/go"
-  cp -r doc/* "$pkgdir/usr/share/doc/go"
-
-  ln -sf /usr/lib/go/bin/go "$pkgdir/usr/bin/go"
-  ln -sf /usr/lib/go/bin/gofmt "$pkgdir/usr/bin/gofmt"
-  ln -sf /usr/share/doc/go "$pkgdir/usr/lib/go/doc"
-
-  install -Dm644 VERSION "$pkgdir/usr/lib/go/VERSION"
-
-  rm -rf "$pkgdir/usr/lib/go/pkg/bootstrap" "$pkgdir/usr/lib/go/pkg/tool/*/api"
-
-  # TODO: Figure out if really needed
-  rm -rf "$pkgdir"/usr/lib/go/pkg/obj/go-build/*
-
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# vim: ts=2 sw=2 et

Copied: go/repos/community-x86_64/PKGBUILD (from rev 701666, go/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-09 21:13:51 UTC (rev 701667)
@@ -0,0 +1,83 @@
+# Maintainer: Morten Linderud 
+# Maintainer: Bartłomiej Piotrowski 
+# Contributor: Alexander F. Rødseth 
+# Contributor: Pierre Neidhardt 
+# Contributor: Vesa Kaihlavirta 
+# Contributor: Rémy Oudompheng 
+# Contributor: Andres Perera 
+# Contributor: Matthew Bauer 
+# Contributor: Christian Himpel 
+# Contributor: Mike Rosset 
+# Contributor: Daniel YC Lin 
+# Contributor: John Luebs 
+
+pkgname=go
+epoch=2
+pkgver=1.15.2
+pkgrel=1
+pkgdesc='Core compiler tools for the Go programming language'
+arch=(x86_64)
+url='https://golang.org/'
+license=(BSD)
+makedepends=(git go perl)
+replaces=(go-pie)
+provides=(go-pie)
+options=(!strip staticlibs)
+source=(https://storage.googleapis.com/golang/go$pkgver.src.tar.gz{,.asc})
+validpgpkeys=('EB4C1BFD4F042F6DDDCCEC917721F63BD38B4796')
+sha256sums=('28bf9d0bcde251011caae230a4a05d917b172ea203f2a62f2c2f9533589d4b4d'
+'SKIP')
+
+build() {
+  export GOARCH=amd64
+  export GOROOT_FINAL=/usr/lib/go
+  export GOROOT_BOOTSTRAP=/usr/lib/go
+  export GOPATH="$srcdir/"
+  export GOROOT="$srcdir/$pkgname"
+  export GOBIN="$GOROOT/bin"
+
+  cd "$pkgname/src"
+  ./make.bash --no-clean -v
+
+  PATH="$GOBIN:$PATH" go install -v -race std
+  PATH="$GOBIN:$PATH" go install -v -buildmode=shared std
+}
+
+check() {
+  export GOARCH=amd64
+  export GOROOT_FINAL=/usr/lib/go
+  export GOROOT_BOOTSTRAP=/usr/lib/go
+  export GOROOT="$srcdir/$pkgname"
+  export GOBIN="$GOROOT/bin"
+  export PATH="$srcdir/$pkgname/bin:$PATH"
+  export GO_TEST_TIMEOUT_SCALE=2
+
+  cd $pkgname/src
+  rm os/signal/signal_cgo_test.go  # TODO: There is a bug somewhere.
+

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

2020-09-09 Thread David Runge via arch-commits
Date: Wednesday, September 9, 2020 @ 20:41:28
  Author: dvzrv
Revision: 701665

archrelease: copy trunk to community-x86_64

Added:
  rtosc/repos/community-x86_64/PKGBUILD
(from rev 701664, rtosc/trunk/PKGBUILD)
  rtosc/repos/community-x86_64/rtosc-fix-pkg-config-file.patch
(from rev 701664, rtosc/trunk/rtosc-fix-pkg-config-file.patch)
  rtosc/repos/community-x86_64/rtosc-include-missing-headers.patch
(from rev 701664, rtosc/trunk/rtosc-include-missing-headers.patch)
Deleted:
  rtosc/repos/community-x86_64/PKGBUILD
  rtosc/repos/community-x86_64/rtosc-fix-pkg-config-file.patch
  rtosc/repos/community-x86_64/rtosc-include-missing-headers.patch

-+
 PKGBUILD|  118 +-
 rtosc-fix-pkg-config-file.patch |   30 
 rtosc-include-missing-headers.patch |   64 +-
 3 files changed, 109 insertions(+), 103 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-09 20:41:06 UTC (rev 701664)
+++ PKGBUILD2020-09-09 20:41:28 UTC (rev 701665)
@@ -1,56 +0,0 @@
-# Maintainer: David Runge 
-
-pkgname=rtosc
-pkgver=0.2.0
-pkgrel=2
-pkgdesc="Realtime safe OSC Messaging"
-arch=('x86_64')
-url="https://github.com/fundamental/rtosc;
-license=('MIT')
-depends=('gcc-libs')
-makedepends=('cmake' 'doxygen')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/fundamental/${pkgname}/archive/v${pkgver}.tar.gz;
-"${pkgname}-fix-pkg-config-file.patch"
-"${pkgname}-include-missing-headers.patch")
-sha512sums=('f19aed587c752f33a063849fce2b4f531b734d8ae68d9f3b623da2872260b258b92c24b6160734a01f091ba821a4bd72cae98a138570ef6c741b03e1353d835a'
-
'65f6ada68c74b4c7f5e1bf3939dce3f04fbc704a8fd5386e003951201c927dc6776327c520de0b6cca2c9b09445072f931fd9cc08ed4a50c94a500f06cce4244'
-
'25db71244ce931919c6c95ca3b90fe3d4f21537a913b1c1056559b28fe59abbe6643113d46d5fda02ff3c11de4c4e51ac0f03b1a9b550176f3d547f698dccfe4')
-
-prepare() {
-  cd "$pkgname-$pkgver"
-  mkdir -p build
-  # add missing headers: https://github.com/fundamental/rtosc/issues/41
-  patch -Np1 -i ../"${pkgname}-include-missing-headers.patch"
-  # fix libdir in pkg-config file:
-  # https://github.com/fundamental/rtosc/issues/42
-  patch -Np1 -i ../"${pkgname}-fix-pkg-config-file.patch"
-  sed -e 's/STATIC/SHARED/g' -i CMakeLists.txt
-}
-
-build() {
-  cd "$pkgname-$pkgver/build"
-  cmake .. \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DPERF_TEST=ON
-  make VERBOSE=1
-  doxygen
-}
-
-check() {
-  cd "$pkgname-$pkgver/build"
-  make -k test
-}
-
-package() {
-  cd "$pkgname-$pkgver/build"
-  make DESTDIR="$pkgdir/" install
-  install -vDm 644 html/search/*.{js,png,html} \
--t "${pkgdir}/usr/share/doc/${pkgname}/html/search"
-  install -vDm 644 html/*.{css,js,png,html} \
--t "${pkgdir}/usr/share/doc/${pkgname}/html"
-  install -vDm 644 ../README.adoc \
--t "${pkgdir}/usr/share/doc/${pkgname}"
-  install -vDm 644 ../LICENSE \
--t "${pkgdir}/usr/share/licenses/${pkgname}"
-}

Copied: rtosc/repos/community-x86_64/PKGBUILD (from rev 701664, 
rtosc/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-09 20:41:28 UTC (rev 701665)
@@ -0,0 +1,62 @@
+# Maintainer: David Runge 
+
+pkgname=rtosc
+pkgver=0.2.0
+pkgrel=3
+pkgdesc="Realtime safe OSC Messaging"
+arch=('x86_64')
+url="https://github.com/fundamental/rtosc;
+license=('MIT')
+depends=('gcc-libs' 'glibc')
+makedepends=('cmake' 'doxygen')
+provides=('librtosc.so' 'librtosc-cpp.so')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/fundamental/${pkgname}/archive/v${pkgver}.tar.gz;
+"${pkgname}-fix-pkg-config-file.patch"
+"${pkgname}-include-missing-headers.patch")
+sha512sums=('f19aed587c752f33a063849fce2b4f531b734d8ae68d9f3b623da2872260b258b92c24b6160734a01f091ba821a4bd72cae98a138570ef6c741b03e1353d835a'
+
'65f6ada68c74b4c7f5e1bf3939dce3f04fbc704a8fd5386e003951201c927dc6776327c520de0b6cca2c9b09445072f931fd9cc08ed4a50c94a500f06cce4244'
+
'25db71244ce931919c6c95ca3b90fe3d4f21537a913b1c1056559b28fe59abbe6643113d46d5fda02ff3c11de4c4e51ac0f03b1a9b550176f3d547f698dccfe4')
+b2sums=('723f4876c21b1e5ca1196bf726ad21d68083b11d56d19ca32c4b68325d59026055b1cb5a2eb3f4eeffab99f74230947e560ac2c12a4c2123f84629ae9b68a6d1'
+
'48013cf03a906a5311b816185da1195690e772c867d4bdaf962ff4d8c0a81de9af421bd0ed73e89fe3ab38de4298767e643c345771d1d8fb638068655652'
+
'615ec60d8bc6abb3af4df32b02be57c7948308f269dbb78aac6af9019f7b12763e6fae186c13b0aff563ac2a53612630c9bf84ab257391c463300053346ec812')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+  # add missing headers: https://github.com/fundamental/rtosc/issues/41
+  patch -Np1 -i ../"${pkgname}-include-missing-headers.patch"
+  # fix libdir in pkg-config file:
+  # 

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

2020-09-09 Thread David Runge via arch-commits
Date: Wednesday, September 9, 2020 @ 20:41:06
  Author: dvzrv
Revision: 701664

upgpkg: rtosc 0.2.0-3: Rebuild to add provides.

Add librtosc.so and librtosc-cpp.so to provides.
Update use of cmake to latest guidelines.
Update maintainer info.

Modified:
  rtosc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-09 20:30:21 UTC (rev 701663)
+++ PKGBUILD2020-09-09 20:41:06 UTC (rev 701664)
@@ -1,14 +1,15 @@
-# Maintainer: David Runge 
+# Maintainer: David Runge 
 
 pkgname=rtosc
 pkgver=0.2.0
-pkgrel=2
+pkgrel=3
 pkgdesc="Realtime safe OSC Messaging"
 arch=('x86_64')
 url="https://github.com/fundamental/rtosc;
 license=('MIT')
-depends=('gcc-libs')
+depends=('gcc-libs' 'glibc')
 makedepends=('cmake' 'doxygen')
+provides=('librtosc.so' 'librtosc-cpp.so')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/fundamental/${pkgname}/archive/v${pkgver}.tar.gz;
 "${pkgname}-fix-pkg-config-file.patch"
 "${pkgname}-include-missing-headers.patch")
@@ -15,10 +16,12 @@
 
sha512sums=('f19aed587c752f33a063849fce2b4f531b734d8ae68d9f3b623da2872260b258b92c24b6160734a01f091ba821a4bd72cae98a138570ef6c741b03e1353d835a'
 
'65f6ada68c74b4c7f5e1bf3939dce3f04fbc704a8fd5386e003951201c927dc6776327c520de0b6cca2c9b09445072f931fd9cc08ed4a50c94a500f06cce4244'
 
'25db71244ce931919c6c95ca3b90fe3d4f21537a913b1c1056559b28fe59abbe6643113d46d5fda02ff3c11de4c4e51ac0f03b1a9b550176f3d547f698dccfe4')
+b2sums=('723f4876c21b1e5ca1196bf726ad21d68083b11d56d19ca32c4b68325d59026055b1cb5a2eb3f4eeffab99f74230947e560ac2c12a4c2123f84629ae9b68a6d1'
+
'48013cf03a906a5311b816185da1195690e772c867d4bdaf962ff4d8c0a81de9af421bd0ed73e89fe3ab38de4298767e643c345771d1d8fb638068655652'
+
'615ec60d8bc6abb3af4df32b02be57c7948308f269dbb78aac6af9019f7b12763e6fae186c13b0aff563ac2a53612630c9bf84ab257391c463300053346ec812')
 
 prepare() {
   cd "$pkgname-$pkgver"
-  mkdir -p build
   # add missing headers: https://github.com/fundamental/rtosc/issues/41
   patch -Np1 -i ../"${pkgname}-include-missing-headers.patch"
   # fix libdir in pkg-config file:
@@ -28,29 +31,32 @@
 }
 
 build() {
-  cd "$pkgname-$pkgver/build"
-  cmake .. \
--DCMAKE_INSTALL_PREFIX=/usr \
+  cd "$pkgname-$pkgver"
+  cmake -DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=None \
 -DCMAKE_INSTALL_LIBDIR=lib \
--DPERF_TEST=ON
-  make VERBOSE=1
-  doxygen
+-DPERF_TEST=ON \
+-W no-dev \
+-B build \
+-S .
+  make VERBOSE=1 -C build
+  doxygen build/Doxyfile
 }
 
 check() {
-  cd "$pkgname-$pkgver/build"
-  make -k test
+  cd "$pkgname-$pkgver"
+  make -k test -C build
 }
 
 package() {
-  cd "$pkgname-$pkgver/build"
-  make DESTDIR="$pkgdir/" install
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir/" install -C build
   install -vDm 644 html/search/*.{js,png,html} \
 -t "${pkgdir}/usr/share/doc/${pkgname}/html/search"
   install -vDm 644 html/*.{css,js,png,html} \
 -t "${pkgdir}/usr/share/doc/${pkgname}/html"
-  install -vDm 644 ../README.adoc \
+  install -vDm 644 README.adoc \
 -t "${pkgdir}/usr/share/doc/${pkgname}"
-  install -vDm 644 ../LICENSE \
+  install -vDm 644 LICENSE \
 -t "${pkgdir}/usr/share/licenses/${pkgname}"
 }


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

2020-09-09 Thread Jan Steffens via arch-commits
Date: Wednesday, September 9, 2020 @ 20:30:23
  Author: heftig
Revision: 395661

archrelease: copy trunk to testing-x86_64

Added:
  wireguard-lts/repos/testing-x86_64/
  wireguard-lts/repos/testing-x86_64/PKGBUILD
(from rev 395659, wireguard-lts/trunk/PKGBUILD)

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

Copied: wireguard-lts/repos/testing-x86_64/PKGBUILD (from rev 395659, 
wireguard-lts/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-09-09 20:30:23 UTC (rev 395661)
@@ -0,0 +1,31 @@
+# Maintainer: Christian Hesse 
+
+pkgname=wireguard-lts
+pkgver=1.0.20200908
+pkgrel=2
+pkgdesc='Wireguard module for LTS Kernel'
+url='https://www.wireguard.com/'
+arch=('x86_64')
+license=('GPL')
+makedepends=('linux-lts-headers' "wireguard-dkms=$pkgver")
+conflicts=('wireguard-dkms')
+provides=('WIREGUARD-MODULE')
+
+build() {
+_kernver="$(

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

2020-09-09 Thread Jan Steffens via arch-commits
Date: Wednesday, September 9, 2020 @ 20:30:22
  Author: heftig
Revision: 395660

archrelease: copy trunk to testing-x86_64

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

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

Copied: nvidia-lts/repos/testing-x86_64/PKGBUILD (from rev 395659, 
nvidia-lts/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-09-09 20:30:22 UTC (rev 395660)
@@ -0,0 +1,42 @@
+# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Eric Bélanger 
+
+pkgname=nvidia-lts
+pkgver=450.66
+pkgrel=17
+epoch=1
+pkgdesc="NVIDIA drivers for linux-lts"
+arch=('x86_64')
+url="https://www.nvidia.com/;
+makedepends=('linux-lts-headers' "nvidia-dkms=$pkgver")
+provides=('NVIDIA-MODULE')
+license=('custom')
+options=('!strip')
+
+build() {
+_kernver=$(

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

2020-09-09 Thread Jan Steffens via arch-commits
Date: Wednesday, September 9, 2020 @ 20:30:20
  Author: heftig
Revision: 701660

archrelease: copy trunk to community-testing-x86_64

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

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

Copied: acpi_call-lts/repos/community-testing-x86_64/PKGBUILD (from rev 701657, 
acpi_call-lts/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-09-09 20:30:20 UTC (rev 701660)
@@ -0,0 +1,50 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: mortzu 
+# Contributor: fnord0 
+
+pkgname=acpi_call-lts
+pkgver=1.1.0
+pkgrel=171
+pkgdesc='A linux kernel module that enables calls to ACPI methods through 
/proc/acpi/call'
+url='https://github.com/mkottman/acpi_call'
+arch=('x86_64')
+license=('GPL')
+makedepends=('linux-lts-headers' "acpi_call-dkms=$pkgver")
+conflicts=('acpi_call-dkms')
+provides=('acpi_call')
+
+build() {
+  _kernver=$(

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

2020-09-09 Thread Jan Steffens via arch-commits
Date: Wednesday, September 9, 2020 @ 20:30:25
  Author: heftig
Revision: 395662

archrelease: copy trunk to testing-x86_64

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

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

Copied: nvidia/repos/testing-x86_64/PKGBUILD (from rev 395660, 
nvidia/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-09-09 20:30:25 UTC (rev 395662)
@@ -0,0 +1,52 @@
+# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Felix Yan 
+# Contributor: Thomas Baechler 
+
+pkgname=nvidia
+pkgver=450.66
+pkgrel=19
+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 broadcom-wl/repos (2 files)

2020-09-09 Thread Jan Steffens via arch-commits
Date: Wednesday, September 9, 2020 @ 20:30:20
  Author: heftig
Revision: 701661

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

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

Copied: broadcom-wl/repos/community-testing-x86_64/PKGBUILD (from rev 701657, 
broadcom-wl/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-09-09 20:30:20 UTC (rev 701661)
@@ -0,0 +1,54 @@
+# 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=227
+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)

2020-09-09 Thread Jan Steffens via arch-commits
Date: Wednesday, September 9, 2020 @ 20:30:21
  Author: heftig
Revision: 701663

archrelease: copy trunk to community-testing-x86_64

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

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

Copied: r8168/repos/community-testing-x86_64/PKGBUILD (from rev 701658, 
r8168/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-09-09 20:30:21 UTC (rev 701663)
@@ -0,0 +1,38 @@
+# Maintainer: Massimiliano Torromeo 
+# Contributor: Bob Fanger < bfanger(at)gmail >
+# Contributor: Filip , Det < nimetonmaili(at)gmail >
+
+pkgname=r8168
+pkgver=8.048.03
+pkgrel=26
+pkgdesc="A kernel module for Realtek 8168 network cards"
+url="http://www.realtek.com.tw;
+license=("GPL")
+arch=('x86_64')
+makedepends=('linux-headers')
+source=(https://github.com/mtorromeo/r8168/archive/$pkgver/$pkgname-$pkgver.tar.gz)
+sha256sums=('0f191c4dc2f2e1aef6789d34820305fae27690d20212f2ac12ded634eb786d8c')
+
+build() {
+   cd "$pkgname-$pkgver"
+   # avoid using the Makefile directly -- it doesn't understand
+   # any kernel but the current.
+   make -C /usr/src/linux M="$PWD/src" \
+   EXTRA_CFLAGS="-DCONFIG_R8168_NAPI -DCONFIG_R8168_VLAN 
-DCONFIG_ASPM -DENABLE_S5WOL -DENABLE_EEE" \
+   modules
+}
+
+package() {
+   depends=('glibc' 'linux')
+
+   local extradir=/usr/lib/modules/$(

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

2020-09-09 Thread Jan Steffens via arch-commits
Date: Wednesday, September 9, 2020 @ 20:30:29
  Author: heftig
Revision: 395665

archrelease: copy trunk to testing-x86_64

Added:
  linux/repos/testing-x86_64/
  linux/repos/testing-x86_64/PKGBUILD
(from rev 395662, linux/trunk/PKGBUILD)
  linux/repos/testing-x86_64/config
(from rev 395662, linux/trunk/config)
  linux/repos/testing-x86_64/sphinx-workaround.patch
(from rev 395662, linux/trunk/sphinx-workaround.patch)

-+
 PKGBUILD|  199 
 config  |11020 ++
 sphinx-workaround.patch |   13 
 3 files changed, 11232 insertions(+)

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


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

2020-09-09 Thread Jan Steffens via arch-commits
Date: Wednesday, September 9, 2020 @ 20:30:21
  Author: heftig
Revision: 701662

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

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

Copied: virtualbox-host-modules-arch/repos/community-testing-x86_64/PKGBUILD 
(from rev 701659, virtualbox-host-modules-arch/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-09-09 20:30:21 UTC (rev 701662)
@@ -0,0 +1,49 @@
+# Maintainer: Sébastien Luttringer
+# Contributor: Ionut Biru 
+
+pkgname='virtualbox-host-modules-arch'
+pkgver=6.1.14
+pkgrel=2
+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 tp_smapi-lts/repos (2 files)

2020-09-09 Thread Jan Steffens via arch-commits
Date: Wednesday, September 9, 2020 @ 20:30:14
  Author: heftig
Revision: 701654

archrelease: copy trunk to community-testing-x86_64

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

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

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

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

2020-09-09 Thread Jan Steffens via arch-commits
Date: Wednesday, September 9, 2020 @ 20:30:16
  Author: heftig
Revision: 701656

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

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

Copied: tp_smapi/repos/community-testing-x86_64/PKGBUILD (from rev 701653, 
tp_smapi/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-09-09 20:30:16 UTC (rev 701656)
@@ -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=234
+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 linux-zen/repos (4 files)

2020-09-09 Thread Jan Steffens via arch-commits
Date: Wednesday, September 9, 2020 @ 20:30:28
  Author: heftig
Revision: 395663

archrelease: copy trunk to testing-x86_64

Added:
  linux-zen/repos/testing-x86_64/
  linux-zen/repos/testing-x86_64/PKGBUILD
(from rev 395662, linux-zen/trunk/PKGBUILD)
  linux-zen/repos/testing-x86_64/config
(from rev 395662, linux-zen/trunk/config)
  linux-zen/repos/testing-x86_64/sphinx-workaround.patch
(from rev 395662, linux-zen/trunk/sphinx-workaround.patch)

-+
 PKGBUILD|  199 
 config  |11070 ++
 sphinx-workaround.patch |   13 
 3 files changed, 11282 insertions(+)

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


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

2020-09-09 Thread Jan Steffens via arch-commits
Date: Wednesday, September 9, 2020 @ 20:30:18
  Author: heftig
Revision: 701658

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 701654, bbswitch/trunk/0001-proc_ops-struct.patch)
  bbswitch/repos/community-testing-x86_64/0002-kernel-5.7.patch
(from rev 701655, bbswitch/trunk/0002-kernel-5.7.patch)
  bbswitch/repos/community-testing-x86_64/PKGBUILD
(from rev 701655, 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 701654, 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 2020-09-09 20:30:18 UTC 
(rev 701658)
@@ -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 
701655, 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  2020-09-09 20:30:18 UTC 
(rev 701658)
@@ -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 701655, 
bbswitch/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-09-09 20:30:18 UTC (rev 701658)
@@ -0,0 +1,50 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: M0Rf30
+# Contributor: Samsagax 
+
+pkgbase=bbswitch
+pkgname=(bbswitch bbswitch-dkms)
+pkgver=0.8
+pkgrel=347
+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 deepin-anything-arch/repos (3 files)

2020-09-09 Thread Jan Steffens via arch-commits
Date: Wednesday, September 9, 2020 @ 20:30:14
  Author: heftig
Revision: 701655

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/0001-linux-5.6.patch
(from rev 701651, deepin-anything-arch/trunk/0001-linux-5.6.patch)
  deepin-anything-arch/repos/community-testing-x86_64/PKGBUILD
(from rev 701651, deepin-anything-arch/trunk/PKGBUILD)

--+
 0001-linux-5.6.patch |   40 
 PKGBUILD |   36 
 2 files changed, 76 insertions(+)

Copied: 
deepin-anything-arch/repos/community-testing-x86_64/0001-linux-5.6.patch (from 
rev 701651, deepin-anything-arch/trunk/0001-linux-5.6.patch)
===
--- community-testing-x86_64/0001-linux-5.6.patch   
(rev 0)
+++ community-testing-x86_64/0001-linux-5.6.patch   2020-09-09 20:30:14 UTC 
(rev 701655)
@@ -0,0 +1,40 @@
+diff --git a/kernelmod/vfs_change.c b/kernelmod/vfs_change.c
+index 6a0e334..e25faf4 100644
+--- a/kernelmod/vfs_change.c
 b/kernelmod/vfs_change.c
+@@ -125,7 +125,11 @@ static ssize_t copy_vfs_changes(struct TIMESTRUCT *last, 
char* buf, size_t size)
+   ))
+   continue;
+ 
++#if LINUX_VERSION_CODE < KERNEL_VERSION(5, 6, 0)
+   time_t shifted_secs = vc->ts.tv_sec + hour_shift*3600;
++#else
++  time64_t shifted_secs = vc->ts.tv_sec + hour_shift*3600;
++#endif
+   struct tm ts;
+ #if LINUX_VERSION_CODE < KERNEL_VERSION(4, 20, 0)
+   time_to_tm(shifted_secs, 0, );
+@@ -333,6 +337,7 @@ static long ioctl_vfs_changes(struct file* filp, unsigned 
int cmd, unsigned long
+   }
+ }
+ 
++#if LINUX_VERSION_CODE < KERNEL_VERSION(5, 6, 0)
+ static struct file_operations procfs_ops = {
+   .owner = THIS_MODULE,
+   .open = open_vfs_changes,
+@@ -342,6 +347,15 @@ static struct file_operations procfs_ops = {
+   //.llseek = generic_file_llseek,
+   .release = release_vfs_changes,
+ };
++#else
++static struct proc_ops procfs_ops = {
++  .proc_open = open_vfs_changes,
++  .proc_read = read_vfs_changes,
++  .proc_ioctl = ioctl_vfs_changes,
++  .proc_lseek = no_llseek,
++  .proc_release = release_vfs_changes,
++};
++#endif
+ 
+ int __init init_vfs_changes(void)
+ {

Copied: deepin-anything-arch/repos/community-testing-x86_64/PKGBUILD (from rev 
701651, deepin-anything-arch/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-09-09 20:30:14 UTC (rev 701655)
@@ -0,0 +1,36 @@
+# Maintainer: Felix Yan 
+
+pkgname=deepin-anything-arch
+pkgver=5.0.1
+pkgrel=107
+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=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-anything/archive/$pkgver.tar.gz;
+'0001-linux-5.6.patch')
+sha512sums=('f79b4db917cce2611bd6964d00ae0e162fc500fa7ca76a987145456a9ee81296c776d2b83cf6492a4224c4e4fd95df3ad95a25c1c14d2d4e6865f5bbd639be14'
+
'5ddbd2d968bc5b01dbc99648cec81ea072675d7fe7198835649d5b581997945d32bd842dd7ebf60185aa84722b94575ac7aeb5e4616945e22fae53272907305b')
+
+prepare() {
+  cd deepin-anything-$pkgver
+  patch -Np1 < ../0001-linux-5.6.patch
+}
+
+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 vhba-module/repos (4 files)

2020-09-09 Thread Jan Steffens via arch-commits
Date: Wednesday, September 9, 2020 @ 20:30:16
  Author: heftig
Revision: 701657

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 701651, vhba-module/trunk/60-vhba.rules)
  vhba-module/repos/community-testing-x86_64/PKGBUILD
(from rev 701651, vhba-module/trunk/PKGBUILD)
  vhba-module/repos/community-testing-x86_64/dkms.conf
(from rev 701653, vhba-module/trunk/dkms.conf)

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

Copied: vhba-module/repos/community-testing-x86_64/60-vhba.rules (from rev 
701651, vhba-module/trunk/60-vhba.rules)
===
--- community-testing-x86_64/60-vhba.rules  (rev 0)
+++ community-testing-x86_64/60-vhba.rules  2020-09-09 20:30:16 UTC (rev 
701657)
@@ -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 701651, 
vhba-module/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-09-09 20:30:16 UTC (rev 701657)
@@ -0,0 +1,54 @@
+# Maintainer: Ray Rashif 
+# Contributor: Mateusz Herych 
+# Contributor: Charles Lindsay 
+
+pkgbase=vhba-module
+pkgname=(vhba-module vhba-module-dkms)
+pkgver=20200106
+pkgrel=70
+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.bz2;
+60-vhba.rules dkms.conf)
+sha256sums=('59a3208a7b8fcf1bb03bd4d352ec89d06a8b6b84db325e31b0863b209dde3483'
+'3052cb1cadbdf4bfb0b588bb8ed80691940d8dd63dc5502943d597eaf9f40c3b'
+'8cab0ebb4fee72069d63616b0983f105b98d1261e72e9bef5509a6e60bc382a7')
+
+prepare() {
+  cd $pkgbase-$pkgver
+  sed -i 's/20190302/20190410/' Makefile  # Fixup VHBA_VERSION
+}
+
+build() {
+  cd $pkgbase-$pkgver
+  make KERNELRELEASE="$(

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

2020-09-09 Thread Jan Steffens via arch-commits
Date: Wednesday, September 9, 2020 @ 20:30:29
  Author: heftig
Revision: 395664

archrelease: copy trunk to testing-x86_64

Added:
  linux-lts/repos/testing-x86_64/
  
linux-lts/repos/testing-x86_64/0001-ZEN-Add-sysctl-and-CONFIG-to-disallow-unprivileged-C.patch
(from rev 395661, 
linux-lts/trunk/0001-ZEN-Add-sysctl-and-CONFIG-to-disallow-unprivileged-C.patch)
  
linux-lts/repos/testing-x86_64/0002-virt-vbox-Add-support-for-the-new-VBG_IOCTL_ACQUIRE_.patch
(from rev 395662, 
linux-lts/trunk/0002-virt-vbox-Add-support-for-the-new-VBG_IOCTL_ACQUIRE_.patch)
  linux-lts/repos/testing-x86_64/PKGBUILD
(from rev 395662, linux-lts/trunk/PKGBUILD)
  linux-lts/repos/testing-x86_64/config
(from rev 395662, linux-lts/trunk/config)
  linux-lts/repos/testing-x86_64/sphinx-workaround.patch
(from rev 395662, linux-lts/trunk/sphinx-workaround.patch)

-+
 0001-ZEN-Add-sysctl-and-CONFIG-to-disallow-unprivileged-C.patch |  129 
 0002-virt-vbox-Add-support-for-the-new-VBG_IOCTL_ACQUIRE_.patch |  689 
 PKGBUILD|  197 
 config  |10599 
++
 sphinx-workaround.patch |   15 
 5 files changed, 11629 insertions(+)

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


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

2020-09-09 Thread Jan Steffens via arch-commits
Date: Wednesday, September 9, 2020 @ 20:30:19
  Author: heftig
Revision: 701659

archrelease: copy trunk to community-testing-x86_64

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

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

Copied: netfilter-fullconenat/repos/community-testing-x86_64/Kbuild (from rev 
701654, netfilter-fullconenat/trunk/Kbuild)
===
--- community-testing-x86_64/Kbuild (rev 0)
+++ community-testing-x86_64/Kbuild 2020-09-09 20:30:19 UTC (rev 701659)
@@ -0,0 +1 @@
+obj-m = xt_FULLCONENAT.o

Copied: netfilter-fullconenat/repos/community-testing-x86_64/PKGBUILD (from rev 
701655, netfilter-fullconenat/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-09-09 20:30:19 UTC (rev 701659)
@@ -0,0 +1,41 @@
+# Maintainer: Felix Yan 
+# Contributor: Edward Pacman 
+
+pkgname=netfilter-fullconenat
+pkgver=r73.0cf3b48
+pkgrel=46
+pkgdesc="A kernel module that turns MASQUERADE into full cone SNAT"
+arch=('x86_64')
+url="https://github.com/Chion82/netfilter-full-cone-nat;
+license=('GPL2')
+depends=("linux")
+makedepends=('linux-headers' 'git')
+source=("netfilter-fullconenat.conf" Kbuild
+
"${pkgname}::git+https://github.com/Chion82/netfilter-full-cone-nat.git;)
+sha256sums=('a17dfdf1fd046219daeacc60065e3a81c80c2eb2cfdf6d8068278c509577f571'
+'7ff12ad066a68c65f23fc7e01654ca459ce3458172e3dce30f42553fa44dd7c2'
+'SKIP')
+
+pkgver() {
+  cd "$srcdir/${pkgname}"
+  ( set -o pipefail
+git describe --long 2>/dev/null | sed 's/\([^-]*-g\)/r\1/;s/-/./g' ||
+printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short 
HEAD)"
+  )
+}
+
+build() {
+  cd $pkgname
+  ln -s ../Kbuild
+  make -C /usr/src/linux M=$PWD modules
+}
+
+package() {
+  # Install modules-load.conf
+  install -Dm644 netfilter-fullconenat.conf 
"${pkgdir}/usr/lib/modules-load.d/netfilter-fullconenat.conf"
+
+  install -Dt 
"${pkgdir}/usr/lib/modules/$(

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

2020-09-09 Thread Jan Steffens via arch-commits
Date: Wednesday, September 9, 2020 @ 20:30:13
  Author: heftig
Revision: 701652

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

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

Copied: acpi_call/repos/community-testing-x86_64/PKGBUILD (from rev 701651, 
acpi_call/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-09-09 20:30:13 UTC (rev 701652)
@@ -0,0 +1,51 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: mortzu 
+# Contributor: fnord0 
+
+pkgname=acpi_call
+pkgver=1.1.0
+pkgrel=346
+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 r8168-lts/repos (2 files)

2020-09-09 Thread Jan Steffens via arch-commits
Date: Wednesday, September 9, 2020 @ 20:30:13
  Author: heftig
Revision: 701653

archrelease: copy trunk to community-testing-x86_64

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

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

Copied: r8168-lts/repos/community-testing-x86_64/PKGBUILD (from rev 701651, 
r8168-lts/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-09-09 20:30:13 UTC (rev 701653)
@@ -0,0 +1,35 @@
+# Maintainer: Massimiliano Torromeo 
+
+pkgname=r8168-lts
+pkgver=8.048.03
+pkgrel=24
+pkgdesc="A kernel module for Realtek 8168 network cards for linux-lts"
+url="http://www.realtek.com.tw;
+license=("GPL")
+arch=('x86_64')
+makedepends=('linux-lts-headers')
+source=(https://github.com/mtorromeo/r8168/archive/$pkgver/r8168-$pkgver.tar.gz)
+sha256sums=('0f191c4dc2f2e1aef6789d34820305fae27690d20212f2ac12ded634eb786d8c')
+
+build() {
+   cd "r8168-$pkgver"
+   # avoid using the Makefile directly -- it doesn't understand
+   # any kernel but the current.
+   make -C /usr/src/linux-lts M="$PWD/src" \
+   EXTRA_CFLAGS="-DCONFIG_R8168_NAPI -DCONFIG_R8168_VLAN 
-DCONFIG_ASPM -DENABLE_S5WOL -DENABLE_EEE" \
+   modules
+}
+
+package() {
+   depends=('glibc' 'linux-lts')
+
+   local 
extradir=/usr/lib/modules/$(

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

2020-09-09 Thread Jan Steffens via arch-commits
Date: Wednesday, September 9, 2020 @ 20:15:39
  Author: heftig
Revision: 395659

450.66-19: linux 5.8.8.arch1-1

Modified:
  nvidia/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-09 20:15:25 UTC (rev 395658)
+++ PKGBUILD2020-09-09 20:15:39 UTC (rev 395659)
@@ -4,7 +4,7 @@
 
 pkgname=nvidia
 pkgver=450.66
-pkgrel=18
+pkgrel=19
 pkgdesc="NVIDIA drivers for linux"
 arch=('x86_64')
 url="https://www.nvidia.com/;
@@ -49,3 +49,4 @@
 
 
 
+


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

2020-09-09 Thread Jan Steffens via arch-commits
Date: Wednesday, September 9, 2020 @ 20:15:29
  Author: heftig
Revision: 701644

6.1.14-2: linux 5.8.8.arch1-1

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

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-09 20:15:27 UTC (rev 701643)
+++ PKGBUILD2020-09-09 20:15:29 UTC (rev 701644)
@@ -3,7 +3,7 @@
 
 pkgname='virtualbox-host-modules-arch'
 pkgver=6.1.14
-pkgrel=1
+pkgrel=2
 pkgdesc='Virtualbox host kernel modules for Arch Kernel'
 arch=('x86_64')
 url='https://virtualbox.org/'
@@ -46,3 +46,4 @@
 
 
 
+


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

2020-09-09 Thread Jan Steffens via arch-commits
Date: Wednesday, September 9, 2020 @ 20:15:35
  Author: heftig
Revision: 701648

8.048.03-26: linux 5.8.8.arch1-1

Modified:
  r8168/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-09 20:15:33 UTC (rev 701647)
+++ PKGBUILD2020-09-09 20:15:35 UTC (rev 701648)
@@ -4,7 +4,7 @@
 
 pkgname=r8168
 pkgver=8.048.03
-pkgrel=25
+pkgrel=26
 pkgdesc="A kernel module for Realtek 8168 network cards"
 url="http://www.realtek.com.tw;
 license=("GPL")


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

2020-09-09 Thread Jan Steffens via arch-commits
Date: Wednesday, September 9, 2020 @ 20:15:37
  Author: heftig
Revision: 701650

1.1.0-346: linux 5.8.8.arch1-1

Modified:
  acpi_call/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-09 20:15:36 UTC (rev 701649)
+++ PKGBUILD2020-09-09 20:15:37 UTC (rev 701650)
@@ -4,7 +4,7 @@
 
 pkgname=acpi_call
 pkgver=1.1.0
-pkgrel=345
+pkgrel=346
 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')
@@ -48,3 +48,4 @@
 
 
 
+


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

2020-09-09 Thread Jan Steffens via arch-commits
Date: Wednesday, September 9, 2020 @ 20:15:33
  Author: heftig
Revision: 701647

0.8-347: linux 5.8.8.arch1-1

Modified:
  bbswitch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-09 20:15:32 UTC (rev 701646)
+++ PKGBUILD2020-09-09 20:15:33 UTC (rev 701647)
@@ -5,7 +5,7 @@
 pkgbase=bbswitch
 pkgname=(bbswitch bbswitch-dkms)
 pkgver=0.8
-pkgrel=346
+pkgrel=347
 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 acpi_call-lts/trunk (PKGBUILD)

2020-09-09 Thread Jan Steffens via arch-commits
Date: Wednesday, September 9, 2020 @ 20:15:22
  Author: heftig
Revision: 701641

1.1.0-171: linux-lts 5.4.64-1

Modified:
  acpi_call-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-09 20:15:21 UTC (rev 701640)
+++ PKGBUILD2020-09-09 20:15:22 UTC (rev 701641)
@@ -4,7 +4,7 @@
 
 pkgname=acpi_call-lts
 pkgver=1.1.0
-pkgrel=170
+pkgrel=171
 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')
@@ -47,3 +47,4 @@
 
 
 
+


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

2020-09-09 Thread Jan Steffens via arch-commits
Date: Wednesday, September 9, 2020 @ 20:15:25
  Author: heftig
Revision: 395658

1.0.20200908-2: linux-lts 5.4.64-1

Modified:
  wireguard-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-09 20:15:19 UTC (rev 395657)
+++ PKGBUILD2020-09-09 20:15:25 UTC (rev 395658)
@@ -2,7 +2,7 @@
 
 pkgname=wireguard-lts
 pkgver=1.0.20200908
-pkgrel=1
+pkgrel=2
 pkgdesc='Wireguard module for LTS Kernel'
 url='https://www.wireguard.com/'
 arch=('x86_64')
@@ -28,3 +28,4 @@
   # compress each module individually
   find "$pkgdir" -name '*.ko' -exec xz -T1 {} +
 }
+


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

2020-09-09 Thread Jan Steffens via arch-commits
Date: Wednesday, September 9, 2020 @ 20:15:40
  Author: heftig
Revision: 701651

5.0.1-107: linux 5.8.8.arch1-1

Modified:
  deepin-anything-arch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-09 20:15:37 UTC (rev 701650)
+++ PKGBUILD2020-09-09 20:15:40 UTC (rev 701651)
@@ -2,7 +2,7 @@
 
 pkgname=deepin-anything-arch
 pkgver=5.0.1
-pkgrel=106
+pkgrel=107
 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 tp_smapi-lts/trunk (PKGBUILD)

2020-09-09 Thread Jan Steffens via arch-commits
Date: Wednesday, September 9, 2020 @ 20:15:21
  Author: heftig
Revision: 701640

0.43-91: linux-lts 5.4.64-1

Modified:
  tp_smapi-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-09 19:21:24 UTC (rev 701639)
+++ PKGBUILD2020-09-09 20:15:21 UTC (rev 701640)
@@ -9,7 +9,7 @@
 
 pkgname=tp_smapi-lts
 pkgver=0.43
-pkgrel=90
+pkgrel=91
 pkgdesc="Modules for ThinkPad's SMAPI functionality"
 arch=('x86_64')
 url='https://github.com/evgeni/tp_smapi'


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

2020-09-09 Thread Jan Steffens via arch-commits
Date: Wednesday, September 9, 2020 @ 20:15:36
  Author: heftig
Revision: 701649

20200106-70: linux 5.8.8.arch1-1

Modified:
  vhba-module/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-09 20:15:35 UTC (rev 701648)
+++ PKGBUILD2020-09-09 20:15:36 UTC (rev 701649)
@@ -5,7 +5,7 @@
 pkgbase=vhba-module
 pkgname=(vhba-module vhba-module-dkms)
 pkgver=20200106
-pkgrel=69
+pkgrel=70
 pkgdesc="Kernel module that emulates SCSI devices"
 url="https://cdemu.sourceforge.io/;
 arch=(x86_64)


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

2020-09-09 Thread Jan Steffens via arch-commits
Date: Wednesday, September 9, 2020 @ 20:15:23
  Author: heftig
Revision: 701642

8.048.03-24: linux-lts 5.4.64-1

Modified:
  r8168-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-09 20:15:22 UTC (rev 701641)
+++ PKGBUILD2020-09-09 20:15:23 UTC (rev 701642)
@@ -2,7 +2,7 @@
 
 pkgname=r8168-lts
 pkgver=8.048.03
-pkgrel=23
+pkgrel=24
 pkgdesc="A kernel module for Realtek 8168 network cards for linux-lts"
 url="http://www.realtek.com.tw;
 license=("GPL")


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

2020-09-09 Thread Jan Steffens via arch-commits
Date: Wednesday, September 9, 2020 @ 20:15:27
  Author: heftig
Revision: 701643

r73.0cf3b48-46: linux 5.8.8.arch1-1

Modified:
  netfilter-fullconenat/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-09 20:15:23 UTC (rev 701642)
+++ PKGBUILD2020-09-09 20:15:27 UTC (rev 701643)
@@ -3,7 +3,7 @@
 
 pkgname=netfilter-fullconenat
 pkgver=r73.0cf3b48
-pkgrel=45
+pkgrel=46
 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 tp_smapi/trunk (PKGBUILD)

2020-09-09 Thread Jan Steffens via arch-commits
Date: Wednesday, September 9, 2020 @ 20:15:30
  Author: heftig
Revision: 701645

0.43-234: linux 5.8.8.arch1-1

Modified:
  tp_smapi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-09 20:15:29 UTC (rev 701644)
+++ PKGBUILD2020-09-09 20:15:30 UTC (rev 701645)
@@ -9,7 +9,7 @@
 
 pkgname=tp_smapi
 pkgver=0.43
-pkgrel=233
+pkgrel=234
 pkgdesc="Modules for ThinkPad's SMAPI functionality"
 arch=('x86_64')
 url='https://github.com/evgeni/tp_smapi'


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

2020-09-09 Thread Jan Steffens via arch-commits
Date: Wednesday, September 9, 2020 @ 20:15:32
  Author: heftig
Revision: 701646

6.30.223.271-227: linux 5.8.8.arch1-1

Modified:
  broadcom-wl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-09 20:15:30 UTC (rev 701645)
+++ PKGBUILD2020-09-09 20:15:32 UTC (rev 701646)
@@ -5,7 +5,7 @@
 #_kernelname=-custom  # Build against kernel with a different name
 pkgname=${_module}${_kernelname}
 pkgver=6.30.223.271
-pkgrel=226
+pkgrel=227
 pkgdesc='Broadcom 802.11 Linux STA wireless driver'
 arch=('x86_64')
 
url='https://www.broadcom.com/support/download-search/?pf=Wireless+LAN+Infrastructure'
@@ -51,3 +51,4 @@
 
 
 
+


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

2020-09-09 Thread Jan Steffens via arch-commits
Date: Wednesday, September 9, 2020 @ 20:15:19
  Author: heftig
Revision: 395657

450.66-17: linux-lts 5.4.64-1

Modified:
  nvidia-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-09 20:07:16 UTC (rev 395656)
+++ PKGBUILD2020-09-09 20:15:19 UTC (rev 395657)
@@ -3,7 +3,7 @@
 
 pkgname=nvidia-lts
 pkgver=450.66
-pkgrel=16
+pkgrel=17
 epoch=1
 pkgdesc="NVIDIA drivers for linux-lts"
 arch=('x86_64')
@@ -39,3 +39,4 @@
 
 
 
+


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

2020-09-09 Thread Jan Steffens via arch-commits
Date: Wednesday, September 9, 2020 @ 20:07:15
  Author: heftig
Revision: 395655

5.8.8.arch1-1

Modified:
  linux/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-09 20:07:14 UTC (rev 395654)
+++ PKGBUILD2020-09-09 20:07:15 UTC (rev 395655)
@@ -1,7 +1,7 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgbase=linux
-pkgver=5.8.7.arch1
+pkgver=5.8.8.arch1
 pkgrel=1
 pkgdesc='Linux'
 _srctag=v${pkgver%.*}-${pkgver##*.}


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

2020-09-09 Thread Jan Steffens via arch-commits
Date: Wednesday, September 9, 2020 @ 20:07:16
  Author: heftig
Revision: 395656

5.4.64-1

Modified:
  linux-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-09 20:07:15 UTC (rev 395655)
+++ PKGBUILD2020-09-09 20:07:16 UTC (rev 395656)
@@ -1,7 +1,7 @@
 # Maintainer: Andreas Radke 
 
 pkgbase=linux-lts
-pkgver=5.4.63
+pkgver=5.4.64
 pkgrel=1
 pkgdesc='LTS Linux'
 url="https://www.kernel.org/;
@@ -25,7 +25,7 @@
   '647F28654894E3BD457199BE38DBBDC86092693E'  # Greg Kroah-Hartman
 )
 # https://www.kernel.org/pub/linux/kernel/v5.x/sha256sums.asc
-sha256sums=('e0260dae0da01163b1a3289ad9c5cc6ee4226720e199e8a1d982e24efda7ffc0'
+sha256sums=('b9d3c2938466f388a70fd190fd6691baa8b757393b267e9f7b06c4730d85d5ef'
 'SKIP'
 '6a2ee8f822810f594921aa85087e4cf0a17c68518d395586fd9c56b6c7e63dad'
 'b3f2777462517abd75039fc56a63dfa3f5eb6b3865e02fe9e0c3512381eed54b'


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

2020-09-09 Thread Jan Steffens via arch-commits
Date: Wednesday, September 9, 2020 @ 20:07:14
  Author: heftig
Revision: 395654

5.8.8.zen1-1

Modified:
  linux-zen/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-09 19:34:22 UTC (rev 395653)
+++ PKGBUILD2020-09-09 20:07:14 UTC (rev 395654)
@@ -1,7 +1,7 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgbase=linux-zen
-pkgver=5.8.7.zen1
+pkgver=5.8.8.zen1
 pkgrel=1
 pkgdesc='Linux ZEN'
 _srctag=v${pkgver%.*}-${pkgver##*.}


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

2020-09-09 Thread Jan Steffens via arch-commits
Date: Wednesday, September 9, 2020 @ 19:34:22
  Author: heftig
Revision: 395653

0.12.2-1

Added:
  hotdoc/trunk/PKGBUILD

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

Added: PKGBUILD
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-09 19:34:22 UTC (rev 395653)
@@ -0,0 +1,45 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=hotdoc
+pkgver=0.12.2
+pkgrel=1
+pkgdesc="The Tastiest Documentation Tool"
+url="https://github.com/hotdoc/hotdoc;
+arch=(x86_64)
+license=(LGPL)
+depends=(python-lxml python-pyaml clang llvm glib2 json-glib)
+makedepends=(git cmake flex python-setuptools npm)
+_commit=04d6d5230f30035693e5a6d42b3392ec5bf20f31  # tags/0.12.2
+source=("git+https://github.com/hotdoc/hotdoc#commit=$_commit;
+"git+https://github.com/MathieuDuponchelle/cmark;
+"git+https://github.com/PrismJS/prism;
+"git+https://github.com/hotdoc/hotdoc_bootstrap_theme;)
+sha256sums=('SKIP'
+'SKIP'
+'SKIP'
+'SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+
+  git submodule init
+  git submodule set-url cmark "$srcdir/cmark"
+  git submodule set-url hotdoc/extensions/syntax_highlighting/prism 
"$srcdir/prism"
+  git submodule set-url hotdoc/hotdoc_bootstrap_theme 
"$srcdir/hotdoc_bootstrap_theme"
+  git submodule update
+}
+
+build() {
+  cd $pkgname
+  python setup.py build
+}
+
+package() {
+  cd $pkgname
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}


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

2020-09-09 Thread David Runge via arch-commits
Date: Wednesday, September 9, 2020 @ 19:21:24
  Author: dvzrv
Revision: 701639

archrelease: copy trunk to community-x86_64

Added:
  supercollider/repos/community-x86_64/PKGBUILD
(from rev 701638, supercollider/trunk/PKGBUILD)
  
supercollider/repos/community-x86_64/supercollider-3.11.1-fix_linker_errors.patch
(from rev 701638, 
supercollider/trunk/supercollider-3.11.1-fix_linker_errors.patch)
  supercollider/repos/community-x86_64/supercollider.install
(from rev 701638, supercollider/trunk/supercollider.install)
Deleted:
  supercollider/repos/community-x86_64/PKGBUILD
  
supercollider/repos/community-x86_64/supercollider-3.11.1-fix_linker_errors.patch
  supercollider/repos/community-x86_64/supercollider.install

--+
 PKGBUILD |  166 +++---
 supercollider-3.11.1-fix_linker_errors.patch |  644 -
 supercollider.install|   16 
 3 files changed, 414 insertions(+), 412 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-09 19:21:14 UTC (rev 701638)
+++ PKGBUILD2020-09-09 19:21:24 UTC (rev 701639)
@@ -1,82 +0,0 @@
-# Maintainer: David Runge 
-# Contributor: speps 
-# Contributor: osc 
-
-_name=SuperCollider
-pkgname=supercollider
-pkgver=3.11.1
-pkgrel=1
-pkgdesc="Environment and programming language for real time audio synthesis 
and algorithmic composition"
-arch=('x86_64')
-url="https://supercollider.github.io;
-license=('GPL3')
-groups=('pro-audio')
-depends=('gcc-libs' 'glibc'  'libx11' 'qt5-base' 'qt5-svg' 'qt5-webengine'
-'qt5-websockets')
-makedepends=('abletonlink' 'alsa-lib' 'avahi' 'boost' 'cmake' 'emacs' 'fftw'
-'libsndfile' 'qt5-tools' 'readline' 'systemd-libs' 'yaml-cpp')
-checkdepends=('xorg-server-xvfb')
-optdepends=('emacs: emacs interface'
-'gedit: gedit interface'
-'sc3-plugins: additional extension plugins for scsynth')
-provides=('libscsynth.so' "sclang=${pkgver}" "scsynth=${pkgver}")
-source=("https://github.com/${pkgname}/${pkgname}/releases/download/Version-${pkgver}/${_name}-${pkgver}-Source.tar.bz2"{,.asc}
-
"${pkgname}-3.11.1-devendor_abletonlink.patch::https://github.com/supercollider/supercollider/pull/4836/commits/95bd9721226f3cb1bba903bea8154cee5859cfb8.patch;
-"${pkgname}-3.11.1-fix_linker_errors.patch"
-)
-install="${pkgname}.install"
-sha512sums=('5c4c5ba75f32ee7dda9a9e30c346ff028aedce81374474b4ee93fb8dc631f7b6ea54e91706b3502be6ed84baa69f6d659fcddaf5140ca292827d62734efbd6b2'
-'SKIP'
-
'6a31c8c2edd102b806cfe110c2f27516e9fe05a7b074d50e14d5aad69cb80a2badfcb3a20f942d6dee90dfaf4bf5ae7eb8b8ef8c517ea8e0110bee7f0c2c4f40'
-
'900f6559986ba80fe5aa8a05881f1ccfc2ae01d5b18dc0cf963bf86bfb7cbc0b77dfb9a4f059e588c9563c2ef9f8632731f3d046b79d8bfdffa88111cae7c52a')
-b2sums=('0fed25646c7163e8e13ae27024a25206f1ea141c5c23b93d7a1f4c00a30f0ce15a084b73eccb424f724f2000db138e3539b568045afddcfd612cf5dab99cb94d'
-'SKIP'
-
'c589ea2451b4c232fa34de1b442e6822fb5867475b0e0bb7b94563cbfac54f09f47a7be8cf1e9f4a2896ffa678db40d718ec9ee301ad037eaebeb71772e773e4'
-
'b8d0b153d08dcf98b5b2c385c52a1c446086f4c795f34840bf1a55f8eccdf53e262fcfb8b7245332919d1b932e5887dc20236ad35df29c4712853d2676e89a20')
-validpgpkeys=('0B7D1EA4E32B5C3C4275D3C70796CC538BEFF177') # Brian Heim 

-
-
-prepare() {
-  mv -v "${_name}-${pkgver}-Source" "${pkgname}-${pkgver}"
-  cd "${pkgname}-${pkgver}"
-  # devendoring Ableton Link:
-  # https://github.com/supercollider/supercollider/issues/4818
-  # https://github.com/supercollider/supercollider/pull/4836
-  patch -Np1 -i "../${pkgname}-3.11.1-devendor_abletonlink.patch"
-  # fix linker issues with libscsynth.so (backported patch)
-  # https://github.com/supercollider/supercollider/issues/4992
-  patch -Np1 -i "../${pkgname}-3.11.1-fix_linker_errors.patch"
-}
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  cmake -DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE='None' \
--DBoost_NO_BOOST_CMAKE=ON \
--DLIBSCSYNTH=ON \
--DFORTIFY=ON \
--DSYSTEM_ABLETON_LINK=ON \
--DSYSTEM_BOOST=ON \
--DSYSTEM_YAMLCPP=ON \
--DSC_VIM=OFF \
--Wno-dev \
--B build \
--S .
-  make VERBOSE=1 -C build
-}
-
-check() {
-  cd "${pkgname}-${pkgver}"
-  xvfb-run make test ARGS="-V" -C build
-}
-
-package() {
-  depends+=('libasound.so' 'libavahi-common.so' 'libavahi-client.so'
-  'libboost_filesystem.so' 'libboost_program_options.so' 'libboost_regex.so'
-  'libboost_thread.so' 'libfftw3f.so' 'libjack.so' 'libsndfile.so'
-  'libreadline.so' 'libudev.so' 'libyaml-cpp.so')
-  cd "${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install -C build
-  install -vDm 644 {AUTHORS,{CHANGELOG,README,README_LINUX}.md} \
--t "${pkgdir}/usr/share/doc/${pkgname}/"
-}

Copied: supercollider/repos/community-x86_64/PKGBUILD (from rev 701638, 

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

2020-09-09 Thread David Runge via arch-commits
Date: Wednesday, September 9, 2020 @ 19:21:14
  Author: dvzrv
Revision: 701638

upgpkg: supercollider 3.11.1-2: Rebuild to remove debug options.

By default supercollider is built using debug options 
(https://github.com/supercollider/supercollider/issues/5159).

Modified:
  supercollider/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-09 18:15:45 UTC (rev 701637)
+++ PKGBUILD2020-09-09 19:21:14 UTC (rev 701638)
@@ -5,7 +5,7 @@
 _name=SuperCollider
 pkgname=supercollider
 pkgver=3.11.1
-pkgrel=1
+pkgrel=2
 pkgdesc="Environment and programming language for real time audio synthesis 
and algorithmic composition"
 arch=('x86_64')
 url="https://supercollider.github.io;
@@ -50,6 +50,8 @@
 
 build() {
   cd "${pkgname}-${pkgver}"
+  export CFLAGS+=" -DNDEBUG"
+  export CXXFLAGS+=" -DNDEBUG"
   cmake -DCMAKE_INSTALL_PREFIX=/usr \
 -DCMAKE_BUILD_TYPE='None' \
 -DBoost_NO_BOOST_CMAKE=ON \
@@ -67,7 +69,7 @@
 
 check() {
   cd "${pkgname}-${pkgver}"
-  xvfb-run make test ARGS="-V" -C build
+  xvfb-run make test ARGS="-VV -d -j1" -C build
 }
 
 package() {


[arch-commits] Commit in (hotdoc hotdoc/repos hotdoc/trunk)

2020-09-09 Thread Jan Steffens via arch-commits
Date: Wednesday, September 9, 2020 @ 19:17:24
  Author: heftig
Revision: 395652

Add hotdoc

Added:
  hotdoc/
  hotdoc/repos/
  hotdoc/trunk/


[arch-commits] Commit in gnome-remote-desktop/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2020-09-09 Thread Jan Steffens via arch-commits
Date: Wednesday, September 9, 2020 @ 18:52:33
  Author: heftig
Revision: 395651

archrelease: copy trunk to extra-x86_64

Added:
  gnome-remote-desktop/repos/extra-x86_64/PKGBUILD
(from rev 395650, gnome-remote-desktop/trunk/PKGBUILD)
Deleted:
  gnome-remote-desktop/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-09 18:52:22 UTC (rev 395650)
+++ PKGBUILD2020-09-09 18:52:33 UTC (rev 395651)
@@ -1,48 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=gnome-remote-desktop
-pkgver=0.1.8
-pkgrel=1
-pkgdesc="GNOME Remote Desktop server"
-url="https://wiki.gnome.org/Projects/Mutter/RemoteDesktop;
-arch=(x86_64)
-license=(GPL2)
-depends=(glib2 pipewire systemd libvncserver libsecret libnotify dconf)
-makedepends=(git meson)
-checkdepends=(xorg-server-xvfb python-dbus python-gobject mutter)
-groups=(gnome)
-_commit=3141a7efec1529f06e2bcc64b68d8bad02d9a4c1  # tags/0.1.8^0
-source=("git+https://gitlab.gnome.org/jadahl/gnome-remote-desktop.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-
-  # Disable the Xvfb abstract socket which leaks out of our containers
-  sed -i 's|-noreset|& -nolisten local|' tests/vnc-test-runner.sh
-}
-
-build() {
-  arch-meson $pkgname build
-  ninja -C build
-}
-
-check() (
-  mkdir -p -m 700 "${XDG_RUNTIME_DIR:=$PWD/runtime-dir}"
-  glib-compile-schemas "${GSETTINGS_SCHEMA_DIR:=$PWD/build/src}"
-  export XDG_RUNTIME_DIR GSETTINGS_SCHEMA_DIR
-
-  pipewire &
-  trap "kill $!; wait" EXIT
-
-  meson test -C build --print-errorlogs
-)
-
-package() {
-  DESTDIR="$pkgdir" meson install -C build
-}

Copied: gnome-remote-desktop/repos/extra-x86_64/PKGBUILD (from rev 395650, 
gnome-remote-desktop/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-09 18:52:33 UTC (rev 395651)
@@ -0,0 +1,58 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=gnome-remote-desktop
+pkgver=0.1.9
+pkgrel=1
+pkgdesc="GNOME Remote Desktop server"
+url="https://wiki.gnome.org/Projects/Mutter/RemoteDesktop;
+arch=(x86_64)
+license=(GPL2)
+depends=(cairo freerdp glib2 pipewire systemd libvncserver libsecret libnotify 
dconf)
+makedepends=(git meson)
+checkdepends=(xorg-server-xvfb python-dbus python-gobject mutter)
+groups=(gnome)
+_commit=ba216dc82c7cdfcd2b99066b8be480e6a76cc60b  # tags/0.1.9^0
+source=("git+https://gitlab.gnome.org/GNOME/gnome-remote-desktop.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+
+  # Test fixes
+  sed -e 's|-noreset|& -nolisten local|' \
+  -e 's|dbus-run-session --||' \
+  -i tests/vnc-test-runner.sh
+}
+
+build() {
+  arch-meson $pkgname build
+  meson compile -C build
+}
+
+_run_tests() {
+  mkdir -p -m 700 "${XDG_RUNTIME_DIR:=$PWD/runtime-dir}"
+  glib-compile-schemas "${GSETTINGS_SCHEMA_DIR:=$PWD/build/src}"
+  export XDG_RUNTIME_DIR GSETTINGS_SCHEMA_DIR
+
+  sed 's/exec pipewire-media-session .*/exec pipewire-media-session -d 
bluez5,alsa-seq,alsa-pcm/' \
+pipewire.conf
+  export PIPEWIRE_CONFIG_FILE="$PWD/pipewire.conf"
+
+  pipewire &
+  trap "kill $!; wait" EXIT
+
+  meson test -C build --print-errorlogs
+}
+
+check() {
+  dbus-run-session bash -c "$(declare -f _run_tests); _run_tests"
+}
+
+package() {
+  DESTDIR="$pkgdir" meson install -C build
+}


[arch-commits] Commit in gnome-remote-desktop/trunk (PKGBUILD)

2020-09-09 Thread Jan Steffens via arch-commits
Date: Wednesday, September 9, 2020 @ 18:52:22
  Author: heftig
Revision: 395650

0.1.9-1

Modified:
  gnome-remote-desktop/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-09 17:45:50 UTC (rev 395649)
+++ PKGBUILD2020-09-09 18:52:22 UTC (rev 395650)
@@ -1,18 +1,18 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
+# Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgname=gnome-remote-desktop
-pkgver=0.1.8
+pkgver=0.1.9
 pkgrel=1
 pkgdesc="GNOME Remote Desktop server"
 url="https://wiki.gnome.org/Projects/Mutter/RemoteDesktop;
 arch=(x86_64)
 license=(GPL2)
-depends=(glib2 pipewire systemd libvncserver libsecret libnotify dconf)
+depends=(cairo freerdp glib2 pipewire systemd libvncserver libsecret libnotify 
dconf)
 makedepends=(git meson)
 checkdepends=(xorg-server-xvfb python-dbus python-gobject mutter)
 groups=(gnome)
-_commit=3141a7efec1529f06e2bcc64b68d8bad02d9a4c1  # tags/0.1.8^0
-source=("git+https://gitlab.gnome.org/jadahl/gnome-remote-desktop.git#commit=$_commit;)
+_commit=ba216dc82c7cdfcd2b99066b8be480e6a76cc60b  # tags/0.1.9^0
+source=("git+https://gitlab.gnome.org/GNOME/gnome-remote-desktop.git#commit=$_commit;)
 sha256sums=('SKIP')
 
 pkgver() {
@@ -23,26 +23,36 @@
 prepare() {
   cd $pkgname
 
-  # Disable the Xvfb abstract socket which leaks out of our containers
-  sed -i 's|-noreset|& -nolisten local|' tests/vnc-test-runner.sh
+  # Test fixes
+  sed -e 's|-noreset|& -nolisten local|' \
+  -e 's|dbus-run-session --||' \
+  -i tests/vnc-test-runner.sh
 }
 
 build() {
   arch-meson $pkgname build
-  ninja -C build
+  meson compile -C build
 }
 
-check() (
+_run_tests() {
   mkdir -p -m 700 "${XDG_RUNTIME_DIR:=$PWD/runtime-dir}"
   glib-compile-schemas "${GSETTINGS_SCHEMA_DIR:=$PWD/build/src}"
   export XDG_RUNTIME_DIR GSETTINGS_SCHEMA_DIR
 
+  sed 's/exec pipewire-media-session .*/exec pipewire-media-session -d 
bluez5,alsa-seq,alsa-pcm/' \
+pipewire.conf
+  export PIPEWIRE_CONFIG_FILE="$PWD/pipewire.conf"
+
   pipewire &
   trap "kill $!; wait" EXIT
 
   meson test -C build --print-errorlogs
-)
+}
 
+check() {
+  dbus-run-session bash -c "$(declare -f _run_tests); _run_tests"
+}
+
 package() {
   DESTDIR="$pkgdir" meson install -C build
 }


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

2020-09-09 Thread Felix Yan via arch-commits
Date: Wednesday, September 9, 2020 @ 18:15:27
  Author: felixonmars
Revision: 701636

upgpkg: haskell-vector 0.12.1.2-39: rebuild with mwc-random 0.15.0.1

Modified:
  haskell-vector/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-09 18:02:25 UTC (rev 701635)
+++ PKGBUILD2020-09-09 18:15:27 UTC (rev 701636)
@@ -2,7 +2,7 @@
 
 pkgname=haskell-vector
 pkgver=0.12.1.2
-pkgrel=38
+pkgrel=39
 pkgdesc="Efficient Arrays"
 url="https://hackage.haskell.org/package/vector;
 license=("BSD")


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

2020-09-09 Thread Felix Yan via arch-commits
Date: Wednesday, September 9, 2020 @ 18:15:45
  Author: felixonmars
Revision: 701637

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-vector/repos/community-staging-x86_64/
  haskell-vector/repos/community-staging-x86_64/PKGBUILD
(from rev 701636, haskell-vector/trunk/PKGBUILD)

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

Copied: haskell-vector/repos/community-staging-x86_64/PKGBUILD (from rev 
701636, haskell-vector/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-09-09 18:15:45 UTC (rev 701637)
@@ -0,0 +1,47 @@
+# Maintainer: Sergej Pupykin 
+
+pkgname=haskell-vector
+pkgver=0.12.1.2
+pkgrel=39
+pkgdesc="Efficient Arrays"
+url="https://hackage.haskell.org/package/vector;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-primitive')
+makedepends=('ghc' 'haskell-base-orphans' 'haskell-hunit' 'haskell-quickcheck' 
'haskell-random'
+ 'haskell-tasty' 'haskell-tasty-hunit' 'haskell-tasty-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/vector/${pkgver}/vector-${pkgver}.tar.gz;)
+sha512sums=('36d0237cf7c5a6b78f88b33ff09ea8b19baeaf85609efdeba9ab802ca588956457d4607304b73e8d58e9e802a9101c23da62caee71508f069047a6d531e50170')
+
+prepare() {
+  cd vector-$pkgver
+  sed -i 's/,semigroups$//' vector.cabal
+}
+
+build() {
+  cd "$srcdir"/vector-${pkgver}
+
+  if (( CHECKFUNC )); then
+  _opts=('--enable-tests')
+  else
+  _opts=('--disable-tests')
+  fi
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+  --prefix=/usr --docdir=/usr/share/doc/$pkgname "${_opts[@]}" \
+  --dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+  runhaskell Setup build $MAKEFLAGS
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+  cd "$srcdir"/vector-${pkgver}
+  install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh
+  install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+  runhaskell Setup copy --destdir="$pkgdir"
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/${pkgname}/LICENSE
+  rm -f "$pkgdir"/usr/share/doc/${pkgname}/LICENSE
+}


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

2020-09-09 Thread Felix Yan via arch-commits
Date: Wednesday, September 9, 2020 @ 18:02:25
  Author: felixonmars
Revision: 701635

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-unliftio/repos/community-staging-x86_64/
  haskell-unliftio/repos/community-staging-x86_64/PKGBUILD
(from rev 701634, haskell-unliftio/trunk/PKGBUILD)

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

Copied: haskell-unliftio/repos/community-staging-x86_64/PKGBUILD (from rev 
701634, haskell-unliftio/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-09-09 18:02:25 UTC (rev 701635)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=unliftio
+pkgname=haskell-unliftio
+pkgver=0.2.13
+pkgrel=18
+pkgdesc="The MonadUnliftIO typeclass for unlifting monads to IO (batteries 
included)"
+url="https://github.com/fpco/monad-unlift;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-async' 'haskell-unliftio-core')
+makedepends=('ghc' 'haskell-hspec' 'haskell-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('7001bb7bbce47b88bee713b003c8eef803987eb3b5688143fccc47941ad27ef01b8ba042059bc2eff5de40e976da545009fe4ae43a761022d15fdbbf53aea93f')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-09-09 Thread Felix Yan via arch-commits
Date: Wednesday, September 9, 2020 @ 18:02:10
  Author: felixonmars
Revision: 701634

upgpkg: haskell-unliftio 0.2.13-18: rebuild with mwc-random 0.15.0.1

Modified:
  haskell-unliftio/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-09 18:00:06 UTC (rev 701633)
+++ PKGBUILD2020-09-09 18:02:10 UTC (rev 701634)
@@ -4,7 +4,7 @@
 _hkgname=unliftio
 pkgname=haskell-unliftio
 pkgver=0.2.13
-pkgrel=17
+pkgrel=18
 pkgdesc="The MonadUnliftIO typeclass for unlifting monads to IO (batteries 
included)"
 url="https://github.com/fpco/monad-unlift;
 license=("MIT")


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

2020-09-09 Thread Felix Yan via arch-commits
Date: Wednesday, September 9, 2020 @ 18:00:06
  Author: felixonmars
Revision: 701633

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-doctest/repos/community-staging-x86_64/
  haskell-doctest/repos/community-staging-x86_64/PKGBUILD
(from rev 701632, haskell-doctest/trunk/PKGBUILD)

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

Copied: haskell-doctest/repos/community-staging-x86_64/PKGBUILD (from rev 
701632, haskell-doctest/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-09-09 18:00:06 UTC (rev 701633)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=doctest
+pkgname=haskell-doctest
+pkgver=0.17
+pkgrel=15
+pkgdesc="Test interactive Haskell examples"
+url="https://github.com/sol/doctest;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-base-compat' 'haskell-ghc' 'haskell-syb' 
'haskell-code-page'
+ 'haskell-ghc-paths')
+makedepends=('ghc' 'haskell-hunit' 'haskell-hspec' 'haskell-hspec-core' 
'haskell-quickcheck'
+ 'haskell-stringbuilder' 'haskell-silently' 'haskell-setenv' 
'haskell-mockery')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('7816af9e0ca419a0837b8a8c3bc943edbc44ec73d2a36acd8a7e868d370db9f60557667aa8efb81444aad47860defa6374b496fdcbd8f80403ee74e8b2543cee')
+
+prepare() {
+# Add -dynamic flag
+sed -i 's/\+\+ packageDBArgs/++ packageDBArgs ++ ["-dynamic"]/' 
$_hkgname-$pkgver/src/Extract.hs
+sed -i 's/\+\+ expandedArgs)/++ expandedArgs ++ ["-dynamic"])/' 
$_hkgname-$pkgver/src/Run.hs
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test || warning "Tests failed"
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-09-09 Thread Felix Yan via arch-commits
Date: Wednesday, September 9, 2020 @ 17:59:51
  Author: felixonmars
Revision: 701632

upgpkg: haskell-doctest 0.17-15: rebuild with mwc-random 0.15.0.1

Modified:
  haskell-doctest/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-09 17:58:17 UTC (rev 701631)
+++ PKGBUILD2020-09-09 17:59:51 UTC (rev 701632)
@@ -4,7 +4,7 @@
 _hkgname=doctest
 pkgname=haskell-doctest
 pkgver=0.17
-pkgrel=14
+pkgrel=15
 pkgdesc="Test interactive Haskell examples"
 url="https://github.com/sol/doctest;
 license=("MIT")


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

2020-09-09 Thread Felix Yan via arch-commits
Date: Wednesday, September 9, 2020 @ 17:58:17
  Author: felixonmars
Revision: 701631

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-mockery/repos/community-staging-x86_64/
  haskell-mockery/repos/community-staging-x86_64/PKGBUILD
(from rev 701630, haskell-mockery/trunk/PKGBUILD)

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

Copied: haskell-mockery/repos/community-staging-x86_64/PKGBUILD (from rev 
701630, haskell-mockery/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-09-09 17:58:17 UTC (rev 701631)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=mockery
+pkgname=haskell-mockery
+pkgver=0.3.5
+pkgrel=97
+pkgdesc="Support functions for automated testing"
+url="https://github.com/hspec/mockery;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-base-compat' 'haskell-temporary' 
'haskell-logging-facade')
+makedepends=('ghc' 'haskell-hspec')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('bcb9bef083749028ec27ba879feca7c7a8f966f50b31fe1df3e82b3ac206b634b961755e4ee90ebc72ba8c17be3bbab6acf1b01776bca9497cc5cbc1ccb58850')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-09-09 Thread Felix Yan via arch-commits
Date: Wednesday, September 9, 2020 @ 17:58:01
  Author: felixonmars
Revision: 701630

upgpkg: haskell-mockery 0.3.5-97: rebuild with mwc-random 0.15.0.1

Modified:
  haskell-mockery/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-09 17:50:36 UTC (rev 701629)
+++ PKGBUILD2020-09-09 17:58:01 UTC (rev 701630)
@@ -4,7 +4,7 @@
 _hkgname=mockery
 pkgname=haskell-mockery
 pkgver=0.3.5
-pkgrel=96
+pkgrel=97
 pkgdesc="Support functions for automated testing"
 url="https://github.com/hspec/mockery;
 license=("MIT")


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

2020-09-09 Thread Morten Linderud via arch-commits
Date: Wednesday, September 9, 2020 @ 17:50:36
  Author: foxboron
Revision: 701629

archrelease: copy trunk to community-x86_64

Added:
  raft/repos/community-x86_64/PKGBUILD
(from rev 701628, raft/trunk/PKGBUILD)
Deleted:
  raft/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-09 17:50:29 UTC (rev 701628)
+++ PKGBUILD2020-09-09 17:50:36 UTC (rev 701629)
@@ -1,32 +0,0 @@
-# Maintainer: Morten Linderud 
-# Contributor: Thomas Hipp 
-
-pkgname=raft
-pkgver=0.9.24
-pkgrel=1
-pkgdesc="C implementation of the Raft consensus protocol"
-arch=('x86_64')
-url="https://github.com/canonical/raft;
-license=('LGPL3')
-depends=('libuv')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/canonical/${pkgname}/archive/v${pkgver}.tar.gz;)
-sha256sums=('5c555dc9b69f122636660b30e6e3b065e09032a38499f7fe367c489d2dfda9ea')
-
-build() {
-   cd "${pkgname}-${pkgver}"
-   autoreconf -i
-   ./configure --prefix=/usr
-   make
-}
-
-check() {
-   cd "${pkgname}-${pkgver}"
-   make check || true
-}
-
-package() {
-   cd "${pkgname}-${pkgver}"
-   make DESTDIR="$pkgdir/" install
-   install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-   rm -rf "${pkgdir}/usr/bin"
-}

Copied: raft/repos/community-x86_64/PKGBUILD (from rev 701628, 
raft/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-09 17:50:36 UTC (rev 701629)
@@ -0,0 +1,32 @@
+# Maintainer: Morten Linderud 
+# Contributor: Thomas Hipp 
+
+pkgname=raft
+pkgver=0.9.25
+pkgrel=1
+pkgdesc="C implementation of the Raft consensus protocol"
+arch=('x86_64')
+url="https://github.com/canonical/raft;
+license=('LGPL3')
+depends=('libuv')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/canonical/${pkgname}/archive/v${pkgver}.tar.gz;)
+sha256sums=('fac55dc1cea66c7e2e6525d3be0aebedff8c31ec568efb6a911c6bb0ea99268d')
+
+build() {
+   cd "${pkgname}-${pkgver}"
+   autoreconf -i
+   ./configure --prefix=/usr
+   make
+}
+
+check() {
+   cd "${pkgname}-${pkgver}"
+   make check || true
+}
+
+package() {
+   cd "${pkgname}-${pkgver}"
+   make DESTDIR="$pkgdir/" install
+   install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+   rm -rf "${pkgdir}/usr/bin"
+}


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

2020-09-09 Thread Morten Linderud via arch-commits
Date: Wednesday, September 9, 2020 @ 17:50:29
  Author: foxboron
Revision: 701628

upgpkg: raft 0.9.25-1

Modified:
  raft/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-09 17:49:08 UTC (rev 701627)
+++ PKGBUILD2020-09-09 17:50:29 UTC (rev 701628)
@@ -2,7 +2,7 @@
 # Contributor: Thomas Hipp 
 
 pkgname=raft
-pkgver=0.9.24
+pkgver=0.9.25
 pkgrel=1
 pkgdesc="C implementation of the Raft consensus protocol"
 arch=('x86_64')
@@ -10,7 +10,7 @@
 license=('LGPL3')
 depends=('libuv')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/canonical/${pkgname}/archive/v${pkgver}.tar.gz;)
-sha256sums=('5c555dc9b69f122636660b30e6e3b065e09032a38499f7fe367c489d2dfda9ea')
+sha256sums=('fac55dc1cea66c7e2e6525d3be0aebedff8c31ec568efb6a911c6bb0ea99268d')
 
 build() {
cd "${pkgname}-${pkgver}"


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

2020-09-09 Thread Morten Linderud via arch-commits
Date: Wednesday, September 9, 2020 @ 17:49:08
  Author: foxboron
Revision: 701627

archrelease: copy trunk to community-x86_64

Added:
  conmon/repos/community-x86_64/PKGBUILD
(from rev 701626, conmon/trunk/PKGBUILD)
Deleted:
  conmon/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-09 17:49:00 UTC (rev 701626)
+++ PKGBUILD2020-09-09 17:49:08 UTC (rev 701627)
@@ -1,30 +0,0 @@
-# Maintainer: Bartłomiej Piotrowski 
-# Maintainer: Morten Linderud 
-
-pkgname=conmon
-pkgver=2.0.20
-pkgrel=1
-epoch=1
-pkgdesc='OCI container runtime monitor'
-arch=(x86_64)
-url='https://github.com/containers/conmon'
-license=(APACHE)
-depends=(glibc glib2 systemd)
-makedepends=(git)
-_commit=13244db638cf987c415298a3c23393ae5abeb885   # refs/tags/v2.0.20
-source=("git+https://github.com/containers/conmon#commit=${_commit};)
-md5sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/^v//;s/-/+/g'
-}
-
-build() {
-  cd conmon
-  make PREFIX=/usr LIBEXECDIR=/usr/lib DESTDIR="$pkgdir"
-}
-
-package() {
-  install -Dm755 conmon/bin/conmon "$pkgdir/usr/bin/conmon"
-}

Copied: conmon/repos/community-x86_64/PKGBUILD (from rev 701626, 
conmon/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-09 17:49:08 UTC (rev 701627)
@@ -0,0 +1,30 @@
+# Maintainer: Bartłomiej Piotrowski 
+# Maintainer: Morten Linderud 
+
+pkgname=conmon
+pkgver=2.0.21
+pkgrel=1
+epoch=1
+pkgdesc='OCI container runtime monitor'
+arch=(x86_64)
+url='https://github.com/containers/conmon'
+license=(APACHE)
+depends=(glibc glib2 systemd)
+makedepends=(git)
+_commit=35a2fa83022e56e18af7e6a865ba5d7165fa2a4a#refs/tags/v2.0.21
+source=("git+https://github.com/containers/conmon#commit=${_commit};)
+md5sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^v//;s/-/+/g'
+}
+
+build() {
+  cd conmon
+  make PREFIX=/usr LIBEXECDIR=/usr/lib DESTDIR="$pkgdir"
+}
+
+package() {
+  install -Dm755 conmon/bin/conmon "$pkgdir/usr/bin/conmon"
+}


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

2020-09-09 Thread Morten Linderud via arch-commits
Date: Wednesday, September 9, 2020 @ 17:49:00
  Author: foxboron
Revision: 701626

upgpkg: conmon 1:2.0.21-1

Modified:
  conmon/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-09 17:19:46 UTC (rev 701625)
+++ PKGBUILD2020-09-09 17:49:00 UTC (rev 701626)
@@ -2,7 +2,7 @@
 # Maintainer: Morten Linderud 
 
 pkgname=conmon
-pkgver=2.0.20
+pkgver=2.0.21
 pkgrel=1
 epoch=1
 pkgdesc='OCI container runtime monitor'
@@ -11,7 +11,7 @@
 license=(APACHE)
 depends=(glibc glib2 systemd)
 makedepends=(git)
-_commit=13244db638cf987c415298a3c23393ae5abeb885   # refs/tags/v2.0.20
+_commit=35a2fa83022e56e18af7e6a865ba5d7165fa2a4a#refs/tags/v2.0.21
 source=("git+https://github.com/containers/conmon#commit=${_commit};)
 md5sums=('SKIP')
 


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

2020-09-09 Thread Antonio Rojas via arch-commits
Date: Wednesday, September 9, 2020 @ 17:45:40
  Author: arojas
Revision: 395648

Update to 1.8.2

Modified:
  icewm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-09 17:30:17 UTC (rev 395647)
+++ PKGBUILD2020-09-09 17:45:40 UTC (rev 395648)
@@ -2,7 +2,7 @@
 # Contributor: Eric Bélanger 
 
 pkgname=icewm
-pkgver=1.8.1
+pkgver=1.8.2
 pkgrel=1
 pkgdesc="A Window Manager designed for speed, usability, and consistency"
 arch=('x86_64')
@@ -12,7 +12,7 @@
 makedepends=('xorg-mkfontdir' 'asciidoctor' 'librsvg')
 optdepends=('perl: for icewm-menu-xrandr')
 
source=(https://github.com/ice-wm/icewm/releases/download/$pkgver/$pkgname-$pkgver.tar.lz)
-sha256sums=('8bc9547f7630408fbcbae03a2ee075a31743c458abf92de4f03712bb8861092e')
+sha256sums=('33efa0d418975fa6d1555c91aa8edcb2924a1b2b6a31a8812f6a21361a343cd8')
 
 build() {
   cd ${pkgname}-${pkgver}


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

2020-09-09 Thread Antonio Rojas via arch-commits
Date: Wednesday, September 9, 2020 @ 17:45:50
  Author: arojas
Revision: 395649

archrelease: copy trunk to extra-x86_64

Added:
  icewm/repos/extra-x86_64/PKGBUILD
(from rev 395648, icewm/trunk/PKGBUILD)
Deleted:
  icewm/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-09 17:45:40 UTC (rev 395648)
+++ PKGBUILD2020-09-09 17:45:50 UTC (rev 395649)
@@ -1,26 +0,0 @@
-# Maintainer:
-# Contributor: Eric Bélanger 
-
-pkgname=icewm
-pkgver=1.8.1
-pkgrel=1
-pkgdesc="A Window Manager designed for speed, usability, and consistency"
-arch=('x86_64')
-url="https://ice-wm.org/;
-license=('LGPL')
-depends=('libxrandr' 'libxinerama' 'libsndfile' 'libao' 'fribidi' 'libxft' 
'libxcomposite' 'libxdamage' 'gdk-pixbuf2' 'libxpm')
-makedepends=('xorg-mkfontdir' 'asciidoctor' 'librsvg')
-optdepends=('perl: for icewm-menu-xrandr')
-source=(https://github.com/ice-wm/icewm/releases/download/$pkgver/$pkgname-$pkgver.tar.lz)
-sha256sums=('8bc9547f7630408fbcbae03a2ee075a31743c458abf92de4f03712bb8861092e')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr --sysconfdir=/etc
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-}

Copied: icewm/repos/extra-x86_64/PKGBUILD (from rev 395648, 
icewm/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-09 17:45:50 UTC (rev 395649)
@@ -0,0 +1,26 @@
+# Maintainer:
+# Contributor: Eric Bélanger 
+
+pkgname=icewm
+pkgver=1.8.2
+pkgrel=1
+pkgdesc="A Window Manager designed for speed, usability, and consistency"
+arch=('x86_64')
+url="https://ice-wm.org/;
+license=('LGPL')
+depends=('libxrandr' 'libxinerama' 'libsndfile' 'libao' 'fribidi' 'libxft' 
'libxcomposite' 'libxdamage' 'gdk-pixbuf2' 'libxpm')
+makedepends=('xorg-mkfontdir' 'asciidoctor' 'librsvg')
+optdepends=('perl: for icewm-menu-xrandr')
+source=(https://github.com/ice-wm/icewm/releases/download/$pkgver/$pkgname-$pkgver.tar.lz)
+sha256sums=('33efa0d418975fa6d1555c91aa8edcb2924a1b2b6a31a8812f6a21361a343cd8')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr --sysconfdir=/etc
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}


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

2020-09-09 Thread Jan Steffens via arch-commits
Date: Wednesday, September 9, 2020 @ 17:30:11
  Author: heftig
Revision: 395646

3.36.6-1

Modified:
  gnome-desktop/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-09 13:24:07 UTC (rev 395645)
+++ PKGBUILD2020-09-09 17:30:11 UTC (rev 395646)
@@ -2,7 +2,7 @@
 # Contributor: Jan de Groot 
 
 pkgname=gnome-desktop
-pkgver=3.36.5
+pkgver=3.36.6
 pkgrel=1
 epoch=1
 pkgdesc="Library with common API for various GNOME modules"
@@ -14,7 +14,7 @@
 makedepends=(gobject-introspection git meson gtk-doc yelp-tools)
 checkdepends=(xorg-server-xvfb)
 provides=(libgnome-desktop-3.so)
-_commit=8990c212e35a5e93fa0d028c235da8b5ab3a27be  # tags/3.36.5^0
+_commit=69abb5b27f09e3933cb241ce6cc30e57416b7e22  # tags/3.36.6^0
 source=("git+https://gitlab.gnome.org/GNOME/gnome-desktop.git#commit=$_commit;)
 sha256sums=('SKIP')
 


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

2020-09-09 Thread Jan Steffens via arch-commits
Date: Wednesday, September 9, 2020 @ 17:30:17
  Author: heftig
Revision: 395647

archrelease: copy trunk to extra-x86_64

Added:
  gnome-desktop/repos/extra-x86_64/PKGBUILD
(from rev 395646, gnome-desktop/trunk/PKGBUILD)
Deleted:
  gnome-desktop/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-09 17:30:11 UTC (rev 395646)
+++ PKGBUILD2020-09-09 17:30:17 UTC (rev 395647)
@@ -1,46 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-
-pkgname=gnome-desktop
-pkgver=3.36.5
-pkgrel=1
-epoch=1
-pkgdesc="Library with common API for various GNOME modules"
-url="https://gitlab.gnome.org/GNOME/gnome-desktop;
-arch=(x86_64)
-license=(GPL LGPL)
-depends=(gsettings-desktop-schemas gtk3 libxkbfile xkeyboard-config iso-codes 
libseccomp bubblewrap
- systemd-libs)
-makedepends=(gobject-introspection git meson gtk-doc yelp-tools)
-checkdepends=(xorg-server-xvfb)
-provides=(libgnome-desktop-3.so)
-_commit=8990c212e35a5e93fa0d028c235da8b5ab3a27be  # tags/3.36.5^0
-source=("git+https://gitlab.gnome.org/GNOME/gnome-desktop.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-}
-
-build() {
-  arch-meson $pkgname build \
--D gnome_distributor="Arch Linux®" \
--D gtk_doc=true \
--D date_in_gnome_version=false
-  meson compile -C build
-}
-
-check() {
-  dbus-run-session xvfb-run \
--s '-screen 0 1920x1080x24 -nolisten local' \
-meson test -C build --print-errorlogs
-}
-
-package() {
-  DESTDIR="$pkgdir" meson install -C build
-}

Copied: gnome-desktop/repos/extra-x86_64/PKGBUILD (from rev 395646, 
gnome-desktop/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-09 17:30:17 UTC (rev 395647)
@@ -0,0 +1,46 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+
+pkgname=gnome-desktop
+pkgver=3.36.6
+pkgrel=1
+epoch=1
+pkgdesc="Library with common API for various GNOME modules"
+url="https://gitlab.gnome.org/GNOME/gnome-desktop;
+arch=(x86_64)
+license=(GPL LGPL)
+depends=(gsettings-desktop-schemas gtk3 libxkbfile xkeyboard-config iso-codes 
libseccomp bubblewrap
+ systemd-libs)
+makedepends=(gobject-introspection git meson gtk-doc yelp-tools)
+checkdepends=(xorg-server-xvfb)
+provides=(libgnome-desktop-3.so)
+_commit=69abb5b27f09e3933cb241ce6cc30e57416b7e22  # tags/3.36.6^0
+source=("git+https://gitlab.gnome.org/GNOME/gnome-desktop.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+}
+
+build() {
+  arch-meson $pkgname build \
+-D gnome_distributor="Arch Linux®" \
+-D gtk_doc=true \
+-D date_in_gnome_version=false
+  meson compile -C build
+}
+
+check() {
+  dbus-run-session xvfb-run \
+-s '-screen 0 1920x1080x24 -nolisten local' \
+meson test -C build --print-errorlogs
+}
+
+package() {
+  DESTDIR="$pkgdir" meson install -C build
+}


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

2020-09-09 Thread Christian Rebischke via arch-commits
Date: Wednesday, September 9, 2020 @ 17:19:46
  Author: shibumi
Revision: 701625

archrelease: copy trunk to community-x86_64

Added:
  kubectl/repos/community-x86_64/PKGBUILD
(from rev 701624, kubectl/trunk/PKGBUILD)
  kubectl/repos/community-x86_64/gotags.patch
(from rev 701624, kubectl/trunk/gotags.patch)
Deleted:
  kubectl/repos/community-x86_64/PKGBUILD
  kubectl/repos/community-x86_64/gotags.patch

--+
 PKGBUILD |   88 -
 gotags.patch |   26 
 2 files changed, 57 insertions(+), 57 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-09 17:19:40 UTC (rev 701624)
+++ PKGBUILD2020-09-09 17:19:46 UTC (rev 701625)
@@ -1,44 +0,0 @@
-# Maintainer: Christian Rebischke 
-# Contributor: Ivan Shapovalov 
-# Contributor: larte 
-# Contributor: Maxwell Pray a.k.a. Synthead 
-# Contributor: gun1x 
-
-pkgname=kubectl
-pkgdesc="Kubernetes.io client binary"
-pkgver=1.18.5
-pkgrel=2
-arch=('x86_64')
-url="https://kubernetes.io;
-license=('Apache')
-depends=('glibc')
-makedepends=('go' 'rsync' 'git')
-#source=("git+https://github.com/kubernetes/kubernetes#tag=v${pkgver};)
-source=("kubernetes-$pkgver.tar.gz::https://dl.k8s.io/v$pkgver/kubernetes-src.tar.gz;
-"gotags.patch")
-sha512sums=('9ddcd8b517e3cf78113ef977c365d26f0f27fe9b7fd9410f0214fd38cd38c6de6f37d7fbe2bb398587caceb4ae484afc2fe7ae14b80b70fe728405f3d5bd4115'
-
'413ddce3e475107db030a04d6ed53d145ead8d13d2d153c4cb6ce635643d7cc922cab90f528b7f8152b43f157c2c441759e6d48511be1a9a16e491e177bf97e8')
-
-prepare(){
-  patch -Np1 < "$srcdir/gotags.patch"
-}
-
-build() {
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  export CGO_LDFLAGS="${LDFLAGS}"
-  make WHAT=cmd/kubectl GOFLAGS="-buildmode=pie -trimpath"
-  # we don't need this anymore, but let's keep it.
-  #cd cmd/kubectl
-  #go build -trimpath -ldflags "-extldflags ${LDFLAGS}" -o kubectl
-}
-
-package() {
-  install -Dm755 _output/bin/kubectl -t "$pkgdir/usr/bin"
-  # man page generation still seems to fail with 1.17.2 :(
-  # install -Dm644 docs/man/man1/* -t "$pkgdir/usr/share/man/man1"
-
-  "$pkgdir/usr/bin/kubectl" completion bash | install -Dm644 /dev/stdin 
"$pkgdir/usr/share/bash-completion/completions/kubectl"
-  "$pkgdir/usr/bin/kubectl" completion zsh | install -Dm644 /dev/stdin 
"$pkgdir/usr/share/zsh/site-functions/_kubectl"
-}

Copied: kubectl/repos/community-x86_64/PKGBUILD (from rev 701624, 
kubectl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-09 17:19:46 UTC (rev 701625)
@@ -0,0 +1,44 @@
+# Maintainer: Christian Rebischke 
+# Contributor: Ivan Shapovalov 
+# Contributor: larte 
+# Contributor: Maxwell Pray a.k.a. Synthead 
+# Contributor: gun1x 
+
+pkgname=kubectl
+pkgdesc="Kubernetes.io client binary"
+pkgver=1.18.6
+pkgrel=1
+arch=('x86_64')
+url="https://kubernetes.io;
+license=('Apache')
+depends=('glibc')
+makedepends=('go' 'rsync' 'git')
+#source=("git+https://github.com/kubernetes/kubernetes#tag=v${pkgver};)
+source=("kubernetes-$pkgver.tar.gz::https://dl.k8s.io/v$pkgver/kubernetes-src.tar.gz;
+"gotags.patch")
+sha512sums=('460551dcde2288a7f3b90ad0720cf479cd38d64e386fedf66d580c4cd547a0e1835437437bdfb8b28c6dd707164abf0ddf4ea761d9f110945b80800f71b953b0'
+
'413ddce3e475107db030a04d6ed53d145ead8d13d2d153c4cb6ce635643d7cc922cab90f528b7f8152b43f157c2c441759e6d48511be1a9a16e491e177bf97e8')
+
+prepare(){
+  patch -Np1 < "$srcdir/gotags.patch"
+}
+
+build() {
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  make WHAT=cmd/kubectl GOFLAGS="-buildmode=pie -trimpath"
+  # we don't need this anymore, but let's keep it.
+  #cd cmd/kubectl
+  #go build -trimpath -ldflags "-extldflags ${LDFLAGS}" -o kubectl
+}
+
+package() {
+  install -Dm755 _output/bin/kubectl -t "$pkgdir/usr/bin"
+  # man page generation still seems to fail with 1.17.2 :(
+  # install -Dm644 docs/man/man1/* -t "$pkgdir/usr/share/man/man1"
+
+  "$pkgdir/usr/bin/kubectl" completion bash | install -Dm644 /dev/stdin 
"$pkgdir/usr/share/bash-completion/completions/kubectl"
+  "$pkgdir/usr/bin/kubectl" completion zsh | install -Dm644 /dev/stdin 
"$pkgdir/usr/share/zsh/site-functions/_kubectl"
+}

Deleted: gotags.patch
===
--- gotags.patch2020-09-09 17:19:40 UTC (rev 701624)
+++ gotags.patch2020-09-09 17:19:46 UTC (rev 701625)
@@ -1,13 +0,0 @@
-diff --git a/hack/lib/golang.sh b/hack/lib/golang.sh
-index b646bbe2edf..89d0a5cdba1 100755
 a/hack/lib/golang.sh
-+++ b/hack/lib/golang.sh
-@@ -790,7 +790,7 @@ kube::golang::build_binaries() {
- 
- # extract tags if any specified in GOFLAGS
- 

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

2020-09-09 Thread Christian Rebischke via arch-commits
Date: Wednesday, September 9, 2020 @ 17:19:40
  Author: shibumi
Revision: 701624

upgpkg: kubectl 1.18.6-1

Modified:
  kubectl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-09 17:09:58 UTC (rev 701623)
+++ PKGBUILD2020-09-09 17:19:40 UTC (rev 701624)
@@ -6,8 +6,8 @@
 
 pkgname=kubectl
 pkgdesc="Kubernetes.io client binary"
-pkgver=1.18.5
-pkgrel=2
+pkgver=1.18.6
+pkgrel=1
 arch=('x86_64')
 url="https://kubernetes.io;
 license=('Apache')
@@ -16,7 +16,7 @@
 #source=("git+https://github.com/kubernetes/kubernetes#tag=v${pkgver};)
 
source=("kubernetes-$pkgver.tar.gz::https://dl.k8s.io/v$pkgver/kubernetes-src.tar.gz;
 "gotags.patch")
-sha512sums=('9ddcd8b517e3cf78113ef977c365d26f0f27fe9b7fd9410f0214fd38cd38c6de6f37d7fbe2bb398587caceb4ae484afc2fe7ae14b80b70fe728405f3d5bd4115'
+sha512sums=('460551dcde2288a7f3b90ad0720cf479cd38d64e386fedf66d580c4cd547a0e1835437437bdfb8b28c6dd707164abf0ddf4ea761d9f110945b80800f71b953b0'
 
'413ddce3e475107db030a04d6ed53d145ead8d13d2d153c4cb6ce635643d7cc922cab90f528b7f8152b43f157c2c441759e6d48511be1a9a16e491e177bf97e8')
 
 prepare(){


[arch-commits] Commit in vault/repos/community-x86_64 (14 files)

2020-09-09 Thread Christian Rebischke via arch-commits
Date: Wednesday, September 9, 2020 @ 17:09:58
  Author: shibumi
Revision: 701623

archrelease: copy trunk to community-x86_64

Added:
  vault/repos/community-x86_64/CHANGELOG.md
(from rev 701622, vault/trunk/CHANGELOG.md)
  vault/repos/community-x86_64/PKGBUILD
(from rev 701622, vault/trunk/PKGBUILD)
  vault/repos/community-x86_64/vault.hcl
(from rev 701622, vault/trunk/vault.hcl)
  vault/repos/community-x86_64/vault.install
(from rev 701622, vault/trunk/vault.install)
  vault/repos/community-x86_64/vault.service
(from rev 701622, vault/trunk/vault.service)
  vault/repos/community-x86_64/vault.sysusers
(from rev 701622, vault/trunk/vault.sysusers)
  vault/repos/community-x86_64/vault.tmpfiles
(from rev 701622, vault/trunk/vault.tmpfiles)
Deleted:
  vault/repos/community-x86_64/CHANGELOG.md
  vault/repos/community-x86_64/PKGBUILD
  vault/repos/community-x86_64/vault.hcl
  vault/repos/community-x86_64/vault.install
  vault/repos/community-x86_64/vault.service
  vault/repos/community-x86_64/vault.sysusers
  vault/repos/community-x86_64/vault.tmpfiles

+
 CHANGELOG.md   | 6829 +++
 PKGBUILD   |  118 
 vault.hcl  |   38 
 vault.install  |   18 
 vault.service  |   44 
 vault.sysusers |2 
 vault.tmpfiles |2 
 7 files changed, 3551 insertions(+), 3500 deletions(-)

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


[arch-commits] Commit in vault/trunk (CHANGELOG.md PKGBUILD)

2020-09-09 Thread Christian Rebischke via arch-commits
Date: Wednesday, September 9, 2020 @ 17:09:49
  Author: shibumi
Revision: 701622

upgpkg: vault 1.5.3-1 new major release

Modified:
  vault/trunk/CHANGELOG.md
  vault/trunk/PKGBUILD

--+
 CHANGELOG.md |   55 +--
 PKGBUILD |6 +++---
 2 files changed, 56 insertions(+), 5 deletions(-)

Modified: CHANGELOG.md
===
--- CHANGELOG.md2020-09-09 17:02:07 UTC (rev 701621)
+++ CHANGELOG.md2020-09-09 17:09:49 UTC (rev 701622)
@@ -1,7 +1,43 @@
 ## Next
 
+IMPROVEMENTS:
+
+* auth/jwt: Add support for fetching groups and user information from G Suite 
during authentication. 
[[GH-123](https://github.com/hashicorp/vault-plugin-auth-jwt/pull/123)]
+* secrets/openldap: Add "ad" schema that allows the engine to correctly rotate 
AD passwords. 
[[GH-16](https://github.com/hashicorp/vault-plugin-secrets-openldap/pull/16)]
+
+BUG FIXES:
+
+* core: Handle a trailing slash in the API address used for enabling 
replication
+* core: Fix resource leak in plugin API (plugin-dependent, not all plugins 
impacted) [[GH-9557](https://github.com/hashicorp/vault/pull/9557)]
+* core: Fix race involved in enabling certain features via a license change
+* secrets/aws: Fix possible issue creating access keys when using Performance 
Standbys  [[GH-9606](https://github.com/hashicorp/vault/pull/9606)]
+* secrets/database: Fix handling of TLS options in mongodb connection strings 
[[GH-9519](https://github.com/hashicorp/vault/pull/9519)]
+* secrets/gcp: Ensure that the IAM policy version is appropriately set after a 
roleset's bindings have changed. 
[[GH-93](https://github.com/hashicorp/vault-plugin-secrets-gcp/pull/93)]
+
+## 1.5.1
+### TBD
+
 CHANGES:
 
+* pki: The tidy operation will now remove revoked certificates if the 
parameter `tidy_revoked_certs` is set to `true`. This will result in 
certificate entries being immediately removed, as opposed to awaiting until its 
NotAfter time. Note that this only affects certificates that have been already 
revoked. [[GH-9609](https://github.com/hashicorp/vault/pull/9609)]
+
+IMPROVEMENTS:
+
+* auth/jwt: Add support for fetching groups and user information from G Suite 
during authentication. [[GH-9574](https://github.com/hashicorp/vault/pull/9574)]
+* secrets/openldap: Add "ad" schema that allows the engine to correctly rotate 
AD passwords. [[GH-9740](https://github.com/hashicorp/vault/pull/9740)]
+* ui: Wrap TTL option on transit engine export action is updated to a new 
component. [[GH-9632](https://github.com/hashicorp/vault/pull/9632)]
+
+BUG FIXES:
+
+* secrets/gcp: Ensure that the IAM policy version is appropriately set after a 
roleset's bindings have changed. 
[[GH-9603](https://github.com/hashicorp/vault/pull/9603)]
+* replication (enterprise): Fix status API output incorrectly stating 
replication is in `idle` state.
+* core: Fix panic when printing over-long info fields at startup 
[[GH-9681](https://github.com/hashicorp/vault/pull/9681)]
+
+## 1.5.0
+### July 21st, 2020
+
+CHANGES:
+
 * storage/raft: The storage configuration now accepts a new `max_entry_size` 
config that will limit
   the total size in bytes of any entry committed via raft. It defaults to 
`"1048576"` (1MiB). [[GH-9027](https://github.com/hashicorp/vault/pull/9027)]
 * token: Token creation with custom token ID via `id` will no longer allow 
periods (`.`) as part of the input string. 
@@ -15,13 +51,16 @@
 IMPROVEMENTS:
 
 * audit: Replication status requests are no longer audited. 
[[GH-8877](https://github.com/hashicorp/vault/pull/8877)]
+* audit: Added mount_type field to requests and responses. 
[[GH-9167](https://github.com/hashicorp/vault/pull/9167)]
 * auth/aws: Add support for Web Identity credentials 
[[GH-7738](https://github.com/hashicorp/vault/pull/7738)]
+* auth/jwt: Support users that are members of more than 200 groups on Azure 
[[GH-120](https://github.com/hashicorp/vault-plugin-auth-jwt/pull/120)]
 * auth/kubernetes: Allow disabling `iss` validation 
[[GH-91](https://github.com/hashicorp/vault-plugin-auth-kubernetes/pull/91)]
 * core: Add the Go version used to build a Vault binary to the server message 
output. [[GH-9078](https://github.com/hashicorp/vault/pull/9078)]
 * core: Added Password Policies for user-configurable password generation 
[[GH-8637](https://github.com/hashicorp/vault/pull/8637)]
+* core: New telemetry metrics covering token counts, token creation, KV secret 
counts, lease creation. 
[[GH-9239](https://github.com/hashicorp/vault/pull/9239)] 
[[GH-9250](https://github.com/hashicorp/vault/pull/9250)] 
[[GH-9244](https://github.com/hashicorp/vault/pull/9244)] 
[[GH-9052](https://github.com/hashicorp/vault/pull/9052)]
 * cli: Support reading TLS parameters from file for the `vault operator raft 
join` command. [[GH-9060](https://github.com/hashicorp/vault/pull/9060)]
-* plugin: Add SDK method, `Sys.ReloadPlugin`, and CLI command, 

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

2020-09-09 Thread Antonio Rojas via arch-commits
Date: Wednesday, September 9, 2020 @ 17:01:58
  Author: arojas
Revision: 701620

Update to 1.6.0.17

Modified:
  giac/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-09-09 16:44:49 UTC (rev 701619)
+++ PKGBUILD2020-09-09 17:01:58 UTC (rev 701620)
@@ -2,7 +2,7 @@
 
 pkgbase=giac
 pkgname=(xcas libgiac)
-_pkgver=1.6.0-7
+_pkgver=1.6.0-17
 pkgver=${_pkgver//-/.}
 pkgrel=1
 pkgdesc="A free computer algebra system"
@@ -9,9 +9,9 @@
 arch=(x86_64)
 url="http://www-fourier.ujf-grenoble.fr/~parisse/giac.html;
 license=(GPL3)
-makedepends=(mpfi gsl pari ntl lapack libpng libjpeg fltk texlive-core 
texlive-science hevea glpk libao gmp-ecm nauty libsamplerate)
+makedepends=(python mpfi gsl pari ntl lapack libpng libjpeg fltk texlive-core 
texlive-science hevea glpk libao gmp-ecm nauty libsamplerate)
 
source=("http://www-fourier.ujf-grenoble.fr/~parisse/debian/dists/stable/main/source/${pkgbase}_${_pkgver}.tar.gz;)
-sha256sums=('77d8df21e814c28c11bca41f15ceb9eed0ea7a0f4406dbe0ca80b27f46b86fdf')
+sha256sums=('0f3c7e49eeafacfbfdc87915d43530dc73059f37558bb0f4fc4cbf2f3356047f')
 
 build() {
   cd $pkgbase-${pkgver%.*}


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

2020-09-09 Thread Antonio Rojas via arch-commits
Date: Wednesday, September 9, 2020 @ 17:02:07
  Author: arojas
Revision: 701621

archrelease: copy trunk to community-x86_64

Added:
  giac/repos/community-x86_64/PKGBUILD
(from rev 701620, giac/trunk/PKGBUILD)
Deleted:
  giac/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-09 17:01:58 UTC (rev 701620)
+++ PKGBUILD2020-09-09 17:02:07 UTC (rev 701621)
@@ -1,44 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgbase=giac
-pkgname=(xcas libgiac)
-_pkgver=1.6.0-7
-pkgver=${_pkgver//-/.}
-pkgrel=1
-pkgdesc="A free computer algebra system"
-arch=(x86_64)
-url="http://www-fourier.ujf-grenoble.fr/~parisse/giac.html;
-license=(GPL3)
-makedepends=(mpfi gsl pari ntl lapack libpng libjpeg fltk texlive-core 
texlive-science hevea glpk libao gmp-ecm nauty libsamplerate)
-source=("http://www-fourier.ujf-grenoble.fr/~parisse/debian/dists/stable/main/source/${pkgbase}_${_pkgver}.tar.gz;)
-sha256sums=('77d8df21e814c28c11bca41f15ceb9eed0ea7a0f4406dbe0ca80b27f46b86fdf')
-
-build() {
-  cd $pkgbase-${pkgver%.*}
-
-  ./configure --prefix=/usr
-  make
-}
-
-package_xcas() {
-  depends=(libgiac fltk)
-  optdepends=('perl: for pgiac')
-  conflicts=(giac)
-  provides=(giac)
-  replaces=(giac)
-
-  cd $pkgbase-${pkgver%.*}
-  make DESTDIR="$pkgdir" install
-
-  rm -r "$pkgdir"/usr/{lib,include}
-}
-
-package_libgiac() {
-  pkgdesc="Giac shared library"
-  depends=(mpfi gsl pari ntl lapack libpng curl glpk libao gmp-ecm 
libsamplerate)
-
-  cd $pkgbase-${pkgver%.*}
-  make DESTDIR="$pkgdir" install
-
-  rm -r "$pkgdir"/usr/{bin,share}
-}

Copied: giac/repos/community-x86_64/PKGBUILD (from rev 701620, 
giac/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-09 17:02:07 UTC (rev 701621)
@@ -0,0 +1,44 @@
+# Maintainer: Antonio Rojas 
+
+pkgbase=giac
+pkgname=(xcas libgiac)
+_pkgver=1.6.0-17
+pkgver=${_pkgver//-/.}
+pkgrel=1
+pkgdesc="A free computer algebra system"
+arch=(x86_64)
+url="http://www-fourier.ujf-grenoble.fr/~parisse/giac.html;
+license=(GPL3)
+makedepends=(python mpfi gsl pari ntl lapack libpng libjpeg fltk texlive-core 
texlive-science hevea glpk libao gmp-ecm nauty libsamplerate)
+source=("http://www-fourier.ujf-grenoble.fr/~parisse/debian/dists/stable/main/source/${pkgbase}_${_pkgver}.tar.gz;)
+sha256sums=('0f3c7e49eeafacfbfdc87915d43530dc73059f37558bb0f4fc4cbf2f3356047f')
+
+build() {
+  cd $pkgbase-${pkgver%.*}
+
+  ./configure --prefix=/usr
+  make
+}
+
+package_xcas() {
+  depends=(libgiac fltk)
+  optdepends=('perl: for pgiac')
+  conflicts=(giac)
+  provides=(giac)
+  replaces=(giac)
+
+  cd $pkgbase-${pkgver%.*}
+  make DESTDIR="$pkgdir" install
+
+  rm -r "$pkgdir"/usr/{lib,include}
+}
+
+package_libgiac() {
+  pkgdesc="Giac shared library"
+  depends=(mpfi gsl pari ntl lapack libpng curl glpk libao gmp-ecm 
libsamplerate)
+
+  cd $pkgbase-${pkgver%.*}
+  make DESTDIR="$pkgdir" install
+
+  rm -r "$pkgdir"/usr/{bin,share}
+}


[arch-commits] Commit in terraform/trunk (CHANGELOG.md PKGBUILD)

2020-09-09 Thread Christian Rebischke via arch-commits
Date: Wednesday, September 9, 2020 @ 16:44:41
  Author: shibumi
Revision: 701618

upgpkg: terraform 0.13.2-1

Modified:
  terraform/trunk/CHANGELOG.md
  terraform/trunk/PKGBUILD

--+
 CHANGELOG.md |  181 +++--
 PKGBUILD |6 -
 2 files changed, 168 insertions(+), 19 deletions(-)

Modified: CHANGELOG.md
===
--- CHANGELOG.md2020-09-09 16:36:01 UTC (rev 701617)
+++ CHANGELOG.md2020-09-09 16:44:41 UTC (rev 701618)
@@ -1,28 +1,177 @@
-## 0.13.0 (Unreleased)
+## 0.13.3 (Unreleased)
 
+## 0.13.2 (September 02, 2020)
+
+NEW FEATURES:
+
+* **Network-based Mirrors for [Provider 
Installation](https://www.terraform.io/docs/commands/cli-config.html#provider-installation)**:
 As an addition to the existing capability of "mirroring" providers into the 
local filesystem, a network mirror allows publishing copies of providers on an 
HTTP server and using that as an alternative source for provider packages, for 
situations where directly accessing the origin registries is impossible or 
undesirable. ([#25999](https://github.com/hashicorp/terraform/issues/25999))
+
+ENHANCEMENTS:
+
+* backend/http: add support for configuration by environment variable. 
([#25439](https://github.com/hashicorp/terraform/issues/25439))
+* command: Add support for provider redirects to `0.13upgrade`. If a provider 
in the Terraform Registry has moved to a new namespace, the `0.13upgrade` 
subcommand now detects this and follows the redirect where possible. 
([#26061](https://github.com/hashicorp/terraform/issues/26061))
+* command: Improve `init` error diagnostics when encountering what appears to 
be an in-house provider required by a pre-0.13 state file. Terraform will now 
display suggested `terraform state replace-provider` commands which will fix 
this specific problem. 
([#26066](https://github.com/hashicorp/terraform/issues/26066))
+
+BUG FIXES:
+
+* command: Warn instead of error when the `output` subcommand with no 
arguments results in no outputs. This aligns the UI to match the 0 exit code in 
this situation, which is notable but not necessarily an error. 
([#26036](https://github.com/hashicorp/terraform/issues/26036))
+* terraform: Fix crashing bug when reading data sources during plan with 
blocks backed by objects, not collections 
([#26028](https://github.com/hashicorp/terraform/issues/26028))
+* terraform: Fix bug where variables values were asked for twice on the 
command line and provider input values were asked for but not saved 
([#26063](https://github.com/hashicorp/terraform/issues/26063))
+
+## 0.13.1 (August 26, 2020)
+
+ENHANCEMENTS:
+
+* config: `cidrsubnet` and `cidrhost` now support address extensions of more 
than 32 bits ([#25517](https://github.com/hashicorp/terraform/issues/25517))
+* cli: The directories that Terraform searches by default for provider plugins 
can now be symlinks to directories elsewhere. (This applies only to the 
top-level directory, not to nested directories inside it.) 
([#25692](https://github.com/hashicorp/terraform/issues/25692))
+* backend/s3: simplified mock handling and assume role testing 
([#25903](https://github.com/hashicorp/terraform/issues/25903))
+* backend/s3: support for appending data to the User-Agent request header with 
the TF_APPEND_USER_AGENT environment variable 
([#25903](https://github.com/hashicorp/terraform/issues/25903))
+
+BUG FIXES:
+* config: Override files containing `module` blocks can now override the 
special `providers` argument. 
([#25496](https://github.com/hashicorp/terraform/issues/25496))
+* cli: The state lock will now be unlocked consistently across both the local 
and remote backends in the `terraform console` and `terraform import` commands. 
[[#25454](https://github.com/hashicorp/terraform/issues/25454)] 
+* cli: The `-target` option to `terraform plan` and `terraform apply` now 
correctly handles addresses containing module instance indexes. 
([#25760](https://github.com/hashicorp/terraform/issues/25760))
+* cli: `terraform state mv` can now move the last resource from a module 
without panicking. 
([#25523](https://github.com/hashicorp/terraform/issues/25523))
+* cli: If the output of `terraform version` contains an outdated version 
notice, this is now printed after the version number and not before. 
([#25811](https://github.com/hashicorp/terraform/issues/25811))
+* command: Prevent creation of workspaces with invalid names via the 
`TF_WORKSPACE` environment variable, and allow any existing invalid workspaces 
to be deleted. ([#25262](https://github.com/hashicorp/terraform/issues/25262))
+* command: Fix error when multiple `-no-color` flags are set on the command 
line. ([#25847](https://github.com/hashicorp/terraform/issues/25847))
+* command: Fix backend config override validation, allowing the use of 
`-backend-config` override files with the enhanced remote backend. 

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

2020-09-09 Thread Christian Rebischke via arch-commits
Date: Wednesday, September 9, 2020 @ 16:44:49
  Author: shibumi
Revision: 701619

archrelease: copy trunk to community-x86_64

Added:
  terraform/repos/community-x86_64/2.patch
(from rev 701618, terraform/trunk/2.patch)
  terraform/repos/community-x86_64/CHANGELOG.md
(from rev 701618, terraform/trunk/CHANGELOG.md)
  terraform/repos/community-x86_64/PKGBUILD
(from rev 701618, terraform/trunk/PKGBUILD)
Deleted:
  terraform/repos/community-x86_64/2.patch
  terraform/repos/community-x86_64/CHANGELOG.md
  terraform/repos/community-x86_64/PKGBUILD

--+
 2.patch  |   84 +++
 CHANGELOG.md |  207 +
 PKGBUILD |   86 +++
 3 files changed, 263 insertions(+), 114 deletions(-)

Deleted: 2.patch
===
--- 2.patch 2020-09-09 16:44:41 UTC (rev 701618)
+++ 2.patch 2020-09-09 16:44:49 UTC (rev 701619)
@@ -1,42 +0,0 @@
-From ec032370f2459544a0b5e2b995699dab29e580ef Mon Sep 17 00:00:00 2001
-From: Kevin Burke 
-Date: Sun, 12 Jul 2020 14:35:27 -0700
-Subject: [PATCH] helper/schema: ensure test works with Go 1.15 error messages
-
-I verified that the code itself does not have similar assertions about
-the error message that would break if a different string was returned
-for the error message.
-
-Fixes #25553.

- helper/schema/provider_test.go | 10 ++
- 1 file changed, 6 insertions(+), 4 deletions(-)
-
-diff --git a/helper/schema/provider_test.go b/helper/schema/provider_test.go
-index 01ee82a1f4d..13809b35bbf 100644
 a/helper/schema/provider_test.go
-+++ b/helper/schema/provider_test.go
-@@ -3,7 +3,7 @@ package schema
- import (
-   "fmt"
-   "reflect"
--  "strings"
-+  "regexp"
-   "testing"
-   "time"
- 
-@@ -341,9 +341,11 @@ func TestProviderDiff_timeoutInvalidValue(t *testing.T) {
-   if err == nil {
-   t.Fatal("Expected provider.Diff to fail with invalid timeout 
value")
-   }
--  expectedErrMsg := "time: invalid duration invalid"
--  if !strings.Contains(err.Error(), expectedErrMsg) {
--  t.Fatalf("Unexpected error message: %q\nExpected message to 
contain %q",
-+  // Go 1.15 added quotes around the invalid duration value. You can 
remove
-+  // the regex once Go 1.14 and below are no longer supported.
-+  expectedErrMsg := regexp.MustCompile(`time: invalid duration 
"?invalid"?`)
-+  if !expectedErrMsg.MatchString(err.Error()) {
-+  t.Fatalf("Unexpected error message: %q\nExpected message to 
match rx %q",
-   err.Error(),
-   expectedErrMsg)
-   }

Copied: terraform/repos/community-x86_64/2.patch (from rev 701618, 
terraform/trunk/2.patch)
===
--- 2.patch (rev 0)
+++ 2.patch 2020-09-09 16:44:49 UTC (rev 701619)
@@ -0,0 +1,42 @@
+From ec032370f2459544a0b5e2b995699dab29e580ef Mon Sep 17 00:00:00 2001
+From: Kevin Burke 
+Date: Sun, 12 Jul 2020 14:35:27 -0700
+Subject: [PATCH] helper/schema: ensure test works with Go 1.15 error messages
+
+I verified that the code itself does not have similar assertions about
+the error message that would break if a different string was returned
+for the error message.
+
+Fixes #25553.
+---
+ helper/schema/provider_test.go | 10 ++
+ 1 file changed, 6 insertions(+), 4 deletions(-)
+
+diff --git a/helper/schema/provider_test.go b/helper/schema/provider_test.go
+index 01ee82a1f4d..13809b35bbf 100644
+--- a/helper/schema/provider_test.go
 b/helper/schema/provider_test.go
+@@ -3,7 +3,7 @@ package schema
+ import (
+   "fmt"
+   "reflect"
+-  "strings"
++  "regexp"
+   "testing"
+   "time"
+ 
+@@ -341,9 +341,11 @@ func TestProviderDiff_timeoutInvalidValue(t *testing.T) {
+   if err == nil {
+   t.Fatal("Expected provider.Diff to fail with invalid timeout 
value")
+   }
+-  expectedErrMsg := "time: invalid duration invalid"
+-  if !strings.Contains(err.Error(), expectedErrMsg) {
+-  t.Fatalf("Unexpected error message: %q\nExpected message to 
contain %q",
++  // Go 1.15 added quotes around the invalid duration value. You can 
remove
++  // the regex once Go 1.14 and below are no longer supported.
++  expectedErrMsg := regexp.MustCompile(`time: invalid duration 
"?invalid"?`)
++  if !expectedErrMsg.MatchString(err.Error()) {
++  t.Fatalf("Unexpected error message: %q\nExpected message to 
match rx %q",
+   err.Error(),
+   expectedErrMsg)
+   }

Deleted: CHANGELOG.md
===
--- CHANGELOG.md2020-09-09 16:44:41 UTC (rev 701618)
+++ CHANGELOG.md2020-09-09 16:44:49 UTC (rev 701619)
@@ -1,29 +0,0 @@
-## 0.13.0 

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

2020-09-09 Thread Jaroslav Lichtblau via arch-commits
Date: Wednesday, September 9, 2020 @ 16:36:01
  Author: jlichtblau
Revision: 701617

archrelease: copy trunk to community-x86_64

Added:
  homebank/repos/community-x86_64/PKGBUILD
(from rev 701616, homebank/trunk/PKGBUILD)
  homebank/repos/community-x86_64/homebank.changelog
(from rev 701616, homebank/trunk/homebank.changelog)
Deleted:
  homebank/repos/community-x86_64/PKGBUILD
  homebank/repos/community-x86_64/homebank.changelog

+
 PKGBUILD   |   58 +--
 homebank.changelog |  253 +--
 2 files changed, 157 insertions(+), 154 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-09 16:35:52 UTC (rev 701616)
+++ PKGBUILD2020-09-09 16:36:01 UTC (rev 701617)
@@ -1,29 +0,0 @@
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: William Rea 
-
-pkgname=homebank
-pkgver=5.4.2
-pkgrel=1
-pkgdesc="Free, easy, personal accounting for everyone"
-arch=('x86_64')
-url="http://homebank.free.fr/;
-license=('GPL')
-depends=('desktop-file-utils' 'gtk3' 'hicolor-icon-theme' 'libofx'
- 'librsvg' 'perl-xml-parser' 'shared-mime-info' 'libsoup')
-makedepends=('intltool')
-changelog=$pkgname.changelog
-source=(http://homebank.free.fr/public/$pkgname-$pkgver.tar.gz)
-sha256sums=('c6ce84b421e7199ae545ea8b8d981f347af4d67b4cd5912b6789cf1450db722e')
-
-build() {
-  cd "${srcdir}"/$pkgname-$pkgver
-
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}"/$pkgname-$pkgver
-
-  make DESTDIR="${pkgdir}" install
-}

Copied: homebank/repos/community-x86_64/PKGBUILD (from rev 701616, 
homebank/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-09 16:36:01 UTC (rev 701617)
@@ -0,0 +1,29 @@
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: William Rea 
+
+pkgname=homebank
+pkgver=5.4.3
+pkgrel=1
+pkgdesc="Free, easy, personal accounting for everyone"
+arch=('x86_64')
+url="http://homebank.free.fr/;
+license=('GPL')
+depends=('desktop-file-utils' 'gtk3' 'hicolor-icon-theme' 'libofx'
+ 'librsvg' 'perl-xml-parser' 'shared-mime-info' 'libsoup')
+makedepends=('intltool')
+changelog=$pkgname.changelog
+source=(http://homebank.free.fr/public/$pkgname-$pkgver.tar.gz)
+sha256sums=('9222d7ed7cc44fcfff3f1fe20935a1b7fe91bb4d9f90003cb3c6f3b893298d0b')
+
+build() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  make DESTDIR="${pkgdir}" install
+}

Deleted: homebank.changelog
===
--- homebank.changelog  2020-09-09 16:35:52 UTC (rev 701616)
+++ homebank.changelog  2020-09-09 16:36:01 UTC (rev 701617)
@@ -1,125 +0,0 @@
-2020-07-09 Jaroslav Lichtblau 
-   * homebank 5.4.2-1
-
-2020-02-10 Jaroslav Lichtblau 
-   * homebank 5.3.2-1
-
-2020-01-25 Jaroslav Lichtblau 
-   * homebank 5.3.1-1
-
-2020-01-25 Jaroslav Lichtblau 
-   * homebank 5.3-1
-
-2019-09-21 Jaroslav Lichtblau 
-   * homebank 5.2.8-1
-
-2019-08-06 Jaroslav Lichtblau 
-   * homebank 5.2.7-1
-
-2019-05-25 Jaroslav Lichtblau 
-   * homebank 5.2.6-1
-
-2019-05-19 Jaroslav Lichtblau 
-   * homebank 5.2.5-1
-
-2019-04-24 Jaroslav Lichtblau 
-   * homebank 5.2.4-1
-
-2019-03-19 Jaroslav Lichtblau 
-   * homebank 5.2.3-1
-
-2018-10-07 Jaroslav Lichtblau 
-   * homebank 5.2.2-1
-
-2018-09-29 Jaroslav Lichtblau 
-   * homebank 5.2.1-1
-
-2018-09-13 Jaroslav Lichtblau 
-   * homebank 5.2-1
-
-2018-04-02 Jaroslav Lichtblau 
-   * homebank 5.1.8-1
-
-2018-01-07 Jaroslav Lichtblau 
-   * homebank 5.1.7-1
-
-2017-09-16 Jaroslav Lichtblau 
-   * homebank 5.1.6-1
-
-2017-05-11 Jaroslav Lichtblau 
-   * homebank 5.1.5-1
-
-2017-02-16 Jaroslav Lichtblau 
-   * homebank 5.1.4-1
-
-2017-01-23 Jaroslav Lichtblau 
-   * homebank 5.1.3-1
-
-2016-12-08 Jaroslav Lichtblau 
-   * homebank 5.1.2-1
-
-2016-11-06 Jaroslav Lichtblau 
-   * homebank 5.1.1-1
-
-2016-10-17 Jaroslav Lichtblau 
-   * homebank 5.1-1
-
-2016-07-25 Jaroslav Lichtblau 
-   * homebank 5.0.9-1
-
-2016-05-22 Jaroslav Lichtblau 
-   * homebank 5.0.8-1
-
-2016-05-09 Jaroslav Lichtblau 
-   * homebank 5.0.7-1
-
-2016-04-29 Jaroslav Lichtblau 
-   * homebank 5.0.6-2 pacman hooks rebuild
-
-2015-11-01 Jaroslav Lichtblau 
-   * homebank 5.0.6-1
-
-2015-09-26 Jaroslav Lichtblau 
-   * homebank 5.0.5-1
-
-2015-06-15 Jaroslav Lichtblau 
-   * homebank 5.0.3-1
-
-2015-05-14 Jaroslav Lichtblau 
-   * homebank 5.0.2-1
-
-2015-04-18 Jaroslav Lichtblau 
-   * homebank 5.0.1-1
-
-2015-02-08 Jaroslav Lichtblau 
-   * homebank 5.0.0-1
-
-2014-08-10 Jaroslav Lichtblau 
-   * homebank 4.6.3-1
-
-2014-07-29 Jaroslav Lichtblau 
-   * homebank 4.6.2-1
-
-2014-06-28 Jaroslav Lichtblau 
-   * 

[arch-commits] Commit in homebank/trunk (PKGBUILD homebank.changelog)

2020-09-09 Thread Jaroslav Lichtblau via arch-commits
Date: Wednesday, September 9, 2020 @ 16:35:52
  Author: jlichtblau
Revision: 701616

upgpkg: homebank 5.4.3-1 - new upstream release

Modified:
  homebank/trunk/PKGBUILD
  homebank/trunk/homebank.changelog

+
 PKGBUILD   |4 ++--
 homebank.changelog |3 +++
 2 files changed, 5 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-09-09 16:33:31 UTC (rev 701615)
+++ PKGBUILD2020-09-09 16:35:52 UTC (rev 701616)
@@ -2,7 +2,7 @@
 # Contributor: William Rea 
 
 pkgname=homebank
-pkgver=5.4.2
+pkgver=5.4.3
 pkgrel=1
 pkgdesc="Free, easy, personal accounting for everyone"
 arch=('x86_64')
@@ -13,7 +13,7 @@
 makedepends=('intltool')
 changelog=$pkgname.changelog
 source=(http://homebank.free.fr/public/$pkgname-$pkgver.tar.gz)
-sha256sums=('c6ce84b421e7199ae545ea8b8d981f347af4d67b4cd5912b6789cf1450db722e')
+sha256sums=('9222d7ed7cc44fcfff3f1fe20935a1b7fe91bb4d9f90003cb3c6f3b893298d0b')
 
 build() {
   cd "${srcdir}"/$pkgname-$pkgver

Modified: homebank.changelog
===
--- homebank.changelog  2020-09-09 16:33:31 UTC (rev 701615)
+++ homebank.changelog  2020-09-09 16:35:52 UTC (rev 701616)
@@ -1,3 +1,6 @@
+2020-09-09 Jaroslav Lichtblau 
+   * homebank 5.4.3-1
+
 2020-07-09 Jaroslav Lichtblau 
* homebank 5.4.2-1
 


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

2020-09-09 Thread Jaroslav Lichtblau via arch-commits
Date: Wednesday, September 9, 2020 @ 16:33:31
  Author: jlichtblau
Revision: 701615

archrelease: copy trunk to community-any

Added:
  josm/repos/community-any/PKGBUILD
(from rev 701614, josm/trunk/PKGBUILD)
  josm/repos/community-any/josm.changelog
(from rev 701614, josm/trunk/josm.changelog)
  josm/repos/community-any/josm.conf.d
(from rev 701614, josm/trunk/josm.conf.d)
Deleted:
  josm/repos/community-any/PKGBUILD
  josm/repos/community-any/josm.changelog
  josm/repos/community-any/josm.conf.d

+
 PKGBUILD   |  116 
 josm.changelog |  743 +++
 josm.conf.d|8 
 3 files changed, 435 insertions(+), 432 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-09 16:33:10 UTC (rev 701614)
+++ PKGBUILD2020-09-09 16:33:31 UTC (rev 701615)
@@ -1,58 +0,0 @@
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: Michele Schäuble 
-
-pkgname=josm
-pkgver=16812
-pkgrel=1
-pkgdesc="An editor for OpenStreetMap written in Java"
-arch=('any')
-url="https://josm.openstreetmap.de/;
-license=('GPL')
-depends=('desktop-file-utils' 'hicolor-icon-theme' 'java-runtime>=8' 'libxtst' 
'ttf-font')
-makedepends=('subversion')
-changelog=$pkgname.changelog
-backup=('etc/conf.d/josm')
-source=(https://josm.openstreetmap.de/download/$pkgname-snapshot-$pkgver.jar
-$pkgname::svn+https://josm.openstreetmap.de/svn/trunk#revision=$pkgver
-$pkgname.conf.d)
-noextract=($pkgname-snapshot-$pkgver.jar)
-sha256sums=('98aba0a54281d1204d0d94f1bb3e9dbde8615f95499d9ca96dcb45580f62a0d1'
-'SKIP'
-'c86a73251eed42fcb129ae9b88a0ee3cf03d8d00a9385519ad536d5af0907663')
-
-package() {
-  cd "${srcdir}"
-
-  install -Dm644 $pkgname-snapshot-$pkgver.jar 
"${pkgdir}"/usr/share/java/$pkgname/$pkgname.jar
-
-#.desktop and icon file
-  install -Dm644 
$pkgname/native/linux/tested/usr/share/applications/org.openstreetmap.josm.desktop
 \
-"${pkgdir}"/usr/share/applications/org.openstreetmap.josm.desktop
-  install -Dm644 $pkgname/native/linux/tested/usr/share/man/man1/josm.1 \
-"${pkgdir}"/usr/share/man/man1/josm.1
-  install -Dm644 
$pkgname/native/linux/tested/usr/share/metainfo/org.openstreetmap.josm.appdata.xml
 \
-"${pkgdir}"/usr/share/metainfo/org.openstreetmap.josm.appdata.xml
-  install -Dm644 
$pkgname/native/linux/tested/usr/share/icons/hicolor/scalable/apps/org.openstreetmap.josm.svg
 \
-
"${pkgdir}"/usr/share/icons/hicolor/scalable/apps/org.openstreetmap.josm.svg
-
-  for _icon in 8 16 22 24 32 36 40 42 48 64 72 80 96 128 192 256 512; do
-  install -Dm644 
$pkgname/native/linux/tested/usr/share/icons/hicolor/${_icon}x${_icon}/apps/org.openstreetmap.josm.png
 \
-
"${pkgdir}"/usr/share/icons/hicolor/${_icon}x${_icon}/apps/org.openstreetmap.josm.png
-  done
-
-#executable file
-  install -d "${pkgdir}"/usr/bin
-  cat <<"EOF" >"${pkgdir}"/usr/bin/$pkgname 
-#!/bin/sh
-# source application-specific settings
-while true; do
-JOSM_ARGS=
-[ -f /etc/conf.d/josm ] && . /etc/conf.d/josm
-CLASSPATH="/usr/share/java/josm/josm.jar"
-java ${JOSM_ARGS} -cp "${CLASSPATH}" -Djosm.restart=true 
org.openstreetmap.josm.gui.MainApplication "$@"
-[ $? -eq 9 ] || break
-done
-EOF
-  chmod 755 "${pkgdir}"/usr/bin/$pkgname
-  install -Dm644 "${srcdir}"/$pkgname.conf.d "${pkgdir}"/etc/conf.d/$pkgname
-}

Copied: josm/repos/community-any/PKGBUILD (from rev 701614, josm/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-09 16:33:31 UTC (rev 701615)
@@ -0,0 +1,58 @@
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Michele Schäuble 
+
+pkgname=josm
+pkgver=17013
+pkgrel=1
+pkgdesc="An editor for OpenStreetMap written in Java"
+arch=('any')
+url="https://josm.openstreetmap.de/;
+license=('GPL')
+depends=('desktop-file-utils' 'hicolor-icon-theme' 'java-runtime>=8' 'libxtst' 
'ttf-font')
+makedepends=('subversion')
+changelog=$pkgname.changelog
+backup=('etc/conf.d/josm')
+source=(https://josm.openstreetmap.de/download/$pkgname-snapshot-$pkgver.jar
+$pkgname::svn+https://josm.openstreetmap.de/svn/trunk#revision=$pkgver
+$pkgname.conf.d)
+noextract=($pkgname-snapshot-$pkgver.jar)
+sha256sums=('12ad24cd37ce88371062caaaf5550a0ab36f1234d5b949e9007ab155268eee35'
+'SKIP'
+'c86a73251eed42fcb129ae9b88a0ee3cf03d8d00a9385519ad536d5af0907663')
+
+package() {
+  cd "${srcdir}"
+
+  install -Dm644 $pkgname-snapshot-$pkgver.jar 
"${pkgdir}"/usr/share/java/$pkgname/$pkgname.jar
+
+#.desktop and icon file
+  install -Dm644 
$pkgname/native/linux/tested/usr/share/applications/org.openstreetmap.josm.desktop
 \
+"${pkgdir}"/usr/share/applications/org.openstreetmap.josm.desktop
+  install -Dm644 $pkgname/native/linux/tested/usr/share/man/man1/josm.1 \
+

[arch-commits] Commit in josm/trunk (PKGBUILD josm.changelog)

2020-09-09 Thread Jaroslav Lichtblau via arch-commits
Date: Wednesday, September 9, 2020 @ 16:33:10
  Author: jlichtblau
Revision: 701614

upgpkg: josm 17013-1 - new upstream release

Modified:
  josm/trunk/PKGBUILD
  josm/trunk/josm.changelog

+
 PKGBUILD   |4 ++--
 josm.changelog |3 +++
 2 files changed, 5 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-09-09 16:31:46 UTC (rev 701613)
+++ PKGBUILD2020-09-09 16:33:10 UTC (rev 701614)
@@ -2,7 +2,7 @@
 # Contributor: Michele Schäuble 
 
 pkgname=josm
-pkgver=16812
+pkgver=17013
 pkgrel=1
 pkgdesc="An editor for OpenStreetMap written in Java"
 arch=('any')
@@ -16,7 +16,7 @@
 $pkgname::svn+https://josm.openstreetmap.de/svn/trunk#revision=$pkgver
 $pkgname.conf.d)
 noextract=($pkgname-snapshot-$pkgver.jar)
-sha256sums=('98aba0a54281d1204d0d94f1bb3e9dbde8615f95499d9ca96dcb45580f62a0d1'
+sha256sums=('12ad24cd37ce88371062caaaf5550a0ab36f1234d5b949e9007ab155268eee35'
 'SKIP'
 'c86a73251eed42fcb129ae9b88a0ee3cf03d8d00a9385519ad536d5af0907663')
 

Modified: josm.changelog
===
--- josm.changelog  2020-09-09 16:31:46 UTC (rev 701613)
+++ josm.changelog  2020-09-09 16:33:10 UTC (rev 701614)
@@ -1,3 +1,6 @@
+2020-09-09 Jaroslav Lichtblau 
+   * josm 17013-1
+
 2020-08-09 Jaroslav Lichtblau 
* josm 16812-1
 


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

2020-09-09 Thread Christian Rebischke via arch-commits
Date: Wednesday, September 9, 2020 @ 16:31:46
  Author: shibumi
Revision: 701613

archrelease: copy trunk to community-x86_64

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

-+
 ChangeLog   |  419 +-
 PKGBUILD|  104 +++---
 iwd.install |   12 -
 3 files changed, 271 insertions(+), 264 deletions(-)

Deleted: ChangeLog
===
--- ChangeLog   2020-09-09 16:31:38 UTC (rev 701612)
+++ ChangeLog   2020-09-09 16:31:46 UTC (rev 701613)
@@ -1,206 +0,0 @@
-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 Setup).
-
-ver 0.17:
-   Fix issue with handling association failure path.
-   Fix issue with handling checks for valid ECC point/scalar.
-   Fix issue with handling potential infinite loop and SAE.
-   Fix issue with handling randomization for passive scans.
-   Add support for randomization of SN for probe 

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

2020-09-09 Thread Christian Rebischke via arch-commits
Date: Wednesday, September 9, 2020 @ 16:31:38
  Author: shibumi
Revision: 701612

upgpkg: iwd 1.9-1

Modified:
  iwd/trunk/ChangeLog
  iwd/trunk/PKGBUILD

---+
 ChangeLog |7 +++
 PKGBUILD  |4 ++--
 2 files changed, 9 insertions(+), 2 deletions(-)

Modified: ChangeLog
===
--- ChangeLog   2020-09-09 16:20:55 UTC (rev 701611)
+++ ChangeLog   2020-09-09 16:31:38 UTC (rev 701612)
@@ -1,3 +1,10 @@
+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.

Modified: PKGBUILD
===
--- PKGBUILD2020-09-09 16:20:55 UTC (rev 701611)
+++ PKGBUILD2020-09-09 16:31:38 UTC (rev 701612)
@@ -3,7 +3,7 @@
 # Contributor: AndyRTR 
 
 pkgname=iwd
-pkgver=1.8
+pkgver=1.9
 pkgrel=1
 pkgdesc='Internet Wireless Daemon'
 arch=('x86_64')
@@ -13,7 +13,7 @@
 makedepends=('python-docutils' 'dbus' 'systemd')
 backup=(etc/iwd/main.conf)
 
source=("https://www.kernel.org/pub/linux/network/wireless/iwd-${pkgver}.tar"{.xz,.sign})
-sha512sums=('f1caa330b3ff18b4598efec596a4b9a22887833218a90d19d59717503679eff71fdb990cb63bd74b8f1523197a366cd803d799259e8002e5cde2745b03d51d8e'
+sha512sums=('d8762495f7f5a342476653c0cf64c31b3b41a3064a05c4fcf49b9faf4394b0d7a5db6aae6324896bdc8f7b104697fb4c4315f7073a4fde4fc87f8f55d932538b'
 'SKIP')
 validpgpkeys=('E932D120BC2AEC444E558F0106CA9F5D1DCF2659')
 changelog=ChangeLog


  1   2   3   >